From 14a4017ea77d3d86d1dfc18c60042794a7e46aa7 Mon Sep 17 00:00:00 2001 From: Greg Varga Date: Tue, 22 Sep 2020 08:36:57 +0800 Subject: [PATCH 001/339] Add support for plus (+) character in profile names --- .../next-release/feature-AWSSDKforJavav2-e2f5442.json | 5 +++++ CHANGELOG.md | 1 - .../awssdk/profiles/internal/ProfileFileReader.java | 6 +++--- .../software/amazon/awssdk/profiles/ProfileFileTest.java | 8 ++++---- 4 files changed, 12 insertions(+), 8 deletions(-) create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-e2f5442.json diff --git a/.changes/next-release/feature-AWSSDKforJavav2-e2f5442.json b/.changes/next-release/feature-AWSSDKforJavav2-e2f5442.json new file mode 100644 index 000000000000..40d8e97a1f8a --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-e2f5442.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS SDK for Java v2", + "description": "Add support for plus (+) character in profile names" +} diff --git a/CHANGELOG.md b/CHANGELOG.md index 4065d4d91a4a..65c8d3ba4908 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8777,4 +8777,3 @@ ## __AWS SDK for Java v2__ - ### Features - Initial release of the AWS SDK for Java v2. See our [blog post](https://aws.amazon.com/blogs/developer/aws-sdk-for-java-2-0-developer-preview) for information about this new major veresion. This release is considered a developer preview and is not intended for production use cases. - diff --git a/core/profiles/src/main/java/software/amazon/awssdk/profiles/internal/ProfileFileReader.java b/core/profiles/src/main/java/software/amazon/awssdk/profiles/internal/ProfileFileReader.java index c62ca7a15ce7..fd8970f4ab49 100644 --- a/core/profiles/src/main/java/software/amazon/awssdk/profiles/internal/ProfileFileReader.java +++ b/core/profiles/src/main/java/software/amazon/awssdk/profiles/internal/ProfileFileReader.java @@ -42,7 +42,7 @@ public final class ProfileFileReader { private static final Pattern EMPTY_LINE = Pattern.compile("^[\t ]*$"); - private static final Pattern VALID_IDENTIFIER = Pattern.compile("^[A-Za-z0-9_\\-/.%@:]*$"); + private static final Pattern VALID_IDENTIFIER = Pattern.compile("^[A-Za-z0-9_\\-/.%@:\\+]*$"); private ProfileFileReader() { } @@ -214,7 +214,7 @@ private static Optional parseProfileDefinition(ParserState state, String // If the profile name includes invalid characters, it should be ignored. if (!isValidIdentifier(profileName)) { log.warn(() -> "Ignoring profile '" + standardizedProfileName + "' on line " + state.currentLineNumber + " because " + - "it was not alphanumeric with only these special characters: - / . % @ _ :"); + "it was not alphanumeric with only these special characters: - / . % @ _ : +"); return Optional.empty(); } @@ -257,7 +257,7 @@ private static Optional> parsePropertyDefinition(ParserStat // If the profile name includes invalid characters, it should be ignored. if (!isValidIdentifier(propertyKey)) { log.warn(() -> "Ignoring property '" + propertyKey + "' on line " + state.currentLineNumber + " because " + - "its name was not alphanumeric with only these special characters: - / . % @ _ :"); + "its name was not alphanumeric with only these special characters: - / . % @ _ : +"); return Optional.empty(); } diff --git a/core/profiles/src/test/java/software/amazon/awssdk/profiles/ProfileFileTest.java b/core/profiles/src/test/java/software/amazon/awssdk/profiles/ProfileFileTest.java index 82377ae6c6aa..116bb48df3e1 100644 --- a/core/profiles/src/test/java/software/amazon/awssdk/profiles/ProfileFileTest.java +++ b/core/profiles/src/test/java/software/amazon/awssdk/profiles/ProfileFileTest.java @@ -326,14 +326,14 @@ public void invalidPropertyNamesAreIgnored() { @Test public void allValidProfileNameCharactersAreSupported() { - assertThat(configFileProfiles("[profile ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_./%@:]")) - .isEqualTo(profiles(profile("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_./%@:"))); + assertThat(configFileProfiles("[profile ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_./%@:+]")) + .isEqualTo(profiles(profile("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_./%@:+"))); } @Test public void allValidPropertyNameCharactersAreSupported() { - assertThat(configFileProfiles("[profile foo]\nABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_./%@: = value")) - .isEqualTo(profiles(profile("foo", property("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_./%@:", + assertThat(configFileProfiles("[profile foo]\nABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_./%@:+ = value")) + .isEqualTo(profiles(profile("foo", property("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_./%@:+", "value")))); } From 624e4458805530a6879068fd1767dc4ffdf6024b Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 15 Oct 2020 18:07:06 +0000 Subject: [PATCH 002/339] AWS Ground Station Update: Adds error message attribute to DescribeContact DataflowDetails --- .changes/next-release/feature-AWSGroundStation-fcf68ad.json | 5 +++++ .../src/main/resources/codegen-resources/service-2.json | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 .changes/next-release/feature-AWSGroundStation-fcf68ad.json diff --git a/.changes/next-release/feature-AWSGroundStation-fcf68ad.json b/.changes/next-release/feature-AWSGroundStation-fcf68ad.json new file mode 100644 index 000000000000..a064a5e126ad --- /dev/null +++ b/.changes/next-release/feature-AWSGroundStation-fcf68ad.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS Ground Station", + "description": "Adds error message attribute to DescribeContact DataflowDetails" +} diff --git a/services/groundstation/src/main/resources/codegen-resources/service-2.json b/services/groundstation/src/main/resources/codegen-resources/service-2.json index ecf95b972999..905117189108 100644 --- a/services/groundstation/src/main/resources/codegen-resources/service-2.json +++ b/services/groundstation/src/main/resources/codegen-resources/service-2.json @@ -694,6 +694,7 @@ "enum":[ "AVAILABLE", "AWS_CANCELLED", + "AWS_FAILED", "CANCELLED", "CANCELLING", "COMPLETED", @@ -795,6 +796,10 @@ "type":"structure", "members":{ "destination":{"shape":"Destination"}, + "errorMessage":{ + "shape":"String", + "documentation":"

Error message for a dataflow.

" + }, "source":{"shape":"Source"} }, "documentation":"

Information about a dataflow edge used in a contact.

" From 376415b5b38e643bae0450e3fcf0ca3c222b4bc9 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 15 Oct 2020 18:07:09 +0000 Subject: [PATCH 003/339] AWS X-Ray Update: Enhancing CreateGroup, UpdateGroup, GetGroup and GetGroups APIs to support configuring X-Ray Insights Notifications. Adding TraceLimit information into X-Ray BatchGetTraces API response. --- .../next-release/feature-AWSXRay-4389d0e.json | 5 ++ .../codegen-resources/paginators-1.json | 15 ----- .../codegen-resources/service-2.json | 58 +++++++++++-------- 3 files changed, 38 insertions(+), 40 deletions(-) create mode 100644 .changes/next-release/feature-AWSXRay-4389d0e.json diff --git a/.changes/next-release/feature-AWSXRay-4389d0e.json b/.changes/next-release/feature-AWSXRay-4389d0e.json new file mode 100644 index 000000000000..4b948b3cbb75 --- /dev/null +++ b/.changes/next-release/feature-AWSXRay-4389d0e.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS X-Ray", + "description": "Enhancing CreateGroup, UpdateGroup, GetGroup and GetGroups APIs to support configuring X-Ray Insights Notifications. Adding TraceLimit information into X-Ray BatchGetTraces API response." +} diff --git a/services/xray/src/main/resources/codegen-resources/paginators-1.json b/services/xray/src/main/resources/codegen-resources/paginators-1.json index 0b4d3d86af97..300279e7524b 100644 --- a/services/xray/src/main/resources/codegen-resources/paginators-1.json +++ b/services/xray/src/main/resources/codegen-resources/paginators-1.json @@ -2,9 +2,6 @@ "pagination": { "BatchGetTraces": { "input_token": "NextToken", - "non_aggregate_keys": [ - "UnprocessedTraceIds" - ], "output_token": "NextToken", "result_key": "Traces" }, @@ -25,19 +22,11 @@ }, "GetServiceGraph": { "input_token": "NextToken", - "non_aggregate_keys": [ - "StartTime", - "EndTime", - "ContainsOldGroupVersions" - ], "output_token": "NextToken", "result_key": "Services" }, "GetTimeSeriesServiceStatistics": { "input_token": "NextToken", - "non_aggregate_keys": [ - "ContainsOldGroupVersions" - ], "output_token": "NextToken", "result_key": "TimeSeriesServiceStatistics" }, @@ -48,10 +37,6 @@ }, "GetTraceSummaries": { "input_token": "NextToken", - "non_aggregate_keys": [ - "TracesProcessedCount", - "ApproximateTime" - ], "output_token": "NextToken", "result_key": "TraceSummaries" } diff --git a/services/xray/src/main/resources/codegen-resources/service-2.json b/services/xray/src/main/resources/codegen-resources/service-2.json index 9738653c1d1b..b3bd6f2ccc4f 100644 --- a/services/xray/src/main/resources/codegen-resources/service-2.json +++ b/services/xray/src/main/resources/codegen-resources/service-2.json @@ -276,7 +276,7 @@ {"shape":"InvalidRequestException"}, {"shape":"ThrottledException"} ], - "documentation":"

Uploads segment documents to AWS X-Ray. The X-Ray SDK generates segment documents and sends them to the X-Ray daemon, which uploads them in batches. A segment document can be a completed segment, an in-progress segment, or an array of subsegments.

Segments must include the following fields. For the full segment document schema, see AWS X-Ray Segment Documents in the AWS X-Ray Developer Guide.

Required Segment Document Fields

  • name - The name of the service that handled the request.

  • id - A 64-bit identifier for the segment, unique among segments in the same trace, in 16 hexadecimal digits.

  • trace_id - A unique identifier that connects all segments and subsegments originating from a single client request.

  • start_time - Time the segment or subsegment was created, in floating point seconds in epoch time, accurate to milliseconds. For example, 1480615200.010 or 1.480615200010E9.

  • end_time - Time the segment or subsegment was closed. For example, 1480615200.090 or 1.480615200090E9. Specify either an end_time or in_progress.

  • in_progress - Set to true instead of specifying an end_time to record that a segment has been started, but is not complete. Send an in progress segment when your application receives a request that will take a long time to serve, to trace the fact that the request was received. When the response is sent, send the complete segment to overwrite the in-progress segment.

A trace_id consists of three numbers separated by hyphens. For example, 1-58406520-a006649127e371903a2de979. This includes:

Trace ID Format

  • The version number, i.e. 1.

  • The time of the original request, in Unix epoch time, in 8 hexadecimal digits. For example, 10:00AM December 2nd, 2016 PST in epoch time is 1480615200 seconds, or 58406520 in hexadecimal.

  • A 96-bit identifier for the trace, globally unique, in 24 hexadecimal digits.

" + "documentation":"

Uploads segment documents to AWS X-Ray. The X-Ray SDK generates segment documents and sends them to the X-Ray daemon, which uploads them in batches. A segment document can be a completed segment, an in-progress segment, or an array of subsegments.

Segments must include the following fields. For the full segment document schema, see AWS X-Ray Segment Documents in the AWS X-Ray Developer Guide.

Required segment document fields

  • name - The name of the service that handled the request.

  • id - A 64-bit identifier for the segment, unique among segments in the same trace, in 16 hexadecimal digits.

  • trace_id - A unique identifier that connects all segments and subsegments originating from a single client request.

  • start_time - Time the segment or subsegment was created, in floating point seconds in epoch time, accurate to milliseconds. For example, 1480615200.010 or 1.480615200010E9.

  • end_time - Time the segment or subsegment was closed. For example, 1480615200.090 or 1.480615200090E9. Specify either an end_time or in_progress.

  • in_progress - Set to true instead of specifying an end_time to record that a segment has been started, but is not complete. Send an in-progress segment when your application receives a request that will take a long time to serve, to trace that the request was received. When the response is sent, send the complete segment to overwrite the in-progress segment.

A trace_id consists of three numbers separated by hyphens. For example, 1-58406520-a006649127e371903a2de979. This includes:

Trace ID Format

  • The version number, for instance, 1.

  • The time of the original request, in Unix epoch time, in 8 hexadecimal digits. For example, 10:00AM December 2nd, 2016 PST in epoch time is 1480615200 seconds, or 58406520 in hexadecimal.

  • A 96-bit identifier for the trace, globally unique, in 24 hexadecimal digits.

" }, "TagResource":{ "name":"TagResource", @@ -387,7 +387,7 @@ "documentation":"

Value for a String annotation.

" } }, - "documentation":"

Value of a segment annotation. Has one of three value types: Number, Boolean or String.

" + "documentation":"

Value of a segment annotation. Has one of three value types: Number, Boolean, or String.

" }, "Annotations":{ "type":"map", @@ -415,10 +415,10 @@ "members":{ "Name":{ "shape":"String", - "documentation":"

The name of a corresponding availability zone.

" + "documentation":"

The name of a corresponding Availability Zone.

" } }, - "documentation":"

A list of availability zones corresponding to the segments in a trace.

" + "documentation":"

A list of Availability Zones corresponding to the segments in a trace.

" }, "BackendConnectionErrors":{ "type":"structure", @@ -505,7 +505,7 @@ }, "InsightsConfiguration":{ "shape":"InsightsConfiguration", - "documentation":"

The structure containing configurations related to insights. The InsightsEnabled boolean can be set to true to enable insights for the new group or false to disable insights for the new group.

" + "documentation":"

The structure containing configurations related to insights.

  • The InsightsEnabled boolean can be set to true to enable insights for the new group or false to disable insights for the new group.

  • The NotifcationsEnabled boolean can be set to true to enable insights notifications for the new group. Notifications may only be enabled on a group with InsightsEnabled set to true.

" }, "Tags":{ "shape":"TagList", @@ -518,7 +518,7 @@ "members":{ "Group":{ "shape":"Group", - "documentation":"

The group that was created. Contains the name of the group that was created, the ARN of the group that was generated based on the group name, the filter expression, and the insight configuration that was assigned to the group.

" + "documentation":"

The group that was created. Contains the name of the group that was created, the Amazon Resource Name (ARN) of the group that was generated based on the group name, the filter expression, and the insight configuration that was assigned to the group.

" } } }, @@ -911,7 +911,7 @@ "members":{ "Group":{ "shape":"Group", - "documentation":"

The group that was requested. Contains the name of the group, the ARN of the group, and the filter expression that assigned to the group.

" + "documentation":"

The group that was requested. Contains the name of the group, the ARN of the group, the filter expression, and the insight configuration assigned to the group.

" } } }, @@ -1030,11 +1030,11 @@ }, "GroupName":{ "shape":"GroupName", - "documentation":"

The name of a group to generate a graph based on.

" + "documentation":"

The name of a group based on which you want to generate a graph.

" }, "GroupARN":{ "shape":"GroupARN", - "documentation":"

The ARN of a group to generate a graph based on.

" + "documentation":"

The Amazon Resource Name (ARN) of a group based on which you want to generate a graph.

" }, "NextToken":{ "shape":"String", @@ -1088,7 +1088,7 @@ }, "GroupARN":{ "shape":"GroupARN", - "documentation":"

The ARN of the group for which to pull statistics from.

" + "documentation":"

The Amazon Resource Name (ARN) of the group for which to pull statistics from.

" }, "EntitySelectorExpression":{ "shape":"EntitySelectorExpression", @@ -1113,7 +1113,7 @@ }, "ContainsOldGroupVersions":{ "shape":"Boolean", - "documentation":"

A flag indicating whether or not a group's filter expression has been consistent, or if a returned aggregation may show statistics from an older version of the group's filter expression.

" + "documentation":"

A flag indicating whether or not a group's filter expression has been consistent, or if a returned aggregation might show statistics from an older version of the group's filter expression.

" }, "NextToken":{ "shape":"String", @@ -1173,7 +1173,7 @@ }, "SamplingStrategy":{ "shape":"SamplingStrategy", - "documentation":"

A paramater to indicate whether to enable sampling on trace summaries. Input parameters are Name and Value.

" + "documentation":"

A parameter to indicate whether to enable sampling on trace summaries. Input parameters are Name and Value.

" }, "FilterExpression":{ "shape":"FilterExpression", @@ -1202,7 +1202,7 @@ }, "NextToken":{ "shape":"String", - "documentation":"

If the requested time frame contained more than one page of results, you can use this token to retrieve the next page. The first page contains the most most recent results, closest to the end of the time frame.

" + "documentation":"

If the requested time frame contained more than one page of results, you can use this token to retrieve the next page. The first page contains the most recent results, closest to the end of the time frame.

" } } }, @@ -1215,7 +1215,7 @@ }, "GroupARN":{ "shape":"String", - "documentation":"

The ARN of the group generated based on the GroupName.

" + "documentation":"

The Amazon Resource Name (ARN) of the group generated based on the GroupName.

" }, "FilterExpression":{ "shape":"String", @@ -1223,7 +1223,7 @@ }, "InsightsConfiguration":{ "shape":"InsightsConfiguration", - "documentation":"

The structure containing configurations related to insights. The InsightsEnabled boolean can be set to true to enable insights for the group or false to disable insights for the group.

" + "documentation":"

The structure containing configurations related to insights.

  • The InsightsEnabled boolean can be set to true to enable insights for the group or false to disable insights for the group.

  • The NotifcationsEnabled boolean can be set to true to enable insights notifications through Amazon EventBridge for the group.

" } }, "documentation":"

Details and metadata for a group.

" @@ -1255,7 +1255,7 @@ }, "InsightsConfiguration":{ "shape":"InsightsConfiguration", - "documentation":"

The structure containing configurations related to insights. The InsightsEnabled boolean can be set to true to enable insights for the groups or false to disable insights for the groups.

" + "documentation":"

The structure containing configurations related to insights.

  • The InsightsEnabled boolean can be set to true to enable insights for the group or false to disable insights for the group.

  • The NotificationsEnabled boolean can be set to true to enable insights notifications. Notifications can only be enabled on a group with InsightsEnabled set to true.

" } }, "documentation":"

Details for a group without metadata.

" @@ -1326,6 +1326,10 @@ "InsightsEnabled":{ "shape":"NullableBoolean", "documentation":"

Set the InsightsEnabled value to true to enable insights or false to disable insights.

" + }, + "NotificationsEnabled":{ + "shape":"NullableBoolean", + "documentation":"

Set the NotificationsEnabled value to true to enable insights notifications. Notifications can only be enabled on a group with InsightsEnabled set to true.

" } }, "documentation":"

The structure containing configurations related to insights.

" @@ -1482,7 +1486,7 @@ "Message":{"shape":"ErrorMessage"}, "ResourceName":{"shape":"AmazonResourceName"} }, - "documentation":"

The resource was not found. Verify that the name or ARN of the resource is correct.

", + "documentation":"

The resource was not found. Verify that the name or Amazon Resource Name (ARN) of the resource is correct.

", "error":{"httpStatusCode":404}, "exception":true }, @@ -1509,7 +1513,7 @@ }, "Coverage":{ "shape":"NullableDouble", - "documentation":"

The types and messages of the exceptions.

" + "documentation":"

The type and messages of the exceptions.

" }, "Remote":{ "shape":"NullableBoolean", @@ -1765,7 +1769,7 @@ "documentation":"

The number of requests recorded.

" } }, - "documentation":"

Aggregated request sampling data for a sampling rule across all services for a 10 second window.

" + "documentation":"

Aggregated request sampling data for a sampling rule across all services for a 10-second window.

" }, "SamplingStatisticSummaryList":{ "type":"list", @@ -1847,7 +1851,7 @@ }, "ReservoirQuota":{ "shape":"NullableInteger", - "documentation":"

The number of requests per second that X-Ray allocated this service.

" + "documentation":"

The number of requests per second that X-Ray allocated for this service.

" }, "ReservoirQuotaTTL":{ "shape":"Timestamp", @@ -1912,7 +1916,7 @@ }, "Type":{ "shape":"String", - "documentation":"

The type of service.

  • AWS Resource - The type of an AWS resource. For example, AWS::EC2::Instance for a application running on Amazon EC2 or AWS::DynamoDB::Table for an Amazon DynamoDB table that the application used.

  • AWS Service - The type of an AWS service. For example, AWS::DynamoDB for downstream calls to Amazon DynamoDB that didn't target a specific table.

  • client - Represents the clients that sent requests to a root service.

  • remote - A downstream service of indeterminate type.

" + "documentation":"

The type of service.

  • AWS Resource - The type of an AWS resource. For example, AWS::EC2::Instance for an application running on Amazon EC2 or AWS::DynamoDB::Table for an Amazon DynamoDB table that the application used.

  • AWS Service - The type of an AWS service. For example, AWS::DynamoDB for downstream calls to Amazon DynamoDB that didn't target a specific table.

  • client - Represents the clients that sent requests to a root service.

  • remote - A downstream service of indeterminate type.

" }, "State":{ "shape":"String", @@ -1943,7 +1947,7 @@ "documentation":"

A histogram that maps the spread of service response times.

" } }, - "documentation":"

Information about an application that processed requests, users that made requests, or downstream services, resources and applications that an application used.

" + "documentation":"

Information about an application that processed requests, users that made requests, or downstream services, resources, and applications that an application used.

" }, "ServiceId":{ "type":"structure", @@ -2169,6 +2173,10 @@ "shape":"NullableDouble", "documentation":"

The length of time in seconds between the start time of the root segment and the end time of the last segment that completed.

" }, + "LimitExceeded":{ + "shape":"NullableBoolean", + "documentation":"

LimitExceeded is set to true when the trace has exceeded one of the defined quotas. For more information about quotas, see AWS X-Ray endpoints and quotas.

" + }, "Segments":{ "shape":"SegmentList", "documentation":"

Segment documents for the segments and subsegments that comprise the trace.

" @@ -2263,7 +2271,7 @@ }, "AvailabilityZones":{ "shape":"TraceAvailabilityZones", - "documentation":"

A list of availability zones for any zone corresponding to the trace segments.

" + "documentation":"

A list of Availability Zones for any zone corresponding to the trace segments.

" }, "EntryPoint":{ "shape":"ServiceId", @@ -2271,7 +2279,7 @@ }, "FaultRootCauses":{ "shape":"FaultRootCauses", - "documentation":"

A collection of FaultRootCause structures corresponding to the the trace segments.

" + "documentation":"

A collection of FaultRootCause structures corresponding to the trace segments.

" }, "ErrorRootCauses":{ "shape":"ErrorRootCauses", @@ -2405,7 +2413,7 @@ }, "InsightsConfiguration":{ "shape":"InsightsConfiguration", - "documentation":"

The structure containing configurations related to insights. The InsightsEnabled boolean can be set to true to enable insights for the group or false to disable insights for the group.

" + "documentation":"

The structure containing configurations related to insights.

  • The InsightsEnabled boolean can be set to true to enable insights for the group or false to disable insights for the group.

  • The NotifcationsEnabled boolean can be set to true to enable insights notifications for the group. Notifications can only be enabled on a group with InsightsEnabled set to true.

" } } }, From bb0d358da650465f2bcdcec72f74fb615f1ffde8 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 15 Oct 2020 18:07:09 +0000 Subject: [PATCH 004/339] Amazon WorkSpaces Update: Documentation updates for WorkSpaces --- .../feature-AmazonWorkSpaces-65ef022.json | 5 +++++ .../resources/codegen-resources/service-2.json | 18 +++++++++--------- 2 files changed, 14 insertions(+), 9 deletions(-) create mode 100644 .changes/next-release/feature-AmazonWorkSpaces-65ef022.json diff --git a/.changes/next-release/feature-AmazonWorkSpaces-65ef022.json b/.changes/next-release/feature-AmazonWorkSpaces-65ef022.json new file mode 100644 index 000000000000..fd7e04377a80 --- /dev/null +++ b/.changes/next-release/feature-AmazonWorkSpaces-65ef022.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "Amazon WorkSpaces", + "description": "Documentation updates for WorkSpaces" +} diff --git a/services/workspaces/src/main/resources/codegen-resources/service-2.json b/services/workspaces/src/main/resources/codegen-resources/service-2.json index 2f03c999addf..c99da7d6e769 100644 --- a/services/workspaces/src/main/resources/codegen-resources/service-2.json +++ b/services/workspaces/src/main/resources/codegen-resources/service-2.json @@ -82,7 +82,7 @@ {"shape":"AccessDeniedException"}, {"shape":"InvalidParameterValuesException"} ], - "documentation":"

Copies the specified image from the specified Region to the current Region.

" + "documentation":"

Copies the specified image from the specified Region to the current Region. For more information about copying images, see Copy a Custom WorkSpaces Image.

Before copying a shared image, be sure to verify that it has been shared from the correct AWS account. To determine if an image has been shared and to see the AWS account ID that owns an image, use the DescribeWorkSpaceImages and DescribeWorkspaceImagePermissions API operations.

" }, "CreateConnectionAlias":{ "name":"CreateConnectionAlias", @@ -486,7 +486,7 @@ {"shape":"InvalidParameterValuesException"}, {"shape":"AccessDeniedException"} ], - "documentation":"

Retrieves a list of IP address ranges, specified as IPv4 CIDR blocks, that you can use for the network management interface when you enable Bring Your Own License (BYOL).

The management network interface is connected to a secure Amazon WorkSpaces management network. It is used for interactive streaming of the WorkSpace desktop to Amazon WorkSpaces clients, and to allow Amazon WorkSpaces to manage the WorkSpace.

" + "documentation":"

Retrieves a list of IP address ranges, specified as IPv4 CIDR blocks, that you can use for the network management interface when you enable Bring Your Own License (BYOL).

This operation can be run only by AWS accounts that are enabled for BYOL. If your account isn't enabled for BYOL, you'll receive an AccessDeniedException error.

The management network interface is connected to a secure Amazon WorkSpaces management network. It is used for interactive streaming of the WorkSpace desktop to Amazon WorkSpaces clients, and to allow Amazon WorkSpaces to manage the WorkSpace.

" }, "MigrateWorkspace":{ "name":"MigrateWorkspace", @@ -716,7 +716,7 @@ }, "input":{"shape":"TerminateWorkspacesRequest"}, "output":{"shape":"TerminateWorkspacesResult"}, - "documentation":"

Terminates the specified WorkSpaces.

Terminating a WorkSpace is a permanent action and cannot be undone. The user's data is destroyed. If you need to archive any user data, contact Amazon Web Services before terminating the WorkSpace.

You can terminate a WorkSpace that is in any state except SUSPENDED.

This operation is asynchronous and returns before the WorkSpaces have been completely terminated.

" + "documentation":"

Terminates the specified WorkSpaces.

Terminating a WorkSpace is a permanent action and cannot be undone. The user's data is destroyed. If you need to archive any user data, contact AWS Support before terminating the WorkSpace.

You can terminate a WorkSpace that is in any state except SUSPENDED.

This operation is asynchronous and returns before the WorkSpaces have been completely terminated. After a WorkSpace is terminated, the TERMINATED state is returned only briefly before the WorkSpace directory metadata is cleaned up, so this state is rarely returned. To confirm that a WorkSpace is terminated, check for the WorkSpace ID by using DescribeWorkSpaces. If the WorkSpace ID isn't returned, then the WorkSpace has been successfully terminated.

" }, "UpdateConnectionAliasPermission":{ "name":"UpdateConnectionAliasPermission", @@ -769,7 +769,7 @@ {"shape":"InvalidParameterValuesException"}, {"shape":"OperationNotSupportedException"} ], - "documentation":"

Shares or unshares an image with one account by specifying whether that account has permission to copy the image. If the copy image permission is granted, the image is shared with that account. If the copy image permission is revoked, the image is unshared with the account.

  • To delete an image that has been shared, you must unshare the image before you delete it.

  • Sharing Bring Your Own License (BYOL) images across AWS accounts isn't supported at this time in the AWS GovCloud (US-West) Region. To share BYOL images across accounts in the AWS GovCloud (US-West) Region, contact AWS Support.

" + "documentation":"

Shares or unshares an image with one account by specifying whether that account has permission to copy the image. If the copy image permission is granted, the image is shared with that account. If the copy image permission is revoked, the image is unshared with the account. For more information about sharing images, see Share or Unshare a Custom WorkSpaces Image.

  • To delete an image that has been shared, you must unshare the image before you delete it.

  • Sharing Bring Your Own License (BYOL) images across AWS accounts isn't supported at this time in the AWS GovCloud (US-West) Region. To share BYOL images across accounts in the AWS GovCloud (US-West) Region, contact AWS Support.

" } }, "shapes":{ @@ -1221,7 +1221,7 @@ }, "Tags":{ "shape":"TagList", - "documentation":"

The tags. Each WorkSpaces resource can have a maximum of 50 tags. If you want to add new tags to a set of existing tags, you must submit all of the existing tags along with the new ones.

" + "documentation":"

The tags. Each WorkSpaces resource can have a maximum of 50 tags.

" } } }, @@ -1923,7 +1923,7 @@ "documentation":"

The identifier of the AWS account that an image has been shared with.

" } }, - "documentation":"

Describes the AWS accounts that have been granted permission to use a shared image.

" + "documentation":"

Describes the AWS accounts that have been granted permission to use a shared image. For more information about sharing images, see Share or Unshare a Custom WorkSpaces Image.

" }, "ImagePermissions":{ "type":"list", @@ -2877,7 +2877,7 @@ }, "SharedAccountId":{ "shape":"AwsAccount", - "documentation":"

The identifier of the AWS account to share or unshare the image with.

" + "documentation":"

The identifier of the AWS account to share or unshare the image with.

Before sharing the image, confirm that you are sharing to the correct AWS account ID.

" } } }, @@ -2924,7 +2924,7 @@ }, "State":{ "shape":"WorkspaceState", - "documentation":"

The operational state of the WorkSpace.

" + "documentation":"

The operational state of the WorkSpace.

After a WorkSpace is terminated, the TERMINATED state is returned only briefly before the WorkSpace directory metadata is cleaned up, so this state is rarely returned. To confirm that a WorkSpace is terminated, check for the WorkSpace ID by using DescribeWorkSpaces. If the WorkSpace ID isn't returned, then the WorkSpace has been successfully terminated.

" }, "BundleId":{ "shape":"BundleId", @@ -3146,7 +3146,7 @@ }, "State":{ "shape":"WorkspaceDirectoryState", - "documentation":"

The state of the directory's registration with Amazon WorkSpaces.

" + "documentation":"

The state of the directory's registration with Amazon WorkSpaces. After a directory is deregistered, the DEREGISTERED state is returned very briefly before the directory metadata is cleaned up, so this state is rarely returned. To confirm that a directory is deregistered, check for the directory ID by using DescribeWorkspaceDirectories. If the directory ID isn't returned, then the directory has been successfully deregistered.

" }, "WorkspaceCreationProperties":{ "shape":"DefaultWorkspaceCreationProperties", From 9c79c4f225db387ab898cabd05667e410d58c2c8 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 15 Oct 2020 18:07:09 +0000 Subject: [PATCH 005/339] Access Analyzer Update: This release adds support for the ApplyArchiveRule api in IAM Access Analyzer. The ApplyArchiveRule api allows users to apply an archive rule retroactively to existing findings in an analyzer. --- .../feature-AccessAnalyzer-d0bdabe.json | 5 ++ .../codegen-resources/service-2.json | 61 ++++++++++++++++--- 2 files changed, 57 insertions(+), 9 deletions(-) create mode 100644 .changes/next-release/feature-AccessAnalyzer-d0bdabe.json diff --git a/.changes/next-release/feature-AccessAnalyzer-d0bdabe.json b/.changes/next-release/feature-AccessAnalyzer-d0bdabe.json new file mode 100644 index 000000000000..d1a4da713cfd --- /dev/null +++ b/.changes/next-release/feature-AccessAnalyzer-d0bdabe.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "Access Analyzer", + "description": "This release adds support for the ApplyArchiveRule api in IAM Access Analyzer. The ApplyArchiveRule api allows users to apply an archive rule retroactively to existing findings in an analyzer." +} diff --git a/services/accessanalyzer/src/main/resources/codegen-resources/service-2.json b/services/accessanalyzer/src/main/resources/codegen-resources/service-2.json index 51f6803af99d..984c51aa13c8 100644 --- a/services/accessanalyzer/src/main/resources/codegen-resources/service-2.json +++ b/services/accessanalyzer/src/main/resources/codegen-resources/service-2.json @@ -12,6 +12,24 @@ "uid":"accessanalyzer-2019-11-01" }, "operations":{ + "ApplyArchiveRule":{ + "name":"ApplyArchiveRule", + "http":{ + "method":"PUT", + "requestUri":"/archive-rule", + "responseCode":200 + }, + "input":{"shape":"ApplyArchiveRuleRequest"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"}, + {"shape":"InternalServerException"}, + {"shape":"ThrottlingException"}, + {"shape":"AccessDeniedException"} + ], + "documentation":"

Retroactively applies the archive rule to existing findings that meet the archive rule criteria.

", + "idempotent":true + }, "CreateAnalyzer":{ "name":"CreateAnalyzer", "http":{ @@ -49,7 +67,7 @@ {"shape":"ThrottlingException"}, {"shape":"AccessDeniedException"} ], - "documentation":"

Creates an archive rule for the specified analyzer. Archive rules automatically archive findings that meet the criteria you define when you create the rule.

", + "documentation":"

Creates an archive rule for the specified analyzer. Archive rules automatically archive new findings that meet the criteria you define when you create the rule.

", "idempotent":true }, "DeleteAnalyzer":{ @@ -510,6 +528,29 @@ "type":"list", "member":{"shape":"AnalyzerSummary"} }, + "ApplyArchiveRuleRequest":{ + "type":"structure", + "required":[ + "analyzerArn", + "ruleName" + ], + "members":{ + "analyzerArn":{ + "shape":"AnalyzerArn", + "documentation":"

The Amazon resource name (ARN) of the analyzer.

" + }, + "clientToken":{ + "shape":"String", + "documentation":"

A client token.

", + "idempotencyToken":true + }, + "ruleName":{ + "shape":"Name", + "documentation":"

The name of the rule to apply.

" + } + }, + "documentation":"

Retroactively applies an archive rule.

" + }, "ArchiveRuleSummary":{ "type":"structure", "required":[ @@ -832,8 +873,8 @@ "FindingSourceType":{ "type":"string", "enum":[ - "BUCKET_ACL", "POLICY", + "BUCKET_ACL", "S3_ACCESS_POINT" ] }, @@ -1087,7 +1128,8 @@ "documentation":"

Internal server error.

", "error":{"httpStatusCode":500}, "exception":true, - "fault":true + "fault":true, + "retryable":{"throttling":false} }, "ListAnalyzedResourcesRequest":{ "type":"structure", @@ -1330,12 +1372,12 @@ "ResourceType":{ "type":"string", "enum":[ + "AWS::S3::Bucket", "AWS::IAM::Role", - "AWS::KMS::Key", + "AWS::SQS::Queue", "AWS::Lambda::Function", "AWS::Lambda::LayerVersion", - "AWS::S3::Bucket", - "AWS::SQS::Queue" + "AWS::KMS::Key" ] }, "ServiceQuotaExceededException":{ @@ -1463,7 +1505,8 @@ "httpStatusCode":429, "senderFault":true }, - "exception":true + "exception":true, + "retryable":{"throttling":true} }, "Timestamp":{ "type":"timestamp", @@ -1617,10 +1660,10 @@ "ValidationExceptionReason":{ "type":"string", "enum":[ + "unknownOperation", "cannotParse", "fieldValidationFailed", - "other", - "unknownOperation" + "other" ] }, "ValueList":{ From 77a5584e3da4929ddde9e73ac1c4c681e2a5927b Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 15 Oct 2020 18:07:18 +0000 Subject: [PATCH 006/339] AWS Database Migration Service Update: When creating Endpoints, Replication Instances, and Replication Tasks, the feature provides you the option to specify friendly name to the resources. --- ...e-AWSDatabaseMigrationService-3278537.json | 5 ++++ .../codegen-resources/service-2.json | 28 +++++++++++++++++-- 2 files changed, 31 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AWSDatabaseMigrationService-3278537.json diff --git a/.changes/next-release/feature-AWSDatabaseMigrationService-3278537.json b/.changes/next-release/feature-AWSDatabaseMigrationService-3278537.json new file mode 100644 index 000000000000..ef1daa645107 --- /dev/null +++ b/.changes/next-release/feature-AWSDatabaseMigrationService-3278537.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS Database Migration Service", + "description": "When creating Endpoints, Replication Instances, and Replication Tasks, the feature provides you the option to specify friendly name to the resources." +} diff --git a/services/databasemigration/src/main/resources/codegen-resources/service-2.json b/services/databasemigration/src/main/resources/codegen-resources/service-2.json index 27bfbdaea659..06f60b03a597 100644 --- a/services/databasemigration/src/main/resources/codegen-resources/service-2.json +++ b/services/databasemigration/src/main/resources/codegen-resources/service-2.json @@ -1156,6 +1156,10 @@ "IBMDb2Settings":{ "shape":"IBMDb2Settings", "documentation":"

Settings in JSON format for the source IBM Db2 LUW endpoint. For information about other available settings, see Extra connection attributes when using Db2 LUW as a source for AWS DMS in the AWS Database Migration Service User Guide.

" + }, + "ResourceIdentifier":{ + "shape":"String", + "documentation":"

A friendly name for the resource identifier at the end of the EndpointArn response parameter that is returned in the created Endpoint object. The value for this parameter can have up to 31 characters. It can contain only ASCII letters, digits, and hyphen ('-'). Also, it can't end with a hyphen or contain two consecutive hyphens, and can only begin with a letter, such as Example-App-ARN1. For example, this value might result in the EndpointArn value arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. If you don't specify a ResourceIdentifier value, AWS DMS generates a default identifier value for the end of EndpointArn.

" } }, "documentation":"

" @@ -1280,6 +1284,10 @@ "DnsNameServers":{ "shape":"String", "documentation":"

A list of custom DNS name servers supported for the replication instance to access your on-premise source or target database. This list overrides the default name servers supported by the replication instance. You can specify a comma-separated list of internet addresses for up to four on-premise DNS name servers. For example: \"1.1.1.1,2.2.2.2,3.3.3.3,4.4.4.4\"

" + }, + "ResourceIdentifier":{ + "shape":"String", + "documentation":"

A friendly name for the resource identifier at the end of the EndpointArn response parameter that is returned in the created Endpoint object. The value for this parameter can have up to 31 characters. It can contain only ASCII letters, digits, and hyphen ('-'). Also, it can't end with a hyphen or contain two consecutive hyphens, and can only begin with a letter, such as Example-App-ARN1. For example, this value might result in the EndpointArn value arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. If you don't specify a ResourceIdentifier value, AWS DMS generates a default identifier value for the end of EndpointArn.

" } }, "documentation":"

" @@ -1389,6 +1397,10 @@ "TaskData":{ "shape":"String", "documentation":"

Supplemental information that the task requires to migrate the data for certain source and target endpoints. For more information, see Specifying Supplemental Data for Task Settings in the AWS Database Migration Service User Guide.

" + }, + "ResourceIdentifier":{ + "shape":"String", + "documentation":"

A friendly name for the resource identifier at the end of the EndpointArn response parameter that is returned in the created Endpoint object. The value for this parameter can have up to 31 characters. It can contain only ASCII letters, digits, and hyphen ('-'). Also, it can't end with a hyphen or contain two consecutive hyphens, and can only begin with a letter, such as Example-App-ARN1. For example, this value might result in the EndpointArn value arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. If you don't specify a ResourceIdentifier value, AWS DMS generates a default identifier value for the end of EndpointArn.

" } }, "documentation":"

" @@ -3773,6 +3785,14 @@ "shape":"String", "documentation":"

The name of the intermediate S3 bucket used to store .csv files before uploading data to Redshift.

" }, + "CaseSensitiveNames":{ + "shape":"BooleanOptional", + "documentation":"

If Amazon Redshift is configured to support case sensitive schema names, set CaseSensitiveNames to true. The default is false.

" + }, + "CompUpdate":{ + "shape":"BooleanOptional", + "documentation":"

If you set CompUpdate to true Amazon Redshift applies automatic compression if the table is empty. This applies even if the table columns already have encodings other than RAW. If you set CompUpdate to false, automatic compression is disabled and existing column encodings aren't changed. The default is true.

" + }, "ConnectionTimeout":{ "shape":"IntegerOptional", "documentation":"

A value that sets the amount of time to wait (in milliseconds) before timing out, beginning from when you initially establish a connection.

" @@ -3793,6 +3813,10 @@ "shape":"EncryptionModeValue", "documentation":"

The type of server-side encryption that you want to use for your data. This encryption type is part of the endpoint settings or the extra connections attributes for Amazon S3. You can choose either SSE_S3 (the default) or SSE_KMS.

For the ModifyEndpoint operation, you can change the existing value of the EncryptionMode parameter from SSE_KMS to SSE_S3. But you can’t change the existing value from SSE_S3 to SSE_KMS.

To use SSE_S3, create an AWS Identity and Access Management (IAM) role with a policy that allows \"arn:aws:s3:::*\" to use the following actions: \"s3:PutObject\", \"s3:ListBucket\"

" }, + "ExplicitIds":{ + "shape":"BooleanOptional", + "documentation":"

This setting is only valid for a full-load migration task. Set ExplicitIds to true to have tables with IDENTITY columns override their auto-generated values with explicit values loaded from the source data files used to populate the tables. The default is false.

" + }, "FileTransferUploadStreams":{ "shape":"IntegerOptional", "documentation":"

The number of threads used to upload a single file. This parameter accepts a value from 1 through 64. It defaults to 10.

The number of parallel streams used to upload a single .csv file to an S3 bucket using S3 Multipart Upload. For more information, see Multipart upload overview.

FileTransferUploadStreams accepts a value from 1 through 64. It defaults to 10.

" @@ -4625,7 +4649,7 @@ }, "DatePartitionDelimiter":{ "shape":"DatePartitionDelimiterValue", - "documentation":"

Specifies a date separating delimiter to use during folder partitioning. The default value is SLASH (/). Use this parameter when DatePartitionedEnabled is set to true.

" + "documentation":"

Specifies a date separating delimiter to use during folder partitioning. The default value is SLASH. Use this parameter when DatePartitionedEnabled is set to true.

" } }, "documentation":"

Settings for exporting data to Amazon S3.

" @@ -4768,7 +4792,7 @@ }, "StartReplicationTaskType":{ "shape":"StartReplicationTaskTypeValue", - "documentation":"

The type of replication task.

" + "documentation":"

A type of replication task.

" }, "CdcStartTime":{ "shape":"TStamp", From 553b19ad2e7a1b65599682f309d406bc6eac4890 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 15 Oct 2020 18:07:12 +0000 Subject: [PATCH 007/339] AWS Budgets Update: This release introduces AWS Budgets Actions, allowing you to define an explicit response(or set of responses) to take when your budget exceeds it's action threshold. --- .../feature-AWSBudgets-55c6003.json | 5 + .../codegen-resources/paginators-1.json | 18 + .../codegen-resources/service-2.json | 764 +++++++++++++++++- 3 files changed, 785 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AWSBudgets-55c6003.json diff --git a/.changes/next-release/feature-AWSBudgets-55c6003.json b/.changes/next-release/feature-AWSBudgets-55c6003.json new file mode 100644 index 000000000000..5d4897a2d3f1 --- /dev/null +++ b/.changes/next-release/feature-AWSBudgets-55c6003.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS Budgets", + "description": "This release introduces AWS Budgets Actions, allowing you to define an explicit response(or set of responses) to take when your budget exceeds it's action threshold." +} diff --git a/services/budgets/src/main/resources/codegen-resources/paginators-1.json b/services/budgets/src/main/resources/codegen-resources/paginators-1.json index 03c71c8e45e1..d317a71f3c6c 100644 --- a/services/budgets/src/main/resources/codegen-resources/paginators-1.json +++ b/services/budgets/src/main/resources/codegen-resources/paginators-1.json @@ -1,5 +1,23 @@ { "pagination": { + "DescribeBudgetActionHistories": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "ActionHistories" + }, + "DescribeBudgetActionsForAccount": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "Actions" + }, + "DescribeBudgetActionsForBudget": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "Actions" + }, "DescribeBudgetPerformanceHistory": { "input_token": "NextToken", "limit_key": "MaxResults", diff --git a/services/budgets/src/main/resources/codegen-resources/service-2.json b/services/budgets/src/main/resources/codegen-resources/service-2.json index 2fb162a8e58d..cd5ecf7c328f 100755 --- a/services/budgets/src/main/resources/codegen-resources/service-2.json +++ b/services/budgets/src/main/resources/codegen-resources/service-2.json @@ -30,6 +30,24 @@ ], "documentation":"

Creates a budget and, if included, notifications and subscribers.

Only one of BudgetLimit or PlannedBudgetLimits can be present in the syntax at one time. Use the syntax that matches your case. The Request Syntax section shows the BudgetLimit syntax. For PlannedBudgetLimits, see the Examples section.

" }, + "CreateBudgetAction":{ + "name":"CreateBudgetAction", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateBudgetActionRequest"}, + "output":{"shape":"CreateBudgetActionResponse"}, + "errors":[ + {"shape":"InvalidParameterException"}, + {"shape":"InternalErrorException"}, + {"shape":"CreationLimitExceededException"}, + {"shape":"DuplicateRecordException"}, + {"shape":"NotFoundException"}, + {"shape":"AccessDeniedException"} + ], + "documentation":"

Creates a budget action.

" + }, "CreateNotification":{ "name":"CreateNotification", "http":{ @@ -82,6 +100,23 @@ ], "documentation":"

Deletes a budget. You can delete your budget at any time.

Deleting a budget also deletes the notifications and subscribers that are associated with that budget.

" }, + "DeleteBudgetAction":{ + "name":"DeleteBudgetAction", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteBudgetActionRequest"}, + "output":{"shape":"DeleteBudgetActionResponse"}, + "errors":[ + {"shape":"InternalErrorException"}, + {"shape":"InvalidParameterException"}, + {"shape":"NotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ResourceLockedException"} + ], + "documentation":"

Deletes a budget action.

" + }, "DeleteNotification":{ "name":"DeleteNotification", "http":{ @@ -130,6 +165,72 @@ ], "documentation":"

Describes a budget.

The Request Syntax section shows the BudgetLimit syntax. For PlannedBudgetLimits, see the Examples section.

" }, + "DescribeBudgetAction":{ + "name":"DescribeBudgetAction", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeBudgetActionRequest"}, + "output":{"shape":"DescribeBudgetActionResponse"}, + "errors":[ + {"shape":"InternalErrorException"}, + {"shape":"InvalidParameterException"}, + {"shape":"NotFoundException"}, + {"shape":"AccessDeniedException"} + ], + "documentation":"

Describes a budget action detail.

" + }, + "DescribeBudgetActionHistories":{ + "name":"DescribeBudgetActionHistories", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeBudgetActionHistoriesRequest"}, + "output":{"shape":"DescribeBudgetActionHistoriesResponse"}, + "errors":[ + {"shape":"InternalErrorException"}, + {"shape":"InvalidParameterException"}, + {"shape":"NotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"InvalidNextTokenException"} + ], + "documentation":"

Describes a budget action history detail.

" + }, + "DescribeBudgetActionsForAccount":{ + "name":"DescribeBudgetActionsForAccount", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeBudgetActionsForAccountRequest"}, + "output":{"shape":"DescribeBudgetActionsForAccountResponse"}, + "errors":[ + {"shape":"InternalErrorException"}, + {"shape":"InvalidParameterException"}, + {"shape":"AccessDeniedException"}, + {"shape":"InvalidNextTokenException"} + ], + "documentation":"

Describes all of the budget actions for an account.

" + }, + "DescribeBudgetActionsForBudget":{ + "name":"DescribeBudgetActionsForBudget", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeBudgetActionsForBudgetRequest"}, + "output":{"shape":"DescribeBudgetActionsForBudgetResponse"}, + "errors":[ + {"shape":"InternalErrorException"}, + {"shape":"InvalidParameterException"}, + {"shape":"NotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"InvalidNextTokenException"} + ], + "documentation":"

Describes all of the budget actions for a budget.

" + }, "DescribeBudgetPerformanceHistory":{ "name":"DescribeBudgetPerformanceHistory", "http":{ @@ -202,6 +303,23 @@ ], "documentation":"

Lists the subscribers that are associated with a notification.

" }, + "ExecuteBudgetAction":{ + "name":"ExecuteBudgetAction", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ExecuteBudgetActionRequest"}, + "output":{"shape":"ExecuteBudgetActionResponse"}, + "errors":[ + {"shape":"InternalErrorException"}, + {"shape":"InvalidParameterException"}, + {"shape":"NotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ResourceLockedException"} + ], + "documentation":"

Executes a budget action.

" + }, "UpdateBudget":{ "name":"UpdateBudget", "http":{ @@ -218,6 +336,23 @@ ], "documentation":"

Updates a budget. You can change every part of a budget except for the budgetName and the calculatedSpend. When you modify a budget, the calculatedSpend drops to zero until AWS has new usage data to use for forecasting.

Only one of BudgetLimit or PlannedBudgetLimits can be present in the syntax at one time. Use the syntax that matches your case. The Request Syntax section shows the BudgetLimit syntax. For PlannedBudgetLimits, see the Examples section.

" }, + "UpdateBudgetAction":{ + "name":"UpdateBudgetAction", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateBudgetActionRequest"}, + "output":{"shape":"UpdateBudgetActionResponse"}, + "errors":[ + {"shape":"InternalErrorException"}, + {"shape":"InvalidParameterException"}, + {"shape":"NotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ResourceLockedException"} + ], + "documentation":"

Updates a budget action.

" + }, "UpdateNotification":{ "name":"UpdateNotification", "http":{ @@ -269,6 +404,162 @@ "min":12, "pattern":"\\d{12}" }, + "Action":{ + "type":"structure", + "required":[ + "ActionId", + "BudgetName", + "NotificationType", + "ActionType", + "ActionThreshold", + "Definition", + "ExecutionRoleArn", + "ApprovalModel", + "Status", + "Subscribers" + ], + "members":{ + "ActionId":{ + "shape":"ActionId", + "documentation":"

A system-generated universally unique identifier (UUID) for the action.

" + }, + "BudgetName":{"shape":"BudgetName"}, + "NotificationType":{"shape":"NotificationType"}, + "ActionType":{ + "shape":"ActionType", + "documentation":"

The type of action. This defines the type of tasks that can be carried out by this action. This field also determines the format for definition.

" + }, + "ActionThreshold":{ + "shape":"ActionThreshold", + "documentation":"

The trigger threshold of the action.

" + }, + "Definition":{ + "shape":"Definition", + "documentation":"

Where you specify all of the type-specific parameters.

" + }, + "ExecutionRoleArn":{ + "shape":"RoleArn", + "documentation":"

The role passed for action execution and reversion. Roles and actions must be in the same account.

" + }, + "ApprovalModel":{ + "shape":"ApprovalModel", + "documentation":"

This specifies if the action needs manual or automatic approval.

" + }, + "Status":{ + "shape":"ActionStatus", + "documentation":"

The status of action.

" + }, + "Subscribers":{"shape":"Subscribers"} + }, + "documentation":"

A budget action resource.

" + }, + "ActionHistories":{ + "type":"list", + "member":{"shape":"ActionHistory"}, + "max":100, + "min":0 + }, + "ActionHistory":{ + "type":"structure", + "required":[ + "Timestamp", + "Status", + "EventType", + "ActionHistoryDetails" + ], + "members":{ + "Timestamp":{"shape":"GenericTimestamp"}, + "Status":{ + "shape":"ActionStatus", + "documentation":"

The status of action at the time of the event.

" + }, + "EventType":{ + "shape":"EventType", + "documentation":"

This distinguishes between whether the events are triggered by the user or generated by the system.

" + }, + "ActionHistoryDetails":{ + "shape":"ActionHistoryDetails", + "documentation":"

The description of details of the event.

" + } + }, + "documentation":"

The historical records for a budget action.

" + }, + "ActionHistoryDetails":{ + "type":"structure", + "required":[ + "Message", + "Action" + ], + "members":{ + "Message":{"shape":"GenericString"}, + "Action":{ + "shape":"Action", + "documentation":"

The budget action resource.

" + } + }, + "documentation":"

The description of details of the event.

" + }, + "ActionId":{ + "type":"string", + "max":36, + "min":36, + "pattern":"^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$" + }, + "ActionStatus":{ + "type":"string", + "enum":[ + "STANDBY", + "PENDING", + "EXECUTION_IN_PROGRESS", + "EXECUTION_SUCCESS", + "EXECUTION_FAILURE", + "REVERSE_IN_PROGRESS", + "REVERSE_SUCCESS", + "REVERSE_FAILURE", + "RESET_IN_PROGRESS", + "RESET_FAILURE" + ] + }, + "ActionSubType":{ + "type":"string", + "enum":[ + "STOP_EC2_INSTANCES", + "STOP_RDS_INSTANCES" + ] + }, + "ActionThreshold":{ + "type":"structure", + "required":[ + "ActionThresholdValue", + "ActionThresholdType" + ], + "members":{ + "ActionThresholdValue":{"shape":"NotificationThreshold"}, + "ActionThresholdType":{"shape":"ThresholdType"} + }, + "documentation":"

The trigger threshold of the action.

" + }, + "ActionType":{ + "type":"string", + "enum":[ + "APPLY_IAM_POLICY", + "APPLY_SCP_POLICY", + "RUN_SSM_DOCUMENTS" + ] + }, + "Actions":{ + "type":"list", + "member":{"shape":"Action"}, + "max":100, + "min":0 + }, + "ApprovalModel":{ + "type":"string", + "enum":[ + "AUTOMATIC", + "MANUAL" + ] + }, "Budget":{ "type":"structure", "required":[ @@ -467,6 +758,56 @@ }, "documentation":"

The types of cost that are included in a COST budget, such as tax and subscriptions.

USAGE, RI_UTILIZATION, RI_COVERAGE, SAVINGS_PLANS_UTILIZATION, and SAVINGS_PLANS_COVERAGE budgets do not have CostTypes.

" }, + "CreateBudgetActionRequest":{ + "type":"structure", + "required":[ + "AccountId", + "BudgetName", + "NotificationType", + "ActionType", + "ActionThreshold", + "Definition", + "ExecutionRoleArn", + "ApprovalModel", + "Subscribers" + ], + "members":{ + "AccountId":{"shape":"AccountId"}, + "BudgetName":{"shape":"BudgetName"}, + "NotificationType":{"shape":"NotificationType"}, + "ActionType":{ + "shape":"ActionType", + "documentation":"

The type of action. This defines the type of tasks that can be carried out by this action. This field also determines the format for definition.

" + }, + "ActionThreshold":{"shape":"ActionThreshold"}, + "Definition":{"shape":"Definition"}, + "ExecutionRoleArn":{ + "shape":"RoleArn", + "documentation":"

The role passed for action execution and reversion. Roles and actions must be in the same account.

" + }, + "ApprovalModel":{ + "shape":"ApprovalModel", + "documentation":"

This specifies if the action needs manual or automatic approval.

" + }, + "Subscribers":{"shape":"Subscribers"} + } + }, + "CreateBudgetActionResponse":{ + "type":"structure", + "required":[ + "AccountId", + "BudgetName", + "ActionId" + ], + "members":{ + "AccountId":{"shape":"AccountId"}, + "BudgetName":{"shape":"BudgetName"}, + "ActionId":{ + "shape":"ActionId", + "documentation":"

A system-generated universally unique identifier (UUID) for the action.

" + } + } + }, "CreateBudgetRequest":{ "type":"structure", "required":[ @@ -571,6 +912,53 @@ "documentation":"

You've exceeded the notification or subscriber limit.

", "exception":true }, + "Definition":{ + "type":"structure", + "members":{ + "IamActionDefinition":{ + "shape":"IamActionDefinition", + "documentation":"

The AWS Identity and Access Management (IAM) action definition details.

" + }, + "ScpActionDefinition":{ + "shape":"ScpActionDefinition", + "documentation":"

The service control policies (SCPs) action definition details.

" + }, + "SsmActionDefinition":{ + "shape":"SsmActionDefinition", + "documentation":"

The AWS Systems Manager (SSM) action definition details.

" + } + }, + "documentation":"

Specifies all of the type-specific parameters.

" + }, + "DeleteBudgetActionRequest":{ + "type":"structure", + "required":[ + "AccountId", + "BudgetName", + "ActionId" + ], + "members":{ + "AccountId":{"shape":"AccountId"}, + "BudgetName":{"shape":"BudgetName"}, + "ActionId":{ + "shape":"ActionId", + "documentation":"

A system-generated universally unique identifier (UUID) for the action.

" + } + } + }, + "DeleteBudgetActionResponse":{ + "type":"structure", + "required":[ + "AccountId", + "BudgetName", + "Action" + ], + "members":{ + "AccountId":{"shape":"AccountId"}, + "BudgetName":{"shape":"BudgetName"}, + "Action":{"shape":"Action"} + } + }, "DeleteBudgetRequest":{ "type":"structure", "required":[ @@ -658,6 +1046,112 @@ }, "documentation":"

Response of DeleteSubscriber

" }, + "DescribeBudgetActionHistoriesRequest":{ + "type":"structure", + "required":[ + "AccountId", + "BudgetName", + "ActionId" + ], + "members":{ + "AccountId":{"shape":"AccountId"}, + "BudgetName":{"shape":"BudgetName"}, + "ActionId":{ + "shape":"ActionId", + "documentation":"

A system-generated universally unique identifier (UUID) for the action.

" + }, + "TimePeriod":{"shape":"TimePeriod"}, + "MaxResults":{"shape":"MaxResults"}, + "NextToken":{"shape":"GenericString"} + } + }, + "DescribeBudgetActionHistoriesResponse":{ + "type":"structure", + "required":["ActionHistories"], + "members":{ + "ActionHistories":{ + "shape":"ActionHistories", + "documentation":"

The historical record of the budget action resource.

" + }, + "NextToken":{"shape":"GenericString"} + } + }, + "DescribeBudgetActionRequest":{ + "type":"structure", + "required":[ + "AccountId", + "BudgetName", + "ActionId" + ], + "members":{ + "AccountId":{"shape":"AccountId"}, + "BudgetName":{"shape":"BudgetName"}, + "ActionId":{ + "shape":"ActionId", + "documentation":"

A system-generated universally unique identifier (UUID) for the action.

" + } + } + }, + "DescribeBudgetActionResponse":{ + "type":"structure", + "required":[ + "AccountId", + "BudgetName", + "Action" + ], + "members":{ + "AccountId":{"shape":"AccountId"}, + "BudgetName":{"shape":"BudgetName"}, + "Action":{ + "shape":"Action", + "documentation":"

A budget action resource.

" + } + } + }, + "DescribeBudgetActionsForAccountRequest":{ + "type":"structure", + "required":["AccountId"], + "members":{ + "AccountId":{"shape":"AccountId"}, + "MaxResults":{"shape":"MaxResults"}, + "NextToken":{"shape":"GenericString"} + } + }, + "DescribeBudgetActionsForAccountResponse":{ + "type":"structure", + "required":["Actions"], + "members":{ + "Actions":{ + "shape":"Actions", + "documentation":"

A list of the budget action resources information.

" + }, + "NextToken":{"shape":"GenericString"} + } + }, + "DescribeBudgetActionsForBudgetRequest":{ + "type":"structure", + "required":[ + "AccountId", + "BudgetName" + ], + "members":{ + "AccountId":{"shape":"AccountId"}, + "BudgetName":{"shape":"BudgetName"}, + "MaxResults":{"shape":"MaxResults"}, + "NextToken":{"shape":"GenericString"} + } + }, + "DescribeBudgetActionsForBudgetResponse":{ + "type":"structure", + "required":["Actions"], + "members":{ + "Actions":{ + "shape":"Actions", + "documentation":"

A list of the budget action resources information.

" + }, + "NextToken":{"shape":"GenericString"} + } + }, "DescribeBudgetPerformanceHistoryRequest":{ "type":"structure", "required":[ @@ -843,6 +1337,67 @@ "documentation":"

The budget name already exists. Budget names must be unique within an account.

", "exception":true }, + "EventType":{ + "type":"string", + "enum":[ + "SYSTEM", + "CREATE_ACTION", + "DELETE_ACTION", + "UPDATE_ACTION", + "EXECUTE_ACTION" + ] + }, + "ExecuteBudgetActionRequest":{ + "type":"structure", + "required":[ + "AccountId", + "BudgetName", + "ActionId", + "ExecutionType" + ], + "members":{ + "AccountId":{"shape":"AccountId"}, + "BudgetName":{"shape":"BudgetName"}, + "ActionId":{ + "shape":"ActionId", + "documentation":"

A system-generated universally unique identifier (UUID) for the action.

" + }, + "ExecutionType":{ + "shape":"ExecutionType", + "documentation":"

The type of execution.

" + } + } + }, + "ExecuteBudgetActionResponse":{ + "type":"structure", + "required":[ + "AccountId", + "BudgetName", + "ActionId", + "ExecutionType" + ], + "members":{ + "AccountId":{"shape":"AccountId"}, + "BudgetName":{"shape":"BudgetName"}, + "ActionId":{ + "shape":"ActionId", + "documentation":"

A system-generated universally unique identifier (UUID) for the action.

" + }, + "ExecutionType":{ + "shape":"ExecutionType", + "documentation":"

The type of execution.

" + } + } + }, + "ExecutionType":{ + "type":"string", + "enum":[ + "APPROVE_BUDGET_ACTION", + "RETRY_BUDGET_ACTION", + "REVERSE_BUDGET_ACTION", + "RESET_BUDGET_ACTION" + ] + }, "ExpiredNextTokenException":{ "type":"structure", "members":{ @@ -862,6 +1417,53 @@ "type":"timestamp", "documentation":"

A generic time stamp. In Java, it is transformed to a Date object.

" }, + "Group":{ + "type":"string", + "max":640, + "min":1, + "pattern":"^([\\u0021-\\u007F]+\\u002F)?[\\w+=,.@-]+$" + }, + "Groups":{ + "type":"list", + "member":{"shape":"Group"}, + "max":100, + "min":1 + }, + "IamActionDefinition":{ + "type":"structure", + "required":["PolicyArn"], + "members":{ + "PolicyArn":{ + "shape":"PolicyArn", + "documentation":"

The Amazon Resource Name (ARN) of the policy to be attached.

" + }, + "Roles":{ + "shape":"Roles", + "documentation":"

A list of roles to be attached. There must be at least one role.

" + }, + "Groups":{ + "shape":"Groups", + "documentation":"

A list of groups to be attached. There must be at least one group.

" + }, + "Users":{ + "shape":"Users", + "documentation":"

A list of users to be attached. There must be at least one user.

" + } + }, + "documentation":"

The AWS Identity and Access Management (IAM) action definition details.

" + }, + "InstanceId":{ + "type":"string", + "max":63, + "min":1, + "pattern":"^i-(\\w{8}|\\w{17})$|^[a-zA-Z]([\\w-]{0,61}\\w)?$" + }, + "InstanceIds":{ + "type":"list", + "member":{"shape":"InstanceId"}, + "max":100, + "min":1 + }, "InternalErrorException":{ "type":"structure", "members":{ @@ -941,7 +1543,7 @@ }, "NotificationThreshold":{ "type":"double", - "documentation":"

The threshold of a notification. It must be a number between 0 and 1,000,000,000.

", + "documentation":"

The threshold of a notification.

", "max":40000000000, "min":0 }, @@ -998,6 +1600,68 @@ "key":{"shape":"GenericString"}, "value":{"shape":"Spend"} }, + "PolicyArn":{ + "type":"string", + "max":684, + "min":25, + "pattern":"^arn:(aws|aws-cn|aws-us-gov|us-iso-east-1|us-isob-east-1):iam::(\\d{12}|aws):policy(\\u002F[\\u0021-\\u007F]+\\u002F|\\u002F)[\\w+=,.@-]+$" + }, + "PolicyId":{ + "type":"string", + "max":130, + "min":10, + "pattern":"^p-[0-9a-zA-Z_]{8,128}$" + }, + "Region":{ + "type":"string", + "max":20, + "min":9, + "pattern":"^\\w{2}-\\w+(-\\w+)?-\\d$" + }, + "ResourceLockedException":{ + "type":"structure", + "members":{ + "Message":{"shape":"errorMessage"} + }, + "documentation":"

The request was received and recognized by the server, but the server rejected that particular method for the requested resource.

", + "exception":true + }, + "Role":{ + "type":"string", + "max":576, + "min":1, + "pattern":"^([\\u0021-\\u007F]+\\u002F)?[\\w+=,.@-]+$" + }, + "RoleArn":{ + "type":"string", + "max":618, + "min":32, + "pattern":"^arn:(aws|aws-cn|aws-us-gov|us-iso-east-1|us-isob-east-1):iam::\\d{12}:role(\\u002F[\\u0021-\\u007F]+\\u002F|\\u002F)[\\w+=,.@-]+$" + }, + "Roles":{ + "type":"list", + "member":{"shape":"Role"}, + "max":100, + "min":1 + }, + "ScpActionDefinition":{ + "type":"structure", + "required":[ + "PolicyId", + "TargetIds" + ], + "members":{ + "PolicyId":{ + "shape":"PolicyId", + "documentation":"

The policy ID attached.

" + }, + "TargetIds":{ + "shape":"TargetIds", + "documentation":"

A list of target IDs.

" + } + }, + "documentation":"

The service control policies (SCP) action definition details.

" + }, "Spend":{ "type":"structure", "required":[ @@ -1016,6 +1680,29 @@ }, "documentation":"

The amount of cost or usage that is measured for a budget.

For example, a Spend for 3 GB of S3 usage would have the following parameters:

  • An Amount of 3

  • A unit of GB

" }, + "SsmActionDefinition":{ + "type":"structure", + "required":[ + "ActionSubType", + "Region", + "InstanceIds" + ], + "members":{ + "ActionSubType":{ + "shape":"ActionSubType", + "documentation":"

The action subType.

" + }, + "Region":{ + "shape":"Region", + "documentation":"

The Region to run the SSM document.

" + }, + "InstanceIds":{ + "shape":"InstanceIds", + "documentation":"

The EC2 and RDS instance IDs.

" + } + }, + "documentation":"

The AWS Systems Manager (SSM) action definition details.

" + }, "Subscriber":{ "type":"structure", "required":[ @@ -1057,9 +1744,21 @@ "EMAIL" ] }, + "TargetId":{ + "type":"string", + "max":68, + "min":12, + "pattern":"^(ou-[0-9a-z]{4,32}-[a-z0-9]{8,32}$)|(\\d{12})" + }, + "TargetIds":{ + "type":"list", + "member":{"shape":"TargetId"}, + "max":100, + "min":1 + }, "ThresholdType":{ "type":"string", - "documentation":"

The type of threshold for a notification. It can be PERCENTAGE or ABSOLUTE_VALUE.

", + "documentation":"

The type of threshold for a notification.

", "enum":[ "PERCENTAGE", "ABSOLUTE_VALUE" @@ -1096,6 +1795,55 @@ "min":1, "pattern":".*" }, + "UpdateBudgetActionRequest":{ + "type":"structure", + "required":[ + "AccountId", + "BudgetName", + "ActionId" + ], + "members":{ + "AccountId":{"shape":"AccountId"}, + "BudgetName":{"shape":"BudgetName"}, + "ActionId":{ + "shape":"ActionId", + "documentation":"

A system-generated universally unique identifier (UUID) for the action.

" + }, + "NotificationType":{"shape":"NotificationType"}, + "ActionThreshold":{"shape":"ActionThreshold"}, + "Definition":{"shape":"Definition"}, + "ExecutionRoleArn":{ + "shape":"RoleArn", + "documentation":"

The role passed for action execution and reversion. Roles and actions must be in the same account.

" + }, + "ApprovalModel":{ + "shape":"ApprovalModel", + "documentation":"

This specifies if the action needs manual or automatic approval.

" + }, + "Subscribers":{"shape":"Subscribers"} + } + }, + "UpdateBudgetActionResponse":{ + "type":"structure", + "required":[ + "AccountId", + "BudgetName", + "OldAction", + "NewAction" + ], + "members":{ + "AccountId":{"shape":"AccountId"}, + "BudgetName":{"shape":"BudgetName"}, + "OldAction":{ + "shape":"Action", + "documentation":"

The previous action resource information.

" + }, + "NewAction":{ + "shape":"Action", + "documentation":"

The updated action resource information.

" + } + } + }, "UpdateBudgetRequest":{ "type":"structure", "required":[ @@ -1193,6 +1941,18 @@ }, "documentation":"

Response of UpdateSubscriber

" }, + "User":{ + "type":"string", + "max":576, + "min":1, + "pattern":"^([\\u0021-\\u007F]+\\u002F)?[\\w+=,.@-]+$" + }, + "Users":{ + "type":"list", + "member":{"shape":"User"}, + "max":100, + "min":1 + }, "errorMessage":{ "type":"string", "documentation":"

The error message the exception carries.

" From d22c14f3392815f2f2d52b1c076d30bef3b741c4 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 15 Oct 2020 18:07:08 +0000 Subject: [PATCH 008/339] AWS Cost Explorer Service Update: This release improves email validation for subscriptions on the SDK endpoints. --- .../next-release/feature-AWSCostExplorerService-6fd7128.json | 5 +++++ .../src/main/resources/codegen-resources/service-2.json | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AWSCostExplorerService-6fd7128.json diff --git a/.changes/next-release/feature-AWSCostExplorerService-6fd7128.json b/.changes/next-release/feature-AWSCostExplorerService-6fd7128.json new file mode 100644 index 000000000000..0dc175d616f2 --- /dev/null +++ b/.changes/next-release/feature-AWSCostExplorerService-6fd7128.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS Cost Explorer Service", + "description": "This release improves email validation for subscriptions on the SDK endpoints." +} diff --git a/services/costexplorer/src/main/resources/codegen-resources/service-2.json b/services/costexplorer/src/main/resources/codegen-resources/service-2.json index 85db44f930c5..5281f2a53b9c 100644 --- a/services/costexplorer/src/main/resources/codegen-resources/service-2.json +++ b/services/costexplorer/src/main/resources/codegen-resources/service-2.json @@ -1665,7 +1665,7 @@ }, "GroupBy":{ "shape":"GroupDefinitions", - "documentation":"

You can group Amazon Web Services costs using up to two different groups: either dimensions, tag keys, or both.

" + "documentation":"

You can group Amazon Web Services costs using up to two different groups: DIMENSION, TAG, COST_CATEGORY.

" }, "NextPageToken":{ "shape":"NextPageToken", @@ -3522,7 +3522,7 @@ "type":"string", "max":302, "min":6, - "pattern":"(^[a-zA-Z0-9_-]+@[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)+$)|(^arn:(aws[a-zA-Z-]*):sns:[a-zA-Z0-9-]+:[0-9]{12}:[a-zA-Z0-9_-]+$)" + "pattern":"(^[a-zA-Z0-9.!#$%&'*+=?^_‘{|}~-]+@[a-zA-Z0-9_-]+(\\.[a-zA-Z0-9_-]+)+$)|(^arn:(aws[a-zA-Z-]*):sns:[a-zA-Z0-9-]+:[0-9]{12}:[a-zA-Z0-9_-]+$)" }, "SubscriberStatus":{ "type":"string", From cbab8544487013582082e050d400f93b6f461fbe Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 15 Oct 2020 18:07:13 +0000 Subject: [PATCH 009/339] AWS Transfer Family Update: Add support to associate VPC Security Groups at server creation. --- .../feature-AWSTransferFamily-aeee486.json | 5 + .../codegen-resources/service-2.json | 158 ++++++++++-------- 2 files changed, 91 insertions(+), 72 deletions(-) create mode 100644 .changes/next-release/feature-AWSTransferFamily-aeee486.json diff --git a/.changes/next-release/feature-AWSTransferFamily-aeee486.json b/.changes/next-release/feature-AWSTransferFamily-aeee486.json new file mode 100644 index 000000000000..a717d9593121 --- /dev/null +++ b/.changes/next-release/feature-AWSTransferFamily-aeee486.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS Transfer Family", + "description": "Add support to associate VPC Security Groups at server creation." +} diff --git a/services/transfer/src/main/resources/codegen-resources/service-2.json b/services/transfer/src/main/resources/codegen-resources/service-2.json index 908f6595f6c7..0e130ed87bf0 100644 --- a/services/transfer/src/main/resources/codegen-resources/service-2.json +++ b/services/transfer/src/main/resources/codegen-resources/service-2.json @@ -257,7 +257,7 @@ {"shape":"ResourceNotFoundException"}, {"shape":"ThrottlingException"} ], - "documentation":"

Changes the state of a file transfer protocol-enabled server from ONLINE to OFFLINE. An OFFLINE server cannot accept and process file transfer jobs. Information tied to your server, such as server and user properties, are not affected by stopping your server. Stopping the server will not reduce or impact your file transfer protocol endpoint billing.

The state of STOPPING indicates that the server is in an intermediate state, either not fully able to respond, or not fully offline. The values of STOP_FAILED can indicate an error condition.

No response is returned from this call.

" + "documentation":"

Changes the state of a file transfer protocol-enabled server from ONLINE to OFFLINE. An OFFLINE server cannot accept and process file transfer jobs. Information tied to your server, such as server and user properties, are not affected by stopping your server.

Stopping the server will not reduce or impact your file transfer protocol endpoint billing; you must delete the server to stop being billed.

The state of STOPPING indicates that the server is in an intermediate state, either not fully able to respond, or not fully offline. The values of STOP_FAILED can indicate an error condition.

No response is returned from this call.

" }, "TagResource":{ "name":"TagResource", @@ -386,11 +386,11 @@ }, "EndpointDetails":{ "shape":"EndpointDetails", - "documentation":"

The virtual private cloud (VPC) endpoint settings that are configured for your file transfer protocol-enabled server. When you host your endpoint within your VPC, you can make it accessible only to resources within your VPC, or you can attach Elastic IPs and make it accessible to clients over the internet. Your VPC's default security groups are automatically assigned to your endpoint.

" + "documentation":"

The virtual private cloud (VPC) endpoint settings that are configured for your server. When you host your endpoint within your VPC, you can make it accessible only to resources within your VPC, or you can attach Elastic IPs and make it accessible to clients over the internet. Your VPC's default security groups are automatically assigned to your endpoint.

" }, "EndpointType":{ "shape":"EndpointType", - "documentation":"

The type of VPC endpoint that you want your file transfer protocol-enabled server to connect to. You can choose to connect to the public internet or a VPC endpoint. With a VPC endpoint, you can restrict access to your server and resources only within your VPC.

It is recommended that you use VPC as the EndpointType. With this endpoint type, you have the option to directly associate up to three Elastic IPv4 addresses (BYO IP included) with your server's endpoint and use VPC security groups to restrict traffic by the client's public IP address. This is not possible with EndpointType set to VPC_ENDPOINT.

" + "documentation":"

The type of VPC endpoint that you want your server to connect to. You can choose to connect to the public internet or a VPC endpoint. With a VPC endpoint, you can restrict access to your server and resources only within your VPC.

It is recommended that you use VPC as the EndpointType. With this endpoint type, you have the option to directly associate up to three Elastic IPv4 addresses (BYO IP included) with your server's endpoint and use VPC security groups to restrict traffic by the client's public IP address. This is not possible with EndpointType set to VPC_ENDPOINT.

" }, "HostKey":{ "shape":"HostKey", @@ -402,7 +402,7 @@ }, "IdentityProviderType":{ "shape":"IdentityProviderType", - "documentation":"

Specifies the mode of authentication for a file transfer protocol-enabled server. The default value is SERVICE_MANAGED, which allows you to store and access user credentials within the AWS Transfer Family service. Use the API_GATEWAY value to integrate with an identity provider of your choosing. The API_GATEWAY setting requires you to provide an API Gateway endpoint URL to call for authentication using the IdentityProviderDetails parameter.

" + "documentation":"

Specifies the mode of authentication for a server. The default value is SERVICE_MANAGED, which allows you to store and access user credentials within the AWS Transfer Family service. Use the API_GATEWAY value to integrate with an identity provider of your choosing. The API_GATEWAY setting requires you to provide an API Gateway endpoint URL to call for authentication using the IdentityProviderDetails parameter.

" }, "LoggingRole":{ "shape":"Role", @@ -410,7 +410,7 @@ }, "Protocols":{ "shape":"Protocols", - "documentation":"

Specifies the file transfer protocol or protocols over which your file transfer protocol client can connect to your server's endpoint. The available protocols are:

  • SFTP (Secure Shell (SSH) File Transfer Protocol): File transfer over SSH

  • FTPS (File Transfer Protocol Secure): File transfer with TLS encryption

  • FTP (File Transfer Protocol): Unencrypted file transfer

If you select FTPS, you must choose a certificate stored in AWS Certificate Manager (ACM) which will be used to identify your file transfer protocol-enabled server when clients connect to it over FTPS.

If Protocol includes either FTP or FTPS, then the EndpointType must be VPC and the IdentityProviderType must be API_GATEWAY.

If Protocol includes FTP, then AddressAllocationIds cannot be associated.

If Protocol is set only to SFTP, the EndpointType can be set to PUBLIC and the IdentityProviderType can be set to SERVICE_MANAGED.

" + "documentation":"

Specifies the file transfer protocol or protocols over which your file transfer protocol client can connect to your server's endpoint. The available protocols are:

  • SFTP (Secure Shell (SSH) File Transfer Protocol): File transfer over SSH

  • FTPS (File Transfer Protocol Secure): File transfer with TLS encryption

  • FTP (File Transfer Protocol): Unencrypted file transfer

If you select FTPS, you must choose a certificate stored in AWS Certificate Manager (ACM) which will be used to identify your server when clients connect to it over FTPS.

If Protocol includes either FTP or FTPS, then the EndpointType must be VPC and the IdentityProviderType must be API_GATEWAY.

If Protocol includes FTP, then AddressAllocationIds cannot be associated.

If Protocol is set only to SFTP, the EndpointType can be set to PUBLIC and the IdentityProviderType can be set to SERVICE_MANAGED.

" }, "SecurityPolicyName":{ "shape":"SecurityPolicyName", @@ -418,7 +418,7 @@ }, "Tags":{ "shape":"Tags", - "documentation":"

Key-value pairs that can be used to group and search for file transfer protocol-enabled servers.

" + "documentation":"

Key-value pairs that can be used to group and search for servers.

" } } }, @@ -428,7 +428,7 @@ "members":{ "ServerId":{ "shape":"ServerId", - "documentation":"

The service-assigned ID of the file transfer protocol-enabled server that is created.

" + "documentation":"

The service-assigned ID of the server that is created.

" } } }, @@ -442,11 +442,11 @@ "members":{ "HomeDirectory":{ "shape":"HomeDirectory", - "documentation":"

The landing directory (folder) for a user when they log in to the file transfer protocol-enabled server using the client.

An example is your-Amazon-S3-bucket-name>/home/username .

" + "documentation":"

The landing directory (folder) for a user when they log in to the server using the client.

An example is your-Amazon-S3-bucket-name>/home/username .

" }, "HomeDirectoryType":{ "shape":"HomeDirectoryType", - "documentation":"

The type of landing directory (folder) you want your users' home directory to be when they log into the file transfer protocol-enabled server. If you set it to PATH, the user will see the absolute Amazon S3 bucket paths as is in their file transfer protocol clients. If you set it LOGICAL, you will need to provide mappings in the HomeDirectoryMappings for how you want to make Amazon S3 paths visible to your users.

" + "documentation":"

The type of landing directory (folder) you want your users' home directory to be when they log into the server. If you set it to PATH, the user will see the absolute Amazon S3 bucket paths as is in their file transfer protocol clients. If you set it LOGICAL, you will need to provide mappings in the HomeDirectoryMappings for how you want to make Amazon S3 paths visible to your users.

" }, "HomeDirectoryMappings":{ "shape":"HomeDirectoryMappings", @@ -458,15 +458,15 @@ }, "Role":{ "shape":"Role", - "documentation":"

The IAM role that controls your users' access to your Amazon S3 bucket. The policies attached to this role will determine the level of access you want to provide your users when transferring files into and out of your Amazon S3 bucket or buckets. The IAM role should also contain a trust relationship that allows the file transfer protocol-enabled server to access your resources when servicing your users' transfer requests.

" + "documentation":"

The IAM role that controls your users' access to your Amazon S3 bucket. The policies attached to this role will determine the level of access you want to provide your users when transferring files into and out of your Amazon S3 bucket or buckets. The IAM role should also contain a trust relationship that allows the server to access your resources when servicing your users' transfer requests.

" }, "ServerId":{ "shape":"ServerId", - "documentation":"

A system-assigned unique identifier for a file transfer protocol-enabled server instance. This is the specific server that you added your user to.

" + "documentation":"

A system-assigned unique identifier for a server instance. This is the specific server that you added your user to.

" }, "SshPublicKeyBody":{ "shape":"SshPublicKeyBody", - "documentation":"

The public portion of the Secure Shell (SSH) key used to authenticate the user to the file transfer protocol-enabled server.

" + "documentation":"

The public portion of the Secure Shell (SSH) key used to authenticate the user to the server.

" }, "Tags":{ "shape":"Tags", @@ -474,7 +474,7 @@ }, "UserName":{ "shape":"UserName", - "documentation":"

A unique string that identifies a user and is associated with a file transfer protocol-enabled server as specified by the ServerId. This user name must be a minimum of 3 and a maximum of 100 characters long. The following are valid characters: a-z, A-Z, 0-9, underscore '_', hyphen '-', period '.', and at sign '@'. The user name can't start with a hyphen, period, and at sign.

" + "documentation":"

A unique string that identifies a user and is associated with a as specified by the ServerId. This user name must be a minimum of 3 and a maximum of 100 characters long. The following are valid characters: a-z, A-Z, 0-9, underscore '_', hyphen '-', period '.', and at sign '@'. The user name can't start with a hyphen, period, or at sign.

" } } }, @@ -487,11 +487,11 @@ "members":{ "ServerId":{ "shape":"ServerId", - "documentation":"

The ID of the file transfer protocol-enabled server that the user is attached to.

" + "documentation":"

The ID of the server that the user is attached to.

" }, "UserName":{ "shape":"UserName", - "documentation":"

A unique string that identifies a user account associated with a file transfer protocol-enabled server.

" + "documentation":"

A unique string that identifies a user account associated with a server.

" } } }, @@ -502,7 +502,7 @@ "members":{ "ServerId":{ "shape":"ServerId", - "documentation":"

A unique system-assigned identifier for a file transfer protocol-enabled server instance.

" + "documentation":"

A unique system-assigned identifier for a server instance.

" } } }, @@ -537,11 +537,11 @@ "members":{ "ServerId":{ "shape":"ServerId", - "documentation":"

A system-assigned unique identifier for a file transfer protocol-enabled server instance that has the user assigned to it.

" + "documentation":"

A system-assigned unique identifier for a server instance that has the user assigned to it.

" }, "UserName":{ "shape":"UserName", - "documentation":"

A unique string that identifies a user that is being deleted from a file transfer protocol-enabled server.

" + "documentation":"

A unique string that identifies a user that is being deleted from a server.

" } } }, @@ -571,7 +571,7 @@ "members":{ "ServerId":{ "shape":"ServerId", - "documentation":"

A system-assigned unique identifier for a file transfer protocol-enabled server.

" + "documentation":"

A system-assigned unique identifier for a server.

" } } }, @@ -581,7 +581,7 @@ "members":{ "Server":{ "shape":"DescribedServer", - "documentation":"

An array containing the properties of a file transfer protocol-enabled server with the ServerID you specified.

" + "documentation":"

An array containing the properties of a server with the ServerID you specified.

" } } }, @@ -594,11 +594,11 @@ "members":{ "ServerId":{ "shape":"ServerId", - "documentation":"

A system-assigned unique identifier for a file transfer protocol-enabled server that has this user assigned.

" + "documentation":"

A system-assigned unique identifier for a server that has this user assigned.

" }, "UserName":{ "shape":"UserName", - "documentation":"

The name of the user assigned to one or more file transfer protocol-enabled servers. User names are part of the sign-in credentials to use the AWS Transfer Family service and perform file transfer tasks.

" + "documentation":"

The name of the user assigned to one or more servers. User names are part of the sign-in credentials to use the AWS Transfer Family service and perform file transfer tasks.

" } } }, @@ -611,7 +611,7 @@ "members":{ "ServerId":{ "shape":"ServerId", - "documentation":"

A system-assigned unique identifier for a file transfer protocol-enabled server that has this user assigned.

" + "documentation":"

A system-assigned unique identifier for a server that has this user assigned.

" }, "User":{ "shape":"DescribedUser", @@ -656,7 +656,7 @@ "members":{ "Arn":{ "shape":"Arn", - "documentation":"

Specifies the unique Amazon Resource Name (ARN) of the file transfer protocol-enabled server.

" + "documentation":"

Specifies the unique Amazon Resource Name (ARN) of the server.

" }, "Certificate":{ "shape":"Certificate", @@ -664,11 +664,11 @@ }, "EndpointDetails":{ "shape":"EndpointDetails", - "documentation":"

Specifies the virtual private cloud (VPC) endpoint settings that you configured for your file transfer protocol-enabled server.

" + "documentation":"

Specifies the virtual private cloud (VPC) endpoint settings that you configured for your server.

" }, "EndpointType":{ "shape":"EndpointType", - "documentation":"

Defines the type of endpoint that your file transfer protocol-enabled server is connected to. If your server is connected to a VPC endpoint, your server isn't accessible over the public internet.

" + "documentation":"

Defines the type of endpoint that your server is connected to. If your server is connected to a VPC endpoint, your server isn't accessible over the public internet.

" }, "HostKeyFingerprint":{ "shape":"HostKeyFingerprint", @@ -676,15 +676,15 @@ }, "IdentityProviderDetails":{ "shape":"IdentityProviderDetails", - "documentation":"

Specifies information to call a customer-supplied authentication API. This field is not populated when the IdentityProviderType of a file transfer protocol-enabled server is SERVICE_MANAGED.

" + "documentation":"

Specifies information to call a customer-supplied authentication API. This field is not populated when the IdentityProviderType of a server is SERVICE_MANAGED.

" }, "IdentityProviderType":{ "shape":"IdentityProviderType", - "documentation":"

Specifies the mode of authentication method enabled for this service. A value of SERVICE_MANAGED means that you are using this file transfer protocol-enabled server to store and access user credentials within the service. A value of API_GATEWAY indicates that you have integrated an API Gateway endpoint that will be invoked for authenticating your user into the service.

" + "documentation":"

Specifies the mode of authentication method enabled for this service. A value of SERVICE_MANAGED means that you are using this server to store and access user credentials within the service. A value of API_GATEWAY indicates that you have integrated an API Gateway endpoint that will be invoked for authenticating your user into the service.

" }, "LoggingRole":{ "shape":"Role", - "documentation":"

Specifies the AWS Identity and Access Management (IAM) role that allows a file transfer protocol-enabled server to turn on Amazon CloudWatch logging for Amazon S3 events. When set, user activity can be viewed in your CloudWatch logs.

" + "documentation":"

Specifies the AWS Identity and Access Management (IAM) role that allows a server to turn on Amazon CloudWatch logging for Amazon S3 events. When set, user activity can be viewed in your CloudWatch logs.

" }, "Protocols":{ "shape":"Protocols", @@ -696,19 +696,19 @@ }, "ServerId":{ "shape":"ServerId", - "documentation":"

Specifies the unique system-assigned identifier for a file transfer protocol-enabled server that you instantiate.

" + "documentation":"

Specifies the unique system-assigned identifier for a server that you instantiate.

" }, "State":{ "shape":"State", - "documentation":"

Specifies the condition of a file transfer protocol-enabled server for the server that was described. A value of ONLINE indicates that the server can accept jobs and transfer files. A State value of OFFLINE means that the server cannot perform file transfer operations.

The states of STARTING and STOPPING indicate that the server is in an intermediate state, either not fully able to respond, or not fully offline. The values of START_FAILED or STOP_FAILED can indicate an error condition.

" + "documentation":"

Specifies the condition of a server for the server that was described. A value of ONLINE indicates that the server can accept jobs and transfer files. A State value of OFFLINE means that the server cannot perform file transfer operations.

The states of STARTING and STOPPING indicate that the server is in an intermediate state, either not fully able to respond, or not fully offline. The values of START_FAILED or STOP_FAILED can indicate an error condition.

" }, "Tags":{ "shape":"Tags", - "documentation":"

Specifies the key-value pairs that you can use to search for and group file transfer protocol-enabled servers that were assigned to the server that was described.

" + "documentation":"

Specifies the key-value pairs that you can use to search for and group servers that were assigned to the server that was described.

" }, "UserCount":{ "shape":"UserCount", - "documentation":"

Specifies the number of users that are assigned to a file transfer protocol-enabled server you specified with the ServerId.

" + "documentation":"

Specifies the number of users that are assigned to a server you specified with the ServerId.

" } }, "documentation":"

Describes the properties of a file transfer protocol-enabled server that was specified.

" @@ -739,7 +739,7 @@ }, "Role":{ "shape":"Role", - "documentation":"

Specifies the IAM role that controls your users' access to your Amazon S3 bucket. The policies attached to this role will determine the level of access you want to provide your users when transferring files into and out of your Amazon S3 bucket or buckets. The IAM role should also contain a trust relationship that allows a file transfer protocol-enabled server to access your resources when servicing your users' transfer requests.

" + "documentation":"

Specifies the IAM role that controls your users' access to your Amazon S3 bucket. The policies attached to this role will determine the level of access you want to provide your users when transferring files into and out of your Amazon S3 bucket or buckets. The IAM role should also contain a trust relationship that allows a server to access your resources when servicing your users' transfer requests.

" }, "SshPublicKeys":{ "shape":"SshPublicKeys", @@ -751,7 +751,7 @@ }, "UserName":{ "shape":"UserName", - "documentation":"

Specifies the name of the user that was requested to be described. User names are used for authentication purposes. This is the string that will be used by your user when they log in to your file transfer protocol-enabled server.

" + "documentation":"

Specifies the name of the user that was requested to be described. User names are used for authentication purposes. This is the string that will be used by your user when they log in to your server.

" } }, "documentation":"

Describes the properties of a user that was specified.

" @@ -761,19 +761,23 @@ "members":{ "AddressAllocationIds":{ "shape":"AddressAllocationIds", - "documentation":"

A list of address allocation IDs that are required to attach an Elastic IP address to your file transfer protocol-enabled server's endpoint. This is only valid in the UpdateServer API.

This property can only be use when EndpointType is set to VPC.

" + "documentation":"

A list of address allocation IDs that are required to attach an Elastic IP address to your server's endpoint.

This property can only be set when EndpointType is set to VPC and it is only valid in the UpdateServer API.

" }, "SubnetIds":{ "shape":"SubnetIds", - "documentation":"

A list of subnet IDs that are required to host your file transfer protocol-enabled server endpoint in your VPC.

This property can only be used when EndpointType is set to VPC.

" + "documentation":"

A list of subnet IDs that are required to host your server endpoint in your VPC.

This property can only be set when EndpointType is set to VPC.

" }, "VpcEndpointId":{ "shape":"VpcEndpointId", - "documentation":"

The ID of the VPC endpoint.

This property can only be used when EndpointType is set to VPC_ENDPOINT.

" + "documentation":"

The ID of the VPC endpoint.

This property can only be set when EndpointType is set to VPC_ENDPOINT.

" }, "VpcId":{ "shape":"VpcId", - "documentation":"

The VPC ID of the VPC in which a file transfer protocol-enabled server's endpoint will be hosted.

This property can only be used when EndpointType is set to VPC.

" + "documentation":"

The VPC ID of the VPC in which a server's endpoint will be hosted.

This property can only be set when EndpointType is set to VPC.

" + }, + "SecurityGroupIds":{ + "shape":"SecurityGroupIds", + "documentation":"

A list of security groups IDs that are available to attach to your server's endpoint.

This property can only be set when EndpointType is set to VPC.

You can only edit the SecurityGroupIds property in the UpdateServer API and only if you are changing the EndpointType from PUBLIC or VPC_ENDPOINT to VPC.

" } }, "documentation":"

The virtual private cloud (VPC) endpoint settings that are configured for your file transfer protocol-enabled server. With a VPC endpoint, you can restrict access to your server and resources only within your VPC. To control incoming internet traffic, invoke the UpdateServer API and attach an Elastic IP to your server's endpoint.

" @@ -861,7 +865,7 @@ "members":{ "ServerId":{ "shape":"ServerId", - "documentation":"

A system-assigned unique identifier for a file transfer protocol-enabled server.

" + "documentation":"

A system-assigned unique identifier for a server.

" }, "SshPublicKeyBody":{ "shape":"SshPublicKeyBody", @@ -869,7 +873,7 @@ }, "UserName":{ "shape":"UserName", - "documentation":"

The name of the user account that is assigned to one or more file transfer protocol-enabled servers.

" + "documentation":"

The name of the user account that is assigned to one or more servers.

" } } }, @@ -883,7 +887,7 @@ "members":{ "ServerId":{ "shape":"ServerId", - "documentation":"

A system-assigned unique identifier for a file transfer protocol-enabled server.

" + "documentation":"

A system-assigned unique identifier for a server.

" }, "SshPublicKeyId":{ "shape":"SshPublicKeyId", @@ -894,7 +898,7 @@ "documentation":"

A user name assigned to the ServerID value that you specified.

" } }, - "documentation":"

Identifies the user, the file transfer protocol-enabled server they belong to, and the identifier of the SSH public key associated with that user. A user can have more than one key on each server that they are associated with.

" + "documentation":"

Identifies the user, the server they belong to, and the identifier of the SSH public key associated with that user. A user can have more than one key on each server that they are associated with.

" }, "InternalServiceError":{ "type":"structure", @@ -956,11 +960,11 @@ "members":{ "MaxResults":{ "shape":"MaxResults", - "documentation":"

Specifies the number of file transfer protocol-enabled servers to return as a response to the ListServers query.

" + "documentation":"

Specifies the number of servers to return as a response to the ListServers query.

" }, "NextToken":{ "shape":"NextToken", - "documentation":"

When additional results are obtained from the ListServers command, a NextToken parameter is returned in the output. You can then pass the NextToken parameter in a subsequent command to continue listing additional file transfer protocol-enabled servers.

" + "documentation":"

When additional results are obtained from the ListServers command, a NextToken parameter is returned in the output. You can then pass the NextToken parameter in a subsequent command to continue listing additional servers.

" } } }, @@ -970,11 +974,11 @@ "members":{ "NextToken":{ "shape":"NextToken", - "documentation":"

When you can get additional results from the ListServers operation, a NextToken parameter is returned in the output. In a following command, you can pass in the NextToken parameter to continue listing additional file transfer protocol-enabled servers.

" + "documentation":"

When you can get additional results from the ListServers operation, a NextToken parameter is returned in the output. In a following command, you can pass in the NextToken parameter to continue listing additional servers.

" }, "Servers":{ "shape":"ListedServers", - "documentation":"

An array of file transfer protocol-enabled servers that were listed.

" + "documentation":"

An array of servers that were listed.

" } } }, @@ -1027,7 +1031,7 @@ }, "ServerId":{ "shape":"ServerId", - "documentation":"

A system-assigned unique identifier for a file transfer protocol-enabled server that has users assigned to it.

" + "documentation":"

A system-assigned unique identifier for a server that has users assigned to it.

" } } }, @@ -1044,7 +1048,7 @@ }, "ServerId":{ "shape":"ServerId", - "documentation":"

A system-assigned unique identifier for a file transfer protocol-enabled server that the users are assigned to.

" + "documentation":"

A system-assigned unique identifier for a server that the users are assigned to.

" }, "Users":{ "shape":"ListedUsers", @@ -1058,31 +1062,31 @@ "members":{ "Arn":{ "shape":"Arn", - "documentation":"

Specifies the unique Amazon Resource Name (ARN) for a file transfer protocol-enabled server to be listed.

" + "documentation":"

Specifies the unique Amazon Resource Name (ARN) for a server to be listed.

" }, "IdentityProviderType":{ "shape":"IdentityProviderType", - "documentation":"

Specifies the authentication method used to validate a user for a file transfer protocol-enabled server that was specified. This can include Secure Shell (SSH), user name and password combinations, or your own custom authentication method. Valid values include SERVICE_MANAGED or API_GATEWAY.

" + "documentation":"

Specifies the authentication method used to validate a user for a server that was specified. This can include Secure Shell (SSH), user name and password combinations, or your own custom authentication method. Valid values include SERVICE_MANAGED or API_GATEWAY.

" }, "EndpointType":{ "shape":"EndpointType", - "documentation":"

Specifies the type of VPC endpoint that your file transfer protocol-enabled server is connected to. If your server is connected to a VPC endpoint, your server isn't accessible over the public internet.

" + "documentation":"

Specifies the type of VPC endpoint that your server is connected to. If your server is connected to a VPC endpoint, your server isn't accessible over the public internet.

" }, "LoggingRole":{ "shape":"Role", - "documentation":"

Specifies the AWS Identity and Access Management (IAM) role that allows a file transfer protocol-enabled server to turn on Amazon CloudWatch logging.

" + "documentation":"

Specifies the AWS Identity and Access Management (IAM) role that allows a server to turn on Amazon CloudWatch logging.

" }, "ServerId":{ "shape":"ServerId", - "documentation":"

Specifies the unique system assigned identifier for a file transfer protocol-enabled servers that were listed.

" + "documentation":"

Specifies the unique system assigned identifier for the servers that were listed.

" }, "State":{ "shape":"State", - "documentation":"

Specifies the condition of a file transfer protocol-enabled server for the server that was described. A value of ONLINE indicates that the server can accept jobs and transfer files. A State value of OFFLINE means that the server cannot perform file transfer operations.

The states of STARTING and STOPPING indicate that the server is in an intermediate state, either not fully able to respond, or not fully offline. The values of START_FAILED or STOP_FAILED can indicate an error condition.

" + "documentation":"

Specifies the condition of a server for the server that was described. A value of ONLINE indicates that the server can accept jobs and transfer files. A State value of OFFLINE means that the server cannot perform file transfer operations.

The states of STARTING and STOPPING indicate that the server is in an intermediate state, either not fully able to respond, or not fully offline. The values of START_FAILED or STOP_FAILED can indicate an error condition.

" }, "UserCount":{ "shape":"UserCount", - "documentation":"

Specifies the number of users that are assigned to a file transfer protocol-enabled server you specified with the ServerId.

" + "documentation":"

Specifies the number of users that are assigned to a server you specified with the ServerId.

" } }, "documentation":"

Returns properties of a file transfer protocol-enabled server that was specified.

" @@ -1210,6 +1214,16 @@ "min":20, "pattern":"arn:.*role/.*" }, + "SecurityGroupId":{ + "type":"string", + "max":20, + "min":11, + "pattern":"^sg-[0-9a-f]{8,17}$" + }, + "SecurityGroupIds":{ + "type":"list", + "member":{"shape":"SecurityGroupId"} + }, "SecurityPolicyName":{ "type":"string", "max":100, @@ -1295,7 +1309,7 @@ "members":{ "ServerId":{ "shape":"ServerId", - "documentation":"

A system-assigned unique identifier for a file transfer protocol-enabled server that you start.

" + "documentation":"

A system-assigned unique identifier for a server that you start.

" } } }, @@ -1318,7 +1332,7 @@ "members":{ "ServerId":{ "shape":"ServerId", - "documentation":"

A system-assigned unique identifier for a file transfer protocol-enabled server that you stopped.

" + "documentation":"

A system-assigned unique identifier for a server that you stopped.

" } } }, @@ -1391,7 +1405,7 @@ "members":{ "ServerId":{ "shape":"ServerId", - "documentation":"

A system-assigned identifier for a specific file transfer protocol-enabled server. That server's user authentication method is tested with a user name and password.

" + "documentation":"

A system-assigned identifier for a specific server. That server's user authentication method is tested with a user name and password.

" }, "ServerProtocol":{ "shape":"Protocol", @@ -1471,15 +1485,15 @@ }, "EndpointDetails":{ "shape":"EndpointDetails", - "documentation":"

The virtual private cloud (VPC) endpoint settings that are configured for your file transfer protocol-enabled server. With a VPC endpoint, you can restrict access to your server to resources only within your VPC. To control incoming internet traffic, you will need to associate one or more Elastic IP addresses with your server's endpoint.

" + "documentation":"

The virtual private cloud (VPC) endpoint settings that are configured for your server. With a VPC endpoint, you can restrict access to your server to resources only within your VPC. To control incoming internet traffic, you will need to associate one or more Elastic IP addresses with your server's endpoint.

" }, "EndpointType":{ "shape":"EndpointType", - "documentation":"

The type of endpoint that you want your file transfer protocol-enabled server to connect to. You can choose to connect to the public internet or a VPC endpoint. With a VPC endpoint, you can restrict access to your server and resources only within your VPC.

It is recommended that you use VPC as the EndpointType. With this endpoint type, you have the option to directly associate up to three Elastic IPv4 addresses (BYO IP included) with your server's endpoint and use VPC security groups to restrict traffic by the client's public IP address. This is not possible with EndpointType set to VPC_ENDPOINT.

" + "documentation":"

The type of endpoint that you want your server to connect to. You can choose to connect to the public internet or a VPC endpoint. With a VPC endpoint, you can restrict access to your server and resources only within your VPC.

It is recommended that you use VPC as the EndpointType. With this endpoint type, you have the option to directly associate up to three Elastic IPv4 addresses (BYO IP included) with your server's endpoint and use VPC security groups to restrict traffic by the client's public IP address. This is not possible with EndpointType set to VPC_ENDPOINT.

" }, "HostKey":{ "shape":"HostKey", - "documentation":"

The RSA private key as generated by ssh-keygen -N \"\" -m PEM -f my-new-server-key.

If you aren't planning to migrate existing users from an existing file transfer protocol-enabled server to a new server, don't update the host key. Accidentally changing a server's host key can be disruptive.

For more information, see Change the host key for your SFTP-enabled server in the AWS Transfer Family User Guide.

" + "documentation":"

The RSA private key as generated by ssh-keygen -N \"\" -m PEM -f my-new-server-key.

If you aren't planning to migrate existing users from an existing server to a new server, don't update the host key. Accidentally changing a server's host key can be disruptive.

For more information, see Change the host key for your SFTP-enabled server in the AWS Transfer Family User Guide.

" }, "IdentityProviderDetails":{ "shape":"IdentityProviderDetails", @@ -1499,7 +1513,7 @@ }, "ServerId":{ "shape":"ServerId", - "documentation":"

A system-assigned unique identifier for a file transfer protocol-enabled server instance that the user account is assigned to.

" + "documentation":"

A system-assigned unique identifier for a server instance that the user account is assigned to.

" } } }, @@ -1509,7 +1523,7 @@ "members":{ "ServerId":{ "shape":"ServerId", - "documentation":"

A system-assigned unique identifier for a file transfer protocol-enabled server that the user account is assigned to.

" + "documentation":"

A system-assigned unique identifier for a server that the user account is assigned to.

" } } }, @@ -1522,11 +1536,11 @@ "members":{ "HomeDirectory":{ "shape":"HomeDirectory", - "documentation":"

Specifies the landing directory (folder) for a user when they log in to the file transfer protocol-enabled server using their file transfer protocol client.

An example is your-Amazon-S3-bucket-name>/home/username.

" + "documentation":"

Specifies the landing directory (folder) for a user when they log in to the server using their file transfer protocol client.

An example is your-Amazon-S3-bucket-name>/home/username.

" }, "HomeDirectoryType":{ "shape":"HomeDirectoryType", - "documentation":"

The type of landing directory (folder) you want your users' home directory to be when they log into the file transfer protocol-enabled server. If you set it to PATH, the user will see the absolute Amazon S3 bucket paths as is in their file transfer protocol clients. If you set it LOGICAL, you will need to provide mappings in the HomeDirectoryMappings for how you want to make Amazon S3 paths visible to your users.

" + "documentation":"

The type of landing directory (folder) you want your users' home directory to be when they log into the server. If you set it to PATH, the user will see the absolute Amazon S3 bucket paths as is in their file transfer protocol clients. If you set it LOGICAL, you will need to provide mappings in the HomeDirectoryMappings for how you want to make Amazon S3 paths visible to your users.

" }, "HomeDirectoryMappings":{ "shape":"HomeDirectoryMappings", @@ -1538,15 +1552,15 @@ }, "Role":{ "shape":"Role", - "documentation":"

The IAM role that controls your users' access to your Amazon S3 bucket. The policies attached to this role will determine the level of access you want to provide your users when transferring files into and out of your Amazon S3 bucket or buckets. The IAM role should also contain a trust relationship that allows the file transfer protocol-enabled server to access your resources when servicing your users' transfer requests.

" + "documentation":"

The IAM role that controls your users' access to your Amazon S3 bucket. The policies attached to this role will determine the level of access you want to provide your users when transferring files into and out of your Amazon S3 bucket or buckets. The IAM role should also contain a trust relationship that allows the server to access your resources when servicing your users' transfer requests.

" }, "ServerId":{ "shape":"ServerId", - "documentation":"

A system-assigned unique identifier for a file transfer protocol-enabled server instance that the user account is assigned to.

" + "documentation":"

A system-assigned unique identifier for a server instance that the user account is assigned to.

" }, "UserName":{ "shape":"UserName", - "documentation":"

A unique string that identifies a user and is associated with a file transfer protocol-enabled server as specified by the ServerId. This user name must be a minimum of 3 and a maximum of 100 characters long. The following are valid characters: a-z, A-Z, 0-9, underscore '_', hyphen '-', period '.', and at sign '@'. The user name can't start with a hyphen, period, and at sign.

" + "documentation":"

A unique string that identifies a user and is associated with a server as specified by the ServerId. This user name must be a minimum of 3 and a maximum of 100 characters long. The following are valid characters: a-z, A-Z, 0-9, underscore '_', hyphen '-', period '.', and at sign '@'. The user name can't start with a hyphen, period, or at sign.

" } } }, @@ -1559,14 +1573,14 @@ "members":{ "ServerId":{ "shape":"ServerId", - "documentation":"

A system-assigned unique identifier for a file transfer protocol-enabled server instance that the user account is assigned to.

" + "documentation":"

A system-assigned unique identifier for a server instance that the user account is assigned to.

" }, "UserName":{ "shape":"UserName", - "documentation":"

The unique identifier for a user that is assigned to a file transfer protocol-enabled server instance that was specified in the request.

" + "documentation":"

The unique identifier for a user that is assigned to a server instance that was specified in the request.

" } }, - "documentation":"

UpdateUserResponse returns the user name and file transfer protocol-enabled server identifier for the request to update a user's properties.

" + "documentation":"

UpdateUserResponse returns the user name and identifier for the request to update a user's properties.

" }, "Url":{ "type":"string", From f97bae24c7f6e439f62d3b70ef6c12a67369b757 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 15 Oct 2020 18:07:11 +0000 Subject: [PATCH 010/339] Amazon Relational Database Service Update: Return tags for all resources in the output of DescribeDBInstances, DescribeDBSnapshots, DescribeDBClusters, and DescribeDBClusterSnapshots API operations. --- ...azonRelationalDatabaseService-ecfb341.json | 5 ++++ .../codegen-resources/service-2.json | 24 +++++++++++-------- 2 files changed, 19 insertions(+), 10 deletions(-) create mode 100644 .changes/next-release/feature-AmazonRelationalDatabaseService-ecfb341.json diff --git a/.changes/next-release/feature-AmazonRelationalDatabaseService-ecfb341.json b/.changes/next-release/feature-AmazonRelationalDatabaseService-ecfb341.json new file mode 100644 index 000000000000..9a6017ef36e2 --- /dev/null +++ b/.changes/next-release/feature-AmazonRelationalDatabaseService-ecfb341.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "Amazon Relational Database Service", + "description": "Return tags for all resources in the output of DescribeDBInstances, DescribeDBSnapshots, DescribeDBClusters, and DescribeDBClusterSnapshots API operations." +} 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 b300f8cfce0b..1d25539cbe8c 100755 --- a/services/rds/src/main/resources/codegen-resources/service-2.json +++ b/services/rds/src/main/resources/codegen-resources/service-2.json @@ -221,7 +221,7 @@ {"shape":"SnapshotQuotaExceededFault"}, {"shape":"KMSKeyNotAccessibleFault"} ], - "documentation":"

Copies the specified DB snapshot. The source DB snapshot must be in the available or storage-optimization state.

You can copy a snapshot from one AWS Region to another. In that case, the AWS Region where you call the CopyDBSnapshot action is the destination AWS Region for the DB snapshot copy.

For more information about copying snapshots, see Copying a DB Snapshot in the Amazon RDS User Guide.

" + "documentation":"

Copies the specified DB snapshot. The source DB snapshot must be in the available state.

You can copy a snapshot from one AWS Region to another. In that case, the AWS Region where you call the CopyDBSnapshot action is the destination AWS Region for the DB snapshot copy.

For more information about copying snapshots, see Copying a DB Snapshot in the Amazon RDS User Guide.

" }, "CopyOptionGroup":{ "name":"CopyOptionGroup", @@ -488,7 +488,7 @@ {"shape":"DBInstanceNotFoundFault"}, {"shape":"SnapshotQuotaExceededFault"} ], - "documentation":"

Creates a DBSnapshot. The source DBInstance must be in \"available\" state.

" + "documentation":"

Creates a snapshot of a DB instance. The source DB instance must be in the available or storage-optimizationstate.

" }, "CreateDBSubnetGroup":{ "name":"CreateDBSubnetGroup", @@ -3249,7 +3249,7 @@ }, "EngineMode":{ "shape":"String", - "documentation":"

The DB engine mode of the DB cluster, either provisioned, serverless, parallelquery, global, or multimaster.

global engine mode only applies for global database clusters created with Aurora MySQL version 5.6.10a. For higher Aurora MySQL versions, the clusters in a global database use provisioned engine mode.

Limitations and requirements apply to some DB engine modes. For more information, see the following sections in the Amazon Aurora User Guide:

" + "documentation":"

The DB engine mode of the DB cluster, either provisioned serverless, parallelquery, global, or multimaster.

The parallelquery engine mode isn't required for Aurora MySQL version 1.23 and higher 1.x versions, and version 2.09 and higher 2.x versions.

The global engine mode isn't required for Aurora MySQL version 1.22 and higher 1.x versions, and global engine mode isn't required for any 2.x versions.

The multimaster engine mode only applies for DB clusters created with Aurora MySQL version 5.6.10a.

For Aurora PostgreSQL, the global engine mode isn't required, and both the parallelquery and the multimaster engine modes currently aren't supported.

Limitations and requirements apply to some DB engine modes. For more information, see the following sections in the Amazon Aurora User Guide:

" }, "ScalingConfiguration":{ "shape":"ScalingConfiguration", @@ -4240,7 +4240,7 @@ }, "EngineMode":{ "shape":"String", - "documentation":"

The DB engine mode of the DB cluster, either provisioned, serverless, parallelquery, global, or multimaster.

global engine mode only applies for global database clusters created with Aurora MySQL version 5.6.10a. For higher Aurora MySQL versions, the clusters in a global database use provisioned engine mode. To check if a DB cluster is part of a global database, use DescribeGlobalClusters instead of checking the EngineMode return value from DescribeDBClusters.

" + "documentation":"

The DB engine mode of the DB cluster, either provisioned, serverless, parallelquery, global, or multimaster.

For more information, see CreateDBCluster.

" }, "ScalingConfigurationInfo":{"shape":"ScalingConfigurationInfo"}, "DeletionProtection":{ @@ -4279,6 +4279,7 @@ "shape":"DomainMembershipList", "documentation":"

The Active Directory Domain membership records associated with the DB cluster.

" }, + "TagList":{"shape":"TagList"}, "GlobalWriteForwardingStatus":{ "shape":"WriteForwardingStatus", "documentation":"

Specifies whether a secondary cluster in an Aurora global database has write forwarding enabled, not enabled, or is in the process of enabling it.

" @@ -4812,7 +4813,8 @@ "IAMDatabaseAuthenticationEnabled":{ "shape":"Boolean", "documentation":"

True if mapping of AWS Identity and Access Management (IAM) accounts to database accounts is enabled, and otherwise false.

" - } + }, + "TagList":{"shape":"TagList"} }, "documentation":"

Contains the details for an Amazon RDS DB cluster snapshot

This data type is used as a response element in the DescribeDBClusterSnapshots action.

", "wrapper":true @@ -4955,7 +4957,7 @@ }, "SupportedEngineModes":{ "shape":"EngineModeList", - "documentation":"

A list of the supported DB engine modes.

global engine mode only applies for global database clusters created with Aurora MySQL version 5.6.10a. For higher Aurora MySQL versions, the clusters in a global database use provisioned engine mode.

" + "documentation":"

A list of the supported DB engine modes.

" }, "SupportedFeatureNames":{ "shape":"FeatureNameList", @@ -5239,7 +5241,8 @@ "MaxAllocatedStorage":{ "shape":"IntegerOptional", "documentation":"

The upper limit to which Amazon RDS can automatically scale the storage of the DB instance.

" - } + }, + "TagList":{"shape":"TagList"} }, "documentation":"

Contains the details of an Amazon RDS DB instance.

This data type is used as a response element in the DescribeDBInstances action.

", "wrapper":true @@ -6130,7 +6133,8 @@ "DbiResourceId":{ "shape":"String", "documentation":"

The identifier for the source DB instance, which can't be changed and which is unique to an AWS Region.

" - } + }, + "TagList":{"shape":"TagList"} }, "documentation":"

Contains the details of an Amazon RDS DB snapshot.

This data type is used as a response element in the DescribeDBSnapshots action.

", "wrapper":true @@ -10179,7 +10183,7 @@ }, "SupportedEngineModes":{ "shape":"EngineModeList", - "documentation":"

A list of the supported DB engine modes.

global engine mode only applies for global database clusters created with Aurora MySQL version 5.6.10a. For higher Aurora MySQL versions, the clusters in a global database use provisioned engine mode.

" + "documentation":"

A list of the supported DB engine modes.

" }, "SupportsStorageAutoscaling":{ "shape":"BooleanOptional", @@ -11257,7 +11261,7 @@ }, "EngineMode":{ "shape":"String", - "documentation":"

The DB engine mode of the DB cluster, either provisioned, serverless, parallelquery, global, or multimaster.

" + "documentation":"

The DB engine mode of the DB cluster, either provisioned, serverless, parallelquery, global, or multimaster.

For more information, see CreateDBCluster.

" }, "ScalingConfiguration":{ "shape":"ScalingConfiguration", From bee4abbb4bd2e4c33e77e919591e902c50c3d01b Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 15 Oct 2020 18:07:10 +0000 Subject: [PATCH 011/339] Amazon Macie 2 Update: This release of the Amazon Macie API adds support for pausing and resuming classification jobs. Also, sensitive data findings now include location data for up to 15 occurrences of sensitive data. --- .../feature-AmazonMacie2-8142261.json | 5 + .../codegen-resources/service-2.json | 335 ++++++++++++++---- 2 files changed, 270 insertions(+), 70 deletions(-) create mode 100644 .changes/next-release/feature-AmazonMacie2-8142261.json diff --git a/.changes/next-release/feature-AmazonMacie2-8142261.json b/.changes/next-release/feature-AmazonMacie2-8142261.json new file mode 100644 index 000000000000..253bf04bca1a --- /dev/null +++ b/.changes/next-release/feature-AmazonMacie2-8142261.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "Amazon Macie 2", + "description": "This release of the Amazon Macie API adds support for pausing and resuming classification jobs. Also, sensitive data findings now include location data for up to 15 occurrences of sensitive data." +} diff --git a/services/macie2/src/main/resources/codegen-resources/service-2.json b/services/macie2/src/main/resources/codegen-resources/service-2.json index 98d93213b360..f4ead0e382ba 100644 --- a/services/macie2/src/main/resources/codegen-resources/service-2.json +++ b/services/macie2/src/main/resources/codegen-resources/service-2.json @@ -698,7 +698,7 @@ "documentation": "

The request failed because it conflicts with the current state of the specified resource.

" } ], - "documentation": "

Retrieves information about the status and settings for a classification job.

" + "documentation": "

Retrieves the status and settings for a classification job.

" }, "DescribeOrganizationConfiguration": { "name": "DescribeOrganizationConfiguration", @@ -744,7 +744,7 @@ "documentation": "

The request failed because it conflicts with the current state of the specified resource.

" } ], - "documentation": "

Retrieves information about the Amazon Macie configuration settings for an AWS organization.

" + "documentation": "

Retrieves the Amazon Macie configuration settings for an AWS organization.

" }, "DisableMacie": { "name": "DisableMacie", @@ -1158,7 +1158,7 @@ "documentation": "

The request failed because it conflicts with the current state of the specified resource.

" } ], - "documentation": "

Retrieves information about the criteria and other settings for a custom data identifier.

" + "documentation": "

Retrieves the criteria and other settings for a custom data identifier.

" }, "GetFindingStatistics": { "name": "GetFindingStatistics", @@ -1250,7 +1250,7 @@ "documentation": "

The request failed because it conflicts with the current state of the specified resource.

" } ], - "documentation": "

Retrieves information about one or more findings.

" + "documentation": "

Retrieves the details of one or more findings.

" }, "GetFindingsFilter": { "name": "GetFindingsFilter", @@ -1296,7 +1296,7 @@ "documentation": "

The request failed because it conflicts with the current state of the specified resource.

" } ], - "documentation": "

Retrieves information about the criteria and other settings for a findings filter.

" + "documentation": "

Retrieves the criteria and other settings for a findings filter.

" }, "GetInvitationsCount": { "name": "GetInvitationsCount", @@ -1388,7 +1388,7 @@ "documentation": "

The request failed because it conflicts with the current state of the specified resource.

" } ], - "documentation": "

Retrieves information about the current status and configuration settings for an Amazon Macie account.

" + "documentation": "

Retrieves the current status and configuration settings for an Amazon Macie account.

" }, "GetMasterAccount": { "name": "GetMasterAccount", @@ -2083,7 +2083,7 @@ "documentation": "

The request failed because it conflicts with the current state of the specified resource.

" } ], - "documentation": "

Cancels a classification job.

" + "documentation": "

Changes the status of a classification job.

" }, "UpdateFindingsFilter": { "name": "UpdateFindingsFilter", @@ -2568,6 +2568,11 @@ "shape": "__long", "locationName": "publiclyWritable", "documentation": "

The total number of buckets that allow the general public to have write access to the bucket.

" + }, + "unknown": { + "shape": "__long", + "locationName": "unknown", + "documentation": "

The total number of buckets that Amazon Macie wasn't able to evaluate permissions settings for. Macie can't determine whether these buckets are publicly accessible.

" } }, "documentation": "

Provides information about the number of S3 buckets that are publicly accessible based on a combination of permissions settings for each bucket.

" @@ -2609,7 +2614,12 @@ "notShared": { "shape": "__long", "locationName": "notShared", - "documentation": "

The total number of buckets that aren't shared with any other AWS accounts.

" + "documentation": "

The total number of buckets that aren't shared with other AWS accounts.

" + }, + "unknown": { + "shape": "__long", + "locationName": "unknown", + "documentation": "

The total number of buckets that Amazon Macie wasn't able to evaluate shared access settings for. Macie can't determine whether these buckets are shared with other AWS accounts.

" } }, "documentation": "

Provides information about the number of S3 buckets that are shared with other AWS accounts.

" @@ -2712,12 +2722,12 @@ "classifiableObjectCount": { "shape": "__long", "locationName": "classifiableObjectCount", - "documentation": "

The total number of objects that Amazon Macie can analyze in the bucket. These objects use a supported file or storage format and storage class.

" + "documentation": "

The total number of objects that Amazon Macie can analyze in the bucket. These objects use a supported storage class and have a file name extension for a supported file or storage format.

" }, "classifiableSizeInBytes": { "shape": "__long", "locationName": "classifiableSizeInBytes", - "documentation": "

The total storage size, in bytes, of the objects that Amazon Macie can analyze in the bucket. These objects use a supported file or storage format and storage class.

" + "documentation": "

The total storage size, in bytes, of the objects that Amazon Macie can analyze in the bucket. These objects use a supported storage class and have a file name extension for a supported file or storage format.

" }, "lastUpdated": { "shape": "__timestampIso8601", @@ -2752,7 +2762,7 @@ "sharedAccess": { "shape": "SharedAccess", "locationName": "sharedAccess", - "documentation": "

Specifies whether the bucket is shared with another AWS account. Possible values are:

  • EXTERNAL - The bucket is shared with an AWS account that isn\u2019t part of the same Amazon Macie organization.

  • INTERNAL - The bucket is shared with an AWS account that's part of the same Amazon Macie organization.

  • NOT_SHARED - The bucket isn't shared with other AWS accounts.

  • UNKNOWN - Amazon Macie wasn't able to evaluate the shared access settings for the bucket.

" + "documentation": "

Specifies whether the bucket is shared with another AWS account. Possible values are:

  • EXTERNAL - The bucket is shared with an AWS account that isn't part of the same Amazon Macie organization.

  • INTERNAL - The bucket is shared with an AWS account that's part of the same Amazon Macie organization.

  • NOT_SHARED - The bucket isn't shared with other AWS accounts.

  • UNKNOWN - Amazon Macie wasn't able to evaluate the shared access settings for the bucket.

" }, "sizeInBytes": { "shape": "__long", @@ -2772,12 +2782,12 @@ "unclassifiableObjectCount": { "shape": "ObjectLevelStatistics", "locationName": "unclassifiableObjectCount", - "documentation": "

The total number of objects that Amazon Macie can't analyze in the bucket. These objects use an unsupported file or storage format or storage class.

" + "documentation": "

The total number of objects that Amazon Macie can't analyze in the bucket. These objects don't use a supported storage class or don't have a file name extension for a supported file or storage format.

" }, "unclassifiableObjectSizeInBytes": { "shape": "ObjectLevelStatistics", "locationName": "unclassifiableObjectSizeInBytes", - "documentation": "

The total storage size, in bytes, of the objects that Amazon Macie can't analyze in the bucket. These objects use an unsupported file or storage format or storage class.

" + "documentation": "

The total storage size, in bytes, of the objects that Amazon Macie can't analyze in the bucket. These objects don't use a supported storage class or don't have a file name extension for a supported file or storage format.

" }, "versioning": { "shape": "__boolean", @@ -2851,13 +2861,46 @@ }, "documentation": "

Specifies criteria for sorting the results of a query for information about S3 buckets.

" }, + "Cell": { + "type": "structure", + "members": { + "cellReference": { + "shape": "__string", + "locationName": "cellReference", + "documentation": "

The location of the cell, as an absolute cell reference, that contains the data. For example, Sheet2!C5 for cell C5 on Sheet2 in a Microsoft Excel workbook. This value is null for CSV and TSV files.

" + }, + "column": { + "shape": "__long", + "locationName": "column", + "documentation": "

The column number of the column that contains the data. For a Microsoft Excel workbook, this value correlates to the alphabetical character(s) for a column identifier. For example, 1 for column A, 2 for column B, and so on.

" + }, + "columnName": { + "shape": "__string", + "locationName": "columnName", + "documentation": "

The name of the column that contains the data, if available.

" + }, + "row": { + "shape": "__long", + "locationName": "row", + "documentation": "

The row number of the row that contains the data.

" + } + }, + "documentation": "

Specifies the location of an occurrence of sensitive data in a Microsoft Excel workbook, CSV file, or TSV file.

" + }, + "Cells": { + "type": "list", + "documentation": "

Specifies the location of occurrences of sensitive data in a Microsoft Excel workbook, CSV file, or TSV file.

", + "member": { + "shape": "Cell" + } + }, "ClassificationDetails": { "type": "structure", "members": { "detailedResultsLocation": { "shape": "__string", "locationName": "detailedResultsLocation", - "documentation": "

The path to the folder or file (in Amazon S3) that contains the corresponding sensitive data discovery results for the finding. If a finding applies to a large archive or compressed file, this is a path to a folder. Otherwise, this is a path to a file.

" + "documentation": "

The path to the folder or file (in Amazon S3) that contains the corresponding sensitive data discovery result for the finding. If a finding applies to a large archive or compressed file, this value is the path to a folder. Otherwise, this value is the path to a file.

" }, "jobArn": { "shape": "__string", @@ -2891,20 +2934,25 @@ "ClassificationResult": { "type": "structure", "members": { + "additionalOccurrences": { + "shape": "__boolean", + "locationName": "additionalOccurrences", + "documentation": "

Specifies whether Amazon Macie detected additional occurrences of sensitive data in the S3 object. A finding includes location data for a maximum of 15 occurrences of sensitive data.

This value can help you to determine whether to investigate additional occurrences of sensitive data in an object. You can do this by referring to the corresponding sensitive data discovery result for the finding (ClassificationDetails.detailedResultsLocation).

" + }, "customDataIdentifiers": { "shape": "CustomDataIdentifiers", "locationName": "customDataIdentifiers", - "documentation": "

The number of occurrences of the data that produced the finding, and the custom data identifiers that detected the data.

" + "documentation": "

The custom data identifiers that detected the sensitive data and the number of occurrences of the data that they detected.

" }, "mimeType": { "shape": "__string", "locationName": "mimeType", - "documentation": "

The type of content, expressed as a MIME type, that the finding applies to. For example, application/gzip, for a GNU Gzip compressed archive file, or application/pdf, for an Adobe PDF file.

" + "documentation": "

The type of content, as a MIME type, that the finding applies to. For example, application/gzip, for a GNU Gzip compressed archive file, or application/pdf, for an Adobe Portable Document Format file.

" }, "sensitiveData": { "shape": "SensitiveData", "locationName": "sensitiveData", - "documentation": "

The category and number of occurrences of the sensitive data that produced the finding.

" + "documentation": "

The category, types, and number of occurrences of the sensitive data that produced the finding.

" }, "sizeClassified": { "shape": "__long", @@ -2917,7 +2965,7 @@ "documentation": "

The status of the finding.

" } }, - "documentation": "

Provides detailed information about a sensitive data finding, including the types and number of occurrences of the sensitive data that was found.

" + "documentation": "

Provides the details of a sensitive data finding, including the types, number of occurrences, and locations of the sensitive data that was detected.

" }, "ClassificationResultStatus": { "type": "structure", @@ -2925,7 +2973,7 @@ "code": { "shape": "__string", "locationName": "code", - "documentation": "

The status of the finding. Possible values are:

  • COMPLETE - Amazon Macie successfully completed its analysis of the object that the finding applies to.

  • PARTIAL - Macie was able to analyze only a subset of the data in the object that the finding applies to. For example, the object is a compressed or archive file that contains files in an unsupported format.

  • SKIPPED - Macie wasn't able to analyze the object that the finding applies to. For example, the object is a malformed file or a file that's in an unsupported format.

" + "documentation": "

The status of the finding. Possible values are:

  • COMPLETE - Amazon Macie successfully completed its analysis of the object that the finding applies to.

  • PARTIAL - Macie was able to analyze only a subset of the data in the object that the finding applies to. For example, the object is a compressed or archive file that contains files in an unsupported format.

  • SKIPPED - Macie wasn't able to analyze the object that the finding applies to. For example, the object is a malformed file or a file that uses an unsupported format.

" }, "reason": { "shape": "__string", @@ -2997,7 +3045,7 @@ "scheduleFrequency": { "shape": "JobScheduleFrequency", "locationName": "scheduleFrequency", - "documentation": "

The recurrence pattern for running the job. To run the job only once, don't specify a value for this property and set the value of the jobType property to ONE_TIME.

" + "documentation": "

The recurrence pattern for running the job. To run the job only once, don't specify a value for this property and set the value for the jobType property to ONE_TIME.

" }, "tags": { "shape": "TagMap", @@ -3330,15 +3378,20 @@ "count": { "shape": "__long", "locationName": "count", - "documentation": "

The total number of occurrences of the data that the custom data identifier detected for the finding.

" + "documentation": "

The total number of occurrences of the sensitive data that the custom data identifier detected.

" }, "name": { "shape": "__string", "locationName": "name", "documentation": "

The name of the custom data identifier.

" + }, + "occurrences": { + "shape": "Occurrences", + "locationName": "occurrences", + "documentation": "

The location of 1-15 occurrences of the sensitive data that the custom data identifier detected. A finding includes location data for a maximum of 15 occurrences of sensitive data.

" } }, - "documentation": "

Provides information about a custom data identifier that produced a sensitive data finding, and the number of occurrences of the data that it detected for the finding.

" + "documentation": "

Provides information about a custom data identifier that produced a sensitive data finding, and the sensitive data that it detected for the finding.

" }, "CustomDetections": { "type": "list", @@ -3393,15 +3446,20 @@ "count": { "shape": "__long", "locationName": "count", - "documentation": "

The total number of occurrences of the type of data that was detected.

" + "documentation": "

The total number of occurrences of the type of sensitive data that was detected.

" + }, + "occurrences": { + "shape": "Occurrences", + "locationName": "occurrences", + "documentation": "

The location of 1-15 occurrences of the sensitive data that was detected. A finding includes location data for a maximum of 15 occurrences of sensitive data.

" }, "type": { "shape": "__string", "locationName": "type", - "documentation": "

The type of data that was detected. For example, AWS_CREDENTIALS, PHONE_NUMBER, or ADDRESS.

" + "documentation": "

The type of sensitive data that was detected. For example, AWS_CREDENTIALS, PHONE_NUMBER, or ADDRESS.

" } }, - "documentation": "

Provides information about sensitive data that was detected by managed data identifiers and produced a sensitive data finding.

" + "documentation": "

Provides information about a type of sensitive data that was detected by managed data identifiers and produced a sensitive data finding.

" }, "DefaultDetections": { "type": "list", @@ -3583,12 +3641,12 @@ "jobStatus": { "shape": "JobStatus", "locationName": "jobStatus", - "documentation": "

The current status of the job. Possible values are:

  • CANCELLED - You cancelled the job. A job might also be cancelled if ownership of an S3 bucket changed while the job was running, and that change affected the job's access to the bucket.

  • COMPLETE - Amazon Macie finished processing all the data specified for the job.

  • IDLE - For a recurring job, the previous scheduled run is complete and the next scheduled run is pending. This value doesn't apply to jobs that occur only once.

  • PAUSED - Amazon Macie started the job, but completion of the job would exceed one or more quotas for your account.

  • RUNNING - The job is in progress.

" + "documentation": "

The current status of the job. Possible values are:

  • CANCELLED - You cancelled the job, or you paused the job and didn't resume it within 30 days of pausing it.

  • COMPLETE - For a one-time job, Amazon Macie finished processing all the data specified for the job. This value doesn't apply to recurring jobs.

  • IDLE - For a recurring job, the previous scheduled run is complete and the next scheduled run is pending. This value doesn't apply to one-time jobs.

  • PAUSED - Amazon Macie started running the job but completion of the job would exceed one or more quotas for your account.

  • RUNNING - For a one-time job, the job is in progress. For a recurring job, a scheduled run is in progress.

  • USER_PAUSED - You paused the job. If you don't resume the job within 30 days of pausing it, the job will expire and be cancelled.

" }, "jobType": { "shape": "JobType", "locationName": "jobType", - "documentation": "

The schedule for running the job. Possible values are:

  • ONE_TIME - The job ran or will run only once.

  • SCHEDULED - The job runs on a daily, weekly, or monthly basis. The scheduleFrequency property indicates the recurrence pattern for the job.

" + "documentation": "

The schedule for running the job. Possible values are:

  • ONE_TIME - The job runs only once.

  • SCHEDULED - The job runs on a daily, weekly, or monthly basis. The scheduleFrequency property indicates the recurrence pattern for the job.

" }, "lastRunTime": { "shape": "__timestampIso8601", @@ -3618,12 +3676,17 @@ "statistics": { "shape": "Statistics", "locationName": "statistics", - "documentation": "

The number of times that the job has run and processing statistics for the job's most recent run.

" + "documentation": "

The number of times that the job has run and processing statistics for the job's current run.

" }, "tags": { "shape": "TagMap", "locationName": "tags", - "documentation": "

A map of key-value pairs that identifies the tags (keys and values) that are associated with the classification job.

" + "documentation": "

A map of key-value pairs that specifies which tags (keys and values) are associated with the classification job.

" + }, + "userPausedDetails": { + "shape": "UserPausedDetails", + "locationName": "userPausedDetails", + "documentation": "

If the current status of the job is USER_PAUSED, specifies when the job was paused and when the job will expire and be cancelled if it isn't resumed. This value is present only if the value for jobStatus is USER_PAUSED.

" } } }, @@ -3772,7 +3835,7 @@ }, "EncryptionType": { "type": "string", - "documentation": "

The type of server-side encryption that's used to encrypt objects in the S3 bucket. Valid values are:

", + "documentation": "

The type of server-side encryption that's used to encrypt an S3 object or objects in an S3 bucket. Valid values are:

", "enum": [ "NONE", "AES256", @@ -3845,7 +3908,7 @@ "count": { "shape": "__long", "locationName": "count", - "documentation": "

The total number of occurrences of this finding.

" + "documentation": "

The total number of occurrences of the finding.

" }, "createdAt": { "shape": "__timestampIso8601", @@ -3895,7 +3958,7 @@ "severity": { "shape": "Severity", "locationName": "severity", - "documentation": "

The severity of the finding.

" + "documentation": "

The severity level and score for the finding.

" }, "title": { "shape": "__string", @@ -3910,10 +3973,10 @@ "updatedAt": { "shape": "__timestampIso8601", "locationName": "updatedAt", - "documentation": "

The date and time, in UTC and extended ISO 8601 format, when the finding was last updated. For sensitive data findings, this value is the same as the value for the createdAt property. Sensitive data findings aren't updated.

" + "documentation": "

The date and time, in UTC and extended ISO 8601 format, when the finding was last updated. For sensitive data findings, this value is the same as the value for the createdAt property. All sensitive data findings are considered new (unique) because they derive from individual classification jobs.

" } }, - "documentation": "

Provides information about a finding.

" + "documentation": "

Provides the details of a finding.

" }, "FindingAction": { "type": "structure", @@ -4013,7 +4076,7 @@ }, "FindingType": { "type": "string", - "documentation": "

The type of finding. Valid values are:

", + "documentation": "

The type of finding. For details about each type, see Types of Amazon Macie findings in the Amazon Macie User Guide. Valid values are:

", "enum": [ "SensitiveData:S3Object/Multiple", "SensitiveData:S3Object/Financial", @@ -4102,12 +4165,12 @@ "classifiableObjectCount": { "shape": "__long", "locationName": "classifiableObjectCount", - "documentation": "

The total number of objects that Amazon Macie can analyze in the buckets. These objects use a supported file or storage format and storage class.

" + "documentation": "

The total number of objects that Amazon Macie can analyze in the buckets. These objects use a supported storage class and have a file name extension for a supported file or storage format.

" }, "classifiableSizeInBytes": { "shape": "__long", "locationName": "classifiableSizeInBytes", - "documentation": "

The total storage size, in bytes, of all the objects that Amazon Macie can analyze in the buckets. These objects use a supported file or storage format and storage class.

" + "documentation": "

The total storage size, in bytes, of all the objects that Amazon Macie can analyze in the buckets. These objects use a supported storage class and have a file name extension for a supported file or storage format.

" }, "lastUpdated": { "shape": "__timestampIso8601", @@ -4132,12 +4195,12 @@ "unclassifiableObjectCount": { "shape": "ObjectLevelStatistics", "locationName": "unclassifiableObjectCount", - "documentation": "

The total number of objects that Amazon Macie can't analyze in the buckets. These objects use an unsupported file or storage format or storage class.

" + "documentation": "

The total number of objects that Amazon Macie can't analyze in the buckets. These objects don't use a supported storage class or don't have a file name extension for a supported file or storage format.

" }, "unclassifiableObjectSizeInBytes": { "shape": "ObjectLevelStatistics", "locationName": "unclassifiableObjectSizeInBytes", - "documentation": "

The total storage size, in bytes, of all the objects that Amazon Macie can't analyze in the buckets. These objects use an unsupported file or storage format or storage class.

" + "documentation": "

The total storage size, in bytes, of all the objects that Amazon Macie can't analyze in the buckets. These objects don't use a supported storage class or don't have a file name extension for a supported file or storage format.

" } } }, @@ -4240,7 +4303,7 @@ "groupBy": { "shape": "GroupBy", "locationName": "groupBy", - "documentation": "

The finding property to use to group the query results. Valid values are:

  • classificationDetails.jobId - The unique identifier for the classification job that produced the finding.

  • resourcesAffected.s3Bucket.name - The name of the S3 bucket that the finding applies to.

  • severity.description - The severity of the finding, such as High or Medium.

  • type - The type of finding, such as Policy:IAMUser/S3BucketPublic and SensitiveData:S3Object/Personal.

" + "documentation": "

The finding property to use to group the query results. Valid values are:

  • classificationDetails.jobId - The unique identifier for the classification job that produced the finding.

  • resourcesAffected.s3Bucket.name - The name of the S3 bucket that the finding applies to.

  • severity.description - The severity level of the finding, such as High or Medium.

  • type - The type of finding, such as Policy:IAMUser/S3BucketPublic and SensitiveData:S3Object/Personal.

" }, "size": { "shape": "__integer", @@ -4332,7 +4395,7 @@ "findingIds": { "shape": "__listOf__string", "locationName": "findingIds", - "documentation": "

An array of strings that lists the unique identifiers for the findings to retrieve information about.

" + "documentation": "

An array of strings that lists the unique identifiers for the findings to retrieve.

" }, "sortCriteria": { "shape": "SortCriteria", @@ -4766,7 +4829,7 @@ "tagScopeTerm": { "shape": "TagScopeTerm", "locationName": "tagScopeTerm", - "documentation": "

A tag-based condition that defines the operator and a tag key or tag keys and values for including or excluding an object from the job.

" + "documentation": "

A tag-based condition that defines the operator and tag keys or tag key and value pairs for including or excluding an object from the job.

" } }, "documentation": "

Specifies a property- or tag-based condition that defines criteria for including or excluding objects from a classification job.

" @@ -4780,7 +4843,7 @@ "documentation": "

An array of conditions, one for each condition that determines which objects to include or exclude from the job.

" } }, - "documentation": "

Specifies one or more property- and tag-based conditions that define criteria for including or excluding objects from a classification job.

" + "documentation": "

Specifies one or more property- and tag-based conditions that define criteria for including or excluding objects from a classification job. If you specify more than one condition, Amazon Macie uses an AND operator to join the conditions.

" }, "JobStatus": { "type": "string", @@ -4790,7 +4853,8 @@ "PAUSED", "CANCELLED", "COMPLETE", - "IDLE" + "IDLE", + "USER_PAUSED" ] }, "JobSummary": { @@ -4814,17 +4878,22 @@ "jobStatus": { "shape": "JobStatus", "locationName": "jobStatus", - "documentation": "

The current status of the job. Possible values are:

  • CANCELLED - You cancelled the job. A job might also be cancelled if ownership of an S3 bucket changed while the job was running, and that change affected the job's access to the bucket.

  • COMPLETE - Amazon Macie finished processing all the data specified for the job.

  • IDLE - For a recurring job, the previous scheduled run is complete and the next scheduled run is pending. This value doesn't apply to jobs that occur only once.

  • PAUSED - Amazon Macie started the job, but completion of the job would exceed one or more quotas for your account.

  • RUNNING - The job is in progress.

" + "documentation": "

The current status of the job. Possible values are:

  • CANCELLED - You cancelled the job, or you paused the job and didn't resume it within 30 days of pausing it.

  • COMPLETE - For a one-time job, Amazon Macie finished processing all the data specified for the job. This value doesn't apply to recurring jobs.

  • IDLE - For a recurring job, the previous scheduled run is complete and the next scheduled run is pending. This value doesn't apply to one-time jobs.

  • PAUSED - Amazon Macie started running the job but completion of the job would exceed one or more quotas for your account.

  • RUNNING - For a one-time job, the job is in progress. For a recurring job, a scheduled run is in progress.

  • USER_PAUSED - You paused the job. If you don't resume the job within 30 days of pausing it, the job will expire and be cancelled.

" }, "jobType": { "shape": "JobType", "locationName": "jobType", - "documentation": "

The schedule for running the job. Possible values are:

  • ONE_TIME - The job ran or will run only once.

  • SCHEDULED - The job runs on a daily, weekly, or monthly basis.

" + "documentation": "

The schedule for running the job. Possible values are:

  • ONE_TIME - The job runs only once.

  • SCHEDULED - The job runs on a daily, weekly, or monthly basis.

" }, "name": { "shape": "__string", "locationName": "name", "documentation": "

The custom name of the job.

" + }, + "userPausedDetails": { + "shape": "UserPausedDetails", + "locationName": "userPausedDetails", + "documentation": "

If the current status of the job is USER_PAUSED, specifies when the job was paused and when the job will expire and be cancelled if it isn't resumed. This value is present only if the value for jobStatus is USER_PAUSED.

" } }, "documentation": "

Provides information about a classification job, including the current status of the job.

" @@ -5266,7 +5335,7 @@ "dayOfMonth": { "shape": "__integer", "locationName": "dayOfMonth", - "documentation": "

The numeric day of the month when Amazon Macie runs the job. This value can be an integer from 1 through 30.

" + "documentation": "

The numeric day of the month when Amazon Macie runs the job. This value can be an integer from 1 through 31.

If this value exceeds the number of days in a certain month, Macie runs the job on the last day of that month. For example, if this value is 31 and a month has only 30 days, Macie runs the job on day 30 of that month.

" } }, "documentation": "

Specifies a monthly recurrence pattern for running a classification job.

" @@ -5303,7 +5372,7 @@ "fileType": { "shape": "__long", "locationName": "fileType", - "documentation": "

The total storage size (in bytes) or number of objects that Amazon Macie can't analyze because the objects use an unsupported file or storage format.

" + "documentation": "

The total storage size (in bytes) or number of objects that Amazon Macie can't analyze because the objects don't have a file name extension for a supported file or storage format.

" }, "storageClass": { "shape": "__long", @@ -5313,11 +5382,42 @@ "total": { "shape": "__long", "locationName": "total", - "documentation": "

The total storage size (in bytes) or number of objects that Amazon Macie can't analyze because the objects use an unsupported file or storage format or storage class.

" + "documentation": "

The total storage size (in bytes) or number of objects that Amazon Macie can't analyze because the objects use an unsupported storage class or don't have a file name extension for a supported file or storage format.

" } }, "documentation": "

Provides information about the total storage size (in bytes) or number of objects that Amazon Macie can't analyze in one or more S3 buckets. In a BucketMetadata object, this data is for a specific bucket. In a GetBucketStatisticsResponse object, this data is aggregated for all the buckets in the query results.

" }, + "Occurrences": { + "type": "structure", + "members": { + "cells": { + "shape": "Cells", + "locationName": "cells", + "documentation": "

An array of objects, one for each occurrence of sensitive data in a Microsoft Excel workbook, CSV file, or TSV file. Each object specifies the cell that contains the data. This value is null for all other types of files.

" + }, + "lineRanges": { + "shape": "Ranges", + "locationName": "lineRanges", + "documentation": "

An array of objects, one for each occurrence of sensitive data in an Apache Avro object container, Microsoft Word document, or non-binary text file, such as an HTML, JSON, TXT, or XML file. Each object specifies the line that contains the data, and the position of the data on that line.

This value is often null for file types that are supported by Cell, Page, or Record objects. Exceptions are the locations of: full names and addresses in a Microsoft Excel workbook, CSV file, or TSV file; data in unstructured sections of an otherwise structured file, such as a comment in a file; and, data in a malformed file that Amazon Macie analyzes as plain text.

" + }, + "offsetRanges": { + "shape": "Ranges", + "locationName": "offsetRanges", + "documentation": "

An array of objects, one for each occurrence of sensitive data in a binary text file. Each object specifies the position of the data relative to the start of the file.

This value is typically null. For binary text files, Macie adds location data to a lineRanges.Range or Page object, depending on the file type.

" + }, + "pages": { + "shape": "Pages", + "locationName": "pages", + "documentation": "

An array of objects, one for each occurrence of sensitive data in an Adobe Portable Document Format file. Each object specifies the page that contains the data, and the position of the data on that page. This value is null for all other types of files.

" + }, + "records": { + "shape": "Records", + "locationName": "records", + "documentation": "

An array of objects, one for each occurrence of sensitive data in an Apache Parquet file. Each object specifies the row that contains the data. This value is null for all other types of files.

" + } + }, + "documentation": "

Provides the location of 1-15 occurrences of sensitive data that was detected by managed data identifiers or a custom data identifier and produced a sensitive data finding.

" + }, "OrderBy": { "type": "string", "enum": [ @@ -5325,6 +5425,34 @@ "DESC" ] }, + "Page": { + "type": "structure", + "members": { + "lineRange": { + "shape": "Range", + "locationName": "lineRange", + "documentation": "

The line that contains the data, and the position of the data on that line.

" + }, + "offsetRange": { + "shape": "Range", + "locationName": "offsetRange", + "documentation": "

The position of the data on the page, relative to the start and end of the page.

" + }, + "pageNumber": { + "shape": "__long", + "locationName": "pageNumber", + "documentation": "

The page number of the page that contains the data.

" + } + }, + "documentation": "

Specifies the location of an occurrence of sensitive data in an Adobe Portable Document Format file.

" + }, + "Pages": { + "type": "list", + "documentation": "

Specifies the location of occurrences of sensitive data in an Adobe Portable Document Format file.

", + "member": { + "shape": "Page" + } + }, "PolicyDetails": { "type": "structure", "members": { @@ -5364,6 +5492,52 @@ } } }, + "Range": { + "type": "structure", + "members": { + "end": { + "shape": "__long", + "locationName": "end", + "documentation": "

Possible values are:

  • In an Occurrences.lineRanges array, the number of lines from the end of the file.

  • In an Occurrences.offsetRanges array, the number of characters from the end of the file.

  • In a Page object, the number of lines (lineRange) or characters (offsetRange) from the end of the page.

" + }, + "start": { + "shape": "__long", + "locationName": "start", + "documentation": "

Possible values are:

  • In an Occurrences.lineRanges array, the number of lines from the start of the file.

  • In an Occurrences.offsetRanges array, the number of characters from the start of the file.

  • In a Page object, the number of lines (lineRange) or characters (offsetRange) from the start of the page.

" + }, + "startColumn": { + "shape": "__long", + "locationName": "startColumn", + "documentation": "

The column number for the column that contains the data, if the file contains structured data.

" + } + }, + "documentation": "

Provides details about the location of an occurrence of sensitive data in an Adobe Portable Document Format file, Apache Avro object container, Microsoft Word document, or non-binary text file.

" + }, + "Ranges": { + "type": "list", + "documentation": "

Provides details about the location of occurrences of sensitive data in an Adobe Portable Document Format file, Apache Avro object container, Microsoft Word document, or non-binary text file.

", + "member": { + "shape": "Range" + } + }, + "Record": { + "type": "structure", + "members": { + "recordIndex": { + "shape": "__long", + "locationName": "recordIndex", + "documentation": "

The row index, starting from 0, for the row that contains the data.

" + } + }, + "documentation": "

Specifies the location of an occurrence of sensitive data in an Apache Parquet file.

" + }, + "Records": { + "type": "list", + "documentation": "

Specifies the location of occurrences of sensitive data in an Apache Parquet file.

", + "member": { + "shape": "Record" + } + }, "RelationshipStatus": { "type": "string", "documentation": "

The current status of the relationship between an account and an associated Amazon Macie master account (inviter account). Possible values are:

", @@ -5448,7 +5622,7 @@ "defaultServerSideEncryption": { "shape": "ServerSideEncryption", "locationName": "defaultServerSideEncryption", - "documentation": "

The server-side encryption settings for the bucket.

" + "documentation": "

The type of server-side encryption that's used by default to encrypt objects in the bucket.

" }, "name": { "shape": "__string", @@ -5587,7 +5761,7 @@ "serverSideEncryption": { "shape": "ServerSideEncryption", "locationName": "serverSideEncryption", - "documentation": "

The server-side encryption settings for the object.

" + "documentation": "

The type of server-side encryption that's used for the object.

" }, "size": { "shape": "__long", @@ -5637,7 +5811,7 @@ "documentation": "

The property- or tag-based conditions that determine which objects to include in the analysis.

" } }, - "documentation": "

Specifies one or more property- and tag-based conditions that refine the scope of a classification job. These conditions define criteria that determine which objects a job analyzes.

" + "documentation": "

Specifies one or more property- and tag-based conditions that refine the scope of a classification job. These conditions define criteria that determine which objects a job analyzes. Exclude conditions take precedence over include conditions.

" }, "SensitiveData": { "type": "list", @@ -5652,12 +5826,12 @@ "category": { "shape": "SensitiveDataItemCategory", "locationName": "category", - "documentation": "

The category of sensitive data that was detected. For example: FINANCIAL_INFORMATION, for financial information such as credit card numbers; PERSONAL_INFORMATION, for personally identifiable information such as full names and mailing addresses; or, CUSTOM_IDENTIFIER, for data that was detected by a custom data identifier.

" + "documentation": "

The category of sensitive data that was detected. For example: FINANCIAL_INFORMATION, for financial information such as credit card numbers; PERSONAL_INFORMATION, for personally identifiable information, such as full names and mailing addresses, or personal health information; or, CUSTOM_IDENTIFIER, for data that was detected by a custom data identifier.

" }, "detections": { "shape": "DefaultDetections", "locationName": "detections", - "documentation": "

An array of objects, one for each type of sensitive data that was detected. Each object reports the number of occurrences of a specific type of sensitive data that was detected.

" + "documentation": "

An array of objects, one for each type of sensitive data that was detected. Each object reports the number of occurrences of a specific type of sensitive data that was detected, and the location of up to 15 of those occurrences.

" }, "totalCount": { "shape": "__long", @@ -5665,7 +5839,7 @@ "documentation": "

The total number of occurrences of the sensitive data that was detected.

" } }, - "documentation": "

Provides information about the category, type, and number of occurrences of sensitive data that produced a finding.

" + "documentation": "

Provides information about the category, types, and occurrences of sensitive data that produced a sensitive data finding.

" }, "SensitiveDataItemCategory": { "type": "string", @@ -5691,7 +5865,7 @@ "documentation": "

The unique identifier for the AWS Key Management Service (AWS KMS) master key that's used to encrypt the bucket or object. This value is null if AWS KMS isn't used to encrypt the bucket or object.

" } }, - "documentation": "

Provides information about the server-side encryption settings for an S3 bucket or object.

" + "documentation": "

Provides information about the server-side encryption settings for an S3 bucket or S3 object.

" }, "ServiceLimit": { "type": "structure", @@ -5798,19 +5972,19 @@ "description": { "shape": "SeverityDescription", "locationName": "description", - "documentation": "

The textual representation of the severity value, such as Low or High.

" + "documentation": "

The qualitative representation of the finding's severity, ranging from Low (least severe) to High (most severe).

" }, "score": { "shape": "__long", "locationName": "score", - "documentation": "

The numeric score for the severity value, ranging from 0 (least severe) to 4 (most severe).

" + "documentation": "

The numerical representation of the finding's severity, ranging from 1 (least severe) to 3 (most severe).

" } }, - "documentation": "

Provides the numeric score and textual representation of a severity value.

" + "documentation": "

Provides the numerical and qualitative representations of a finding's severity.

" }, "SeverityDescription": { "type": "string", - "documentation": "

The textual representation of the finding's severity. Possible values are:

", + "documentation": "

The qualitative representation of the finding's severity. Possible values are:

", "enum": [ "Low", "Medium", @@ -5832,17 +6006,17 @@ "comparator": { "shape": "JobComparator", "locationName": "comparator", - "documentation": "

The operator to use in the condition.

" + "documentation": "

The operator to use in the condition. Valid operators for each supported property (key) are:

  • OBJECT_EXTENSION - EQ (equals) or NE (not equals)

  • OBJECT_LAST_MODIFIED_DATE - Any operator except CONTAINS

  • OBJECT_SIZE - Any operator except CONTAINS

  • TAG - EQ (equals) or NE (not equals)

" }, "key": { "shape": "ScopeFilterKey", "locationName": "key", - "documentation": "

The property to use in the condition.

" + "documentation": "

The object property to use in the condition.

" }, "values": { "shape": "__listOf__string", "locationName": "values", - "documentation": "

An array that lists one or more values to use in the condition.

" + "documentation": "

An array that lists the values to use in the condition. If the value for the key property is OBJECT_EXTENSION, this array can specify multiple values and Amazon Macie uses an OR operator to join the values. Otherwise, this array can specify only one value. Valid values for each supported property (key) are:

  • OBJECT_EXTENSION - A string that represents the file name extension of an object. For example: doc, docx, pdf

  • OBJECT_LAST_MODIFIED_DATE - The date and time (in UTC and extended ISO 8601 format) when an object was created or last changed, whichever is latest. For example: 2020-09-28T14:31:13Z

  • OBJECT_SIZE - An integer that represents the storage size (in bytes) of an object.

  • TAG - A string that represents a tag key for an object. For advanced options, use a TagScopeTerm object, instead of a SimpleScopeTerm object, to define a tag-based condition for the job.

" } }, "documentation": "

Specifies a property-based condition that determines whether an object is included or excluded from a classification job.

" @@ -5861,7 +6035,7 @@ "documentation": "

The sort order to apply to the results, based on the value for the property specified by the attributeName property. Valid values are: ASC, sort the results in ascending order; and, DESC, sort the results in descending order.

" } }, - "documentation": "

Specifies criteria for sorting the results of a request for information about findings.

" + "documentation": "

Specifies criteria for sorting the results of a request for findings.

" }, "Statistics": { "type": "structure", @@ -5881,7 +6055,7 @@ }, "StorageClass": { "type": "string", - "documentation": "

The storage class of the S3 bucket or object. Possible values are:

", + "documentation": "

The storage class of the S3 object. Possible values are:

", "enum": [ "STANDARD", "REDUCED_REDUNDANCY", @@ -5932,7 +6106,7 @@ "comparator": { "shape": "JobComparator", "locationName": "comparator", - "documentation": "

The operator to use in the condition.

" + "documentation": "

The operator to use in the condition. Valid operators are EQ (equals) or NE (not equals).

" }, "key": { "shape": "__string", @@ -5942,7 +6116,7 @@ "tagValues": { "shape": "__listOfTagValuePair", "locationName": "tagValues", - "documentation": "

The tag key and value pairs to use in the condition.

" + "documentation": "

The tag keys or tag key and value pairs to use in the condition.

" }, "target": { "shape": "TagTarget", @@ -5970,10 +6144,10 @@ "value": { "shape": "__string", "locationName": "value", - "documentation": "

The tag value, associated with the specified tag key, to use in the condition.

" + "documentation": "

The tag value, associated with the specified tag key (key), to use in the condition. To specify only a tag key for a condition, specify the tag key for the key property and set this value to an empty string.

" } }, - "documentation": "

Specifies a tag key and value, as a pair, to use in a tag-based condition for a classification job.

" + "documentation": "

Specifies a tag key or tag key and value pair to use in a tag-based condition for a classification job.

" }, "TestCustomDataIdentifierRequest": { "type": "structure", @@ -6098,7 +6272,7 @@ "jobStatus": { "shape": "JobStatus", "locationName": "jobStatus", - "documentation": "

The status to change the job's status to. The only supported value is CANCELLED, which cancels the job completely.

" + "documentation": "

The new status for the job. Valid values are:

  • CANCELLED - Stops the job permanently and cancels it. You can't resume a job after you cancel it. This value is valid only if the job's current status is IDLE, PAUSED, RUNNING, or USER_PAUSED.

  • RUNNING - Resumes the job. This value is valid only if the job's current status is USER_PAUSED. If you specify this value, Amazon Macie immediately resumes the job.

  • USER_PAUSED - Pauses the job. This value is valid only if the job's current status is IDLE or RUNNING. If you specify this value and the job is currently running, Macie immediately stops running the job.

    To resume a job after you pause it, change the job's status to RUNNING. If you don't resume a job within 30 days of pausing it, the job expires and Macie cancels it. You can't resume a job after it's cancelled.

" } }, "required": [ @@ -6444,6 +6618,27 @@ "AWSService" ] }, + "UserPausedDetails": { + "type": "structure", + "members": { + "jobExpiresAt": { + "shape": "__timestampIso8601", + "locationName": "jobExpiresAt", + "documentation": "

The date and time, in UTC and extended ISO 8601 format, when the job will expire and be cancelled if you don't resume it first. If you don't resume a job within 30 days of pausing it, the job expires and Amazon Macie cancels it.

" + }, + "jobImminentExpirationHealthEventArn": { + "shape": "__string", + "locationName": "jobImminentExpirationHealthEventArn", + "documentation": "

The Amazon Resource Name (ARN) of the AWS Health event that Amazon Macie sent to notify you of the job's pending expiration and cancellation. This value is null if a job has been paused for less than 23 days.

" + }, + "jobPausedAt": { + "shape": "__timestampIso8601", + "locationName": "jobPausedAt", + "documentation": "

The date and time, in UTC and extended ISO 8601 format, when you paused the job.

" + } + }, + "documentation": "

Provides information about when a classification job was paused and when it will expire and be cancelled if it isn't resumed. This object is present only if a job's current status (jobStatus) is USER_PAUSED.

" + }, "ValidationException": { "type": "structure", "members": { From cd58641a07b497c297a774652764bc48055e25f0 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 15 Oct 2020 18:07:11 +0000 Subject: [PATCH 012/339] AWS IoT Update: Add new variable, lastStatusChangeDate, to DescribeDomainConfiguration API --- .../next-release/feature-AWSIoT-d4f0d62.json | 5 +++ .../codegen-resources/service-2.json | 38 +++++++++++++------ 2 files changed, 32 insertions(+), 11 deletions(-) create mode 100644 .changes/next-release/feature-AWSIoT-d4f0d62.json diff --git a/.changes/next-release/feature-AWSIoT-d4f0d62.json b/.changes/next-release/feature-AWSIoT-d4f0d62.json new file mode 100644 index 000000000000..2da0c58db2f6 --- /dev/null +++ b/.changes/next-release/feature-AWSIoT-d4f0d62.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS IoT", + "description": "Add new variable, lastStatusChangeDate, to DescribeDomainConfiguration API" +} diff --git a/services/iot/src/main/resources/codegen-resources/service-2.json b/services/iot/src/main/resources/codegen-resources/service-2.json index c813b497f152..31325322331f 100644 --- a/services/iot/src/main/resources/codegen-resources/service-2.json +++ b/services/iot/src/main/resources/codegen-resources/service-2.json @@ -989,6 +989,7 @@ {"shape":"ResourceNotFoundException"}, {"shape":"DeleteConflictException"}, {"shape":"ThrottlingException"}, + {"shape":"ConflictingResourceUpdateException"}, {"shape":"UnauthorizedException"} ], "documentation":"

Deletes a fleet provisioning template.

" @@ -1007,6 +1008,7 @@ {"shape":"ThrottlingException"}, {"shape":"ResourceNotFoundException"}, {"shape":"UnauthorizedException"}, + {"shape":"ConflictingResourceUpdateException"}, {"shape":"DeleteConflictException"} ], "documentation":"

Deletes a fleet provisioning template version.

" @@ -3705,7 +3707,7 @@ "type":"string", "max":2048, "min":1, - "pattern":"arn:aws:acm:[a-z]{2}-(gov-)?[a-z]{4,9}-\\d{1}:\\d{12}:certificate/?[a-zA-Z0-9/-]+" + "pattern":"arn:aws(-cn|-us-gov|-iso-b|-iso)?:acm:[a-z]{2}-(gov-|iso-|isob-)?[a-z]{4,9}-\\d{1}:\\d{12}:certificate/[a-zA-Z0-9/-]+" }, "Action":{ "type":"structure", @@ -4661,7 +4663,10 @@ "type":"list", "member":{"shape":"AuthResult"} }, - "AuthorizerArn":{"type":"string"}, + "AuthorizerArn":{ + "type":"string", + "max":2048 + }, "AuthorizerConfig":{ "type":"structure", "members":{ @@ -4719,7 +4724,10 @@ }, "documentation":"

The authorizer description.

" }, - "AuthorizerFunctionArn":{"type":"string"}, + "AuthorizerFunctionArn":{ + "type":"string", + "max":2048 + }, "AuthorizerName":{ "type":"string", "max":128, @@ -6556,7 +6564,7 @@ }, "additionalMetricsToRetain":{ "shape":"AdditionalMetricsToRetainList", - "documentation":"

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile's behaviors, but it is also retained for any metric specified here.

Note: This API field is deprecated. Please use CreateSecurityProfileRequest$additionalMetricsToRetainV2 instead.

", + "documentation":"

Please use CreateSecurityProfileRequest$additionalMetricsToRetainV2 instead.

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile's behaviors, but it is also retained for any metric specified here.

", "deprecated":true, "deprecatedMessage":"Use additionalMetricsToRetainV2." }, @@ -7827,6 +7835,10 @@ "domainType":{ "shape":"DomainType", "documentation":"

The type of the domain.

" + }, + "lastStatusChangeDate":{ + "shape":"DateType", + "documentation":"

The date and time the domain configuration's status was last changed.

" } } }, @@ -8211,7 +8223,7 @@ }, "additionalMetricsToRetain":{ "shape":"AdditionalMetricsToRetainList", - "documentation":"

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile's behaviors, but it is also retained for any metric specified here.

Note: This API field is deprecated. Please use DescribeSecurityProfileResponse$additionalMetricsToRetainV2 instead.

", + "documentation":"

Please use DescribeSecurityProfileResponse$additionalMetricsToRetainV2 instead.

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile's behaviors, but it is also retained for any metric specified here.

", "deprecated":true, "deprecatedMessage":"Use additionalMetricsToRetainV2." }, @@ -8957,11 +8969,11 @@ }, "incrementFactor":{ "shape":"IncrementFactor", - "documentation":"

The exponential factor to increase the rate of rollout for a job.

" + "documentation":"

The exponential factor to increase the rate of rollout for a job.

AWS IoT supports up to one digit after the decimal (for example, 1.5, but not 1.55).

" }, "rateIncreaseCriteria":{ "shape":"RateIncreaseCriteria", - "documentation":"

The criteria to initiate the increase in rate of rollout for a job.

AWS IoT supports up to one digit after the decimal (for example, 1.5, but not 1.55).

" + "documentation":"

The criteria to initiate the increase in rate of rollout for a job.

" } }, "documentation":"

Allows you to create an exponential rate of rollout for a job.

" @@ -12273,6 +12285,7 @@ }, "Marker":{ "type":"string", + "max":1024, "pattern":"[A-Za-z0-9+/]+={0,2}" }, "MaxJobExecutionsPerMin":{ @@ -13455,7 +13468,10 @@ "min":1, "pattern":"[\\w.:-]+" }, - "Resource":{"type":"string"}, + "Resource":{ + "type":"string", + "max":2048 + }, "ResourceAlreadyExistsException":{ "type":"structure", "members":{ @@ -15384,7 +15400,7 @@ "members":{ "sql":{ "shape":"SQL", - "documentation":"

The SQL statement used to query the topic. For more information, see AWS IoT SQL Reference in the AWS IoT Developer Guide.

" + "documentation":"

The SQL statement used to query the topic. For more information, see AWS IoT SQL Reference in the AWS IoT Developer Guide.

" }, "description":{ "shape":"Description", @@ -16098,7 +16114,7 @@ }, "additionalMetricsToRetain":{ "shape":"AdditionalMetricsToRetainList", - "documentation":"

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile's behaviors, but it is also retained for any metric specified here.

Note: This API field is deprecated. Please use UpdateSecurityProfileRequest$additionalMetricsToRetainV2 instead.

", + "documentation":"

Please use UpdateSecurityProfileRequest$additionalMetricsToRetainV2 instead.

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the profile's behaviors, but it is also retained for any metric specified here.

", "deprecated":true, "deprecatedMessage":"Use additionalMetricsToRetainV2." }, @@ -16151,7 +16167,7 @@ }, "additionalMetricsToRetain":{ "shape":"AdditionalMetricsToRetainList", - "documentation":"

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the security profile's behaviors, but it is also retained for any metric specified here.

Note: This API field is deprecated. Please use UpdateSecurityProfileResponse$additionalMetricsToRetainV2 instead.

", + "documentation":"

Please use UpdateSecurityProfileResponse$additionalMetricsToRetainV2 instead.

A list of metrics whose data is retained (stored). By default, data is retained for any metric used in the security profile's behaviors, but it is also retained for any metric specified here.

", "deprecated":true, "deprecatedMessage":"Use additionalMetricsToRetainV2." }, From 2544ef017aacc5d07414775828da51db097a6624 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 15 Oct 2020 18:07:11 +0000 Subject: [PATCH 013/339] AWS Glue Update: API Documentation updates for Glue Get-Plan API --- .changes/next-release/feature-AWSGlue-7e328fe.json | 5 +++++ .../glue/src/main/resources/codegen-resources/service-2.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AWSGlue-7e328fe.json diff --git a/.changes/next-release/feature-AWSGlue-7e328fe.json b/.changes/next-release/feature-AWSGlue-7e328fe.json new file mode 100644 index 000000000000..70688ccfd2a2 --- /dev/null +++ b/.changes/next-release/feature-AWSGlue-7e328fe.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS Glue", + "description": "API Documentation updates for Glue Get-Plan API" +} diff --git a/services/glue/src/main/resources/codegen-resources/service-2.json b/services/glue/src/main/resources/codegen-resources/service-2.json index 0f3688d93248..c5dbae9e44d6 100644 --- a/services/glue/src/main/resources/codegen-resources/service-2.json +++ b/services/glue/src/main/resources/codegen-resources/service-2.json @@ -6603,7 +6603,7 @@ }, "AdditionalPlanOptionsMap":{ "shape":"AdditionalPlanOptionsMap", - "documentation":"

A map to hold additional optional key-value parameters.

" + "documentation":"

A map to hold additional optional key-value parameters.

Currently, these key-value pairs are supported:

  • inferSchema  —  Specifies whether to set inferSchema to true or false for the default script generated by an AWS Glue job. For example, to set inferSchema to true, pass the following key value pair:

    --additional-plan-options-map '{\"inferSchema\":\"true\"}'

" } } }, From 3961c014a80f9919a8a7c59f44b32178c0b2108c Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 15 Oct 2020 18:07:12 +0000 Subject: [PATCH 014/339] Amazon WorkMail Update: Add CreateOrganization and DeleteOrganization API operations. --- .../feature-AmazonWorkMail-00fdd2d.json | 5 + .../codegen-resources/service-2.json | 180 +++++++++++++++++- 2 files changed, 177 insertions(+), 8 deletions(-) create mode 100644 .changes/next-release/feature-AmazonWorkMail-00fdd2d.json diff --git a/.changes/next-release/feature-AmazonWorkMail-00fdd2d.json b/.changes/next-release/feature-AmazonWorkMail-00fdd2d.json new file mode 100644 index 000000000000..ac3eb9ab4ca4 --- /dev/null +++ b/.changes/next-release/feature-AmazonWorkMail-00fdd2d.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "Amazon WorkMail", + "description": "Add CreateOrganization and DeleteOrganization API operations." +} diff --git a/services/workmail/src/main/resources/codegen-resources/service-2.json b/services/workmail/src/main/resources/codegen-resources/service-2.json index 65b6c32c5741..4714df2382e0 100644 --- a/services/workmail/src/main/resources/codegen-resources/service-2.json +++ b/services/workmail/src/main/resources/codegen-resources/service-2.json @@ -111,6 +111,24 @@ "documentation":"

Creates a group that can be used in Amazon WorkMail by calling the RegisterToWorkMail operation.

", "idempotent":true }, + "CreateOrganization":{ + "name":"CreateOrganization", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateOrganizationRequest"}, + "output":{"shape":"CreateOrganizationResponse"}, + "errors":[ + {"shape":"InvalidParameterException"}, + {"shape":"DirectoryInUseException"}, + {"shape":"DirectoryUnavailableException"}, + {"shape":"LimitExceededException"}, + {"shape":"NameAvailabilityException"} + ], + "documentation":"

Creates a new Amazon WorkMail organization. Optionally, you can choose to associate an existing AWS Directory Service directory with your organization. If an AWS Directory Service directory ID is specified, the organization alias must match the directory alias. If you choose not to associate an existing directory with your organization, then we create a new Amazon WorkMail directory for you. For more information, see Adding an organization in the Amazon WorkMail Administrator Guide.

You can associate multiple email domains with an organization, then set your default email domain from the Amazon WorkMail console. You can also associate a domain that is managed in an Amazon Route 53 public hosted zone. For more information, see Adding a domain and Choosing the default domain in the Amazon WorkMail Administrator Guide.

Optionally, you can use a customer managed master key from AWS Key Management Service (AWS KMS) to encrypt email for your organization. If you don't associate an AWS KMS key, Amazon WorkMail creates a default AWS managed master key for you.

", + "idempotent":true + }, "CreateResource":{ "name":"CreateResource", "http":{ @@ -223,6 +241,22 @@ "documentation":"

Deletes permissions granted to a member (user or group).

", "idempotent":true }, + "DeleteOrganization":{ + "name":"DeleteOrganization", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteOrganizationRequest"}, + "output":{"shape":"DeleteOrganizationResponse"}, + "errors":[ + {"shape":"InvalidParameterException"}, + {"shape":"OrganizationNotFoundException"}, + {"shape":"OrganizationStateException"} + ], + "documentation":"

Deletes an Amazon WorkMail organization and all underlying AWS resources managed by Amazon WorkMail as part of the organization. You can choose whether to delete the associated directory. For more information, see Removing an organization in the Amazon WorkMail Administrator Guide.

", + "idempotent":true + }, "DeleteResource":{ "name":"DeleteResource", "http":{ @@ -1110,6 +1144,46 @@ } } }, + "CreateOrganizationRequest":{ + "type":"structure", + "required":["Alias"], + "members":{ + "DirectoryId":{ + "shape":"DirectoryId", + "documentation":"

The AWS Directory Service directory ID.

" + }, + "Alias":{ + "shape":"OrganizationName", + "documentation":"

The organization alias.

" + }, + "ClientToken":{ + "shape":"IdempotencyClientToken", + "documentation":"

The idempotency token associated with the request.

", + "idempotencyToken":true + }, + "Domains":{ + "shape":"Domains", + "documentation":"

The email domains to associate with the organization.

" + }, + "KmsKeyArn":{ + "shape":"KmsKeyArn", + "documentation":"

The Amazon Resource Name (ARN) of a customer managed master key from AWS KMS.

" + }, + "EnableInteroperability":{ + "shape":"Boolean", + "documentation":"

When true, allows organization interoperability between Amazon WorkMail and Microsoft Exchange. Can only be set to true if an AD Connector directory ID is included in the request.

" + } + } + }, + "CreateOrganizationResponse":{ + "type":"structure", + "members":{ + "OrganizationId":{ + "shape":"OrganizationId", + "documentation":"

The organization ID.

" + } + } + }, "CreateResourceRequest":{ "type":"structure", "required":[ @@ -1280,7 +1354,7 @@ }, "EntityId":{ "shape":"WorkMailIdentifier", - "documentation":"

The identifier of the member (user or group)that owns the mailbox.

" + "documentation":"

The identifier of the member (user or group) that owns the mailbox.

" }, "GranteeId":{ "shape":"WorkMailIdentifier", @@ -1293,6 +1367,41 @@ "members":{ } }, + "DeleteOrganizationRequest":{ + "type":"structure", + "required":[ + "OrganizationId", + "DeleteDirectory" + ], + "members":{ + "ClientToken":{ + "shape":"IdempotencyClientToken", + "documentation":"

The idempotency token associated with the request.

", + "idempotencyToken":true + }, + "OrganizationId":{ + "shape":"OrganizationId", + "documentation":"

The organization ID.

" + }, + "DeleteDirectory":{ + "shape":"Boolean", + "documentation":"

If true, deletes the AWS Directory Service directory associated with the organization.

" + } + } + }, + "DeleteOrganizationResponse":{ + "type":"structure", + "members":{ + "OrganizationId":{ + "shape":"OrganizationId", + "documentation":"

The organization ID.

" + }, + "State":{ + "shape":"String", + "documentation":"

The state of the organization.

" + } + } + }, "DeleteResourceRequest":{ "type":"structure", "required":[ @@ -1662,6 +1771,20 @@ "min":0, "pattern":"[\\S\\s]*" }, + "DirectoryId":{ + "type":"string", + "max":12, + "min":12, + "pattern":"^d-[0-9a-f]{10}$" + }, + "DirectoryInUseException":{ + "type":"structure", + "members":{ + "Message":{"shape":"String"} + }, + "documentation":"

The directory is already in use by another WorkMail organization in the same account and Region.

", + "exception":true + }, "DirectoryServiceAuthenticationFailedException":{ "type":"structure", "members":{ @@ -1675,7 +1798,7 @@ "members":{ "Message":{"shape":"String"} }, - "documentation":"

The directory on which you are trying to perform operations isn't available.

", + "documentation":"

The directory is unavailable. It might be located in another Region or deleted.

", "exception":true }, "DisassociateDelegateFromResourceRequest":{ @@ -1732,11 +1855,37 @@ "members":{ } }, + "Domain":{ + "type":"structure", + "members":{ + "DomainName":{ + "shape":"DomainName", + "documentation":"

The fully qualified domain name.

" + }, + "HostedZoneId":{ + "shape":"HostedZoneId", + "documentation":"

The hosted zone ID for a domain hosted in Route 53. Required when configuring a domain hosted in Route 53.

" + } + }, + "documentation":"

The domain to associate with an Amazon WorkMail organization.

When you configure a domain hosted in Amazon Route 53 (Route 53), all recommended DNS records are added to the organization when you create it. For more information, see Adding a domain in the Amazon WorkMail Administrator Guide.

" + }, + "DomainName":{ + "type":"string", + "max":255, + "min":3, + "pattern":"[a-zA-Z0-9.-]+\\.[a-zA-Z-]{2,}" + }, + "Domains":{ + "type":"list", + "member":{"shape":"Domain"}, + "max":5, + "min":0 + }, "EmailAddress":{ "type":"string", "max":254, "min":1, - "pattern":"[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}" + "pattern":"[a-zA-Z0-9._%+-]{1,64}@[a-zA-Z0-9.-]+\\.[a-zA-Z-]{2,}" }, "EmailAddressInUseException":{ "type":"structure", @@ -1955,6 +2104,12 @@ "type":"list", "member":{"shape":"Group"} }, + "HostedZoneId":{ + "type":"string", + "max":32, + "min":1, + "pattern":"[\\S\\s]*" + }, "IdempotencyClientToken":{ "type":"string", "max":128, @@ -2507,17 +2662,20 @@ "NextToken":{ "type":"string", "max":1024, - "min":1 + "min":1, + "pattern":"[\\S\\s]*|[a-zA-Z0-9/+=]{1,1024}" }, "OrganizationId":{ "type":"string", + "max":34, + "min":34, "pattern":"^m-[0-9a-f]{32}$" }, "OrganizationName":{ "type":"string", "max":62, "min":1, - "pattern":"^(?!d-)([\\da-zA-Z]+)([-]*[\\da-zA-Z])*" + "pattern":"^(?!d-)([\\da-zA-Z]+)([-][\\da-zA-Z]+)*" }, "OrganizationNotFoundException":{ "type":"structure", @@ -2532,7 +2690,7 @@ "members":{ "Message":{"shape":"String"} }, - "documentation":"

The organization must have a valid state (Active or Synchronizing) to perform certain operations on the organization or its members.

", + "documentation":"

The organization must have a valid state to perform certain operations on the organization or its members.

", "exception":true }, "OrganizationSummaries":{ @@ -2550,6 +2708,10 @@ "shape":"OrganizationName", "documentation":"

The alias associated with the organization.

" }, + "DefaultMailDomain":{ + "shape":"DomainName", + "documentation":"

The default email domain associated with the organization.

" + }, "ErrorMessage":{ "shape":"String", "documentation":"

The error message associated with the organization. It is only present if unexpected behavior has occurred with regards to the organization. It provides insight or solutions regarding unexpected behavior.

" @@ -2842,13 +3004,15 @@ }, "ResourceId":{ "type":"string", + "max":34, + "min":34, "pattern":"^r-[0-9a-f]{32}$" }, "ResourceName":{ "type":"string", "max":20, "min":1, - "pattern":"[\\w\\-.]+(@[a-zA-Z0-9.\\-]+\\.[a-zA-Z0-9]{2,})?" + "pattern":"[\\w\\-.]+(@[a-zA-Z0-9.\\-]+\\.[a-zA-Z0-9-]{2,})?" }, "ResourceNotFoundException":{ "type":"structure", @@ -3199,7 +3363,7 @@ "type":"string", "max":64, "min":1, - "pattern":"[\\w\\-.]+(@[a-zA-Z0-9.\\-]+\\.[a-zA-Z0-9]{2,})?" + "pattern":"[\\w\\-.]+(@[a-zA-Z0-9.\\-]+\\.[a-zA-Z0-9-]{2,})?" }, "UserRole":{ "type":"string", From e060e42f8bc05082993b59d23b450a0a32ad8c2c Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 15 Oct 2020 18:07:15 +0000 Subject: [PATCH 015/339] Amazon Rekognition Update: This SDK Release introduces new API (DetectProtectiveEquipment) for Amazon Rekognition. This release also adds ServiceQuotaExceeded exception to Amazon Rekognition IndexFaces API. --- .../feature-AmazonRekognition-a4ef0a4.json | 5 + .../codegen-resources/service-2.json | 212 +++++++++++++++++- 2 files changed, 215 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AmazonRekognition-a4ef0a4.json diff --git a/.changes/next-release/feature-AmazonRekognition-a4ef0a4.json b/.changes/next-release/feature-AmazonRekognition-a4ef0a4.json new file mode 100644 index 000000000000..0520a4d50071 --- /dev/null +++ b/.changes/next-release/feature-AmazonRekognition-a4ef0a4.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "Amazon Rekognition", + "description": "This SDK Release introduces new API (DetectProtectiveEquipment) for Amazon Rekognition. This release also adds ServiceQuotaExceeded exception to Amazon Rekognition IndexFaces API." +} diff --git a/services/rekognition/src/main/resources/codegen-resources/service-2.json b/services/rekognition/src/main/resources/codegen-resources/service-2.json index 1520531737c0..e83fe15b42a4 100644 --- a/services/rekognition/src/main/resources/codegen-resources/service-2.json +++ b/services/rekognition/src/main/resources/codegen-resources/service-2.json @@ -358,6 +358,26 @@ ], "documentation":"

Detects unsafe content in a specified JPEG or PNG format image. Use DetectModerationLabels to moderate images depending on your requirements. For example, you might want to filter images that contain nudity, but not images containing suggestive content.

To filter images, use the labels returned by DetectModerationLabels to determine which types of content are appropriate.

For information about moderation labels, see Detecting Unsafe Content in the Amazon Rekognition Developer Guide.

You pass the input image either as base64-encoded image bytes or as a reference to an image in an Amazon S3 bucket. If you use the AWS CLI to call Amazon Rekognition operations, passing image bytes is not supported. The image must be either a PNG or JPEG formatted file.

" }, + "DetectProtectiveEquipment":{ + "name":"DetectProtectiveEquipment", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DetectProtectiveEquipmentRequest"}, + "output":{"shape":"DetectProtectiveEquipmentResponse"}, + "errors":[ + {"shape":"InvalidS3ObjectException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ImageTooLargeException"}, + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerError"}, + {"shape":"ThrottlingException"}, + {"shape":"ProvisionedThroughputExceededException"}, + {"shape":"InvalidImageFormatException"} + ], + "documentation":"

Detects Personal Protective Equipment (PPE) worn by people detected in an image. Amazon Rekognition can detect the following types of PPE.

  • Face cover

  • Hand cover

  • Head cover

You pass the input image as base64-encoded image bytes or as a reference to an image in an Amazon S3 bucket. The image must be either a PNG or JPG formatted file.

DetectProtectiveEquipment detects PPE worn by up to 15 persons detected in an image.

For each person detected in the image the API returns an array of body parts (face, head, left-hand, right-hand). For each body part, an array of detected items of PPE is returned, including an indicator of whether or not the PPE covers the body part. The API returns the confidence it has in each detection (person, PPE, body part and body part coverage). It also returns a bounding box (BoundingBox) for each detected person and each detected item of PPE.

You can optionally request a summary of detected PPE items with the SummarizationAttributes input parameter. The summary provides the following information.

  • The persons detected as wearing all of the types of PPE that you specify.

  • The persons detected as not wearing all of the types PPE that you specify.

  • The persons detected where PPE adornment could not be determined.

This is a stateless API operation. That is, the operation does not persist any data.

This operation requires permissions to perform the rekognition:DetectProtectiveEquipment action.

" + }, "DetectText":{ "name":"DetectText", "http":{ @@ -565,7 +585,8 @@ {"shape":"ThrottlingException"}, {"shape":"ProvisionedThroughputExceededException"}, {"shape":"ResourceNotFoundException"}, - {"shape":"InvalidImageFormatException"} + {"shape":"InvalidImageFormatException"}, + {"shape":"ServiceQuotaExceededException"} ], "documentation":"

Detects faces in the input image and adds them to the specified collection.

Amazon Rekognition doesn't save the actual faces that are detected. Instead, the underlying detection algorithm first detects the faces in the input image. For each face, the algorithm extracts facial features into a feature vector, and stores it in the backend database. Amazon Rekognition uses feature vectors when it performs face match and search operations using the SearchFaces and SearchFacesByImage operations.

For more information, see Adding Faces to a Collection in the Amazon Rekognition Developer Guide.

To get the number of faces in a collection, call DescribeCollection.

If you're using version 1.0 of the face detection model, IndexFaces indexes the 15 largest faces in the input image. Later versions of the face detection model index the 100 largest faces in the input image.

If you're using version 4 or later of the face model, image orientation information is not returned in the OrientationCorrection field.

To determine which version of the model you're using, call DescribeCollection and supply the collection ID. You can also get the model version from the value of FaceModelVersion in the response from IndexFaces

For more information, see Model Versioning in the Amazon Rekognition Developer Guide.

If you provide the optional ExternalImageId for the input image you provided, Amazon Rekognition associates this ID with all faces that it detects. When you call the ListFaces operation, the response returns the external ID. You can use this external image ID to create a client-side index to associate the faces with each image. You can then use the index to find all faces in an image.

You can specify the maximum number of faces to index with the MaxFaces input parameter. This is useful when you want to index the largest faces in an image and don't want to index smaller faces, such as those belonging to people standing in the background.

The QualityFilter input parameter allows you to filter out detected faces that don’t meet a required quality bar. The quality bar is based on a variety of common use cases. By default, IndexFaces chooses the quality bar that's used to filter faces. You can also explicitly choose the quality bar. Use QualityFilter, to set the quality bar by specifying LOW, MEDIUM, or HIGH. If you do not want to filter detected faces, specify NONE.

To use quality filtering, you need a collection associated with version 3 of the face model or higher. To get the version of the face model associated with a collection, call DescribeCollection.

Information about faces detected in an image, but not indexed, is returned in an array of UnindexedFace objects, UnindexedFaces. Faces aren't indexed for reasons such as:

  • The number of faces detected exceeds the value of the MaxFaces request parameter.

  • The face is too small compared to the image dimensions.

  • The face is too blurry.

  • The image is too dark.

  • The face has an extreme pose.

  • The face doesn’t have enough detail to be suitable for face search.

In response, the IndexFaces operation returns an array of metadata for all detected faces, FaceRecords. This includes:

  • The bounding box, BoundingBox, of the detected face.

  • A confidence value, Confidence, which indicates the confidence that the bounding box contains a face.

  • A face ID, FaceId, assigned by the service for each face that's detected and stored.

  • An image ID, ImageId, assigned by the service for the input image.

If you request all facial attributes (by using the detectionAttributes parameter), Amazon Rekognition returns detailed facial attributes, such as facial landmarks (for example, location of eye and mouth) and other facial attributes. If you provide the same image, specify the same collection, and use the same external ID in the IndexFaces operation, Amazon Rekognition doesn't save duplicate face metadata.

The input image is passed either as base64-encoded image bytes, or as a reference to an image in an Amazon S3 bucket. If you use the AWS CLI to call Amazon Rekognition operations, passing image bytes isn't supported. The image must be formatted as a PNG or JPEG file.

This operation requires permissions to perform the rekognition:IndexFaces action.

" }, @@ -1024,6 +1045,19 @@ }, "documentation":"

Indicates whether or not the face has a beard, and the confidence level in the determination.

" }, + "BodyPart":{ + "type":"string", + "enum":[ + "FACE", + "HEAD", + "LEFT_HAND", + "RIGHT_HAND" + ] + }, + "BodyParts":{ + "type":"list", + "member":{"shape":"ProtectiveEquipmentBodyPart"} + }, "Boolean":{"type":"boolean"}, "BoundingBox":{ "type":"structure", @@ -1045,7 +1079,7 @@ "documentation":"

Top coordinate of the bounding box as a ratio of overall image height.

" } }, - "documentation":"

Identifies the bounding box around the label, face, or text. The left (x-coordinate) and top (y-coordinate) are coordinates representing the top and left sides of the bounding box. Note that the upper-left corner of the image is the origin (0,0).

The top and left values returned are ratios of the overall image size. For example, if the input image is 700x200 pixels, and the top-left coordinate of the bounding box is 350x50 pixels, the API returns a left value of 0.5 (350/700) and a top value of 0.25 (50/200).

The width and height values represent the dimensions of the bounding box as a ratio of the overall image dimension. For example, if the input image is 700x200 pixels, and the bounding box width is 70 pixels, the width returned is 0.1.

The bounding box coordinates can have negative values. For example, if Amazon Rekognition is able to detect a face that is at the image edge and is only partially visible, the service can return coordinates that are outside the image bounds and, depending on the image edge, you might get negative values or values greater than 1 for the left or top values.

" + "documentation":"

Identifies the bounding box around the label, face, text or personal protective equipment. The left (x-coordinate) and top (y-coordinate) are coordinates representing the top and left sides of the bounding box. Note that the upper-left corner of the image is the origin (0,0).

The top and left values returned are ratios of the overall image size. For example, if the input image is 700x200 pixels, and the top-left coordinate of the bounding box is 350x50 pixels, the API returns a left value of 0.5 (350/700) and a top value of 0.25 (50/200).

The width and height values represent the dimensions of the bounding box as a ratio of the overall image dimension. For example, if the input image is 700x200 pixels, and the bounding box width is 70 pixels, the width returned is 0.1.

The bounding box coordinates can have negative values. For example, if Amazon Rekognition is able to detect a face that is at the image edge and is only partially visible, the service can return coordinates that are outside the image bounds and, depending on the image edge, you might get negative values or values greater than 1 for the left or top values.

" }, "BoundingBoxHeight":{ "type":"float", @@ -1311,6 +1345,20 @@ "TIMESTAMP" ] }, + "CoversBodyPart":{ + "type":"structure", + "members":{ + "Confidence":{ + "shape":"Percent", + "documentation":"

The confidence that Amazon Rekognition has in the value of Value.

" + }, + "Value":{ + "shape":"Boolean", + "documentation":"

True if the PPE covers the corresponding body part, otherwise false.

" + } + }, + "documentation":"

Information about an item of Personal Protective Equipment covering a corresponding body part. For more information, see DetectProtectiveEquipment.

" + }, "CreateCollectionRequest":{ "type":"structure", "required":["CollectionId"], @@ -1840,6 +1888,37 @@ } } }, + "DetectProtectiveEquipmentRequest":{ + "type":"structure", + "required":["Image"], + "members":{ + "Image":{ + "shape":"Image", + "documentation":"

The image in which you want to detect PPE on detected persons. The image can be passed as image bytes or you can reference an image stored in an Amazon S3 bucket.

" + }, + "SummarizationAttributes":{ + "shape":"ProtectiveEquipmentSummarizationAttributes", + "documentation":"

An array of PPE types that you want to summarize.

" + } + } + }, + "DetectProtectiveEquipmentResponse":{ + "type":"structure", + "members":{ + "ProtectiveEquipmentModelVersion":{ + "shape":"String", + "documentation":"

The version number of the PPE detection model used to detect PPE in the image.

" + }, + "Persons":{ + "shape":"ProtectiveEquipmentPersons", + "documentation":"

An array of persons detected in the image (including persons not wearing PPE).

" + }, + "Summary":{ + "shape":"ProtectiveEquipmentSummary", + "documentation":"

Summary information for the types of PPE specified in the SummarizationAttributes input parameter.

" + } + } + }, "DetectTextFilters":{ "type":"structure", "members":{ @@ -1928,6 +2007,32 @@ "type":"list", "member":{"shape":"Emotion"} }, + "EquipmentDetection":{ + "type":"structure", + "members":{ + "BoundingBox":{ + "shape":"BoundingBox", + "documentation":"

A bounding box surrounding the item of detected PPE.

" + }, + "Confidence":{ + "shape":"Percent", + "documentation":"

The confidence that Amazon Rekognition has that the bounding box (BoundingBox) contains an item of PPE.

" + }, + "Type":{ + "shape":"ProtectiveEquipmentType", + "documentation":"

The type of detected PPE.

" + }, + "CoversBodyPart":{ + "shape":"CoversBodyPart", + "documentation":"

Information about the body part covered by the detected PPE.

" + } + }, + "documentation":"

Information about an item of Personal Protective Equipment (PPE) detected by DetectProtectiveEquipment. For more information, see DetectProtectiveEquipment.

" + }, + "EquipmentDetections":{ + "type":"list", + "member":{"shape":"EquipmentDetection"} + }, "EvaluationResult":{ "type":"structure", "members":{ @@ -3490,6 +3595,102 @@ "max":100, "min":1 }, + "ProtectiveEquipmentBodyPart":{ + "type":"structure", + "members":{ + "Name":{ + "shape":"BodyPart", + "documentation":"

The detected body part.

" + }, + "Confidence":{ + "shape":"Percent", + "documentation":"

The confidence that Amazon Rekognition has in the detection accuracy of the detected body part.

" + }, + "EquipmentDetections":{ + "shape":"EquipmentDetections", + "documentation":"

An array of Personal Protective Equipment items detected around a body part.

" + } + }, + "documentation":"

Information about a body part detected by DetectProtectiveEquipment that contains PPE. An array of ProtectiveEquipmentBodyPart objects is returned for each person detected by DetectProtectiveEquipment.

" + }, + "ProtectiveEquipmentPerson":{ + "type":"structure", + "members":{ + "BodyParts":{ + "shape":"BodyParts", + "documentation":"

An array of body parts detected on a person's body (including body parts without PPE).

" + }, + "BoundingBox":{ + "shape":"BoundingBox", + "documentation":"

A bounding box around the detected person.

" + }, + "Confidence":{ + "shape":"Percent", + "documentation":"

The confidence that Amazon Rekognition has that the bounding box contains a person.

" + }, + "Id":{ + "shape":"UInteger", + "documentation":"

The identifier for the detected person. The identifier is only unique for a single call to DetectProtectiveEquipment.

" + } + }, + "documentation":"

A person detected by a call to DetectProtectiveEquipment. The API returns all persons detected in the input image in an array of ProtectiveEquipmentPerson objects.

" + }, + "ProtectiveEquipmentPersonIds":{ + "type":"list", + "member":{"shape":"UInteger"} + }, + "ProtectiveEquipmentPersons":{ + "type":"list", + "member":{"shape":"ProtectiveEquipmentPerson"} + }, + "ProtectiveEquipmentSummarizationAttributes":{ + "type":"structure", + "required":[ + "MinConfidence", + "RequiredEquipmentTypes" + ], + "members":{ + "MinConfidence":{ + "shape":"Percent", + "documentation":"

The minimum confidence level for which you want summary information. The confidence level applies to person detection, body part detection, equipment detection, and body part coverage. Amazon Rekognition doesn't return summary information with a confidence than this specified value. There isn't a default value.

Specify a MinConfidence value that is between 50-100% as DetectProtectiveEquipment returns predictions only where the detection confidence is between 50% - 100%. If you specify a value that is less than 50%, the results are the same specifying a value of 50%.

" + }, + "RequiredEquipmentTypes":{ + "shape":"ProtectiveEquipmentTypes", + "documentation":"

An array of personal protective equipment types for which you want summary information. If a person is detected wearing a required requipment type, the person's ID is added to the PersonsWithRequiredEquipment array field returned in ProtectiveEquipmentSummary by DetectProtectiveEquipment.

" + } + }, + "documentation":"

Specifies summary attributes to return from a call to DetectProtectiveEquipment. You can specify which types of PPE to summarize. You can also specify a minimum confidence value for detections. Summary information is returned in the Summary (ProtectiveEquipmentSummary) field of the response from DetectProtectiveEquipment. The summary includes which persons in an image were detected wearing the requested types of person protective equipment (PPE), which persons were detected as not wearing PPE, and the persons in which a determination could not be made. For more information, see ProtectiveEquipmentSummary.

" + }, + "ProtectiveEquipmentSummary":{ + "type":"structure", + "members":{ + "PersonsWithRequiredEquipment":{ + "shape":"ProtectiveEquipmentPersonIds", + "documentation":"

An array of IDs for persons who are wearing detected personal protective equipment.

" + }, + "PersonsWithoutRequiredEquipment":{ + "shape":"ProtectiveEquipmentPersonIds", + "documentation":"

An array of IDs for persons who are not wearing all of the types of PPE specified in the RequiredEquipmentTypes field of the detected personal protective equipment.

" + }, + "PersonsIndeterminate":{ + "shape":"ProtectiveEquipmentPersonIds", + "documentation":"

An array of IDs for persons where it was not possible to determine if they are wearing personal protective equipment.

" + } + }, + "documentation":"

Summary information for required items of personal protective equipment (PPE) detected on persons by a call to DetectProtectiveEquipment. You specify the required type of PPE in the SummarizationAttributes (ProtectiveEquipmentSummarizationAttributes) input parameter. The summary includes which persons were detected wearing the required personal protective equipment (PersonsWithRequiredEquipment), which persons were detected as not wearing the required PPE (PersonsWithoutRequiredEquipment), and the persons in which a determination could not be made (PersonsIndeterminate).

To get a total for each category, use the size of the field array. For example, to find out how many people were detected as wearing the specified PPE, use the size of the PersonsWithRequiredEquipment array. If you want to find out more about a person, such as the location (BoundingBox) of the person on the image, use the person ID in each array element. Each person ID matches the ID field of a ProtectiveEquipmentPerson object returned in the Persons array by DetectProtectiveEquipment.

" + }, + "ProtectiveEquipmentType":{ + "type":"string", + "enum":[ + "FACE_COVER", + "HAND_COVER", + "HEAD_COVER" + ] + }, + "ProtectiveEquipmentTypes":{ + "type":"list", + "member":{"shape":"ProtectiveEquipmentType"} + }, "ProvisionedThroughputExceededException":{ "type":"structure", "members":{ @@ -3817,6 +4018,13 @@ "type":"list", "member":{"shape":"SegmentTypeInfo"} }, + "ServiceQuotaExceededException":{ + "type":"structure", + "members":{ + }, + "documentation":"

The size of the collection exceeds the allowed limit. For more information, see Limits in Amazon Rekognition in the Amazon Rekognition Developer Guide.

", + "exception":true + }, "ShotSegment":{ "type":"structure", "members":{ From 78f8241261c3f1a42af3b886580c0af85ded1deb Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 15 Oct 2020 18:07:15 +0000 Subject: [PATCH 016/339] Amazon Simple Systems Manager (SSM) Update: This Patch Manager release now supports searching for available packages from Amazon Linux and Amazon Linux 2 via the DescribeAvailablePatches API. --- ...AmazonSimpleSystemsManagerSSM-9fa3cb3.json | 5 + .../codegen-resources/service-2.json | 91 +++++++++++++++++-- 2 files changed, 86 insertions(+), 10 deletions(-) create mode 100644 .changes/next-release/feature-AmazonSimpleSystemsManagerSSM-9fa3cb3.json diff --git a/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-9fa3cb3.json b/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-9fa3cb3.json new file mode 100644 index 000000000000..75070d911b62 --- /dev/null +++ b/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-9fa3cb3.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "Amazon Simple Systems Manager (SSM)", + "description": "This Patch Manager release now supports searching for available packages from Amazon Linux and Amazon Linux 2 via the DescribeAvailablePatches API." +} diff --git a/services/ssm/src/main/resources/codegen-resources/service-2.json b/services/ssm/src/main/resources/codegen-resources/service-2.json index 1bf0a0992d3a..0f5ba70812ee 100644 --- a/services/ssm/src/main/resources/codegen-resources/service-2.json +++ b/services/ssm/src/main/resources/codegen-resources/service-2.json @@ -1129,7 +1129,7 @@ {"shape":"InvalidNextToken"}, {"shape":"InvalidKeyId"} ], - "documentation":"

Query a list of all parameters used by the AWS account.

" + "documentation":"

Retrieves the history of all changes to a parameter.

" }, "GetParameters":{ "name":"GetParameters", @@ -7149,7 +7149,7 @@ "members":{ "Name":{ "shape":"PSParameterName", - "documentation":"

The name of a parameter you want to query.

" + "documentation":"

The name of the parameter for which you want to review history.

" }, "WithDecryption":{ "shape":"Boolean", @@ -11025,7 +11025,7 @@ "members":{ "Id":{ "shape":"PatchId", - "documentation":"

The ID of the patch (this is different than the Microsoft Knowledge Base ID).

" + "documentation":"

The ID of the patch. Applies to Windows patches only.

This ID is not the same as the Microsoft Knowledge Base ID.

" }, "ReleaseDate":{ "shape":"DateTime", @@ -11049,31 +11049,71 @@ }, "ProductFamily":{ "shape":"PatchProductFamily", - "documentation":"

The product family the patch is applicable for (for example, Windows).

" + "documentation":"

The product family the patch is applicable for. For example, Windows or Amazon Linux 2.

" }, "Product":{ "shape":"PatchProduct", - "documentation":"

The specific product the patch is applicable for (for example, WindowsServer2016).

" + "documentation":"

The specific product the patch is applicable for. For example, WindowsServer2016 or AmazonLinux2018.03.

" }, "Classification":{ "shape":"PatchClassification", - "documentation":"

The classification of the patch (for example, SecurityUpdates, Updates, CriticalUpdates).

" + "documentation":"

The classification of the patch. For example, SecurityUpdates, Updates, or CriticalUpdates.

" }, "MsrcSeverity":{ "shape":"PatchMsrcSeverity", - "documentation":"

The severity of the patch (for example Critical, Important, Moderate).

" + "documentation":"

The severity of the patch, such as Critical, Important, or Moderate. Applies to Windows patches only.

" }, "KbNumber":{ "shape":"PatchKbNumber", - "documentation":"

The Microsoft Knowledge Base ID of the patch.

" + "documentation":"

The Microsoft Knowledge Base ID of the patch. Applies to Windows patches only.

" }, "MsrcNumber":{ "shape":"PatchMsrcNumber", - "documentation":"

The ID of the MSRC bulletin the patch is related to.

" + "documentation":"

The ID of the Microsoft Security Response Center (MSRC) bulletin the patch is related to. For example, MS14-045. Applies to Windows patches only.

" }, "Language":{ "shape":"PatchLanguage", "documentation":"

The language of the patch if it's language-specific.

" + }, + "AdvisoryIds":{ + "shape":"PatchAdvisoryIdList", + "documentation":"

The Advisory ID of the patch. For example, RHSA-2020:3779. Applies to Linux-based instances only.

" + }, + "BugzillaIds":{ + "shape":"PatchBugzillaIdList", + "documentation":"

The Bugzilla ID of the patch. For example, 1600646. Applies to Linux-based instances only.

" + }, + "CVEIds":{ + "shape":"PatchCVEIdList", + "documentation":"

The Common Vulnerabilities and Exposures (CVE) ID of the patch. For example, CVE-1999-0067. Applies to Linux-based instances only.

" + }, + "Name":{ + "shape":"PatchName", + "documentation":"

The name of the patch. Applies to Linux-based instances only.

" + }, + "Epoch":{ + "shape":"PatchEpoch", + "documentation":"

The epoch of the patch. For example in pkg-example-EE-20180914-2.2.amzn1.noarch, the epoch value is 20180914-2. Applies to Linux-based instances only.

" + }, + "Version":{ + "shape":"PatchVersion", + "documentation":"

The version number of the patch. For example, in example-pkg-1.710.10-2.7.abcd.x86_64, the version number is indicated by -1. Applies to Linux-based instances only.

" + }, + "Release":{ + "shape":"PatchRelease", + "documentation":"

The particular release of a patch. For example, in pkg-example-EE-20180914-2.2.amzn1.noarch, the release is 2.amaz1. Applies to Linux-based instances only.

" + }, + "Arch":{ + "shape":"PatchArch", + "documentation":"

The architecture of the patch. For example, in example-pkg-0.710.10-2.7.abcd.x86_64, the architecture is indicated by x86_64. Applies to Linux-based instances only.

" + }, + "Severity":{ + "shape":"PatchSeverity", + "documentation":"

The severity level of the patch. For example, CRITICAL or MODERATE.

" + }, + "Repository":{ + "shape":"PatchRepository", + "documentation":"

The source patch repository for the operating system and version, such as trusty-security for Ubuntu Server 14.04 LTE and focal-security for Ubuntu Server 20.04 LTE. Applies to Linux-based instances only.

" } }, "documentation":"

Represents metadata about a patch.

" @@ -11085,6 +11125,12 @@ "BLOCK" ] }, + "PatchAdvisoryId":{"type":"string"}, + "PatchAdvisoryIdList":{ + "type":"list", + "member":{"shape":"PatchAdvisoryId"} + }, + "PatchArch":{"type":"string"}, "PatchBaselineIdentity":{ "type":"structure", "members":{ @@ -11120,6 +11166,16 @@ "max":100, "min":1 }, + "PatchBugzillaId":{"type":"string"}, + "PatchBugzillaIdList":{ + "type":"list", + "member":{"shape":"PatchBugzillaId"} + }, + "PatchCVEId":{"type":"string"}, + "PatchCVEIdList":{ + "type":"list", + "member":{"shape":"PatchCVEId"} + }, "PatchClassification":{"type":"string"}, "PatchComplianceData":{ "type":"structure", @@ -11202,6 +11258,7 @@ ] }, "PatchDescription":{"type":"string"}, + "PatchEpoch":{"type":"integer"}, "PatchFailedCount":{"type":"integer"}, "PatchFilter":{ "type":"structure", @@ -11235,15 +11292,25 @@ "PatchFilterKey":{ "type":"string", "enum":[ + "ARCH", + "ADVISORY_ID", + "BUGZILLA_ID", "PATCH_SET", "PRODUCT", "PRODUCT_FAMILY", "CLASSIFICATION", + "CVE_ID", + "EPOCH", "MSRC_SEVERITY", + "NAME", "PATCH_ID", "SECTION", "PRIORITY", - "SEVERITY" + "REPOSITORY", + "RELEASE", + "SEVERITY", + "SECURITY", + "VERSION" ] }, "PatchFilterList":{ @@ -11315,6 +11382,7 @@ "PatchMissingCount":{"type":"integer"}, "PatchMsrcNumber":{"type":"string"}, "PatchMsrcSeverity":{"type":"string"}, + "PatchName":{"type":"string"}, "PatchNotApplicableCount":{"type":"integer"}, "PatchOperationType":{ "type":"string", @@ -11379,6 +11447,8 @@ "key":{"shape":"AttributeName"}, "value":{"shape":"AttributeValue"} }, + "PatchRelease":{"type":"string"}, + "PatchRepository":{"type":"string"}, "PatchRule":{ "type":"structure", "required":["PatchFilterGroup"], @@ -11510,6 +11580,7 @@ "PatchTitle":{"type":"string"}, "PatchUnreportedNotApplicableCount":{"type":"integer"}, "PatchVendor":{"type":"string"}, + "PatchVersion":{"type":"string"}, "PingStatus":{ "type":"string", "enum":[ From 23ec1a8151aa7fbd0c88df77eea14e2648d57cdb Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 15 Oct 2020 18:09:05 +0000 Subject: [PATCH 017/339] Updated endpoints.json. --- .changes/next-release/feature-AWSSDKforJavav2-e97801d.json | 5 +++++ .../amazon/awssdk/regions/internal/region/endpoints.json | 6 ++++++ 2 files changed, 11 insertions(+) create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-e97801d.json diff --git a/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json b/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json new file mode 100644 index 000000000000..a695ba6944db --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS SDK for Java v2", + "description": "Updated service endpoint metadata." +} diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json index 490046774f6b..f0fc08e006af 100644 --- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json +++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json @@ -6998,6 +6998,12 @@ } } }, + "servicediscovery" : { + "endpoints" : { + "cn-north-1" : { }, + "cn-northwest-1" : { } + } + }, "sms" : { "endpoints" : { "cn-north-1" : { }, From eeab1cd15b145e7049ea75d0a56def376ac8675c Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 15 Oct 2020 18:09:35 +0000 Subject: [PATCH 018/339] Release 2.15.8. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.8.json | 96 +++++++++++++++++++ ...ugfix-AWSLambdaMavenArchetype-9037fcf.json | 5 - .../feature-AWSBudgets-55c6003.json | 5 - ...eature-AWSCostExplorerService-6fd7128.json | 5 - ...e-AWSDatabaseMigrationService-3278537.json | 5 - .../next-release/feature-AWSGlue-7e328fe.json | 5 - .../feature-AWSGroundStation-fcf68ad.json | 5 - .../next-release/feature-AWSIoT-d4f0d62.json | 5 - .../feature-AWSSDKforJavav2-e2f5442.json | 5 - .../feature-AWSSDKforJavav2-e97801d.json | 5 - .../feature-AWSTransferFamily-aeee486.json | 5 - .../next-release/feature-AWSXRay-4389d0e.json | 5 - .../feature-AccessAnalyzer-d0bdabe.json | 5 - .../feature-AmazonMacie2-8142261.json | 5 - .../feature-AmazonRekognition-a4ef0a4.json | 5 - ...azonRelationalDatabaseService-ecfb341.json | 5 - ...AmazonSimpleSystemsManagerSSM-9fa3cb3.json | 5 - .../feature-AmazonWorkMail-00fdd2d.json | 5 - .../feature-AmazonWorkSpaces-65ef022.json | 5 - CHANGELOG.md | 71 ++++++++++++++ README.md | 8 +- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- .../serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 301 files changed, 451 insertions(+), 374 deletions(-) create mode 100644 .changes/2.15.8.json delete mode 100644 .changes/next-release/bugfix-AWSLambdaMavenArchetype-9037fcf.json delete mode 100644 .changes/next-release/feature-AWSBudgets-55c6003.json delete mode 100644 .changes/next-release/feature-AWSCostExplorerService-6fd7128.json delete mode 100644 .changes/next-release/feature-AWSDatabaseMigrationService-3278537.json delete mode 100644 .changes/next-release/feature-AWSGlue-7e328fe.json delete mode 100644 .changes/next-release/feature-AWSGroundStation-fcf68ad.json delete mode 100644 .changes/next-release/feature-AWSIoT-d4f0d62.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-e2f5442.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-e97801d.json delete mode 100644 .changes/next-release/feature-AWSTransferFamily-aeee486.json delete mode 100644 .changes/next-release/feature-AWSXRay-4389d0e.json delete mode 100644 .changes/next-release/feature-AccessAnalyzer-d0bdabe.json delete mode 100644 .changes/next-release/feature-AmazonMacie2-8142261.json delete mode 100644 .changes/next-release/feature-AmazonRekognition-a4ef0a4.json delete mode 100644 .changes/next-release/feature-AmazonRelationalDatabaseService-ecfb341.json delete mode 100644 .changes/next-release/feature-AmazonSimpleSystemsManagerSSM-9fa3cb3.json delete mode 100644 .changes/next-release/feature-AmazonWorkMail-00fdd2d.json delete mode 100644 .changes/next-release/feature-AmazonWorkSpaces-65ef022.json diff --git a/.changes/2.15.8.json b/.changes/2.15.8.json new file mode 100644 index 000000000000..61104ed6bd0a --- /dev/null +++ b/.changes/2.15.8.json @@ -0,0 +1,96 @@ +{ + "version": "2.15.8", + "date": "2020-10-15", + "entries": [ + { + "type": "bugfix", + "category": "AWS Lambda Maven Archetype", + "description": "Fixed an issue where archetype generation failed with latest maven-archetype-plugin. See [#1981](https://github.com/aws/aws-sdk-java-v2/issues/1981)" + }, + { + "type": "feature", + "category": "Amazon Rekognition", + "description": "This SDK Release introduces new API (DetectProtectiveEquipment) for Amazon Rekognition. This release also adds ServiceQuotaExceeded exception to Amazon Rekognition IndexFaces API." + }, + { + "type": "feature", + "category": "AWS Ground Station", + "description": "Adds error message attribute to DescribeContact DataflowDetails" + }, + { + "type": "feature", + "category": "AWS Database Migration Service", + "description": "When creating Endpoints, Replication Instances, and Replication Tasks, the feature provides you the option to specify friendly name to the resources." + }, + { + "type": "feature", + "category": "Amazon WorkSpaces", + "description": "Documentation updates for WorkSpaces" + }, + { + "type": "feature", + "category": "Amazon Simple Systems Manager (SSM)", + "description": "This Patch Manager release now supports searching for available packages from Amazon Linux and Amazon Linux 2 via the DescribeAvailablePatches API." + }, + { + "type": "feature", + "category": "Amazon WorkMail", + "description": "Add CreateOrganization and DeleteOrganization API operations." + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "description": "Add support for plus (+) character in profile names" + }, + { + "type": "feature", + "category": "AWS Transfer Family", + "description": "Add support to associate VPC Security Groups at server creation." + }, + { + "type": "feature", + "category": "AWS Glue", + "description": "API Documentation updates for Glue Get-Plan API" + }, + { + "type": "feature", + "category": "AWS Cost Explorer Service", + "description": "This release improves email validation for subscriptions on the SDK endpoints." + }, + { + "type": "feature", + "category": "AWS IoT", + "description": "Add new variable, lastStatusChangeDate, to DescribeDomainConfiguration API" + }, + { + "type": "feature", + "category": "AWS X-Ray", + "description": "Enhancing CreateGroup, UpdateGroup, GetGroup and GetGroups APIs to support configuring X-Ray Insights Notifications. Adding TraceLimit information into X-Ray BatchGetTraces API response." + }, + { + "type": "feature", + "category": "Amazon Relational Database Service", + "description": "Return tags for all resources in the output of DescribeDBInstances, DescribeDBSnapshots, DescribeDBClusters, and DescribeDBClusterSnapshots API operations." + }, + { + "type": "feature", + "category": "AWS Budgets", + "description": "This release introduces AWS Budgets Actions, allowing you to define an explicit response(or set of responses) to take when your budget exceeds it's action threshold." + }, + { + "type": "feature", + "category": "Access Analyzer", + "description": "This release adds support for the ApplyArchiveRule api in IAM Access Analyzer. The ApplyArchiveRule api allows users to apply an archive rule retroactively to existing findings in an analyzer." + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "description": "Updated service endpoint metadata." + }, + { + "type": "feature", + "category": "Amazon Macie 2", + "description": "This release of the Amazon Macie API adds support for pausing and resuming classification jobs. Also, sensitive data findings now include location data for up to 15 occurrences of sensitive data." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/bugfix-AWSLambdaMavenArchetype-9037fcf.json b/.changes/next-release/bugfix-AWSLambdaMavenArchetype-9037fcf.json deleted file mode 100644 index 2469ca1874ae..000000000000 --- a/.changes/next-release/bugfix-AWSLambdaMavenArchetype-9037fcf.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "AWS Lambda Maven Archetype", - "type": "bugfix", - "description": "Fixed an issue where archetype generation failed with latest maven-archetype-plugin. See [#1981](https://github.com/aws/aws-sdk-java-v2/issues/1981)" -} diff --git a/.changes/next-release/feature-AWSBudgets-55c6003.json b/.changes/next-release/feature-AWSBudgets-55c6003.json deleted file mode 100644 index 5d4897a2d3f1..000000000000 --- a/.changes/next-release/feature-AWSBudgets-55c6003.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS Budgets", - "description": "This release introduces AWS Budgets Actions, allowing you to define an explicit response(or set of responses) to take when your budget exceeds it's action threshold." -} diff --git a/.changes/next-release/feature-AWSCostExplorerService-6fd7128.json b/.changes/next-release/feature-AWSCostExplorerService-6fd7128.json deleted file mode 100644 index 0dc175d616f2..000000000000 --- a/.changes/next-release/feature-AWSCostExplorerService-6fd7128.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS Cost Explorer Service", - "description": "This release improves email validation for subscriptions on the SDK endpoints." -} diff --git a/.changes/next-release/feature-AWSDatabaseMigrationService-3278537.json b/.changes/next-release/feature-AWSDatabaseMigrationService-3278537.json deleted file mode 100644 index ef1daa645107..000000000000 --- a/.changes/next-release/feature-AWSDatabaseMigrationService-3278537.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS Database Migration Service", - "description": "When creating Endpoints, Replication Instances, and Replication Tasks, the feature provides you the option to specify friendly name to the resources." -} diff --git a/.changes/next-release/feature-AWSGlue-7e328fe.json b/.changes/next-release/feature-AWSGlue-7e328fe.json deleted file mode 100644 index 70688ccfd2a2..000000000000 --- a/.changes/next-release/feature-AWSGlue-7e328fe.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS Glue", - "description": "API Documentation updates for Glue Get-Plan API" -} diff --git a/.changes/next-release/feature-AWSGroundStation-fcf68ad.json b/.changes/next-release/feature-AWSGroundStation-fcf68ad.json deleted file mode 100644 index a064a5e126ad..000000000000 --- a/.changes/next-release/feature-AWSGroundStation-fcf68ad.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS Ground Station", - "description": "Adds error message attribute to DescribeContact DataflowDetails" -} diff --git a/.changes/next-release/feature-AWSIoT-d4f0d62.json b/.changes/next-release/feature-AWSIoT-d4f0d62.json deleted file mode 100644 index 2da0c58db2f6..000000000000 --- a/.changes/next-release/feature-AWSIoT-d4f0d62.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS IoT", - "description": "Add new variable, lastStatusChangeDate, to DescribeDomainConfiguration API" -} diff --git a/.changes/next-release/feature-AWSSDKforJavav2-e2f5442.json b/.changes/next-release/feature-AWSSDKforJavav2-e2f5442.json deleted file mode 100644 index 40d8e97a1f8a..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-e2f5442.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS SDK for Java v2", - "description": "Add support for plus (+) character in profile names" -} diff --git a/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json b/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json deleted file mode 100644 index a695ba6944db..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS SDK for Java v2", - "description": "Updated service endpoint metadata." -} diff --git a/.changes/next-release/feature-AWSTransferFamily-aeee486.json b/.changes/next-release/feature-AWSTransferFamily-aeee486.json deleted file mode 100644 index a717d9593121..000000000000 --- a/.changes/next-release/feature-AWSTransferFamily-aeee486.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS Transfer Family", - "description": "Add support to associate VPC Security Groups at server creation." -} diff --git a/.changes/next-release/feature-AWSXRay-4389d0e.json b/.changes/next-release/feature-AWSXRay-4389d0e.json deleted file mode 100644 index 4b948b3cbb75..000000000000 --- a/.changes/next-release/feature-AWSXRay-4389d0e.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS X-Ray", - "description": "Enhancing CreateGroup, UpdateGroup, GetGroup and GetGroups APIs to support configuring X-Ray Insights Notifications. Adding TraceLimit information into X-Ray BatchGetTraces API response." -} diff --git a/.changes/next-release/feature-AccessAnalyzer-d0bdabe.json b/.changes/next-release/feature-AccessAnalyzer-d0bdabe.json deleted file mode 100644 index d1a4da713cfd..000000000000 --- a/.changes/next-release/feature-AccessAnalyzer-d0bdabe.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "Access Analyzer", - "description": "This release adds support for the ApplyArchiveRule api in IAM Access Analyzer. The ApplyArchiveRule api allows users to apply an archive rule retroactively to existing findings in an analyzer." -} diff --git a/.changes/next-release/feature-AmazonMacie2-8142261.json b/.changes/next-release/feature-AmazonMacie2-8142261.json deleted file mode 100644 index 253bf04bca1a..000000000000 --- a/.changes/next-release/feature-AmazonMacie2-8142261.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Macie 2", - "description": "This release of the Amazon Macie API adds support for pausing and resuming classification jobs. Also, sensitive data findings now include location data for up to 15 occurrences of sensitive data." -} diff --git a/.changes/next-release/feature-AmazonRekognition-a4ef0a4.json b/.changes/next-release/feature-AmazonRekognition-a4ef0a4.json deleted file mode 100644 index 0520a4d50071..000000000000 --- a/.changes/next-release/feature-AmazonRekognition-a4ef0a4.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Rekognition", - "description": "This SDK Release introduces new API (DetectProtectiveEquipment) for Amazon Rekognition. This release also adds ServiceQuotaExceeded exception to Amazon Rekognition IndexFaces API." -} diff --git a/.changes/next-release/feature-AmazonRelationalDatabaseService-ecfb341.json b/.changes/next-release/feature-AmazonRelationalDatabaseService-ecfb341.json deleted file mode 100644 index 9a6017ef36e2..000000000000 --- a/.changes/next-release/feature-AmazonRelationalDatabaseService-ecfb341.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Relational Database Service", - "description": "Return tags for all resources in the output of DescribeDBInstances, DescribeDBSnapshots, DescribeDBClusters, and DescribeDBClusterSnapshots API operations." -} diff --git a/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-9fa3cb3.json b/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-9fa3cb3.json deleted file mode 100644 index 75070d911b62..000000000000 --- a/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-9fa3cb3.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Simple Systems Manager (SSM)", - "description": "This Patch Manager release now supports searching for available packages from Amazon Linux and Amazon Linux 2 via the DescribeAvailablePatches API." -} diff --git a/.changes/next-release/feature-AmazonWorkMail-00fdd2d.json b/.changes/next-release/feature-AmazonWorkMail-00fdd2d.json deleted file mode 100644 index ac3eb9ab4ca4..000000000000 --- a/.changes/next-release/feature-AmazonWorkMail-00fdd2d.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "Amazon WorkMail", - "description": "Add CreateOrganization and DeleteOrganization API operations." -} diff --git a/.changes/next-release/feature-AmazonWorkSpaces-65ef022.json b/.changes/next-release/feature-AmazonWorkSpaces-65ef022.json deleted file mode 100644 index fd7e04377a80..000000000000 --- a/.changes/next-release/feature-AmazonWorkSpaces-65ef022.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "Amazon WorkSpaces", - "description": "Documentation updates for WorkSpaces" -} diff --git a/CHANGELOG.md b/CHANGELOG.md index 65c8d3ba4908..69f7fc893069 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,73 @@ +# __2.15.8__ __2020-10-15__ +## __AWS Budgets__ + - ### Features + - This release introduces AWS Budgets Actions, allowing you to define an explicit response(or set of responses) to take when your budget exceeds it's action threshold. + +## __AWS Cost Explorer Service__ + - ### Features + - This release improves email validation for subscriptions on the SDK endpoints. + +## __AWS Database Migration Service__ + - ### Features + - When creating Endpoints, Replication Instances, and Replication Tasks, the feature provides you the option to specify friendly name to the resources. + +## __AWS Glue__ + - ### Features + - API Documentation updates for Glue Get-Plan API + +## __AWS Ground Station__ + - ### Features + - Adds error message attribute to DescribeContact DataflowDetails + +## __AWS IoT__ + - ### Features + - Add new variable, lastStatusChangeDate, to DescribeDomainConfiguration API + +## __AWS Lambda Maven Archetype__ + - ### Bugfixes + - Fixed an issue where archetype generation failed with latest maven-archetype-plugin. See [#1981](https://github.com/aws/aws-sdk-java-v2/issues/1981) + +## __AWS SDK for Java v2__ + - ### Features + - Add support for plus (+) character in profile names + - Updated service endpoint metadata. + +## __AWS Transfer Family__ + - ### Features + - Add support to associate VPC Security Groups at server creation. + +## __AWS X-Ray__ + - ### Features + - Enhancing CreateGroup, UpdateGroup, GetGroup and GetGroups APIs to support configuring X-Ray Insights Notifications. Adding TraceLimit information into X-Ray BatchGetTraces API response. + +## __Access Analyzer__ + - ### Features + - This release adds support for the ApplyArchiveRule api in IAM Access Analyzer. The ApplyArchiveRule api allows users to apply an archive rule retroactively to existing findings in an analyzer. + +## __Amazon Macie 2__ + - ### Features + - This release of the Amazon Macie API adds support for pausing and resuming classification jobs. Also, sensitive data findings now include location data for up to 15 occurrences of sensitive data. + +## __Amazon Rekognition__ + - ### Features + - This SDK Release introduces new API (DetectProtectiveEquipment) for Amazon Rekognition. This release also adds ServiceQuotaExceeded exception to Amazon Rekognition IndexFaces API. + +## __Amazon Relational Database Service__ + - ### Features + - Return tags for all resources in the output of DescribeDBInstances, DescribeDBSnapshots, DescribeDBClusters, and DescribeDBClusterSnapshots API operations. + +## __Amazon Simple Systems Manager (SSM)__ + - ### Features + - This Patch Manager release now supports searching for available packages from Amazon Linux and Amazon Linux 2 via the DescribeAvailablePatches API. + +## __Amazon WorkMail__ + - ### Features + - Add CreateOrganization and DeleteOrganization API operations. + +## __Amazon WorkSpaces__ + - ### Features + - Documentation updates for WorkSpaces + # __2.15.7__ __2020-10-09__ ## __AWS Amplify__ - ### Features @@ -8777,3 +8847,4 @@ ## __AWS SDK for Java v2__ - ### Features - Initial release of the AWS SDK for Java v2. See our [blog post](https://aws.amazon.com/blogs/developer/aws-sdk-for-java-2-0-developer-preview) for information about this new major veresion. This release is considered a developer preview and is not intended for production use cases. + diff --git a/README.md b/README.md index 6d1f6bc4bcb9..fd9f8c451137 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.7 + 2.15.8 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.7 + 2.15.8 software.amazon.awssdk s3 - 2.15.7 + 2.15.8 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.7 + 2.15.8 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 4cbb805e531b..1815ff1d49c0 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index bde44685ed5d..1508f3c418ac 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 6ba53e8f4e66..ee71f74b37d8 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.15.8-SNAPSHOT + 2.15.8 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index aff1190450c5..5dedf348d36b 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index f29d383a2061..fee4f40af205 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.8-SNAPSHOT + 2.15.8 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 7d6f1936123f..e494ddbce215 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.8-SNAPSHOT + 2.15.8 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 3477de2cc99c..3bda35711286 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.15.8-SNAPSHOT + 2.15.8 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 84f4bb764c41..13606353e0a0 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.8-SNAPSHOT + 2.15.8 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 980a88f62b7c..1adb659bac5f 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.15.8-SNAPSHOT + 2.15.8 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 99d6d095e68d..38c1ed16c51b 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.8-SNAPSHOT + 2.15.8 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index d21975cbe0e6..3bb3cdf116cf 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index be2d10685924..3a24f99bffa7 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 226f92c1e74a..58c9a6b3be92 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.8-SNAPSHOT + 2.15.8 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index b6e26e17fc1e..a5f007323204 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.8-SNAPSHOT + 2.15.8 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 0806742e27f3..1e9d84c49af2 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 393ae2d03ed6..170b979c6d88 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 960072631958..09e14bf621a2 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.8-SNAPSHOT + 2.15.8 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 0187b7d0d6dd..2e6b453122f5 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.15.8-SNAPSHOT + 2.15.8 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 764220170ad6..52d3d6e5a3d0 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 1aa0196b5af0..d5b5b395efa1 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.15.8-SNAPSHOT + 2.15.8 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index e6622d945459..bf424c385e18 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.15.8-SNAPSHOT + 2.15.8 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index da83e1fe423a..52320aff8b50 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.15.8-SNAPSHOT + 2.15.8 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 9c460ebe47f9..20232983f7b1 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index d150071a6f1a..36fac0ade7ae 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 4041def88da3..460c83f00182 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.8-SNAPSHOT + 2.15.8 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 31b61bd56066..728e6092478a 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.8-SNAPSHOT + 2.15.8 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index d9ba9dc95fac..620fac28e937 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.15.8-SNAPSHOT + 2.15.8 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 8ce5d46513bb..35ddb484cfb3 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.15.8-SNAPSHOT + 2.15.8 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index f5388e645d3f..0833c12e52e8 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.15.8-SNAPSHOT + 2.15.8 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 90df8ad1e13f..ceeef530218d 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.15.8-SNAPSHOT + 2.15.8 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 09be585f954a..edf1fa95d441 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 56d270086b17..896400c67b62 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.15.8-SNAPSHOT + 2.15.8 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 2e1abab0f0f0..6c231d90cf58 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.15.8-SNAPSHOT + 2.15.8 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index aae0720a20f6..f94bed296bcd 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.8-SNAPSHOT + 2.15.8 metric-publishers diff --git a/pom.xml b/pom.xml index 25ad3eb83a6c..eb01f96b6dfe 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.8-SNAPSHOT + 2.15.8 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 4caf6f4a626e..a71f094d183b 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.8-SNAPSHOT + 2.15.8 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index d3b11096e98d..521c0b856b53 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.15.8-SNAPSHOT + 2.15.8 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 97ee4c735df6..44d260a4d0bf 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.8-SNAPSHOT + 2.15.8 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 4b81f5ec9e5a..e9daee348431 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index bb19f12a9212..e1da79f16476 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 2815221e2f8f..6fc2fc0da871 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 9d40e7a00fcb..8a940b01efe8 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 706b834c2512..7dd14a6ecd36 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 7a690b617b5b..235f23371acb 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 4eff9d3ec8d8..73423b4b10ec 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index e2dc0f6c8658..39001c68a9cc 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 81b82c652032..d3cf900aaad3 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 3f68bc6d19f5..d0b0bcfd2cc2 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 40cfecdb20dc..06561aea8b57 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index b08bdeee9fbc..473086ee7d22 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 1113a8d5849d..d207c00569dd 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index c93c8e13e1d4..8c0a4661e907 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 1f1ac2651002..b8671004c16f 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 5e766e990745..d9446417b11e 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index bbb9332b7169..ba237113d777 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index cbad073fd44c..7571e9fb9be6 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 2c244b5f5fc0..507d8512bf32 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 7a2d0c2e290a..276fc6b94b98 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index ba34c82fa40f..b3c35ae52056 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 6b3b9839f07f..1d9870bf1d42 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 22c98724109f..7dc536d7c0fe 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index defe837ae969..9ab121fc8c99 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 50467690bb07..80d7de6ff27b 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 22f5a43b3d4a..6234192953a6 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 9b1571ee0aa2..283ee1a6b757 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 4c36c08ef937..f36c18871235 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 45eb0aad2831..1f6c145d5f2f 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 657adc497f88..2b8fac348bf2 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 0018c3da83a1..27fcbcf720df 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 3ec9a4eb15b0..5ca1f05fafc5 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 4f1139c0bb5f..eb731c043829 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 51a0099944af..eda97ed624fb 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 1e1c8f0ebc60..3f33ca20fecb 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 0e679e2715ca..8e5f2c32702d 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 8c451b66d941..8dea4ffc1b6c 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 7d36d6aad4f2..327249e0487a 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index ac563bd83325..9da8e288a51b 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index e9bf111b26da..f8101a6dbf02 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index d3b552f227da..9f5200a297ee 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 26be5b231991..204811c8ecdf 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 627f61647c39..e4115ebe5a21 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 0161c102db40..ae522d931dd9 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 1772c3a07942..b12a643ed890 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 0cb185539bda..5935c194f908 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index a7958cebcdf0..79bf67b58d2d 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index d653575c53bb..af3a69782c18 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 39d08ce9ed23..84473060cc9e 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 754d66463d50..4bff22778c4c 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 2272911b6600..66215e672c26 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index d473936afbde..33cc701d674a 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 323583b86d19..fda4ff0a1319 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index da02f7d810d6..7c3b8db99a0f 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index ea00c89aa536..5f2398a27451 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 69c656ecab2f..d2386af2ec5f 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index d5fa643c4052..ad2b8c793a88 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 6a9bef422796..7251331c56dc 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index f1ed1a5f15fc..84d420bf5845 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 1ba202c4ead3..81739730a9fa 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 424b2c74ac62..6674ca5c9f7c 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index d902de431384..28e796211fbd 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index eb048b3a5278..7cfcd2af17d8 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 38cc5500622b..6638d3a887bb 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 5801a9824310..20d46fe175ad 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index b0ba261f860a..50cf89f5ee2c 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index ad22b9aa9ef8..f20f7f5f403a 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index a0bd679497e4..42520c9d3c9e 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 11d11eb800f3..722a74ae7027 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 64e861ff438e..d2f380ce79d2 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 96e44dd4f99d..e3b81324b6ce 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 9f33c74888fa..e828afb187e0 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index a0564d1674a8..5d720a00f946 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 5b08c2d54041..c40bca8c2961 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index d1ebf1bb3065..42685be36489 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 7bb60dbbddb1..18a69116d84b 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 7d6554cb8a6d..797e8954720e 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index ace224070889..109da6cf776e 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 856fd80a9fda..f20913e842e0 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index a72d291222a8..3316df36e71f 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 9ea2a9f49aee..24c645e88604 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 625f3307a518..084cd55b7b82 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 2ce82f4a999b..4264b8d31411 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 8ceb2f3139ef..3436e37857f3 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 2c1176541d46..4017806111ab 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 989af713fa35..36d545d93b7f 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 092805faaafa..d7262b729a9d 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 5bf14c94b4ee..b7222bdd74b2 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 1bfa79507fbc..dd266b0e7a26 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 2637799130d2..500a9e65300b 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 747a0283e1d6..e266bd9f45de 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 60b73d43c5f2..37aeeea63d84 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 08544e5d0725..06c00267028d 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 0813bfb3a54c..b32eb56e1c45 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 556d2876538c..26f441046e72 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 3607e93fe5fc..3d3a28a36b6b 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index c0aa71e2b166..2d7dd447162a 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index f0ec49bb487d..14704cf99a25 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index dac3825aae31..dbde80a09dc7 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 0e19fcabfc1d..026f3bcd7dda 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 3068e5d65c7c..97d039b06b08 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 4aaf3619a799..420609177dfc 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index ea6fd1a64435..979cd2213ec2 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 259f97310a98..4dd44e4916fd 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 5143e7786301..cda177f6dc79 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index c262efe3f075..6a4fd5063808 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index e434cbcca33b..76c1259d8005 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 0a7dcb2ed13b..f7eaac922d1a 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index c778eae1fa83..4c78dfbf0e94 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index bdc0be79888e..b48de06233d9 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 662398a4fa20..51ac97c1e987 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index d377c1141c99..e32ba51217a0 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 9ff6865d030b..44e1e5a5befb 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 2e932d0f13b0..bac7ca8e7d17 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index d63ab356406c..4c37a236d429 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index a1e46a765d21..c2b7228588c7 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 2880e5ec70b2..684d6d5a22ce 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index d48f6ed1b877..826ff6b6f4c1 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 72f65860e8c3..f3910bf8bcc0 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 69fa17245ad0..da1a5784b7d5 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index ffac07ddab1a..50446b8f218d 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index c5aea2a57203..566b39a46330 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index d62364f4a883..a901af503dda 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index da1daab8fd29..cbf363dcb248 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 82405b7ff33c..4783af43b0a8 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 996dd00fbe25..860eea8e15a9 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 081be30bdfca..9681dd57d853 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index ad5bed0c6721..81a5c1fb3469 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 2763f9b4eb75..b152a6fd1af1 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 90c63061d89c..942f333d1a51 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index f8b0a27dd6d4..852bb28c41ae 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 9426ccc4edbb..4865ae359b90 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index c192c7b5dfd0..96ca66c99397 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index c22259bf915e..0671e6470cb5 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index e627adf142db..a1c12afae61a 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index a7b7f13f8590..a7fef97e2328 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index b8bde93dd59b..d052c4a28eb3 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index be769284a0ad..63fd05731690 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 4dbc8058dd26..ef988aba4b95 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 0c8aa0fcecc6..7c5abe5648f4 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 845a6b43e1c4..3582aa6140d4 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 3dfd499cb392..8e71e2d37a81 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 2843279bafcf..af5bf1b94640 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 9882ed739507..ca28925fd04c 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 43d7bb95f9eb..740e0d760f9d 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 325f12a3cf93..cfc2da122351 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index bb50e4872289..f52ad3ba5e8e 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 770c32bbcfca..864cb3f9bab5 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 3104fc4241e4..685a43eae354 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index d84e2150b012..933b110315b6 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 1941b8d53a6f..54dea03fdd02 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 3f6a8442fd36..7de26d234b34 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 2b278ed1211d..f7efa9c95a53 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 8263989edd6d..ad2560b78365 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 3d6b51b56d4d..71cc80587a0d 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index e7d035946510..fcbdc1808525 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 1f5e71a0470a..704e31eb754a 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 44fcc140c2d5..6ac6d019f488 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 9430ccf2d809..f760f4b2a007 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 8e2bd766ceed..12f50a5fe3a2 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 2ef36857d28b..da6ec916b2fa 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index f09e1b5ff0fb..367de4ca9052 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 6baf708157a5..8daa432df441 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index e70ad1f7c35f..fbde016aa672 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 1bf7dac494f5..a7efa4a12d6a 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index bb2a2c91de0b..ac064f57824c 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 8d055891aaa0..2e7c28b68c4c 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 248d4ddc318c..e3af8006c7e3 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.8-SNAPSHOT + 2.15.8 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index c34bad85edc4..40fdc52320fa 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index b720735298a1..8e3be2d51499 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index f7cda1e22698..fb1ff0a3c8b3 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index bf39cbb9fcf0..e8d88ded41ba 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index d62f48dd3b38..5e06fa907691 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index ae28ed9db696..3376fb5511c9 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index acd14acf88ae..5786363f46de 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 0f638e6bd945..d383b59f6553 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 1d2ef9e57b4d..40d3d4bbf354 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index a853b3811bff..9a97380ee4b9 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index b233d603c795..69a3206e97ed 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 646135f6c1e3..e5910b547a93 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 00061f864ef7..f350b33bdcee 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index f23769975d9e..ff0c8c7064a8 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index f228e232cebe..5f61c9fde210 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 1847b28f6469..c6cfc411d231 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index ce8d0f03fa83..ad0fd74026a9 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index bf081f0508fe..4354d28cd622 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 145582c502c8..2bb27400823e 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 6a40d5419410..57714f5c56a6 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index dd5115ed3736..0a47246cbcff 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 23bb12b5920b..5dbb89b06aad 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index bc6e8e5ea662..7aff381e2a5a 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 921f6ffe7b8e..7cb0021d8681 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index f78957ed02ee..b7cbfa5bccbd 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 984146e922f9..a6196bac77d7 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index d9d993d306bc..6418a4efa01a 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 2838578ee1c1..a6e816389aeb 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 780081529374..5af5e2c97475 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 6de800a4ac36..c93af6949415 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 26ec90ac48a4..56151e69b425 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index e994da46667f..77a731998f3b 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 051ea2cd8e5c..750432fe154d 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 9ee14930e468..e6c78a320b75 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index e26e5b3b4959..b6b43ead2221 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 198c16ae2ca2..5e2ed9b788dd 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 983fe22ab90a..a5ffb66fe960 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 9af07065ba80..eb302a9b6c9b 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 167f0b60662c..b23f16c2a677 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index aaaa6df1b2c7..bd2d5715fe04 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index f28b341ce3d2..aafaeb0685df 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index d6614b9993e8..8dc8f6ddfa35 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 348ed6558034..40405114f68a 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index a3e40ae52cf1..d665c4cf5ed9 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 638c5dbd7467..888aa3fa7bc8 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 3a59ed65059d..e82fb093cae4 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 29b9b3e3b895..f7b0d571bf67 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 8bedefb0314c..82fe1a76cef3 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index c1cb81e5a2bf..6377387b20c4 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 6967a499a635..4d141c86d04e 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 1465f0b948b5..e81ad5320127 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 41fdcf834b80..b5b23185455c 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 6172af598a28..3308fc1fefc4 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 710aece7c4c1..44733c29731a 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 641b1bee3828..0cb2329d0297 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index fc9defd889f7..8e11103d1c54 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 549ff5bd9b4d..da1dc9285f79 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index b5d0a2a7484f..7950ba141dce 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 0417598ecce5..cf3fa3a2eb39 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index f3789f30d196..f5e3c21b59bd 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index db471076938e..1cf8528f1789 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 697b994119c2..ffab04aac9ac 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 4d6eb5d32db5..734e0cbd4d20 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8-SNAPSHOT + 2.15.8 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 914fe31f3c22..8fd8a97aefa6 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.15.8-SNAPSHOT + 2.15.8 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 2d835a931eff..cf97515f2c3e 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.15.8-SNAPSHOT + 2.15.8 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index c9983cdd8eee..3bd58b831785 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.15.8-SNAPSHOT + 2.15.8 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 655c08ae186b..25f035664b18 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.15.8-SNAPSHOT + 2.15.8 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 6b4f1a3f5fb0..fcb674544639 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.15.8-SNAPSHOT + 2.15.8 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 9bd39cc92701..8dfb6210eafe 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.8-SNAPSHOT + 2.15.8 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 314f81d61a2e..e601c8c26c75 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.15.8-SNAPSHOT + 2.15.8 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 6098ec84d25d..e358affb177d 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.15.8-SNAPSHOT + 2.15.8 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 261e996cc151..4e6feede9389 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.15.8-SNAPSHOT + 2.15.8 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 586f053ae606..1fe281f281dc 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.15.8-SNAPSHOT + 2.15.8 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 915229fa5bca..a60c60147f3b 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.8-SNAPSHOT + 2.15.8 4.0.0 From c55b6b6277fff3ee5871e9365796e41c2d0ff4fe Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 15 Oct 2020 18:34:34 +0000 Subject: [PATCH 019/339] Update to next snapshot version: 2.15.9-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 280 files changed, 280 insertions(+), 280 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 1815ff1d49c0..dcfd0bb08eb6 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 1508f3c418ac..dfeae9c0d322 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index ee71f74b37d8..0ea2002bce62 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.15.8 + 2.15.9-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 5dedf348d36b..7be12f9f23a5 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index fee4f40af205..047dc457ba21 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.8 + 2.15.9-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index e494ddbce215..2eefc4cb8e40 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.8 + 2.15.9-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 3bda35711286..721d847c4b01 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.15.8 + 2.15.9-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 13606353e0a0..beb930e4a69c 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.8 + 2.15.9-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 1adb659bac5f..daf243642dbf 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.15.8 + 2.15.9-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 38c1ed16c51b..0e9a94bd0890 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.8 + 2.15.9-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 3bb3cdf116cf..70bcd593228c 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 3a24f99bffa7..0236a227d0c0 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 58c9a6b3be92..8162b63355ca 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.8 + 2.15.9-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index a5f007323204..8b2ff7eb3717 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.8 + 2.15.9-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 1e9d84c49af2..e20729a1bbbb 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 170b979c6d88..bf85cecfb50d 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 09e14bf621a2..0f03ad85c4d8 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.8 + 2.15.9-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 2e6b453122f5..d0de64c99878 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.15.8 + 2.15.9-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 52d3d6e5a3d0..d15a218f28a1 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index d5b5b395efa1..ec7e564162b4 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.15.8 + 2.15.9-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index bf424c385e18..987efce34d81 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.15.8 + 2.15.9-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 52320aff8b50..f9a0a01c4dab 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.15.8 + 2.15.9-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 20232983f7b1..0bbe22128a15 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 36fac0ade7ae..6068553ebb8c 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 460c83f00182..5385988f612a 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.8 + 2.15.9-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 728e6092478a..ccc7ae5576e1 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.8 + 2.15.9-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 620fac28e937..2f7bb27e2881 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.15.8 + 2.15.9-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index 35ddb484cfb3..22df25b67fab 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.15.8 + 2.15.9-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 0833c12e52e8..be59089ca8b3 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.15.8 + 2.15.9-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index ceeef530218d..0a7dd38ed8d8 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.15.8 + 2.15.9-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index edf1fa95d441..4b89755e484e 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 896400c67b62..069d7da3be55 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.15.8 + 2.15.9-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 6c231d90cf58..2d9ec8cd8021 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.15.8 + 2.15.9-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index f94bed296bcd..84e3cda50bc1 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.8 + 2.15.9-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index eb01f96b6dfe..63e85de161ce 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.8 + 2.15.9-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index a71f094d183b..80ead5bc94fe 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.8 + 2.15.9-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 521c0b856b53..cee6f96d34bf 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.15.8 + 2.15.9-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 44d260a4d0bf..c951f3879326 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.8 + 2.15.9-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index e9daee348431..ed6ffd047153 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index e1da79f16476..1d5d43c5a382 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 6fc2fc0da871..e3a045008b7f 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 8a940b01efe8..7f66c05d8bf4 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 7dd14a6ecd36..76c32fb3c0b0 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 235f23371acb..7cadddfb79fd 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 73423b4b10ec..ed99387eec40 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 39001c68a9cc..4a31624fcbf3 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index d3cf900aaad3..8123df52a1b7 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index d0b0bcfd2cc2..cf8e8d24c6ba 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 06561aea8b57..385dd36dc195 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 473086ee7d22..8cbbdbbf18f3 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index d207c00569dd..841e8bd07672 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 8c0a4661e907..ef806f389edd 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index b8671004c16f..7a835a433ba5 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index d9446417b11e..2a9d0dea5d31 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index ba237113d777..51c91ad30be8 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 7571e9fb9be6..fbae87beb4d5 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 507d8512bf32..b1c19e49db2d 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 276fc6b94b98..ad5ff6cad950 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index b3c35ae52056..263fb87355d5 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 1d9870bf1d42..f59f310ff61d 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 7dc536d7c0fe..f3a1f8431223 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 9ab121fc8c99..e9b2ff6da826 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 80d7de6ff27b..a96e99b77ce1 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 6234192953a6..25c59800fafd 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 283ee1a6b757..5a6a9d8f9ec0 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index f36c18871235..44d23d98c975 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 1f6c145d5f2f..806bce3621bf 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 2b8fac348bf2..5454e7f9d8bc 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 27fcbcf720df..7d741ff77909 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 5ca1f05fafc5..35e6e6b44f59 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index eb731c043829..9936917931b1 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index eda97ed624fb..257bdc3a50cc 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 3f33ca20fecb..0dbea0c9da7c 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 8e5f2c32702d..337d7089185b 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 8dea4ffc1b6c..bdb374cfa6f0 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 327249e0487a..4f923f60db17 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 9da8e288a51b..5c357af428a3 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index f8101a6dbf02..3abfe8f406a2 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 9f5200a297ee..7a4aa981cf7d 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 204811c8ecdf..e9ca8ee04cc1 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index e4115ebe5a21..740817aec205 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index ae522d931dd9..5257c8f4ce0e 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index b12a643ed890..19034530f4b8 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 5935c194f908..d17250ccb27b 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 79bf67b58d2d..e9fddf55a37a 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index af3a69782c18..66fa8acb6cc4 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 84473060cc9e..0e538829448b 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 4bff22778c4c..39abf43cf855 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 66215e672c26..9d9ae561471f 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 33cc701d674a..81cc784b143e 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index fda4ff0a1319..f5d02a3d5d92 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 7c3b8db99a0f..d7d3ee89be1b 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 5f2398a27451..1967b47504c3 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index d2386af2ec5f..7a3023b8df6f 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index ad2b8c793a88..144f09259716 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 7251331c56dc..9def2034b23f 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 84d420bf5845..998d4a420f86 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 81739730a9fa..d89e14e44439 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 6674ca5c9f7c..74652eee9699 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 28e796211fbd..00848e91b9bb 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 7cfcd2af17d8..2c5137253e53 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 6638d3a887bb..ec00763bf61f 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 20d46fe175ad..b15c49d4e537 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 50cf89f5ee2c..bdf7c3cc11a9 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index f20f7f5f403a..0f665d49ad27 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 42520c9d3c9e..2386ee556fa4 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 722a74ae7027..f0ea82135662 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index d2f380ce79d2..e080de5382f5 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index e3b81324b6ce..ed505a289a32 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index e828afb187e0..d4f3f8491e69 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 5d720a00f946..0157a61fa14b 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index c40bca8c2961..574f24d848b6 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 42685be36489..98c7464a17d8 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 18a69116d84b..d300f9050489 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 797e8954720e..8f3644a4b437 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 109da6cf776e..61a3dc4e4c5b 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index f20913e842e0..f41c0491af7a 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 3316df36e71f..19a8f01b1664 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 24c645e88604..16d7f8d32439 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 084cd55b7b82..b17261758b7e 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 4264b8d31411..268b9f504630 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 3436e37857f3..1e39d27ac0ed 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 4017806111ab..d70d876580f3 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 36d545d93b7f..f71def982508 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index d7262b729a9d..76a8abfcef10 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index b7222bdd74b2..262d60ee8367 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index dd266b0e7a26..b688a0749e02 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 500a9e65300b..8995c8d9e4b9 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index e266bd9f45de..d388b8c4b5b7 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 37aeeea63d84..c8a5530969fc 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 06c00267028d..781042191261 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index b32eb56e1c45..dac58be35d16 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 26f441046e72..19487ffe2b17 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 3d3a28a36b6b..83d46386c5ef 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 2d7dd447162a..66984edb6f1c 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 14704cf99a25..ed5d81ff1532 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index dbde80a09dc7..46bcfc82f995 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 026f3bcd7dda..307812c4fea8 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 97d039b06b08..2cec644fb7b8 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 420609177dfc..32721f83e29c 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 979cd2213ec2..2760cffce35c 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 4dd44e4916fd..6f9869aca96d 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index cda177f6dc79..c27e14212ba5 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 6a4fd5063808..ee3e00e4a9d4 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 76c1259d8005..0dc512766f3d 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index f7eaac922d1a..72488dadac78 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 4c78dfbf0e94..33776b04a43c 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index b48de06233d9..8881802903a0 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 51ac97c1e987..d613db9ee07a 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index e32ba51217a0..dfce869b026f 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 44e1e5a5befb..7fb284306b52 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index bac7ca8e7d17..64e7b1cac575 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 4c37a236d429..5723a94963c0 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index c2b7228588c7..b74b261eef9e 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 684d6d5a22ce..f3a81937f41d 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 826ff6b6f4c1..c3677a3280e9 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index f3910bf8bcc0..e7bddcf32a94 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index da1a5784b7d5..6b69f6cd3269 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 50446b8f218d..d6ca663da40e 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 566b39a46330..5370574777b0 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index a901af503dda..9dbed55b0115 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index cbf363dcb248..e8261d4549b7 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 4783af43b0a8..d39a2fcd13c9 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 860eea8e15a9..d11a8df477dc 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 9681dd57d853..70ce348075e2 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 81a5c1fb3469..0b915b8576ee 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index b152a6fd1af1..c30d1170bd8d 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 942f333d1a51..c2d2e2965dc8 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 852bb28c41ae..a7e34ab5e48f 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 4865ae359b90..c2b0963249cd 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 96ca66c99397..a75c8c2ebf6e 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 0671e6470cb5..0e876bada7ba 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index a1c12afae61a..eebfa2ed56b2 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index a7fef97e2328..c1475c8890fc 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index d052c4a28eb3..933e6f1bcdb5 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 63fd05731690..c7b90d70af32 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index ef988aba4b95..2f4278dd7283 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 7c5abe5648f4..6367dfa64602 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 3582aa6140d4..c8369cc99888 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 8e71e2d37a81..fb634026681b 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index af5bf1b94640..670940f763e1 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index ca28925fd04c..b3c2e6d3c2a5 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 740e0d760f9d..474f8ca7e1fe 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index cfc2da122351..2f2ebdcc2369 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index f52ad3ba5e8e..0c4573dc483c 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 864cb3f9bab5..72d5f34578f8 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 685a43eae354..67cb8956616f 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 933b110315b6..def239b0be29 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 54dea03fdd02..2f80f8a507d4 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 7de26d234b34..02ca18d42475 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index f7efa9c95a53..faedf90632df 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index ad2560b78365..ef428ab4532c 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 71cc80587a0d..d498ade71986 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index fcbdc1808525..fb9480bdc5c2 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 704e31eb754a..ffc77c033e81 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 6ac6d019f488..3fb69b3ac3d3 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index f760f4b2a007..ecf670d41702 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 12f50a5fe3a2..0030e84f1f88 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index da6ec916b2fa..ad77a0a65628 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 367de4ca9052..d63f09e79255 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 8daa432df441..db0c61579b51 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index fbde016aa672..885325f3325c 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index a7efa4a12d6a..50079e5c8d75 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index ac064f57824c..57557e79b051 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 2e7c28b68c4c..20a827492448 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index e3af8006c7e3..ed86e2d45f9a 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.8 + 2.15.9-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 40fdc52320fa..ea75d7a45d6f 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 8e3be2d51499..242b6587cbdc 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index fb1ff0a3c8b3..60e259fc3f84 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index e8d88ded41ba..70d2bcdefdcf 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 5e06fa907691..b5daa6e07cf8 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 3376fb5511c9..75f23e12d31b 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 5786363f46de..5f36a7a16530 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index d383b59f6553..451c10af3471 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 40d3d4bbf354..c2d3f75c6dfe 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 9a97380ee4b9..48172408d567 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 69a3206e97ed..d3ac5211bf85 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index e5910b547a93..c187c542eb2b 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index f350b33bdcee..b1172ed59b03 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index ff0c8c7064a8..d38d37257f8e 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 5f61c9fde210..07cc340fc6ee 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index c6cfc411d231..3d8ce6dad2fe 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index ad0fd74026a9..b70f3dc7da23 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 4354d28cd622..b0947b11c321 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 2bb27400823e..65894edad64b 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 57714f5c56a6..e3ce2941b8ff 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 0a47246cbcff..000a78888207 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 5dbb89b06aad..fdb7c713fedf 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 7aff381e2a5a..19305d34364c 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 7cb0021d8681..c86400caf94c 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index b7cbfa5bccbd..8af82b7b9bd4 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index a6196bac77d7..29d691d99224 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 6418a4efa01a..0d2fa570cfb1 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index a6e816389aeb..e4b135ad731e 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 5af5e2c97475..f8d1da1b1a41 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index c93af6949415..e8e2df3f66c1 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 56151e69b425..50891a37529e 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 77a731998f3b..4d9dacf33163 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 750432fe154d..766d4a19b1c5 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index e6c78a320b75..071d3e36cc94 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index b6b43ead2221..7259e976f844 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 5e2ed9b788dd..df4dc2d3ab60 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index a5ffb66fe960..5250b9eb2f40 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index eb302a9b6c9b..ff9b6b8be64c 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index b23f16c2a677..fda5d56bffc7 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index bd2d5715fe04..d4d373f0787d 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index aafaeb0685df..42c83e2ef11d 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 8dc8f6ddfa35..5a7fdd0f3d6a 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 40405114f68a..d0bc5ef00be0 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index d665c4cf5ed9..4765d24245c6 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 888aa3fa7bc8..7554a0678dca 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index e82fb093cae4..b23d5f9c5010 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index f7b0d571bf67..9c700304bc35 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 82fe1a76cef3..47fb9100025e 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 6377387b20c4..368ac0531624 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 4d141c86d04e..3b08fbbba234 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index e81ad5320127..89ce65a3be52 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index b5b23185455c..b6a4742184cc 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 3308fc1fefc4..617a780ae338 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 44733c29731a..ecefb66574d5 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 0cb2329d0297..f14fddaf7164 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 8e11103d1c54..179b0087579a 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index da1dc9285f79..82ce892b74ed 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 7950ba141dce..2a953da05c65 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index cf3fa3a2eb39..54ea800c59c3 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index f5e3c21b59bd..8ba42bb54cd4 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 1cf8528f1789..05c190584337 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index ffab04aac9ac..52e7b007a7c1 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 734e0cbd4d20..7ac3ba56d9d9 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.8 + 2.15.9-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 8fd8a97aefa6..86fbc3053889 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.15.8 + 2.15.9-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index cf97515f2c3e..6f71b4c63021 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.15.8 + 2.15.9-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 3bd58b831785..26cd7aa7d02d 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.15.8 + 2.15.9-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 25f035664b18..a7042e606325 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.15.8 + 2.15.9-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index fcb674544639..230cd3138a8c 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.15.8 + 2.15.9-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 8dfb6210eafe..af9a56686678 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.8 + 2.15.9-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index e601c8c26c75..404334193553 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.15.8 + 2.15.9-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index e358affb177d..fb42ef6dc439 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.15.8 + 2.15.9-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 4e6feede9389..a78021b906a5 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.15.8 + 2.15.9-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 1fe281f281dc..1430118c520a 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.15.8 + 2.15.9-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index a60c60147f3b..0b9d2de8cfd5 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.8 + 2.15.9-SNAPSHOT 4.0.0 From 7519bb418cf2d9c8f06caefc0a38c654c8456013 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 16 Oct 2020 18:06:32 +0000 Subject: [PATCH 020/339] AWS Elemental MediaLive Update: The AWS Elemental MediaLive APIs and SDKs now support the ability to transfer the ownership of MediaLive Link devices across AWS accounts. --- ...feature-AWSElementalMediaLive-11055cf.json | 5 + .../codegen-resources/paginators-1.json | 6 + .../codegen-resources/service-2.json | 480 ++++++++++++++++++ 3 files changed, 491 insertions(+) create mode 100644 .changes/next-release/feature-AWSElementalMediaLive-11055cf.json diff --git a/.changes/next-release/feature-AWSElementalMediaLive-11055cf.json b/.changes/next-release/feature-AWSElementalMediaLive-11055cf.json new file mode 100644 index 000000000000..9b4ed3eeb580 --- /dev/null +++ b/.changes/next-release/feature-AWSElementalMediaLive-11055cf.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS Elemental MediaLive", + "description": "The AWS Elemental MediaLive APIs and SDKs now support the ability to transfer the ownership of MediaLive Link devices across AWS accounts." +} diff --git a/services/medialive/src/main/resources/codegen-resources/paginators-1.json b/services/medialive/src/main/resources/codegen-resources/paginators-1.json index dafc70dc02c0..a01ca8f87c71 100644 --- a/services/medialive/src/main/resources/codegen-resources/paginators-1.json +++ b/services/medialive/src/main/resources/codegen-resources/paginators-1.json @@ -53,6 +53,12 @@ "output_token": "NextToken", "limit_key": "MaxResults", "result_key": "InputDevices" + }, + "ListInputDeviceTransfers": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "InputDeviceTransfers" } } } diff --git a/services/medialive/src/main/resources/codegen-resources/service-2.json b/services/medialive/src/main/resources/codegen-resources/service-2.json index cc6130b4ad78..7c89eda4ef0e 100644 --- a/services/medialive/src/main/resources/codegen-resources/service-2.json +++ b/services/medialive/src/main/resources/codegen-resources/service-2.json @@ -12,6 +12,60 @@ "jsonVersion": "1.1" }, "operations": { + "AcceptInputDeviceTransfer": { + "name": "AcceptInputDeviceTransfer", + "http": { + "method": "POST", + "requestUri": "/prod/inputDevices/{inputDeviceId}/accept", + "responseCode": 200 + }, + "input": { + "shape": "AcceptInputDeviceTransferRequest" + }, + "output": { + "shape": "AcceptInputDeviceTransferResponse", + "documentation": "Your request to accept this device transfer has succeeded." + }, + "errors": [ + { + "shape": "BadRequestException", + "documentation": "This request was invalid." + }, + { + "shape": "UnprocessableEntityException", + "documentation": "Transfer operation failed, input could not be validated." + }, + { + "shape": "InternalServerErrorException", + "documentation": "Unexpected internal service error." + }, + { + "shape": "ForbiddenException", + "documentation": "You do not have permission to accept input device transfers." + }, + { + "shape": "BadGatewayException", + "documentation": "Bad gateway error." + }, + { + "shape": "NotFoundException", + "documentation": "Input device not found." + }, + { + "shape": "GatewayTimeoutException", + "documentation": "Gateway Timeout Error" + }, + { + "shape": "TooManyRequestsException", + "documentation": "Request limit exceeded on transfer device calls to the input device service." + }, + { + "shape": "ConflictException", + "documentation": "Input device transfer could not be accepted." + } + ], + "documentation": "Accept an incoming input device transfer. The ownership of the device will transfer to your AWS account." + }, "BatchDelete": { "name": "BatchDelete", "http": { @@ -212,6 +266,60 @@ ], "documentation": "Update a channel schedule" }, + "CancelInputDeviceTransfer": { + "name": "CancelInputDeviceTransfer", + "http": { + "method": "POST", + "requestUri": "/prod/inputDevices/{inputDeviceId}/cancel", + "responseCode": 200 + }, + "input": { + "shape": "CancelInputDeviceTransferRequest" + }, + "output": { + "shape": "CancelInputDeviceTransferResponse", + "documentation": "Your cancel request has succeeded." + }, + "errors": [ + { + "shape": "BadRequestException", + "documentation": "This request was invalid." + }, + { + "shape": "UnprocessableEntityException", + "documentation": "Transfer operation failed, input could not be validated." + }, + { + "shape": "InternalServerErrorException", + "documentation": "Unexpected internal service error." + }, + { + "shape": "ForbiddenException", + "documentation": "You do not have permission to cancel input device transfers." + }, + { + "shape": "BadGatewayException", + "documentation": "Bad gateway error." + }, + { + "shape": "NotFoundException", + "documentation": "Input device not found." + }, + { + "shape": "GatewayTimeoutException", + "documentation": "Gateway Timeout Error" + }, + { + "shape": "TooManyRequestsException", + "documentation": "Request limit exceeded on transfer device calls to the input device service." + }, + { + "shape": "ConflictException", + "documentation": "Input device transfer could not be canceled." + } + ], + "documentation": "Cancel an input device transfer that you have requested." + }, "CreateChannel": { "name": "CreateChannel", "http": { @@ -1350,6 +1458,52 @@ ], "documentation": "Produces list of channels that have been created" }, + "ListInputDeviceTransfers": { + "name": "ListInputDeviceTransfers", + "http": { + "method": "GET", + "requestUri": "/prod/inputDeviceTransfers", + "responseCode": 200 + }, + "input": { + "shape": "ListInputDeviceTransfersRequest" + }, + "output": { + "shape": "ListInputDeviceTransfersResponse", + "documentation": "An array of input devices that are currently being transferred." + }, + "errors": [ + { + "shape": "BadRequestException", + "documentation": "This request was invalid." + }, + { + "shape": "UnprocessableEntityException", + "documentation": "Transfer operation failed, input could not be validated." + }, + { + "shape": "InternalServerErrorException", + "documentation": "Unexpected internal service error." + }, + { + "shape": "ForbiddenException", + "documentation": "You do not have permission to list transferring devices." + }, + { + "shape": "BadGatewayException", + "documentation": "Bad gateway error." + }, + { + "shape": "GatewayTimeoutException", + "documentation": "Gateway Timeout Error" + }, + { + "shape": "TooManyRequestsException", + "documentation": "Request limit exceeded on list devices calls to the input device service." + } + ], + "documentation": "List input devices that are currently being transferred. List input devices that you are transferring from your AWS account or input devices that another AWS account is transferring to you." + }, "ListInputDevices": { "name": "ListInputDevices", "http": { @@ -1732,6 +1886,60 @@ ], "documentation": "Purchase an offering and create a reservation." }, + "RejectInputDeviceTransfer": { + "name": "RejectInputDeviceTransfer", + "http": { + "method": "POST", + "requestUri": "/prod/inputDevices/{inputDeviceId}/reject", + "responseCode": 200 + }, + "input": { + "shape": "RejectInputDeviceTransferRequest" + }, + "output": { + "shape": "RejectInputDeviceTransferResponse", + "documentation": "Your reject request has succeeded." + }, + "errors": [ + { + "shape": "BadRequestException", + "documentation": "This request was invalid." + }, + { + "shape": "UnprocessableEntityException", + "documentation": "Transfer operation failed, input could not be validated." + }, + { + "shape": "InternalServerErrorException", + "documentation": "Unexpected internal service error." + }, + { + "shape": "ForbiddenException", + "documentation": "You do not have permission to reject input device transfers." + }, + { + "shape": "BadGatewayException", + "documentation": "Bad gateway error." + }, + { + "shape": "NotFoundException", + "documentation": "Input device not found." + }, + { + "shape": "GatewayTimeoutException", + "documentation": "Gateway Timeout Error" + }, + { + "shape": "TooManyRequestsException", + "documentation": "Request limit exceeded on transfer device calls to the input device service." + }, + { + "shape": "ConflictException", + "documentation": "Input device transfer could not be rejected." + } + ], + "documentation": "Reject the transfer of the specified input device to your AWS account." + }, "StartChannel": { "name": "StartChannel", "http": { @@ -1932,6 +2140,60 @@ ], "documentation": "Stops a running multiplex. If the multiplex isn't running, this action has no effect." }, + "TransferInputDevice": { + "name": "TransferInputDevice", + "http": { + "method": "POST", + "requestUri": "/prod/inputDevices/{inputDeviceId}/transfer", + "responseCode": 200 + }, + "input": { + "shape": "TransferInputDeviceRequest" + }, + "output": { + "shape": "TransferInputDeviceResponse", + "documentation": "The device transfer request has started." + }, + "errors": [ + { + "shape": "BadRequestException", + "documentation": "This request was invalid." + }, + { + "shape": "UnprocessableEntityException", + "documentation": "Transfer operation failed, input could not be validated." + }, + { + "shape": "InternalServerErrorException", + "documentation": "Unexpected internal service error." + }, + { + "shape": "ForbiddenException", + "documentation": "You do not have permission to transfer input devices." + }, + { + "shape": "BadGatewayException", + "documentation": "Bad gateway error." + }, + { + "shape": "NotFoundException", + "documentation": "Input device not found." + }, + { + "shape": "GatewayTimeoutException", + "documentation": "Gateway Timeout Error" + }, + { + "shape": "TooManyRequestsException", + "documentation": "Request limit exceeded on transfer device calls to the input device service." + }, + { + "shape": "ConflictException", + "documentation": "Input device could not be transferred." + } + ], + "documentation": "Start an input device transfer to another AWS account. After you make the request, the other account must accept or reject the transfer." + }, "UpdateChannel": { "name": "UpdateChannel", "http": { @@ -2528,6 +2790,27 @@ }, "documentation": "Ac3 Settings" }, + "AcceptInputDeviceTransferRequest": { + "type": "structure", + "members": { + "InputDeviceId": { + "shape": "__string", + "location": "uri", + "locationName": "inputDeviceId", + "documentation": "The unique ID of the input device to accept. For example, hd-123456789abcdef." + } + }, + "required": [ + "InputDeviceId" + ], + "documentation": "Placeholder documentation for AcceptInputDeviceTransferRequest" + }, + "AcceptInputDeviceTransferResponse": { + "type": "structure", + "members": { + }, + "documentation": "Placeholder documentation for AcceptInputDeviceTransferResponse" + }, "AccessDenied": { "type": "structure", "members": { @@ -3622,6 +3905,27 @@ "SCALED" ] }, + "CancelInputDeviceTransferRequest": { + "type": "structure", + "members": { + "InputDeviceId": { + "shape": "__string", + "location": "uri", + "locationName": "inputDeviceId", + "documentation": "The unique ID of the input device to cancel. For example, hd-123456789abcdef." + } + }, + "required": [ + "InputDeviceId" + ], + "documentation": "Placeholder documentation for CancelInputDeviceTransferRequest" + }, + "CancelInputDeviceTransferResponse": { + "type": "structure", + "members": { + }, + "documentation": "Placeholder documentation for CancelInputDeviceTransferResponse" + }, "CaptionDescription": { "type": "structure", "members": { @@ -8594,6 +8898,14 @@ }, "documentation": "Details of the input device." }, + "InputDeviceTransferType": { + "type": "string", + "documentation": "The type of device transfer. INCOMING for an input device that is being transferred to you, OUTGOING for an input device that you are transferring to another AWS account.", + "enum": [ + "OUTGOING", + "INCOMING" + ] + }, "InputDeviceType": { "type": "string", "documentation": "The type of the input device. For an AWS Elemental Link device that outputs resolutions up to 1080, choose \"HD\".", @@ -9155,6 +9467,62 @@ }, "documentation": "Placeholder documentation for ListChannelsResultModel" }, + "ListInputDeviceTransfersRequest": { + "type": "structure", + "members": { + "MaxResults": { + "shape": "MaxResults", + "location": "querystring", + "locationName": "maxResults" + }, + "NextToken": { + "shape": "__string", + "location": "querystring", + "locationName": "nextToken" + }, + "TransferType": { + "shape": "__string", + "location": "querystring", + "locationName": "transferType" + } + }, + "required": [ + "TransferType" + ], + "documentation": "Placeholder documentation for ListInputDeviceTransfersRequest" + }, + "ListInputDeviceTransfersResponse": { + "type": "structure", + "members": { + "InputDeviceTransfers": { + "shape": "__listOfTransferringInputDeviceSummary", + "locationName": "inputDeviceTransfers", + "documentation": "The list of devices that you are transferring or are being transferred to you." + }, + "NextToken": { + "shape": "__string", + "locationName": "nextToken", + "documentation": "A token to get additional list results." + } + }, + "documentation": "Placeholder documentation for ListInputDeviceTransfersResponse" + }, + "ListInputDeviceTransfersResultModel": { + "type": "structure", + "members": { + "InputDeviceTransfers": { + "shape": "__listOfTransferringInputDeviceSummary", + "locationName": "inputDeviceTransfers", + "documentation": "The list of devices that you are transferring or are being transferred to you." + }, + "NextToken": { + "shape": "__string", + "locationName": "nextToken", + "documentation": "A token to get additional list results." + } + }, + "documentation": "The list of input devices in the transferred state. The recipient hasn't yet accepted or rejected the transfer." + }, "ListInputDevicesRequest": { "type": "structure", "members": { @@ -11504,6 +11872,27 @@ }, "documentation": "Rec709 Settings" }, + "RejectInputDeviceTransferRequest": { + "type": "structure", + "members": { + "InputDeviceId": { + "shape": "__string", + "location": "uri", + "locationName": "inputDeviceId", + "documentation": "The unique ID of the input device to reject. For example, hd-123456789abcdef." + } + }, + "required": [ + "InputDeviceId" + ], + "documentation": "Placeholder documentation for RejectInputDeviceTransferRequest" + }, + "RejectInputDeviceTransferResponse": { + "type": "structure", + "members": { + }, + "documentation": "Placeholder documentation for RejectInputDeviceTransferResponse" + }, "RemixSettings": { "type": "structure", "members": { @@ -12968,6 +13357,17 @@ "STRENGTH_16" ] }, + "ThumbnailData": { + "type": "structure", + "members": { + "Body": { + "shape": "__string", + "locationName": "body", + "documentation": "The binary data for the thumbnail that the Link device has most recently sent to MediaLive." + } + }, + "documentation": "The binary data for the thumbnail that the Link device has most recently sent to MediaLive." + }, "TimecodeConfig": { "type": "structure", "members": { @@ -13010,6 +13410,79 @@ }, "documentation": "Placeholder documentation for TooManyRequestsException" }, + "TransferInputDevice": { + "type": "structure", + "members": { + "TargetCustomerId": { + "shape": "__string", + "locationName": "targetCustomerId", + "documentation": "The AWS account ID (12 digits) for the recipient of the device transfer." + }, + "TransferMessage": { + "shape": "__string", + "locationName": "transferMessage", + "documentation": "An optional message for the recipient. Maximum 280 characters." + } + }, + "documentation": "The transfer details of the input device." + }, + "TransferInputDeviceRequest": { + "type": "structure", + "members": { + "InputDeviceId": { + "shape": "__string", + "location": "uri", + "locationName": "inputDeviceId", + "documentation": "The unique ID of this input device. For example, hd-123456789abcdef." + }, + "TargetCustomerId": { + "shape": "__string", + "locationName": "targetCustomerId", + "documentation": "The AWS account ID (12 digits) for the recipient of the device transfer." + }, + "TransferMessage": { + "shape": "__string", + "locationName": "transferMessage", + "documentation": "An optional message for the recipient. Maximum 280 characters." + } + }, + "documentation": "A request to transfer an input device.", + "required": [ + "InputDeviceId" + ] + }, + "TransferInputDeviceResponse": { + "type": "structure", + "members": { + }, + "documentation": "Placeholder documentation for TransferInputDeviceResponse" + }, + "TransferringInputDeviceSummary": { + "type": "structure", + "members": { + "Id": { + "shape": "__string", + "locationName": "id", + "documentation": "The unique ID of the input device." + }, + "Message": { + "shape": "__string", + "locationName": "message", + "documentation": "The optional message that the sender has attached to the transfer." + }, + "TargetCustomerId": { + "shape": "__string", + "locationName": "targetCustomerId", + "documentation": "The AWS account ID for the recipient of the input device transfer." + }, + "TransferType": { + "shape": "InputDeviceTransferType", + "locationName": "transferType", + "documentation": "The type (direction) of the input device transfer." + } + }, + "documentation": "Details about the input device that is being transferred." + }, "TtmlDestinationSettings": { "type": "structure", "members": { @@ -14536,6 +15009,13 @@ }, "documentation": "Placeholder documentation for __listOfScte35Descriptor" }, + "__listOfTransferringInputDeviceSummary": { + "type": "list", + "member": { + "shape": "TransferringInputDeviceSummary" + }, + "documentation": "Placeholder documentation for __listOfTransferringInputDeviceSummary" + }, "__listOfValidationError": { "type": "list", "member": { From e5db1dff5b66ef422fe17d8b5dd3f5d82b80702e Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 16 Oct 2020 18:06:42 +0000 Subject: [PATCH 021/339] AWS Organizations Update: Documentation updates for AWS Organizations. --- .../feature-AWSOrganizations-57a6493.json | 5 +++ .../codegen-resources/service-2.json | 44 +++++++++---------- 2 files changed, 27 insertions(+), 22 deletions(-) create mode 100644 .changes/next-release/feature-AWSOrganizations-57a6493.json diff --git a/.changes/next-release/feature-AWSOrganizations-57a6493.json b/.changes/next-release/feature-AWSOrganizations-57a6493.json new file mode 100644 index 000000000000..343fe323a4fd --- /dev/null +++ b/.changes/next-release/feature-AWSOrganizations-57a6493.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS Organizations", + "description": "Documentation updates for AWS Organizations." +} diff --git a/services/organizations/src/main/resources/codegen-resources/service-2.json b/services/organizations/src/main/resources/codegen-resources/service-2.json index 21828d04a9bd..bd27306b8c57 100644 --- a/services/organizations/src/main/resources/codegen-resources/service-2.json +++ b/services/organizations/src/main/resources/codegen-resources/service-2.json @@ -58,7 +58,7 @@ {"shape":"UnsupportedAPIEndpointException"}, {"shape":"PolicyChangesInProgressException"} ], - "documentation":"

Attaches a policy to a root, an organizational unit (OU), or an individual account. How the policy affects accounts depends on the type of policy. Refer to the AWS Organizations User Guide for information about each policy type:

This operation can be called only from the organization's master account.

" + "documentation":"

Attaches a policy to a root, an organizational unit (OU), or an individual account. How the policy affects accounts depends on the type of policy. Refer to the AWS Organizations User Guide for information about each policy type:

This operation can be called only from the organization's master account.

" }, "CancelHandshake":{ "name":"CancelHandshake", @@ -99,7 +99,7 @@ {"shape":"TooManyRequestsException"}, {"shape":"UnsupportedAPIEndpointException"} ], - "documentation":"

Creates an AWS account that is automatically a member of the organization whose credentials made the request. This is an asynchronous request that AWS performs in the background. Because CreateAccount operates asynchronously, it can return a successful completion message even though account initialization might still be in progress. You might need to wait a few minutes before you can successfully access the account. To check the status of the request, do one of the following:

The user who calls the API to create an account must have the organizations:CreateAccount permission. If you enabled all features in the organization, AWS Organizations creates the required service-linked role named AWSServiceRoleForOrganizations. For more information, see AWS Organizations and Service-Linked Roles in the AWS Organizations User Guide.

If the request includes tags, then the requester must have the organizations:TagResource permission.

AWS Organizations preconfigures the new member account with a role (named OrganizationAccountAccessRole by default) that grants users in the master account administrator permissions in the new member account. Principals in the master account can assume the role. AWS Organizations clones the company name and address information for the new account from the organization's master account.

This operation can be called only from the organization's master account.

For more information about creating accounts, see Creating an AWS Account in Your Organization in the AWS Organizations User Guide.

  • When you create an account in an organization using the AWS Organizations console, API, or CLI commands, the information required for the account to operate as a standalone account, such as a payment method and signing the end user license agreement (EULA) is not automatically collected. If you must remove an account from your organization later, you can do so only after you provide the missing information. Follow the steps at To leave an organization as a member account in the AWS Organizations User Guide.

  • If you get an exception that indicates that you exceeded your account limits for the organization, contact AWS Support.

  • If you get an exception that indicates that the operation failed because your organization is still initializing, wait one hour and then try again. If the error persists, contact AWS Support.

  • Using CreateAccount to create multiple temporary accounts isn't recommended. You can only close an account from the Billing and Cost Management Console, and you must be signed in as the root user. For information on the requirements and process for closing an account, see Closing an AWS Account in the AWS Organizations User Guide.

When you create a member account with this operation, you can choose whether to create the account with the IAM User and Role Access to Billing Information switch enabled. If you enable it, IAM users and roles that have appropriate permissions can view billing information for the account. If you disable it, only the account root user can access billing information. For information about how to disable this switch for an account, see Granting Access to Your Billing Information and Tools.

" + "documentation":"

Creates an AWS account that is automatically a member of the organization whose credentials made the request. This is an asynchronous request that AWS performs in the background. Because CreateAccount operates asynchronously, it can return a successful completion message even though account initialization might still be in progress. You might need to wait a few minutes before you can successfully access the account. To check the status of the request, do one of the following:

  • Use the Id member of the CreateAccountStatus response element from this operation to provide as a parameter to the DescribeCreateAccountStatus operation.

  • Check the AWS CloudTrail log for the CreateAccountResult event. For information on using AWS CloudTrail with AWS Organizations, see Monitoring the Activity in Your Organization in the AWS Organizations User Guide.

The user who calls the API to create an account must have the organizations:CreateAccount permission. If you enabled all features in the organization, AWS Organizations creates the required service-linked role named AWSServiceRoleForOrganizations. For more information, see AWS Organizations and Service-Linked Roles in the AWS Organizations User Guide.

If the request includes tags, then the requester must have the organizations:TagResource permission.

AWS Organizations preconfigures the new member account with a role (named OrganizationAccountAccessRole by default) that grants users in the master account administrator permissions in the new member account. Principals in the master account can assume the role. AWS Organizations clones the company name and address information for the new account from the organization's master account.

This operation can be called only from the organization's master account.

For more information about creating accounts, see Creating an AWS Account in Your Organization in the AWS Organizations User Guide.

  • When you create an account in an organization using the AWS Organizations console, API, or CLI commands, the information required for the account to operate as a standalone account, such as a payment method and signing the end user license agreement (EULA) is not automatically collected. If you must remove an account from your organization later, you can do so only after you provide the missing information. Follow the steps at To leave an organization as a member account in the AWS Organizations User Guide.

  • If you get an exception that indicates that you exceeded your account limits for the organization, contact AWS Support.

  • If you get an exception that indicates that the operation failed because your organization is still initializing, wait one hour and then try again. If the error persists, contact AWS Support.

  • Using CreateAccount to create multiple temporary accounts isn't recommended. You can only close an account from the Billing and Cost Management Console, and you must be signed in as the root user. For information on the requirements and process for closing an account, see Closing an AWS Account in the AWS Organizations User Guide.

When you create a member account with this operation, you can choose whether to create the account with the IAM User and Role Access to Billing Information switch enabled. If you enable it, IAM users and roles that have appropriate permissions can view billing information for the account. If you disable it, only the account root user can access billing information. For information about how to disable this switch for an account, see Granting Access to Your Billing Information and Tools.

" }, "CreateGovCloudAccount":{ "name":"CreateGovCloudAccount", @@ -120,7 +120,7 @@ {"shape":"TooManyRequestsException"}, {"shape":"UnsupportedAPIEndpointException"} ], - "documentation":"

This action is available if all of the following are true:

  • You're authorized to create accounts in the AWS GovCloud (US) Region. For more information on the AWS GovCloud (US) Region, see the AWS GovCloud User Guide.

  • You already have an account in the AWS GovCloud (US) Region that is associated with your master account in the commercial Region.

  • You call this action from the master account of your organization in the commercial Region.

  • You have the organizations:CreateGovCloudAccount permission.

AWS Organizations automatically creates the required service-linked role named AWSServiceRoleForOrganizations. For more information, see AWS Organizations and Service-Linked Roles in the AWS Organizations User Guide.

AWS automatically enables AWS CloudTrail for AWS GovCloud (US) accounts, but you should also do the following:

  • Verify that AWS CloudTrail is enabled to store logs.

  • Create an S3 bucket for AWS CloudTrail log storage.

    For more information, see Verifying AWS CloudTrail Is Enabled in the AWS GovCloud User Guide.

If the request includes tags, then the requester must have the organizations:TagResource permission. The tags are attached to the commercial account associated with the GovCloud account, rather than the GovCloud account itself. To add tags to the GovCloud account, call the TagResource operation in the GovCloud Region after the new GovCloud account exists.

You call this action from the master account of your organization in the commercial Region to create a standalone AWS account in the AWS GovCloud (US) Region. After the account is created, the master account of an organization in the AWS GovCloud (US) Region can invite it to that organization. For more information on inviting standalone accounts in the AWS GovCloud (US) to join an organization, see AWS Organizations in the AWS GovCloud User Guide.

Calling CreateGovCloudAccount is an asynchronous request that AWS performs in the background. Because CreateGovCloudAccount operates asynchronously, it can return a successful completion message even though account initialization might still be in progress. You might need to wait a few minutes before you can successfully access the account. To check the status of the request, do one of the following:

When you call the CreateGovCloudAccount action, you create two accounts: a standalone account in the AWS GovCloud (US) Region and an associated account in the commercial Region for billing and support purposes. The account in the commercial Region is automatically a member of the organization whose credentials made the request. Both accounts are associated with the same email address.

A role is created in the new account in the commercial Region that allows the master account in the organization in the commercial Region to assume it. An AWS GovCloud (US) account is then created and associated with the commercial account that you just created. A role is also created in the new AWS GovCloud (US) account that can be assumed by the AWS GovCloud (US) account that is associated with the master account of the commercial organization. For more information and to view a diagram that explains how account access works, see AWS Organizations in the AWS GovCloud User Guide.

For more information about creating accounts, see Creating an AWS Account in Your Organization in the AWS Organizations User Guide.

  • When you create an account in an organization using the AWS Organizations console, API, or CLI commands, the information required for the account to operate as a standalone account is not automatically collected. This includes a payment method and signing the end user license agreement (EULA). If you must remove an account from your organization later, you can do so only after you provide the missing information. Follow the steps at To leave an organization as a member account in the AWS Organizations User Guide.

  • If you get an exception that indicates that you exceeded your account limits for the organization, contact AWS Support.

  • If you get an exception that indicates that the operation failed because your organization is still initializing, wait one hour and then try again. If the error persists, contact AWS Support.

  • Using CreateGovCloudAccount to create multiple temporary accounts isn't recommended. You can only close an account from the AWS Billing and Cost Management console, and you must be signed in as the root user. For information on the requirements and process for closing an account, see Closing an AWS Account in the AWS Organizations User Guide.

When you create a member account with this operation, you can choose whether to create the account with the IAM User and Role Access to Billing Information switch enabled. If you enable it, IAM users and roles that have appropriate permissions can view billing information for the account. If you disable it, only the account root user can access billing information. For information about how to disable this switch for an account, see Granting Access to Your Billing Information and Tools.

" + "documentation":"

This action is available if all of the following are true:

  • You're authorized to create accounts in the AWS GovCloud (US) Region. For more information on the AWS GovCloud (US) Region, see the AWS GovCloud User Guide.

  • You already have an account in the AWS GovCloud (US) Region that is paired with a master account of an organization in the commercial Region.

  • You call this action from the master account of your organization in the commercial Region.

  • You have the organizations:CreateGovCloudAccount permission.

AWS Organizations automatically creates the required service-linked role named AWSServiceRoleForOrganizations. For more information, see AWS Organizations and Service-Linked Roles in the AWS Organizations User Guide.

AWS automatically enables AWS CloudTrail for AWS GovCloud (US) accounts, but you should also do the following:

  • Verify that AWS CloudTrail is enabled to store logs.

  • Create an S3 bucket for AWS CloudTrail log storage.

    For more information, see Verifying AWS CloudTrail Is Enabled in the AWS GovCloud User Guide.

If the request includes tags, then the requester must have the organizations:TagResource permission. The tags are attached to the commercial account associated with the GovCloud account, rather than the GovCloud account itself. To add tags to the GovCloud account, call the TagResource operation in the GovCloud Region after the new GovCloud account exists.

You call this action from the master account of your organization in the commercial Region to create a standalone AWS account in the AWS GovCloud (US) Region. After the account is created, the master account of an organization in the AWS GovCloud (US) Region can invite it to that organization. For more information on inviting standalone accounts in the AWS GovCloud (US) to join an organization, see AWS Organizations in the AWS GovCloud User Guide.

Calling CreateGovCloudAccount is an asynchronous request that AWS performs in the background. Because CreateGovCloudAccount operates asynchronously, it can return a successful completion message even though account initialization might still be in progress. You might need to wait a few minutes before you can successfully access the account. To check the status of the request, do one of the following:

When you call the CreateGovCloudAccount action, you create two accounts: a standalone account in the AWS GovCloud (US) Region and an associated account in the commercial Region for billing and support purposes. The account in the commercial Region is automatically a member of the organization whose credentials made the request. Both accounts are associated with the same email address.

A role is created in the new account in the commercial Region that allows the master account in the organization in the commercial Region to assume it. An AWS GovCloud (US) account is then created and associated with the commercial account that you just created. A role is also created in the new AWS GovCloud (US) account that can be assumed by the AWS GovCloud (US) account that is associated with the master account of the commercial organization. For more information and to view a diagram that explains how account access works, see AWS Organizations in the AWS GovCloud User Guide.

For more information about creating accounts, see Creating an AWS Account in Your Organization in the AWS Organizations User Guide.

  • When you create an account in an organization using the AWS Organizations console, API, or CLI commands, the information required for the account to operate as a standalone account is not automatically collected. This includes a payment method and signing the end user license agreement (EULA). If you must remove an account from your organization later, you can do so only after you provide the missing information. Follow the steps at To leave an organization as a member account in the AWS Organizations User Guide.

  • If you get an exception that indicates that you exceeded your account limits for the organization, contact AWS Support.

  • If you get an exception that indicates that the operation failed because your organization is still initializing, wait one hour and then try again. If the error persists, contact AWS Support.

  • Using CreateGovCloudAccount to create multiple temporary accounts isn't recommended. You can only close an account from the AWS Billing and Cost Management console, and you must be signed in as the root user. For information on the requirements and process for closing an account, see Closing an AWS Account in the AWS Organizations User Guide.

When you create a member account with this operation, you can choose whether to create the account with the IAM User and Role Access to Billing Information switch enabled. If you enable it, IAM users and roles that have appropriate permissions can view billing information for the account. If you disable it, only the account root user can access billing information. For information about how to disable this switch for an account, see Granting Access to Your Billing Information and Tools.

" }, "CreateOrganization":{ "name":"CreateOrganization", @@ -1226,7 +1226,7 @@ "members":{ "Id":{ "shape":"ChildId", - "documentation":"

The unique identifier (ID) of this child entity.

The regex pattern for a child ID string requires one of the following:

  • Account: A string that consists of exactly 12 digits.

  • Organizational unit (OU): A string that begins with \"ou-\" followed by from 4 to 32 lower-case letters or digits (the ID of the root that contains the OU). This string is followed by a second \"-\" dash and from 8 to 32 additional lower-case letters or digits.

" + "documentation":"

The unique identifier (ID) of this child entity.

The regex pattern for a child ID string requires one of the following:

  • Account - A string that consists of exactly 12 digits.

  • Organizational unit (OU) - A string that begins with \"ou-\" followed by from 4 to 32 lowercase letters or digits (the ID of the root that contains the OU). This string is followed by a second \"-\" dash and from 8 to 32 additional lowercase letters or digits.

" }, "Type":{ "shape":"ChildType", @@ -1383,7 +1383,7 @@ "members":{ "Id":{ "shape":"CreateAccountRequestId", - "documentation":"

The unique identifier (ID) that references this request. You get this value from the response of the initial CreateAccount request to create the account.

The regex pattern for a create account request ID string requires \"car-\" followed by from 8 to 32 lower-case letters or digits.

" + "documentation":"

The unique identifier (ID) that references this request. You get this value from the response of the initial CreateAccount request to create the account.

The regex pattern for a create account request ID string requires \"car-\" followed by from 8 to 32 lowercase letters or digits.

" }, "AccountName":{ "shape":"AccountName", @@ -1534,7 +1534,7 @@ }, "Type":{ "shape":"PolicyType", - "documentation":"

The type of policy to create. You can specify one of the following values:

" + "documentation":"

The type of policy to create. You can specify one of the following values:

" }, "Tags":{ "shape":"Tags", @@ -1692,7 +1692,7 @@ "members":{ "CreateAccountRequestId":{ "shape":"CreateAccountRequestId", - "documentation":"

Specifies the operationId that uniquely identifies the request. You can get the ID from the response to an earlier CreateAccount request, or from the ListCreateAccountStatus operation.

The regex pattern for a create account request ID string requires \"car-\" followed by from 8 to 32 lowercase letters or digits.

" + "documentation":"

Specifies the Id value that uniquely identifies the CreateAccount request. You can get the value from the CreateAccountStatus.Id response in an earlier CreateAccount request, or from the ListCreateAccountStatus operation.

The regex pattern for a create account request ID string requires \"car-\" followed by from 8 to 32 lowercase letters or digits.

" } } }, @@ -1711,7 +1711,7 @@ "members":{ "PolicyType":{ "shape":"EffectivePolicyType", - "documentation":"

The type of policy that you want information about. You can specify one of the following values:

" + "documentation":"

The type of policy that you want information about. You can specify one of the following values:

" }, "TargetId":{ "shape":"PolicyTargetId", @@ -1842,7 +1842,7 @@ }, "PolicyType":{ "shape":"PolicyType", - "documentation":"

The policy type that you want to disable in this root. You can specify one of the following values:

" + "documentation":"

The policy type that you want to disable in this root. You can specify one of the following values:

" } } }, @@ -1977,7 +1977,7 @@ }, "PolicyType":{ "shape":"PolicyType", - "documentation":"

The policy type that you want to enable. You can specify one of the following values:

" + "documentation":"

The policy type that you want to enable. You can specify one of the following values:

" } } }, @@ -2027,7 +2027,7 @@ "members":{ "Id":{ "shape":"HandshakeId", - "documentation":"

The unique identifier (ID) of a handshake. The originating account creates the ID when it initiates the handshake.

The regex pattern for handshake ID string requires \"h-\" followed by from 8 to 32 lower-case letters or digits.

" + "documentation":"

The unique identifier (ID) of a handshake. The originating account creates the ID when it initiates the handshake.

The regex pattern for handshake ID string requires \"h-\" followed by from 8 to 32 lowercase letters or digits.

" }, "Arn":{ "shape":"HandshakeArn", @@ -2103,7 +2103,7 @@ }, "ParentHandshakeId":{ "shape":"HandshakeId", - "documentation":"

Specifies the parent handshake. Only used for handshake types that are a child of another type.

If you specify ParentHandshakeId, you cannot also specify ActionType.

The regex pattern for handshake ID string requires \"h-\" followed by from 8 to 32 lower-case letters or digits.

" + "documentation":"

Specifies the parent handshake. Only used for handshake types that are a child of another type.

If you specify ParentHandshakeId, you cannot also specify ActionType.

The regex pattern for handshake ID string requires \"h-\" followed by from 8 to 32 lowercase letters or digits.

" } }, "documentation":"

Specifies the criteria that are used to select the handshakes for the operation.

" @@ -2140,7 +2140,7 @@ "members":{ "Id":{ "shape":"HandshakePartyId", - "documentation":"

The unique identifier (ID) for the party.

The regex pattern for handshake ID string requires \"h-\" followed by from 8 to 32 lower-case letters or digits.

" + "documentation":"

The unique identifier (ID) for the party.

The regex pattern for handshake ID string requires \"h-\" followed by from 8 to 32 lowercase letters or digits.

" }, "Type":{ "shape":"HandshakePartyType", @@ -2644,7 +2644,7 @@ }, "Filter":{ "shape":"PolicyType", - "documentation":"

The type of policy that you want to include in the returned list. You must specify one of the following values:

" + "documentation":"

The type of policy that you want to include in the returned list. You must specify one of the following values:

" }, "NextToken":{ "shape":"NextToken", @@ -2675,7 +2675,7 @@ "members":{ "Filter":{ "shape":"PolicyType", - "documentation":"

Specifies the type of policy that you want to include in the response. You must specify one of the following values:

" + "documentation":"

Specifies the type of policy that you want to include in the response. You must specify one of the following values:

" }, "NextToken":{ "shape":"NextToken", @@ -2838,7 +2838,7 @@ "members":{ "Id":{ "shape":"OrganizationId", - "documentation":"

The unique identifier (ID) of an organization.

The regex pattern for an organization ID string requires \"o-\" followed by from 10 to 32 lower-case letters or digits.

" + "documentation":"

The unique identifier (ID) of an organization.

The regex pattern for an organization ID string requires \"o-\" followed by from 10 to 32 lowercase letters or digits.

" }, "Arn":{ "shape":"OrganizationArn", @@ -2895,7 +2895,7 @@ "members":{ "Id":{ "shape":"OrganizationalUnitId", - "documentation":"

The unique identifier (ID) associated with this OU.

The regex pattern for an organizational unit ID string requires \"ou-\" followed by from 4 to 32 lower-case letters or digits (the ID of the root that contains the OU). This string is followed by a second \"-\" dash and from 8 to 32 additional lower-case letters or digits.

" + "documentation":"

The unique identifier (ID) associated with this OU.

The regex pattern for an organizational unit ID string requires \"ou-\" followed by from 4 to 32 lowercase letters or digits (the ID of the root that contains the OU). This string is followed by a second \"-\" dash and from 8 to 32 additional lowercase letters or digits.

" }, "Arn":{ "shape":"OrganizationalUnitArn", @@ -2948,7 +2948,7 @@ "members":{ "Id":{ "shape":"ParentId", - "documentation":"

The unique identifier (ID) of the parent entity.

The regex pattern for a parent ID string requires one of the following:

  • Root: A string that begins with \"r-\" followed by from 4 to 32 lower-case letters or digits.

  • Organizational unit (OU): A string that begins with \"ou-\" followed by from 4 to 32 lower-case letters or digits (the ID of the root that the OU is in). This string is followed by a second \"-\" dash and from 8 to 32 additional lower-case letters or digits.

" + "documentation":"

The unique identifier (ID) of the parent entity.

The regex pattern for a parent ID string requires one of the following:

  • Root - A string that begins with \"r-\" followed by from 4 to 32 lowercase letters or digits.

  • Organizational unit (OU) - A string that begins with \"ou-\" followed by from 4 to 32 lowercase letters or digits (the ID of the root that the OU is in). This string is followed by a second \"-\" dash and from 8 to 32 additional lowercase letters or digits.

" }, "Type":{ "shape":"ParentType", @@ -3062,7 +3062,7 @@ "members":{ "Id":{ "shape":"PolicyId", - "documentation":"

The unique identifier (ID) of the policy.

The regex pattern for a policy ID string requires \"p-\" followed by from 8 to 128 lower-case letters or digits.

" + "documentation":"

The unique identifier (ID) of the policy.

The regex pattern for a policy ID string requires \"p-\" followed by from 8 to 128 lowercase or uppercase letters, digits, or the underscore character (_).

" }, "Arn":{ "shape":"PolicyArn", @@ -3097,7 +3097,7 @@ "members":{ "TargetId":{ "shape":"PolicyTargetId", - "documentation":"

The unique identifier (ID) of the policy target.

The regex pattern for a target ID string requires one of the following:

  • Root: A string that begins with \"r-\" followed by from 4 to 32 lower-case letters or digits.

  • Account: A string that consists of exactly 12 digits.

  • Organizational unit (OU): A string that begins with \"ou-\" followed by from 4 to 32 lower-case letters or digits (the ID of the root that the OU is in). This string is followed by a second \"-\" dash and from 8 to 32 additional lower-case letters or digits.

" + "documentation":"

The unique identifier (ID) of the policy target.

The regex pattern for a target ID string requires one of the following:

  • Root - A string that begins with \"r-\" followed by from 4 to 32 lowercase letters or digits.

  • Account - A string that consists of exactly 12 digits.

  • Organizational unit (OU) - A string that begins with \"ou-\" followed by from 4 to 32 lowercase letters or digits (the ID of the root that the OU is in). This string is followed by a second \"-\" dash and from 8 to 32 additional lowercase letters or digits.

" }, "Arn":{ "shape":"GenericArn", @@ -3214,7 +3214,7 @@ "members":{ "Id":{ "shape":"RootId", - "documentation":"

The unique identifier (ID) for the root.

The regex pattern for a root ID string requires \"r-\" followed by from 4 to 32 lower-case letters or digits.

" + "documentation":"

The unique identifier (ID) for the root.

The regex pattern for a root ID string requires \"r-\" followed by from 4 to 32 lowercase letters or digits.

" }, "Arn":{ "shape":"RootArn", @@ -3229,7 +3229,7 @@ "documentation":"

The types of policies that are currently enabled for the root and therefore can be attached to the root or to its OUs or accounts.

Even if a policy type is shown as available in the organization, you can separately enable and disable them at the root level by using EnablePolicyType and DisablePolicyType. Use DescribeOrganization to see the availability of the policy types in that organization.

" } }, - "documentation":"

Contains details about a root. A root is a top-level parent node in the hierarchy of an organization that can contain organizational units (OUs) and accounts. Every root contains every AWS account in the organization. Each root enables the accounts to be organized in a different way and to have different policy types enabled for use in that root.

" + "documentation":"

Contains details about a root. A root is a top-level parent node in the hierarchy of an organization that can contain organizational units (OUs) and accounts. The root contains every AWS account in the organization.

" }, "RootArn":{ "type":"string", From 16af2fa67794d79cd991cd6325ce9be4a54661fc Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 16 Oct 2020 18:07:36 +0000 Subject: [PATCH 022/339] Updated endpoints.json. --- .../feature-AWSSDKforJavav2-e97801d.json | 5 +++ .../regions/internal/region/endpoints.json | 35 ++++++++++++++++--- 2 files changed, 35 insertions(+), 5 deletions(-) create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-e97801d.json diff --git a/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json b/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json new file mode 100644 index 000000000000..a695ba6944db --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS SDK for Java v2", + "description": "Updated service endpoint metadata." +} diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json index f0fc08e006af..3c2b60ac9273 100644 --- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json +++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json @@ -2951,7 +2951,12 @@ }, "health" : { "endpoints" : { - "us-east-1" : { } + "fips-us-east-2" : { + "credentialScope" : { + "region" : "us-east-2" + }, + "hostname" : "health-fips.us-east-2.amazonaws.com" + } } }, "honeycode" : { @@ -6841,6 +6846,11 @@ "cn-northwest-1" : { } } }, + "lakeformation" : { + "endpoints" : { + "cn-north-1" : { } + } + }, "lambda" : { "endpoints" : { "cn-north-1" : { }, @@ -7174,8 +7184,18 @@ }, "acm" : { "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } + "us-gov-east-1" : { + "credentialScope" : { + "region" : "us-gov-east-1" + }, + "hostname" : "acm.us-gov-east-1.amazonaws.com" + }, + "us-gov-west-1" : { + "credentialScope" : { + "region" : "us-gov-west-1" + }, + "hostname" : "acm.us-gov-west-1.amazonaws.com" + } } }, "acm-pca" : { @@ -8123,9 +8143,14 @@ "credentialScope" : { "region" : "us-gov-west-1" }, - "hostname" : "pinpoint.us-gov-west-1.amazonaws.com" + "hostname" : "pinpoint-fips.us-gov-west-1.amazonaws.com" }, - "us-gov-west-1" : { } + "us-gov-west-1" : { + "credentialScope" : { + "region" : "us-gov-west-1" + }, + "hostname" : "pinpoint.us-gov-west-1.amazonaws.com" + } } }, "polly" : { From 5e4c22ffb7ed8b7614a5be6a728c5dc374e4e373 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 16 Oct 2020 18:08:06 +0000 Subject: [PATCH 023/339] Release 2.15.9. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.9.json | 21 +++++++++++++++++++ ...feature-AWSElementalMediaLive-11055cf.json | 5 ----- .../feature-AWSOrganizations-57a6493.json | 5 ----- .../feature-AWSSDKforJavav2-e97801d.json | 5 ----- CHANGELOG.md | 13 ++++++++++++ README.md | 8 +++---- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- .../serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 286 files changed, 318 insertions(+), 299 deletions(-) create mode 100644 .changes/2.15.9.json delete mode 100644 .changes/next-release/feature-AWSElementalMediaLive-11055cf.json delete mode 100644 .changes/next-release/feature-AWSOrganizations-57a6493.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-e97801d.json diff --git a/.changes/2.15.9.json b/.changes/2.15.9.json new file mode 100644 index 000000000000..3bc1c441b5f2 --- /dev/null +++ b/.changes/2.15.9.json @@ -0,0 +1,21 @@ +{ + "version": "2.15.9", + "date": "2020-10-16", + "entries": [ + { + "type": "feature", + "category": "AWS Organizations", + "description": "Documentation updates for AWS Organizations." + }, + { + "type": "feature", + "category": "AWS Elemental MediaLive", + "description": "The AWS Elemental MediaLive APIs and SDKs now support the ability to transfer the ownership of MediaLive Link devices across AWS accounts." + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "description": "Updated service endpoint metadata." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSElementalMediaLive-11055cf.json b/.changes/next-release/feature-AWSElementalMediaLive-11055cf.json deleted file mode 100644 index 9b4ed3eeb580..000000000000 --- a/.changes/next-release/feature-AWSElementalMediaLive-11055cf.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS Elemental MediaLive", - "description": "The AWS Elemental MediaLive APIs and SDKs now support the ability to transfer the ownership of MediaLive Link devices across AWS accounts." -} diff --git a/.changes/next-release/feature-AWSOrganizations-57a6493.json b/.changes/next-release/feature-AWSOrganizations-57a6493.json deleted file mode 100644 index 343fe323a4fd..000000000000 --- a/.changes/next-release/feature-AWSOrganizations-57a6493.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS Organizations", - "description": "Documentation updates for AWS Organizations." -} diff --git a/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json b/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json deleted file mode 100644 index a695ba6944db..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS SDK for Java v2", - "description": "Updated service endpoint metadata." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index 69f7fc893069..d5ded23e1d82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# __2.15.9__ __2020-10-16__ +## __AWS Elemental MediaLive__ + - ### Features + - The AWS Elemental MediaLive APIs and SDKs now support the ability to transfer the ownership of MediaLive Link devices across AWS accounts. + +## __AWS Organizations__ + - ### Features + - Documentation updates for AWS Organizations. + +## __AWS SDK for Java v2__ + - ### Features + - Updated service endpoint metadata. + # __2.15.8__ __2020-10-15__ ## __AWS Budgets__ - ### Features diff --git a/README.md b/README.md index fd9f8c451137..398dde7c6b40 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.8 + 2.15.9 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.8 + 2.15.9 software.amazon.awssdk s3 - 2.15.8 + 2.15.9 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.8 + 2.15.9 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index dcfd0bb08eb6..a8e849b29a99 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index dfeae9c0d322..86f23bdb79d3 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 0ea2002bce62..98416cefb532 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.15.9-SNAPSHOT + 2.15.9 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 7be12f9f23a5..ceb6bf9ac82d 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 047dc457ba21..c8881cd4bd28 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.9-SNAPSHOT + 2.15.9 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 2eefc4cb8e40..091d50a5f256 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.9-SNAPSHOT + 2.15.9 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 721d847c4b01..786cce56dae3 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.15.9-SNAPSHOT + 2.15.9 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index beb930e4a69c..aec280238bb3 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.9-SNAPSHOT + 2.15.9 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index daf243642dbf..f093d128e7a3 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.15.9-SNAPSHOT + 2.15.9 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 0e9a94bd0890..933a148c72d3 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.9-SNAPSHOT + 2.15.9 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 70bcd593228c..dc8cc651db0f 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 0236a227d0c0..d784df34d46e 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 8162b63355ca..cd100d1a8711 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.9-SNAPSHOT + 2.15.9 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 8b2ff7eb3717..b35128404002 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.9-SNAPSHOT + 2.15.9 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index e20729a1bbbb..815968dc4093 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index bf85cecfb50d..7b892dd6591d 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 0f03ad85c4d8..ff7566894cda 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.9-SNAPSHOT + 2.15.9 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index d0de64c99878..df8e60873bcc 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.15.9-SNAPSHOT + 2.15.9 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index d15a218f28a1..dc7ac76f7851 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index ec7e564162b4..c4b7931c5acf 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.15.9-SNAPSHOT + 2.15.9 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 987efce34d81..ccd8a247616a 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.15.9-SNAPSHOT + 2.15.9 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index f9a0a01c4dab..20d72a9dbe6f 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.15.9-SNAPSHOT + 2.15.9 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 0bbe22128a15..5d9ed01f6e90 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 6068553ebb8c..eb11f3dd1ba0 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 5385988f612a..527fae238694 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.9-SNAPSHOT + 2.15.9 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index ccc7ae5576e1..3ace1e3dc93e 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.9-SNAPSHOT + 2.15.9 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 2f7bb27e2881..7c8c7304eda4 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.15.9-SNAPSHOT + 2.15.9 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 22df25b67fab..e525e45ad136 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.15.9-SNAPSHOT + 2.15.9 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index be59089ca8b3..1a8e325d7697 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.15.9-SNAPSHOT + 2.15.9 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 0a7dd38ed8d8..4337190a6034 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.15.9-SNAPSHOT + 2.15.9 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 4b89755e484e..43362545b7fb 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 069d7da3be55..db3d4c13df04 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.15.9-SNAPSHOT + 2.15.9 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 2d9ec8cd8021..e80e31f50db2 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.15.9-SNAPSHOT + 2.15.9 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 84e3cda50bc1..c9c5e9f7f48f 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.9-SNAPSHOT + 2.15.9 metric-publishers diff --git a/pom.xml b/pom.xml index 63e85de161ce..50f8471ce8cf 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.9-SNAPSHOT + 2.15.9 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 80ead5bc94fe..6d9f19ab0219 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.9-SNAPSHOT + 2.15.9 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index cee6f96d34bf..f5b558eb29de 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.15.9-SNAPSHOT + 2.15.9 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index c951f3879326..0e066bb702f5 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.9-SNAPSHOT + 2.15.9 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index ed6ffd047153..0672bebbf614 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 1d5d43c5a382..6c15439373d2 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index e3a045008b7f..10c7746fa3da 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 7f66c05d8bf4..0836f3ad7351 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 76c32fb3c0b0..364357b218d5 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 7cadddfb79fd..6c12b9594390 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index ed99387eec40..3a9118d9ae7b 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 4a31624fcbf3..e39aee9febb5 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 8123df52a1b7..dc57881c3f71 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index cf8e8d24c6ba..7496f5811827 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 385dd36dc195..6e294149afcf 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 8cbbdbbf18f3..b3f4432c2038 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 841e8bd07672..94186c133fc2 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index ef806f389edd..88d6d55d2fab 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 7a835a433ba5..13b98a87d7bd 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 2a9d0dea5d31..c0f43e885d45 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 51c91ad30be8..1a20fdb666d5 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index fbae87beb4d5..4f4e1463ff8f 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index b1c19e49db2d..123731915976 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index ad5ff6cad950..bd65fc94413e 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 263fb87355d5..0301a79a6fbc 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index f59f310ff61d..062909f39b30 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index f3a1f8431223..eb7c4384d77d 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index e9b2ff6da826..679dbd54c92a 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index a96e99b77ce1..32daacfdf520 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 25c59800fafd..6a4e9f76184a 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 5a6a9d8f9ec0..d96c34562a33 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 44d23d98c975..d6ed347a7379 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 806bce3621bf..baa432927730 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 5454e7f9d8bc..688f3d72e73a 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 7d741ff77909..070bfe1852a4 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 35e6e6b44f59..8480b4d298cf 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 9936917931b1..ae095b656bde 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 257bdc3a50cc..19aaa85bc430 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 0dbea0c9da7c..39d71c66454e 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 337d7089185b..ef717c8c01c5 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index bdb374cfa6f0..14d09ba28617 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 4f923f60db17..7a5612cf7534 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 5c357af428a3..6cba52a239d1 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 3abfe8f406a2..e24e50d67a42 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 7a4aa981cf7d..9faca90ae10b 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index e9ca8ee04cc1..9213f3374835 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 740817aec205..67bc047721c6 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 5257c8f4ce0e..b7cdd9509fd3 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 19034530f4b8..d89f187f2482 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index d17250ccb27b..fbf3ca0c0a48 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index e9fddf55a37a..18551d2e35e3 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 66fa8acb6cc4..994a376f2739 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 0e538829448b..7381cb2e4d05 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 39abf43cf855..af5142d84075 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 9d9ae561471f..9e59218f7ea9 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 81cc784b143e..d0577b060902 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index f5d02a3d5d92..2577bb05efce 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index d7d3ee89be1b..5006f662eeed 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 1967b47504c3..0bdab80dbeca 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 7a3023b8df6f..ffe5850192e5 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 144f09259716..cfe76d189d90 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 9def2034b23f..4da516e26e5f 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 998d4a420f86..5c736d5e6a51 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index d89e14e44439..5cf3998e32d8 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 74652eee9699..0451ff6d0df9 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 00848e91b9bb..4275b1777cb1 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 2c5137253e53..c93b6c506109 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index ec00763bf61f..8ced0e90fb9a 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index b15c49d4e537..10b6c5a6bc64 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index bdf7c3cc11a9..64174d9e65b9 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 0f665d49ad27..186a6d68e648 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 2386ee556fa4..4d369116048e 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index f0ea82135662..86e572a1cadd 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index e080de5382f5..dde23a8f18ff 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index ed505a289a32..34e26abb73f5 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index d4f3f8491e69..61762c76808b 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 0157a61fa14b..0a58191a5dce 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 574f24d848b6..8ab5f372b77b 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 98c7464a17d8..fcc5821b4348 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index d300f9050489..95867d5ba265 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 8f3644a4b437..8d46a281f2bc 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 61a3dc4e4c5b..f01788e0d7c8 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index f41c0491af7a..c142d48b1fca 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 19a8f01b1664..1d8cc637a458 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 16d7f8d32439..5ea5292596b5 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index b17261758b7e..39663bb6e7a4 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 268b9f504630..bb4bc4388c64 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 1e39d27ac0ed..47ee72cb9446 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index d70d876580f3..536fa33a2191 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index f71def982508..cb672e3c26cd 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 76a8abfcef10..e594ca89f15e 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 262d60ee8367..5f36059fee77 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index b688a0749e02..c0f9f43d3652 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 8995c8d9e4b9..0509d5d9d2e6 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index d388b8c4b5b7..31373e3b9a5a 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index c8a5530969fc..1493688f0c3c 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 781042191261..8def055c49c8 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index dac58be35d16..6e416c3da60f 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 19487ffe2b17..f65d6aad11d9 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 83d46386c5ef..eea4107cef16 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 66984edb6f1c..c0cd4d52afed 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index ed5d81ff1532..eef50c8647e7 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 46bcfc82f995..ad621cfaa1ba 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 307812c4fea8..03e940bef340 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 2cec644fb7b8..0b10aaf60e97 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 32721f83e29c..d8157b17e5d4 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 2760cffce35c..404556c90401 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 6f9869aca96d..5fcb42542d19 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index c27e14212ba5..9ca9d5107d63 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index ee3e00e4a9d4..4d90aa82e9fa 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 0dc512766f3d..335ac03f7a91 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 72488dadac78..b9c81ed9c3bb 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 33776b04a43c..3d20318dacd7 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 8881802903a0..36c399d34956 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index d613db9ee07a..e9a7b7e7dda9 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index dfce869b026f..d61d212042cd 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 7fb284306b52..9108cbcc22ba 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 64e7b1cac575..34a3dc4f0129 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 5723a94963c0..7004ae4b7c4c 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index b74b261eef9e..c052fd5ab408 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index f3a81937f41d..de26138cf37d 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index c3677a3280e9..1af29f90467a 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index e7bddcf32a94..159e8ad5acf2 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 6b69f6cd3269..7d53047de6cd 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index d6ca663da40e..c69b4151c7f0 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 5370574777b0..18798617add2 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 9dbed55b0115..a2a3de8c25c0 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index e8261d4549b7..7fe3486f8146 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index d39a2fcd13c9..c69f4ea85deb 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index d11a8df477dc..f4f8203f73da 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 70ce348075e2..bd3ed2b09fc1 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 0b915b8576ee..e186523df8a7 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index c30d1170bd8d..b1a90a198b72 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index c2d2e2965dc8..3102ff4cfa0a 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index a7e34ab5e48f..922a5d98f1c1 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index c2b0963249cd..0746ac6e1d22 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index a75c8c2ebf6e..0673759e0e49 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 0e876bada7ba..8b83d1dddfd6 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index eebfa2ed56b2..61699e7caec3 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index c1475c8890fc..e34831e012fd 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 933e6f1bcdb5..9c12d0ed2204 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index c7b90d70af32..ee9d86cc6b8e 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 2f4278dd7283..8cd74fdcd3b9 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 6367dfa64602..983ef1898c15 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index c8369cc99888..9ff59fa56585 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index fb634026681b..878617f76b07 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 670940f763e1..552268ad152a 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index b3c2e6d3c2a5..716b3f584b03 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 474f8ca7e1fe..82d74f536fc6 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 2f2ebdcc2369..9c020cd168c8 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 0c4573dc483c..9a0d032bf47b 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 72d5f34578f8..6bd6fc9b863c 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 67cb8956616f..d7649d5ff214 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index def239b0be29..08f8936bf15e 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 2f80f8a507d4..6ef5ab18dea8 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 02ca18d42475..d1d143370cec 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index faedf90632df..27e53cef3830 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index ef428ab4532c..7037bd67c5f8 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index d498ade71986..98a6bd1ad427 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index fb9480bdc5c2..58460a70cf72 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index ffc77c033e81..524893f2f8bd 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 3fb69b3ac3d3..ba827f37f230 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index ecf670d41702..39b615edafd0 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 0030e84f1f88..31e024be951c 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index ad77a0a65628..298e0182bfbc 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index d63f09e79255..ea9111947746 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index db0c61579b51..6fe2854a87e5 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 885325f3325c..11c46715a6d5 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 50079e5c8d75..026d2c019a95 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 57557e79b051..42bab7c5a0c5 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 20a827492448..ed71a138bf58 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index ed86e2d45f9a..197126fea7d2 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.9-SNAPSHOT + 2.15.9 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index ea75d7a45d6f..293a028b2419 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 242b6587cbdc..1548e04c8b8a 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 60e259fc3f84..c13de0711fa9 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 70d2bcdefdcf..d43bb3e8afc5 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index b5daa6e07cf8..14a7943deee7 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 75f23e12d31b..5799d38374f8 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 5f36a7a16530..c43455c0f875 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 451c10af3471..2a9b691def68 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index c2d3f75c6dfe..463dfd4ae1ab 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 48172408d567..c898ae1c9e32 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index d3ac5211bf85..a409a20a15b1 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index c187c542eb2b..e937180f0ade 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index b1172ed59b03..b9e0e08716e3 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index d38d37257f8e..8cc6c3400b1e 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 07cc340fc6ee..c6a36e4b3964 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 3d8ce6dad2fe..cd27a2b7133d 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index b70f3dc7da23..38d6b3a0c882 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index b0947b11c321..f100c2b748ab 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 65894edad64b..9905dfaca580 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index e3ce2941b8ff..7975a0ea5d18 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 000a78888207..f7bc50d7a95a 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index fdb7c713fedf..b80eaf2d7180 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 19305d34364c..a7626b8546bd 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index c86400caf94c..07bd7c2575b0 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 8af82b7b9bd4..7d21526d935b 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 29d691d99224..e96d75ff4919 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 0d2fa570cfb1..66b8f6117252 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index e4b135ad731e..86444da7b8e8 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index f8d1da1b1a41..795244160f7e 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index e8e2df3f66c1..ca1619556db7 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 50891a37529e..db68fbc7d57a 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 4d9dacf33163..2f142d551998 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 766d4a19b1c5..c31a402ffa86 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 071d3e36cc94..abe162fcec75 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 7259e976f844..d6fbfef70834 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index df4dc2d3ab60..6b88d35bbb13 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 5250b9eb2f40..cbc7b5c879e0 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index ff9b6b8be64c..c554a49baf1e 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index fda5d56bffc7..4d8a08fe2161 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index d4d373f0787d..e05175731d65 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 42c83e2ef11d..0d161ff27954 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 5a7fdd0f3d6a..0007d4b2f6fc 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index d0bc5ef00be0..b866740182c0 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 4765d24245c6..cc6149340430 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 7554a0678dca..aae36f5615ac 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index b23d5f9c5010..45d164aa6bae 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 9c700304bc35..a2009072ee25 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 47fb9100025e..8f66be80d5bd 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 368ac0531624..559333683ca7 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 3b08fbbba234..11ef1c1f3592 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 89ce65a3be52..a1894a007fd0 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index b6a4742184cc..1e8d5b571b71 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 617a780ae338..2cc12ff58a9b 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index ecefb66574d5..776a99fda8af 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index f14fddaf7164..c3bee89db622 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 179b0087579a..fcd7801a43fe 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 82ce892b74ed..9ee4d048bfdb 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 2a953da05c65..b6491ed6515b 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 54ea800c59c3..1dc25b394696 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 8ba42bb54cd4..956e444e5cb5 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 05c190584337..a2a5176a3199 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 52e7b007a7c1..1309028335e1 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 7ac3ba56d9d9..c1d300cb980f 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9-SNAPSHOT + 2.15.9 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 86fbc3053889..56653860807b 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.15.9-SNAPSHOT + 2.15.9 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 6f71b4c63021..65137e55cd98 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.15.9-SNAPSHOT + 2.15.9 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 26cd7aa7d02d..a353990f7ae1 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.15.9-SNAPSHOT + 2.15.9 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index a7042e606325..8af3b3282cfe 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.15.9-SNAPSHOT + 2.15.9 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 230cd3138a8c..359e67e28311 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.15.9-SNAPSHOT + 2.15.9 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index af9a56686678..4c7c25950795 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.9-SNAPSHOT + 2.15.9 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 404334193553..4a182051c1b4 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.15.9-SNAPSHOT + 2.15.9 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index fb42ef6dc439..6c7532159138 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.15.9-SNAPSHOT + 2.15.9 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index a78021b906a5..5586eee931d7 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.15.9-SNAPSHOT + 2.15.9 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 1430118c520a..863556cd09bb 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.15.9-SNAPSHOT + 2.15.9 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 0b9d2de8cfd5..483870e65a69 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.9-SNAPSHOT + 2.15.9 4.0.0 From 367d97342509d16b145613bde66e9acf78179077 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 16 Oct 2020 18:48:50 +0000 Subject: [PATCH 024/339] Update to next snapshot version: 2.15.10-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 280 files changed, 280 insertions(+), 280 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index a8e849b29a99..c3f797370d23 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 86f23bdb79d3..a4137838a438 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 98416cefb532..6b63d803a434 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.15.9 + 2.15.10-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index ceb6bf9ac82d..c74bda1e054b 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index c8881cd4bd28..d321949a12a9 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.9 + 2.15.10-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 091d50a5f256..62f2531e0a5f 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.9 + 2.15.10-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 786cce56dae3..2719ce169fab 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.15.9 + 2.15.10-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index aec280238bb3..6552ea936bc6 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.9 + 2.15.10-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index f093d128e7a3..b786bd91dfdf 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.15.9 + 2.15.10-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 933a148c72d3..8cc68de3c69c 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.9 + 2.15.10-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index dc8cc651db0f..acebd8d94606 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index d784df34d46e..e1bc4bce0efc 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index cd100d1a8711..9ce102148eb8 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.9 + 2.15.10-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index b35128404002..680ca5d0d3a0 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.9 + 2.15.10-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 815968dc4093..75ee98e8b4fc 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 7b892dd6591d..3e7e5fdf2822 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index ff7566894cda..5ccbee8e4e46 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.9 + 2.15.10-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index df8e60873bcc..8d52558e5750 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.15.9 + 2.15.10-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index dc7ac76f7851..bebac2214e80 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index c4b7931c5acf..6d6ebd6368d8 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.15.9 + 2.15.10-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index ccd8a247616a..f8d755d5c7df 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.15.9 + 2.15.10-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 20d72a9dbe6f..e8473864b36e 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.15.9 + 2.15.10-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 5d9ed01f6e90..83263ded07a0 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index eb11f3dd1ba0..7a094fdb76d0 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 527fae238694..31e925bdc42f 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.9 + 2.15.10-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 3ace1e3dc93e..3bdc21c7e93e 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.9 + 2.15.10-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 7c8c7304eda4..2d2bcf4d638a 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.15.9 + 2.15.10-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index e525e45ad136..9d7258ef4d3f 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.15.9 + 2.15.10-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 1a8e325d7697..1756dfdb0f0c 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.15.9 + 2.15.10-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 4337190a6034..b4f974d753e0 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.15.9 + 2.15.10-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 43362545b7fb..d7de29bf6570 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index db3d4c13df04..916e81073f8b 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.15.9 + 2.15.10-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index e80e31f50db2..6824bf718a3e 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.15.9 + 2.15.10-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index c9c5e9f7f48f..25fc1572a1c5 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.9 + 2.15.10-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 50f8471ce8cf..4e0a6ff94fcb 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.9 + 2.15.10-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 6d9f19ab0219..a659951c768a 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.9 + 2.15.10-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index f5b558eb29de..409dfefadf82 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.15.9 + 2.15.10-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 0e066bb702f5..5fd9ae202626 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.9 + 2.15.10-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 0672bebbf614..8b396de47305 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 6c15439373d2..36ceafd58c64 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 10c7746fa3da..2e1bc22cbc58 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 0836f3ad7351..75c1fcfa924a 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 364357b218d5..86199babf24a 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 6c12b9594390..4e9df3467bd1 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 3a9118d9ae7b..6efb5e5627e3 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index e39aee9febb5..f35b4ab09fc1 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index dc57881c3f71..216a5bfa68de 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 7496f5811827..65e59530c782 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 6e294149afcf..0168757c5244 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index b3f4432c2038..7f95e57fb28b 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 94186c133fc2..fe866f8a6067 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 88d6d55d2fab..1f9e876cdce0 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 13b98a87d7bd..0f6659a4bfa2 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index c0f43e885d45..e64aa99989da 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 1a20fdb666d5..ca43be71b52a 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 4f4e1463ff8f..2912827d87fd 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 123731915976..efb8f804352f 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index bd65fc94413e..1b105c167cf5 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 0301a79a6fbc..31b47f1de71e 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 062909f39b30..bfd849a7c3fe 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index eb7c4384d77d..a1d9b7041cd2 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 679dbd54c92a..3b24a7a8f55f 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 32daacfdf520..3cbf2e2ebf37 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 6a4e9f76184a..d03593ffe8c4 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index d96c34562a33..c5c57270defd 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index d6ed347a7379..0b7cdc064c7d 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index baa432927730..2dc6a5fab68a 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 688f3d72e73a..fcbe9e38296b 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 070bfe1852a4..26861dd72b1d 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 8480b4d298cf..152a60f19114 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index ae095b656bde..9a984a86570f 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 19aaa85bc430..e376b623ee5e 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 39d71c66454e..a04d8e6959b9 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index ef717c8c01c5..06311ebc5aa2 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 14d09ba28617..d85e5f66ace1 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 7a5612cf7534..5b5d922e0d1a 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 6cba52a239d1..05fd8f62814b 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index e24e50d67a42..4d605cc5275b 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 9faca90ae10b..6cfb51f6f058 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 9213f3374835..aee87ff5c5ca 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 67bc047721c6..cf432ba396b8 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index b7cdd9509fd3..a87e41c27578 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index d89f187f2482..c5f85d219ab2 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index fbf3ca0c0a48..f9dfeba9be79 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 18551d2e35e3..bea6626c7b43 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 994a376f2739..fd104e656e35 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 7381cb2e4d05..02e2496cbe22 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index af5142d84075..b72dcf82634c 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 9e59218f7ea9..72d2e5519696 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index d0577b060902..b9cce0f61bc4 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 2577bb05efce..d164524d3def 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 5006f662eeed..5589eca52ec2 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 0bdab80dbeca..43e9b31cc5aa 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index ffe5850192e5..66f58c128a3a 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index cfe76d189d90..b02ebade15a6 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 4da516e26e5f..4f51f3329f2b 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 5c736d5e6a51..96eaf843d03f 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 5cf3998e32d8..455296a22288 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 0451ff6d0df9..4204c61fa6f6 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 4275b1777cb1..57257fcc06a0 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index c93b6c506109..dc1685fc18ee 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 8ced0e90fb9a..680f599ca8b0 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 10b6c5a6bc64..37b20e98a934 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 64174d9e65b9..3fffd2203bb0 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 186a6d68e648..fe010bf447f1 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 4d369116048e..8fc6fa4b9986 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 86e572a1cadd..ae766fb83ccb 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index dde23a8f18ff..e6d7dce88597 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 34e26abb73f5..ba686eaacf1b 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 61762c76808b..1269c58a322d 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 0a58191a5dce..05e3ac1d15a5 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 8ab5f372b77b..61f17f1a4a80 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index fcc5821b4348..9a0b33ac17e4 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 95867d5ba265..1eb1db084d16 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 8d46a281f2bc..5df9a4e8dd88 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index f01788e0d7c8..7ba3b0561a7c 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index c142d48b1fca..0b209529e5a6 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 1d8cc637a458..bf042c19ea1d 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 5ea5292596b5..85e7b8559eeb 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 39663bb6e7a4..3a821b097476 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index bb4bc4388c64..07be70140fde 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 47ee72cb9446..63642779688d 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 536fa33a2191..a96456a035ea 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index cb672e3c26cd..f0a40cf3a2c8 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index e594ca89f15e..1842de94ff06 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 5f36059fee77..eb1e5cf2dea3 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index c0f9f43d3652..57cebef4830d 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 0509d5d9d2e6..2a2fdaa4cc61 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 31373e3b9a5a..a07db9c31ba6 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 1493688f0c3c..6686c200f3d6 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 8def055c49c8..8fdeb4fec3a2 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 6e416c3da60f..630ab8c48017 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index f65d6aad11d9..15e74631376a 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index eea4107cef16..95c72a09312b 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index c0cd4d52afed..601d3224309a 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index eef50c8647e7..c59524206ab1 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index ad621cfaa1ba..57a463067b7e 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 03e940bef340..97c19857e9d1 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 0b10aaf60e97..89c2c84313c6 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index d8157b17e5d4..617b7eb7ff8b 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 404556c90401..713d27451225 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 5fcb42542d19..1df75568797c 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 9ca9d5107d63..44d33371028c 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 4d90aa82e9fa..dda545b0cb2b 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 335ac03f7a91..884582973423 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index b9c81ed9c3bb..dfe0a08f4c89 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 3d20318dacd7..3c5020b07d16 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 36c399d34956..544772dd76fc 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index e9a7b7e7dda9..0506c7f13218 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index d61d212042cd..4bd0c8313b3d 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 9108cbcc22ba..f6eb138a44be 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 34a3dc4f0129..cb3e9f7992bf 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 7004ae4b7c4c..16d997eace48 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index c052fd5ab408..1eeea15f9e29 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index de26138cf37d..8d3639f4e7c5 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 1af29f90467a..f541f66874f1 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 159e8ad5acf2..4949deab6e06 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 7d53047de6cd..734d308ba213 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index c69b4151c7f0..9dcfd39a5d8d 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 18798617add2..8b418b2368b4 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index a2a3de8c25c0..7493f5ad1362 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 7fe3486f8146..05b1c2615799 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index c69f4ea85deb..f64a06e491e3 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index f4f8203f73da..98f50467580d 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index bd3ed2b09fc1..8b91349ecf9a 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index e186523df8a7..9b219e2050f1 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index b1a90a198b72..37ce12f03af5 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 3102ff4cfa0a..78c501cf308f 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 922a5d98f1c1..ec6443f62057 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 0746ac6e1d22..17e174d90a83 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 0673759e0e49..f3c801068002 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 8b83d1dddfd6..794bf49e56c1 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 61699e7caec3..369fde53f533 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index e34831e012fd..3843ecbdd021 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 9c12d0ed2204..a753f0f3683f 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index ee9d86cc6b8e..482e26559bdc 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 8cd74fdcd3b9..f3fbd72cb97f 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 983ef1898c15..ef66061b5d8e 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 9ff59fa56585..3bf4c4bd4ea9 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 878617f76b07..0def29c0eb57 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 552268ad152a..d9c9d109b939 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 716b3f584b03..8747468200a7 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 82d74f536fc6..c1d181fcc0ed 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 9c020cd168c8..83c8b0f6052a 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 9a0d032bf47b..4a1a54216534 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 6bd6fc9b863c..8817f2d11aef 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index d7649d5ff214..25b7fc55f9ee 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 08f8936bf15e..4f805720cc68 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 6ef5ab18dea8..a19fe36cce2a 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index d1d143370cec..84c76642be54 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 27e53cef3830..ee3dbdfc0807 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 7037bd67c5f8..0649307ecb8b 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 98a6bd1ad427..1d97d33a94c7 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 58460a70cf72..50ddf0dffd48 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 524893f2f8bd..d80d4b3c9586 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index ba827f37f230..ff82e67e342a 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 39b615edafd0..9783f54538b2 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 31e024be951c..71972e497495 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 298e0182bfbc..7b130b3477bb 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index ea9111947746..a58b8bb77e8c 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 6fe2854a87e5..cb60e330c092 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 11c46715a6d5..2c14bdfa33f2 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 026d2c019a95..2bbff5b0ea23 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 42bab7c5a0c5..2be536f243d9 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index ed71a138bf58..6c0ec0681c94 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 197126fea7d2..8defb0507fdb 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.9 + 2.15.10-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 293a028b2419..9e476b385c70 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 1548e04c8b8a..4a276d21aee2 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index c13de0711fa9..f4a1c64167f3 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index d43bb3e8afc5..95ace713f556 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 14a7943deee7..2bf4d19521f5 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 5799d38374f8..b2bf94325921 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index c43455c0f875..a6690af7e819 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 2a9b691def68..306e70669961 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 463dfd4ae1ab..582bb530b190 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index c898ae1c9e32..5cd2a147071c 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index a409a20a15b1..87163229a70a 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index e937180f0ade..640dfe82d219 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index b9e0e08716e3..c567f02b610e 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 8cc6c3400b1e..ce791223b222 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index c6a36e4b3964..d59d6ef208cb 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index cd27a2b7133d..3178700e9908 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 38d6b3a0c882..302dd8ee9737 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index f100c2b748ab..6f65e6328dbb 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 9905dfaca580..8db55377146b 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 7975a0ea5d18..36079841d3e1 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index f7bc50d7a95a..f9ef3a76b0d3 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index b80eaf2d7180..88589822c86a 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index a7626b8546bd..d03e8620d6be 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 07bd7c2575b0..4d1987aeec3f 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 7d21526d935b..fa57ec0f3b55 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index e96d75ff4919..e3295bdeb37c 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 66b8f6117252..c7be21b836ad 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 86444da7b8e8..669a70adb549 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 795244160f7e..107dce3a0bcc 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index ca1619556db7..3b1f2afe6fa6 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index db68fbc7d57a..70207e346a1f 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 2f142d551998..c999600a1346 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index c31a402ffa86..b47903d97b52 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index abe162fcec75..6920368780b6 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index d6fbfef70834..4007541b98a9 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 6b88d35bbb13..6749c2d51c2a 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index cbc7b5c879e0..2d1288dc7183 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index c554a49baf1e..caf9ab5c8e5d 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 4d8a08fe2161..493d36066e99 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index e05175731d65..c03bff31f0bb 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 0d161ff27954..6102a752e369 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 0007d4b2f6fc..1fa5476df00b 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index b866740182c0..0a3eded61e66 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index cc6149340430..6cf1c888a985 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index aae36f5615ac..f20173ef0fbe 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 45d164aa6bae..c63563491ee1 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index a2009072ee25..04df1230e534 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 8f66be80d5bd..27c80251957e 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 559333683ca7..9a3ec3fca52f 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 11ef1c1f3592..208bf72e8436 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index a1894a007fd0..db62c09d22f4 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 1e8d5b571b71..994c3b873c76 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 2cc12ff58a9b..2f39df3afd90 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 776a99fda8af..75296f3f71ed 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index c3bee89db622..ab6e4fff5e16 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index fcd7801a43fe..584015ca30c9 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 9ee4d048bfdb..aedbb79a8f31 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index b6491ed6515b..bae8bb1d00e3 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 1dc25b394696..bb5586474ee6 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 956e444e5cb5..90cffcb44d24 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index a2a5176a3199..9c016cc609bc 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 1309028335e1..59e0c4c8505e 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index c1d300cb980f..ccc6aff0050e 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.9 + 2.15.10-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 56653860807b..2cb3946198cf 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.15.9 + 2.15.10-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 65137e55cd98..7065fad6de38 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.15.9 + 2.15.10-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index a353990f7ae1..3522c7aa5899 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.15.9 + 2.15.10-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 8af3b3282cfe..18d4a2ad4706 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.15.9 + 2.15.10-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 359e67e28311..a482fe7ef22c 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.15.9 + 2.15.10-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 4c7c25950795..fdeb16564ae2 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.9 + 2.15.10-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 4a182051c1b4..c2bcd349fb08 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.15.9 + 2.15.10-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 6c7532159138..8e2234c0f35b 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.15.9 + 2.15.10-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 5586eee931d7..4b9c58d06c19 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.15.9 + 2.15.10-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 863556cd09bb..e7a42fdb21a2 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.15.9 + 2.15.10-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 483870e65a69..10abd614aef9 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.9 + 2.15.10-SNAPSHOT 4.0.0 From 30660f43ec485b20b39d7ea6743bdf43b2b7faa1 Mon Sep 17 00:00:00 2001 From: Bert Roex Date: Tue, 13 Oct 2020 19:01:26 +0200 Subject: [PATCH 025/339] feature 2034: SdkHttpFullRequest builder.uri keep query parameters of provided URI --- .../feature-HTTPclientspi-25d1ed9.json | 5 ++ .../awssdk/http/SdkHttpFullRequest.java | 12 +++- .../amazon/awssdk/http/SdkHttpRequest.java | 12 +++- .../http/SdkHttpRequestResponseTest.java | 64 ++++++++++++++++++- .../awssdk/utils/http/SdkHttpUtils.java | 19 ++++++ .../amazon/awssdk/utils/SdkHttpUtilsTest.java | 47 ++++++++++++++ 6 files changed, 152 insertions(+), 7 deletions(-) create mode 100644 .changes/next-release/feature-HTTPclientspi-25d1ed9.json diff --git a/.changes/next-release/feature-HTTPclientspi-25d1ed9.json b/.changes/next-release/feature-HTTPclientspi-25d1ed9.json new file mode 100644 index 000000000000..375e9a107605 --- /dev/null +++ b/.changes/next-release/feature-HTTPclientspi-25d1ed9.json @@ -0,0 +1,5 @@ +{ + "category": "HTTP Client SPI", + "type": "feature", + "description": "Calling the SdkHttpFullRequest uri() builder method, query parameters of the provided URI will be kept.\nThis can be useful in case you want to provide an already fully formed URI like a callback URI." +} diff --git a/http-client-spi/src/main/java/software/amazon/awssdk/http/SdkHttpFullRequest.java b/http-client-spi/src/main/java/software/amazon/awssdk/http/SdkHttpFullRequest.java index 474a6b49a8cf..b4e945e17327 100644 --- a/http-client-spi/src/main/java/software/amazon/awssdk/http/SdkHttpFullRequest.java +++ b/http-client-spi/src/main/java/software/amazon/awssdk/http/SdkHttpFullRequest.java @@ -57,18 +57,24 @@ static SdkHttpFullRequest.Builder builder() { */ interface Builder extends SdkHttpRequest.Builder { /** - * Convenience method to set the {@link #protocol()}, {@link #host()}, {@link #port()}, and - * {@link #encodedPath()} from a {@link URI} object. + * Convenience method to set the {@link #protocol()}, {@link #host()}, {@link #port()}, + * {@link #encodedPath()} and extracts query parameters from a {@link URI} object. * * @param uri URI containing protocol, host, port and path. * @return This builder for method chaining. */ @Override default Builder uri(URI uri) { - return this.protocol(uri.getScheme()) + Builder builder = this.protocol(uri.getScheme()) .host(uri.getHost()) .port(uri.getPort()) .encodedPath(SdkHttpUtils.appendUri(uri.getRawPath(), encodedPath())); + if (uri.getRawQuery() != null) { + builder.clearQueryParameters(); + SdkHttpUtils.uriParams(uri) + .forEach(this::putRawQueryParameter); + } + return builder; } /** diff --git a/http-client-spi/src/main/java/software/amazon/awssdk/http/SdkHttpRequest.java b/http-client-spi/src/main/java/software/amazon/awssdk/http/SdkHttpRequest.java index d49f824d3a9b..088d9cd2c69e 100644 --- a/http-client-spi/src/main/java/software/amazon/awssdk/http/SdkHttpRequest.java +++ b/http-client-spi/src/main/java/software/amazon/awssdk/http/SdkHttpRequest.java @@ -135,17 +135,23 @@ default URI getUri() { */ interface Builder extends CopyableBuilder { /** - * Convenience method to set the {@link #protocol()}, {@link #host()}, {@link #port()}, and - * {@link #encodedPath()} from a {@link URI} object. + * Convenience method to set the {@link #protocol()}, {@link #host()}, {@link #port()}, + * {@link #encodedPath()} and extracts query parameters from a {@link URI} object. * * @param uri URI containing protocol, host, port and path. * @return This builder for method chaining. */ default Builder uri(URI uri) { - return this.protocol(uri.getScheme()) + Builder builder = this.protocol(uri.getScheme()) .host(uri.getHost()) .port(uri.getPort()) .encodedPath(SdkHttpUtils.appendUri(uri.getRawPath(), encodedPath())); + if (uri.getRawQuery() != null) { + builder.clearQueryParameters(); + SdkHttpUtils.uriParams(uri) + .forEach(this::putRawQueryParameter); + } + return builder; } /** diff --git a/http-client-spi/src/test/java/software/amazon/awssdk/http/SdkHttpRequestResponseTest.java b/http-client-spi/src/test/java/software/amazon/awssdk/http/SdkHttpRequestResponseTest.java index 3848b6407b78..875e664d4303 100644 --- a/http-client-spi/src/test/java/software/amazon/awssdk/http/SdkHttpRequestResponseTest.java +++ b/http-client-spi/src/test/java/software/amazon/awssdk/http/SdkHttpRequestResponseTest.java @@ -22,9 +22,10 @@ import static org.assertj.core.api.Assertions.assertThatExceptionOfType; import static org.assertj.core.api.Assertions.assertThatThrownBy; +import java.net.URI; +import java.net.URISyntaxException; import java.util.AbstractMap; import java.util.Arrays; -import java.util.Collections; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; @@ -401,13 +402,74 @@ public Map> getMap() { }); } + @Test + public void testSdkHttpFullRequestBuilderNoQueryParams() { + URI uri = URI.create("https://github.com/aws/aws-sdk-java-v2/issues/2034"); + final SdkHttpFullRequest sdkHttpFullRequest = SdkHttpFullRequest.builder().method(SdkHttpMethod.POST).uri(uri).build(); + assertThat(sdkHttpFullRequest.getUri().getQuery()).isNullOrEmpty(); + } + + @Test + public void testSdkHttpFullRequestBuilderUriWithQueryParams() { + URI uri = URI.create("https://github.com/aws/aws-sdk-java-v2/issues/2034?reqParam=1234&oParam=3456%26reqParam%3D5678"); + final SdkHttpFullRequest sdkHttpFullRequest = + SdkHttpFullRequest.builder().method(SdkHttpMethod.POST).uri(uri).build(); + assertThat(sdkHttpFullRequest.getUri().getQuery()).contains("reqParam=1234", "oParam=3456&reqParam=5678"); + } + + @Test + public void testSdkHttpFullRequestBuilderUriWithQueryParamWithoutValue() { + final String expected = "https://github.com/aws/aws-sdk-for-java-v2?foo"; + URI myUri = URI.create(expected); + SdkHttpFullRequest actual = SdkHttpFullRequest.builder().method(SdkHttpMethod.POST).uri(myUri).build(); + assertThat(actual.getUri()).hasToString(expected); + } + + @Test + public void testSdkHttpRequestBuilderNoQueryParams() { + URI uri = URI.create("https://github.com/aws/aws-sdk-java-v2/issues/2034"); + final SdkHttpRequest sdkHttpRequest = SdkHttpRequest.builder().method(SdkHttpMethod.POST).uri(uri).build(); + assertThat(sdkHttpRequest.getUri().getQuery()).isNullOrEmpty(); + } + + @Test + public void testSdkHttpRequestBuilderUriWithQueryParams() { + URI uri = URI.create("https://github.com/aws/aws-sdk-java-v2/issues/2034?reqParam=1234&oParam=3456%26reqParam%3D5678"); + final SdkHttpRequest sdkHttpRequest = + SdkHttpRequest.builder().method(SdkHttpMethod.POST).uri(uri).build(); + assertThat(sdkHttpRequest.getUri().getQuery()).contains("reqParam=1234", "oParam=3456&reqParam=5678"); + } + + @Test + public void testSdkHttpRequestBuilderUriWithQueryParamsIgnoreOtherQueryParams() { + URI uri = URI.create("https://github.com/aws/aws-sdk-java-v2/issues/2034?reqParam=1234&oParam=3456%26reqParam%3D5678"); + final SdkHttpRequest sdkHttpRequest = + SdkHttpRequest.builder().method(SdkHttpMethod.POST).appendRawQueryParameter("clean", "up").uri(uri).build(); + assertThat(sdkHttpRequest.getUri().getQuery()).contains("reqParam=1234", "oParam=3456&reqParam=5678") + .doesNotContain("clean"); + } + + @Test + public void testSdkHttpRequestBuilderUriWithQueryParamWithoutValue() { + final String expected = "https://github.com/aws/aws-sdk-for-java-v2?foo"; + URI myUri = URI.create(expected); + SdkHttpRequest actual = SdkHttpRequest.builder().method(SdkHttpMethod.POST).uri(myUri).build(); + assertThat(actual.getUri()).hasToString(expected); + } + private interface BuilderProxy { BuilderProxy setValue(String key, String value); + BuilderProxy appendValue(String key, String value); + BuilderProxy setValues(String key, List values); + BuilderProxy removeValue(String key); + BuilderProxy clearValues(); + BuilderProxy setMap(Map> map); + Map> getMap(); } diff --git a/utils/src/main/java/software/amazon/awssdk/utils/http/SdkHttpUtils.java b/utils/src/main/java/software/amazon/awssdk/utils/http/SdkHttpUtils.java index b1d2fa7773c9..263850cfe3f8 100644 --- a/utils/src/main/java/software/amazon/awssdk/utils/http/SdkHttpUtils.java +++ b/utils/src/main/java/software/amazon/awssdk/utils/http/SdkHttpUtils.java @@ -15,6 +15,9 @@ package software.amazon.awssdk.utils.http; +import static java.util.stream.Collectors.groupingBy; +import static java.util.stream.Collectors.mapping; +import static java.util.stream.Collectors.toList; import static software.amazon.awssdk.utils.FunctionalUtils.invokeSafely; import java.io.UnsupportedEncodingException; @@ -30,6 +33,7 @@ import java.util.Optional; import java.util.Set; import java.util.function.UnaryOperator; +import java.util.regex.Pattern; import java.util.stream.Collectors; import java.util.stream.Stream; import software.amazon.awssdk.annotations.SdkProtectedApi; @@ -52,6 +56,9 @@ public final class SdkHttpUtils { private static final String[] ENCODED_CHARACTERS_WITHOUT_SLASHES = new String[] {"+", "*", "%7E"}; private static final String[] ENCODED_CHARACTERS_WITHOUT_SLASHES_REPLACEMENTS = new String[] {"%20", "%2A", "~"}; + private static final String QUERY_PARAM_DELIMITER_REGEX = "\\s*&\\s*"; + private static final Pattern QUERY_PARAM_DELIMITER_PATTERN = Pattern.compile(QUERY_PARAM_DELIMITER_REGEX); + // List of headers that may appear only once in a request; i.e. is not a list of values. // Taken from https://github.com/apache/httpcomponents-client/blob/81c1bc4dc3ca5a3134c5c60e8beff08be2fd8792/httpclient5-cache/src/test/java/org/apache/hc/client5/http/impl/cache/HttpTestUtils.java#L69-L85 with modifications: // removed: accept-ranges, if-match, if-none-match, vary since it looks like they're defined as lists @@ -62,6 +69,7 @@ public final class SdkHttpUtils { "proxy-authorization", "range", "referer", "retry-after", "server", "user-agent") .collect(Collectors.toSet()); + private SdkHttpUtils() { } @@ -322,4 +330,15 @@ public static Optional firstMatchingHeaderFromCollection(Map> uriParams(URI uri) { + return QUERY_PARAM_DELIMITER_PATTERN + .splitAsStream(uri.getRawQuery().trim()) + .map(s -> s.contains("=") ? s.split("=", 2) : new String[] {s, null}) + .collect(groupingBy(a -> urlDecode(a[0]), mapping(a -> urlDecode(a[1]), toList()))); + } + } diff --git a/utils/src/test/java/software/amazon/awssdk/utils/SdkHttpUtilsTest.java b/utils/src/test/java/software/amazon/awssdk/utils/SdkHttpUtilsTest.java index 0d885deb410e..e514974efc90 100644 --- a/utils/src/test/java/software/amazon/awssdk/utils/SdkHttpUtilsTest.java +++ b/utils/src/test/java/software/amazon/awssdk/utils/SdkHttpUtilsTest.java @@ -19,7 +19,12 @@ import static java.util.Collections.singletonList; import static org.assertj.core.api.Assertions.assertThat; import static org.assertj.core.api.Assertions.assertThatExceptionOfType; +import static org.assertj.core.api.Assertions.entry; +import java.net.URI; +import java.net.URISyntaxException; +import java.util.ArrayList; +import java.util.Arrays; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashMap; @@ -173,4 +178,46 @@ public void headersFromCollectionWorksCorrectly() { assertThat(SdkHttpUtils.firstMatchingHeaderFromCollection(headers, asList("foo", "nothing"))).hasValue("bar"); assertThat(SdkHttpUtils.firstMatchingHeaderFromCollection(headers, asList("foo", "other"))).hasValue("foo"); } + + @Test + public void isSingleHeader() { + assertThat(SdkHttpUtils.isSingleHeader("age")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("authorization")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("content-length")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("content-location")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("content-md5")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("content-range")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("content-type")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("date")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("etag")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("expires")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("from")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("host")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("if-modified-since")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("if-range")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("if-unmodified-since")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("last-modified")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("location")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("max-forwards")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("proxy-authorization")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("range")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("referer")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("retry-after")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("server")).isTrue(); + assertThat(SdkHttpUtils.isSingleHeader("user-agent")).isTrue(); + + assertThat(SdkHttpUtils.isSingleHeader("custom")).isFalse(); + } + + @Test + public void uriParams() throws URISyntaxException { + URI uri = URI.create("https://github.com/aws/aws-sdk-java-v2/issues/2034?reqParam=1234&oParam=3456&reqParam=5678&noval" + + "&decoded%26Part=equals%3Dval"); + Map> uriParams = SdkHttpUtils.uriParams(uri); + assertThat(uriParams).contains(entry("reqParam", Arrays.asList("1234", "5678")), + entry("oParam", Collections.singletonList("3456")), + entry("noval", Arrays.asList((String)null)), + entry("decoded&Part", Arrays.asList("equals=val"))); + } + } From ff91a2945789c98b79313bdafbc23da1bcd6b7dd Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 19 Oct 2020 18:04:10 +0000 Subject: [PATCH 026/339] AWS Backup Update: Documentation updates for Cryo --- .changes/next-release/feature-AWSBackup-09ca08c.json | 5 +++++ .../main/resources/codegen-resources/service-2.json | 12 ++++++------ 2 files changed, 11 insertions(+), 6 deletions(-) create mode 100644 .changes/next-release/feature-AWSBackup-09ca08c.json diff --git a/.changes/next-release/feature-AWSBackup-09ca08c.json b/.changes/next-release/feature-AWSBackup-09ca08c.json new file mode 100644 index 000000000000..4f53799f2288 --- /dev/null +++ b/.changes/next-release/feature-AWSBackup-09ca08c.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS Backup", + "description": "Documentation updates for Cryo" +} diff --git a/services/backup/src/main/resources/codegen-resources/service-2.json b/services/backup/src/main/resources/codegen-resources/service-2.json index f561ab3413f6..e8a20ce8eb30 100644 --- a/services/backup/src/main/resources/codegen-resources/service-2.json +++ b/services/backup/src/main/resources/codegen-resources/service-2.json @@ -703,7 +703,7 @@ {"shape":"MissingParameterValueException"}, {"shape":"ServiceUnavailableException"} ], - "documentation":"

Recovers the saved resource identified by an Amazon Resource Name (ARN).

If the resource ARN is included in the request, then the last complete backup of that resource is recovered. If the ARN of a recovery point is supplied, then that recovery point is restored.

", + "documentation":"

Recovers the saved resource identified by an Amazon Resource Name (ARN).

", "idempotent":true }, "StopBackupJob":{ @@ -819,7 +819,7 @@ }, "BackupOptions":{ "shape":"BackupOptions", - "documentation":"

Specifies the backup option for a selected resource. This option is only available for Windows VSS backup jobs.

Valid value: \"WindowsVSS”:“enabled\". If enabled, creates a VSS Windows backup; otherwise, creates a regular backup.

If you specify an invalid option, you get an InvalidParameterValueException exception.

For more information about Windows VSS backups, see Creating a VSS-Enabled Windows Backup.

" + "documentation":"

Specifies the backup option for a selected resource. This option is only available for Windows VSS backup jobs.

Valid values: Set to \"WindowsVSS”:“enabled\" to enable WindowsVSS backup option and create a VSS Windows backup. Set to “WindowsVSS”:”disabled” to create a regular backup. The WindowsVSS option is not enabled by default.

If you specify an invalid option, you get an InvalidParameterValueException exception.

For more information about Windows VSS backups, see Creating a VSS-Enabled Windows Backup.

" } }, "documentation":"

A list of backup options for each resource type.

" @@ -930,7 +930,7 @@ }, "BackupOptions":{ "shape":"BackupOptions", - "documentation":"

Specifies the backup option for a selected resource. This option is only available for Windows VSS backup jobs.

Valid value: \"WindowsVSS”:“enabled\". If enabled, creates a VSS Windows backup; otherwise, creates a regular backup. If you specify an invalid option, you get an InvalidParameterValueException exception.

" + "documentation":"

Specifies the backup option for a selected resource. This option is only available for Windows VSS backup jobs.

Valid values: Set to \"WindowsVSS”:“enabled\" to enable WindowsVSS backup option and create a VSS Windows backup. Set to “WindowsVSS”:”disabled” to create a regular backup. If you specify an invalid option, you get an InvalidParameterValueException exception.

" }, "BackupType":{ "shape":"string", @@ -1099,7 +1099,7 @@ }, "ScheduleExpression":{ "shape":"CronExpression", - "documentation":"

A CRON expression specifying when AWS Backup initiates a backup job.

" + "documentation":"

A CRON expression specifying when AWS Backup initiates a backup job. For more information about cron expressions, see Schedule Expressions for Rules in the Amazon CloudWatch Events User Guide.. Prior to specifying a value for this parameter, we recommend testing your cron expression using one of the many available cron generator and testing tools.

" }, "StartWindowMinutes":{ "shape":"WindowMinutes", @@ -3348,7 +3348,7 @@ }, "BackupOptions":{ "shape":"BackupOptions", - "documentation":"

Specifies the backup option for a selected resource. This option is only available for Windows VSS backup jobs.

Valid value: \"WindowsVSS”:“enabled\". If enabled, creates a VSS Windows backup; otherwise, creates a regular backup.

" + "documentation":"

Specifies the backup option for a selected resource. This option is only available for Windows VSS backup jobs.

Valid values: Set to \"WindowsVSS”:“enabled\" to enable WindowsVSS backup option and create a VSS Windows backup. Set to “WindowsVSS”:”disabled” to create a regular backup. The WindowsVSS option is not enabled by default.

" } } }, @@ -3428,7 +3428,7 @@ }, "Metadata":{ "shape":"Metadata", - "documentation":"

A set of metadata key-value pairs. Contains information, such as a resource name, required to restore a recovery point.

You can get configuration metadata about a resource at the time it was backed up by calling GetRecoveryPointRestoreMetadata. However, values in addition to those provided by GetRecoveryPointRestoreMetadata might be required to restore a resource. For example, you might need to provide a new resource name if the original already exists.

You need to specify specific metadata to restore an Amazon Elastic File System (Amazon EFS) instance:

  • file-system-id: The ID of the Amazon EFS file system that is backed up by AWS Backup. Returned in GetRecoveryPointRestoreMetadata.

  • Encrypted: A Boolean value that, if true, specifies that the file system is encrypted. If KmsKeyId is specified, Encrypted must be set to true.

  • KmsKeyId: Specifies the AWS KMS key that is used to encrypt the restored file system.

  • PerformanceMode: Specifies the throughput mode of the file system.

  • CreationToken: A user-supplied value that ensures the uniqueness (idempotency) of the request.

  • newFileSystem: A Boolean value that, if true, specifies that the recovery point is restored to a new Amazon EFS file system.

" + "documentation":"

A set of metadata key-value pairs. Contains information, such as a resource name, required to restore a recovery point.

You can get configuration metadata about a resource at the time it was backed up by calling GetRecoveryPointRestoreMetadata. However, values in addition to those provided by GetRecoveryPointRestoreMetadata might be required to restore a resource. For example, you might need to provide a new resource name if the original already exists.

You need to specify specific metadata to restore an Amazon Elastic File System (Amazon EFS) instance:

  • file-system-id: The ID of the Amazon EFS file system that is backed up by AWS Backup. Returned in GetRecoveryPointRestoreMetadata.

  • Encrypted: A Boolean value that, if true, specifies that the file system is encrypted. If KmsKeyId is specified, Encrypted must be set to true.

  • KmsKeyId: Specifies the AWS KMS key that is used to encrypt the restored file system. You can specify a key from another AWS account provided that key it is properly shared with your account via AWS KMS.

  • PerformanceMode: Specifies the throughput mode of the file system.

  • CreationToken: A user-supplied value that ensures the uniqueness (idempotency) of the request.

  • newFileSystem: A Boolean value that, if true, specifies that the recovery point is restored to a new Amazon EFS file system.

  • ItemsToRestore : A serialized list of up to five strings where each string is a file path. Use ItemsToRestore to restore specific files or directories rather than the entire file system. This parameter is optional.

" }, "IamRoleArn":{ "shape":"IAMRoleArn", From 6c53a7add1a02d11bc4d64498a9139f4be3fda25 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 19 Oct 2020 18:04:11 +0000 Subject: [PATCH 027/339] Amazon DocumentDB with MongoDB compatibility Update: Documentation updates for docdb --- ...ure-AmazonDocumentDBwithMongoDBcompatibility-21d8391.json | 5 +++++ .../src/main/resources/codegen-resources/service-2.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AmazonDocumentDBwithMongoDBcompatibility-21d8391.json diff --git a/.changes/next-release/feature-AmazonDocumentDBwithMongoDBcompatibility-21d8391.json b/.changes/next-release/feature-AmazonDocumentDBwithMongoDBcompatibility-21d8391.json new file mode 100644 index 000000000000..895ed64121b7 --- /dev/null +++ b/.changes/next-release/feature-AmazonDocumentDBwithMongoDBcompatibility-21d8391.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "Amazon DocumentDB with MongoDB compatibility", + "description": "Documentation updates for docdb" +} diff --git a/services/docdb/src/main/resources/codegen-resources/service-2.json b/services/docdb/src/main/resources/codegen-resources/service-2.json index 206083a497d3..0b2e77f61677 100644 --- a/services/docdb/src/main/resources/codegen-resources/service-2.json +++ b/services/docdb/src/main/resources/codegen-resources/service-2.json @@ -1107,7 +1107,7 @@ }, "KmsKeyId":{ "shape":"String", - "documentation":"

The AWS KMS key identifier for an encrypted cluster.

The AWS KMS key identifier is the Amazon Resource Name (ARN) for the AWS KMS encryption key. If you are creating a cluster using the same AWS account that owns the AWS KMS encryption key that is used to encrypt the new cluster, you can use the AWS KMS key alias instead of the ARN for the AWS KMS encryption key.

If an encryption key is not specified in KmsKeyId:

  • If ReplicationSourceIdentifier identifies an encrypted source, then Amazon DocumentDB uses the encryption key that is used to encrypt the source. Otherwise, Amazon DocumentDB uses your default encryption key.

  • If the StorageEncrypted parameter is true and ReplicationSourceIdentifier is not specified, Amazon DocumentDB uses your default encryption key.

AWS KMS creates the default encryption key for your AWS account. Your AWS account has a different default encryption key for each AWS Region.

If you create a replica of an encrypted cluster in another AWS Region, you must set KmsKeyId to a KMS key ID that is valid in the destination AWS Region. This key is used to encrypt the replica in that AWS Region.

" + "documentation":"

The AWS KMS key identifier for an encrypted cluster.

The AWS KMS key identifier is the Amazon Resource Name (ARN) for the AWS KMS encryption key. If you are creating a cluster using the same AWS account that owns the AWS KMS encryption key that is used to encrypt the new cluster, you can use the AWS KMS key alias instead of the ARN for the AWS KMS encryption key.

If an encryption key is not specified in KmsKeyId:

  • If the StorageEncrypted parameter is true, Amazon DocumentDB uses your default encryption key.

AWS KMS creates the default encryption key for your AWS account. Your AWS account has a different default encryption key for each AWS Region.

" }, "PreSignedUrl":{ "shape":"String", From e3445d30c59b5cb0f6559b457b92f1349d3794ea Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 19 Oct 2020 18:04:12 +0000 Subject: [PATCH 028/339] Amazon CloudFront Update: Amazon CloudFront adds support for Origin Shield. --- .../feature-AmazonCloudFront-df98f71.json | 5 +++ .../codegen-resources/service-2.json | 43 +++++++++++++++---- 2 files changed, 39 insertions(+), 9 deletions(-) create mode 100644 .changes/next-release/feature-AmazonCloudFront-df98f71.json diff --git a/.changes/next-release/feature-AmazonCloudFront-df98f71.json b/.changes/next-release/feature-AmazonCloudFront-df98f71.json new file mode 100644 index 000000000000..8ad1e1b166c1 --- /dev/null +++ b/.changes/next-release/feature-AmazonCloudFront-df98f71.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "Amazon CloudFront", + "description": "Amazon CloudFront adds support for Origin Shield." +} diff --git a/services/cloudfront/src/main/resources/codegen-resources/service-2.json b/services/cloudfront/src/main/resources/codegen-resources/service-2.json index b5e8d203d442..64c27b7b7477 100644 --- a/services/cloudfront/src/main/resources/codegen-resources/service-2.json +++ b/services/cloudfront/src/main/resources/codegen-resources/service-2.json @@ -5248,15 +5248,15 @@ }, "CustomHeaders":{ "shape":"CustomHeaders", - "documentation":"

A list of HTTP header names and values that CloudFront adds to requests it sends to the origin.

For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

" + "documentation":"

A list of HTTP header names and values that CloudFront adds to the requests that it sends to the origin.

For more information, see Adding Custom Headers to Origin Requests in the Amazon CloudFront Developer Guide.

" }, "S3OriginConfig":{ "shape":"S3OriginConfig", - "documentation":"

Use this type to specify an origin that is an Amazon S3 bucket that is not configured with static website hosting. To specify any other type of origin, including an Amazon S3 bucket that is configured with static website hosting, use the CustomOriginConfig type instead.

" + "documentation":"

Use this type to specify an origin that is an Amazon S3 bucket that is not configured with static website hosting. To specify any other type of origin, including an Amazon S3 bucket that is configured with static website hosting, use the CustomOriginConfig type instead.

" }, "CustomOriginConfig":{ "shape":"CustomOriginConfig", - "documentation":"

Use this type to specify an origin that is a content container or HTTP server, including an Amazon S3 bucket that is configured with static website hosting. To specify an Amazon S3 bucket that is not configured with static website hosting, use the S3OriginConfig type instead.

" + "documentation":"

Use this type to specify an origin that is not an Amazon S3 bucket, with one exception. If the Amazon S3 bucket is configured with static website hosting, use this type. If the Amazon S3 bucket is not configured with static website hosting, use the S3OriginConfig type instead.

" }, "ConnectionAttempts":{ "shape":"integer", @@ -5265,9 +5265,13 @@ "ConnectionTimeout":{ "shape":"integer", "documentation":"

The number of seconds that CloudFront waits when trying to establish a connection to the origin. The minimum timeout is 1 second, the maximum is 10 seconds, and the default (if you don’t specify otherwise) is 10 seconds.

For more information, see Origin Connection Timeout in the Amazon CloudFront Developer Guide.

" + }, + "OriginShield":{ + "shape":"OriginShield", + "documentation":"

CloudFront Origin Shield. Using Origin Shield can help reduce the load on your origin.

For more information, see Using Origin Shield in the Amazon CloudFront Developer Guide.

" } }, - "documentation":"

An origin.

An origin is the location where content is stored, and from which CloudFront gets content to serve to viewers. To specify an origin:

  • Use the S3OriginConfig type to specify an Amazon S3 bucket that is not configured with static website hosting.

  • Use the CustomOriginConfig type to specify various other kinds of content containers or HTTP servers, including:

    • An Amazon S3 bucket that is configured with static website hosting

    • An Elastic Load Balancing load balancer

    • An AWS Elemental MediaPackage origin

    • An AWS Elemental MediaStore container

    • Any other HTTP server, running on an Amazon EC2 instance or any other kind of host

For the current maximum number of origins that you can specify per distribution, see General Quotas on Web Distributions in the Amazon CloudFront Developer Guide (quotas were formerly referred to as limits).

" + "documentation":"

An origin.

An origin is the location where content is stored, and from which CloudFront gets content to serve to viewers. To specify an origin:

  • Use S3OriginConfig to specify an Amazon S3 bucket that is not configured with static website hosting.

  • Use CustomOriginConfig to specify all other kinds of origins, including:

    • An Amazon S3 bucket that is configured with static website hosting

    • An Elastic Load Balancing load balancer

    • An AWS Elemental MediaPackage endpoint

    • An AWS Elemental MediaStore container

    • Any other HTTP server, running on an Amazon EC2 instance or any other kind of host

For the current maximum number of origins that you can specify per distribution, see General Quotas on Web Distributions in the Amazon CloudFront Developer Guide (quotas were formerly referred to as limits).

" }, "OriginCustomHeader":{ "type":"structure", @@ -5601,6 +5605,27 @@ "custom" ] }, + "OriginShield":{ + "type":"structure", + "required":["Enabled"], + "members":{ + "Enabled":{ + "shape":"boolean", + "documentation":"

A flag that specifies whether Origin Shield is enabled.

When it’s enabled, CloudFront routes all requests through Origin Shield, which can help protect your origin. When it’s disabled, CloudFront might send requests directly to your origin from multiple edge locations or regional edge caches.

" + }, + "OriginShieldRegion":{ + "shape":"OriginShieldRegion", + "documentation":"

The AWS Region for Origin Shield.

Specify the AWS Region that has the lowest latency to your origin. To specify a region, use the region code, not the region name. For example, specify the US East (Ohio) region as us-east-2.

When you enable CloudFront Origin Shield, you must specify the AWS Region for Origin Shield. For the list of AWS Regions that you can specify, and for help choosing the best Region for your origin, see Choosing the AWS Region for Origin Shield in the Amazon CloudFront Developer Guide.

" + } + }, + "documentation":"

CloudFront Origin Shield.

Using Origin Shield can help reduce the load on your origin. For more information, see Using Origin Shield in the Amazon CloudFront Developer Guide.

" + }, + "OriginShieldRegion":{ + "type":"string", + "max":32, + "min":1, + "pattern":"[a-z]{2}-[a-z]+-\\d" + }, "OriginSslProtocols":{ "type":"structure", "required":[ @@ -5628,14 +5653,14 @@ "members":{ "Quantity":{ "shape":"integer", - "documentation":"

The number of origins or origin groups for this distribution.

" + "documentation":"

The number of origins for this distribution.

" }, "Items":{ "shape":"OriginList", - "documentation":"

A complex type that contains origins or origin groups for this distribution.

" + "documentation":"

A list of origins.

" } }, - "documentation":"

A complex type that contains information about origins and origin groups for this distribution.

" + "documentation":"

Contains information about the origins for this distribution.

" }, "ParametersInCacheKeyAndForwardedToOrigin":{ "type":"structure", @@ -5648,11 +5673,11 @@ "members":{ "EnableAcceptEncodingGzip":{ "shape":"boolean", - "documentation":"

A flag that can affect whether the Accept-Encoding HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.

This field is related to the EnableAcceptEncodingBrotli field. If one or both of these fields is true and the viewer request includes the Accept-Encoding header, then CloudFront does the following:

  • Normalizes the value of the viewer’s Accept-Encoding header

  • Includes the normalized header in the cache key

  • Includes the normalized header in the request to the origin, if a request is necessary

For more information, see Cache compressed objects in the Amazon CloudFront Developer Guide.

If you set this value to true, and this cache behavior also has an origin request policy attached, do not include the Accept-Encoding header in the origin request policy. CloudFront always includes the Accept-Encoding header in origin requests when the value of this field is true, so including this header in an origin request policy has no effect.

If both of these fields are false, then CloudFront treats the Accept-Encoding header the same as any other HTTP header in the viewer request. By default, it’s not included in the cache key and it’s not included in origin requests. In this case, you can manually add Accept-Encoding to the headers whitelist like any other HTTP header.

" + "documentation":"

A flag that can affect whether the Accept-Encoding HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.

This field is related to the EnableAcceptEncodingBrotli field. If one or both of these fields is true and the viewer request includes the Accept-Encoding header, then CloudFront does the following:

  • Normalizes the value of the viewer’s Accept-Encoding header

  • Includes the normalized header in the cache key

  • Includes the normalized header in the request to the origin, if a request is necessary

For more information, see Compression support in the Amazon CloudFront Developer Guide.

If you set this value to true, and this cache behavior also has an origin request policy attached, do not include the Accept-Encoding header in the origin request policy. CloudFront always includes the Accept-Encoding header in origin requests when the value of this field is true, so including this header in an origin request policy has no effect.

If both of these fields are false, then CloudFront treats the Accept-Encoding header the same as any other HTTP header in the viewer request. By default, it’s not included in the cache key and it’s not included in origin requests. In this case, you can manually add Accept-Encoding to the headers whitelist like any other HTTP header.

" }, "EnableAcceptEncodingBrotli":{ "shape":"boolean", - "documentation":"

A flag that can affect whether the Accept-Encoding HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.

This field is related to the EnableAcceptEncodingGzip field. If one or both of these fields is true and the viewer request includes the Accept-Encoding header, then CloudFront does the following:

  • Normalizes the value of the viewer’s Accept-Encoding header

  • Includes the normalized header in the cache key

  • Includes the normalized header in the request to the origin, if a request is necessary

For more information, see Cache compressed objects in the Amazon CloudFront Developer Guide.

If you set this value to true, and this cache behavior also has an origin request policy attached, do not include the Accept-Encoding header in the origin request policy. CloudFront always includes the Accept-Encoding header in origin requests when the value of this field is true, so including this header in an origin request policy has no effect.

If both of these fields are false, then CloudFront treats the Accept-Encoding header the same as any other HTTP header in the viewer request. By default, it’s not included in the cache key and it’s not included in origin requests. In this case, you can manually add Accept-Encoding to the headers whitelist like any other HTTP header.

" + "documentation":"

A flag that can affect whether the Accept-Encoding HTTP header is included in the cache key and included in requests that CloudFront sends to the origin.

This field is related to the EnableAcceptEncodingGzip field. If one or both of these fields is true and the viewer request includes the Accept-Encoding header, then CloudFront does the following:

  • Normalizes the value of the viewer’s Accept-Encoding header

  • Includes the normalized header in the cache key

  • Includes the normalized header in the request to the origin, if a request is necessary

For more information, see Compression support in the Amazon CloudFront Developer Guide.

If you set this value to true, and this cache behavior also has an origin request policy attached, do not include the Accept-Encoding header in the origin request policy. CloudFront always includes the Accept-Encoding header in origin requests when the value of this field is true, so including this header in an origin request policy has no effect.

If both of these fields are false, then CloudFront treats the Accept-Encoding header the same as any other HTTP header in the viewer request. By default, it’s not included in the cache key and it’s not included in origin requests. In this case, you can manually add Accept-Encoding to the headers whitelist like any other HTTP header.

" }, "HeadersConfig":{ "shape":"CachePolicyHeadersConfig", From 6d32a508e3cfe4a89b3aedc630121f137ebce305 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 19 Oct 2020 18:04:12 +0000 Subject: [PATCH 029/339] Amazon Simple Systems Manager (SSM) Update: This Patch Manager release now supports Common Vulnerabilities and Exposure (CVE) Ids for missing packages via the DescribeInstancePatches API. --- .../feature-AmazonSimpleSystemsManagerSSM-f70b263.json | 5 +++++ .../src/main/resources/codegen-resources/service-2.json | 7 ++++++- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AmazonSimpleSystemsManagerSSM-f70b263.json diff --git a/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-f70b263.json b/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-f70b263.json new file mode 100644 index 000000000000..41700d3fda94 --- /dev/null +++ b/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-f70b263.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "Amazon Simple Systems Manager (SSM)", + "description": "This Patch Manager release now supports Common Vulnerabilities and Exposure (CVE) Ids for missing packages via the DescribeInstancePatches API." +} diff --git a/services/ssm/src/main/resources/codegen-resources/service-2.json b/services/ssm/src/main/resources/codegen-resources/service-2.json index 0f5ba70812ee..125ab530bb2f 100644 --- a/services/ssm/src/main/resources/codegen-resources/service-2.json +++ b/services/ssm/src/main/resources/codegen-resources/service-2.json @@ -11176,6 +11176,7 @@ "type":"list", "member":{"shape":"PatchCVEId"} }, + "PatchCVEIds":{"type":"string"}, "PatchClassification":{"type":"string"}, "PatchComplianceData":{ "type":"structure", @@ -11211,6 +11212,10 @@ "InstalledTime":{ "shape":"DateTime", "documentation":"

The date/time the patch was installed on the instance. Note that not all operating systems provide this level of information.

" + }, + "CVEIds":{ + "shape":"PatchCVEIds", + "documentation":"

The IDs of one or more Common Vulnerabilities and Exposure (CVE) issues that are resolved by the patch.

" } }, "documentation":"

Information about the state of a patch on a particular instance as it relates to the patch baseline used to patch the instance.

" @@ -11729,7 +11734,7 @@ }, "Type":{ "shape":"ParameterType", - "documentation":"

The type of parameter that you want to add to the system.

SecureString is not currently supported for AWS CloudFormation templates or in the China Regions.

Items in a StringList must be separated by a comma (,). You can't use other punctuation or special character to escape items in the list. If you have a parameter value that requires a comma, then use the String data type.

Specifying a parameter type is not required when updating a parameter. You must specify a parameter type when creating a parameter.

" + "documentation":"

The type of parameter that you want to add to the system.

SecureString is not currently supported for AWS CloudFormation templates.

Items in a StringList must be separated by a comma (,). You can't use other punctuation or special character to escape items in the list. If you have a parameter value that requires a comma, then use the String data type.

Specifying a parameter type is not required when updating a parameter. You must specify a parameter type when creating a parameter.

" }, "KeyId":{ "shape":"ParameterKeyId", From ca72ed346d3fb7ccebf00955d660fb23d8f53a33 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 19 Oct 2020 18:04:12 +0000 Subject: [PATCH 030/339] AWS Service Catalog Update: An Admin can now update the launch role associated with a Provisioned Product. Admins and End Users can now view the launch role associated with a Provisioned Product. --- .../feature-AWSServiceCatalog-983fa6e.json | 5 ++++ .../codegen-resources/service-2.json | 25 ++++++++++++++++--- 2 files changed, 26 insertions(+), 4 deletions(-) create mode 100644 .changes/next-release/feature-AWSServiceCatalog-983fa6e.json diff --git a/.changes/next-release/feature-AWSServiceCatalog-983fa6e.json b/.changes/next-release/feature-AWSServiceCatalog-983fa6e.json new file mode 100644 index 000000000000..4adeab51bdba --- /dev/null +++ b/.changes/next-release/feature-AWSServiceCatalog-983fa6e.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS Service Catalog", + "description": "An Admin can now update the launch role associated with a Provisioned Product. Admins and End Users can now view the launch role associated with a Provisioned Product." +} diff --git a/services/servicecatalog/src/main/resources/codegen-resources/service-2.json b/services/servicecatalog/src/main/resources/codegen-resources/service-2.json index 0369bd85914d..187695d4532e 100644 --- a/services/servicecatalog/src/main/resources/codegen-resources/service-2.json +++ b/services/servicecatalog/src/main/resources/codegen-resources/service-2.json @@ -2479,11 +2479,11 @@ }, "Id":{ "shape":"Id", - "documentation":"

The provisioned product identifier.

" + "documentation":"

The provisioned product identifier. You must provide the name or ID, but not both.

If you do not provide a name or ID, or you provide both name and ID, an InvalidParametersException will occur.

" }, "Name":{ "shape":"ProvisionedProductName", - "documentation":"

The name of the provisioned product.

" + "documentation":"

The name of the provisioned product. You must provide the name or ID, but not both.

If you do not provide a name or ID, or you provide both name and ID, an InvalidParametersException will occur.

" } }, "documentation":"DescribeProvisionedProductAPI input structure. AcceptLanguage - [Optional] The language code for localization. Id - [Optional] The provisioned product identifier. Name - [Optional] Another provisioned product identifier. Customers must provide either Id or Name." @@ -4227,7 +4227,10 @@ }, "PropertyKey":{ "type":"string", - "enum":["OWNER"], + "enum":[ + "OWNER", + "LAUNCH_ROLE" + ], "max":128, "min":1 }, @@ -4453,6 +4456,10 @@ "ProvisioningArtifactId":{ "shape":"Id", "documentation":"

The identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne.

" + }, + "LaunchRoleArn":{ + "shape":"RoleArn", + "documentation":"

The ARN of the launch role associated with the provisioned product.

" } }, "documentation":"

Information about a provisioned product.

" @@ -4980,6 +4987,10 @@ "RecordTags":{ "shape":"RecordTags", "documentation":"

One or more tags.

" + }, + "LaunchRoleArn":{ + "shape":"RoleArn", + "documentation":"

The ARN of the launch role associated with the provisioned product.

" } }, "documentation":"

Information about a request operation.

" @@ -5255,6 +5266,12 @@ "documentation":"

Information about a change to a resource attribute.

" }, "ResourceType":{"type":"string"}, + "RoleArn":{ + "type":"string", + "max":1224, + "min":1, + "pattern":"arn:[a-z0-9-\\.]{1,63}:iam::[a-z0-9-\\.]{0,63}:role\\/.{0,1023}" + }, "ScanProvisionedProductsInput":{ "type":"structure", "members":{ @@ -6105,7 +6122,7 @@ }, "ProvisionedProductProperties":{ "shape":"ProvisionedProductProperties", - "documentation":"

A map that contains the provisioned product properties to be updated.

The OWNER key accepts user ARNs and role ARNs. The owner is the user that is allowed to see, update, terminate, and execute service actions in the provisioned product.

The administrator can change the owner of a provisioned product to another IAM user within the same account. Both end user owners and administrators can see ownership history of the provisioned product using the ListRecordHistory API. The new owner can describe all past records for the provisioned product using the DescribeRecord API. The previous owner can no longer use DescribeRecord, but can still see the product's history from when he was an owner using ListRecordHistory.

If a provisioned product ownership is assigned to an end user, they can see and perform any action through the API or Service Catalog console such as update, terminate, and execute service actions. If an end user provisions a product and the owner is updated to someone else, they will no longer be able to see or perform any actions through API or the Service Catalog console on that provisioned product.

" + "documentation":"

A map that contains the provisioned product properties to be updated.

The LAUNCH_ROLE key accepts user ARNs and role ARNs. This key allows an administrator to call UpdateProvisionedProductProperties to update the launch role that is associated with a provisioned product. This role is used when an end-user calls a provisioning operation such as UpdateProvisionedProduct, TerminateProvisionedProduct, or ExecuteProvisionedProductServiceAction. Only an ARN role or null is valid. A user ARN is invalid. For example, if an admin user passes null as the value for the key LAUNCH_ROLE, the admin removes the launch role that is associated with the provisioned product. As a result, the end user operations use the credentials of the end user.

The OWNER key accepts user ARNs and role ARNs. The owner is the user that has permission to see, update, terminate, and execute service actions in the provisioned product.

The administrator can change the owner of a provisioned product to another IAM user within the same account. Both end user owners and administrators can see ownership history of the provisioned product using the ListRecordHistory API. The new owner can describe all past records for the provisioned product using the DescribeRecord API. The previous owner can no longer use DescribeRecord, but can still see the product's history from when he was an owner using ListRecordHistory.

If a provisioned product ownership is assigned to an end user, they can see and perform any action through the API or Service Catalog console such as update, terminate, and execute service actions. If an end user provisions a product and the owner is updated to someone else, they will no longer be able to see or perform any actions through API or the Service Catalog console on that provisioned product.

" }, "IdempotencyToken":{ "shape":"IdempotencyToken", From 0ffbfa4128f04c385015acafb1e70ccbae3fa0ec Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 19 Oct 2020 18:05:47 +0000 Subject: [PATCH 031/339] Release 2.15.10. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.10.json | 36 +++++++++++++++++++ .../feature-AWSBackup-09ca08c.json | 5 --- .../feature-AWSServiceCatalog-983fa6e.json | 5 --- .../feature-AmazonCloudFront-df98f71.json | 5 --- ...entDBwithMongoDBcompatibility-21d8391.json | 5 --- ...AmazonSimpleSystemsManagerSSM-f70b263.json | 5 --- .../feature-HTTPclientspi-25d1ed9.json | 5 --- CHANGELOG.md | 26 ++++++++++++++ README.md | 8 ++--- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- .../serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 289 files changed, 346 insertions(+), 314 deletions(-) create mode 100644 .changes/2.15.10.json delete mode 100644 .changes/next-release/feature-AWSBackup-09ca08c.json delete mode 100644 .changes/next-release/feature-AWSServiceCatalog-983fa6e.json delete mode 100644 .changes/next-release/feature-AmazonCloudFront-df98f71.json delete mode 100644 .changes/next-release/feature-AmazonDocumentDBwithMongoDBcompatibility-21d8391.json delete mode 100644 .changes/next-release/feature-AmazonSimpleSystemsManagerSSM-f70b263.json delete mode 100644 .changes/next-release/feature-HTTPclientspi-25d1ed9.json diff --git a/.changes/2.15.10.json b/.changes/2.15.10.json new file mode 100644 index 000000000000..ad3529cf9916 --- /dev/null +++ b/.changes/2.15.10.json @@ -0,0 +1,36 @@ +{ + "version": "2.15.10", + "date": "2020-10-19", + "entries": [ + { + "type": "feature", + "category": "AWS Service Catalog", + "description": "An Admin can now update the launch role associated with a Provisioned Product. Admins and End Users can now view the launch role associated with a Provisioned Product." + }, + { + "type": "feature", + "category": "Amazon Simple Systems Manager (SSM)", + "description": "This Patch Manager release now supports Common Vulnerabilities and Exposure (CVE) Ids for missing packages via the DescribeInstancePatches API." + }, + { + "type": "feature", + "category": "HTTP Client SPI", + "description": "Calling the SdkHttpFullRequest uri() builder method, query parameters of the provided URI will be kept.\nThis can be useful in case you want to provide an already fully formed URI like a callback URI." + }, + { + "type": "feature", + "category": "Amazon CloudFront", + "description": "Amazon CloudFront adds support for Origin Shield." + }, + { + "type": "feature", + "category": "Amazon DocumentDB with MongoDB compatibility", + "description": "Documentation updates for docdb" + }, + { + "type": "feature", + "category": "AWS Backup", + "description": "Documentation updates for Cryo" + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSBackup-09ca08c.json b/.changes/next-release/feature-AWSBackup-09ca08c.json deleted file mode 100644 index 4f53799f2288..000000000000 --- a/.changes/next-release/feature-AWSBackup-09ca08c.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS Backup", - "description": "Documentation updates for Cryo" -} diff --git a/.changes/next-release/feature-AWSServiceCatalog-983fa6e.json b/.changes/next-release/feature-AWSServiceCatalog-983fa6e.json deleted file mode 100644 index 4adeab51bdba..000000000000 --- a/.changes/next-release/feature-AWSServiceCatalog-983fa6e.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS Service Catalog", - "description": "An Admin can now update the launch role associated with a Provisioned Product. Admins and End Users can now view the launch role associated with a Provisioned Product." -} diff --git a/.changes/next-release/feature-AmazonCloudFront-df98f71.json b/.changes/next-release/feature-AmazonCloudFront-df98f71.json deleted file mode 100644 index 8ad1e1b166c1..000000000000 --- a/.changes/next-release/feature-AmazonCloudFront-df98f71.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "Amazon CloudFront", - "description": "Amazon CloudFront adds support for Origin Shield." -} diff --git a/.changes/next-release/feature-AmazonDocumentDBwithMongoDBcompatibility-21d8391.json b/.changes/next-release/feature-AmazonDocumentDBwithMongoDBcompatibility-21d8391.json deleted file mode 100644 index 895ed64121b7..000000000000 --- a/.changes/next-release/feature-AmazonDocumentDBwithMongoDBcompatibility-21d8391.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "Amazon DocumentDB with MongoDB compatibility", - "description": "Documentation updates for docdb" -} diff --git a/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-f70b263.json b/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-f70b263.json deleted file mode 100644 index 41700d3fda94..000000000000 --- a/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-f70b263.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Simple Systems Manager (SSM)", - "description": "This Patch Manager release now supports Common Vulnerabilities and Exposure (CVE) Ids for missing packages via the DescribeInstancePatches API." -} diff --git a/.changes/next-release/feature-HTTPclientspi-25d1ed9.json b/.changes/next-release/feature-HTTPclientspi-25d1ed9.json deleted file mode 100644 index 375e9a107605..000000000000 --- a/.changes/next-release/feature-HTTPclientspi-25d1ed9.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "category": "HTTP Client SPI", - "type": "feature", - "description": "Calling the SdkHttpFullRequest uri() builder method, query parameters of the provided URI will be kept.\nThis can be useful in case you want to provide an already fully formed URI like a callback URI." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index d5ded23e1d82..1719316b64f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,29 @@ +# __2.15.10__ __2020-10-19__ +## __AWS Backup__ + - ### Features + - Documentation updates for Cryo + +## __AWS Service Catalog__ + - ### Features + - An Admin can now update the launch role associated with a Provisioned Product. Admins and End Users can now view the launch role associated with a Provisioned Product. + +## __Amazon CloudFront__ + - ### Features + - Amazon CloudFront adds support for Origin Shield. + +## __Amazon DocumentDB with MongoDB compatibility__ + - ### Features + - Documentation updates for docdb + +## __Amazon Simple Systems Manager (SSM)__ + - ### Features + - This Patch Manager release now supports Common Vulnerabilities and Exposure (CVE) Ids for missing packages via the DescribeInstancePatches API. + +## __HTTP Client SPI__ + - ### Features + - Calling the SdkHttpFullRequest uri() builder method, query parameters of the provided URI will be kept. + This can be useful in case you want to provide an already fully formed URI like a callback URI. + # __2.15.9__ __2020-10-16__ ## __AWS Elemental MediaLive__ - ### Features diff --git a/README.md b/README.md index 398dde7c6b40..71b25a988621 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.9 + 2.15.10 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.9 + 2.15.10 software.amazon.awssdk s3 - 2.15.9 + 2.15.10 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.9 + 2.15.10 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index c3f797370d23..f681c18df8da 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index a4137838a438..5fe136e45fc5 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 6b63d803a434..6e4868a4d08d 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.15.10-SNAPSHOT + 2.15.10 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index c74bda1e054b..dc1466e098f9 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index d321949a12a9..a3d480a1bc6a 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.10-SNAPSHOT + 2.15.10 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 62f2531e0a5f..d400055ef9dd 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.10-SNAPSHOT + 2.15.10 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 2719ce169fab..75c2b24ab526 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.15.10-SNAPSHOT + 2.15.10 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 6552ea936bc6..bcf4509433ba 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.10-SNAPSHOT + 2.15.10 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index b786bd91dfdf..a6d6e97ebb74 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.15.10-SNAPSHOT + 2.15.10 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 8cc68de3c69c..c721a22fa279 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.10-SNAPSHOT + 2.15.10 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index acebd8d94606..b690dfb04a7d 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index e1bc4bce0efc..b84c16aad409 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 9ce102148eb8..e1fe495f71cc 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.10-SNAPSHOT + 2.15.10 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 680ca5d0d3a0..a0d04408576b 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.10-SNAPSHOT + 2.15.10 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 75ee98e8b4fc..eb92f3f49c64 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 3e7e5fdf2822..a9cd735a6300 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 5ccbee8e4e46..0fe5f8e9e310 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.10-SNAPSHOT + 2.15.10 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 8d52558e5750..5023d138389c 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.15.10-SNAPSHOT + 2.15.10 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index bebac2214e80..89d803894229 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 6d6ebd6368d8..f4c6dba5b0f9 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.15.10-SNAPSHOT + 2.15.10 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index f8d755d5c7df..16b1a4a42b32 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.15.10-SNAPSHOT + 2.15.10 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index e8473864b36e..649ffd88beb4 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.15.10-SNAPSHOT + 2.15.10 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 83263ded07a0..4bc3b19f2752 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 7a094fdb76d0..2307495218a0 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 31e925bdc42f..92fe3d380070 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.10-SNAPSHOT + 2.15.10 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 3bdc21c7e93e..b92b04b55358 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.10-SNAPSHOT + 2.15.10 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 2d2bcf4d638a..97ff3fb8921c 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.15.10-SNAPSHOT + 2.15.10 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 9d7258ef4d3f..441d27436ac9 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.15.10-SNAPSHOT + 2.15.10 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 1756dfdb0f0c..d3c08192ad38 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.15.10-SNAPSHOT + 2.15.10 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index b4f974d753e0..7cd0b72cadb8 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.15.10-SNAPSHOT + 2.15.10 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index d7de29bf6570..afe91890287f 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 916e81073f8b..63373145616e 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.15.10-SNAPSHOT + 2.15.10 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 6824bf718a3e..45ef645b0019 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.15.10-SNAPSHOT + 2.15.10 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 25fc1572a1c5..fcf951df316b 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.10-SNAPSHOT + 2.15.10 metric-publishers diff --git a/pom.xml b/pom.xml index 4e0a6ff94fcb..81031d4b4f58 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.10-SNAPSHOT + 2.15.10 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 a659951c768a..cb5ddd30a36e 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.10-SNAPSHOT + 2.15.10 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 409dfefadf82..5b159e43e183 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.15.10-SNAPSHOT + 2.15.10 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 5fd9ae202626..f2731277ae87 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.10-SNAPSHOT + 2.15.10 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 8b396de47305..13aa960e9b19 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 36ceafd58c64..09228ce791f3 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 2e1bc22cbc58..89d7fbe2c475 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 75c1fcfa924a..7637f3715cd8 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 86199babf24a..30cc92e15dba 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 4e9df3467bd1..2b49be799cd1 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 6efb5e5627e3..d5773c40ad95 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index f35b4ab09fc1..7ef5e4bd0e0f 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 216a5bfa68de..1d39ba0efd2c 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 65e59530c782..587049bcf9ce 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 0168757c5244..07291ee9cc21 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 7f95e57fb28b..b00064e6aa35 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index fe866f8a6067..d1f5f6bc7c6b 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 1f9e876cdce0..aaa098f9af85 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 0f6659a4bfa2..3415867b488b 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index e64aa99989da..d21ed8d2b0e7 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index ca43be71b52a..20f55713ec3c 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 2912827d87fd..675fc7555215 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index efb8f804352f..2f4dad6d575f 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 1b105c167cf5..e8764de3b763 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 31b47f1de71e..321a64503a79 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index bfd849a7c3fe..82c0641759bd 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index a1d9b7041cd2..6a07d2ff103f 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 3b24a7a8f55f..e62bf59b9c00 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 3cbf2e2ebf37..f1b9c4d8a71f 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index d03593ffe8c4..33e10653dde0 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index c5c57270defd..d6abd00003d7 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 0b7cdc064c7d..28e9368f3d1b 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 2dc6a5fab68a..e7fc8b12ad98 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index fcbe9e38296b..dc5c7a798567 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 26861dd72b1d..82ff8246b9a9 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 152a60f19114..3f7f48df1d18 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 9a984a86570f..6f5cd7b6a7aa 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index e376b623ee5e..7e5536a00546 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index a04d8e6959b9..bb4bfdc3b8fe 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 06311ebc5aa2..b7661859eda8 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index d85e5f66ace1..229048aa752d 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 5b5d922e0d1a..077ba1c42bd5 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 05fd8f62814b..8152f198d6b3 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 4d605cc5275b..4b6eff5d2830 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 6cfb51f6f058..5e317d6a7703 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index aee87ff5c5ca..359a3f323e11 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index cf432ba396b8..79de367499cb 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index a87e41c27578..bf21641535e0 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index c5f85d219ab2..95089d83e23f 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index f9dfeba9be79..45e067fe4d93 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index bea6626c7b43..1442ce7b8293 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index fd104e656e35..e0cec7021ae4 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 02e2496cbe22..e3bf43b1dc51 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index b72dcf82634c..529c1c214b40 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 72d2e5519696..546ed3ae06f4 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index b9cce0f61bc4..264f7bf143e2 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index d164524d3def..944415ac21de 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 5589eca52ec2..f887461fc5d8 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 43e9b31cc5aa..928ea1377add 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 66f58c128a3a..6b308e1e7513 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index b02ebade15a6..b2abb076f617 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 4f51f3329f2b..def439572cf4 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 96eaf843d03f..4d7eb5066ad8 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 455296a22288..bdef0643abb3 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 4204c61fa6f6..58968810a7ac 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 57257fcc06a0..5be36ae544d4 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index dc1685fc18ee..3cc34614812b 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 680f599ca8b0..1c3731f820f5 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 37b20e98a934..1b6e5bae2344 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 3fffd2203bb0..1ea9451c3fb8 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index fe010bf447f1..7f75170619cd 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 8fc6fa4b9986..47e8648a47c6 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index ae766fb83ccb..65a789b80a12 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index e6d7dce88597..f20f0f0a8285 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index ba686eaacf1b..8cf2327ee3a2 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 1269c58a322d..4b051efc2a89 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 05e3ac1d15a5..0aedff109b89 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 61f17f1a4a80..153a65d11246 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 9a0b33ac17e4..3b8e1e0cde2a 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 1eb1db084d16..82abee87baaa 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 5df9a4e8dd88..9e1bc4afc7c7 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 7ba3b0561a7c..f7ce2c9c7696 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 0b209529e5a6..eabedb092be5 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index bf042c19ea1d..45df32954f0b 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 85e7b8559eeb..d44710144afa 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 3a821b097476..18dd8845ac87 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 07be70140fde..40fdb2ac7133 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 63642779688d..028e521d09ee 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index a96456a035ea..6bc1c2d01f5d 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index f0a40cf3a2c8..efcafaf5b093 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 1842de94ff06..2aac3caf0f65 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index eb1e5cf2dea3..a2afac426367 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 57cebef4830d..6f8dd34a2d52 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 2a2fdaa4cc61..57e1383da700 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index a07db9c31ba6..51e4c3e00529 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 6686c200f3d6..0e086d94ecf3 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 8fdeb4fec3a2..cf3bcd9ae823 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 630ab8c48017..81a13de7b445 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 15e74631376a..09db77e78a64 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 95c72a09312b..b25431b05f54 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 601d3224309a..8e56a8a97123 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index c59524206ab1..220c3e5ea083 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 57a463067b7e..81350a2c203f 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 97c19857e9d1..2dae06354159 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 89c2c84313c6..cbdc341df114 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 617b7eb7ff8b..56a095c6cb5a 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 713d27451225..dbfb4102ada8 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 1df75568797c..d6ca565276b2 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 44d33371028c..8531f5e6cb9b 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index dda545b0cb2b..15ae67a0772e 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 884582973423..2a5f36efc6b4 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index dfe0a08f4c89..c033364f7415 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 3c5020b07d16..09a2434003e0 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 544772dd76fc..9f10f23d828a 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 0506c7f13218..887af1bd18be 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 4bd0c8313b3d..c7f37e54c11b 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index f6eb138a44be..4223ec8c89d5 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index cb3e9f7992bf..dbea26c16d6b 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 16d997eace48..a5b3f2d9f16d 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 1eeea15f9e29..d3c70c07f089 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 8d3639f4e7c5..3a4424f2c73a 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index f541f66874f1..8300c9de7f12 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 4949deab6e06..9197bff236ee 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 734d308ba213..d4eb11581cad 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 9dcfd39a5d8d..da03d456460d 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 8b418b2368b4..e14a6c1b2f8a 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 7493f5ad1362..3c2419c59941 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 05b1c2615799..4db568547047 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index f64a06e491e3..91c46d1eec6e 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 98f50467580d..5d34f2b872ea 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 8b91349ecf9a..e00bd47a6e9e 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 9b219e2050f1..f8376d1c714d 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 37ce12f03af5..02276d972955 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 78c501cf308f..a5425ed6a9aa 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index ec6443f62057..bd0ff0dc0cb3 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 17e174d90a83..07cdc785a4a6 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index f3c801068002..6a6f3645df22 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 794bf49e56c1..a8dc1bf7c292 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 369fde53f533..6197ddec80b7 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 3843ecbdd021..c6553ed89947 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index a753f0f3683f..67bd7cd15edd 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 482e26559bdc..7a95f5990b68 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index f3fbd72cb97f..37ba6b47b717 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index ef66061b5d8e..bc227db8ad99 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 3bf4c4bd4ea9..deed7a228603 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 0def29c0eb57..d3cf3ec1e04a 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index d9c9d109b939..53f7f682fb69 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 8747468200a7..c62fd50cbab9 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index c1d181fcc0ed..98b4696fe135 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 83c8b0f6052a..b51f7a1f4fed 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 4a1a54216534..c561c1983cfd 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 8817f2d11aef..d1909af0524d 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 25b7fc55f9ee..d7b20e388ab2 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 4f805720cc68..a4c474c7ff04 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index a19fe36cce2a..449948b527cb 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 84c76642be54..7d390052c519 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index ee3dbdfc0807..00d3dc423f7a 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 0649307ecb8b..50e0edf923d0 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 1d97d33a94c7..6c1842b1df6d 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 50ddf0dffd48..40d445fffefe 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index d80d4b3c9586..84269fbeb3a7 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index ff82e67e342a..7c9d45d7b691 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 9783f54538b2..db1a4b701d99 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 71972e497495..88ba23680bee 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 7b130b3477bb..1cd0be637a82 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index a58b8bb77e8c..92596a1e12b9 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index cb60e330c092..0d3be599eefb 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 2c14bdfa33f2..9dd48b43aba5 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 2bbff5b0ea23..3e19aed96de3 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 2be536f243d9..cb83ed19d1d3 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 6c0ec0681c94..8cb1e3f5909c 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 8defb0507fdb..ebb45e6f77c7 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.10-SNAPSHOT + 2.15.10 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 9e476b385c70..9b00853e9593 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 4a276d21aee2..27dfaff1eb97 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index f4a1c64167f3..388504afaedb 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 95ace713f556..79dd167e8ff3 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 2bf4d19521f5..84a0239b11ca 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index b2bf94325921..827fd30e9ee4 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index a6690af7e819..14782e357fb4 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 306e70669961..ed99b3a0a725 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 582bb530b190..1775d6a87bbe 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 5cd2a147071c..460a857ddd2d 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 87163229a70a..6085ba00df90 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 640dfe82d219..462d0ef7637d 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index c567f02b610e..1444c1363863 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index ce791223b222..43a947252d3a 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index d59d6ef208cb..3c4d43553375 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 3178700e9908..79074bb696f8 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 302dd8ee9737..424eb5647b79 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 6f65e6328dbb..aab9dae757ac 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 8db55377146b..f56376d0d85e 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 36079841d3e1..725533bd1587 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index f9ef3a76b0d3..363589eaa482 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 88589822c86a..911dc1e37b9d 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index d03e8620d6be..12d2b5426d8b 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 4d1987aeec3f..054ac77f795c 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index fa57ec0f3b55..17001c818c6e 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index e3295bdeb37c..e7cbb3500543 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index c7be21b836ad..7a4971dd3a27 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 669a70adb549..b380450b38a8 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 107dce3a0bcc..61358ba421a4 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 3b1f2afe6fa6..70baf1e4286e 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 70207e346a1f..58648f17185c 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index c999600a1346..342ed7a4cfa5 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index b47903d97b52..34a259c9e2e4 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 6920368780b6..324f9400ba27 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 4007541b98a9..cafc04d2e682 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 6749c2d51c2a..50f86a07d42e 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 2d1288dc7183..d7d539f4edb7 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index caf9ab5c8e5d..cba5145c0fee 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 493d36066e99..4d6a1f68fcfb 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index c03bff31f0bb..22b36678faa0 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 6102a752e369..ccac3494d2bc 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 1fa5476df00b..305a4bd347c0 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 0a3eded61e66..2a913c18eccf 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 6cf1c888a985..0569b61bc574 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index f20173ef0fbe..23da0770dc22 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index c63563491ee1..c2afaced9fb7 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 04df1230e534..aa28f982de51 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 27c80251957e..0d9711881208 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 9a3ec3fca52f..6aeba00ed1b7 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 208bf72e8436..bf70b73d31be 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index db62c09d22f4..2d69239d6d01 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 994c3b873c76..595ea7ffbef1 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 2f39df3afd90..546e1272f372 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 75296f3f71ed..08e850b7bc4c 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index ab6e4fff5e16..288291ac798a 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 584015ca30c9..a0f724b15e5b 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index aedbb79a8f31..6b84f78946bb 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index bae8bb1d00e3..21e59ff50194 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index bb5586474ee6..f16e79c72894 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 90cffcb44d24..5d8f6ae9988d 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 9c016cc609bc..6bc3c5f1a584 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 59e0c4c8505e..9d6c0f4f50ba 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index ccc6aff0050e..9bd3edaa28b0 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10-SNAPSHOT + 2.15.10 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 2cb3946198cf..e120eb1c1e88 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.15.10-SNAPSHOT + 2.15.10 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 7065fad6de38..d9a24af17a17 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.15.10-SNAPSHOT + 2.15.10 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 3522c7aa5899..1d147a06c0e0 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.15.10-SNAPSHOT + 2.15.10 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 18d4a2ad4706..d468a8d7e891 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.15.10-SNAPSHOT + 2.15.10 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index a482fe7ef22c..a05dba2d4ec0 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.15.10-SNAPSHOT + 2.15.10 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index fdeb16564ae2..f62e2e71f2ec 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.10-SNAPSHOT + 2.15.10 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index c2bcd349fb08..dabf36db0259 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.15.10-SNAPSHOT + 2.15.10 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 8e2234c0f35b..8067d75e4c0d 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.15.10-SNAPSHOT + 2.15.10 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 4b9c58d06c19..9e75c8edef78 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.15.10-SNAPSHOT + 2.15.10 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index e7a42fdb21a2..047a8a737aa1 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.15.10-SNAPSHOT + 2.15.10 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 10abd614aef9..e67f4f57dfbc 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.10-SNAPSHOT + 2.15.10 4.0.0 From 9cb352e43d72eca4bb64254577a1ae039b9affd8 Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Thu, 15 Oct 2020 11:27:58 -0700 Subject: [PATCH 032/339] Added support for the "contentMd5Required" C2J trait, which will inject the "Content-MD5" header when an operation requires it. This functionality was previously hard-coded to certain operations within S3. It's now driven by a trait, so that Content-MD5 does not get calculated when it isn't needed. Other changes in this commit: 1. Cleaned up some of the code generation poet code around the content-md5-related logic. 2. Added support for empty async XML responses without content-lengths. These would previously throw an exception that they're invalid XML. 3. Fixed an issue where requestBody and asyncRequestBody were not visible in ExecutionInterceptor.afterMarshalling. --- .../bugfix-AWSSDKforJavav2-3374d0a.json | 5 + .../next-release/bugfix-AmazonS3-9878254.json | 5 + .../feature-AmazonS3-544f82b.json | 5 + .../amazon/awssdk/spotbugs-suppressions.xml | 7 + .../amazon/awssdk/codegen/AddOperations.java | 1 + .../model/intermediate/OperationModel.java | 10 + .../codegen/model/service/Operation.java | 10 + .../poet/client/specs/Ec2ProtocolSpec.java | 50 -- .../poet/client/specs/JsonProtocolSpec.java | 175 +++---- .../poet/client/specs/QueryProtocolSpec.java | 69 ++- .../poet/client/specs/XmlProtocolSpec.java | 76 ++- .../traits/HttpChecksumRequiredTrait.java | 44 ++ .../poet/client/c2j/json/service-2.json | 8 + .../poet/client/c2j/query/service-2.json | 8 + .../poet/client/test-async-client-class.java | 476 ++++++++++-------- .../test-json-async-client-interface.java | 181 ++++--- .../poet/client/test-json-client-class.java | 314 +++++++----- .../client/test-json-client-interface.java | 205 +++++--- .../client/test-query-async-client-class.java | 171 +++++-- .../poet/client/test-query-client-class.java | 157 ++++-- .../unmarshall/XmlResponseParserUtils.java | 2 +- .../ExecutionInterceptorChain.java | 43 +- .../SdkInternalExecutionAttribute.java | 4 + .../trait/HttpChecksumRequired.java | 28 ++ .../internal/handler/BaseClientHandler.java | 25 +- .../HttpChecksumRequiredInterceptor.java | 95 ++++ .../global/handlers/execution.interceptors | 1 + .../AddContentMd5HeaderInterceptor.java | 78 --- .../awssdk/services/s3/execution.interceptors | 1 - .../checksums/ChecksumResetsOnRetryTest.java | 6 +- test/codegen-generated-classes-test/pom.xml | 5 + .../customresponsemetadata/service-2.json | 20 + .../codegen-resources/xml/service-2.json | 20 + .../services/HttpChecksumRequiredTest.java | 162 ++++++ 34 files changed, 1568 insertions(+), 899 deletions(-) create mode 100644 .changes/next-release/bugfix-AWSSDKforJavav2-3374d0a.json create mode 100644 .changes/next-release/bugfix-AmazonS3-9878254.json create mode 100644 .changes/next-release/feature-AmazonS3-544f82b.json create mode 100644 codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/traits/HttpChecksumRequiredTrait.java create mode 100644 core/sdk-core/src/main/java/software/amazon/awssdk/core/interceptor/trait/HttpChecksumRequired.java create mode 100644 core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/interceptor/HttpChecksumRequiredInterceptor.java create mode 100644 core/sdk-core/src/main/resources/software/amazon/awssdk/global/handlers/execution.interceptors delete mode 100644 services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/handlers/AddContentMd5HeaderInterceptor.java create mode 100644 test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/HttpChecksumRequiredTest.java diff --git a/.changes/next-release/bugfix-AWSSDKforJavav2-3374d0a.json b/.changes/next-release/bugfix-AWSSDKforJavav2-3374d0a.json new file mode 100644 index 000000000000..113f3c29fb48 --- /dev/null +++ b/.changes/next-release/bugfix-AWSSDKforJavav2-3374d0a.json @@ -0,0 +1,5 @@ +{ + "type": "bugfix", + "category": "AWS SDK for Java v2", + "description": "Fixed an issue where requestBody and asyncRequestBody were not visible in ExecutionInterceptor.afterMarshalling." +} diff --git a/.changes/next-release/bugfix-AmazonS3-9878254.json b/.changes/next-release/bugfix-AmazonS3-9878254.json new file mode 100644 index 000000000000..510e69d3b21e --- /dev/null +++ b/.changes/next-release/bugfix-AmazonS3-9878254.json @@ -0,0 +1,5 @@ +{ + "type": "bugfix", + "category": "Amazon S3", + "description": "Fixed an issue where metrics were not being collected for Amazon S3 (or other XML services)" +} diff --git a/.changes/next-release/feature-AmazonS3-544f82b.json b/.changes/next-release/feature-AmazonS3-544f82b.json new file mode 100644 index 000000000000..da565b93104b --- /dev/null +++ b/.changes/next-release/feature-AmazonS3-544f82b.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "Amazon S3", + "description": "Moved the logic for calculating the Content-MD5 checksums from s3 to sdk-core. As always, make sure to use a version of 'sdk-core' greater than or equal to your version of 's3'. If you use an old version of 'sdk-core' and a new version of 's3', you will receive errors that Content-MD5 is required." +} diff --git a/build-tools/src/main/resources/software/amazon/awssdk/spotbugs-suppressions.xml b/build-tools/src/main/resources/software/amazon/awssdk/spotbugs-suppressions.xml index 58b68ae5fee9..448b951a533d 100644 --- a/build-tools/src/main/resources/software/amazon/awssdk/spotbugs-suppressions.xml +++ b/build-tools/src/main/resources/software/amazon/awssdk/spotbugs-suppressions.xml @@ -211,4 +211,11 @@ + + + + + + + diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/AddOperations.java b/codegen/src/main/java/software/amazon/awssdk/codegen/AddOperations.java index e6a2c3cac520..db3068630790 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/AddOperations.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/AddOperations.java @@ -162,6 +162,7 @@ public Map constructOperations() { operationModel.setEndpointOperation(op.isEndpointoperation()); operationModel.setEndpointDiscovery(op.getEndpointdiscovery()); operationModel.setEndpointTrait(op.getEndpoint()); + operationModel.setHttpChecksumRequired(op.isHttpChecksumRequired()); Input input = op.getInput(); if (input != null) { diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/OperationModel.java b/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/OperationModel.java index aa1b55f8a906..eb0532056712 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/OperationModel.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/OperationModel.java @@ -62,6 +62,8 @@ public class OperationModel extends DocumentationModel { private EndpointTrait endpointTrait; + private boolean httpChecksumRequired; + public String getOperationName() { return operationName; } @@ -272,4 +274,12 @@ private boolean containsEventStream(ShapeModel shapeModel) { .filter(m -> m.getShape() != null) .anyMatch(m -> m.getShape().isEventStream()); } + + public boolean isHttpChecksumRequired() { + return httpChecksumRequired; + } + + public void setHttpChecksumRequired(boolean httpChecksumRequired) { + this.httpChecksumRequired = httpChecksumRequired; + } } diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/model/service/Operation.java b/codegen/src/main/java/software/amazon/awssdk/codegen/model/service/Operation.java index fe1aefdd5863..398118cf2fb3 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/model/service/Operation.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/model/service/Operation.java @@ -46,6 +46,8 @@ public class Operation { private AuthType authtype = AuthType.IAM; + private boolean httpChecksumRequired; + public String getName() { return name; } @@ -164,4 +166,12 @@ public EndpointTrait getEndpoint() { public void setEndpoint(EndpointTrait endpoint) { this.endpoint = endpoint; } + + public boolean isHttpChecksumRequired() { + return httpChecksumRequired; + } + + public void setHttpChecksumRequired(boolean httpChecksumRequired) { + this.httpChecksumRequired = httpChecksumRequired; + } } diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/specs/Ec2ProtocolSpec.java b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/specs/Ec2ProtocolSpec.java index e595f6739719..19ab56530848 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/specs/Ec2ProtocolSpec.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/specs/Ec2ProtocolSpec.java @@ -29,54 +29,4 @@ public Ec2ProtocolSpec(IntermediateModel model, PoetExtensions poetExtensions) { protected Class protocolFactoryClass() { return AwsEc2ProtocolFactory.class; } - - /* - TODO Dry run support - private MethodSpec dryRunMethod() { - TypeVariableName typeVariableName = TypeVariableName.get("X", AmazonWebServiceRequest.class); - ClassName dryRunResult = poetExtensions.getModelClass("DryRunResult"); - TypeName dryRunResultGeneric = ParameterizedTypeName.get(dryRunResult, typeVariableName); - ClassName dryRunRequest = poetExtensions.getModelClass("DryRunSupportedRequest"); - TypeName dryRunRequestGeneric = ParameterizedTypeName.get(dryRunRequest, typeVariableName); - return MethodSpec.methodBuilder("dryRun") - .returns(dryRunResultGeneric) - .addModifiers(Modifier.PUBLIC) - .addParameter(dryRunRequestGeneric, "request") - .addTypeVariable(typeVariableName) - .addStatement("$T dryRunRequest = request.getDryRunRequest()", - Request.class) - .beginControlFlow("try") - .addStatement("$T<$T> responseHandler = new $T<$T>(new $T())", - StaxResponseHandler.class, - dryRunResult, - StaxResponseHandler.class, - dryRunResult, - VoidStaxUnmarshaller.class) - .addStatement("\nclientHandler.execute(new $T<$T, $T>().marshaller($L).withResponseHandler($N)" + - ".withInput($L))", - ClientExecutionParams.class, - Request.class, - dryRunResult, - "null", - "responseHandler", - "dryRunRequest") - .addStatement("throw new $T($S)", SdkClientException.class, - "Unrecognized service response for the dry-run request.") - .endControlFlow() - .beginControlFlow("catch (AwsServiceException exception)") - .beginControlFlow("if (exception.errorCode().equals($S) && exception.statusCode() == 412)", - "DryRunOperation") - .addStatement("return new $T(true, request, exception.getMessage(), exception)", dryRunResultGeneric) - .endControlFlow() - .beginControlFlow("else if (exception.errorCode().equals($S) && exception.statusCode() == 403)", - "UnauthorizedOperation") - .addStatement("return new $T(false, request, exception.getMessage(), exception)", dryRunResultGeneric) - .endControlFlow() - .addStatement("throw new $T($S, exception)", SdkClientException.class, - "Unrecognized service response for the dry-run request.") - .endControlFlow() - .build(); - - } - */ } diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/specs/JsonProtocolSpec.java b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/specs/JsonProtocolSpec.java index f4438a674eb5..679876843a0c 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/specs/JsonProtocolSpec.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/specs/JsonProtocolSpec.java @@ -39,6 +39,7 @@ import software.amazon.awssdk.codegen.model.intermediate.Protocol; import software.amazon.awssdk.codegen.model.intermediate.ShapeModel; import software.amazon.awssdk.codegen.poet.PoetExtensions; +import software.amazon.awssdk.codegen.poet.client.traits.HttpChecksumRequiredTrait; import software.amazon.awssdk.codegen.poet.eventstream.EventStreamUtils; import software.amazon.awssdk.core.SdkPojoBuilder; import software.amazon.awssdk.core.SdkResponse; @@ -79,21 +80,18 @@ public MethodSpec initProtocolFactory(IntermediateModel model) { TypeVariableName.get("T")); TypeVariableName typeVariableName = TypeVariableName.get("T", upperBound); - MethodSpec.Builder methodSpec = MethodSpec.methodBuilder("init") - .addTypeVariable(typeVariableName) - .addParameter(typeVariableName, "builder") - .returns(typeVariableName) - .addModifiers(Modifier.PRIVATE) - .addCode( - "return builder\n" + - ".clientConfiguration(clientConfiguration)\n" + - ".defaultServiceExceptionSupplier($T::builder)\n" + - ".protocol($T.$L)\n" + - ".protocolVersion($S)\n" - + "$L", - baseException, AwsJsonProtocol.class, - protocolEnumName(metadata.getProtocol()), metadata.getJsonVersion(), - customErrorCodeFieldName()); + MethodSpec.Builder methodSpec = + MethodSpec.methodBuilder("init") + .addTypeVariable(typeVariableName) + .addParameter(typeVariableName, "builder") + .returns(typeVariableName) + .addModifiers(Modifier.PRIVATE) + .addCode("return builder\n") + .addCode(".clientConfiguration(clientConfiguration)\n") + .addCode(".defaultServiceExceptionSupplier($T::builder)\n", baseException) + .addCode(".protocol($T.$L)\n", AwsJsonProtocol.class, protocolEnumName(metadata.getProtocol())) + .addCode(".protocolVersion($S)\n", metadata.getJsonVersion()) + .addCode("$L", customErrorCodeFieldName()); if (metadata.getContentType() != null) { methodSpec.addCode(".withContentTypeOverride($S)", metadata.getContentType()); @@ -126,12 +124,13 @@ public CodeBlock responseHandler(IntermediateModel model, OperationModel opModel TypeName pojoResponseType = getPojoResponseType(opModel, poetExtensions); String protocolFactory = protocolFactoryLiteral(model, opModel); - CodeBlock.Builder builder = CodeBlock.builder(); - builder.add("$T operationMetadata = $T.builder()\n" - + ".hasStreamingSuccessResponse($L)\n" - + ".isPayloadJson($L)\n" - + ".build();", JsonOperationMetadata.class, JsonOperationMetadata.class, - opModel.hasStreamingOutput(), !opModel.getHasBlobMemberAsPayload()); + CodeBlock.Builder builder = + CodeBlock.builder() + .add("$T operationMetadata = $T.builder()\n", JsonOperationMetadata.class, JsonOperationMetadata.class) + .add(".hasStreamingSuccessResponse($L)\n", opModel.hasStreamingOutput()) + .add(".isPayloadJson($L)\n", !opModel.getHasBlobMemberAsPayload()) + .add(".build();"); + if (opModel.hasEventStreamOutput()) { responseHandlersForEventStreaming(opModel, pojoResponseType, protocolFactory, builder); } else { @@ -161,24 +160,18 @@ public CodeBlock executionHandler(OperationModel opModel) { ClassName requestType = poetExtensions.getModelClass(opModel.getInput().getVariableType()); ClassName marshaller = poetExtensions.getRequestTransformClass(opModel.getInputShape().getShapeName() + "Marshaller"); - CodeBlock.Builder codeBlock = CodeBlock - .builder() - .add("\n\nreturn clientHandler.execute(new $T<$T, $T>()\n" + - ".withOperationName(\"$N\")\n" + - ".withResponseHandler($N)\n" + - ".withErrorResponseHandler($N)\n" + - hostPrefixExpression(opModel) + - discoveredEndpoint(opModel) + - ".withInput($L)\n", - ClientExecutionParams.class, - requestType, - responseType, - opModel.getOperationName(), - "responseHandler", - "errorResponseHandler", - opModel.getInput().getVariableName()); - - codeBlock.add(".withMetricCollector($N)", "apiCallMetricCollector"); + CodeBlock.Builder codeBlock = + CodeBlock.builder() + .add("\n\nreturn clientHandler.execute(new $T<$T, $T>()\n", + ClientExecutionParams.class, requestType, responseType) + .add(".withOperationName(\"$N\")\n", opModel.getOperationName()) + .add(".withResponseHandler(responseHandler)\n") + .add(".withErrorResponseHandler(errorResponseHandler)\n") + .add(hostPrefixExpression(opModel)) + .add(discoveredEndpoint(opModel)) + .add(".withInput($L)\n", opModel.getInput().getVariableName()) + .add(".withMetricCollector(apiCallMetricCollector)") + .add(HttpChecksumRequiredTrait.putHttpChecksumAttribute(opModel)); if (opModel.hasStreamingInput()) { codeBlock.add(".withRequestBody(requestBody)") @@ -206,22 +199,19 @@ public CodeBlock asyncExecutionHandler(IntermediateModel intermediateModel, Oper ClassName eventStreamBaseClass = poetExtensions.getModelClassFromShape(shapeModel); ParameterizedTypeName transformerType = ParameterizedTypeName.get( ClassName.get(EventStreamAsyncResponseTransformer.class), pojoResponseType, eventStreamBaseClass); - builder.addStatement("$1T<$2T> future = new $1T<>()", - ClassName.get(CompletableFuture.class), - ClassName.get(Void.class)); - builder.add("$T asyncResponseTransformer = $T.<$T, $T>builder()\n" + - " .eventStreamResponseHandler(asyncResponseHandler)\n" - + " .eventResponseHandler(eventResponseHandler)\n" - + " .initialResponseHandler(responseHandler)\n" - + " .exceptionResponseHandler(errorResponseHandler)\n" - + " .future(future)\n" - + " .executor(executor)\n" - + " .serviceName(serviceName())\n" - + " .build();", - transformerType, - ClassName.get(EventStreamAsyncResponseTransformer.class), - pojoResponseType, - eventStreamBaseClass); + + builder.add("$1T<$2T> future = new $1T<>();", ClassName.get(CompletableFuture.class), ClassName.get(Void.class)) + .add("$T asyncResponseTransformer = $T.<$T, $T>builder()\n", + transformerType, ClassName.get(EventStreamAsyncResponseTransformer.class), pojoResponseType, + eventStreamBaseClass) + .add(".eventStreamResponseHandler(asyncResponseHandler)\n") + .add(".eventResponseHandler(eventResponseHandler)\n") + .add(".initialResponseHandler(responseHandler)\n") + .add(".exceptionResponseHandler(errorResponseHandler)\n") + .add(".future(future)\n") + .add(".executor(executor)\n") + .add(".serviceName(serviceName())\n") + .add(".build();"); if (isRestJson) { builder.add(restAsyncResponseTransformer(pojoResponseType, eventStreamBaseClass)); @@ -235,36 +225,23 @@ public CodeBlock asyncExecutionHandler(IntermediateModel intermediateModel, Oper : pojoResponseType; TypeName executeFutureValueType = executeFutureValueType(opModel, poetExtensions); - builder.add("\n\n$T<$T> executeFuture = clientHandler.execute(new $T<$T, $T>()\n" + - ".withOperationName(\"$N\")\n" + - ".withMarshaller($L)\n" + - "$L" + - "$L" + - ".withResponseHandler($L)\n" + - ".withErrorResponseHandler(errorResponseHandler)\n" + - ".withMetricCollector(apiCallMetricCollector)\n" + - hostPrefixExpression(opModel) + - discoveredEndpoint(opModel) + - asyncRequestBody + - ".withInput($L)$L);", - CompletableFuture.class, - executeFutureValueType, - ClientExecutionParams.class, - requestType, - responseType, - opModel.getOperationName(), - asyncMarshaller(model, opModel, marshaller, protocolFactory), - opModel.hasEventStreamInput() ? CodeBlock.builder() - .add(".withAsyncRequestBody($T.fromPublisher(adapted))", - AsyncRequestBody.class) - .build() - .toString() - : "", - opModel.hasEventStreamInput() && opModel.hasEventStreamOutput() ? CodeBlock - .builder().add(".withFullDuplex(true)").build() : "", - opModel.hasEventStreamOutput() && !isRestJson ? "voidResponseHandler" : "responseHandler", - opModel.getInput().getVariableName(), - asyncResponseTransformerVariable(isStreaming, isRestJson, opModel)); + builder.add("\n\n$T<$T> executeFuture = clientHandler.execute(new $T<$T, $T>()\n", + CompletableFuture.class, executeFutureValueType, ClientExecutionParams.class, requestType, responseType) + .add(".withOperationName(\"$N\")\n", opModel.getOperationName()) + .add(".withMarshaller($L)\n", asyncMarshaller(model, opModel, marshaller, protocolFactory)) + .add(asyncRequestBody(opModel)) + .add(fullDuplex(opModel)) + .add(".withResponseHandler($L)\n", responseHandlerName(opModel, isRestJson)) + .add(".withErrorResponseHandler(errorResponseHandler)\n") + .add(".withMetricCollector(apiCallMetricCollector)\n") + .add(hostPrefixExpression(opModel)) + .add(discoveredEndpoint(opModel)) + .add(asyncRequestBody) + .add(HttpChecksumRequiredTrait.putHttpChecksumAttribute(opModel)) + .add(".withInput($L)$L);", + opModel.getInput().getVariableName(), asyncResponseTransformerVariable(isStreaming, isRestJson, opModel)); + + String whenComplete = whenCompleteBody(opModel, customerResponseHandler); if (!whenComplete.isEmpty()) { String whenCompletedFutureName = "whenCompleted"; @@ -283,6 +260,22 @@ public CodeBlock asyncExecutionHandler(IntermediateModel intermediateModel, Oper return builder.build(); } + private String responseHandlerName(OperationModel opModel, boolean isRestJson) { + return opModel.hasEventStreamOutput() && !isRestJson ? "voidResponseHandler" + : "responseHandler"; + } + + private CodeBlock fullDuplex(OperationModel opModel) { + return opModel.hasEventStreamInput() && opModel.hasEventStreamOutput() ? CodeBlock.of(".withFullDuplex(true)") + : CodeBlock.of(""); + } + + private CodeBlock asyncRequestBody(OperationModel opModel) { + return opModel.hasEventStreamInput() ? CodeBlock.of(".withAsyncRequestBody($T.fromPublisher(adapted))", + AsyncRequestBody.class) + : CodeBlock.of(""); + } + private String asyncResponseTransformerVariable(boolean isStreaming, boolean isRestJson, OperationModel opModel) { if (isStreaming) { if (opModel.hasEventStreamOutput() && isRestJson) { @@ -306,14 +299,12 @@ private CodeBlock restAsyncResponseTransformer(TypeName pojoResponseType, ClassN ParameterizedTypeName restTransformerType = ParameterizedTypeName.get( ClassName.get(RestEventStreamAsyncResponseTransformer.class), pojoResponseType, eventStreamBaseClass); return CodeBlock.builder() - .add("$T restAsyncResponseTransformer = $T.<$T, $T>builder()\n" - + ".eventStreamAsyncResponseTransformer(asyncResponseTransformer)\n" - + ".eventStreamResponseHandler(asyncResponseHandler)\n" - + ".build();", - restTransformerType, - ClassName.get(RestEventStreamAsyncResponseTransformer.class), - pojoResponseType, + .add("$T restAsyncResponseTransformer = $T.<$T, $T>builder()\n", + restTransformerType, ClassName.get(RestEventStreamAsyncResponseTransformer.class), pojoResponseType, eventStreamBaseClass) + .add(".eventStreamAsyncResponseTransformer(asyncResponseTransformer)\n") + .add(".eventStreamResponseHandler(asyncResponseHandler)\n") + .add(".build();") .build(); } diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/specs/QueryProtocolSpec.java b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/specs/QueryProtocolSpec.java index 1c6327a0e063..2ea4cfc385a8 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/specs/QueryProtocolSpec.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/specs/QueryProtocolSpec.java @@ -29,6 +29,7 @@ import software.amazon.awssdk.codegen.model.intermediate.IntermediateModel; import software.amazon.awssdk.codegen.model.intermediate.OperationModel; import software.amazon.awssdk.codegen.poet.PoetExtensions; +import software.amazon.awssdk.codegen.poet.client.traits.HttpChecksumRequiredTrait; import software.amazon.awssdk.core.client.handler.ClientExecutionParams; import software.amazon.awssdk.core.http.HttpResponseHandler; import software.amazon.awssdk.protocols.query.AwsQueryProtocolFactory; @@ -99,24 +100,18 @@ public CodeBlock executionHandler(OperationModel opModel) { TypeName responseType = poetExtensions.getModelClass(opModel.getReturnType().getReturnType()); ClassName requestType = poetExtensions.getModelClass(opModel.getInput().getVariableType()); ClassName marshaller = poetExtensions.getTransformClass(opModel.getInputShape().getShapeName() + "Marshaller"); - CodeBlock.Builder codeBlock = CodeBlock - .builder() - .add("\n\nreturn clientHandler.execute(new $T<$T, $T>()" + - ".withOperationName(\"$N\")\n" + - ".withResponseHandler($N)" + - ".withErrorResponseHandler($N)" + - hostPrefixExpression(opModel) + - discoveredEndpoint(opModel) + - ".withInput($L)", - ClientExecutionParams.class, - requestType, - responseType, - opModel.getOperationName(), - "responseHandler", - "errorResponseHandler", - opModel.getInput().getVariableName()); - - codeBlock.add(".withMetricCollector($N)", "apiCallMetricCollector"); + CodeBlock.Builder codeBlock = + CodeBlock.builder() + .add("\n\nreturn clientHandler.execute(new $T<$T, $T>()", + ClientExecutionParams.class, requestType, responseType) + .add(".withOperationName($S)\n", opModel.getOperationName()) + .add(".withResponseHandler(responseHandler)\n") + .add(".withErrorResponseHandler(errorResponseHandler)\n") + .add(hostPrefixExpression(opModel)) + .add(discoveredEndpoint(opModel)) + .add(".withInput($L)", opModel.getInput().getVariableName()) + .add(".withMetricCollector(apiCallMetricCollector)") + .add(HttpChecksumRequiredTrait.putHttpChecksumAttribute(opModel)); if (opModel.hasStreamingInput()) { return codeBlock.add(".withRequestBody(requestBody)") @@ -136,27 +131,23 @@ public CodeBlock asyncExecutionHandler(IntermediateModel intermediateModel, Oper String asyncRequestBody = opModel.hasStreamingInput() ? ".withAsyncRequestBody(requestBody)" : ""; TypeName executeFutureValueType = executeFutureValueType(opModel, poetExtensions); - CodeBlock.Builder builder = CodeBlock.builder().add("\n\n$T<$T> executeFuture = clientHandler.execute(new $T<$T, $T>()" - + "\n" + - ".withOperationName(\"$N\")\n" + - ".withMarshaller($L)" + - ".withResponseHandler(responseHandler)" + - ".withErrorResponseHandler($N)\n" + - ".withMetricCollector(apiCallMetricCollector)\n" + - hostPrefixExpression(opModel) + - asyncRequestBody + - ".withInput($L) $L);", - CompletableFuture.class, - executeFutureValueType, - ClientExecutionParams.class, - requestType, - pojoResponseType, - opModel.getOperationName(), - asyncMarshaller(intermediateModel, opModel, marshaller, - "protocolFactory"), - "errorResponseHandler", - opModel.getInput().getVariableName(), - opModel.hasStreamingOutput() ? ", asyncResponseTransformer" : ""); + CodeBlock.Builder builder = + CodeBlock.builder() + .add("\n\n$T<$T> executeFuture = clientHandler.execute(new $T<$T, $T>()\n", + CompletableFuture.class, executeFutureValueType, ClientExecutionParams.class, + requestType, pojoResponseType) + .add(".withOperationName(\"$N\")\n", opModel.getOperationName()) + .add(".withMarshaller($L)\n", + asyncMarshaller(intermediateModel, opModel, marshaller, "protocolFactory")) + .add(".withResponseHandler(responseHandler)\n") + .add(".withErrorResponseHandler(errorResponseHandler)\n") + .add(".withMetricCollector(apiCallMetricCollector)\n") + .add(HttpChecksumRequiredTrait.putHttpChecksumAttribute(opModel)); + + builder.add(hostPrefixExpression(opModel) + asyncRequestBody + ".withInput($L)$L);", + opModel.getInput().getVariableName(), + opModel.hasStreamingOutput() ? ", asyncResponseTransformer" : ""); + builder.addStatement("$T requestOverrideConfig = $L.overrideConfiguration().orElse(null)", AwsRequestOverrideConfiguration.class, opModel.getInput().getVariableName()); diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/specs/XmlProtocolSpec.java b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/specs/XmlProtocolSpec.java index 58341ff1ddc7..1e1284f116f4 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/specs/XmlProtocolSpec.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/specs/XmlProtocolSpec.java @@ -29,6 +29,8 @@ import software.amazon.awssdk.codegen.model.intermediate.IntermediateModel; import software.amazon.awssdk.codegen.model.intermediate.OperationModel; import software.amazon.awssdk.codegen.poet.PoetExtensions; +import software.amazon.awssdk.codegen.poet.client.traits.HttpChecksumRequiredTrait; +import software.amazon.awssdk.core.client.handler.ClientExecutionParams; import software.amazon.awssdk.core.http.HttpResponseHandler; import software.amazon.awssdk.protocols.xml.AwsXmlProtocolFactory; import software.amazon.awssdk.protocols.xml.XmlOperationMetadata; @@ -71,13 +73,9 @@ public CodeBlock responseHandler(IntermediateModel model, ParameterizedTypeName.get(ClassName.get(software.amazon.awssdk.core.Response.class), responseType)); return CodeBlock.builder() - .addStatement("\n\n$T responseHandler = protocolFactory.createCombinedResponseHandler" - + "($T::builder," + .addStatement("\n\n$T responseHandler = protocolFactory.createCombinedResponseHandler($T::builder, " + "new $T().withHasStreamingSuccessResponse($L))", - handlerType, - responseType, - XmlOperationMetadata.class, - opModel.hasStreamingOutput()) + handlerType, responseType, XmlOperationMetadata.class, opModel.hasStreamingOutput()) .build(); } @@ -85,12 +83,9 @@ private CodeBlock streamingResponseHandler(OperationModel opModel) { ClassName responseType = poetExtensions.getModelClass(opModel.getReturnType().getReturnType()); return CodeBlock.builder() - .addStatement("\n\n$T<$T> responseHandler = protocolFactory.createResponseHandler($T::builder," + .addStatement("\n\n$T<$T> responseHandler = protocolFactory.createResponseHandler($T::builder, " + "new $T().withHasStreamingSuccessResponse($L))", - HttpResponseHandler.class, - responseType, - responseType, - XmlOperationMetadata.class, + HttpResponseHandler.class, responseType, responseType, XmlOperationMetadata.class, opModel.hasStreamingOutput()) .build(); } @@ -113,23 +108,16 @@ public CodeBlock executionHandler(OperationModel opModel) { TypeName responseType = poetExtensions.getModelClass(opModel.getReturnType().getReturnType()); ClassName requestType = poetExtensions.getModelClass(opModel.getInput().getVariableType()); ClassName marshaller = poetExtensions.getTransformClass(opModel.getInputShape().getShapeName() + "Marshaller"); - CodeBlock.Builder codeBlock = CodeBlock - .builder() - .add("\n\nreturn clientHandler.execute(new $T<$T, $T>()" + - ".withOperationName(\"$N\")\n" + - ".withCombinedResponseHandler($N)" + - ".withMetricCollector(apiCallMetricCollector)\n" + - hostPrefixExpression(opModel) + - discoveredEndpoint(opModel) + - ".withInput($L)", - software.amazon.awssdk.core.client.handler.ClientExecutionParams.class, - requestType, - responseType, - opModel.getOperationName(), - "responseHandler", - opModel.getInput().getVariableName()); - - codeBlock.add(".withMetricCollector($N)", "apiCallMetricCollector"); + CodeBlock.Builder codeBlock = CodeBlock.builder() + .add("\n\nreturn clientHandler.execute(new $T<$T, $T>()\n", + ClientExecutionParams.class, requestType, responseType) + .add(".withOperationName($S)\n", opModel.getOperationName()) + .add(".withCombinedResponseHandler(responseHandler)\n") + .add(".withMetricCollector(apiCallMetricCollector)\n" + + hostPrefixExpression(opModel) + + discoveredEndpoint(opModel)) + .add(".withInput($L)", opModel.getInput().getVariableName()) + .add(HttpChecksumRequiredTrait.putHttpChecksumAttribute(opModel)); s3ArnableFields(opModel, model).ifPresent(codeBlock::add); @@ -173,25 +161,19 @@ public CodeBlock asyncExecutionHandler(IntermediateModel intermediateModel, Oper ClassName requestType = poetExtensions.getModelClass(opModel.getInput().getVariableType()); ClassName marshaller = poetExtensions.getRequestTransformClass(opModel.getInputShape().getShapeName() + "Marshaller"); - String asyncRequestBody = opModel.hasStreamingInput() ? ".withAsyncRequestBody(requestBody)" - : ""; TypeName executeFutureValueType = executeFutureValueType(opModel, poetExtensions); CodeBlock.Builder builder = - CodeBlock.builder().add("\n\n$T<$T> executeFuture = clientHandler.execute(new $T<$T, $T>()" - + "\n" + - ".withOperationName(\"$N\")\n" + - ".withMarshaller($L)" + - ".withCombinedResponseHandler($N)" + - hostPrefixExpression(opModel) + - asyncRequestBody, - java.util.concurrent.CompletableFuture.class, - executeFutureValueType, - software.amazon.awssdk.core.client.handler.ClientExecutionParams.class, - requestType, - pojoResponseType, - opModel.getOperationName(), - asyncMarshaller(intermediateModel, opModel, marshaller, "protocolFactory"), - "responseHandler"); + CodeBlock.builder() + .add("\n\n$T<$T> executeFuture = clientHandler.execute(new $T<$T, $T>()\n", + CompletableFuture.class, executeFutureValueType, + ClientExecutionParams.class, requestType, pojoResponseType) + .add(".withOperationName(\"$N\")\n", opModel.getOperationName()) + .add(".withMarshaller($L)\n", asyncMarshaller(intermediateModel, opModel, marshaller, "protocolFactory")) + .add(".withCombinedResponseHandler(responseHandler)\n") + .add(".withMetricCollector(apiCallMetricCollector)\n") + .add(asyncRequestBody(opModel)) + .add(HttpChecksumRequiredTrait.putHttpChecksumAttribute(opModel)); + s3ArnableFields(opModel, model).ifPresent(builder::add); builder.add(".withInput($L) $L);", opModel.getInput().getVariableName(), opModel.hasStreamingOutput() ? ", asyncResponseTransformer" : ""); @@ -212,6 +194,10 @@ public CodeBlock asyncExecutionHandler(IntermediateModel intermediateModel, Oper return builder.build(); } + private String asyncRequestBody(OperationModel opModel) { + return opModel.hasStreamingInput() ? ".withAsyncRequestBody(requestBody)" : ""; + } + private CodeBlock asyncStreamingExecutionHandler(IntermediateModel intermediateModel, OperationModel opModel) { return super.asyncExecutionHandler(intermediateModel, opModel); } diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/traits/HttpChecksumRequiredTrait.java b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/traits/HttpChecksumRequiredTrait.java new file mode 100644 index 000000000000..69abf57d5f93 --- /dev/null +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/traits/HttpChecksumRequiredTrait.java @@ -0,0 +1,44 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.codegen.poet.client.traits; + +import com.squareup.javapoet.CodeBlock; +import software.amazon.awssdk.codegen.model.intermediate.OperationModel; +import software.amazon.awssdk.core.client.handler.ClientExecutionParams; +import software.amazon.awssdk.core.interceptor.SdkInternalExecutionAttribute; +import software.amazon.awssdk.core.interceptor.trait.HttpChecksumRequired; + +/** + * The logic for handling the "httpChecksumRequired" trait within the code generator. + */ +public class HttpChecksumRequiredTrait { + private HttpChecksumRequiredTrait() { + } + + /** + * Generate a ".putExecutionAttribute(...)" code-block for the provided operation model. This should be used within the + * context of initializing {@link ClientExecutionParams}. If HTTP checksums are not required by the operation, this will + * return an empty code-block. + */ + public static CodeBlock putHttpChecksumAttribute(OperationModel operationModel) { + if (operationModel.isHttpChecksumRequired()) { + return CodeBlock.of(".putExecutionAttribute($T.HTTP_CHECKSUM_REQUIRED, $T.create())\n", + SdkInternalExecutionAttribute.class, HttpChecksumRequired.class); + } + + return CodeBlock.of(""); + } +} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/c2j/json/service-2.json b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/c2j/json/service-2.json index 2cca71c81ecc..804601499ba8 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/c2j/json/service-2.json +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/c2j/json/service-2.json @@ -13,6 +13,14 @@ "xmlNamespace": "https://json-service.amazonaws.com/doc/2010-05-08/" }, "operations": { + "OperationWithChecksumRequired": { + "name": "APostOperation", + "http": { + "method": "POST", + "requestUri": "/" + }, + "httpChecksumRequired": true + }, "APostOperation": { "name": "APostOperation", "http": { diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/c2j/query/service-2.json b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/c2j/query/service-2.json index f1771745a533..2cc6c02c3825 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/c2j/query/service-2.json +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/c2j/query/service-2.json @@ -13,6 +13,14 @@ "xmlNamespace": "https://query-service.amazonaws.com/doc/2010-05-08/" }, "operations": { + "OperationWithChecksumRequired": { + "name": "APostOperation", + "http": { + "method": "POST", + "requestUri": "/" + }, + "httpChecksumRequired": true + }, "APostOperation": { "name": "APostOperation", "http": { diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-async-client-class.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-async-client-class.java index e1ce9d74aa78..17432165b749 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-async-client-class.java +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-async-client-class.java @@ -38,6 +38,8 @@ import software.amazon.awssdk.core.client.handler.AttachHttpMetadataResponseHandler; import software.amazon.awssdk.core.client.handler.ClientExecutionParams; import software.amazon.awssdk.core.http.HttpResponseHandler; +import software.amazon.awssdk.core.interceptor.SdkInternalExecutionAttribute; +import software.amazon.awssdk.core.interceptor.trait.HttpChecksumRequired; import software.amazon.awssdk.core.metrics.CoreMetric; import software.amazon.awssdk.core.protocol.VoidSdkResponse; import software.amazon.awssdk.core.runtime.transform.AsyncStreamingRequestMarshaller; @@ -75,6 +77,8 @@ import software.amazon.awssdk.services.json.model.InvalidInputException; import software.amazon.awssdk.services.json.model.JsonException; import software.amazon.awssdk.services.json.model.JsonRequest; +import software.amazon.awssdk.services.json.model.OperationWithChecksumRequiredRequest; +import software.amazon.awssdk.services.json.model.OperationWithChecksumRequiredResponse; import software.amazon.awssdk.services.json.model.PaginatedOperationWithResultKeyRequest; import software.amazon.awssdk.services.json.model.PaginatedOperationWithResultKeyResponse; import software.amazon.awssdk.services.json.model.PaginatedOperationWithoutResultKeyRequest; @@ -95,6 +99,7 @@ import software.amazon.awssdk.services.json.transform.GetWithoutRequiredMembersRequestMarshaller; import software.amazon.awssdk.services.json.transform.InputEventMarshaller; import software.amazon.awssdk.services.json.transform.InputEventTwoMarshaller; +import software.amazon.awssdk.services.json.transform.OperationWithChecksumRequiredRequestMarshaller; import software.amazon.awssdk.services.json.transform.PaginatedOperationWithResultKeyRequestMarshaller; import software.amazon.awssdk.services.json.transform.PaginatedOperationWithoutResultKeyRequestMarshaller; import software.amazon.awssdk.services.json.transform.StreamingInputOperationRequestMarshaller; @@ -159,32 +164,32 @@ public final String serviceName() { @Override public CompletableFuture aPostOperation(APostOperationRequest aPostOperationRequest) { List metricPublishers = resolveMetricPublishers(clientConfiguration, aPostOperationRequest - .overrideConfiguration().orElse(null)); + .overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Json Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "APostOperation"); JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(false) - .isPayloadJson(true).build(); + .isPayloadJson(true).build(); HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( - operationMetadata, APostOperationResponse::builder); + operationMetadata, APostOperationResponse::builder); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, - operationMetadata); + operationMetadata); String hostPrefix = "{StringMember}-foo."; HostnameValidator.validateHostnameCompliant(aPostOperationRequest.stringMember(), "StringMember", - "aPostOperationRequest"); + "aPostOperationRequest"); String resolvedHostExpression = String.format("%s-foo.", aPostOperationRequest.stringMember()); CompletableFuture executeFuture = clientHandler - .execute(new ClientExecutionParams() - .withOperationName("APostOperation") - .withMarshaller(new APostOperationRequestMarshaller(protocolFactory)) - .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) - .withMetricCollector(apiCallMetricCollector).hostPrefixExpression(resolvedHostExpression) - .withInput(aPostOperationRequest)); + .execute(new ClientExecutionParams() + .withOperationName("APostOperation") + .withMarshaller(new APostOperationRequestMarshaller(protocolFactory)) + .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) + .withMetricCollector(apiCallMetricCollector).hostPrefixExpression(resolvedHostExpression) + .withInput(aPostOperationRequest)); AwsRequestOverrideConfiguration requestOverrideConfig = aPostOperationRequest.overrideConfiguration().orElse(null); CompletableFuture whenCompleted = executeFuture.whenComplete((r, e) -> { metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); @@ -222,31 +227,31 @@ public CompletableFuture aPostOperation(APostOperationRe */ @Override public CompletableFuture aPostOperationWithOutput( - APostOperationWithOutputRequest aPostOperationWithOutputRequest) { + APostOperationWithOutputRequest aPostOperationWithOutputRequest) { List metricPublishers = resolveMetricPublishers(clientConfiguration, aPostOperationWithOutputRequest - .overrideConfiguration().orElse(null)); + .overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Json Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "APostOperationWithOutput"); JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(false) - .isPayloadJson(true).build(); + .isPayloadJson(true).build(); HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( - operationMetadata, APostOperationWithOutputResponse::builder); + operationMetadata, APostOperationWithOutputResponse::builder); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, - operationMetadata); + operationMetadata); CompletableFuture executeFuture = clientHandler - .execute(new ClientExecutionParams() - .withOperationName("APostOperationWithOutput") - .withMarshaller(new APostOperationWithOutputRequestMarshaller(protocolFactory)) - .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) - .withMetricCollector(apiCallMetricCollector).withInput(aPostOperationWithOutputRequest)); + .execute(new ClientExecutionParams() + .withOperationName("APostOperationWithOutput") + .withMarshaller(new APostOperationWithOutputRequestMarshaller(protocolFactory)) + .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) + .withMetricCollector(apiCallMetricCollector).withInput(aPostOperationWithOutputRequest)); AwsRequestOverrideConfiguration requestOverrideConfig = aPostOperationWithOutputRequest.overrideConfiguration() - .orElse(null); + .orElse(null); CompletableFuture whenCompleted = executeFuture.whenComplete((r, e) -> { metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); }); @@ -279,58 +284,58 @@ public CompletableFuture aPostOperationWithOut */ @Override public CompletableFuture eventStreamOperation(EventStreamOperationRequest eventStreamOperationRequest, - Publisher requestStream, EventStreamOperationResponseHandler asyncResponseHandler) { + Publisher requestStream, EventStreamOperationResponseHandler asyncResponseHandler) { List metricPublishers = resolveMetricPublishers(clientConfiguration, eventStreamOperationRequest - .overrideConfiguration().orElse(null)); + .overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Json Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "EventStreamOperation"); eventStreamOperationRequest = applySignerOverride(eventStreamOperationRequest, EventStreamAws4Signer.create()); JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(false) - .isPayloadJson(true).build(); + .isPayloadJson(true).build(); HttpResponseHandler responseHandler = new AttachHttpMetadataResponseHandler( - protocolFactory.createResponseHandler(operationMetadata, EventStreamOperationResponse::builder)); + protocolFactory.createResponseHandler(operationMetadata, EventStreamOperationResponse::builder)); HttpResponseHandler voidResponseHandler = protocolFactory.createResponseHandler(JsonOperationMetadata - .builder().isPayloadJson(false).hasStreamingSuccessResponse(true).build(), VoidSdkResponse::builder); + .builder().isPayloadJson(false).hasStreamingSuccessResponse(true).build(), VoidSdkResponse::builder); HttpResponseHandler eventResponseHandler = protocolFactory.createResponseHandler( - JsonOperationMetadata.builder().isPayloadJson(true).hasStreamingSuccessResponse(false).build(), - EventStreamTaggedUnionPojoSupplier.builder().putSdkPojoSupplier("EventOne", EventOne::builder) - .putSdkPojoSupplier("event-two", EventTwo::builder) - .defaultSdkPojoSupplier(() -> new SdkPojoBuilder(EventStream.UNKNOWN)).build()); + JsonOperationMetadata.builder().isPayloadJson(true).hasStreamingSuccessResponse(false).build(), + EventStreamTaggedUnionPojoSupplier.builder().putSdkPojoSupplier("EventOne", EventOne::builder) + .putSdkPojoSupplier("event-two", EventTwo::builder) + .defaultSdkPojoSupplier(() -> new SdkPojoBuilder(EventStream.UNKNOWN)).build()); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, - operationMetadata); + operationMetadata); EventStreamTaggedUnionJsonMarshaller eventMarshaller = EventStreamTaggedUnionJsonMarshaller.builder() - .putMarshaller(InputEvent.class, new InputEventMarshaller(protocolFactory)).build(); + .putMarshaller(InputEvent.class, new InputEventMarshaller(protocolFactory)).build(); SdkPublisher eventPublisher = SdkPublisher.adapt(requestStream); Publisher adapted = eventPublisher.map(event -> eventMarshaller.marshall(event)).map( - AwsClientHandlerUtils::encodeEventStreamRequestToByteBuffer); + AwsClientHandlerUtils::encodeEventStreamRequestToByteBuffer); CompletableFuture future = new CompletableFuture<>(); EventStreamAsyncResponseTransformer asyncResponseTransformer = EventStreamAsyncResponseTransformer - . builder().eventStreamResponseHandler(asyncResponseHandler) - .eventResponseHandler(eventResponseHandler).initialResponseHandler(responseHandler) - .exceptionResponseHandler(errorResponseHandler).future(future).executor(executor).serviceName(serviceName()) - .build(); + . builder().eventStreamResponseHandler(asyncResponseHandler) + .eventResponseHandler(eventResponseHandler).initialResponseHandler(responseHandler) + .exceptionResponseHandler(errorResponseHandler).future(future).executor(executor).serviceName(serviceName()) + .build(); RestEventStreamAsyncResponseTransformer restAsyncResponseTransformer = RestEventStreamAsyncResponseTransformer - . builder() - .eventStreamAsyncResponseTransformer(asyncResponseTransformer) - .eventStreamResponseHandler(asyncResponseHandler).build(); + . builder() + .eventStreamAsyncResponseTransformer(asyncResponseTransformer) + .eventStreamResponseHandler(asyncResponseHandler).build(); CompletableFuture executeFuture = clientHandler.execute( - new ClientExecutionParams() - .withOperationName("EventStreamOperation") - .withMarshaller(new EventStreamOperationRequestMarshaller(protocolFactory)) - .withAsyncRequestBody(software.amazon.awssdk.core.async.AsyncRequestBody.fromPublisher(adapted)) - .withFullDuplex(true).withResponseHandler(responseHandler) - .withErrorResponseHandler(errorResponseHandler).withMetricCollector(apiCallMetricCollector) - .withInput(eventStreamOperationRequest), restAsyncResponseTransformer); + new ClientExecutionParams() + .withOperationName("EventStreamOperation") + .withMarshaller(new EventStreamOperationRequestMarshaller(protocolFactory)) + .withAsyncRequestBody(AsyncRequestBody.fromPublisher(adapted)).withFullDuplex(true) + .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) + .withMetricCollector(apiCallMetricCollector).withInput(eventStreamOperationRequest), + restAsyncResponseTransformer); AwsRequestOverrideConfiguration requestOverrideConfig = eventStreamOperationRequest.overrideConfiguration().orElse( - null); + null); CompletableFuture whenCompleted = executeFuture.whenComplete((r, e) -> { if (e != null) { try { @@ -345,7 +350,7 @@ public CompletableFuture eventStreamOperation(EventStreamOperationRequest return CompletableFutureUtils.forwardExceptionTo(future, executeFuture); } catch (Throwable t) { runAndLogError(log, "Exception thrown in exceptionOccurred callback, ignoring", - () -> asyncResponseHandler.exceptionOccurred(t)); + () -> asyncResponseHandler.exceptionOccurred(t)); metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); return CompletableFutureUtils.failedFuture(t); } @@ -373,41 +378,41 @@ public CompletableFuture eventStreamOperation(EventStreamOperationRequest */ @Override public CompletableFuture eventStreamOperationWithOnlyInput( - EventStreamOperationWithOnlyInputRequest eventStreamOperationWithOnlyInputRequest, - Publisher requestStream) { + EventStreamOperationWithOnlyInputRequest eventStreamOperationWithOnlyInputRequest, + Publisher requestStream) { List metricPublishers = resolveMetricPublishers(clientConfiguration, - eventStreamOperationWithOnlyInputRequest.overrideConfiguration().orElse(null)); + eventStreamOperationWithOnlyInputRequest.overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Json Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "EventStreamOperationWithOnlyInput"); eventStreamOperationWithOnlyInputRequest = applySignerOverride(eventStreamOperationWithOnlyInputRequest, - EventStreamAws4Signer.create()); + EventStreamAws4Signer.create()); JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(false) - .isPayloadJson(true).build(); + .isPayloadJson(true).build(); HttpResponseHandler responseHandler = protocolFactory - .createResponseHandler(operationMetadata, EventStreamOperationWithOnlyInputResponse::builder); + .createResponseHandler(operationMetadata, EventStreamOperationWithOnlyInputResponse::builder); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, - operationMetadata); + operationMetadata); EventStreamTaggedUnionJsonMarshaller eventMarshaller = EventStreamTaggedUnionJsonMarshaller.builder() - .putMarshaller(InputEvent.class, new InputEventMarshaller(protocolFactory)) - .putMarshaller(InputEventTwo.class, new InputEventTwoMarshaller(protocolFactory)).build(); + .putMarshaller(InputEvent.class, new InputEventMarshaller(protocolFactory)) + .putMarshaller(InputEventTwo.class, new InputEventTwoMarshaller(protocolFactory)).build(); SdkPublisher eventPublisher = SdkPublisher.adapt(requestStream); Publisher adapted = eventPublisher.map(event -> eventMarshaller.marshall(event)).map( - AwsClientHandlerUtils::encodeEventStreamRequestToByteBuffer); + AwsClientHandlerUtils::encodeEventStreamRequestToByteBuffer); CompletableFuture executeFuture = clientHandler - .execute(new ClientExecutionParams() - .withOperationName("EventStreamOperationWithOnlyInput") - .withMarshaller(new EventStreamOperationWithOnlyInputRequestMarshaller(protocolFactory)) - .withAsyncRequestBody(software.amazon.awssdk.core.async.AsyncRequestBody.fromPublisher(adapted)) - .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) - .withMetricCollector(apiCallMetricCollector).withInput(eventStreamOperationWithOnlyInputRequest)); + .execute(new ClientExecutionParams() + .withOperationName("EventStreamOperationWithOnlyInput") + .withMarshaller(new EventStreamOperationWithOnlyInputRequestMarshaller(protocolFactory)) + .withAsyncRequestBody(AsyncRequestBody.fromPublisher(adapted)).withResponseHandler(responseHandler) + .withErrorResponseHandler(errorResponseHandler).withMetricCollector(apiCallMetricCollector) + .withInput(eventStreamOperationWithOnlyInputRequest)); AwsRequestOverrideConfiguration requestOverrideConfig = eventStreamOperationWithOnlyInputRequest - .overrideConfiguration().orElse(null); + .overrideConfiguration().orElse(null); CompletableFuture whenCompleted = executeFuture.whenComplete((r, e) -> { metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); }); @@ -441,53 +446,53 @@ public CompletableFuture eventStreamO */ @Override public CompletableFuture eventStreamOperationWithOnlyOutput( - EventStreamOperationWithOnlyOutputRequest eventStreamOperationWithOnlyOutputRequest, - EventStreamOperationWithOnlyOutputResponseHandler asyncResponseHandler) { + EventStreamOperationWithOnlyOutputRequest eventStreamOperationWithOnlyOutputRequest, + EventStreamOperationWithOnlyOutputResponseHandler asyncResponseHandler) { List metricPublishers = resolveMetricPublishers(clientConfiguration, - eventStreamOperationWithOnlyOutputRequest.overrideConfiguration().orElse(null)); + eventStreamOperationWithOnlyOutputRequest.overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Json Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "EventStreamOperationWithOnlyOutput"); JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(false) - .isPayloadJson(true).build(); + .isPayloadJson(true).build(); HttpResponseHandler responseHandler = new AttachHttpMetadataResponseHandler( - protocolFactory.createResponseHandler(operationMetadata, EventStreamOperationWithOnlyOutputResponse::builder)); + protocolFactory.createResponseHandler(operationMetadata, EventStreamOperationWithOnlyOutputResponse::builder)); HttpResponseHandler voidResponseHandler = protocolFactory.createResponseHandler(JsonOperationMetadata - .builder().isPayloadJson(false).hasStreamingSuccessResponse(true).build(), VoidSdkResponse::builder); + .builder().isPayloadJson(false).hasStreamingSuccessResponse(true).build(), VoidSdkResponse::builder); HttpResponseHandler eventResponseHandler = protocolFactory.createResponseHandler( - JsonOperationMetadata.builder().isPayloadJson(true).hasStreamingSuccessResponse(false).build(), - EventStreamTaggedUnionPojoSupplier.builder().putSdkPojoSupplier("EventOne", EventOne::builder) - .putSdkPojoSupplier("event-two", EventTwo::builder) - .defaultSdkPojoSupplier(() -> new SdkPojoBuilder(EventStream.UNKNOWN)).build()); + JsonOperationMetadata.builder().isPayloadJson(true).hasStreamingSuccessResponse(false).build(), + EventStreamTaggedUnionPojoSupplier.builder().putSdkPojoSupplier("EventOne", EventOne::builder) + .putSdkPojoSupplier("event-two", EventTwo::builder) + .defaultSdkPojoSupplier(() -> new SdkPojoBuilder(EventStream.UNKNOWN)).build()); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, - operationMetadata); + operationMetadata); CompletableFuture future = new CompletableFuture<>(); EventStreamAsyncResponseTransformer asyncResponseTransformer = EventStreamAsyncResponseTransformer - . builder() - .eventStreamResponseHandler(asyncResponseHandler).eventResponseHandler(eventResponseHandler) - .initialResponseHandler(responseHandler).exceptionResponseHandler(errorResponseHandler).future(future) - .executor(executor).serviceName(serviceName()).build(); + . builder() + .eventStreamResponseHandler(asyncResponseHandler).eventResponseHandler(eventResponseHandler) + .initialResponseHandler(responseHandler).exceptionResponseHandler(errorResponseHandler).future(future) + .executor(executor).serviceName(serviceName()).build(); RestEventStreamAsyncResponseTransformer restAsyncResponseTransformer = RestEventStreamAsyncResponseTransformer - . builder() - .eventStreamAsyncResponseTransformer(asyncResponseTransformer) - .eventStreamResponseHandler(asyncResponseHandler).build(); + . builder() + .eventStreamAsyncResponseTransformer(asyncResponseTransformer) + .eventStreamResponseHandler(asyncResponseHandler).build(); CompletableFuture executeFuture = clientHandler - .execute( - new ClientExecutionParams() - .withOperationName("EventStreamOperationWithOnlyOutput") - .withMarshaller(new EventStreamOperationWithOnlyOutputRequestMarshaller(protocolFactory)) - .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) - .withMetricCollector(apiCallMetricCollector) - .withInput(eventStreamOperationWithOnlyOutputRequest), restAsyncResponseTransformer); + .execute( + new ClientExecutionParams() + .withOperationName("EventStreamOperationWithOnlyOutput") + .withMarshaller(new EventStreamOperationWithOnlyOutputRequestMarshaller(protocolFactory)) + .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) + .withMetricCollector(apiCallMetricCollector) + .withInput(eventStreamOperationWithOnlyOutputRequest), restAsyncResponseTransformer); AwsRequestOverrideConfiguration requestOverrideConfig = eventStreamOperationWithOnlyOutputRequest - .overrideConfiguration().orElse(null); + .overrideConfiguration().orElse(null); CompletableFuture whenCompleted = executeFuture.whenComplete((r, e) -> { if (e != null) { try { @@ -502,7 +507,7 @@ public CompletableFuture eventStreamOperationWithOnlyOutput( return CompletableFutureUtils.forwardExceptionTo(future, executeFuture); } catch (Throwable t) { runAndLogError(log, "Exception thrown in exceptionOccurred callback, ignoring", - () -> asyncResponseHandler.exceptionOccurred(t)); + () -> asyncResponseHandler.exceptionOccurred(t)); metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); return CompletableFutureUtils.failedFuture(t); } @@ -533,31 +538,31 @@ public CompletableFuture eventStreamOperationWithOnlyOutput( */ @Override public CompletableFuture getWithoutRequiredMembers( - GetWithoutRequiredMembersRequest getWithoutRequiredMembersRequest) { + GetWithoutRequiredMembersRequest getWithoutRequiredMembersRequest) { List metricPublishers = resolveMetricPublishers(clientConfiguration, getWithoutRequiredMembersRequest - .overrideConfiguration().orElse(null)); + .overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Json Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "GetWithoutRequiredMembers"); JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(false) - .isPayloadJson(true).build(); + .isPayloadJson(true).build(); HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( - operationMetadata, GetWithoutRequiredMembersResponse::builder); + operationMetadata, GetWithoutRequiredMembersResponse::builder); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, - operationMetadata); + operationMetadata); CompletableFuture executeFuture = clientHandler - .execute(new ClientExecutionParams() - .withOperationName("GetWithoutRequiredMembers") - .withMarshaller(new GetWithoutRequiredMembersRequestMarshaller(protocolFactory)) - .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) - .withMetricCollector(apiCallMetricCollector).withInput(getWithoutRequiredMembersRequest)); + .execute(new ClientExecutionParams() + .withOperationName("GetWithoutRequiredMembers") + .withMarshaller(new GetWithoutRequiredMembersRequestMarshaller(protocolFactory)) + .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) + .withMetricCollector(apiCallMetricCollector).withInput(getWithoutRequiredMembersRequest)); AwsRequestOverrideConfiguration requestOverrideConfig = getWithoutRequiredMembersRequest.overrideConfiguration() - .orElse(null); + .orElse(null); CompletableFuture whenCompleted = executeFuture.whenComplete((r, e) -> { metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); }); @@ -569,6 +574,67 @@ public CompletableFuture getWithoutRequiredMe } } + /** + * Invokes the OperationWithChecksumRequired operation asynchronously. + * + * @param operationWithChecksumRequiredRequest + * @return A Java Future containing the result of the OperationWithChecksumRequired operation returned by the + * service.
+ * The CompletableFuture returned by this method can be completed exceptionally with the following + * exceptions. + *
    + *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). + * Can be used for catch all scenarios.
  • + *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get + * credentials, etc.
  • + *
  • JsonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance + * of this type.
  • + *
+ * @sample JsonAsyncClient.OperationWithChecksumRequired + * @see AWS API Documentation + */ + @Override + public CompletableFuture operationWithChecksumRequired( + OperationWithChecksumRequiredRequest operationWithChecksumRequiredRequest) { + List metricPublishers = resolveMetricPublishers(clientConfiguration, + operationWithChecksumRequiredRequest.overrideConfiguration().orElse(null)); + MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector + .create("ApiCall"); + try { + apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Json Service"); + apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "OperationWithChecksumRequired"); + JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(false) + .isPayloadJson(true).build(); + + HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( + operationMetadata, OperationWithChecksumRequiredResponse::builder); + + HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, + operationMetadata); + + CompletableFuture executeFuture = clientHandler + .execute(new ClientExecutionParams() + .withOperationName("OperationWithChecksumRequired") + .withMarshaller(new OperationWithChecksumRequiredRequestMarshaller(protocolFactory)) + .withResponseHandler(responseHandler) + .withErrorResponseHandler(errorResponseHandler) + .withMetricCollector(apiCallMetricCollector) + .putExecutionAttribute(SdkInternalExecutionAttribute.HTTP_CHECKSUM_REQUIRED, + HttpChecksumRequired.create()).withInput(operationWithChecksumRequiredRequest)); + AwsRequestOverrideConfiguration requestOverrideConfig = operationWithChecksumRequiredRequest.overrideConfiguration() + .orElse(null); + CompletableFuture whenCompleted = executeFuture.whenComplete((r, e) -> { + metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); + }); + executeFuture = CompletableFutureUtils.forwardExceptionTo(whenCompleted, executeFuture); + return executeFuture; + } catch (Throwable t) { + metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); + return CompletableFutureUtils.failedFuture(t); + } + } + /** * Some paginated operation with result_key in paginators.json file * @@ -591,31 +657,31 @@ public CompletableFuture getWithoutRequiredMe */ @Override public CompletableFuture paginatedOperationWithResultKey( - PaginatedOperationWithResultKeyRequest paginatedOperationWithResultKeyRequest) { + PaginatedOperationWithResultKeyRequest paginatedOperationWithResultKeyRequest) { List metricPublishers = resolveMetricPublishers(clientConfiguration, - paginatedOperationWithResultKeyRequest.overrideConfiguration().orElse(null)); + paginatedOperationWithResultKeyRequest.overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Json Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "PaginatedOperationWithResultKey"); JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(false) - .isPayloadJson(true).build(); + .isPayloadJson(true).build(); HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( - operationMetadata, PaginatedOperationWithResultKeyResponse::builder); + operationMetadata, PaginatedOperationWithResultKeyResponse::builder); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, - operationMetadata); + operationMetadata); CompletableFuture executeFuture = clientHandler - .execute(new ClientExecutionParams() - .withOperationName("PaginatedOperationWithResultKey") - .withMarshaller(new PaginatedOperationWithResultKeyRequestMarshaller(protocolFactory)) - .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) - .withMetricCollector(apiCallMetricCollector).withInput(paginatedOperationWithResultKeyRequest)); + .execute(new ClientExecutionParams() + .withOperationName("PaginatedOperationWithResultKey") + .withMarshaller(new PaginatedOperationWithResultKeyRequestMarshaller(protocolFactory)) + .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) + .withMetricCollector(apiCallMetricCollector).withInput(paginatedOperationWithResultKeyRequest)); AwsRequestOverrideConfiguration requestOverrideConfig = paginatedOperationWithResultKeyRequest - .overrideConfiguration().orElse(null); + .overrideConfiguration().orElse(null); CompletableFuture whenCompleted = executeFuture.whenComplete((r, e) -> { metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); }); @@ -700,7 +766,7 @@ public CompletableFuture paginatedOpera * target="_top">AWS API Documentation */ public PaginatedOperationWithResultKeyPublisher paginatedOperationWithResultKeyPaginator( - PaginatedOperationWithResultKeyRequest paginatedOperationWithResultKeyRequest) { + PaginatedOperationWithResultKeyRequest paginatedOperationWithResultKeyRequest) { return new PaginatedOperationWithResultKeyPublisher(this, applyPaginatorUserAgent(paginatedOperationWithResultKeyRequest)); } @@ -726,31 +792,31 @@ public PaginatedOperationWithResultKeyPublisher paginatedOperationWithResultKeyP */ @Override public CompletableFuture paginatedOperationWithoutResultKey( - PaginatedOperationWithoutResultKeyRequest paginatedOperationWithoutResultKeyRequest) { + PaginatedOperationWithoutResultKeyRequest paginatedOperationWithoutResultKeyRequest) { List metricPublishers = resolveMetricPublishers(clientConfiguration, - paginatedOperationWithoutResultKeyRequest.overrideConfiguration().orElse(null)); + paginatedOperationWithoutResultKeyRequest.overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Json Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "PaginatedOperationWithoutResultKey"); JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(false) - .isPayloadJson(true).build(); + .isPayloadJson(true).build(); HttpResponseHandler responseHandler = protocolFactory - .createResponseHandler(operationMetadata, PaginatedOperationWithoutResultKeyResponse::builder); + .createResponseHandler(operationMetadata, PaginatedOperationWithoutResultKeyResponse::builder); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, - operationMetadata); + operationMetadata); CompletableFuture executeFuture = clientHandler - .execute(new ClientExecutionParams() - .withOperationName("PaginatedOperationWithoutResultKey") - .withMarshaller(new PaginatedOperationWithoutResultKeyRequestMarshaller(protocolFactory)) - .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) - .withMetricCollector(apiCallMetricCollector).withInput(paginatedOperationWithoutResultKeyRequest)); + .execute(new ClientExecutionParams() + .withOperationName("PaginatedOperationWithoutResultKey") + .withMarshaller(new PaginatedOperationWithoutResultKeyRequestMarshaller(protocolFactory)) + .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) + .withMetricCollector(apiCallMetricCollector).withInput(paginatedOperationWithoutResultKeyRequest)); AwsRequestOverrideConfiguration requestOverrideConfig = paginatedOperationWithoutResultKeyRequest - .overrideConfiguration().orElse(null); + .overrideConfiguration().orElse(null); CompletableFuture whenCompleted = executeFuture.whenComplete((r, e) -> { metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); }); @@ -835,9 +901,9 @@ public CompletableFuture paginatedOp * target="_top">AWS API Documentation */ public PaginatedOperationWithoutResultKeyPublisher paginatedOperationWithoutResultKeyPaginator( - PaginatedOperationWithoutResultKeyRequest paginatedOperationWithoutResultKeyRequest) { + PaginatedOperationWithoutResultKeyRequest paginatedOperationWithoutResultKeyRequest) { return new PaginatedOperationWithoutResultKeyPublisher(this, - applyPaginatorUserAgent(paginatedOperationWithoutResultKeyRequest)); + applyPaginatorUserAgent(paginatedOperationWithoutResultKeyRequest)); } /** @@ -866,11 +932,11 @@ public PaginatedOperationWithoutResultKeyPublisher paginatedOperationWithoutResu */ @Override public CompletableFuture streamingInputOperation( - StreamingInputOperationRequest streamingInputOperationRequest, AsyncRequestBody requestBody) { + StreamingInputOperationRequest streamingInputOperationRequest, AsyncRequestBody requestBody) { List metricPublishers = resolveMetricPublishers(clientConfiguration, streamingInputOperationRequest - .overrideConfiguration().orElse(null)); + .overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Json Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "StreamingInputOperation"); @@ -878,25 +944,25 @@ public CompletableFuture streamingInputOperatio streamingInputOperationRequest = applySignerOverride(streamingInputOperationRequest, AsyncAws4Signer.create()); } JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(false) - .isPayloadJson(true).build(); + .isPayloadJson(true).build(); HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( - operationMetadata, StreamingInputOperationResponse::builder); + operationMetadata, StreamingInputOperationResponse::builder); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, - operationMetadata); + operationMetadata); CompletableFuture executeFuture = clientHandler - .execute(new ClientExecutionParams() - .withOperationName("StreamingInputOperation") - .withMarshaller( - AsyncStreamingRequestMarshaller.builder() - .delegateMarshaller(new StreamingInputOperationRequestMarshaller(protocolFactory)) - .asyncRequestBody(requestBody).build()).withResponseHandler(responseHandler) - .withErrorResponseHandler(errorResponseHandler).withMetricCollector(apiCallMetricCollector) - .withAsyncRequestBody(requestBody).withInput(streamingInputOperationRequest)); + .execute(new ClientExecutionParams() + .withOperationName("StreamingInputOperation") + .withMarshaller( + AsyncStreamingRequestMarshaller.builder() + .delegateMarshaller(new StreamingInputOperationRequestMarshaller(protocolFactory)) + .asyncRequestBody(requestBody).build()).withResponseHandler(responseHandler) + .withErrorResponseHandler(errorResponseHandler).withMetricCollector(apiCallMetricCollector) + .withAsyncRequestBody(requestBody).withInput(streamingInputOperationRequest)); AwsRequestOverrideConfiguration requestOverrideConfig = streamingInputOperationRequest.overrideConfiguration() - .orElse(null); + .orElse(null); CompletableFuture whenCompleted = executeFuture.whenComplete((r, e) -> { metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); }); @@ -939,44 +1005,44 @@ public CompletableFuture streamingInputOperatio */ @Override public CompletableFuture streamingInputOutputOperation( - StreamingInputOutputOperationRequest streamingInputOutputOperationRequest, AsyncRequestBody requestBody, - AsyncResponseTransformer asyncResponseTransformer) { + StreamingInputOutputOperationRequest streamingInputOutputOperationRequest, AsyncRequestBody requestBody, + AsyncResponseTransformer asyncResponseTransformer) { List metricPublishers = resolveMetricPublishers(clientConfiguration, - streamingInputOutputOperationRequest.overrideConfiguration().orElse(null)); + streamingInputOutputOperationRequest.overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Json Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "StreamingInputOutputOperation"); streamingInputOutputOperationRequest = applySignerOverride(streamingInputOutputOperationRequest, - Aws4UnsignedPayloadSigner.create()); + Aws4UnsignedPayloadSigner.create()); JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(true) - .isPayloadJson(false).build(); + .isPayloadJson(false).build(); HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( - operationMetadata, StreamingInputOutputOperationResponse::builder); + operationMetadata, StreamingInputOutputOperationResponse::builder); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, - operationMetadata); + operationMetadata); CompletableFuture executeFuture = clientHandler.execute( - new ClientExecutionParams() - .withOperationName("StreamingInputOutputOperation") - .withMarshaller( - AsyncStreamingRequestMarshaller - .builder() - .delegateMarshaller( - new StreamingInputOutputOperationRequestMarshaller(protocolFactory)) - .asyncRequestBody(requestBody).transferEncoding(true).build()) - .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) - .withMetricCollector(apiCallMetricCollector).withAsyncRequestBody(requestBody) - .withInput(streamingInputOutputOperationRequest), asyncResponseTransformer); + new ClientExecutionParams() + .withOperationName("StreamingInputOutputOperation") + .withMarshaller( + AsyncStreamingRequestMarshaller + .builder() + .delegateMarshaller( + new StreamingInputOutputOperationRequestMarshaller(protocolFactory)) + .asyncRequestBody(requestBody).transferEncoding(true).build()) + .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) + .withMetricCollector(apiCallMetricCollector).withAsyncRequestBody(requestBody) + .withInput(streamingInputOutputOperationRequest), asyncResponseTransformer); AwsRequestOverrideConfiguration requestOverrideConfig = streamingInputOutputOperationRequest.overrideConfiguration() - .orElse(null); + .orElse(null); CompletableFuture whenCompleted = executeFuture.whenComplete((r, e) -> { if (e != null) { runAndLogError(log, "Exception thrown in exceptionOccurred callback, ignoring", - () -> asyncResponseTransformer.exceptionOccurred(e)); + () -> asyncResponseTransformer.exceptionOccurred(e)); } metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); }); @@ -984,7 +1050,7 @@ public CompletableFuture streamingInputOutputOperation( return executeFuture; } catch (Throwable t) { runAndLogError(log, "Exception thrown in exceptionOccurred callback, ignoring", - () -> asyncResponseTransformer.exceptionOccurred(t)); + () -> asyncResponseTransformer.exceptionOccurred(t)); metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); return CompletableFutureUtils.failedFuture(t); } @@ -1016,37 +1082,37 @@ public CompletableFuture streamingInputOutputOperation( */ @Override public CompletableFuture streamingOutputOperation( - StreamingOutputOperationRequest streamingOutputOperationRequest, - AsyncResponseTransformer asyncResponseTransformer) { + StreamingOutputOperationRequest streamingOutputOperationRequest, + AsyncResponseTransformer asyncResponseTransformer) { List metricPublishers = resolveMetricPublishers(clientConfiguration, streamingOutputOperationRequest - .overrideConfiguration().orElse(null)); + .overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Json Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "StreamingOutputOperation"); JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(true) - .isPayloadJson(false).build(); + .isPayloadJson(false).build(); HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( - operationMetadata, StreamingOutputOperationResponse::builder); + operationMetadata, StreamingOutputOperationResponse::builder); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, - operationMetadata); + operationMetadata); CompletableFuture executeFuture = clientHandler.execute( - new ClientExecutionParams() - .withOperationName("StreamingOutputOperation") - .withMarshaller(new StreamingOutputOperationRequestMarshaller(protocolFactory)) - .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) - .withMetricCollector(apiCallMetricCollector).withInput(streamingOutputOperationRequest), - asyncResponseTransformer); + new ClientExecutionParams() + .withOperationName("StreamingOutputOperation") + .withMarshaller(new StreamingOutputOperationRequestMarshaller(protocolFactory)) + .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) + .withMetricCollector(apiCallMetricCollector).withInput(streamingOutputOperationRequest), + asyncResponseTransformer); AwsRequestOverrideConfiguration requestOverrideConfig = streamingOutputOperationRequest.overrideConfiguration() - .orElse(null); + .orElse(null); CompletableFuture whenCompleted = executeFuture.whenComplete((r, e) -> { if (e != null) { runAndLogError(log, "Exception thrown in exceptionOccurred callback, ignoring", - () -> asyncResponseTransformer.exceptionOccurred(e)); + () -> asyncResponseTransformer.exceptionOccurred(e)); } metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); }); @@ -1054,7 +1120,7 @@ public CompletableFuture streamingOutputOperation( return executeFuture; } catch (Throwable t) { runAndLogError(log, "Exception thrown in exceptionOccurred callback, ignoring", - () -> asyncResponseTransformer.exceptionOccurred(t)); + () -> asyncResponseTransformer.exceptionOccurred(t)); metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); return CompletableFutureUtils.failedFuture(t); } @@ -1067,17 +1133,17 @@ public void close() { private > T init(T builder) { return builder - .clientConfiguration(clientConfiguration) - .defaultServiceExceptionSupplier(JsonException::builder) - .protocol(AwsJsonProtocol.REST_JSON) - .protocolVersion("1.1") - .registerModeledException( - ExceptionMetadata.builder().errorCode("InvalidInput") - .exceptionBuilderSupplier(InvalidInputException::builder).httpStatusCode(400).build()); + .clientConfiguration(clientConfiguration) + .defaultServiceExceptionSupplier(JsonException::builder) + .protocol(AwsJsonProtocol.REST_JSON) + .protocolVersion("1.1") + .registerModeledException( + ExceptionMetadata.builder().errorCode("InvalidInput") + .exceptionBuilderSupplier(InvalidInputException::builder).httpStatusCode(400).build()); } private static List resolveMetricPublishers(SdkClientConfiguration clientConfiguration, - RequestOverrideConfiguration requestOverrideConfiguration) { + RequestOverrideConfiguration requestOverrideConfiguration) { List publishers = null; if (requestOverrideConfiguration != null) { publishers = requestOverrideConfiguration.metricPublishers(); @@ -1093,10 +1159,10 @@ private static List resolveMetricPublishers(SdkClientConfigurat private T applyPaginatorUserAgent(T request) { Consumer userAgentApplier = b -> b.addApiName(ApiName.builder() - .version(VersionInfo.SDK_VERSION).name("PAGINATED").build()); + .version(VersionInfo.SDK_VERSION).name("PAGINATED").build()); AwsRequestOverrideConfiguration overrideConfiguration = request.overrideConfiguration() - .map(c -> c.toBuilder().applyMutation(userAgentApplier).build()) - .orElse((AwsRequestOverrideConfiguration.builder().applyMutation(userAgentApplier).build())); + .map(c -> c.toBuilder().applyMutation(userAgentApplier).build()) + .orElse((AwsRequestOverrideConfiguration.builder().applyMutation(userAgentApplier).build())); return (T) request.toBuilder().overrideConfiguration(overrideConfiguration).build(); } @@ -1106,8 +1172,8 @@ private T applySignerOverride(T request, Signer signer) } Consumer signerOverride = b -> b.signer(signer).build(); AwsRequestOverrideConfiguration overrideConfiguration = request.overrideConfiguration() - .map(c -> c.toBuilder().applyMutation(signerOverride).build()) - .orElse((AwsRequestOverrideConfiguration.builder().applyMutation(signerOverride).build())); + .map(c -> c.toBuilder().applyMutation(signerOverride).build()) + .orElse((AwsRequestOverrideConfiguration.builder().applyMutation(signerOverride).build())); return (T) request.toBuilder().overrideConfiguration(overrideConfiguration).build(); } @@ -1121,7 +1187,7 @@ public JsonUtilities utilities() { } private HttpResponseHandler createErrorResponseHandler(BaseAwsJsonProtocolFactory protocolFactory, - JsonOperationMetadata operationMetadata) { + JsonOperationMetadata operationMetadata) { return protocolFactory.createErrorResponseHandler(operationMetadata); } } diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-json-async-client-interface.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-json-async-client-interface.java index e97f69cd5896..43455c17f37e 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-json-async-client-interface.java +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-json-async-client-interface.java @@ -22,6 +22,8 @@ import software.amazon.awssdk.services.json.model.GetWithoutRequiredMembersResponse; import software.amazon.awssdk.services.json.model.InputEventStream; import software.amazon.awssdk.services.json.model.InputEventStreamTwo; +import software.amazon.awssdk.services.json.model.OperationWithChecksumRequiredRequest; +import software.amazon.awssdk.services.json.model.OperationWithChecksumRequiredResponse; import software.amazon.awssdk.services.json.model.PaginatedOperationWithResultKeyRequest; import software.amazon.awssdk.services.json.model.PaginatedOperationWithResultKeyResponse; import software.amazon.awssdk.services.json.model.PaginatedOperationWithoutResultKeyRequest; @@ -145,7 +147,7 @@ default CompletableFuture aPostOperation(ConsumerAWS API Documentation */ default CompletableFuture aPostOperationWithOutput( - APostOperationWithOutputRequest aPostOperationWithOutputRequest) { + APostOperationWithOutputRequest aPostOperationWithOutputRequest) { throw new UnsupportedOperationException(); } @@ -180,9 +182,9 @@ default CompletableFuture aPostOperationWithOu * target="_top">AWS API Documentation */ default CompletableFuture aPostOperationWithOutput( - Consumer aPostOperationWithOutputRequest) { + Consumer aPostOperationWithOutputRequest) { return aPostOperationWithOutput(APostOperationWithOutputRequest.builder().applyMutation(aPostOperationWithOutputRequest) - .build()); + .build()); } /** @@ -205,7 +207,7 @@ default CompletableFuture aPostOperationWithOu * target="_top">AWS API Documentation */ default CompletableFuture eventStreamOperation(EventStreamOperationRequest eventStreamOperationRequest, - Publisher requestStream, EventStreamOperationResponseHandler asyncResponseHandler) { + Publisher requestStream, EventStreamOperationResponseHandler asyncResponseHandler) { throw new UnsupportedOperationException(); } @@ -235,10 +237,10 @@ default CompletableFuture eventStreamOperation(EventStreamOperationRequest * target="_top">AWS API Documentation */ default CompletableFuture eventStreamOperation( - Consumer eventStreamOperationRequest, Publisher requestStream, - EventStreamOperationResponseHandler asyncResponseHandler) { + Consumer eventStreamOperationRequest, Publisher requestStream, + EventStreamOperationResponseHandler asyncResponseHandler) { return eventStreamOperation(EventStreamOperationRequest.builder().applyMutation(eventStreamOperationRequest).build(), - requestStream, asyncResponseHandler); + requestStream, asyncResponseHandler); } /** @@ -262,8 +264,8 @@ default CompletableFuture eventStreamOperation( * target="_top">AWS API Documentation */ default CompletableFuture eventStreamOperationWithOnlyInput( - EventStreamOperationWithOnlyInputRequest eventStreamOperationWithOnlyInputRequest, - Publisher requestStream) { + EventStreamOperationWithOnlyInputRequest eventStreamOperationWithOnlyInputRequest, + Publisher requestStream) { throw new UnsupportedOperationException(); } @@ -294,11 +296,11 @@ default CompletableFuture eventStream * target="_top">AWS API Documentation */ default CompletableFuture eventStreamOperationWithOnlyInput( - Consumer eventStreamOperationWithOnlyInputRequest, - Publisher requestStream) { + Consumer eventStreamOperationWithOnlyInputRequest, + Publisher requestStream) { return eventStreamOperationWithOnlyInput( - EventStreamOperationWithOnlyInputRequest.builder().applyMutation(eventStreamOperationWithOnlyInputRequest) - .build(), requestStream); + EventStreamOperationWithOnlyInputRequest.builder().applyMutation(eventStreamOperationWithOnlyInputRequest) + .build(), requestStream); } /** @@ -322,8 +324,8 @@ default CompletableFuture eventStream * target="_top">AWS API Documentation */ default CompletableFuture eventStreamOperationWithOnlyOutput( - EventStreamOperationWithOnlyOutputRequest eventStreamOperationWithOnlyOutputRequest, - EventStreamOperationWithOnlyOutputResponseHandler asyncResponseHandler) { + EventStreamOperationWithOnlyOutputRequest eventStreamOperationWithOnlyOutputRequest, + EventStreamOperationWithOnlyOutputResponseHandler asyncResponseHandler) { throw new UnsupportedOperationException(); } @@ -354,11 +356,11 @@ default CompletableFuture eventStreamOperationWithOnlyOutput( * target="_top">AWS API Documentation */ default CompletableFuture eventStreamOperationWithOnlyOutput( - Consumer eventStreamOperationWithOnlyOutputRequest, - EventStreamOperationWithOnlyOutputResponseHandler asyncResponseHandler) { + Consumer eventStreamOperationWithOnlyOutputRequest, + EventStreamOperationWithOnlyOutputResponseHandler asyncResponseHandler) { return eventStreamOperationWithOnlyOutput( - EventStreamOperationWithOnlyOutputRequest.builder().applyMutation(eventStreamOperationWithOnlyOutputRequest) - .build(), asyncResponseHandler); + EventStreamOperationWithOnlyOutputRequest.builder().applyMutation(eventStreamOperationWithOnlyOutputRequest) + .build(), asyncResponseHandler); } /** @@ -385,7 +387,7 @@ default CompletableFuture eventStreamOperationWithOnlyOutput( * target="_top">AWS API Documentation */ default CompletableFuture getWithoutRequiredMembers( - GetWithoutRequiredMembersRequest getWithoutRequiredMembersRequest) { + GetWithoutRequiredMembersRequest getWithoutRequiredMembersRequest) { throw new UnsupportedOperationException(); } @@ -420,9 +422,66 @@ default CompletableFuture getWithoutRequiredM * target="_top">AWS API Documentation */ default CompletableFuture getWithoutRequiredMembers( - Consumer getWithoutRequiredMembersRequest) { + Consumer getWithoutRequiredMembersRequest) { return getWithoutRequiredMembers(GetWithoutRequiredMembersRequest.builder() - .applyMutation(getWithoutRequiredMembersRequest).build()); + .applyMutation(getWithoutRequiredMembersRequest).build()); + } + + /** + * Invokes the OperationWithChecksumRequired operation asynchronously. + * + * @param operationWithChecksumRequiredRequest + * @return A Java Future containing the result of the OperationWithChecksumRequired operation returned by the + * service.
+ * The CompletableFuture returned by this method can be completed exceptionally with the following + * exceptions. + *
    + *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). + * Can be used for catch all scenarios.
  • + *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get + * credentials, etc.
  • + *
  • JsonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance + * of this type.
  • + *
+ * @sample JsonAsyncClient.OperationWithChecksumRequired + * @see AWS API Documentation + */ + default CompletableFuture operationWithChecksumRequired( + OperationWithChecksumRequiredRequest operationWithChecksumRequiredRequest) { + throw new UnsupportedOperationException(); + } + + /** + * Invokes the OperationWithChecksumRequired operation asynchronously.
+ *

+ * This is a convenience which creates an instance of the {@link OperationWithChecksumRequiredRequest.Builder} + * avoiding the need to create one manually via {@link OperationWithChecksumRequiredRequest#builder()} + *

+ * + * @param operationWithChecksumRequiredRequest + * A {@link Consumer} that will call methods on {@link OperationWithChecksumRequiredRequest.Builder} to + * create a request. + * @return A Java Future containing the result of the OperationWithChecksumRequired operation returned by the + * service.
+ * The CompletableFuture returned by this method can be completed exceptionally with the following + * exceptions. + *
    + *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). + * Can be used for catch all scenarios.
  • + *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get + * credentials, etc.
  • + *
  • JsonException Base class for all service exceptions. Unknown exceptions will be thrown as an instance + * of this type.
  • + *
+ * @sample JsonAsyncClient.OperationWithChecksumRequired + * @see AWS API Documentation + */ + default CompletableFuture operationWithChecksumRequired( + Consumer operationWithChecksumRequiredRequest) { + return operationWithChecksumRequired(OperationWithChecksumRequiredRequest.builder() + .applyMutation(operationWithChecksumRequiredRequest).build()); } /** @@ -446,7 +505,7 @@ default CompletableFuture getWithoutRequiredM * target="_top">AWS API Documentation */ default CompletableFuture paginatedOperationWithResultKey( - PaginatedOperationWithResultKeyRequest paginatedOperationWithResultKeyRequest) { + PaginatedOperationWithResultKeyRequest paginatedOperationWithResultKeyRequest) { throw new UnsupportedOperationException(); } @@ -477,9 +536,9 @@ default CompletableFuture paginatedOper * target="_top">AWS API Documentation */ default CompletableFuture paginatedOperationWithResultKey( - Consumer paginatedOperationWithResultKeyRequest) { + Consumer paginatedOperationWithResultKeyRequest) { return paginatedOperationWithResultKey(PaginatedOperationWithResultKeyRequest.builder() - .applyMutation(paginatedOperationWithResultKeyRequest).build()); + .applyMutation(paginatedOperationWithResultKeyRequest).build()); } /** @@ -653,7 +712,7 @@ default PaginatedOperationWithResultKeyPublisher paginatedOperationWithResultKey * target="_top">AWS API Documentation */ default PaginatedOperationWithResultKeyPublisher paginatedOperationWithResultKeyPaginator( - PaginatedOperationWithResultKeyRequest paginatedOperationWithResultKeyRequest) { + PaginatedOperationWithResultKeyRequest paginatedOperationWithResultKeyRequest) { throw new UnsupportedOperationException(); } @@ -736,9 +795,9 @@ default PaginatedOperationWithResultKeyPublisher paginatedOperationWithResultKey * target="_top">AWS API Documentation */ default PaginatedOperationWithResultKeyPublisher paginatedOperationWithResultKeyPaginator( - Consumer paginatedOperationWithResultKeyRequest) { + Consumer paginatedOperationWithResultKeyRequest) { return paginatedOperationWithResultKeyPaginator(PaginatedOperationWithResultKeyRequest.builder() - .applyMutation(paginatedOperationWithResultKeyRequest).build()); + .applyMutation(paginatedOperationWithResultKeyRequest).build()); } /** @@ -762,7 +821,7 @@ default PaginatedOperationWithResultKeyPublisher paginatedOperationWithResultKey * target="_top">AWS API Documentation */ default CompletableFuture paginatedOperationWithoutResultKey( - PaginatedOperationWithoutResultKeyRequest paginatedOperationWithoutResultKeyRequest) { + PaginatedOperationWithoutResultKeyRequest paginatedOperationWithoutResultKeyRequest) { throw new UnsupportedOperationException(); } @@ -793,9 +852,9 @@ default CompletableFuture paginatedO * target="_top">AWS API Documentation */ default CompletableFuture paginatedOperationWithoutResultKey( - Consumer paginatedOperationWithoutResultKeyRequest) { + Consumer paginatedOperationWithoutResultKeyRequest) { return paginatedOperationWithoutResultKey(PaginatedOperationWithoutResultKeyRequest.builder() - .applyMutation(paginatedOperationWithoutResultKeyRequest).build()); + .applyMutation(paginatedOperationWithoutResultKeyRequest).build()); } /** @@ -871,7 +930,7 @@ default CompletableFuture paginatedO * target="_top">AWS API Documentation */ default PaginatedOperationWithoutResultKeyPublisher paginatedOperationWithoutResultKeyPaginator( - PaginatedOperationWithoutResultKeyRequest paginatedOperationWithoutResultKeyRequest) { + PaginatedOperationWithoutResultKeyRequest paginatedOperationWithoutResultKeyRequest) { throw new UnsupportedOperationException(); } @@ -954,9 +1013,9 @@ default PaginatedOperationWithoutResultKeyPublisher paginatedOperationWithoutRes * target="_top">AWS API Documentation */ default PaginatedOperationWithoutResultKeyPublisher paginatedOperationWithoutResultKeyPaginator( - Consumer paginatedOperationWithoutResultKeyRequest) { + Consumer paginatedOperationWithoutResultKeyRequest) { return paginatedOperationWithoutResultKeyPaginator(PaginatedOperationWithoutResultKeyRequest.builder() - .applyMutation(paginatedOperationWithoutResultKeyRequest).build()); + .applyMutation(paginatedOperationWithoutResultKeyRequest).build()); } /** @@ -984,7 +1043,7 @@ default PaginatedOperationWithoutResultKeyPublisher paginatedOperationWithoutRes * target="_top">AWS API Documentation */ default CompletableFuture streamingInputOperation( - StreamingInputOperationRequest streamingInputOperationRequest, AsyncRequestBody requestBody) { + StreamingInputOperationRequest streamingInputOperationRequest, AsyncRequestBody requestBody) { throw new UnsupportedOperationException(); } @@ -1019,9 +1078,9 @@ default CompletableFuture streamingInputOperati * target="_top">AWS API Documentation */ default CompletableFuture streamingInputOperation( - Consumer streamingInputOperationRequest, AsyncRequestBody requestBody) { + Consumer streamingInputOperationRequest, AsyncRequestBody requestBody) { return streamingInputOperation(StreamingInputOperationRequest.builder().applyMutation(streamingInputOperationRequest) - .build(), requestBody); + .build(), requestBody); } /** @@ -1049,7 +1108,7 @@ default CompletableFuture streamingInputOperati * target="_top">AWS API Documentation */ default CompletableFuture streamingInputOperation( - StreamingInputOperationRequest streamingInputOperationRequest, Path sourcePath) { + StreamingInputOperationRequest streamingInputOperationRequest, Path sourcePath) { return streamingInputOperation(streamingInputOperationRequest, AsyncRequestBody.fromFile(sourcePath)); } @@ -1084,9 +1143,9 @@ default CompletableFuture streamingInputOperati * target="_top">AWS API Documentation */ default CompletableFuture streamingInputOperation( - Consumer streamingInputOperationRequest, Path sourcePath) { + Consumer streamingInputOperationRequest, Path sourcePath) { return streamingInputOperation(StreamingInputOperationRequest.builder().applyMutation(streamingInputOperationRequest) - .build(), sourcePath); + .build(), sourcePath); } /** @@ -1119,8 +1178,8 @@ default CompletableFuture streamingInputOperati * target="_top">AWS API Documentation */ default CompletableFuture streamingInputOutputOperation( - StreamingInputOutputOperationRequest streamingInputOutputOperationRequest, AsyncRequestBody requestBody, - AsyncResponseTransformer asyncResponseTransformer) { + StreamingInputOutputOperationRequest streamingInputOutputOperationRequest, AsyncRequestBody requestBody, + AsyncResponseTransformer asyncResponseTransformer) { throw new UnsupportedOperationException(); } @@ -1160,12 +1219,12 @@ default CompletableFuture streamingInputOutputOperation( * target="_top">AWS API Documentation */ default CompletableFuture streamingInputOutputOperation( - Consumer streamingInputOutputOperationRequest, - AsyncRequestBody requestBody, - AsyncResponseTransformer asyncResponseTransformer) { + Consumer streamingInputOutputOperationRequest, + AsyncRequestBody requestBody, + AsyncResponseTransformer asyncResponseTransformer) { return streamingInputOutputOperation( - StreamingInputOutputOperationRequest.builder().applyMutation(streamingInputOutputOperationRequest).build(), - requestBody, asyncResponseTransformer); + StreamingInputOutputOperationRequest.builder().applyMutation(streamingInputOutputOperationRequest).build(), + requestBody, asyncResponseTransformer); } /** @@ -1197,9 +1256,9 @@ default CompletableFuture streamingInputOutputOperation( * target="_top">AWS API Documentation */ default CompletableFuture streamingInputOutputOperation( - StreamingInputOutputOperationRequest streamingInputOutputOperationRequest, Path sourcePath, Path destinationPath) { + StreamingInputOutputOperationRequest streamingInputOutputOperationRequest, Path sourcePath, Path destinationPath) { return streamingInputOutputOperation(streamingInputOutputOperationRequest, AsyncRequestBody.fromFile(sourcePath), - AsyncResponseTransformer.toFile(destinationPath)); + AsyncResponseTransformer.toFile(destinationPath)); } /** @@ -1237,11 +1296,11 @@ default CompletableFuture streamingInputO * target="_top">AWS API Documentation */ default CompletableFuture streamingInputOutputOperation( - Consumer streamingInputOutputOperationRequest, Path sourcePath, - Path destinationPath) { + Consumer streamingInputOutputOperationRequest, Path sourcePath, + Path destinationPath) { return streamingInputOutputOperation( - StreamingInputOutputOperationRequest.builder().applyMutation(streamingInputOutputOperationRequest).build(), - sourcePath, destinationPath); + StreamingInputOutputOperationRequest.builder().applyMutation(streamingInputOutputOperationRequest).build(), + sourcePath, destinationPath); } /** @@ -1269,8 +1328,8 @@ default CompletableFuture streamingInputO * target="_top">AWS API Documentation */ default CompletableFuture streamingOutputOperation( - StreamingOutputOperationRequest streamingOutputOperationRequest, - AsyncResponseTransformer asyncResponseTransformer) { + StreamingOutputOperationRequest streamingOutputOperationRequest, + AsyncResponseTransformer asyncResponseTransformer) { throw new UnsupportedOperationException(); } @@ -1305,10 +1364,10 @@ default CompletableFuture streamingOutputOperation( * target="_top">AWS API Documentation */ default CompletableFuture streamingOutputOperation( - Consumer streamingOutputOperationRequest, - AsyncResponseTransformer asyncResponseTransformer) { + Consumer streamingOutputOperationRequest, + AsyncResponseTransformer asyncResponseTransformer) { return streamingOutputOperation(StreamingOutputOperationRequest.builder().applyMutation(streamingOutputOperationRequest) - .build(), asyncResponseTransformer); + .build(), asyncResponseTransformer); } /** @@ -1335,7 +1394,7 @@ default CompletableFuture streamingOutputOperation( * target="_top">AWS API Documentation */ default CompletableFuture streamingOutputOperation( - StreamingOutputOperationRequest streamingOutputOperationRequest, Path destinationPath) { + StreamingOutputOperationRequest streamingOutputOperationRequest, Path destinationPath) { return streamingOutputOperation(streamingOutputOperationRequest, AsyncResponseTransformer.toFile(destinationPath)); } @@ -1369,9 +1428,9 @@ default CompletableFuture streamingOutputOpera * target="_top">AWS API Documentation */ default CompletableFuture streamingOutputOperation( - Consumer streamingOutputOperationRequest, Path destinationPath) { + Consumer streamingOutputOperationRequest, Path destinationPath) { return streamingOutputOperation(StreamingOutputOperationRequest.builder().applyMutation(streamingOutputOperationRequest) - .build(), destinationPath); + .build(), destinationPath); } /** diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-json-client-class.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-json-client-class.java index 14c934f5b859..b1c99a29788f 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-json-client-class.java +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-json-client-class.java @@ -17,6 +17,8 @@ import software.amazon.awssdk.core.client.handler.SyncClientHandler; import software.amazon.awssdk.core.exception.SdkClientException; import software.amazon.awssdk.core.http.HttpResponseHandler; +import software.amazon.awssdk.core.interceptor.SdkInternalExecutionAttribute; +import software.amazon.awssdk.core.interceptor.trait.HttpChecksumRequired; import software.amazon.awssdk.core.metrics.CoreMetric; import software.amazon.awssdk.core.runtime.transform.StreamingRequestMarshaller; import software.amazon.awssdk.core.signer.Signer; @@ -40,6 +42,8 @@ import software.amazon.awssdk.services.json.model.InvalidInputException; import software.amazon.awssdk.services.json.model.JsonException; import software.amazon.awssdk.services.json.model.JsonRequest; +import software.amazon.awssdk.services.json.model.OperationWithChecksumRequiredRequest; +import software.amazon.awssdk.services.json.model.OperationWithChecksumRequiredResponse; import software.amazon.awssdk.services.json.model.PaginatedOperationWithResultKeyRequest; import software.amazon.awssdk.services.json.model.PaginatedOperationWithResultKeyResponse; import software.amazon.awssdk.services.json.model.PaginatedOperationWithoutResultKeyRequest; @@ -55,6 +59,7 @@ import software.amazon.awssdk.services.json.transform.APostOperationRequestMarshaller; import software.amazon.awssdk.services.json.transform.APostOperationWithOutputRequestMarshaller; import software.amazon.awssdk.services.json.transform.GetWithoutRequiredMembersRequestMarshaller; +import software.amazon.awssdk.services.json.transform.OperationWithChecksumRequiredRequestMarshaller; import software.amazon.awssdk.services.json.transform.PaginatedOperationWithResultKeyRequestMarshaller; import software.amazon.awssdk.services.json.transform.PaginatedOperationWithoutResultKeyRequestMarshaller; import software.amazon.awssdk.services.json.transform.StreamingInputOperationRequestMarshaller; @@ -112,32 +117,32 @@ public final String serviceName() { */ @Override public APostOperationResponse aPostOperation(APostOperationRequest aPostOperationRequest) throws InvalidInputException, - AwsServiceException, SdkClientException, JsonException { + AwsServiceException, SdkClientException, JsonException { JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(false) - .isPayloadJson(true).build(); + .isPayloadJson(true).build(); HttpResponseHandler responseHandler = protocolFactory.createResponseHandler(operationMetadata, - APostOperationResponse::builder); + APostOperationResponse::builder); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, - operationMetadata); + operationMetadata); List metricPublishers = resolveMetricPublishers(clientConfiguration, aPostOperationRequest - .overrideConfiguration().orElse(null)); + .overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Json Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "APostOperation"); String hostPrefix = "{StringMember}-foo."; HostnameValidator.validateHostnameCompliant(aPostOperationRequest.stringMember(), "StringMember", - "aPostOperationRequest"); + "aPostOperationRequest"); String resolvedHostExpression = String.format("%s-foo.", aPostOperationRequest.stringMember()); return clientHandler.execute(new ClientExecutionParams() - .withOperationName("APostOperation").withResponseHandler(responseHandler) - .withErrorResponseHandler(errorResponseHandler).hostPrefixExpression(resolvedHostExpression) - .withInput(aPostOperationRequest).withMetricCollector(apiCallMetricCollector) - .withMarshaller(new APostOperationRequestMarshaller(protocolFactory))); + .withOperationName("APostOperation").withResponseHandler(responseHandler) + .withErrorResponseHandler(errorResponseHandler).hostPrefixExpression(resolvedHostExpression) + .withInput(aPostOperationRequest).withMetricCollector(apiCallMetricCollector) + .withMarshaller(new APostOperationRequestMarshaller(protocolFactory))); } finally { metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); } @@ -165,30 +170,30 @@ public APostOperationResponse aPostOperation(APostOperationRequest aPostOperatio */ @Override public APostOperationWithOutputResponse aPostOperationWithOutput( - APostOperationWithOutputRequest aPostOperationWithOutputRequest) throws InvalidInputException, AwsServiceException, - SdkClientException, JsonException { + APostOperationWithOutputRequest aPostOperationWithOutputRequest) throws InvalidInputException, AwsServiceException, + SdkClientException, JsonException { JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(false) - .isPayloadJson(true).build(); + .isPayloadJson(true).build(); HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( - operationMetadata, APostOperationWithOutputResponse::builder); + operationMetadata, APostOperationWithOutputResponse::builder); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, - operationMetadata); + operationMetadata); List metricPublishers = resolveMetricPublishers(clientConfiguration, aPostOperationWithOutputRequest - .overrideConfiguration().orElse(null)); + .overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Json Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "APostOperationWithOutput"); return clientHandler - .execute(new ClientExecutionParams() - .withOperationName("APostOperationWithOutput").withResponseHandler(responseHandler) - .withErrorResponseHandler(errorResponseHandler).withInput(aPostOperationWithOutputRequest) - .withMetricCollector(apiCallMetricCollector) - .withMarshaller(new APostOperationWithOutputRequestMarshaller(protocolFactory))); + .execute(new ClientExecutionParams() + .withOperationName("APostOperationWithOutput").withResponseHandler(responseHandler) + .withErrorResponseHandler(errorResponseHandler).withInput(aPostOperationWithOutputRequest) + .withMetricCollector(apiCallMetricCollector) + .withMarshaller(new APostOperationWithOutputRequestMarshaller(protocolFactory))); } finally { metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); } @@ -216,30 +221,81 @@ public APostOperationWithOutputResponse aPostOperationWithOutput( */ @Override public GetWithoutRequiredMembersResponse getWithoutRequiredMembers( - GetWithoutRequiredMembersRequest getWithoutRequiredMembersRequest) throws InvalidInputException, AwsServiceException, - SdkClientException, JsonException { + GetWithoutRequiredMembersRequest getWithoutRequiredMembersRequest) throws InvalidInputException, AwsServiceException, + SdkClientException, JsonException { JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(false) - .isPayloadJson(true).build(); + .isPayloadJson(true).build(); HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( - operationMetadata, GetWithoutRequiredMembersResponse::builder); + operationMetadata, GetWithoutRequiredMembersResponse::builder); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, - operationMetadata); + operationMetadata); List metricPublishers = resolveMetricPublishers(clientConfiguration, getWithoutRequiredMembersRequest - .overrideConfiguration().orElse(null)); + .overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Json Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "GetWithoutRequiredMembers"); return clientHandler - .execute(new ClientExecutionParams() - .withOperationName("GetWithoutRequiredMembers").withResponseHandler(responseHandler) - .withErrorResponseHandler(errorResponseHandler).withInput(getWithoutRequiredMembersRequest) - .withMetricCollector(apiCallMetricCollector) - .withMarshaller(new GetWithoutRequiredMembersRequestMarshaller(protocolFactory))); + .execute(new ClientExecutionParams() + .withOperationName("GetWithoutRequiredMembers").withResponseHandler(responseHandler) + .withErrorResponseHandler(errorResponseHandler).withInput(getWithoutRequiredMembersRequest) + .withMetricCollector(apiCallMetricCollector) + .withMarshaller(new GetWithoutRequiredMembersRequestMarshaller(protocolFactory))); + } finally { + metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); + } + } + + /** + * Invokes the OperationWithChecksumRequired operation. + * + * @param operationWithChecksumRequiredRequest + * @return Result of the OperationWithChecksumRequired operation returned by the service. + * @throws SdkException + * Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for + * catch all scenarios. + * @throws SdkClientException + * If any client side error occurs such as an IO related failure, failure to get credentials, etc. + * @throws JsonException + * Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type. + * @sample JsonClient.OperationWithChecksumRequired + * @see AWS API Documentation + */ + @Override + public OperationWithChecksumRequiredResponse operationWithChecksumRequired( + OperationWithChecksumRequiredRequest operationWithChecksumRequiredRequest) throws AwsServiceException, + SdkClientException, JsonException { + JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(false) + .isPayloadJson(true).build(); + + HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( + operationMetadata, OperationWithChecksumRequiredResponse::builder); + + HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, + operationMetadata); + List metricPublishers = resolveMetricPublishers(clientConfiguration, + operationWithChecksumRequiredRequest.overrideConfiguration().orElse(null)); + MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector + .create("ApiCall"); + try { + apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Json Service"); + apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "OperationWithChecksumRequired"); + + return clientHandler + .execute(new ClientExecutionParams() + .withOperationName("OperationWithChecksumRequired") + .withResponseHandler(responseHandler) + .withErrorResponseHandler(errorResponseHandler) + .withInput(operationWithChecksumRequiredRequest) + .withMetricCollector(apiCallMetricCollector) + .putExecutionAttribute(SdkInternalExecutionAttribute.HTTP_CHECKSUM_REQUIRED, + HttpChecksumRequired.create()) + .withMarshaller(new OperationWithChecksumRequiredRequestMarshaller(protocolFactory))); } finally { metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); } @@ -263,30 +319,30 @@ public GetWithoutRequiredMembersResponse getWithoutRequiredMembers( */ @Override public PaginatedOperationWithResultKeyResponse paginatedOperationWithResultKey( - PaginatedOperationWithResultKeyRequest paginatedOperationWithResultKeyRequest) throws AwsServiceException, - SdkClientException, JsonException { + PaginatedOperationWithResultKeyRequest paginatedOperationWithResultKeyRequest) throws AwsServiceException, + SdkClientException, JsonException { JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(false) - .isPayloadJson(true).build(); + .isPayloadJson(true).build(); HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( - operationMetadata, PaginatedOperationWithResultKeyResponse::builder); + operationMetadata, PaginatedOperationWithResultKeyResponse::builder); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, - operationMetadata); + operationMetadata); List metricPublishers = resolveMetricPublishers(clientConfiguration, - paginatedOperationWithResultKeyRequest.overrideConfiguration().orElse(null)); + paginatedOperationWithResultKeyRequest.overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Json Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "PaginatedOperationWithResultKey"); return clientHandler - .execute(new ClientExecutionParams() - .withOperationName("PaginatedOperationWithResultKey").withResponseHandler(responseHandler) - .withErrorResponseHandler(errorResponseHandler).withInput(paginatedOperationWithResultKeyRequest) - .withMetricCollector(apiCallMetricCollector) - .withMarshaller(new PaginatedOperationWithResultKeyRequestMarshaller(protocolFactory))); + .execute(new ClientExecutionParams() + .withOperationName("PaginatedOperationWithResultKey").withResponseHandler(responseHandler) + .withErrorResponseHandler(errorResponseHandler).withInput(paginatedOperationWithResultKeyRequest) + .withMetricCollector(apiCallMetricCollector) + .withMarshaller(new PaginatedOperationWithResultKeyRequestMarshaller(protocolFactory))); } finally { metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); } @@ -365,8 +421,8 @@ public PaginatedOperationWithResultKeyResponse paginatedOperationWithResultKey( */ @Override public PaginatedOperationWithResultKeyIterable paginatedOperationWithResultKeyPaginator( - PaginatedOperationWithResultKeyRequest paginatedOperationWithResultKeyRequest) throws AwsServiceException, - SdkClientException, JsonException { + PaginatedOperationWithResultKeyRequest paginatedOperationWithResultKeyRequest) throws AwsServiceException, + SdkClientException, JsonException { return new PaginatedOperationWithResultKeyIterable(this, applyPaginatorUserAgent(paginatedOperationWithResultKeyRequest)); } @@ -388,30 +444,30 @@ public PaginatedOperationWithResultKeyIterable paginatedOperationWithResultKeyPa */ @Override public PaginatedOperationWithoutResultKeyResponse paginatedOperationWithoutResultKey( - PaginatedOperationWithoutResultKeyRequest paginatedOperationWithoutResultKeyRequest) throws AwsServiceException, - SdkClientException, JsonException { + PaginatedOperationWithoutResultKeyRequest paginatedOperationWithoutResultKeyRequest) throws AwsServiceException, + SdkClientException, JsonException { JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(false) - .isPayloadJson(true).build(); + .isPayloadJson(true).build(); HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( - operationMetadata, PaginatedOperationWithoutResultKeyResponse::builder); + operationMetadata, PaginatedOperationWithoutResultKeyResponse::builder); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, - operationMetadata); + operationMetadata); List metricPublishers = resolveMetricPublishers(clientConfiguration, - paginatedOperationWithoutResultKeyRequest.overrideConfiguration().orElse(null)); + paginatedOperationWithoutResultKeyRequest.overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Json Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "PaginatedOperationWithoutResultKey"); return clientHandler - .execute(new ClientExecutionParams() - .withOperationName("PaginatedOperationWithoutResultKey").withResponseHandler(responseHandler) - .withErrorResponseHandler(errorResponseHandler).withInput(paginatedOperationWithoutResultKeyRequest) - .withMetricCollector(apiCallMetricCollector) - .withMarshaller(new PaginatedOperationWithoutResultKeyRequestMarshaller(protocolFactory))); + .execute(new ClientExecutionParams() + .withOperationName("PaginatedOperationWithoutResultKey").withResponseHandler(responseHandler) + .withErrorResponseHandler(errorResponseHandler).withInput(paginatedOperationWithoutResultKeyRequest) + .withMetricCollector(apiCallMetricCollector) + .withMarshaller(new PaginatedOperationWithoutResultKeyRequestMarshaller(protocolFactory))); } finally { metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); } @@ -490,10 +546,10 @@ public PaginatedOperationWithoutResultKeyResponse paginatedOperationWithoutResul */ @Override public PaginatedOperationWithoutResultKeyIterable paginatedOperationWithoutResultKeyPaginator( - PaginatedOperationWithoutResultKeyRequest paginatedOperationWithoutResultKeyRequest) throws AwsServiceException, - SdkClientException, JsonException { + PaginatedOperationWithoutResultKeyRequest paginatedOperationWithoutResultKeyRequest) throws AwsServiceException, + SdkClientException, JsonException { return new PaginatedOperationWithoutResultKeyIterable(this, - applyPaginatorUserAgent(paginatedOperationWithoutResultKeyRequest)); + applyPaginatorUserAgent(paginatedOperationWithoutResultKeyRequest)); } /** @@ -525,35 +581,35 @@ public PaginatedOperationWithoutResultKeyIterable paginatedOperationWithoutResul */ @Override public StreamingInputOperationResponse streamingInputOperation(StreamingInputOperationRequest streamingInputOperationRequest, - RequestBody requestBody) throws AwsServiceException, SdkClientException, JsonException { + RequestBody requestBody) throws AwsServiceException, SdkClientException, JsonException { JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(false) - .isPayloadJson(true).build(); + .isPayloadJson(true).build(); HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( - operationMetadata, StreamingInputOperationResponse::builder); + operationMetadata, StreamingInputOperationResponse::builder); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, - operationMetadata); + operationMetadata); List metricPublishers = resolveMetricPublishers(clientConfiguration, streamingInputOperationRequest - .overrideConfiguration().orElse(null)); + .overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Json Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "StreamingInputOperation"); return clientHandler - .execute(new ClientExecutionParams() - .withOperationName("StreamingInputOperation") - .withResponseHandler(responseHandler) - .withErrorResponseHandler(errorResponseHandler) - .withInput(streamingInputOperationRequest) - .withMetricCollector(apiCallMetricCollector) - .withRequestBody(requestBody) - .withMarshaller( - StreamingRequestMarshaller.builder() - .delegateMarshaller(new StreamingInputOperationRequestMarshaller(protocolFactory)) - .requestBody(requestBody).build())); + .execute(new ClientExecutionParams() + .withOperationName("StreamingInputOperation") + .withResponseHandler(responseHandler) + .withErrorResponseHandler(errorResponseHandler) + .withInput(streamingInputOperationRequest) + .withMetricCollector(apiCallMetricCollector) + .withRequestBody(requestBody) + .withMarshaller( + StreamingRequestMarshaller.builder() + .delegateMarshaller(new StreamingInputOperationRequestMarshaller(protocolFactory)) + .requestBody(requestBody).build())); } finally { metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); } @@ -595,41 +651,41 @@ public StreamingInputOperationResponse streamingInputOperation(StreamingInputOpe */ @Override public ReturnT streamingInputOutputOperation( - StreamingInputOutputOperationRequest streamingInputOutputOperationRequest, RequestBody requestBody, - ResponseTransformer responseTransformer) throws AwsServiceException, - SdkClientException, JsonException { + StreamingInputOutputOperationRequest streamingInputOutputOperationRequest, RequestBody requestBody, + ResponseTransformer responseTransformer) throws AwsServiceException, + SdkClientException, JsonException { streamingInputOutputOperationRequest = applySignerOverride(streamingInputOutputOperationRequest, - Aws4UnsignedPayloadSigner.create()); + Aws4UnsignedPayloadSigner.create()); JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(true) - .isPayloadJson(false).build(); + .isPayloadJson(false).build(); HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( - operationMetadata, StreamingInputOutputOperationResponse::builder); + operationMetadata, StreamingInputOutputOperationResponse::builder); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, - operationMetadata); + operationMetadata); List metricPublishers = resolveMetricPublishers(clientConfiguration, - streamingInputOutputOperationRequest.overrideConfiguration().orElse(null)); + streamingInputOutputOperationRequest.overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Json Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "StreamingInputOutputOperation"); return clientHandler.execute( - new ClientExecutionParams() - .withOperationName("StreamingInputOutputOperation") - .withResponseHandler(responseHandler) - .withErrorResponseHandler(errorResponseHandler) - .withInput(streamingInputOutputOperationRequest) - .withMetricCollector(apiCallMetricCollector) - .withRequestBody(requestBody) - .withMarshaller( - StreamingRequestMarshaller - .builder() - .delegateMarshaller( - new StreamingInputOutputOperationRequestMarshaller(protocolFactory)) - .requestBody(requestBody).transferEncoding(true).build()), responseTransformer); + new ClientExecutionParams() + .withOperationName("StreamingInputOutputOperation") + .withResponseHandler(responseHandler) + .withErrorResponseHandler(errorResponseHandler) + .withInput(streamingInputOutputOperationRequest) + .withMetricCollector(apiCallMetricCollector) + .withRequestBody(requestBody) + .withMarshaller( + StreamingRequestMarshaller + .builder() + .delegateMarshaller( + new StreamingInputOutputOperationRequestMarshaller(protocolFactory)) + .requestBody(requestBody).transferEncoding(true).build()), responseTransformer); } finally { metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); } @@ -660,37 +716,37 @@ public ReturnT streamingInputOutputOperation( */ @Override public ReturnT streamingOutputOperation(StreamingOutputOperationRequest streamingOutputOperationRequest, - ResponseTransformer responseTransformer) throws AwsServiceException, - SdkClientException, JsonException { + ResponseTransformer responseTransformer) throws AwsServiceException, + SdkClientException, JsonException { JsonOperationMetadata operationMetadata = JsonOperationMetadata.builder().hasStreamingSuccessResponse(true) - .isPayloadJson(false).build(); + .isPayloadJson(false).build(); HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( - operationMetadata, StreamingOutputOperationResponse::builder); + operationMetadata, StreamingOutputOperationResponse::builder); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, - operationMetadata); + operationMetadata); List metricPublishers = resolveMetricPublishers(clientConfiguration, streamingOutputOperationRequest - .overrideConfiguration().orElse(null)); + .overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Json Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "StreamingOutputOperation"); return clientHandler.execute( - new ClientExecutionParams() - .withOperationName("StreamingOutputOperation").withResponseHandler(responseHandler) - .withErrorResponseHandler(errorResponseHandler).withInput(streamingOutputOperationRequest) - .withMetricCollector(apiCallMetricCollector) - .withMarshaller(new StreamingOutputOperationRequestMarshaller(protocolFactory)), responseTransformer); + new ClientExecutionParams() + .withOperationName("StreamingOutputOperation").withResponseHandler(responseHandler) + .withErrorResponseHandler(errorResponseHandler).withInput(streamingOutputOperationRequest) + .withMetricCollector(apiCallMetricCollector) + .withMarshaller(new StreamingOutputOperationRequestMarshaller(protocolFactory)), responseTransformer); } finally { metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); } } private static List resolveMetricPublishers(SdkClientConfiguration clientConfiguration, - RequestOverrideConfiguration requestOverrideConfiguration) { + RequestOverrideConfiguration requestOverrideConfiguration) { List publishers = null; if (requestOverrideConfiguration != null) { publishers = requestOverrideConfiguration.metricPublishers(); @@ -705,19 +761,19 @@ private static List resolveMetricPublishers(SdkClientConfigurat } private HttpResponseHandler createErrorResponseHandler(BaseAwsJsonProtocolFactory protocolFactory, - JsonOperationMetadata operationMetadata) { + JsonOperationMetadata operationMetadata) { return protocolFactory.createErrorResponseHandler(operationMetadata); } private > T init(T builder) { return builder - .clientConfiguration(clientConfiguration) - .defaultServiceExceptionSupplier(JsonException::builder) - .protocol(AwsJsonProtocol.REST_JSON) - .protocolVersion("1.1") - .registerModeledException( - ExceptionMetadata.builder().errorCode("InvalidInput") - .exceptionBuilderSupplier(InvalidInputException::builder).httpStatusCode(400).build()); + .clientConfiguration(clientConfiguration) + .defaultServiceExceptionSupplier(JsonException::builder) + .protocol(AwsJsonProtocol.REST_JSON) + .protocolVersion("1.1") + .registerModeledException( + ExceptionMetadata.builder().errorCode("InvalidInput") + .exceptionBuilderSupplier(InvalidInputException::builder).httpStatusCode(400).build()); } @Override @@ -727,10 +783,10 @@ public void close() { private T applyPaginatorUserAgent(T request) { Consumer userAgentApplier = b -> b.addApiName(ApiName.builder() - .version(VersionInfo.SDK_VERSION).name("PAGINATED").build()); + .version(VersionInfo.SDK_VERSION).name("PAGINATED").build()); AwsRequestOverrideConfiguration overrideConfiguration = request.overrideConfiguration() - .map(c -> c.toBuilder().applyMutation(userAgentApplier).build()) - .orElse((AwsRequestOverrideConfiguration.builder().applyMutation(userAgentApplier).build())); + .map(c -> c.toBuilder().applyMutation(userAgentApplier).build()) + .orElse((AwsRequestOverrideConfiguration.builder().applyMutation(userAgentApplier).build())); return (T) request.toBuilder().overrideConfiguration(overrideConfiguration).build(); } @@ -740,8 +796,8 @@ private T applySignerOverride(T request, Signer signer) } Consumer signerOverride = b -> b.signer(signer).build(); AwsRequestOverrideConfiguration overrideConfiguration = request.overrideConfiguration() - .map(c -> c.toBuilder().applyMutation(signerOverride).build()) - .orElse((AwsRequestOverrideConfiguration.builder().applyMutation(signerOverride).build())); + .map(c -> c.toBuilder().applyMutation(signerOverride).build()) + .orElse((AwsRequestOverrideConfiguration.builder().applyMutation(signerOverride).build())); return (T) request.toBuilder().overrideConfiguration(overrideConfiguration).build(); } diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-json-client-interface.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-json-client-interface.java index 2685e7061b1f..77c4aa00dc3d 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-json-client-interface.java +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-json-client-interface.java @@ -19,6 +19,8 @@ import software.amazon.awssdk.services.json.model.GetWithoutRequiredMembersResponse; import software.amazon.awssdk.services.json.model.InvalidInputException; import software.amazon.awssdk.services.json.model.JsonException; +import software.amazon.awssdk.services.json.model.OperationWithChecksumRequiredRequest; +import software.amazon.awssdk.services.json.model.OperationWithChecksumRequiredResponse; import software.amazon.awssdk.services.json.model.PaginatedOperationWithResultKeyRequest; import software.amazon.awssdk.services.json.model.PaginatedOperationWithResultKeyResponse; import software.amazon.awssdk.services.json.model.PaginatedOperationWithoutResultKeyRequest; @@ -109,7 +111,7 @@ default APostOperationResponse aPostOperation(APostOperationRequest aPostOperati * API Documentation */ default APostOperationResponse aPostOperation(Consumer aPostOperationRequest) - throws InvalidInputException, AwsServiceException, SdkClientException, JsonException { + throws InvalidInputException, AwsServiceException, SdkClientException, JsonException { return aPostOperation(APostOperationRequest.builder().applyMutation(aPostOperationRequest).build()); } @@ -134,8 +136,8 @@ default APostOperationResponse aPostOperation(ConsumerAWS API Documentation */ default APostOperationWithOutputResponse aPostOperationWithOutput( - APostOperationWithOutputRequest aPostOperationWithOutputRequest) throws InvalidInputException, AwsServiceException, - SdkClientException, JsonException { + APostOperationWithOutputRequest aPostOperationWithOutputRequest) throws InvalidInputException, AwsServiceException, + SdkClientException, JsonException { throw new UnsupportedOperationException(); } @@ -167,8 +169,8 @@ default APostOperationWithOutputResponse aPostOperationWithOutput( * target="_top">AWS API Documentation */ default APostOperationWithOutputResponse aPostOperationWithOutput( - Consumer aPostOperationWithOutputRequest) throws InvalidInputException, - AwsServiceException, SdkClientException, JsonException { + Consumer aPostOperationWithOutputRequest) throws InvalidInputException, + AwsServiceException, SdkClientException, JsonException { return aPostOperationWithOutput(APostOperationWithOutputRequest.builder().applyMutation(aPostOperationWithOutputRequest) .build()); } @@ -194,8 +196,8 @@ default APostOperationWithOutputResponse aPostOperationWithOutput( * target="_top">AWS API Documentation */ default GetWithoutRequiredMembersResponse getWithoutRequiredMembers( - GetWithoutRequiredMembersRequest getWithoutRequiredMembersRequest) throws InvalidInputException, AwsServiceException, - SdkClientException, JsonException { + GetWithoutRequiredMembersRequest getWithoutRequiredMembersRequest) throws InvalidInputException, AwsServiceException, + SdkClientException, JsonException { throw new UnsupportedOperationException(); } @@ -227,12 +229,63 @@ default GetWithoutRequiredMembersResponse getWithoutRequiredMembers( * target="_top">AWS API Documentation */ default GetWithoutRequiredMembersResponse getWithoutRequiredMembers( - Consumer getWithoutRequiredMembersRequest) throws InvalidInputException, - AwsServiceException, SdkClientException, JsonException { + Consumer getWithoutRequiredMembersRequest) throws InvalidInputException, + AwsServiceException, SdkClientException, JsonException { return getWithoutRequiredMembers(GetWithoutRequiredMembersRequest.builder() .applyMutation(getWithoutRequiredMembersRequest).build()); } + /** + * Invokes the OperationWithChecksumRequired operation. + * + * @param operationWithChecksumRequiredRequest + * @return Result of the OperationWithChecksumRequired operation returned by the service. + * @throws SdkException + * Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for + * catch all scenarios. + * @throws SdkClientException + * If any client side error occurs such as an IO related failure, failure to get credentials, etc. + * @throws JsonException + * Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type. + * @sample JsonClient.OperationWithChecksumRequired + * @see AWS API Documentation + */ + default OperationWithChecksumRequiredResponse operationWithChecksumRequired( + OperationWithChecksumRequiredRequest operationWithChecksumRequiredRequest) throws AwsServiceException, + SdkClientException, JsonException { + throw new UnsupportedOperationException(); + } + + /** + * Invokes the OperationWithChecksumRequired operation.
+ *

+ * This is a convenience which creates an instance of the {@link OperationWithChecksumRequiredRequest.Builder} + * avoiding the need to create one manually via {@link OperationWithChecksumRequiredRequest#builder()} + *

+ * + * @param operationWithChecksumRequiredRequest + * A {@link Consumer} that will call methods on {@link OperationWithChecksumRequiredRequest.Builder} to + * create a request. + * @return Result of the OperationWithChecksumRequired operation returned by the service. + * @throws SdkException + * Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for + * catch all scenarios. + * @throws SdkClientException + * If any client side error occurs such as an IO related failure, failure to get credentials, etc. + * @throws JsonException + * Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type. + * @sample JsonClient.OperationWithChecksumRequired + * @see AWS API Documentation + */ + default OperationWithChecksumRequiredResponse operationWithChecksumRequired( + Consumer operationWithChecksumRequiredRequest) + throws AwsServiceException, SdkClientException, JsonException { + return operationWithChecksumRequired(OperationWithChecksumRequiredRequest.builder() + .applyMutation(operationWithChecksumRequiredRequest).build()); + } + /** * Some paginated operation with result_key in paginators.json file * @@ -271,8 +324,8 @@ default PaginatedOperationWithResultKeyResponse paginatedOperationWithResultKey( * target="_top">AWS API Documentation */ default PaginatedOperationWithResultKeyResponse paginatedOperationWithResultKey( - PaginatedOperationWithResultKeyRequest paginatedOperationWithResultKeyRequest) throws AwsServiceException, - SdkClientException, JsonException { + PaginatedOperationWithResultKeyRequest paginatedOperationWithResultKeyRequest) throws AwsServiceException, + SdkClientException, JsonException { throw new UnsupportedOperationException(); } @@ -299,8 +352,8 @@ default PaginatedOperationWithResultKeyResponse paginatedOperationWithResultKey( * target="_top">AWS API Documentation */ default PaginatedOperationWithResultKeyResponse paginatedOperationWithResultKey( - Consumer paginatedOperationWithResultKeyRequest) - throws AwsServiceException, SdkClientException, JsonException { + Consumer paginatedOperationWithResultKeyRequest) + throws AwsServiceException, SdkClientException, JsonException { return paginatedOperationWithResultKey(PaginatedOperationWithResultKeyRequest.builder() .applyMutation(paginatedOperationWithResultKeyRequest).build()); } @@ -453,8 +506,8 @@ default PaginatedOperationWithResultKeyIterable paginatedOperationWithResultKeyP * target="_top">AWS API Documentation */ default PaginatedOperationWithResultKeyIterable paginatedOperationWithResultKeyPaginator( - PaginatedOperationWithResultKeyRequest paginatedOperationWithResultKeyRequest) throws AwsServiceException, - SdkClientException, JsonException { + PaginatedOperationWithResultKeyRequest paginatedOperationWithResultKeyRequest) throws AwsServiceException, + SdkClientException, JsonException { throw new UnsupportedOperationException(); } @@ -536,8 +589,8 @@ default PaginatedOperationWithResultKeyIterable paginatedOperationWithResultKeyP * target="_top">AWS API Documentation */ default PaginatedOperationWithResultKeyIterable paginatedOperationWithResultKeyPaginator( - Consumer paginatedOperationWithResultKeyRequest) - throws AwsServiceException, SdkClientException, JsonException { + Consumer paginatedOperationWithResultKeyRequest) + throws AwsServiceException, SdkClientException, JsonException { return paginatedOperationWithResultKeyPaginator(PaginatedOperationWithResultKeyRequest.builder() .applyMutation(paginatedOperationWithResultKeyRequest).build()); } @@ -559,8 +612,8 @@ default PaginatedOperationWithResultKeyIterable paginatedOperationWithResultKeyP * target="_top">AWS API Documentation */ default PaginatedOperationWithoutResultKeyResponse paginatedOperationWithoutResultKey( - PaginatedOperationWithoutResultKeyRequest paginatedOperationWithoutResultKeyRequest) throws AwsServiceException, - SdkClientException, JsonException { + PaginatedOperationWithoutResultKeyRequest paginatedOperationWithoutResultKeyRequest) throws AwsServiceException, + SdkClientException, JsonException { throw new UnsupportedOperationException(); } @@ -587,8 +640,8 @@ default PaginatedOperationWithoutResultKeyResponse paginatedOperationWithoutResu * target="_top">AWS API Documentation */ default PaginatedOperationWithoutResultKeyResponse paginatedOperationWithoutResultKey( - Consumer paginatedOperationWithoutResultKeyRequest) - throws AwsServiceException, SdkClientException, JsonException { + Consumer paginatedOperationWithoutResultKeyRequest) + throws AwsServiceException, SdkClientException, JsonException { return paginatedOperationWithoutResultKey(PaginatedOperationWithoutResultKeyRequest.builder() .applyMutation(paginatedOperationWithoutResultKeyRequest).build()); } @@ -665,8 +718,8 @@ default PaginatedOperationWithoutResultKeyResponse paginatedOperationWithoutResu * target="_top">AWS API Documentation */ default PaginatedOperationWithoutResultKeyIterable paginatedOperationWithoutResultKeyPaginator( - PaginatedOperationWithoutResultKeyRequest paginatedOperationWithoutResultKeyRequest) throws AwsServiceException, - SdkClientException, JsonException { + PaginatedOperationWithoutResultKeyRequest paginatedOperationWithoutResultKeyRequest) throws AwsServiceException, + SdkClientException, JsonException { throw new UnsupportedOperationException(); } @@ -748,8 +801,8 @@ default PaginatedOperationWithoutResultKeyIterable paginatedOperationWithoutResu * target="_top">AWS API Documentation */ default PaginatedOperationWithoutResultKeyIterable paginatedOperationWithoutResultKeyPaginator( - Consumer paginatedOperationWithoutResultKeyRequest) - throws AwsServiceException, SdkClientException, JsonException { + Consumer paginatedOperationWithoutResultKeyRequest) + throws AwsServiceException, SdkClientException, JsonException { return paginatedOperationWithoutResultKeyPaginator(PaginatedOperationWithoutResultKeyRequest.builder() .applyMutation(paginatedOperationWithoutResultKeyRequest).build()); } @@ -782,8 +835,8 @@ default PaginatedOperationWithoutResultKeyIterable paginatedOperationWithoutResu * target="_top">AWS API Documentation */ default StreamingInputOperationResponse streamingInputOperation( - StreamingInputOperationRequest streamingInputOperationRequest, RequestBody requestBody) throws AwsServiceException, - SdkClientException, JsonException { + StreamingInputOperationRequest streamingInputOperationRequest, RequestBody requestBody) throws AwsServiceException, + SdkClientException, JsonException { throw new UnsupportedOperationException(); } @@ -821,8 +874,8 @@ default StreamingInputOperationResponse streamingInputOperation( * target="_top">AWS API Documentation */ default StreamingInputOperationResponse streamingInputOperation( - Consumer streamingInputOperationRequest, RequestBody requestBody) - throws AwsServiceException, SdkClientException, JsonException { + Consumer streamingInputOperationRequest, RequestBody requestBody) + throws AwsServiceException, SdkClientException, JsonException { return streamingInputOperation(StreamingInputOperationRequest.builder().applyMutation(streamingInputOperationRequest) .build(), requestBody); } @@ -850,8 +903,8 @@ default StreamingInputOperationResponse streamingInputOperation( * target="_top">AWS API Documentation */ default StreamingInputOperationResponse streamingInputOperation( - StreamingInputOperationRequest streamingInputOperationRequest, Path sourcePath) throws AwsServiceException, - SdkClientException, JsonException { + StreamingInputOperationRequest streamingInputOperationRequest, Path sourcePath) throws AwsServiceException, + SdkClientException, JsonException { return streamingInputOperation(streamingInputOperationRequest, RequestBody.fromFile(sourcePath)); } @@ -884,8 +937,8 @@ default StreamingInputOperationResponse streamingInputOperation( * target="_top">AWS API Documentation */ default StreamingInputOperationResponse streamingInputOperation( - Consumer streamingInputOperationRequest, Path sourcePath) - throws AwsServiceException, SdkClientException, JsonException { + Consumer streamingInputOperationRequest, Path sourcePath) + throws AwsServiceException, SdkClientException, JsonException { return streamingInputOperation(StreamingInputOperationRequest.builder().applyMutation(streamingInputOperationRequest) .build(), sourcePath); } @@ -907,11 +960,11 @@ default StreamingInputOperationResponse streamingInputOperation( * The service documentation for the request content is as follows 'This be a stream' * @param responseTransformer * Functional interface for processing the streamed response content. The unmarshalled - * StreamingInputOutputOperationResponse and an InputStream to the response content are provided as parameters - * to the callback. The callback may return a transformed type which will be the return value of this method. - * See {@link software.amazon.awssdk.core.sync.ResponseTransformer} for details on implementing this - * interface and for links to pre-canned implementations for common scenarios like downloading to a file. The - * service documentation for the response content is as follows 'This be a stream'. + * StreamingInputOutputOperationResponse and an InputStream to the response content are provided as + * parameters to the callback. The callback may return a transformed type which will be the return value of + * this method. See {@link software.amazon.awssdk.core.sync.ResponseTransformer} for details on implementing + * this interface and for links to pre-canned implementations for common scenarios like downloading to a + * file. The service documentation for the response content is as follows 'This be a stream'. * @return The transformed result of the ResponseTransformer. * @throws SdkException * Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for @@ -925,9 +978,9 @@ default StreamingInputOperationResponse streamingInputOperation( * target="_top">AWS API Documentation */ default ReturnT streamingInputOutputOperation( - StreamingInputOutputOperationRequest streamingInputOutputOperationRequest, RequestBody requestBody, - ResponseTransformer responseTransformer) throws AwsServiceException, - SdkClientException, JsonException { + StreamingInputOutputOperationRequest streamingInputOutputOperationRequest, RequestBody requestBody, + ResponseTransformer responseTransformer) throws AwsServiceException, + SdkClientException, JsonException { throw new UnsupportedOperationException(); } @@ -954,11 +1007,11 @@ default ReturnT streamingInputOutputOperation( * The service documentation for the request content is as follows 'This be a stream' * @param responseTransformer * Functional interface for processing the streamed response content. The unmarshalled - * StreamingInputOutputOperationResponse and an InputStream to the response content are provided as parameters - * to the callback. The callback may return a transformed type which will be the return value of this method. - * See {@link software.amazon.awssdk.core.sync.ResponseTransformer} for details on implementing this - * interface and for links to pre-canned implementations for common scenarios like downloading to a file. The - * service documentation for the response content is as follows 'This be a stream'. + * StreamingInputOutputOperationResponse and an InputStream to the response content are provided as + * parameters to the callback. The callback may return a transformed type which will be the return value of + * this method. See {@link software.amazon.awssdk.core.sync.ResponseTransformer} for details on implementing + * this interface and for links to pre-canned implementations for common scenarios like downloading to a + * file. The service documentation for the response content is as follows 'This be a stream'. * @return The transformed result of the ResponseTransformer. * @throws SdkException * Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for @@ -972,12 +1025,12 @@ default ReturnT streamingInputOutputOperation( * target="_top">AWS API Documentation */ default ReturnT streamingInputOutputOperation( - Consumer streamingInputOutputOperationRequest, RequestBody requestBody, - ResponseTransformer responseTransformer) throws AwsServiceException, - SdkClientException, JsonException { + Consumer streamingInputOutputOperationRequest, RequestBody requestBody, + ResponseTransformer responseTransformer) throws AwsServiceException, + SdkClientException, JsonException { return streamingInputOutputOperation( - StreamingInputOutputOperationRequest.builder().applyMutation(streamingInputOutputOperationRequest).build(), - requestBody, responseTransformer); + StreamingInputOutputOperationRequest.builder().applyMutation(streamingInputOutputOperationRequest).build(), + requestBody, responseTransformer); } /** @@ -1008,8 +1061,8 @@ default ReturnT streamingInputOutputOperation( * target="_top">AWS API Documentation */ default StreamingInputOutputOperationResponse streamingInputOutputOperation( - StreamingInputOutputOperationRequest streamingInputOutputOperationRequest, Path sourcePath, Path destinationPath) - throws AwsServiceException, SdkClientException, JsonException { + StreamingInputOutputOperationRequest streamingInputOutputOperationRequest, Path sourcePath, Path destinationPath) + throws AwsServiceException, SdkClientException, JsonException { return streamingInputOutputOperation(streamingInputOutputOperationRequest, RequestBody.fromFile(sourcePath), ResponseTransformer.toFile(destinationPath)); } @@ -1048,11 +1101,11 @@ default StreamingInputOutputOperationResponse streamingInputOutputOperation( * target="_top">AWS API Documentation */ default StreamingInputOutputOperationResponse streamingInputOutputOperation( - Consumer streamingInputOutputOperationRequest, Path sourcePath, - Path destinationPath) throws AwsServiceException, SdkClientException, JsonException { + Consumer streamingInputOutputOperationRequest, Path sourcePath, + Path destinationPath) throws AwsServiceException, SdkClientException, JsonException { return streamingInputOutputOperation( - StreamingInputOutputOperationRequest.builder().applyMutation(streamingInputOutputOperationRequest).build(), - sourcePath, destinationPath); + StreamingInputOutputOperationRequest.builder().applyMutation(streamingInputOutputOperationRequest).build(), + sourcePath, destinationPath); } /** @@ -1061,8 +1114,8 @@ default StreamingInputOutputOperationResponse streamingInputOutputOperation( * @param streamingOutputOperationRequest * @param responseTransformer * Functional interface for processing the streamed response content. The unmarshalled - * StreamingOutputOperationResponse and an InputStream to the response content are provided as parameters - * to the callback. The callback may return a transformed type which will be the return value of this method. + * StreamingOutputOperationResponse and an InputStream to the response content are provided as parameters to + * the callback. The callback may return a transformed type which will be the return value of this method. * See {@link software.amazon.awssdk.core.sync.ResponseTransformer} for details on implementing this * interface and for links to pre-canned implementations for common scenarios like downloading to a file. The * service documentation for the response content is as follows 'This be a stream'. @@ -1096,8 +1149,8 @@ default ReturnT streamingOutputOperation(StreamingOutputOperationReque * request. * @param responseTransformer * Functional interface for processing the streamed response content. The unmarshalled - * StreamingOutputOperationResponse and an InputStream to the response content are provided as parameters - * to the callback. The callback may return a transformed type which will be the return value of this method. + * StreamingOutputOperationResponse and an InputStream to the response content are provided as parameters to + * the callback. The callback may return a transformed type which will be the return value of this method. * See {@link software.amazon.awssdk.core.sync.ResponseTransformer} for details on implementing this * interface and for links to pre-canned implementations for common scenarios like downloading to a file. The * service documentation for the response content is as follows 'This be a stream'. @@ -1114,9 +1167,9 @@ default ReturnT streamingOutputOperation(StreamingOutputOperationReque * target="_top">AWS API Documentation */ default ReturnT streamingOutputOperation( - Consumer streamingOutputOperationRequest, - ResponseTransformer responseTransformer) throws AwsServiceException, - SdkClientException, JsonException { + Consumer streamingOutputOperationRequest, + ResponseTransformer responseTransformer) throws AwsServiceException, + SdkClientException, JsonException { return streamingOutputOperation(StreamingOutputOperationRequest.builder().applyMutation(streamingOutputOperationRequest) .build(), responseTransformer); } @@ -1143,8 +1196,8 @@ default ReturnT streamingOutputOperation( * target="_top">AWS API Documentation */ default StreamingOutputOperationResponse streamingOutputOperation( - StreamingOutputOperationRequest streamingOutputOperationRequest, Path destinationPath) throws AwsServiceException, - SdkClientException, JsonException { + StreamingOutputOperationRequest streamingOutputOperationRequest, Path destinationPath) throws AwsServiceException, + SdkClientException, JsonException { return streamingOutputOperation(streamingOutputOperationRequest, ResponseTransformer.toFile(destinationPath)); } @@ -1176,8 +1229,8 @@ default StreamingOutputOperationResponse streamingOutputOperation( * target="_top">AWS API Documentation */ default StreamingOutputOperationResponse streamingOutputOperation( - Consumer streamingOutputOperationRequest, Path destinationPath) - throws AwsServiceException, SdkClientException, JsonException { + Consumer streamingOutputOperationRequest, Path destinationPath) + throws AwsServiceException, SdkClientException, JsonException { return streamingOutputOperation(StreamingOutputOperationRequest.builder().applyMutation(streamingOutputOperationRequest) .build(), destinationPath); } @@ -1205,8 +1258,8 @@ default StreamingOutputOperationResponse streamingOutputOperation( * target="_top">AWS API Documentation */ default ResponseInputStream streamingOutputOperation( - StreamingOutputOperationRequest streamingOutputOperationRequest) throws AwsServiceException, SdkClientException, - JsonException { + StreamingOutputOperationRequest streamingOutputOperationRequest) throws AwsServiceException, SdkClientException, + JsonException { return streamingOutputOperation(streamingOutputOperationRequest, ResponseTransformer.toInputStream()); } @@ -1239,8 +1292,8 @@ default ResponseInputStream streamingOutputOpe * target="_top">AWS API Documentation */ default ResponseInputStream streamingOutputOperation( - Consumer streamingOutputOperationRequest) throws AwsServiceException, - SdkClientException, JsonException { + Consumer streamingOutputOperationRequest) throws AwsServiceException, + SdkClientException, JsonException { return streamingOutputOperation(StreamingOutputOperationRequest.builder().applyMutation(streamingOutputOperationRequest) .build()); } @@ -1266,8 +1319,8 @@ default ResponseInputStream streamingOutputOpe * target="_top">AWS API Documentation */ default ResponseBytes streamingOutputOperationAsBytes( - StreamingOutputOperationRequest streamingOutputOperationRequest) throws AwsServiceException, SdkClientException, - JsonException { + StreamingOutputOperationRequest streamingOutputOperationRequest) throws AwsServiceException, SdkClientException, + JsonException { return streamingOutputOperation(streamingOutputOperationRequest, ResponseTransformer.toBytes()); } @@ -1298,8 +1351,8 @@ default ResponseBytes streamingOutputOperation * target="_top">AWS API Documentation */ default ResponseBytes streamingOutputOperationAsBytes( - Consumer streamingOutputOperationRequest) throws AwsServiceException, - SdkClientException, JsonException { + Consumer streamingOutputOperationRequest) throws AwsServiceException, + SdkClientException, JsonException { return streamingOutputOperationAsBytes(StreamingOutputOperationRequest.builder() .applyMutation(streamingOutputOperationRequest).build()); } diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-query-async-client-class.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-query-async-client-class.java index 78b683efbc26..7255486fa623 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-query-async-client-class.java +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-query-async-client-class.java @@ -23,6 +23,8 @@ import software.amazon.awssdk.core.client.handler.AsyncClientHandler; import software.amazon.awssdk.core.client.handler.ClientExecutionParams; import software.amazon.awssdk.core.http.HttpResponseHandler; +import software.amazon.awssdk.core.interceptor.SdkInternalExecutionAttribute; +import software.amazon.awssdk.core.interceptor.trait.HttpChecksumRequired; import software.amazon.awssdk.core.metrics.CoreMetric; import software.amazon.awssdk.core.runtime.transform.AsyncStreamingRequestMarshaller; import software.amazon.awssdk.core.signer.Signer; @@ -36,6 +38,8 @@ import software.amazon.awssdk.services.query.model.APostOperationWithOutputRequest; import software.amazon.awssdk.services.query.model.APostOperationWithOutputResponse; import software.amazon.awssdk.services.query.model.InvalidInputException; +import software.amazon.awssdk.services.query.model.OperationWithChecksumRequiredRequest; +import software.amazon.awssdk.services.query.model.OperationWithChecksumRequiredResponse; import software.amazon.awssdk.services.query.model.QueryException; import software.amazon.awssdk.services.query.model.QueryRequest; import software.amazon.awssdk.services.query.model.StreamingInputOperationRequest; @@ -44,6 +48,7 @@ import software.amazon.awssdk.services.query.model.StreamingOutputOperationResponse; import software.amazon.awssdk.services.query.transform.APostOperationRequestMarshaller; import software.amazon.awssdk.services.query.transform.APostOperationWithOutputRequestMarshaller; +import software.amazon.awssdk.services.query.transform.OperationWithChecksumRequiredRequestMarshaller; import software.amazon.awssdk.services.query.transform.StreamingInputOperationRequestMarshaller; import software.amazon.awssdk.services.query.transform.StreamingOutputOperationRequestMarshaller; import software.amazon.awssdk.services.query.waiters.QueryAsyncWaiter; @@ -105,27 +110,27 @@ public final String serviceName() { @Override public CompletableFuture aPostOperation(APostOperationRequest aPostOperationRequest) { List metricPublishers = resolveMetricPublishers(clientConfiguration, aPostOperationRequest - .overrideConfiguration().orElse(null)); + .overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Query Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "APostOperation"); HttpResponseHandler responseHandler = protocolFactory - .createResponseHandler(APostOperationResponse::builder); + .createResponseHandler(APostOperationResponse::builder); HttpResponseHandler errorResponseHandler = protocolFactory.createErrorResponseHandler(); String hostPrefix = "foo-"; String resolvedHostExpression = "foo-"; CompletableFuture executeFuture = clientHandler - .execute(new ClientExecutionParams() - .withOperationName("APostOperation") - .withMarshaller(new APostOperationRequestMarshaller(protocolFactory)) - .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) - .withMetricCollector(apiCallMetricCollector).hostPrefixExpression(resolvedHostExpression) - .withInput(aPostOperationRequest)); + .execute(new ClientExecutionParams() + .withOperationName("APostOperation") + .withMarshaller(new APostOperationRequestMarshaller(protocolFactory)) + .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) + .withMetricCollector(apiCallMetricCollector).hostPrefixExpression(resolvedHostExpression) + .withInput(aPostOperationRequest)); AwsRequestOverrideConfiguration requestOverrideConfig = aPostOperationRequest.overrideConfiguration().orElse(null); CompletableFuture whenCompleteFuture = null; whenCompleteFuture = executeFuture.whenComplete((r, e) -> { @@ -163,28 +168,28 @@ public CompletableFuture aPostOperation(APostOperationRe */ @Override public CompletableFuture aPostOperationWithOutput( - APostOperationWithOutputRequest aPostOperationWithOutputRequest) { + APostOperationWithOutputRequest aPostOperationWithOutputRequest) { List metricPublishers = resolveMetricPublishers(clientConfiguration, aPostOperationWithOutputRequest - .overrideConfiguration().orElse(null)); + .overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Query Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "APostOperationWithOutput"); HttpResponseHandler responseHandler = protocolFactory - .createResponseHandler(APostOperationWithOutputResponse::builder); + .createResponseHandler(APostOperationWithOutputResponse::builder); HttpResponseHandler errorResponseHandler = protocolFactory.createErrorResponseHandler(); CompletableFuture executeFuture = clientHandler - .execute(new ClientExecutionParams() - .withOperationName("APostOperationWithOutput") - .withMarshaller(new APostOperationWithOutputRequestMarshaller(protocolFactory)) - .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) - .withMetricCollector(apiCallMetricCollector).withInput(aPostOperationWithOutputRequest)); + .execute(new ClientExecutionParams() + .withOperationName("APostOperationWithOutput") + .withMarshaller(new APostOperationWithOutputRequestMarshaller(protocolFactory)) + .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) + .withMetricCollector(apiCallMetricCollector).withInput(aPostOperationWithOutputRequest)); AwsRequestOverrideConfiguration requestOverrideConfig = aPostOperationWithOutputRequest.overrideConfiguration() - .orElse(null); + .orElse(null); CompletableFuture whenCompleteFuture = null; whenCompleteFuture = executeFuture.whenComplete((r, e) -> { metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); @@ -196,6 +201,64 @@ public CompletableFuture aPostOperationWithOut } } + /** + * Invokes the OperationWithChecksumRequired operation asynchronously. + * + * @param operationWithChecksumRequiredRequest + * @return A Java Future containing the result of the OperationWithChecksumRequired operation returned by the + * service.
+ * The CompletableFuture returned by this method can be completed exceptionally with the following + * exceptions. + *
    + *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). + * Can be used for catch all scenarios.
  • + *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get + * credentials, etc.
  • + *
  • QueryException Base class for all service exceptions. Unknown exceptions will be thrown as an + * instance of this type.
  • + *
+ * @sample QueryAsyncClient.OperationWithChecksumRequired + * @see AWS API Documentation + */ + @Override + public CompletableFuture operationWithChecksumRequired( + OperationWithChecksumRequiredRequest operationWithChecksumRequiredRequest) { + List metricPublishers = resolveMetricPublishers(clientConfiguration, + operationWithChecksumRequiredRequest.overrideConfiguration().orElse(null)); + MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector + .create("ApiCall"); + try { + apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Query Service"); + apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "OperationWithChecksumRequired"); + + HttpResponseHandler responseHandler = protocolFactory + .createResponseHandler(OperationWithChecksumRequiredResponse::builder); + + HttpResponseHandler errorResponseHandler = protocolFactory.createErrorResponseHandler(); + + CompletableFuture executeFuture = clientHandler + .execute(new ClientExecutionParams() + .withOperationName("OperationWithChecksumRequired") + .withMarshaller(new OperationWithChecksumRequiredRequestMarshaller(protocolFactory)) + .withResponseHandler(responseHandler) + .withErrorResponseHandler(errorResponseHandler) + .withMetricCollector(apiCallMetricCollector) + .putExecutionAttribute(SdkInternalExecutionAttribute.HTTP_CHECKSUM_REQUIRED, + HttpChecksumRequired.create()).withInput(operationWithChecksumRequiredRequest)); + AwsRequestOverrideConfiguration requestOverrideConfig = operationWithChecksumRequiredRequest.overrideConfiguration() + .orElse(null); + CompletableFuture whenCompleteFuture = null; + whenCompleteFuture = executeFuture.whenComplete((r, e) -> { + metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); + }); + return CompletableFutureUtils.forwardExceptionTo(whenCompleteFuture, executeFuture); + } catch (Throwable t) { + metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); + return CompletableFutureUtils.failedFuture(t); + } + } + /** * Some operation with a streaming input * @@ -222,11 +285,11 @@ public CompletableFuture aPostOperationWithOut */ @Override public CompletableFuture streamingInputOperation( - StreamingInputOperationRequest streamingInputOperationRequest, AsyncRequestBody requestBody) { + StreamingInputOperationRequest streamingInputOperationRequest, AsyncRequestBody requestBody) { List metricPublishers = resolveMetricPublishers(clientConfiguration, streamingInputOperationRequest - .overrideConfiguration().orElse(null)); + .overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Query Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "StreamingInputOperation"); @@ -235,21 +298,21 @@ public CompletableFuture streamingInputOperatio } HttpResponseHandler responseHandler = protocolFactory - .createResponseHandler(StreamingInputOperationResponse::builder); + .createResponseHandler(StreamingInputOperationResponse::builder); HttpResponseHandler errorResponseHandler = protocolFactory.createErrorResponseHandler(); CompletableFuture executeFuture = clientHandler - .execute(new ClientExecutionParams() - .withOperationName("StreamingInputOperation") - .withMarshaller( - AsyncStreamingRequestMarshaller.builder() - .delegateMarshaller(new StreamingInputOperationRequestMarshaller(protocolFactory)) - .asyncRequestBody(requestBody).build()).withResponseHandler(responseHandler) - .withErrorResponseHandler(errorResponseHandler).withMetricCollector(apiCallMetricCollector) - .withAsyncRequestBody(requestBody).withInput(streamingInputOperationRequest)); + .execute(new ClientExecutionParams() + .withOperationName("StreamingInputOperation") + .withMarshaller( + AsyncStreamingRequestMarshaller.builder() + .delegateMarshaller(new StreamingInputOperationRequestMarshaller(protocolFactory)) + .asyncRequestBody(requestBody).build()).withResponseHandler(responseHandler) + .withErrorResponseHandler(errorResponseHandler).withMetricCollector(apiCallMetricCollector) + .withAsyncRequestBody(requestBody).withInput(streamingInputOperationRequest)); AwsRequestOverrideConfiguration requestOverrideConfig = streamingInputOperationRequest.overrideConfiguration() - .orElse(null); + .orElse(null); CompletableFuture whenCompleteFuture = null; whenCompleteFuture = executeFuture.whenComplete((r, e) -> { metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); @@ -287,42 +350,42 @@ public CompletableFuture streamingInputOperatio */ @Override public CompletableFuture streamingOutputOperation( - StreamingOutputOperationRequest streamingOutputOperationRequest, - AsyncResponseTransformer asyncResponseTransformer) { + StreamingOutputOperationRequest streamingOutputOperationRequest, + AsyncResponseTransformer asyncResponseTransformer) { List metricPublishers = resolveMetricPublishers(clientConfiguration, streamingOutputOperationRequest - .overrideConfiguration().orElse(null)); + .overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Query Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "StreamingOutputOperation"); HttpResponseHandler responseHandler = protocolFactory - .createResponseHandler(StreamingOutputOperationResponse::builder); + .createResponseHandler(StreamingOutputOperationResponse::builder); HttpResponseHandler errorResponseHandler = protocolFactory.createErrorResponseHandler(); CompletableFuture executeFuture = clientHandler.execute( - new ClientExecutionParams() - .withOperationName("StreamingOutputOperation") - .withMarshaller(new StreamingOutputOperationRequestMarshaller(protocolFactory)) - .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) - .withMetricCollector(apiCallMetricCollector).withInput(streamingOutputOperationRequest), - asyncResponseTransformer); + new ClientExecutionParams() + .withOperationName("StreamingOutputOperation") + .withMarshaller(new StreamingOutputOperationRequestMarshaller(protocolFactory)) + .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) + .withMetricCollector(apiCallMetricCollector).withInput(streamingOutputOperationRequest), + asyncResponseTransformer); AwsRequestOverrideConfiguration requestOverrideConfig = streamingOutputOperationRequest.overrideConfiguration() - .orElse(null); + .orElse(null); CompletableFuture whenCompleteFuture = null; whenCompleteFuture = executeFuture.whenComplete((r, e) -> { if (e != null) { runAndLogError(log, "Exception thrown in exceptionOccurred callback, ignoring", - () -> asyncResponseTransformer.exceptionOccurred(e)); + () -> asyncResponseTransformer.exceptionOccurred(e)); } metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); }); return CompletableFutureUtils.forwardExceptionTo(whenCompleteFuture, executeFuture); } catch (Throwable t) { runAndLogError(log, "Exception thrown in exceptionOccurred callback, ignoring", - () -> asyncResponseTransformer.exceptionOccurred(t)); + () -> asyncResponseTransformer.exceptionOccurred(t)); metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); return CompletableFutureUtils.failedFuture(t); } @@ -335,15 +398,15 @@ public void close() { private AwsQueryProtocolFactory init() { return AwsQueryProtocolFactory - .builder() - .registerModeledException( - ExceptionMetadata.builder().errorCode("InvalidInput") - .exceptionBuilderSupplier(InvalidInputException::builder).httpStatusCode(400).build()) - .clientConfiguration(clientConfiguration).defaultServiceExceptionSupplier(QueryException::builder).build(); + .builder() + .registerModeledException( + ExceptionMetadata.builder().errorCode("InvalidInput") + .exceptionBuilderSupplier(InvalidInputException::builder).httpStatusCode(400).build()) + .clientConfiguration(clientConfiguration).defaultServiceExceptionSupplier(QueryException::builder).build(); } private static List resolveMetricPublishers(SdkClientConfiguration clientConfiguration, - RequestOverrideConfiguration requestOverrideConfiguration) { + RequestOverrideConfiguration requestOverrideConfiguration) { List publishers = null; if (requestOverrideConfiguration != null) { publishers = requestOverrideConfiguration.metricPublishers(); @@ -363,8 +426,8 @@ private T applySignerOverride(T request, Signer signer) } Consumer signerOverride = b -> b.signer(signer).build(); AwsRequestOverrideConfiguration overrideConfiguration = request.overrideConfiguration() - .map(c -> c.toBuilder().applyMutation(signerOverride).build()) - .orElse((AwsRequestOverrideConfiguration.builder().applyMutation(signerOverride).build())); + .map(c -> c.toBuilder().applyMutation(signerOverride).build()) + .orElse((AwsRequestOverrideConfiguration.builder().applyMutation(signerOverride).build())); return (T) request.toBuilder().overrideConfiguration(overrideConfiguration).build(); } diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-query-client-class.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-query-client-class.java index 6b51c883623c..ba0c0d5306fd 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-query-client-class.java +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-query-client-class.java @@ -13,6 +13,8 @@ import software.amazon.awssdk.core.client.handler.SyncClientHandler; import software.amazon.awssdk.core.exception.SdkClientException; import software.amazon.awssdk.core.http.HttpResponseHandler; +import software.amazon.awssdk.core.interceptor.SdkInternalExecutionAttribute; +import software.amazon.awssdk.core.interceptor.trait.HttpChecksumRequired; import software.amazon.awssdk.core.metrics.CoreMetric; import software.amazon.awssdk.core.runtime.transform.StreamingRequestMarshaller; import software.amazon.awssdk.core.sync.RequestBody; @@ -27,6 +29,8 @@ import software.amazon.awssdk.services.query.model.APostOperationWithOutputRequest; import software.amazon.awssdk.services.query.model.APostOperationWithOutputResponse; import software.amazon.awssdk.services.query.model.InvalidInputException; +import software.amazon.awssdk.services.query.model.OperationWithChecksumRequiredRequest; +import software.amazon.awssdk.services.query.model.OperationWithChecksumRequiredResponse; import software.amazon.awssdk.services.query.model.QueryException; import software.amazon.awssdk.services.query.model.StreamingInputOperationRequest; import software.amazon.awssdk.services.query.model.StreamingInputOperationResponse; @@ -34,6 +38,7 @@ import software.amazon.awssdk.services.query.model.StreamingOutputOperationResponse; import software.amazon.awssdk.services.query.transform.APostOperationRequestMarshaller; import software.amazon.awssdk.services.query.transform.APostOperationWithOutputRequestMarshaller; +import software.amazon.awssdk.services.query.transform.OperationWithChecksumRequiredRequestMarshaller; import software.amazon.awssdk.services.query.transform.StreamingInputOperationRequestMarshaller; import software.amazon.awssdk.services.query.transform.StreamingOutputOperationRequestMarshaller; import software.amazon.awssdk.services.query.waiters.QueryWaiter; @@ -88,17 +93,16 @@ public final String serviceName() { */ @Override public APostOperationResponse aPostOperation(APostOperationRequest aPostOperationRequest) throws InvalidInputException, - AwsServiceException, SdkClientException, QueryException { - + AwsServiceException, SdkClientException, QueryException { HttpResponseHandler responseHandler = protocolFactory - .createResponseHandler(APostOperationResponse::builder); + .createResponseHandler(APostOperationResponse::builder); HttpResponseHandler errorResponseHandler = protocolFactory.createErrorResponseHandler(); List metricPublishers = resolveMetricPublishers(clientConfiguration, aPostOperationRequest - .overrideConfiguration().orElse(null)); + .overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Query Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "APostOperation"); @@ -106,10 +110,10 @@ public APostOperationResponse aPostOperation(APostOperationRequest aPostOperatio String resolvedHostExpression = "foo-"; return clientHandler.execute(new ClientExecutionParams() - .withOperationName("APostOperation").withResponseHandler(responseHandler) - .withErrorResponseHandler(errorResponseHandler).hostPrefixExpression(resolvedHostExpression) - .withInput(aPostOperationRequest).withMetricCollector(apiCallMetricCollector) - .withMarshaller(new APostOperationRequestMarshaller(protocolFactory))); + .withOperationName("APostOperation").withResponseHandler(responseHandler) + .withErrorResponseHandler(errorResponseHandler).hostPrefixExpression(resolvedHostExpression) + .withInput(aPostOperationRequest).withMetricCollector(apiCallMetricCollector) + .withMarshaller(new APostOperationRequestMarshaller(protocolFactory))); } finally { metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); } @@ -137,27 +141,75 @@ public APostOperationResponse aPostOperation(APostOperationRequest aPostOperatio */ @Override public APostOperationWithOutputResponse aPostOperationWithOutput( - APostOperationWithOutputRequest aPostOperationWithOutputRequest) throws InvalidInputException, AwsServiceException, - SdkClientException, QueryException { + APostOperationWithOutputRequest aPostOperationWithOutputRequest) throws InvalidInputException, AwsServiceException, + SdkClientException, QueryException { HttpResponseHandler responseHandler = protocolFactory - .createResponseHandler(APostOperationWithOutputResponse::builder); + .createResponseHandler(APostOperationWithOutputResponse::builder); HttpResponseHandler errorResponseHandler = protocolFactory.createErrorResponseHandler(); List metricPublishers = resolveMetricPublishers(clientConfiguration, aPostOperationWithOutputRequest - .overrideConfiguration().orElse(null)); + .overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Query Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "APostOperationWithOutput"); return clientHandler - .execute(new ClientExecutionParams() - .withOperationName("APostOperationWithOutput").withResponseHandler(responseHandler) - .withErrorResponseHandler(errorResponseHandler).withInput(aPostOperationWithOutputRequest) - .withMetricCollector(apiCallMetricCollector) - .withMarshaller(new APostOperationWithOutputRequestMarshaller(protocolFactory))); + .execute(new ClientExecutionParams() + .withOperationName("APostOperationWithOutput").withResponseHandler(responseHandler) + .withErrorResponseHandler(errorResponseHandler).withInput(aPostOperationWithOutputRequest) + .withMetricCollector(apiCallMetricCollector) + .withMarshaller(new APostOperationWithOutputRequestMarshaller(protocolFactory))); + } finally { + metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); + } + } + + /** + * Invokes the OperationWithChecksumRequired operation. + * + * @param operationWithChecksumRequiredRequest + * @return Result of the OperationWithChecksumRequired operation returned by the service. + * @throws SdkException + * Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for + * catch all scenarios. + * @throws SdkClientException + * If any client side error occurs such as an IO related failure, failure to get credentials, etc. + * @throws QueryException + * Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type. + * @sample QueryClient.OperationWithChecksumRequired + * @see AWS API Documentation + */ + @Override + public OperationWithChecksumRequiredResponse operationWithChecksumRequired( + OperationWithChecksumRequiredRequest operationWithChecksumRequiredRequest) throws AwsServiceException, + SdkClientException, QueryException { + + HttpResponseHandler responseHandler = protocolFactory + .createResponseHandler(OperationWithChecksumRequiredResponse::builder); + + HttpResponseHandler errorResponseHandler = protocolFactory.createErrorResponseHandler(); + List metricPublishers = resolveMetricPublishers(clientConfiguration, + operationWithChecksumRequiredRequest.overrideConfiguration().orElse(null)); + MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector + .create("ApiCall"); + try { + apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Query Service"); + apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "OperationWithChecksumRequired"); + + return clientHandler + .execute(new ClientExecutionParams() + .withOperationName("OperationWithChecksumRequired") + .withResponseHandler(responseHandler) + .withErrorResponseHandler(errorResponseHandler) + .withInput(operationWithChecksumRequiredRequest) + .withMetricCollector(apiCallMetricCollector) + .putExecutionAttribute(SdkInternalExecutionAttribute.HTTP_CHECKSUM_REQUIRED, + HttpChecksumRequired.create()) + .withMarshaller(new OperationWithChecksumRequiredRequestMarshaller(protocolFactory))); } finally { metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); } @@ -171,11 +223,11 @@ public APostOperationWithOutputResponse aPostOperationWithOutput( * The content to send to the service. A {@link RequestBody} can be created using one of several factory * methods for various sources of data. For example, to create a request body from a file you can do the * following. - * + * *
      * {@code RequestBody.fromFile(new File("myfile.txt"))}
      * 
- * + * * See documentation in {@link RequestBody} for additional details and which sources of data are supported. * The service documentation for the request content is as follows 'This be a stream' * @return Result of the StreamingInputOperation operation returned by the service. @@ -192,32 +244,32 @@ public APostOperationWithOutputResponse aPostOperationWithOutput( */ @Override public StreamingInputOperationResponse streamingInputOperation(StreamingInputOperationRequest streamingInputOperationRequest, - RequestBody requestBody) throws AwsServiceException, SdkClientException, QueryException { + RequestBody requestBody) throws AwsServiceException, SdkClientException, QueryException { HttpResponseHandler responseHandler = protocolFactory - .createResponseHandler(StreamingInputOperationResponse::builder); + .createResponseHandler(StreamingInputOperationResponse::builder); HttpResponseHandler errorResponseHandler = protocolFactory.createErrorResponseHandler(); List metricPublishers = resolveMetricPublishers(clientConfiguration, streamingInputOperationRequest - .overrideConfiguration().orElse(null)); + .overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Query Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "StreamingInputOperation"); return clientHandler - .execute(new ClientExecutionParams() - .withOperationName("StreamingInputOperation") - .withResponseHandler(responseHandler) - .withErrorResponseHandler(errorResponseHandler) - .withInput(streamingInputOperationRequest) - .withMetricCollector(apiCallMetricCollector) - .withRequestBody(requestBody) - .withMarshaller( - StreamingRequestMarshaller.builder() - .delegateMarshaller(new StreamingInputOperationRequestMarshaller(protocolFactory)) - .requestBody(requestBody).build())); + .execute(new ClientExecutionParams() + .withOperationName("StreamingInputOperation") + .withResponseHandler(responseHandler) + .withErrorResponseHandler(errorResponseHandler) + .withInput(streamingInputOperationRequest) + .withMetricCollector(apiCallMetricCollector) + .withRequestBody(requestBody) + .withMarshaller( + StreamingRequestMarshaller.builder() + .delegateMarshaller(new StreamingInputOperationRequestMarshaller(protocolFactory)) + .requestBody(requestBody).build())); } finally { metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); } @@ -248,34 +300,34 @@ public StreamingInputOperationResponse streamingInputOperation(StreamingInputOpe */ @Override public ReturnT streamingOutputOperation(StreamingOutputOperationRequest streamingOutputOperationRequest, - ResponseTransformer responseTransformer) throws AwsServiceException, - SdkClientException, QueryException { + ResponseTransformer responseTransformer) throws AwsServiceException, + SdkClientException, QueryException { HttpResponseHandler responseHandler = protocolFactory - .createResponseHandler(StreamingOutputOperationResponse::builder); + .createResponseHandler(StreamingOutputOperationResponse::builder); HttpResponseHandler errorResponseHandler = protocolFactory.createErrorResponseHandler(); List metricPublishers = resolveMetricPublishers(clientConfiguration, streamingOutputOperationRequest - .overrideConfiguration().orElse(null)); + .overrideConfiguration().orElse(null)); MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector - .create("ApiCall"); + .create("ApiCall"); try { apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Query Service"); apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "StreamingOutputOperation"); return clientHandler.execute( - new ClientExecutionParams() - .withOperationName("StreamingOutputOperation").withResponseHandler(responseHandler) - .withErrorResponseHandler(errorResponseHandler).withInput(streamingOutputOperationRequest) - .withMetricCollector(apiCallMetricCollector) - .withMarshaller(new StreamingOutputOperationRequestMarshaller(protocolFactory)), responseTransformer); + new ClientExecutionParams() + .withOperationName("StreamingOutputOperation").withResponseHandler(responseHandler) + .withErrorResponseHandler(errorResponseHandler).withInput(streamingOutputOperationRequest) + .withMetricCollector(apiCallMetricCollector) + .withMarshaller(new StreamingOutputOperationRequestMarshaller(protocolFactory)), responseTransformer); } finally { metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); } } private static List resolveMetricPublishers(SdkClientConfiguration clientConfiguration, - RequestOverrideConfiguration requestOverrideConfiguration) { + RequestOverrideConfiguration requestOverrideConfiguration) { List publishers = null; if (requestOverrideConfiguration != null) { publishers = requestOverrideConfiguration.metricPublishers(); @@ -291,11 +343,11 @@ private static List resolveMetricPublishers(SdkClientConfigurat private AwsQueryProtocolFactory init() { return AwsQueryProtocolFactory - .builder() - .registerModeledException( - ExceptionMetadata.builder().errorCode("InvalidInput") - .exceptionBuilderSupplier(InvalidInputException::builder).httpStatusCode(400).build()) - .clientConfiguration(clientConfiguration).defaultServiceExceptionSupplier(QueryException::builder).build(); + .builder() + .registerModeledException( + ExceptionMetadata.builder().errorCode("InvalidInput") + .exceptionBuilderSupplier(InvalidInputException::builder).httpStatusCode(400).build()) + .clientConfiguration(clientConfiguration).defaultServiceExceptionSupplier(QueryException::builder).build(); } @Override @@ -308,4 +360,3 @@ public QueryWaiter waiter() { return QueryWaiter.builder().client(this).build(); } } - diff --git a/core/protocols/aws-xml-protocol/src/main/java/software/amazon/awssdk/protocols/xml/internal/unmarshall/XmlResponseParserUtils.java b/core/protocols/aws-xml-protocol/src/main/java/software/amazon/awssdk/protocols/xml/internal/unmarshall/XmlResponseParserUtils.java index 78967fdea9a2..97023b37709b 100644 --- a/core/protocols/aws-xml-protocol/src/main/java/software/amazon/awssdk/protocols/xml/internal/unmarshall/XmlResponseParserUtils.java +++ b/core/protocols/aws-xml-protocol/src/main/java/software/amazon/awssdk/protocols/xml/internal/unmarshall/XmlResponseParserUtils.java @@ -69,6 +69,6 @@ private static boolean hasPayloadMembers(SdkPojo sdkPojo) { } private static boolean contentLengthZero(SdkHttpFullResponse response) { - return response.firstMatchingHeader(CONTENT_LENGTH).filter(h -> Long.parseLong(h) == 0).isPresent(); + return response.firstMatchingHeader(CONTENT_LENGTH).map(l -> Long.parseLong(l) == 0).orElse(false); } } diff --git a/core/sdk-core/src/main/java/software/amazon/awssdk/core/interceptor/ExecutionInterceptorChain.java b/core/sdk-core/src/main/java/software/amazon/awssdk/core/interceptor/ExecutionInterceptorChain.java index 11fa74a4ee65..e99ef4be102a 100644 --- a/core/sdk-core/src/main/java/software/amazon/awssdk/core/interceptor/ExecutionInterceptorChain.java +++ b/core/sdk-core/src/main/java/software/amazon/awssdk/core/interceptor/ExecutionInterceptorChain.java @@ -20,6 +20,7 @@ import java.util.ArrayList; import java.util.List; import java.util.Objects; +import java.util.Optional; import java.util.function.Consumer; import org.reactivestreams.Publisher; import software.amazon.awssdk.annotations.SdkProtectedApi; @@ -28,6 +29,7 @@ import software.amazon.awssdk.core.async.AsyncRequestBody; import software.amazon.awssdk.core.internal.interceptor.DefaultFailedExecutionContext; import software.amazon.awssdk.core.sync.RequestBody; +import software.amazon.awssdk.http.ContentStreamProvider; import software.amazon.awssdk.http.SdkHttpFullRequest; import software.amazon.awssdk.http.SdkHttpRequest; import software.amazon.awssdk.http.SdkHttpResponse; @@ -83,24 +85,13 @@ public InterceptorContext modifyHttpRequestAndHttpContent(InterceptorContext con ExecutionAttributes executionAttributes) { InterceptorContext result = context; for (ExecutionInterceptor interceptor : interceptors) { - AsyncRequestBody asyncRequestBody = interceptor.modifyAsyncHttpContent(result, executionAttributes).orElse(null); - - SdkHttpFullRequest sdkHttpFullRequest = (SdkHttpFullRequest) context.httpRequest(); - if (!result.requestBody().isPresent() && sdkHttpFullRequest.contentStreamProvider().isPresent()) { - long contentLength = Long.parseLong(sdkHttpFullRequest.firstMatchingHeader("Content-Length").orElse("0")); - String contentType = sdkHttpFullRequest.firstMatchingHeader("Content-Type").orElse(""); - RequestBody requestBody = RequestBody.fromContentProvider(sdkHttpFullRequest.contentStreamProvider().get(), - contentLength, - contentType); - result = result.toBuilder().requestBody(requestBody).build(); - } - RequestBody requestBody = interceptor.modifyHttpContent(result, executionAttributes).orElse(null); - SdkHttpRequest interceptorResult = interceptor.modifyHttpRequest(result, executionAttributes); validateInterceptorResult(result.httpRequest(), interceptorResult, interceptor, "modifyHttpRequest"); + result = applySdkHttpFullRequestHack(result); + result = result.copy(b -> b.httpRequest(interceptorResult) .asyncRequestBody(asyncRequestBody) .requestBody(requestBody)); @@ -108,6 +99,32 @@ public InterceptorContext modifyHttpRequestAndHttpContent(InterceptorContext con return result; } + private InterceptorContext applySdkHttpFullRequestHack(InterceptorContext context) { + // Someone thought it would be a great idea to allow interceptors to return SdkHttpFullRequest to modify the payload + // instead of using the modifyPayload method. This is for backwards-compatibility with those interceptors. + // TODO: Update interceptors to use the proper payload-modifying method so that this code path is only used for older + // client versions. Maybe if we ever decide to break @SdkProtectedApis (if we stop using Jackson?!) we can even remove + // this hack! + SdkHttpFullRequest sdkHttpFullRequest = (SdkHttpFullRequest) context.httpRequest(); + + if (context.requestBody().isPresent()) { + return context; + } + + Optional contentStreamProvider = sdkHttpFullRequest.contentStreamProvider(); + + if (!contentStreamProvider.isPresent()) { + return context; + } + + long contentLength = Long.parseLong(sdkHttpFullRequest.firstMatchingHeader("Content-Length").orElse("0")); + String contentType = sdkHttpFullRequest.firstMatchingHeader("Content-Type").orElse(""); + RequestBody requestBody = RequestBody.fromContentProvider(contentStreamProvider.get(), + contentLength, + contentType); + return context.toBuilder().requestBody(requestBody).build(); + } + public void beforeTransmission(Context.BeforeTransmission context, ExecutionAttributes executionAttributes) { interceptors.forEach(i -> i.beforeTransmission(context, executionAttributes)); } diff --git a/core/sdk-core/src/main/java/software/amazon/awssdk/core/interceptor/SdkInternalExecutionAttribute.java b/core/sdk-core/src/main/java/software/amazon/awssdk/core/interceptor/SdkInternalExecutionAttribute.java index 69721a1ac4db..1c72ddcd9600 100644 --- a/core/sdk-core/src/main/java/software/amazon/awssdk/core/interceptor/SdkInternalExecutionAttribute.java +++ b/core/sdk-core/src/main/java/software/amazon/awssdk/core/interceptor/SdkInternalExecutionAttribute.java @@ -16,6 +16,7 @@ package software.amazon.awssdk.core.interceptor; import software.amazon.awssdk.annotations.SdkProtectedApi; +import software.amazon.awssdk.core.interceptor.trait.HttpChecksumRequired; /** * Attributes that can be applied to all sdk requests. Only generated code from the SDK clients should set these values. @@ -29,6 +30,9 @@ public final class SdkInternalExecutionAttribute extends SdkExecutionAttribute { */ public static final ExecutionAttribute IS_FULL_DUPLEX = new ExecutionAttribute<>("IsFullDuplex"); + public static final ExecutionAttribute HTTP_CHECKSUM_REQUIRED = + new ExecutionAttribute<>("HttpChecksumRequired"); + private SdkInternalExecutionAttribute() { } } diff --git a/core/sdk-core/src/main/java/software/amazon/awssdk/core/interceptor/trait/HttpChecksumRequired.java b/core/sdk-core/src/main/java/software/amazon/awssdk/core/interceptor/trait/HttpChecksumRequired.java new file mode 100644 index 000000000000..eee5b08fadcb --- /dev/null +++ b/core/sdk-core/src/main/java/software/amazon/awssdk/core/interceptor/trait/HttpChecksumRequired.java @@ -0,0 +1,28 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.core.interceptor.trait; + +import software.amazon.awssdk.annotations.SdkProtectedApi; + +@SdkProtectedApi +public class HttpChecksumRequired { + private HttpChecksumRequired() { + } + + public static HttpChecksumRequired create() { + return new HttpChecksumRequired(); + } +} diff --git a/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/handler/BaseClientHandler.java b/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/handler/BaseClientHandler.java index 26f281fa14f7..2e8523b32642 100644 --- a/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/handler/BaseClientHandler.java +++ b/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/handler/BaseClientHandler.java @@ -17,6 +17,7 @@ import java.net.URI; import java.time.Duration; +import java.util.Optional; import java.util.function.BiFunction; import software.amazon.awssdk.annotations.SdkInternalApi; import software.amazon.awssdk.core.Response; @@ -35,6 +36,8 @@ import software.amazon.awssdk.core.internal.InternalCoreExecutionAttribute; import software.amazon.awssdk.core.internal.util.MetricUtils; import software.amazon.awssdk.core.metrics.CoreMetric; +import software.amazon.awssdk.core.sync.RequestBody; +import software.amazon.awssdk.http.ContentStreamProvider; import software.amazon.awssdk.http.SdkHttpFullRequest; import software.amazon.awssdk.http.SdkHttpFullResponse; import software.amazon.awssdk.metrics.MetricCollector; @@ -126,10 +129,30 @@ private static SdkHttpFullRequest modifyEndpointHostIfNeeded(SdkHttpFullRequest } private static void addHttpRequest(ExecutionContext executionContext, SdkHttpFullRequest request) { - InterceptorContext interceptorContext = executionContext.interceptorContext().copy(b -> b.httpRequest(request)); + InterceptorContext interceptorContext = executionContext.interceptorContext(); + + Optional contentStreamProvider = request.contentStreamProvider(); + if (contentStreamProvider.isPresent()) { + interceptorContext = interceptorContext.copy(b -> b.httpRequest(request) + .requestBody(getBody(request))); + } else { + interceptorContext = interceptorContext.copy(b -> b.httpRequest(request)); + } + executionContext.interceptorContext(interceptorContext); } + private static RequestBody getBody(SdkHttpFullRequest request) { + Optional contentStreamProvider = request.contentStreamProvider(); + if (contentStreamProvider.isPresent()) { + long contentLength = Long.parseLong(request.firstMatchingHeader("Content-Length").orElse("0")); + String contentType = request.firstMatchingHeader("Content-Type").orElse(""); + return RequestBody.fromContentProvider(contentStreamProvider.get(), contentLength, contentType); + } + + return null; + } + private static void runAfterMarshallingInterceptors(ExecutionContext executionContext) { executionContext.interceptorChain().afterMarshalling(executionContext.interceptorContext(), executionContext.executionAttributes()); diff --git a/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/interceptor/HttpChecksumRequiredInterceptor.java b/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/interceptor/HttpChecksumRequiredInterceptor.java new file mode 100644 index 000000000000..1426e8bade1a --- /dev/null +++ b/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/interceptor/HttpChecksumRequiredInterceptor.java @@ -0,0 +1,95 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.core.internal.interceptor; + +import java.io.IOException; +import java.io.UncheckedIOException; +import java.util.Optional; +import software.amazon.awssdk.annotations.SdkInternalApi; +import software.amazon.awssdk.core.async.AsyncRequestBody; +import software.amazon.awssdk.core.interceptor.Context; +import software.amazon.awssdk.core.interceptor.ExecutionAttribute; +import software.amazon.awssdk.core.interceptor.ExecutionAttributes; +import software.amazon.awssdk.core.interceptor.ExecutionInterceptor; +import software.amazon.awssdk.core.interceptor.SdkInternalExecutionAttribute; +import software.amazon.awssdk.core.sync.RequestBody; +import software.amazon.awssdk.http.Header; +import software.amazon.awssdk.http.SdkHttpRequest; +import software.amazon.awssdk.utils.Md5Utils; + +/** + * Implements the "httpChecksumRequired" C2J trait. Operations with that trait applied will automatically include a "Content-MD5" + * header, containing a checksum of the payload. + * + *

This is NOT supported for asynchronous HTTP content, which is currently only used for streaming upload operations. If such + * operations are added in the future, we'll have to find a way to support them in a non-blocking manner. That will likely require + * interface changes of some sort, because it's not currently possible to do a non-blocking update to request headers. + */ +@SdkInternalApi +public class HttpChecksumRequiredInterceptor implements ExecutionInterceptor { + private static final ExecutionAttribute CONTENT_MD5_VALUE = new ExecutionAttribute<>("ContentMd5"); + + @Override + public void afterMarshalling(Context.AfterMarshalling context, ExecutionAttributes executionAttributes) { + boolean isHttpChecksumRequired = isHttpChecksumRequired(executionAttributes); + boolean requestAlreadyHasMd5 = context.httpRequest().firstMatchingHeader(Header.CONTENT_MD5).isPresent(); + + Optional syncContent = context.requestBody(); + Optional asyncContent = context.asyncRequestBody(); + + if (!isHttpChecksumRequired || requestAlreadyHasMd5) { + return; + } + + if (asyncContent.isPresent()) { + throw new IllegalArgumentException("This operation requires a content-MD5 checksum, but one cannot be calculated " + + "for non-blocking content."); + } + + syncContent.ifPresent(requestBody -> saveContentMd5(requestBody, executionAttributes)); + } + + @Override + public SdkHttpRequest modifyHttpRequest(Context.ModifyHttpRequest context, ExecutionAttributes executionAttributes) { + String contentMd5 = executionAttributes.getAttribute(CONTENT_MD5_VALUE); + if (contentMd5 != null) { + return context.httpRequest().copy(r -> r.putHeader(Header.CONTENT_MD5, contentMd5)); + } + return context.httpRequest(); + } + + private boolean isHttpChecksumRequired(ExecutionAttributes executionAttributes) { + return executionAttributes.getAttribute(SdkInternalExecutionAttribute.HTTP_CHECKSUM_REQUIRED) != null; + } + + /** + * Calculates the MD5 checksum of the provided request (and base64 encodes it), storing the result in + * {@link #CONTENT_MD5_VALUE}. + * + *

Note: This assumes that the content stream provider can create multiple new streams. If it only supports one (e.g. with + * an input stream that doesn't support mark/reset), we could consider buffering the content in memory here and updating the + * request body to use that buffered content. We obviously don't want to do that for giant streams, so we haven't opted to do + * that yet. + */ + private void saveContentMd5(RequestBody requestBody, ExecutionAttributes executionAttributes) { + try { + String payloadMd5 = Md5Utils.md5AsBase64(requestBody.contentStreamProvider().newStream()); + executionAttributes.putAttribute(CONTENT_MD5_VALUE, payloadMd5); + } catch (IOException e) { + throw new UncheckedIOException(e); + } + } +} diff --git a/core/sdk-core/src/main/resources/software/amazon/awssdk/global/handlers/execution.interceptors b/core/sdk-core/src/main/resources/software/amazon/awssdk/global/handlers/execution.interceptors new file mode 100644 index 000000000000..886f98df1c68 --- /dev/null +++ b/core/sdk-core/src/main/resources/software/amazon/awssdk/global/handlers/execution.interceptors @@ -0,0 +1 @@ +software.amazon.awssdk.core.internal.interceptor.HttpChecksumRequiredInterceptor \ No newline at end of file diff --git a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/handlers/AddContentMd5HeaderInterceptor.java b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/handlers/AddContentMd5HeaderInterceptor.java deleted file mode 100644 index 8d2510e329de..000000000000 --- a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/handlers/AddContentMd5HeaderInterceptor.java +++ /dev/null @@ -1,78 +0,0 @@ -/* - * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"). - * You may not use this file except in compliance with the License. - * A copy of the License is located at - * - * http://aws.amazon.com/apache2.0 - * - * or in the "license" file accompanying this file. This file is distributed - * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either - * express or implied. See the License for the specific language governing - * permissions and limitations under the License. - */ - -package software.amazon.awssdk.services.s3.internal.handlers; - -import static software.amazon.awssdk.http.Header.CONTENT_MD5; - -import java.io.ByteArrayOutputStream; -import java.io.IOException; -import java.io.UncheckedIOException; -import java.util.Arrays; -import java.util.List; -import java.util.Optional; -import software.amazon.awssdk.annotations.SdkInternalApi; -import software.amazon.awssdk.core.interceptor.Context; -import software.amazon.awssdk.core.interceptor.ExecutionAttribute; -import software.amazon.awssdk.core.interceptor.ExecutionAttributes; -import software.amazon.awssdk.core.interceptor.ExecutionInterceptor; -import software.amazon.awssdk.core.sync.RequestBody; -import software.amazon.awssdk.http.SdkHttpRequest; -import software.amazon.awssdk.services.s3.model.PutObjectRequest; -import software.amazon.awssdk.services.s3.model.UploadPartRequest; -import software.amazon.awssdk.utils.IoUtils; -import software.amazon.awssdk.utils.Md5Utils; - -@SdkInternalApi -public class AddContentMd5HeaderInterceptor implements ExecutionInterceptor { - - private static final ExecutionAttribute CONTENT_MD5_ATTRIBUTE = new ExecutionAttribute<>("contentMd5"); - - // List of operations that should be ignored by this interceptor. - // These are costly operations, so adding the md5 header will take a performance hit - private static final List BLACKLIST_METHODS = Arrays.asList(PutObjectRequest.class, UploadPartRequest.class); - - @Override - public Optional modifyHttpContent(Context.ModifyHttpRequest context, - ExecutionAttributes executionAttributes) { - - if (!BLACKLIST_METHODS.contains(context.request().getClass()) && context.requestBody().isPresent() - && !context.httpRequest().firstMatchingHeader(CONTENT_MD5).isPresent()) { - - try { - ByteArrayOutputStream baos = new ByteArrayOutputStream(); - IoUtils.copy(context.requestBody().get().contentStreamProvider().newStream(), baos); - executionAttributes.putAttribute(CONTENT_MD5_ATTRIBUTE, Md5Utils.md5AsBase64(baos.toByteArray())); - return context.requestBody(); - } catch (IOException e) { - throw new UncheckedIOException(e); - } - } - - return context.requestBody(); - } - - @Override - public SdkHttpRequest modifyHttpRequest(Context.ModifyHttpRequest context, - ExecutionAttributes executionAttributes) { - String contentMd5 = executionAttributes.getAttribute(CONTENT_MD5_ATTRIBUTE); - - if (contentMd5 != null) { - return context.httpRequest().toBuilder().putHeader(CONTENT_MD5, contentMd5).build(); - } - - return context.httpRequest(); - } -} diff --git a/services/s3/src/main/resources/software/amazon/awssdk/services/s3/execution.interceptors b/services/s3/src/main/resources/software/amazon/awssdk/services/s3/execution.interceptors index 91ecfda62673..d9d447cb955d 100644 --- a/services/s3/src/main/resources/software/amazon/awssdk/services/s3/execution.interceptors +++ b/services/s3/src/main/resources/software/amazon/awssdk/services/s3/execution.interceptors @@ -5,7 +5,6 @@ software.amazon.awssdk.services.s3.internal.handlers.CreateMultipartUploadReques software.amazon.awssdk.services.s3.internal.handlers.EnableChunkedEncodingInterceptor software.amazon.awssdk.services.s3.internal.handlers.DisableDoubleUrlEncodingInterceptor software.amazon.awssdk.services.s3.internal.handlers.DecodeUrlEncodedResponseInterceptor -software.amazon.awssdk.services.s3.internal.handlers.AddContentMd5HeaderInterceptor software.amazon.awssdk.services.s3.internal.handlers.GetBucketPolicyInterceptor software.amazon.awssdk.services.s3.internal.handlers.AsyncChecksumValidationInterceptor software.amazon.awssdk.services.s3.internal.handlers.SyncChecksumValidationInterceptor diff --git a/services/s3/src/test/java/software/amazon/awssdk/services/s3/checksums/ChecksumResetsOnRetryTest.java b/services/s3/src/test/java/software/amazon/awssdk/services/s3/checksums/ChecksumResetsOnRetryTest.java index 38c4ccd040b9..e3fccda697c7 100644 --- a/services/s3/src/test/java/software/amazon/awssdk/services/s3/checksums/ChecksumResetsOnRetryTest.java +++ b/services/s3/src/test/java/software/amazon/awssdk/services/s3/checksums/ChecksumResetsOnRetryTest.java @@ -24,6 +24,9 @@ import com.github.tomakehurst.wiremock.client.ResponseDefinitionBuilder; import com.github.tomakehurst.wiremock.client.WireMock; +import com.github.tomakehurst.wiremock.common.ConsoleNotifier; +import com.github.tomakehurst.wiremock.common.Slf4jNotifier; +import com.github.tomakehurst.wiremock.core.WireMockConfiguration; import com.github.tomakehurst.wiremock.junit.WireMockRule; import com.github.tomakehurst.wiremock.stubbing.Scenario; import java.net.URI; @@ -50,7 +53,8 @@ */ public class ChecksumResetsOnRetryTest { @Rule - public WireMockRule mockServer = new WireMockRule(0); + public WireMockRule mockServer = new WireMockRule(new WireMockConfiguration().port(0) + .notifier(new ConsoleNotifier(true))); private S3Client s3Client; diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 2cb3946198cf..387cf4783930 100644 --- a/test/codegen-generated-classes-test/pom.xml +++ b/test/codegen-generated-classes-test/pom.xml @@ -185,6 +185,11 @@ ${awsjavasdk.version} test + + io.reactivex.rxjava2 + rxjava + test + diff --git a/test/codegen-generated-classes-test/src/main/resources/codegen-resources/customresponsemetadata/service-2.json b/test/codegen-generated-classes-test/src/main/resources/codegen-resources/customresponsemetadata/service-2.json index ee9c551a69bf..db2252d4653d 100644 --- a/test/codegen-generated-classes-test/src/main/resources/codegen-resources/customresponsemetadata/service-2.json +++ b/test/codegen-generated-classes-test/src/main/resources/codegen-resources/customresponsemetadata/service-2.json @@ -151,6 +151,26 @@ }, "input":{"shape":"QueryParamWithoutValueInput"} }, + "StreamingInputOperationWithRequiredChecksum":{ + "name":"OperationWithRequiredChecksum", + "http":{ + "method":"POST", + "requestUri":"/2016-03-11/allTypes" + }, + "input":{"shape":"StructureWithStreamingMember"}, + "output":{"shape":"AllTypesStructure"}, + "httpChecksumRequired": true + }, + "OperationWithRequiredChecksum":{ + "name":"OperationWithRequiredChecksum", + "http":{ + "method":"POST", + "requestUri":"/2016-03-11/allTypes" + }, + "input":{"shape":"AllTypesStructure"}, + "output":{"shape":"AllTypesStructure"}, + "httpChecksumRequired": true + }, "StreamingInputOperation":{ "name":"StreamingInputOperation", "http":{ diff --git a/test/codegen-generated-classes-test/src/main/resources/codegen-resources/xml/service-2.json b/test/codegen-generated-classes-test/src/main/resources/codegen-resources/xml/service-2.json index fef93c63e449..44a7a4395de4 100644 --- a/test/codegen-generated-classes-test/src/main/resources/codegen-resources/xml/service-2.json +++ b/test/codegen-generated-classes-test/src/main/resources/codegen-resources/xml/service-2.json @@ -151,6 +151,26 @@ }, "input":{"shape":"QueryParamWithoutValueInput"} }, + "StreamingInputOperationWithRequiredChecksum":{ + "name":"OperationWithRequiredChecksum", + "http":{ + "method":"POST", + "requestUri":"/2016-03-11/allTypes" + }, + "input":{"shape":"StructureWithStreamingMember"}, + "output":{"shape":"AllTypesStructure"}, + "httpChecksumRequired": true + }, + "OperationWithRequiredChecksum":{ + "name":"OperationWithRequiredChecksum", + "http":{ + "method":"POST", + "requestUri":"/2016-03-11/allTypes" + }, + "input":{"shape":"AllTypesStructure"}, + "output":{"shape":"AllTypesStructure"}, + "httpChecksumRequired": true + }, "StreamingInputOperation":{ "name":"StreamingInputOperation", "http":{ diff --git a/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/HttpChecksumRequiredTest.java b/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/HttpChecksumRequiredTest.java new file mode 100644 index 000000000000..f481d4ebcd3f --- /dev/null +++ b/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/HttpChecksumRequiredTest.java @@ -0,0 +1,162 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.mockito.Matchers.any; + +import io.reactivex.Flowable; +import java.io.IOException; +import java.util.concurrent.CompletableFuture; +import java.util.concurrent.CompletionException; +import org.junit.Before; +import org.junit.Test; +import org.mockito.ArgumentCaptor; +import org.mockito.Mockito; +import software.amazon.awssdk.auth.credentials.AnonymousCredentialsProvider; +import software.amazon.awssdk.awscore.client.builder.AwsAsyncClientBuilder; +import software.amazon.awssdk.awscore.client.builder.AwsClientBuilder; +import software.amazon.awssdk.awscore.client.builder.AwsSyncClientBuilder; +import software.amazon.awssdk.core.async.AsyncRequestBody; +import software.amazon.awssdk.core.sync.RequestBody; +import software.amazon.awssdk.http.ExecutableHttpRequest; +import software.amazon.awssdk.http.HttpExecuteRequest; +import software.amazon.awssdk.http.HttpExecuteResponse; +import software.amazon.awssdk.http.SdkHttpClient; +import software.amazon.awssdk.http.SdkHttpFullResponse; +import software.amazon.awssdk.http.SdkHttpRequest; +import software.amazon.awssdk.http.SdkHttpResponse; +import software.amazon.awssdk.http.async.AsyncExecuteRequest; +import software.amazon.awssdk.http.async.SdkAsyncHttpClient; +import software.amazon.awssdk.regions.Region; +import software.amazon.awssdk.services.protocolrestjson.ProtocolRestJsonAsyncClient; +import software.amazon.awssdk.services.protocolrestjson.ProtocolRestJsonClient; +import software.amazon.awssdk.services.protocolrestxml.ProtocolRestXmlAsyncClient; +import software.amazon.awssdk.services.protocolrestxml.ProtocolRestXmlClient; + +/** + * Verify that the "httpChecksumRequired" C2J trait results in a valid MD5 checksum of the payload being included in the HTTP + * request. + */ +public class HttpChecksumRequiredTest { + private SdkHttpClient httpClient; + private SdkAsyncHttpClient httpAsyncClient; + + private ProtocolRestJsonClient jsonClient; + private ProtocolRestJsonAsyncClient jsonAsyncClient; + private ProtocolRestXmlClient xmlClient; + private ProtocolRestXmlAsyncClient xmlAsyncClient; + + @Before + public void setup() throws IOException { + httpClient = Mockito.mock(SdkHttpClient.class); + httpAsyncClient = Mockito.mock(SdkAsyncHttpClient.class); + + jsonClient = initializeSync(ProtocolRestJsonClient.builder()).build(); + jsonAsyncClient = initializeAsync(ProtocolRestJsonAsyncClient.builder()).build(); + xmlClient = initializeSync(ProtocolRestXmlClient.builder()).build(); + xmlAsyncClient = initializeAsync(ProtocolRestXmlAsyncClient.builder()).build(); + + SdkHttpFullResponse successfulHttpResponse = SdkHttpResponse.builder() + .statusCode(200) + .putHeader("Content-Length", "0") + .build(); + + ExecutableHttpRequest request = Mockito.mock(ExecutableHttpRequest.class); + Mockito.when(request.call()).thenReturn(HttpExecuteResponse.builder() + .response(successfulHttpResponse) + .build()); + Mockito.when(httpClient.prepareRequest(any())).thenReturn(request); + + Mockito.when(httpAsyncClient.execute(any())).thenAnswer(invocation -> { + AsyncExecuteRequest asyncExecuteRequest = invocation.getArgumentAt(0, AsyncExecuteRequest.class); + asyncExecuteRequest.responseHandler().onHeaders(successfulHttpResponse); + asyncExecuteRequest.responseHandler().onStream(Flowable.empty()); + return CompletableFuture.completedFuture(null); + }); + } + + private & AwsClientBuilder> T initializeSync(T syncClientBuilder) { + return initialize(syncClientBuilder.httpClient(httpClient)); + } + + private & AwsClientBuilder> T initializeAsync(T asyncClientBuilder) { + return initialize(asyncClientBuilder.httpClient(httpAsyncClient)); + } + + private > T initialize(T clientBuilder) { + return clientBuilder.credentialsProvider(AnonymousCredentialsProvider.create()) + .region(Region.US_WEST_2); + } + + @Test + public void syncJsonSupportsChecksumRequiredTrait() { + jsonClient.operationWithRequiredChecksum(r -> r.stringMember("foo")); + assertThat(getSyncRequest().firstMatchingHeader("Content-MD5")).hasValue("g8VCvPTPCMoU01rBlBVt9w=="); + } + + @Test + public void syncStreamingInputJsonSupportsChecksumRequiredTrait() { + jsonClient.streamingInputOperationWithRequiredChecksum(r -> {}, RequestBody.fromString("foo")); + assertThat(getSyncRequest().firstMatchingHeader("Content-MD5")).hasValue("rL0Y20zC+Fzt72VPzMSk2A=="); + } + + @Test + public void syncStreamingInputXmlSupportsChecksumRequiredTrait() { + xmlClient.streamingInputOperationWithRequiredChecksum(r -> {}, RequestBody.fromString("foo")); + assertThat(getSyncRequest().firstMatchingHeader("Content-MD5")).hasValue("rL0Y20zC+Fzt72VPzMSk2A=="); + } + + @Test + public void syncXmlSupportsChecksumRequiredTrait() { + xmlClient.operationWithRequiredChecksum(r -> r.stringMember("foo")); + assertThat(getSyncRequest().firstMatchingHeader("Content-MD5")).hasValue("vqm481l+Lv0zEvdu+duE6Q=="); + } + + @Test + public void asyncJsonSupportsChecksumRequiredTrait() { + jsonAsyncClient.operationWithRequiredChecksum(r -> r.stringMember("foo")).join(); + assertThat(getAsyncRequest().firstMatchingHeader("Content-MD5")).hasValue("g8VCvPTPCMoU01rBlBVt9w=="); + } + + @Test + public void asyncXmlSupportsChecksumRequiredTrait() { + xmlAsyncClient.operationWithRequiredChecksum(r -> r.stringMember("foo")).join(); + assertThat(getAsyncRequest().firstMatchingHeader("Content-MD5")).hasValue("vqm481l+Lv0zEvdu+duE6Q=="); + } + + @Test(expected = CompletionException.class) + public void asyncStreamingInputJsonFailsWithChecksumRequiredTrait() { + jsonAsyncClient.streamingInputOperationWithRequiredChecksum(r -> {}, AsyncRequestBody.fromString("foo")).join(); + } + + @Test(expected = CompletionException.class) + public void asyncStreamingInputXmlFailsWithChecksumRequiredTrait() { + xmlAsyncClient.streamingInputOperationWithRequiredChecksum(r -> {}, AsyncRequestBody.fromString("foo")).join(); + } + + private SdkHttpRequest getSyncRequest() { + ArgumentCaptor captor = ArgumentCaptor.forClass(HttpExecuteRequest.class); + Mockito.verify(httpClient).prepareRequest(captor.capture()); + return captor.getValue().httpRequest(); + } + + private SdkHttpRequest getAsyncRequest() { + ArgumentCaptor captor = ArgumentCaptor.forClass(AsyncExecuteRequest.class); + Mockito.verify(httpAsyncClient).execute(captor.capture()); + return captor.getValue().request(); + } +} From fc6860ccf1ca4d13c797d34c5b398382c8ade7a1 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 19 Oct 2020 18:31:33 +0000 Subject: [PATCH 033/339] Update to next snapshot version: 2.15.11-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 280 files changed, 280 insertions(+), 280 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index f681c18df8da..5a2941f0cf0c 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 5fe136e45fc5..f950006bffef 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 6e4868a4d08d..b9e026b39b39 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.15.10 + 2.15.11-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index dc1466e098f9..d17e7a4ecbe5 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index a3d480a1bc6a..33ebd3c22096 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.10 + 2.15.11-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index d400055ef9dd..18a020c261f0 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.10 + 2.15.11-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 75c2b24ab526..f61b42d46709 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.15.10 + 2.15.11-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index bcf4509433ba..83b893a2e345 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.10 + 2.15.11-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index a6d6e97ebb74..a8b11b805bdd 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.15.10 + 2.15.11-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index c721a22fa279..588b02c05b5b 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.10 + 2.15.11-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index b690dfb04a7d..17d97b519ab4 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index b84c16aad409..938f62d20202 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index e1fe495f71cc..e213d960af12 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.10 + 2.15.11-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index a0d04408576b..ce9b9b673606 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.10 + 2.15.11-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index eb92f3f49c64..b6c75004a66f 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index a9cd735a6300..1b0d37541f3b 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 0fe5f8e9e310..001bf21b856f 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.10 + 2.15.11-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 5023d138389c..fa86bde058f6 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.15.10 + 2.15.11-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 89d803894229..1835fd72fe2a 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index f4c6dba5b0f9..4d739cdf7cde 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.15.10 + 2.15.11-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 16b1a4a42b32..75a1cdf6dc0e 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.15.10 + 2.15.11-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 649ffd88beb4..9a28e12ff5b4 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.15.10 + 2.15.11-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 4bc3b19f2752..bf663d3a39a6 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 2307495218a0..046751fe50f0 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 92fe3d380070..af1f199a7391 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.10 + 2.15.11-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index b92b04b55358..c82d2456937e 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.10 + 2.15.11-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 97ff3fb8921c..64af4be7c14a 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.15.10 + 2.15.11-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index 441d27436ac9..f14e7904571c 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.15.10 + 2.15.11-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index d3c08192ad38..421b5c81c526 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.15.10 + 2.15.11-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 7cd0b72cadb8..0d95d8b99ca5 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.15.10 + 2.15.11-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index afe91890287f..22cb3f686bfe 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 63373145616e..bcb59b193a48 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.15.10 + 2.15.11-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 45ef645b0019..3ed44a367dd9 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.15.10 + 2.15.11-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index fcf951df316b..f8a66ebbca79 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.10 + 2.15.11-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 81031d4b4f58..b8953dde99bc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.10 + 2.15.11-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index cb5ddd30a36e..a88b0d830865 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.10 + 2.15.11-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 5b159e43e183..9356d5d5cf6a 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.15.10 + 2.15.11-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index f2731277ae87..e88d6943c867 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.10 + 2.15.11-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 13aa960e9b19..f2d993392717 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 09228ce791f3..fb09f1e386fb 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 89d7fbe2c475..c8b9e79dc67b 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 7637f3715cd8..bdfc916edd9b 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 30cc92e15dba..7f8e7a3752e1 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 2b49be799cd1..8437a405100e 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index d5773c40ad95..ce2458d2f547 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 7ef5e4bd0e0f..2103ba11b54e 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 1d39ba0efd2c..f1dd758ffec5 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 587049bcf9ce..672843c316d5 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 07291ee9cc21..b88a39ec76ff 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index b00064e6aa35..fefd55f29e8d 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index d1f5f6bc7c6b..8d3f0bac7015 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index aaa098f9af85..caa3d2fb03f2 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 3415867b488b..111ac429fe0f 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index d21ed8d2b0e7..aba8c32efe24 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 20f55713ec3c..f80e14640448 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 675fc7555215..39e541aca30e 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 2f4dad6d575f..b24299b15061 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index e8764de3b763..250cee93b5d5 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 321a64503a79..2751c433d21c 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 82c0641759bd..47167341f86b 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 6a07d2ff103f..df8acbab269f 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index e62bf59b9c00..0b552bdcedf7 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index f1b9c4d8a71f..34520ce384f2 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 33e10653dde0..e3054e1f62cc 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index d6abd00003d7..2d419a07da18 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 28e9368f3d1b..409fcac8c455 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index e7fc8b12ad98..2f4582019bbd 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index dc5c7a798567..7f1128c3d10d 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 82ff8246b9a9..80d029b4e35d 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 3f7f48df1d18..000db4b1af4f 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 6f5cd7b6a7aa..475799491bb7 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 7e5536a00546..835c73b71af0 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index bb4bfdc3b8fe..68436d41981d 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index b7661859eda8..a1665265f5b9 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 229048aa752d..a030d144748f 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 077ba1c42bd5..5b8f8578a0bc 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 8152f198d6b3..04daf5e33479 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 4b6eff5d2830..8d755db03537 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 5e317d6a7703..0c97e6aedd67 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 359a3f323e11..218d2d4106b2 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 79de367499cb..490654e6b11a 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index bf21641535e0..8973bfca1b77 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 95089d83e23f..d4213511e25f 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 45e067fe4d93..36644b76afc9 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 1442ce7b8293..0e2d98fedde5 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index e0cec7021ae4..be222b8b6b43 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index e3bf43b1dc51..b82b38b570cc 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 529c1c214b40..2202bb23761c 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 546ed3ae06f4..08a465860b5b 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 264f7bf143e2..288dc19fe5f2 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 944415ac21de..5ef7a4a8b742 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index f887461fc5d8..1ad205756c5b 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 928ea1377add..32e48964d443 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 6b308e1e7513..21ca57d5e879 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index b2abb076f617..c54219623e08 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index def439572cf4..dce7814d34f7 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 4d7eb5066ad8..0faf19803f11 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index bdef0643abb3..3abf08b0fcd6 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 58968810a7ac..bb19462a12c3 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 5be36ae544d4..af23a6aa0c2d 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 3cc34614812b..60a2fe868904 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 1c3731f820f5..444830ea63e8 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 1b6e5bae2344..f4594ba3a36f 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 1ea9451c3fb8..50bebff1340a 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 7f75170619cd..b2db8c677370 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 47e8648a47c6..92da0b2002ef 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 65a789b80a12..f0399b8a436b 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index f20f0f0a8285..194e881e9992 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 8cf2327ee3a2..8339ff09682b 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 4b051efc2a89..373b22fcc9ec 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 0aedff109b89..f67790cac4c4 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 153a65d11246..82183b0ec63c 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 3b8e1e0cde2a..f4705b3b62a4 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 82abee87baaa..4e791dc8ff17 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 9e1bc4afc7c7..ec3e40274b5d 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index f7ce2c9c7696..47cfabe8ed44 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index eabedb092be5..a204cb3e5141 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 45df32954f0b..eeafd4882d1a 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index d44710144afa..a2c01d6249fa 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 18dd8845ac87..1fa194c5ec15 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 40fdb2ac7133..3ed5cf40768b 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 028e521d09ee..2b5f168bf792 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 6bc1c2d01f5d..2fd59f4432a8 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index efcafaf5b093..beec9c567a0c 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 2aac3caf0f65..ce05536bb8a5 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index a2afac426367..eeedb0f15295 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 6f8dd34a2d52..a146b9dafef0 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 57e1383da700..85847e098635 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 51e4c3e00529..1e7bf65193ab 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 0e086d94ecf3..05446f167749 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index cf3bcd9ae823..bd946a75ffc9 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 81a13de7b445..a9752bf80ccb 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 09db77e78a64..d13416173151 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index b25431b05f54..b441ab89e652 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 8e56a8a97123..6d334cd85594 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 220c3e5ea083..d4ab0c1d677f 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 81350a2c203f..52ecf932a342 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 2dae06354159..aebe025e75a4 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index cbdc341df114..bded0848ac28 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 56a095c6cb5a..ad6f325090e2 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index dbfb4102ada8..3c02375c647f 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index d6ca565276b2..8e926f82092e 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 8531f5e6cb9b..c91f6cbb865e 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 15ae67a0772e..096e17918aeb 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 2a5f36efc6b4..fe04d891e939 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index c033364f7415..a33c3a657809 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 09a2434003e0..9ce091ee3806 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 9f10f23d828a..f00da8e111a9 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 887af1bd18be..51bd195df1a2 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index c7f37e54c11b..cd7886d88471 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 4223ec8c89d5..7736b06086e5 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index dbea26c16d6b..72247946001e 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index a5b3f2d9f16d..5abbc14c3731 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index d3c70c07f089..0eb12621f174 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 3a4424f2c73a..ced4e5f1f331 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 8300c9de7f12..3dc43a128aa7 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 9197bff236ee..c293100d566f 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index d4eb11581cad..52db38df058c 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index da03d456460d..d665d3f5f2e8 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index e14a6c1b2f8a..77731efc2236 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 3c2419c59941..4f7d6614853f 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 4db568547047..015b9b7fb65d 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 91c46d1eec6e..a9d6e6fa590c 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 5d34f2b872ea..4142882bb013 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index e00bd47a6e9e..30c0f8bd5d47 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index f8376d1c714d..7de597a67c37 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 02276d972955..269b455ec8cd 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index a5425ed6a9aa..7ca8dbba68ba 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index bd0ff0dc0cb3..5a174b985cbf 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 07cdc785a4a6..58c1aff315b4 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 6a6f3645df22..a98803489604 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index a8dc1bf7c292..19529004029f 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 6197ddec80b7..94a74255ba58 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index c6553ed89947..aed3cb24f629 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 67bd7cd15edd..78bdfe55e27c 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 7a95f5990b68..b88a2f886df3 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 37ba6b47b717..7244fa95ab07 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index bc227db8ad99..e273b9041ccb 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index deed7a228603..9bccca88d54c 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index d3cf3ec1e04a..e85b79d82e3e 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 53f7f682fb69..f45da0848289 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index c62fd50cbab9..68be43754014 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 98b4696fe135..be4581c8e3fb 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index b51f7a1f4fed..145e9236a64e 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index c561c1983cfd..153edf798ca6 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index d1909af0524d..279e1d9483d0 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index d7b20e388ab2..0f59b305fedc 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index a4c474c7ff04..670c5aef8a91 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 449948b527cb..5ad788a7b0fd 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 7d390052c519..5ed0bee94e42 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 00d3dc423f7a..5713ecee3d85 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 50e0edf923d0..63e0b3d28f67 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 6c1842b1df6d..3c5b7403143b 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 40d445fffefe..ae7412452e59 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 84269fbeb3a7..824db9b0b1e0 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 7c9d45d7b691..d3c428a8083a 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index db1a4b701d99..613e9f461109 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 88ba23680bee..f47e856cc8bb 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 1cd0be637a82..eb81f1a6381c 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 92596a1e12b9..1e7fe4e67608 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 0d3be599eefb..0c3e5217bb21 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 9dd48b43aba5..5f248eb16ced 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 3e19aed96de3..ce0e21b6c1ff 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index cb83ed19d1d3..34640b92498e 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 8cb1e3f5909c..1b4e391eb58a 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index ebb45e6f77c7..625f6f3795f8 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.10 + 2.15.11-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 9b00853e9593..bc4f1d0b4763 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 27dfaff1eb97..ae3348bbd8c9 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 388504afaedb..3a26076db631 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 79dd167e8ff3..189e00ef4cca 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 84a0239b11ca..0f7aa453016d 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 827fd30e9ee4..704114aede15 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 14782e357fb4..983caef9265b 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index ed99b3a0a725..99f7c43cd711 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 1775d6a87bbe..2154984a367a 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 460a857ddd2d..52e1909a27c1 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 6085ba00df90..ad4607b3ebe2 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 462d0ef7637d..87f6fa65196c 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 1444c1363863..6dccebc45308 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 43a947252d3a..45cef3045fbc 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 3c4d43553375..cb32b626cd53 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 79074bb696f8..f324df0a55bd 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 424eb5647b79..18e3f3225114 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index aab9dae757ac..95056245c14e 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index f56376d0d85e..61edc3484fe7 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 725533bd1587..51d6c60097d3 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 363589eaa482..7dc5b5e37d1e 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 911dc1e37b9d..af7c7fe598ac 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 12d2b5426d8b..2e70d5fc63e0 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 054ac77f795c..6b40bbfbdcb3 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 17001c818c6e..6d5080a3c367 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index e7cbb3500543..0c42b6f82eb6 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 7a4971dd3a27..ad009d127011 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index b380450b38a8..d7d6f427a015 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 61358ba421a4..05efa7116e91 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 70baf1e4286e..a295c846a3ff 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 58648f17185c..7d3205ec33af 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 342ed7a4cfa5..eb961aae8d44 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 34a259c9e2e4..aae48a24d3cc 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 324f9400ba27..4e0149390902 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index cafc04d2e682..ee8066cb978e 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 50f86a07d42e..a94f607c7b4c 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index d7d539f4edb7..581c5d829c05 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index cba5145c0fee..8142aa7925ea 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 4d6a1f68fcfb..ac98ba261bd8 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 22b36678faa0..20fd515374e3 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index ccac3494d2bc..868450347be6 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 305a4bd347c0..546c182ebbba 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 2a913c18eccf..c91d8454f431 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 0569b61bc574..7149b7bcb634 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 23da0770dc22..d04770be0bb3 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index c2afaced9fb7..b276ffc6ede0 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index aa28f982de51..6958f9357a2a 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 0d9711881208..c32f1bf4eac7 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 6aeba00ed1b7..4754eeb63c80 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index bf70b73d31be..ef17c091747d 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 2d69239d6d01..f2e6e1fefa53 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 595ea7ffbef1..77aee3ad4dd7 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 546e1272f372..048e0fff648c 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 08e850b7bc4c..aac0c77eb1b6 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 288291ac798a..5a6f30c2f928 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index a0f724b15e5b..a83d1a0f27bb 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 6b84f78946bb..b18691dec4ca 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 21e59ff50194..85b2fac86b8b 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index f16e79c72894..5cee47c00446 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 5d8f6ae9988d..09327d5014ab 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 6bc3c5f1a584..0b5454467c3e 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 9d6c0f4f50ba..a1579dc2b2fc 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 9bd3edaa28b0..f96d97158ab5 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.10 + 2.15.11-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 719c3bd6b3b5..0a9c4c10b390 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.15.10 + 2.15.11-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index d9a24af17a17..abb471f3f419 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.15.10 + 2.15.11-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 1d147a06c0e0..7f8b940572ee 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.15.10 + 2.15.11-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index d468a8d7e891..3dc0af678dae 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.15.10 + 2.15.11-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index a05dba2d4ec0..f187efdcb18d 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.15.10 + 2.15.11-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index f62e2e71f2ec..d20a0f0acac1 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.10 + 2.15.11-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index dabf36db0259..13c80429212d 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.15.10 + 2.15.11-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 8067d75e4c0d..1bd2650c8984 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.15.10 + 2.15.11-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 9e75c8edef78..d4baa7b2fb93 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.15.10 + 2.15.11-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 047a8a737aa1..13b3fd504c47 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.15.10 + 2.15.11-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index e67f4f57dfbc..fc9b06b25071 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.10 + 2.15.11-SNAPSHOT 4.0.0 From 506159385e865c15bab68debfe2b229bfd9f03a5 Mon Sep 17 00:00:00 2001 From: Ben Maizels Date: Mon, 19 Oct 2020 10:04:54 -0700 Subject: [PATCH 034/339] Fix for handling special characters in attribute names with WRITE_IF_NOT_EXISTS update behavior --- .../bugfix-AmazonDynamoDBEnhancedClient-6338e31.json | 5 +++++ .../dynamodb/internal/operations/UpdateItemOperation.java | 3 ++- .../functionaltests/models/RecordWithUpdateBehaviors.java | 2 ++ 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/bugfix-AmazonDynamoDBEnhancedClient-6338e31.json diff --git a/.changes/next-release/bugfix-AmazonDynamoDBEnhancedClient-6338e31.json b/.changes/next-release/bugfix-AmazonDynamoDBEnhancedClient-6338e31.json new file mode 100644 index 000000000000..5a94bf3c3462 --- /dev/null +++ b/.changes/next-release/bugfix-AmazonDynamoDBEnhancedClient-6338e31.json @@ -0,0 +1,5 @@ +{ + "type": "bugfix", + "category": "Amazon DynamoDB Enhanced Client", + "description": "Fix for handling special characters in attribute names with WRITE_IF_NOT_EXISTS update behavior" +} diff --git a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/operations/UpdateItemOperation.java b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/operations/UpdateItemOperation.java index 3e181b78ae3e..1e34cb470a29 100644 --- a/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/operations/UpdateItemOperation.java +++ b/services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/internal/operations/UpdateItemOperation.java @@ -59,7 +59,8 @@ public class UpdateItemOperation key -> "#AMZN_MAPPED_" + EnhancedClientUtils.cleanAttributeName(key); private static final Function CONDITIONAL_UPDATE_MAPPER = - key -> "if_not_exists(" + key + ", " + EXPRESSION_VALUE_KEY_MAPPER.apply(key) + ")"; + key -> "if_not_exists(" + EXPRESSION_KEY_MAPPER.apply(key) + ", " + + EXPRESSION_VALUE_KEY_MAPPER.apply(key) + ")"; private final UpdateItemEnhancedRequest request; diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/models/RecordWithUpdateBehaviors.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/models/RecordWithUpdateBehaviors.java index 8dbcbdad829e..cc6edf4b4a2c 100644 --- a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/models/RecordWithUpdateBehaviors.java +++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/models/RecordWithUpdateBehaviors.java @@ -17,6 +17,7 @@ import java.time.Instant; import software.amazon.awssdk.enhanced.dynamodb.extensions.annotations.DynamoDbVersionAttribute; +import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbAttribute; import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbBean; import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbPartitionKey; import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbUpdateBehavior; @@ -41,6 +42,7 @@ public void setId(String id) { } @DynamoDbUpdateBehavior(WRITE_IF_NOT_EXISTS) + @DynamoDbAttribute("created-on") // Forces a test on attribute name cleaning public Instant getCreatedOn() { return createdOn; } From a8b87359d3542294fb9753d89288a6c38b3a4882 Mon Sep 17 00:00:00 2001 From: debora-ito Date: Fri, 16 Oct 2020 18:13:29 -0700 Subject: [PATCH 035/339] Add entry for IMDS v2 upgrade --- .changes/2.10.21.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.changes/2.10.21.json b/.changes/2.10.21.json index 440fa04fbf2f..b4c55737c270 100644 --- a/.changes/2.10.21.json +++ b/.changes/2.10.21.json @@ -86,6 +86,11 @@ "type": "feature", "category": "AWS CodeCommit", "description": "This release adds support for creating pull request approval rules and pull request approval rule templates in AWS CodeCommit. This allows developers to block merges of pull requests, contingent on the approval rules being satisfiied." + }, + { + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "description": "Upgrades to Instance Metadata Service version 2 (IMDS v2). With IMDS v2, a session token is used to make requests for EC2 instance metadata and credentials." } ] -} \ No newline at end of file +} From a1dafacb3d011c089c976d69264e0ccdec307f3c Mon Sep 17 00:00:00 2001 From: Anna-Karin Salander Date: Thu, 15 Oct 2020 12:14:00 -0700 Subject: [PATCH 036/339] Refactors S3EndpointUtils into a set of resolvers for endpoints. --- .../awssdk/services/s3/S3Utilities.java | 20 +- .../services/s3/internal/S3EndpointUtils.java | 356 --------- .../S3AccessPointEndpointResolver.java | 212 ++++++ .../endpoints/S3BucketEndpointResolver.java | 106 +++ .../endpoints/S3EndpointResolver.java | 31 + .../endpoints/S3EndpointResolverContext.java | 143 ++++ .../endpoints/S3EndpointResolverFactory.java | 38 + .../internal/endpoints/S3EndpointUtils.java | 146 ++++ .../handlers/EndpointAddressInterceptor.java | 29 +- .../{utils => }/S3EndpointResolutionTest.java | 2 +- .../S3AccessPointEndpointResolverTest.java | 563 ++++++++++++++ .../S3BucketEndpointResolverTest.java | 159 ++++ .../S3EndpointResolverContextTest.java | 59 ++ .../S3EndpointResolverFactoryTest.java | 47 ++ .../endpoints/S3EndpointUtilsTest.java | 124 +++ .../EndpointAddressInterceptorTest.java | 710 ++---------------- .../s3/utils/InterceptorTestUtils.java | 24 +- 17 files changed, 1725 insertions(+), 1044 deletions(-) delete mode 100644 services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/S3EndpointUtils.java create mode 100644 services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3AccessPointEndpointResolver.java create mode 100644 services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3BucketEndpointResolver.java create mode 100644 services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointResolver.java create mode 100644 services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointResolverContext.java create mode 100644 services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointResolverFactory.java create mode 100644 services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointUtils.java rename services/s3/src/test/java/software/amazon/awssdk/services/s3/{utils => }/S3EndpointResolutionTest.java (99%) create mode 100644 services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/endpoints/S3AccessPointEndpointResolverTest.java create mode 100644 services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/endpoints/S3BucketEndpointResolverTest.java create mode 100644 services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointResolverContextTest.java create mode 100644 services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointResolverFactoryTest.java create mode 100644 services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointUtilsTest.java diff --git a/services/s3/src/main/java/software/amazon/awssdk/services/s3/S3Utilities.java b/services/s3/src/main/java/software/amazon/awssdk/services/s3/S3Utilities.java index 72c4b6c98589..f7aaa37a0981 100644 --- a/services/s3/src/main/java/software/amazon/awssdk/services/s3/S3Utilities.java +++ b/services/s3/src/main/java/software/amazon/awssdk/services/s3/S3Utilities.java @@ -36,7 +36,8 @@ import software.amazon.awssdk.protocols.core.PathMarshaller; import software.amazon.awssdk.protocols.core.ProtocolUtils; import software.amazon.awssdk.regions.Region; -import software.amazon.awssdk.services.s3.internal.S3EndpointUtils; +import software.amazon.awssdk.services.s3.internal.endpoints.S3EndpointResolverContext; +import software.amazon.awssdk.services.s3.internal.endpoints.S3EndpointResolverFactory; import software.amazon.awssdk.services.s3.model.GetObjectRequest; import software.amazon.awssdk.services.s3.model.GetUrlRequest; import software.amazon.awssdk.utils.Validate; @@ -156,12 +157,17 @@ public URL getUrl(GetUrlRequest getUrlRequest) { .key(getUrlRequest.key()) .build(); - SdkHttpRequest httpRequest = S3EndpointUtils.applyEndpointConfiguration(marshalledRequest, - getObjectRequest, - resolvedRegion, - s3Configuration, - endpointOverridden) - .sdkHttpRequest(); + S3EndpointResolverContext resolverContext = S3EndpointResolverContext.builder() + .request(marshalledRequest) + .originalRequest(getObjectRequest) + .region(resolvedRegion) + .endpointOverridden(endpointOverridden) + .serviceConfiguration(s3Configuration) + .build(); + + SdkHttpRequest httpRequest = S3EndpointResolverFactory.getEndpointResolver(getObjectRequest.bucket()) + .applyEndpointConfiguration(resolverContext) + .sdkHttpRequest(); try { return httpRequest.getUri().toURL(); diff --git a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/S3EndpointUtils.java b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/S3EndpointUtils.java deleted file mode 100644 index 444546f2d1f5..000000000000 --- a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/S3EndpointUtils.java +++ /dev/null @@ -1,356 +0,0 @@ -/* - * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"). - * You may not use this file except in compliance with the License. - * A copy of the License is located at - * - * http://aws.amazon.com/apache2.0 - * - * or in the "license" file accompanying this file. This file is distributed - * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either - * express or implied. See the License for the specific language governing - * permissions and limitations under the License. - */ - -package software.amazon.awssdk.services.s3.internal; - -import static software.amazon.awssdk.utils.FunctionalUtils.invokeSafely; - -import java.net.URI; -import java.net.URISyntaxException; -import java.util.Arrays; -import java.util.List; -import software.amazon.awssdk.annotations.SdkInternalApi; -import software.amazon.awssdk.arns.Arn; -import software.amazon.awssdk.core.SdkRequest; -import software.amazon.awssdk.http.SdkHttpRequest; -import software.amazon.awssdk.regions.PartitionMetadata; -import software.amazon.awssdk.regions.Region; -import software.amazon.awssdk.regions.RegionMetadata; -import software.amazon.awssdk.services.s3.S3Configuration; -import software.amazon.awssdk.services.s3.internal.resource.S3AccessPointBuilder; -import software.amazon.awssdk.services.s3.internal.resource.S3AccessPointResource; -import software.amazon.awssdk.services.s3.internal.resource.S3ArnConverter; -import software.amazon.awssdk.services.s3.internal.resource.S3OutpostAccessPointBuilder; -import software.amazon.awssdk.services.s3.internal.resource.S3OutpostResource; -import software.amazon.awssdk.services.s3.internal.resource.S3Resource; -import software.amazon.awssdk.services.s3.internal.resource.S3ResourceType; -import software.amazon.awssdk.services.s3.model.CreateBucketRequest; -import software.amazon.awssdk.services.s3.model.DeleteBucketRequest; -import software.amazon.awssdk.services.s3.model.ListBucketsRequest; -import software.amazon.awssdk.utils.Validate; - -/** - * Utilities for working with Amazon S3 bucket names, such as validation and - * checked to see if they are compatible with DNS addressing. - */ -@SdkInternalApi -public final class S3EndpointUtils { - - private static final String S3_OUTPOSTS_NAME = "s3-outposts"; - private static final List> ACCELERATE_DISABLED_OPERATIONS = Arrays.asList( - ListBucketsRequest.class, CreateBucketRequest.class, DeleteBucketRequest.class); - - private S3EndpointUtils() { - } - - /** - * Returns a new instance of the given {@link SdkHttpRequest} by applying any endpoint changes based on - * the given {@link S3Configuration} options. - */ - public static ConfiguredS3SdkHttpRequest applyEndpointConfiguration(SdkHttpRequest request, - SdkRequest originalRequest, - Region region, - S3Configuration serviceConfiguration, - boolean endpointOverridden) { - String bucketName = originalRequest.getValueForField("Bucket", String.class).orElse(null); - String key = originalRequest.getValueForField("Key", String.class).orElse(null); - - if (bucketName != null && isArn(bucketName)) { - return applyEndpointConfigurationForAccessPointArn(request, region, endpointOverridden, - serviceConfiguration, bucketName, key); - } - - SdkHttpRequest.Builder mutableRequest = request.toBuilder(); - - URI endpoint = resolveEndpoint(request, originalRequest, region, serviceConfiguration); - mutableRequest.uri(endpoint); - - if (serviceConfiguration == null || !serviceConfiguration.pathStyleAccessEnabled()) { - if (bucketName != null) { - if (BucketUtils.isVirtualAddressingCompatibleBucketName(bucketName, false)) { - changeToDnsEndpoint(mutableRequest, bucketName); - } - } - } - - return ConfiguredS3SdkHttpRequest.builder() - .sdkHttpRequest(mutableRequest.build()) - .build(); - } - - private static ConfiguredS3SdkHttpRequest applyEndpointConfigurationForAccessPointArn( - SdkHttpRequest request, - Region region, - boolean endpointOverridden, - S3Configuration serviceConfiguration, - String bucketName, - String key) { - - Arn resourceArn = Arn.fromString(bucketName); - S3Resource s3Resource = S3ArnConverter.create().convertArn(resourceArn); - - if (S3ResourceType.fromValue(s3Resource.type()) != S3ResourceType.ACCESS_POINT) { - throw new IllegalArgumentException("An ARN was passed as a bucket parameter to an S3 operation, " - + "however it does not appear to be a valid S3 access point ARN."); - } - - PartitionMetadata clientPartitionMetadata = PartitionMetadata.of(region); - - String arnRegion = validateConfiguration(region, endpointOverridden, serviceConfiguration, s3Resource); - - S3AccessPointResource s3EndpointResource = - Validate.isInstanceOf(S3AccessPointResource.class, s3Resource, - "An ARN was passed as a bucket parameter to an S3 operation, however it does not " - + "appear to be a valid S3 access point ARN."); - - URI accessPointUri = getUriForAccessPointResource(request, - serviceConfiguration, - arnRegion, - clientPartitionMetadata, - s3EndpointResource, region); - SdkHttpRequest httpRequest = request.toBuilder() - .protocol(accessPointUri.getScheme()) - .host(accessPointUri.getHost()) - .port(accessPointUri.getPort()) - .encodedPath(key) - .build(); - - String signingServiceModification = s3EndpointResource.parentS3Resource() - .filter(r -> r instanceof S3OutpostResource) - .map(ignore -> S3_OUTPOSTS_NAME) - .orElse(null); - - return ConfiguredS3SdkHttpRequest.builder() - .sdkHttpRequest(httpRequest) - .signingRegionModification(Region.of(arnRegion)) - .signingServiceModification(signingServiceModification) - .build(); - } - - private static URI getUriForAccessPointResource(SdkHttpRequest request, - S3Configuration serviceConfiguration, - String arnRegion, - PartitionMetadata clientPartitionMetadata, - S3AccessPointResource s3EndpointResource, - Region region) { - - // DualstackEnabled considered false by default - boolean dualstackEnabled = serviceConfiguration != null && serviceConfiguration.dualstackEnabled(); - boolean fipsRegionProvided = isFipsRegionProvided(region.toString(), arnRegion, - serviceConfiguration != null - && serviceConfiguration.useArnRegionEnabled()); - - String accountId = s3EndpointResource.accountId().orElseThrow(() -> new IllegalArgumentException( - "An S3 access point ARN must have an account ID")); - String accessPointName = s3EndpointResource.accessPointName(); - - if (s3EndpointResource.parentS3Resource().filter(r -> r instanceof S3OutpostResource).isPresent()) { - - if (dualstackEnabled) { - throw new IllegalArgumentException("An Outpost Access Point ARN cannot be passed as a bucket parameter to an S3 " - + "operation if the S3 client has been configured with dualstack"); - } - - if (isFipsRegion(region.toString())) { - throw new IllegalArgumentException("An access point ARN cannot be passed as a bucket parameter to an S3" - + " operation if the S3 client has been configured with a FIPS" - + " enabled region."); - } - - S3OutpostResource parentResource = (S3OutpostResource) s3EndpointResource.parentS3Resource().get(); - return S3OutpostAccessPointBuilder.create() - .accountId(accountId) - .outpostId(parentResource.outpostId()) - .region(arnRegion) - .accessPointName(accessPointName) - .protocol(request.protocol()) - .domain(clientPartitionMetadata.dnsSuffix()) - .toUri(); - } - return S3AccessPointBuilder.create() - .accessPointName(accessPointName) - .accountId(accountId) - .fipsEnabled(fipsRegionProvided) - .region(removeFipsIfNeeded(arnRegion)) - .protocol(request.protocol()) - .domain(clientPartitionMetadata.dnsSuffix()) - .dualstackEnabled(dualstackEnabled) - .toUri(); - } - - private static String validateConfiguration(Region region, - boolean endpointOverridden, - S3Configuration serviceConfiguration, - S3Resource s3Resource) { - String arnRegion = s3Resource.region().orElseThrow(() -> new IllegalArgumentException( - "An S3 access point ARN must have a region")); - - if (serviceConfiguration != null && serviceConfiguration.accelerateModeEnabled()) { - throw new IllegalArgumentException("An access point ARN cannot be passed as a bucket parameter to an S3 " - + "operation if the S3 client has been configured with accelerate mode" - + " enabled."); - } - - if (serviceConfiguration != null && serviceConfiguration.pathStyleAccessEnabled()) { - throw new IllegalArgumentException("An access point ARN cannot be passed as a bucket parameter to an S3 " - + "operation if the S3 client has been configured with path style " - + "addressing enabled."); - } - - if (endpointOverridden) { - throw new IllegalArgumentException("An access point ARN cannot be passed as a bucket parameter to an S3" - + " operation if the S3 client has been configured with an endpoint " - + "override."); - } - - String trimmedArnRegion = removeFipsIfNeeded(arnRegion); - if (serviceConfiguration == null || !serviceConfiguration.useArnRegionEnabled()) { - if (!removeFipsIfNeeded(region.id()).equals(trimmedArnRegion)) { - throw new IllegalArgumentException( - String.format("The region field of the ARN being passed as a bucket parameter to an S3 operation " - + "does not match the region the client was configured with. To enable this " - + "behavior and prevent this exception set 'useArnRegionEnabled' to true in the " - + "configuration when building the S3 client. Provided region: '%s'; client region:" - + " '%s'.", arnRegion, region)); - } - } - - PartitionMetadata clientPartitionMetadata = PartitionMetadata.of(region); - String clientPartition = clientPartitionMetadata.id(); - - if (clientPartition == null || clientPartition.isEmpty() || !s3Resource.partition().isPresent() - || !clientPartition.equals(s3Resource.partition().get())) { - throw new IllegalArgumentException( - String.format("The partition field of the ARN being passed as a bucket parameter to an S3 operation " - + "does not match the partition the S3 client has been configured with. Provided " - + "partition: '%s'; client partition: '%s'.", s3Resource.partition().orElse(""), - clientPartition)); - } - return arnRegion; - } - - private static String removeFipsIfNeeded(String region) { - if (region.startsWith("fips-")) { - return region.replace("fips-", ""); - } - - if (region.endsWith("-fips")) { - return region.replace("-fips", ""); - } - return region; - } - - /** - * Returns whether a FIPS pseudo region is provided. - */ - private static boolean isFipsRegionProvided(String clientRegion, String arnRegion, boolean useArnRegion) { - if (useArnRegion) { - return isFipsRegion(arnRegion); - } - - return isFipsRegion(clientRegion); - } - - /** - * Determine which endpoint to use based on region and {@link S3Configuration}. Will either be a traditional - * S3 endpoint (i.e. s3.us-east-1.amazonaws.com), the global S3 accelerate endpoint (i.e. s3-accelerate.amazonaws.com) or - * a regional dualstack endpoint for IPV6 (i.e. s3.dualstack.us-east-1.amazonaws.com). - */ - private static URI resolveEndpoint(SdkHttpRequest request, - SdkRequest originalRequest, - Region region, - S3Configuration serviceConfiguration) { - - String protocol = request.protocol(); - - RegionMetadata regionMetadata = RegionMetadata.of(region); - - if (isAccelerateEnabled(serviceConfiguration) && isAccelerateSupported(originalRequest)) { - return accelerateEndpoint(serviceConfiguration, regionMetadata, protocol); - } - - if (serviceConfiguration != null && serviceConfiguration.dualstackEnabled()) { - return dualstackEndpoint(regionMetadata, protocol); - } - - return invokeSafely(() -> new URI(request.protocol(), null, request.host(), request.port(), null, null, null)); - } - - /** - * Changes from path style addressing (which the marshallers produce by default, to DNS style or virtual style addressing - * where the bucket name is prepended to the host. DNS style addressing is preferred due to the better load balancing - * qualities it provides, path style is an option mainly for proxy based situations and alternative S3 implementations. - * - * @param mutableRequest Marshalled HTTP request we are modifying. - * @param bucketName Bucket name for this particular operation. - */ - private static void changeToDnsEndpoint(SdkHttpRequest.Builder mutableRequest, String bucketName) { - if (mutableRequest.host().startsWith("s3")) { - String newHost = mutableRequest.host().replaceFirst("s3", bucketName + "." + "s3"); - String newPath = mutableRequest.encodedPath().replaceFirst("/" + bucketName, ""); - - mutableRequest.host(newHost).encodedPath(newPath); - } - } - - /** - * @return dual stack endpoint from given protocol and region metadata - */ - private static URI dualstackEndpoint(RegionMetadata metadata, String protocol) { - String serviceEndpoint = String.format("%s.%s.%s.%s", "s3", "dualstack", metadata.id(), metadata.domain()); - return toUri(protocol, serviceEndpoint); - } - - /** - * @return True if accelerate mode is enabled per {@link S3Configuration}, false if not. - */ - private static boolean isAccelerateEnabled(S3Configuration serviceConfiguration) { - return serviceConfiguration != null && serviceConfiguration.accelerateModeEnabled(); - } - - /** - * @param originalRequest Request object to identify the operation. - * @return True if accelerate is supported for the given operation, false if not. - */ - private static boolean isAccelerateSupported(SdkRequest originalRequest) { - return !ACCELERATE_DISABLED_OPERATIONS.contains(originalRequest.getClass()); - } - - /** - * @return The endpoint for an S3 accelerate enabled operation. S3 accelerate has a single global endpoint. - */ - private static URI accelerateEndpoint(S3Configuration serviceConfiguration, RegionMetadata metadata, String protocol) { - if (serviceConfiguration.dualstackEnabled()) { - return toUri(protocol, "s3-accelerate.dualstack." + metadata.domain()); - } - return toUri(protocol, "s3-accelerate." + metadata.domain()); - } - - private static URI toUri(String protocol, String endpoint) { - try { - return new URI(String.format("%s://%s", protocol, endpoint)); - } catch (URISyntaxException e) { - throw new IllegalArgumentException(e); - } - } - - private static boolean isArn(String s) { - return s.startsWith("arn:"); - } - - private static boolean isFipsRegion(String region) { - return region.startsWith("fips-") || region.endsWith("-fips"); - } -} diff --git a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3AccessPointEndpointResolver.java b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3AccessPointEndpointResolver.java new file mode 100644 index 000000000000..fd6edb22ecde --- /dev/null +++ b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3AccessPointEndpointResolver.java @@ -0,0 +1,212 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.s3.internal.endpoints; + +import static software.amazon.awssdk.services.s3.internal.endpoints.S3EndpointUtils.isAccelerateEnabled; +import static software.amazon.awssdk.services.s3.internal.endpoints.S3EndpointUtils.isArnRegionEnabled; +import static software.amazon.awssdk.services.s3.internal.endpoints.S3EndpointUtils.isDualstackEnabled; +import static software.amazon.awssdk.services.s3.internal.endpoints.S3EndpointUtils.isFipsRegion; +import static software.amazon.awssdk.services.s3.internal.endpoints.S3EndpointUtils.isFipsRegionProvided; +import static software.amazon.awssdk.services.s3.internal.endpoints.S3EndpointUtils.isPathStyleAccessEnabled; +import static software.amazon.awssdk.services.s3.internal.endpoints.S3EndpointUtils.removeFipsIfNeeded; + +import java.net.URI; +import software.amazon.awssdk.annotations.SdkInternalApi; +import software.amazon.awssdk.arns.Arn; +import software.amazon.awssdk.http.SdkHttpRequest; +import software.amazon.awssdk.regions.PartitionMetadata; +import software.amazon.awssdk.regions.Region; +import software.amazon.awssdk.services.s3.S3Configuration; +import software.amazon.awssdk.services.s3.internal.ConfiguredS3SdkHttpRequest; +import software.amazon.awssdk.services.s3.internal.resource.S3AccessPointBuilder; +import software.amazon.awssdk.services.s3.internal.resource.S3AccessPointResource; +import software.amazon.awssdk.services.s3.internal.resource.S3ArnConverter; +import software.amazon.awssdk.services.s3.internal.resource.S3OutpostAccessPointBuilder; +import software.amazon.awssdk.services.s3.internal.resource.S3OutpostResource; +import software.amazon.awssdk.services.s3.internal.resource.S3Resource; +import software.amazon.awssdk.services.s3.internal.resource.S3ResourceType; +import software.amazon.awssdk.utils.Validate; + +/** + * Returns a new configured HTTP request with a resolved access point endpoint and signing overrides. + */ +@SdkInternalApi +public final class S3AccessPointEndpointResolver implements S3EndpointResolver { + + private static final String S3_OUTPOSTS_NAME = "s3-outposts"; + + private S3AccessPointEndpointResolver() { + } + + public static S3AccessPointEndpointResolver create() { + return new S3AccessPointEndpointResolver(); + } + + @Override + public ConfiguredS3SdkHttpRequest applyEndpointConfiguration(S3EndpointResolverContext context) { + + S3Resource s3Resource = S3ArnConverter.create().convertArn(Arn.fromString(getBucketName(context))); + if (S3ResourceType.fromValue(s3Resource.type()) != S3ResourceType.ACCESS_POINT) { + throw new IllegalArgumentException("An ARN was passed as a bucket parameter to an S3 operation, " + + "however it does not appear to be a valid S3 access point ARN."); + } + + Region region = context.region(); + PartitionMetadata clientPartitionMetadata = PartitionMetadata.of(region); + + String arnRegion = validateConfiguration(context, s3Resource); + + S3AccessPointResource s3EndpointResource = Validate.isInstanceOf(S3AccessPointResource.class, s3Resource, + "An ARN was passed as a bucket parameter to an S3 operation, however it does not " + + "appear to be a valid S3 access point ARN."); + + URI accessPointUri = getUriForAccessPointResource(context, arnRegion, clientPartitionMetadata, s3EndpointResource); + String key = context.originalRequest().getValueForField("Key", String.class).orElse(null); + SdkHttpRequest httpRequest = context.request().toBuilder() + .protocol(accessPointUri.getScheme()) + .host(accessPointUri.getHost()) + .port(accessPointUri.getPort()) + .encodedPath(key) + .build(); + + String signingServiceModification = s3EndpointResource.parentS3Resource() + .filter(r -> r instanceof S3OutpostResource) + .map(ignore -> S3_OUTPOSTS_NAME) + .orElse(null); + + return ConfiguredS3SdkHttpRequest.builder() + .sdkHttpRequest(httpRequest) + .signingRegionModification(Region.of(arnRegion)) + .signingServiceModification(signingServiceModification) + .build(); + } + + private String validateConfiguration(S3EndpointResolverContext context, S3Resource s3Resource) { + Region region = context.region(); + String arnRegion = s3Resource.region().orElseThrow(() -> new IllegalArgumentException( + "An S3 access point ARN must have a region")); + + + S3Configuration serviceConfiguration = context.serviceConfiguration(); + if (isAccelerateEnabled(serviceConfiguration)) { + throw new IllegalArgumentException("An access point ARN cannot be passed as a bucket parameter to an S3 " + + "operation if the S3 client has been configured with accelerate mode" + + " enabled."); + } + + if (isPathStyleAccessEnabled(serviceConfiguration)) { + throw new IllegalArgumentException("An access point ARN cannot be passed as a bucket parameter to an S3 " + + "operation if the S3 client has been configured with path style " + + "addressing enabled."); + } + + if (context.endpointOverridden()) { + throw new IllegalArgumentException("An access point ARN cannot be passed as a bucket parameter to an S3" + + " operation if the S3 client has been configured with an endpoint " + + "override."); + } + + if (!isArnRegionEnabled(serviceConfiguration) && clientRegionDiffersFromArnRegion(region, arnRegion)) { + throw new IllegalArgumentException( + String.format("The region field of the ARN being passed as a bucket parameter to an S3 operation " + + "does not match the region the client was configured with. To enable this " + + "behavior and prevent this exception set 'useArnRegionEnabled' to true in the " + + "configuration when building the S3 client. Provided region: '%s'; client region:" + + " '%s'.", arnRegion, region)); + } + + String clientPartition = PartitionMetadata.of(region).id(); + + if (illegalPartitionConfiguration(s3Resource, clientPartition)) { + throw new IllegalArgumentException( + String.format("The partition field of the ARN being passed as a bucket parameter to an S3 operation " + + "does not match the partition the S3 client has been configured with. Provided " + + "partition: '%s'; client partition: '%s'.", s3Resource.partition().orElse(""), + clientPartition)); + } + return arnRegion; + } + + private boolean clientRegionDiffersFromArnRegion(Region clientRegion, String arnRegion) { + return !removeFipsIfNeeded(clientRegion.id()).equals(removeFipsIfNeeded(arnRegion)); + } + + private boolean illegalPartitionConfiguration(S3Resource s3Resource, String clientPartition) { + return clientPartition == null || clientPartition.isEmpty() || !s3Resource.partition().isPresent() + || !clientPartition.equals(s3Resource.partition().get()); + } + + private String getBucketName(S3EndpointResolverContext context) { + return context.originalRequest().getValueForField("Bucket", String.class).orElseThrow( + () -> new IllegalArgumentException("Bucket name cannot be empty when parsing access points.")); + } + + private URI getUriForAccessPointResource(S3EndpointResolverContext context, String arnRegion, + PartitionMetadata clientPartitionMetadata, + S3AccessPointResource s3EndpointResource) { + + boolean dualstackEnabled = isDualstackEnabled(context.serviceConfiguration()); + boolean fipsRegionProvided = isFipsRegionProvided(context.region().toString(), arnRegion, + isArnRegionEnabled(context.serviceConfiguration())); + + String accountId = s3EndpointResource.accountId().orElseThrow(() -> new IllegalArgumentException( + "An S3 access point ARN must have an account ID")); + String accessPointName = s3EndpointResource.accessPointName(); + + if (isOutpostAccessPoint(s3EndpointResource)) { + return getOutpostAccessPointUri(context, arnRegion, clientPartitionMetadata, s3EndpointResource); + } + + return S3AccessPointBuilder.create() + .accessPointName(accessPointName) + .accountId(accountId) + .fipsEnabled(fipsRegionProvided) + .region(removeFipsIfNeeded(arnRegion)) + .protocol(context.request().protocol()) + .domain(clientPartitionMetadata.dnsSuffix()) + .dualstackEnabled(dualstackEnabled) + .toUri(); + } + + private boolean isOutpostAccessPoint(S3AccessPointResource s3EndpointResource) { + return s3EndpointResource.parentS3Resource().filter(r -> r instanceof S3OutpostResource).isPresent(); + } + + private URI getOutpostAccessPointUri(S3EndpointResolverContext context, String arnRegion, + PartitionMetadata clientPartitionMetadata, S3AccessPointResource s3EndpointResource) { + if (isDualstackEnabled(context.serviceConfiguration())) { + throw new IllegalArgumentException("An Outpost Access Point ARN cannot be passed as a bucket parameter to an S3 " + + "operation if the S3 client has been configured with dualstack"); + } + + if (isFipsRegion(context.region().toString())) { + throw new IllegalArgumentException("An access point ARN cannot be passed as a bucket parameter to an S3" + + " operation if the S3 client has been configured with a FIPS" + + " enabled region."); + } + + S3OutpostResource parentResource = (S3OutpostResource) s3EndpointResource.parentS3Resource().get(); + return S3OutpostAccessPointBuilder.create() + .accountId(s3EndpointResource.accountId().get()) + .outpostId(parentResource.outpostId()) + .region(arnRegion) + .accessPointName(s3EndpointResource.accessPointName()) + .protocol(context.request().protocol()) + .domain(clientPartitionMetadata.dnsSuffix()) + .toUri(); + } + +} diff --git a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3BucketEndpointResolver.java b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3BucketEndpointResolver.java new file mode 100644 index 000000000000..a3284baf7782 --- /dev/null +++ b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3BucketEndpointResolver.java @@ -0,0 +1,106 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.s3.internal.endpoints; + +import static software.amazon.awssdk.services.s3.internal.endpoints.S3EndpointUtils.accelerateEndpoint; +import static software.amazon.awssdk.services.s3.internal.endpoints.S3EndpointUtils.dualstackEndpoint; +import static software.amazon.awssdk.services.s3.internal.endpoints.S3EndpointUtils.isAccelerateEnabled; +import static software.amazon.awssdk.services.s3.internal.endpoints.S3EndpointUtils.isAccelerateSupported; +import static software.amazon.awssdk.services.s3.internal.endpoints.S3EndpointUtils.isDualstackEnabled; +import static software.amazon.awssdk.services.s3.internal.endpoints.S3EndpointUtils.isPathStyleAccessEnabled; +import static software.amazon.awssdk.utils.FunctionalUtils.invokeSafely; + +import java.net.URI; +import software.amazon.awssdk.annotations.SdkInternalApi; +import software.amazon.awssdk.http.SdkHttpRequest; +import software.amazon.awssdk.regions.RegionMetadata; +import software.amazon.awssdk.services.s3.S3Configuration; +import software.amazon.awssdk.services.s3.internal.BucketUtils; +import software.amazon.awssdk.services.s3.internal.ConfiguredS3SdkHttpRequest; + +/** + * Returns a new configured HTTP request with a resolved endpoint with either virtual addressing or path style access. + * Supports accelerate and dual stack. + */ +@SdkInternalApi +public final class S3BucketEndpointResolver implements S3EndpointResolver { + + private S3BucketEndpointResolver() { + } + + public static S3BucketEndpointResolver create() { + return new S3BucketEndpointResolver(); + } + + @Override + public ConfiguredS3SdkHttpRequest applyEndpointConfiguration(S3EndpointResolverContext context) { + URI endpoint = resolveEndpoint(context); + SdkHttpRequest.Builder mutableRequest = context.request().toBuilder(); + mutableRequest.uri(endpoint); + + String bucketName = context.originalRequest().getValueForField("Bucket", String.class).orElse(null); + if (canUseVirtualAddressing(context.serviceConfiguration(), bucketName)) { + changeToDnsEndpoint(mutableRequest, bucketName); + } + + return ConfiguredS3SdkHttpRequest.builder() + .sdkHttpRequest(mutableRequest.build()) + .build(); + } + + /** + * Determine which endpoint to use based on region and {@link S3Configuration}. Will either be a traditional + * S3 endpoint (i.e. s3.us-east-1.amazonaws.com), the global S3 accelerate endpoint (i.e. s3-accelerate.amazonaws.com) or + * a regional dualstack endpoint for IPV6 (i.e. s3.dualstack.us-east-1.amazonaws.com). + */ + private static URI resolveEndpoint(S3EndpointResolverContext context) { + SdkHttpRequest request = context.request(); + String protocol = request.protocol(); + RegionMetadata regionMetadata = RegionMetadata.of(context.region()); + S3Configuration serviceConfiguration = context.serviceConfiguration(); + + if (isAccelerateEnabled(serviceConfiguration) && isAccelerateSupported(context.originalRequest())) { + return accelerateEndpoint(serviceConfiguration, regionMetadata.domain(), protocol); + } + + if (isDualstackEnabled(serviceConfiguration)) { + return dualstackEndpoint(regionMetadata.id(), regionMetadata.domain(), protocol); + } + + return invokeSafely(() -> new URI(protocol, null, request.host(), request.port(), null, null, null)); + } + + private static boolean canUseVirtualAddressing(S3Configuration serviceConfiguration, String bucketName) { + return !isPathStyleAccessEnabled(serviceConfiguration) && bucketName != null && + BucketUtils.isVirtualAddressingCompatibleBucketName(bucketName, false); + } + + /** + * Changes from path style addressing (which the marshallers produce by default), to DNS style/virtual style addressing, + * where the bucket name is prepended to the host. DNS style addressing is preferred due to the better load balancing + * qualities it provides; path style is an option mainly for proxy based situations and alternative S3 implementations. + * + * @param mutableRequest Marshalled HTTP request we are modifying. + * @param bucketName Bucket name for this particular operation. + */ + private static void changeToDnsEndpoint(SdkHttpRequest.Builder mutableRequest, String bucketName) { + if (mutableRequest.host().startsWith("s3")) { + String newHost = mutableRequest.host().replaceFirst("s3", bucketName + "." + "s3"); + String newPath = mutableRequest.encodedPath().replaceFirst("/" + bucketName, ""); + mutableRequest.host(newHost).encodedPath(newPath); + } + } +} diff --git a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointResolver.java b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointResolver.java new file mode 100644 index 000000000000..9f8ab6e66910 --- /dev/null +++ b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointResolver.java @@ -0,0 +1,31 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.s3.internal.endpoints; + +import software.amazon.awssdk.annotations.SdkInternalApi; +import software.amazon.awssdk.services.s3.internal.ConfiguredS3SdkHttpRequest; + +/** + * An S3 endpoint resolver returns a {@link ConfiguredS3SdkHttpRequest} based on the HTTP context and previously + * set execution attributes. + *

+ * @see software.amazon.awssdk.services.s3.internal.handlers.EndpointAddressInterceptor + */ +@SdkInternalApi +public interface S3EndpointResolver { + + ConfiguredS3SdkHttpRequest applyEndpointConfiguration(S3EndpointResolverContext context); +} diff --git a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointResolverContext.java b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointResolverContext.java new file mode 100644 index 000000000000..48cc41a9f37c --- /dev/null +++ b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointResolverContext.java @@ -0,0 +1,143 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.s3.internal.endpoints; + +import java.util.Objects; +import software.amazon.awssdk.annotations.SdkInternalApi; +import software.amazon.awssdk.core.SdkRequest; +import software.amazon.awssdk.http.SdkHttpRequest; +import software.amazon.awssdk.regions.Region; +import software.amazon.awssdk.services.s3.S3Configuration; + +/** + * Contains the information needed to resolve S3 endpoints. + */ +@SdkInternalApi +public final class S3EndpointResolverContext { + private final SdkHttpRequest request; + private final SdkRequest originalRequest; + private final Region region; + private final S3Configuration serviceConfiguration; + private final boolean endpointOverridden; + + private S3EndpointResolverContext(Builder builder) { + this.request = builder.request; + this.originalRequest = builder.originalRequest; + this.region = builder.region; + this.serviceConfiguration = builder.serviceConfiguration; + this.endpointOverridden = builder.endpointOverridden; + } + + public static Builder builder() { + return new Builder(); + } + + public SdkHttpRequest request() { + return request; + } + + public SdkRequest originalRequest() { + return originalRequest; + } + + public Region region() { + return region; + } + + public S3Configuration serviceConfiguration() { + return serviceConfiguration; + } + + public boolean endpointOverridden() { + return endpointOverridden; + } + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + S3EndpointResolverContext that = (S3EndpointResolverContext) o; + return endpointOverridden == that.endpointOverridden && + Objects.equals(request, that.request) && + Objects.equals(originalRequest, that.originalRequest) && + Objects.equals(region, that.region) && + Objects.equals(serviceConfiguration, that.serviceConfiguration); + } + + @Override + public int hashCode() { + int hashCode = 1; + hashCode = 31 * hashCode + Objects.hashCode(request()); + hashCode = 31 * hashCode + Objects.hashCode(originalRequest()); + hashCode = 31 * hashCode + Objects.hashCode(region()); + hashCode = 31 * hashCode + Objects.hashCode(serviceConfiguration()); + hashCode = 31 * hashCode + Objects.hashCode(endpointOverridden()); + return hashCode; + } + + public Builder toBuilder() { + return builder().endpointOverridden(endpointOverridden) + .request(request) + .originalRequest(originalRequest) + .region(region) + .serviceConfiguration(serviceConfiguration); + } + + public static final class Builder { + private SdkHttpRequest request; + private SdkRequest originalRequest; + private Region region; + private S3Configuration serviceConfiguration; + private boolean endpointOverridden; + + private Builder() { + } + + public Builder request(SdkHttpRequest request) { + this.request = request; + return this; + } + + public Builder originalRequest(SdkRequest originalRequest) { + this.originalRequest = originalRequest; + return this; + } + + public Builder region(Region region) { + this.region = region; + return this; + } + + public Builder serviceConfiguration(S3Configuration serviceConfiguration) { + this.serviceConfiguration = serviceConfiguration; + return this; + } + + public Builder endpointOverridden(boolean endpointOverridden) { + this.endpointOverridden = endpointOverridden; + return this; + } + + public S3EndpointResolverContext build() { + return new S3EndpointResolverContext(this); + } + } +} diff --git a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointResolverFactory.java b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointResolverFactory.java new file mode 100644 index 000000000000..5db130d41c3c --- /dev/null +++ b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointResolverFactory.java @@ -0,0 +1,38 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.s3.internal.endpoints; + +import software.amazon.awssdk.annotations.SdkInternalApi; + +/** + * Get endpoint resolver. + */ +@SdkInternalApi +public final class S3EndpointResolverFactory { + + private static final S3EndpointResolver ACCESS_POINT_ENDPOINT_RESOLVER = S3AccessPointEndpointResolver.create(); + private static final S3EndpointResolver BUCKET_ENDPOINT_RESOLVER = S3BucketEndpointResolver.create(); + + private S3EndpointResolverFactory() { + } + + public static S3EndpointResolver getEndpointResolver(String bucketName) { + if (bucketName != null && S3EndpointUtils.isArn(bucketName)) { + return ACCESS_POINT_ENDPOINT_RESOLVER; + } + return BUCKET_ENDPOINT_RESOLVER; + } +} diff --git a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointUtils.java b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointUtils.java new file mode 100644 index 000000000000..d3176b734b0e --- /dev/null +++ b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointUtils.java @@ -0,0 +1,146 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.s3.internal.endpoints; + +import java.net.URI; +import java.net.URISyntaxException; +import java.util.Arrays; +import java.util.List; +import software.amazon.awssdk.annotations.SdkInternalApi; +import software.amazon.awssdk.core.SdkRequest; +import software.amazon.awssdk.http.SdkHttpRequest; +import software.amazon.awssdk.services.s3.S3Configuration; +import software.amazon.awssdk.services.s3.model.CreateBucketRequest; +import software.amazon.awssdk.services.s3.model.DeleteBucketRequest; +import software.amazon.awssdk.services.s3.model.ListBucketsRequest; + +/** + * Utilities for working with Amazon S3 bucket names and endpoints. + */ +@SdkInternalApi +public final class S3EndpointUtils { + + private static final List> ACCELERATE_DISABLED_OPERATIONS = Arrays.asList( + ListBucketsRequest.class, CreateBucketRequest.class, DeleteBucketRequest.class); + + private S3EndpointUtils() { + } + + public static String removeFipsIfNeeded(String region) { + if (region.startsWith("fips-")) { + return region.replace("fips-", ""); + } + + if (region.endsWith("-fips")) { + return region.replace("-fips", ""); + } + return region; + } + + /** + * Returns whether a FIPS pseudo region is provided. + */ + public static boolean isFipsRegionProvided(String clientRegion, String arnRegion, boolean useArnRegion) { + if (useArnRegion) { + return isFipsRegion(arnRegion); + } + return isFipsRegion(clientRegion); + } + + public static boolean isFipsRegion(String region) { + return region.startsWith("fips-") || region.endsWith("-fips"); + } + + /** + * @return True if accelerate mode is enabled per {@link S3Configuration}, false if not. + */ + public static boolean isAccelerateEnabled(S3Configuration serviceConfiguration) { + return serviceConfiguration != null && serviceConfiguration.accelerateModeEnabled(); + } + + /** + * @param originalRequest Request object to identify the operation. + * @return True if accelerate is supported for the given operation, false if not. + */ + public static boolean isAccelerateSupported(SdkRequest originalRequest) { + return !ACCELERATE_DISABLED_OPERATIONS.contains(originalRequest.getClass()); + } + + /** + * @return The endpoint for an S3 accelerate enabled operation. S3 accelerate has a single global endpoint. + */ + public static URI accelerateEndpoint(S3Configuration serviceConfiguration, String domain, String protocol) { + if (serviceConfiguration.dualstackEnabled()) { + return toUri(protocol, "s3-accelerate.dualstack." + domain); + } + return toUri(protocol, "s3-accelerate." + domain); + } + + /** + * @return True if dualstack is enabled per {@link S3Configuration}, false if not. + */ + public static boolean isDualstackEnabled(S3Configuration serviceConfiguration) { + return serviceConfiguration != null && serviceConfiguration.dualstackEnabled(); + } + + /** + * @return dual stack endpoint from given protocol and region metadata + */ + public static URI dualstackEndpoint(String id, String domain, String protocol) { + String serviceEndpoint = String.format("%s.%s.%s.%s", "s3", "dualstack", id, domain); + return toUri(protocol, serviceEndpoint); + } + + /** + * @return True if path style access is enabled per {@link S3Configuration}, false if not. + */ + public static boolean isPathStyleAccessEnabled(S3Configuration serviceConfiguration) { + return serviceConfiguration != null && serviceConfiguration.pathStyleAccessEnabled(); + } + + public static boolean isArnRegionEnabled(S3Configuration serviceConfiguration) { + return serviceConfiguration != null && serviceConfiguration.useArnRegionEnabled(); + } + + /** + * Changes from path style addressing (which the marshallers produce by default, to DNS style or virtual style addressing + * where the bucket name is prepended to the host. DNS style addressing is preferred due to the better load balancing + * qualities it provides, path style is an option mainly for proxy based situations and alternative S3 implementations. + * + * @param mutableRequest Marshalled HTTP request we are modifying. + * @param bucketName Bucket name for this particular operation. + */ + public static void changeToDnsEndpoint(SdkHttpRequest.Builder mutableRequest, String bucketName) { + if (mutableRequest.host().startsWith("s3")) { + String newHost = mutableRequest.host().replaceFirst("s3", bucketName + "." + "s3"); + String newPath = mutableRequest.encodedPath().replaceFirst("/" + bucketName, ""); + + mutableRequest.host(newHost).encodedPath(newPath); + } + } + + public static boolean isArn(String s) { + return s.startsWith("arn:"); + } + + private static URI toUri(String protocol, String endpoint) { + try { + return new URI(String.format("%s://%s", protocol, endpoint)); + } catch (URISyntaxException e) { + throw new IllegalArgumentException(e); + } + } +} diff --git a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/handlers/EndpointAddressInterceptor.java b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/handlers/EndpointAddressInterceptor.java index 0989ed977c37..3f6c4c9eece4 100644 --- a/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/handlers/EndpointAddressInterceptor.java +++ b/services/s3/src/main/java/software/amazon/awssdk/services/s3/internal/handlers/EndpointAddressInterceptor.java @@ -25,7 +25,8 @@ import software.amazon.awssdk.http.SdkHttpRequest; import software.amazon.awssdk.services.s3.S3Configuration; import software.amazon.awssdk.services.s3.internal.ConfiguredS3SdkHttpRequest; -import software.amazon.awssdk.services.s3.internal.S3EndpointUtils; +import software.amazon.awssdk.services.s3.internal.endpoints.S3EndpointResolverContext; +import software.amazon.awssdk.services.s3.internal.endpoints.S3EndpointResolverFactory; @SdkInternalApi public final class EndpointAddressInterceptor implements ExecutionInterceptor { @@ -33,19 +34,31 @@ public final class EndpointAddressInterceptor implements ExecutionInterceptor { @Override public SdkHttpRequest modifyHttpRequest(Context.ModifyHttpRequest context, ExecutionAttributes executionAttributes) { - ConfiguredS3SdkHttpRequest configuredRequest = - S3EndpointUtils.applyEndpointConfiguration( - context.httpRequest(), - context.request(), - executionAttributes.getAttribute(AwsExecutionAttribute.AWS_REGION), - (S3Configuration) executionAttributes.getAttribute(AwsSignerExecutionAttribute.SERVICE_CONFIG), - Boolean.TRUE.equals(executionAttributes.getAttribute(SdkExecutionAttribute.ENDPOINT_OVERRIDDEN))); + + boolean endpointOverride = + Boolean.TRUE.equals(executionAttributes.getAttribute(SdkExecutionAttribute.ENDPOINT_OVERRIDDEN)); + S3Configuration serviceConfiguration = + (S3Configuration) executionAttributes.getAttribute(AwsSignerExecutionAttribute.SERVICE_CONFIG); + S3EndpointResolverContext resolverContext = + S3EndpointResolverContext.builder() + .request(context.httpRequest()) + .originalRequest(context.request()) + .region(executionAttributes.getAttribute(AwsExecutionAttribute.AWS_REGION)) + .endpointOverridden(endpointOverride) + .serviceConfiguration(serviceConfiguration) + .build(); + + String bucketName = context.request().getValueForField("Bucket", String.class).orElse(null); + ConfiguredS3SdkHttpRequest configuredRequest = S3EndpointResolverFactory.getEndpointResolver(bucketName) + .applyEndpointConfiguration(resolverContext); configuredRequest.signingRegionModification().ifPresent( region -> executionAttributes.putAttribute(AwsSignerExecutionAttribute.SIGNING_REGION, region)); configuredRequest.signingServiceModification().ifPresent( name -> executionAttributes.putAttribute(AwsSignerExecutionAttribute.SERVICE_SIGNING_NAME, name)); + return configuredRequest.sdkHttpRequest(); } + } diff --git a/services/s3/src/test/java/software/amazon/awssdk/services/s3/utils/S3EndpointResolutionTest.java b/services/s3/src/test/java/software/amazon/awssdk/services/s3/S3EndpointResolutionTest.java similarity index 99% rename from services/s3/src/test/java/software/amazon/awssdk/services/s3/utils/S3EndpointResolutionTest.java rename to services/s3/src/test/java/software/amazon/awssdk/services/s3/S3EndpointResolutionTest.java index 26050f8c5b14..3b21d7b0078c 100644 --- a/services/s3/src/test/java/software/amazon/awssdk/services/s3/utils/S3EndpointResolutionTest.java +++ b/services/s3/src/test/java/software/amazon/awssdk/services/s3/S3EndpointResolutionTest.java @@ -13,7 +13,7 @@ * permissions and limitations under the License. */ -package software.amazon.awssdk.services.s3.utils; +package software.amazon.awssdk.services.s3; import static org.assertj.core.api.Assertions.assertThat; diff --git a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/endpoints/S3AccessPointEndpointResolverTest.java b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/endpoints/S3AccessPointEndpointResolverTest.java new file mode 100644 index 000000000000..b37df4beea9d --- /dev/null +++ b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/endpoints/S3AccessPointEndpointResolverTest.java @@ -0,0 +1,563 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.s3.internal.endpoints; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.assertj.core.api.Assertions.assertThatThrownBy; +import static software.amazon.awssdk.utils.http.SdkHttpUtils.urlEncode; + +import java.net.URI; +import org.junit.Before; +import org.junit.Test; +import software.amazon.awssdk.http.SdkHttpFullRequest; +import software.amazon.awssdk.http.SdkHttpMethod; +import software.amazon.awssdk.http.SdkHttpRequest; +import software.amazon.awssdk.regions.Region; +import software.amazon.awssdk.services.s3.S3Configuration; +import software.amazon.awssdk.services.s3.internal.ConfiguredS3SdkHttpRequest; +import software.amazon.awssdk.services.s3.model.PutObjectRequest; +import software.amazon.awssdk.services.s3.utils.InterceptorTestUtils; + +public class S3AccessPointEndpointResolverTest { + + S3AccessPointEndpointResolver endpointResolver; + + @Before + public void setUp() { + endpointResolver = S3AccessPointEndpointResolver.create(); + } + + @Test + public void accesspointArn_shouldConvertEndpoint() { + verifyAccesspointArn("http", + "arn:aws:s3:us-east-1:12345678910:accesspoint:foobar", + "http://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", + S3Configuration.builder()); + verifyAccesspointArn("https", + "arn:aws:s3:us-east-1:12345678910:accesspoint:foobar", + "https://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", + S3Configuration.builder()); + } + + @Test + public void accesspointArn_futureUnknownRegion_US_correctlyInfersPartition() { + verifyAccesspointArn("http", + "arn:aws:s3:us-future-1:12345678910:accesspoint:foobar", + "http://foobar-12345678910.s3-accesspoint.us-future-1.amazonaws.com", + Region.of("us-future-1"), + S3Configuration.builder(), + Region.of("us-future-1")); + } + + @Test + public void accesspointArn_futureUnknownRegion_crossRegion_correctlyInfersPartition() { + verifyAccesspointArn("http", + "arn:aws:s3:us-future-2:12345678910:accesspoint:foobar", + "http://foobar-12345678910.s3-accesspoint.us-future-2.amazonaws.com", + Region.of("us-future-2"), + S3Configuration.builder().useArnRegionEnabled(true), + Region.of("us-future-1")); + } + + @Test + public void accesspointArn_futureUnknownRegion_CN_correctlyInfersPartition() { + verifyAccesspointArn("http", + "arn:aws-cn:s3:cn-future-1:12345678910:accesspoint:foobar", + "http://foobar-12345678910.s3-accesspoint.cn-future-1.amazonaws.com.cn", + Region.of("cn-future-1"), + S3Configuration.builder(), + Region.of("cn-future-1")); + } + + @Test + public void accesspointArn_futureUnknownRegionAndPartition_defaultsToAws() { + verifyAccesspointArn("http", + "arn:aws:s3:unknown:12345678910:accesspoint:foobar", + "http://foobar-12345678910.s3-accesspoint.unknown.amazonaws.com", + Region.of("unknown"), + S3Configuration.builder(), + Region.of("unknown")); + } + + @Test + public void malformedArn_throwsIllegalArgumentException() { + assertThatThrownBy(() -> verifyAccesspointArn("http", + "arn:foobar", + null, + S3Configuration.builder())) + .isInstanceOf(IllegalArgumentException.class) + .hasMessageContaining("ARN"); + } + + @Test + public void unsupportedArn_throwsIllegalArgumentException() { + assertThatThrownBy(() -> verifyAccesspointArn("http", + "arn:aws:s3:us-east-1:12345678910:unsupported:foobar", + null, + S3Configuration.builder())) + .isInstanceOf(IllegalArgumentException.class) + .hasMessageContaining("ARN"); + } + + @Test + public void accesspointArn_invalidPartition_throwsIllegalArgumentException() { + assertThatThrownBy(() -> verifyAccesspointArn("http", + "arn:bar:s3:us-east-1:12345678910:accesspoint:foobar", + null, + S3Configuration.builder())) + .isInstanceOf(IllegalArgumentException.class) + .hasMessageContaining("bar"); + } + + @Test + public void bucketArn_throwsIllegalArgumentException() { + assertThatThrownBy(() -> verifyAccesspointArn("http", + "arn:aws:s3:us-east-1:12345678910:bucket_name:foobar", + null, + S3Configuration.builder())) + .isInstanceOf(IllegalArgumentException.class) + .hasMessageContaining("bucket parameter"); + } + + + @Test + public void accesspointArn_withSlashes_shouldConvertEndpoint() { + verifyAccesspointArn("http", + "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", + "http://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", + S3Configuration.builder()); + verifyAccesspointArn("https", + "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", + "https://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", + S3Configuration.builder()); + } + + @Test + public void accesspointArn_withDualStackEnabled_shouldConvertEndpoint() { + verifyAccesspointArn("http", + "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", + "http://foobar-12345678910.s3-accesspoint.dualstack.us-east-1.amazonaws.com", + S3Configuration.builder().dualstackEnabled(true)); + verifyAccesspointArn("https", + "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", + "https://foobar-12345678910.s3-accesspoint.dualstack.us-east-1.amazonaws.com", + S3Configuration.builder().dualstackEnabled(true)); + } + + @Test + public void accesspointArn_withCnPartition_shouldConvertEndpoint() { + verifyAccesspointArn("http", + "arn:aws-cn:s3:cn-north-1:12345678910:accesspoint:foobar", + "http://foobar-12345678910.s3-accesspoint.cn-north-1.amazonaws.com.cn", + Region.of("cn-north-1"), + S3Configuration.builder(), + Region.of("cn-north-1")); + verifyAccesspointArn("https", + "arn:aws-cn:s3:cn-north-1:12345678910:accesspoint:foobar", + "https://foobar-12345678910.s3-accesspoint.cn-north-1.amazonaws.com.cn", + Region.of("cn-north-1"), + S3Configuration.builder(), + Region.of("cn-north-1")); + } + + @Test + public void accesspointArn_withDifferentPartition_useArnRegionEnabled_shouldThrowIllegalArgumentException() { + assertThatThrownBy(() -> verifyAccesspointArn("http", + "arn:aws-cn:s3:cn-north-1:12345678910:accesspoint:foobar", + "http://foobar-12345678910.s3-accesspoint.cn-north-1.amazonaws.com.cn", + Region.of("cn-north-1"), + S3Configuration.builder().useArnRegionEnabled(true), + Region.of("us-east-1"))) + .isInstanceOf(IllegalArgumentException.class) + .hasMessageContaining("partition"); + } + + @Test + public void accesspointArn_withFipsRegionPrefix_noFipsInArn_shouldConvertEndpoint() { + verifyAccesspointArn("http", + "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", + "http://foobar-12345678910.s3-accesspoint.fips-us-east-1.amazonaws.com", + Region.of("us-east-1"), + S3Configuration.builder(), + Region.of("fips-us-east-1")); + verifyAccesspointArn("https", + "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", + "https://foobar-12345678910.s3-accesspoint.fips-us-east-1.amazonaws.com", + Region.of("us-east-1"), + S3Configuration.builder(), + Region.of("fips-us-east-1")); + } + + @Test + public void accesspointArn_withFipsRegionPrefix_FipsInArn_shouldConvertEndpoint() { + verifyAccesspointArn("http", + "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", + "http://foobar-12345678910.s3-accesspoint.fips-us-east-1.amazonaws.com", + Region.of("fips-us-east-1"), + S3Configuration.builder(), + Region.of("fips-us-east-1")); + verifyAccesspointArn("https", + "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", + "https://foobar-12345678910.s3-accesspoint.fips-us-east-1.amazonaws.com", + Region.of("fips-us-east-1"), + S3Configuration.builder(), + Region.of("fips-us-east-1")); + } + + @Test + public void accesspointArn_withFipsRegionPrefix_noFipsInArn_useArnRegionEnabled_shouldConvertEndpoint() { + verifyAccesspointArn("http", + "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", + "http://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", + Region.of("us-east-1"), + S3Configuration.builder().useArnRegionEnabled(true), + Region.of("fips-us-east-1")); + verifyAccesspointArn("https", + "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", + "https://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", + Region.of("us-east-1"), + S3Configuration.builder().useArnRegionEnabled(true), + Region.of("fips-us-east-1")); + } + + + @Test + public void accesspointArn_withFipsRegionPrefix_FipsInArn_useArnRegionEnabled_shouldConvertEndpoint() { + verifyAccesspointArn("http", + "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", + "http://foobar-12345678910.s3-accesspoint.fips-us-east-1.amazonaws.com", + Region.of("fips-us-east-1"), + S3Configuration.builder().useArnRegionEnabled(true), + Region.of("fips-us-east-1")); + verifyAccesspointArn("https", + "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", + "https://foobar-12345678910.s3-accesspoint.fips-us-east-1.amazonaws.com", + Region.of("fips-us-east-1"), + S3Configuration.builder().useArnRegionEnabled(true), + Region.of("fips-us-east-1")); + } + + + + @Test + public void accesspointArn_withFipsRegionPrefix_ArnRegionNotMatches_shouldThrowIllegalArgumentException() { + assertThatThrownBy(() -> verifyAccesspointArn("http", + "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", + "http://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", + Region.of("us-east-1"), + S3Configuration.builder(), + Region.of("fips-us-gov-east-1"))) + .isInstanceOf(IllegalArgumentException.class) + .hasMessageContaining("The region field of the ARN being passed as a bucket parameter to an S3 operation does not match the region the client was configured with."); + assertThatThrownBy(() -> verifyAccesspointArn("https", + "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", + "https://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", + Region.of("us-east-1"), + S3Configuration.builder(), + Region.of("fips-us-gov-east-1"))) + .isInstanceOf(IllegalArgumentException.class) + .hasMessageContaining("The region field of the ARN being passed as a bucket parameter to an S3 operation does not match the region the client was configured with."); + } + + @Test + public void accesspointArn_withFipsRegionPrefix_noFipsInArn_DualstackEnabled_shouldConvertEndpoint() { + verifyAccesspointArn("http", + "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", + "http://foobar-12345678910.s3-accesspoint.dualstack.fips-us-east-1.amazonaws.com", + Region.of("us-east-1"), + S3Configuration.builder().dualstackEnabled(true), + Region.of("fips-us-east-1")); + verifyAccesspointArn("https", + "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", + "https://foobar-12345678910.s3-accesspoint.dualstack.fips-us-east-1.amazonaws.com", + Region.of("us-east-1"), + S3Configuration.builder().dualstackEnabled(true), + Region.of("fips-us-east-1")); + } + + @Test + public void accesspointArn_withFipsRegionPrefix_FipsInArn_DualStackEnabled_shouldConvertEndpoint() { + verifyAccesspointArn("http", + "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", + "http://foobar-12345678910.s3-accesspoint.dualstack.fips-us-east-1.amazonaws.com", + Region.of("fips-us-east-1"), + S3Configuration.builder().dualstackEnabled(true), + Region.of("fips-us-east-1")); + verifyAccesspointArn("https", + "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", + "https://foobar-12345678910.s3-accesspoint.dualstack.fips-us-east-1.amazonaws.com", + Region.of("fips-us-east-1"), + S3Configuration.builder().dualstackEnabled(true), + Region.of("fips-us-east-1")); + } + + @Test + public void accesspointArn_withFipsRegionSuffix_noFipsinArn_shouldConvertEndpoint() { + verifyAccesspointArn("http", + "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", + "http://foobar-12345678910.s3-accesspoint.fips-us-east-1.amazonaws.com", + Region.of("us-east-1"), + S3Configuration.builder(), + Region.of("us-east-1-fips")); + verifyAccesspointArn("https", + "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", + "https://foobar-12345678910.s3-accesspoint.fips-us-east-1.amazonaws.com", + Region.of("us-east-1"), + S3Configuration.builder(), + Region.of("us-east-1-fips")); + } + + @Test + public void accesspointArn_noFipsRegionPrefix_FipsInArn_shouldConvertEndpoint() { + verifyAccesspointArn("http", + "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", + "http://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", + Region.of("fips-us-east-1"), + S3Configuration.builder(), + Region.of("us-east-1")); + verifyAccesspointArn("https", + "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", + "https://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", + Region.of("fips-us-east-1"), + S3Configuration.builder(), + Region.of("us-east-1")); + } + + @Test + public void accesspointArn_noFipsRegionPrefix_FipsInArn_useArnRegionEnabled_shouldConvertEndpoint() { + verifyAccesspointArn("http", + "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", + "http://foobar-12345678910.s3-accesspoint.fips-us-east-1.amazonaws.com", + Region.of("fips-us-east-1"), + S3Configuration.builder().useArnRegionEnabled(true), + Region.of("us-east-1")); + verifyAccesspointArn("https", + "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", + "https://foobar-12345678910.s3-accesspoint.fips-us-east-1.amazonaws.com", + Region.of("fips-us-east-1"), + S3Configuration.builder().useArnRegionEnabled(true), + Region.of("us-east-1")); + } + + @Test + public void accesspointArn_noFipsRegionPrefix_FipsInArn_useArnRegionEnabled_DualstackEnabled_shouldConvertEndpoint() { + verifyAccesspointArn("http", + "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", + "http://foobar-12345678910.s3-accesspoint.dualstack.fips-us-east-1.amazonaws.com", + Region.of("fips-us-east-1"), + S3Configuration.builder().useArnRegionEnabled(true).dualstackEnabled(true), + Region.of("us-east-1")); + verifyAccesspointArn("https", + "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", + "https://foobar-12345678910.s3-accesspoint.dualstack.fips-us-east-1.amazonaws.com", + Region.of("fips-us-east-1"), + S3Configuration.builder().useArnRegionEnabled(true).dualstackEnabled(true), + Region.of("us-east-1")); + } + + @Test + public void accesspointArn_withAccelerateEnabled_shouldThrowIllegalArgumentException() { + assertThatThrownBy(() -> verifyAccesspointArn("http", + "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", + "http://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", + Region.of("us-east-1"), + S3Configuration.builder().accelerateModeEnabled(true), + Region.of("us-east-1"))) + .isInstanceOf(IllegalArgumentException.class) + .hasMessageContaining("accelerate"); + } + + + @Test + public void accesspointArn_withPathStyleAddressingEnabled_shouldThrowIllegalArgumentException() { + assertThatThrownBy(() -> verifyAccesspointArn("http", + "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", + "http://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", + Region.of("us-east-1"), + S3Configuration.builder().pathStyleAccessEnabled(true), + Region.of("us-east-1"))) + .isInstanceOf(IllegalArgumentException.class) + .hasMessageContaining("path style"); + } + + @Test + public void outpostAccessPointArn_shouldConvertEndpoint() { + verifyAccesspointArn("http", + "arn:aws:s3-outposts:us-west-2:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint", + "http://myaccesspoint-123456789012.op-01234567890123456.s3-outposts.us-west-2.amazonaws.com", + Region.of("us-west-2"), + S3Configuration.builder(), + Region.of("us-west-2")); + + verifyAccesspointArn("https", + "arn:aws:s3-outposts:us-west-2:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint", + "https://myaccesspoint-123456789012.op-01234567890123456.s3-outposts.us-west-2.amazonaws.com", + Region.of("us-west-2"), + S3Configuration.builder(), + Region.of("us-west-2")); + } + + @Test + public void outpostAccessPointArn_futureUnknownRegion_US_correctlyInfersPartition() { + verifyAccesspointArn("http", + "arn:aws:s3-outposts:us-future-2:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint", + "http://myaccesspoint-123456789012.op-01234567890123456.s3-outposts.us-future-2.amazonaws.com", + Region.of("us-future-2"), + S3Configuration.builder(), + Region.of("us-future-2")); + } + + @Test + public void outpostAccessPointArn_futureUnknownRegion_crossRegion_correctlyInfersPartition() { + verifyAccesspointArn("http", + "arn:aws:s3-outposts:us-future-2:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint", + "http://myaccesspoint-123456789012.op-01234567890123456.s3-outposts.us-future-2.amazonaws.com", + Region.of("us-future-2"), + S3Configuration.builder().useArnRegionEnabled(true), + Region.of("us-future-1")); + } + + @Test + public void outpostAccessPointArn_futureUnknownRegion_CN_correctlyInfersPartition() { + verifyAccesspointArn("http", + "arn:aws-cn:s3-outposts:cn-future-1:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint", + "http://myaccesspoint-123456789012.op-01234567890123456.s3-outposts.cn-future-1.amazonaws.com.cn", + Region.of("cn-future-1"), + S3Configuration.builder(), + Region.of("cn-future-1")); + } + + @Test + public void outpostAccessPointArn_futureUnknownRegionAndPartition_defaultsToAws() { + verifyAccesspointArn("http", + "arn:aws:s3-outposts:unknown:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint", + "http://myaccesspoint-123456789012.op-01234567890123456.s3-outposts.unknown.amazonaws.com", + Region.of("unknown"), + S3Configuration.builder(), + Region.of("unknown")); + } + + @Test + public void outpostAccessPointArn_invalidPartition_throwsIllegalArgumentException() { + assertThatThrownBy(() -> verifyAccesspointArn("http", + "arn:bar:s3-outposts:us-east-1:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint", + null, + S3Configuration.builder())) + .isInstanceOf(IllegalArgumentException.class) + .hasMessageContaining("bar"); + } + + @Test + public void outpostAccessPointArn_differentRegionWithoutUseArnRegion_throwsIllegalArgumentException() { + assertThatThrownBy(() -> verifyAccesspointArn("http", + "arn:bar:aws-outposts:us-west-2:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint", + null, + S3Configuration.builder())) + .isInstanceOf(IllegalArgumentException.class) + .hasMessageContaining("region"); + } + + @Test + public void outpostAccessPointArn_fipsEnabled_throwsIllegalArgumentException() { + assertThatThrownBy(() -> verifyAccesspointArn("http", + "arn:aws:s3-outposts:us-east-1:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint", + null, + Region.of("us-east-1"), + S3Configuration.builder().useArnRegionEnabled(true), + Region.of("fips-us-east-1"))) + .isInstanceOf(IllegalArgumentException.class) + .hasMessageContaining("FIPS"); + } + + @Test + public void outpostAccessPointArn_dualStackEnabled_throwsIllegalArgumentException() { + assertThatThrownBy(() -> verifyAccesspointArn("http", + "arn:aws:s3-outposts:us-east-1:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint", + null, + Region.of("us-east-1"), + S3Configuration.builder().dualstackEnabled(true), + Region.of("us-east-1"))) + .isInstanceOf(IllegalArgumentException.class) + .hasMessageContaining("dualstack"); + } + + @Test + public void outpostAccessPointArn_accelerateEnabled_throwsIllegalArgumentException() { + assertThatThrownBy(() -> verifyAccesspointArn("http", + "arn:aws:s3-outposts:us-east-1:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint", + null, + Region.of("us-east-1"), + S3Configuration.builder().accelerateModeEnabled(true), + Region.of("us-east-1"))) + .isInstanceOf(IllegalArgumentException.class) + .hasMessageContaining("accelerate"); + } + + @Test + public void outpostAccessPointArn_ArnMissingAccesspointName_throwsIllegalArgumentException() { + assertThatThrownBy(() -> verifyAccesspointArn("http", + "arn:aws:s3-outposts:us-west-2:123456789012:outpost:op-01234567890123456", + null, + Region.of("us-east-1"), + S3Configuration.builder().accelerateModeEnabled(true), + Region.of("us-east-1"))) + .isInstanceOf(IllegalArgumentException.class) + .hasMessageContaining("Invalid format"); + } + + private void verifyAccesspointArn(String protocol, String accessPointArn, String expectedEndpoint, + S3Configuration.Builder builder) { + verifyAccesspointArn(protocol, accessPointArn, expectedEndpoint, Region.US_EAST_1, builder, Region.US_EAST_1); + } + + private void verifyAccesspointArn(String protocol, String accessPointArn, String expectedEndpoint, + Region expectedSigningRegion, + S3Configuration.Builder configBuilder, Region region) { + String key = "test-key"; + + URI customUri = URI.create(String.format("%s://s3-test.com/%s/%s", protocol, urlEncode(accessPointArn), key)); + URI expectedUri = URI.create(String.format("%s/%s", expectedEndpoint, key)); + PutObjectRequest putObjectRequest = PutObjectRequest.builder() + .bucket(accessPointArn) + .key(key) + .build(); + + S3EndpointResolverContext context = S3EndpointResolverContext.builder() + .request(InterceptorTestUtils.sdkHttpRequest(customUri)) + .originalRequest(putObjectRequest) + .region(region) + .serviceConfiguration(configBuilder.build()) + .build(); + + ConfiguredS3SdkHttpRequest sdkHttpFullRequest = endpointResolver.applyEndpointConfiguration(context); + + assertThat(sdkHttpFullRequest.sdkHttpRequest().getUri()).isEqualTo(expectedUri); + assertThat(sdkHttpFullRequest.signingRegionModification()).isPresent(); + assertThat(sdkHttpFullRequest.signingRegionModification().get()).isEqualTo(expectedSigningRegion); + assertSigningRegion(accessPointArn, sdkHttpFullRequest); + } + + private void assertSigningRegion(String accessPointArn, ConfiguredS3SdkHttpRequest sdkHttpFullRequest) { + if (accessPointArn.contains(":s3-outposts")) { + String expectedSigningName = "s3-outposts"; + assertThat(sdkHttpFullRequest.signingServiceModification()).isPresent(); + assertThat(sdkHttpFullRequest.signingServiceModification().get()).isEqualTo(expectedSigningName); + } else { + assertThat(sdkHttpFullRequest.signingServiceModification()).isEmpty(); + } + } + +} diff --git a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/endpoints/S3BucketEndpointResolverTest.java b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/endpoints/S3BucketEndpointResolverTest.java new file mode 100644 index 000000000000..9acfa4032800 --- /dev/null +++ b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/endpoints/S3BucketEndpointResolverTest.java @@ -0,0 +1,159 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.s3.internal.endpoints; + +import static org.assertj.core.api.Assertions.assertThat; + +import java.net.URI; +import org.junit.Before; +import org.junit.Test; +import software.amazon.awssdk.core.SdkRequest; +import software.amazon.awssdk.http.SdkHttpFullRequest; +import software.amazon.awssdk.http.SdkHttpMethod; +import software.amazon.awssdk.http.SdkHttpRequest; +import software.amazon.awssdk.regions.Region; +import software.amazon.awssdk.services.s3.S3Configuration; +import software.amazon.awssdk.services.s3.internal.ConfiguredS3SdkHttpRequest; +import software.amazon.awssdk.services.s3.model.CreateBucketRequest; +import software.amazon.awssdk.services.s3.model.DeleteBucketRequest; +import software.amazon.awssdk.services.s3.model.ListBucketsRequest; +import software.amazon.awssdk.services.s3.model.ListObjectsV2Request; +import software.amazon.awssdk.services.s3.model.PutObjectRequest; +import software.amazon.awssdk.services.s3.utils.InterceptorTestUtils; + +public class S3BucketEndpointResolverTest { + + S3BucketEndpointResolver endpointResolver; + + @Before + public void setUp() throws Exception { + endpointResolver = S3BucketEndpointResolver.create(); + } + + @Test + public void traditionalEndpoint_shouldNotConvertEndpoint() { + verifyEndpoint("http", "http://s3-test.com", S3Configuration.builder()); + verifyEndpoint("https", "https://s3-test.com", S3Configuration.builder()); + } + + @Test + public void accelerateEnabled_shouldConvertToAccelerateEndpoint() { + verifyEndpoint("http", + "http://s3-accelerate.amazonaws.com", + S3Configuration.builder().accelerateModeEnabled(true)); + verifyEndpoint("https", "https://s3-accelerate.amazonaws.com", + S3Configuration.builder().accelerateModeEnabled(true)); + } + + @Test + public void bothAccelerateDualstackEnabled_shouldConvertToAccelerateDualstackEndpoint() { + verifyEndpoint("http", + "http://s3-accelerate.dualstack.amazonaws.com", + S3Configuration.builder().accelerateModeEnabled(true).dualstackEnabled(true) + ); + verifyEndpoint("https", + "https://s3-accelerate.dualstack.amazonaws.com", + S3Configuration.builder().accelerateModeEnabled(true).dualstackEnabled(true)); + } + + @Test + public void pathStyleAccessEnabled_shouldNotConvertToDnsEndpoint() { + verifyEndpoint("http", + "http://s3-test.com", + S3Configuration.builder().pathStyleAccessEnabled(true)); + verifyEndpoint("https", + "https://s3-test.com", + S3Configuration.builder().pathStyleAccessEnabled(true)); + } + + @Test + public void dualstackEnabled_shouldConvertToDualstackEndpoint() { + verifyEndpoint("http", "http://s3.dualstack.us-east-1.amazonaws.com", + S3Configuration.builder().dualstackEnabled(true)); + verifyEndpoint("https", "https://s3.dualstack.us-east-1.amazonaws.com", + S3Configuration.builder().dualstackEnabled(true)); + } + + @Test + public void accelerateEnabled_ListBucketRequest_shouldNotConvertToAccelerateEndpoint() { + verifyAccelerateDisabledOperationsEndpointNotConverted(ListBucketsRequest.builder().build()); + } + + @Test + public void accelerateEnabled_CreateBucketsRequest_shouldNotConvertToAccelerateEndpoint() { + verifyAccelerateDisabledOperationsEndpointNotConverted(CreateBucketRequest.builder().build()); + } + + @Test + public void accelerateEnabled_DeleteBucketRequest_shouldNotConvertToAccelerateEndpoint() { + verifyAccelerateDisabledOperationsEndpointNotConverted(DeleteBucketRequest.builder().build()); + } + + @Test + public void virtualStyle_shouldConvertToDnsEndpoint() { + verifyVirtualStyleConvertDnsEndpoint("https"); + verifyVirtualStyleConvertDnsEndpoint("http"); + } + + private void verifyVirtualStyleConvertDnsEndpoint(String protocol) { + String bucketName = "test-bucket"; + String key = "test-key"; + URI customUri = URI.create(String.format("%s://s3-test.com/%s/%s", protocol, bucketName, key)); + URI expectedUri = URI.create(String.format("%s://%s.s3.dualstack.us-east-1.amazonaws.com/%s", protocol, + bucketName, key)); + S3EndpointResolverContext context = S3EndpointResolverContext.builder() + .request(InterceptorTestUtils.sdkHttpRequest(customUri)) + .originalRequest(ListObjectsV2Request.builder().bucket(bucketName).build()) + .region(Region.US_EAST_1) + .serviceConfiguration(S3Configuration.builder().dualstackEnabled(true).build()) + .build(); + ConfiguredS3SdkHttpRequest sdkHttpFullRequest = endpointResolver.applyEndpointConfiguration(context); + + assertThat(sdkHttpFullRequest.sdkHttpRequest().getUri()).isEqualTo(expectedUri); + } + + private void verifyAccelerateDisabledOperationsEndpointNotConverted(SdkRequest request) { + URI customUri = URI.create("http://s3-test.com"); + S3EndpointResolverContext context = S3EndpointResolverContext.builder() + .request(InterceptorTestUtils.sdkHttpRequest(customUri)) + .originalRequest(request) + .region(Region.US_EAST_1) + .serviceConfiguration(S3Configuration.builder().accelerateModeEnabled(true).build()) + .build(); + ConfiguredS3SdkHttpRequest sdkHttpFullRequest = endpointResolver.applyEndpointConfiguration(context); + assertThat(sdkHttpFullRequest.sdkHttpRequest().getUri()).isEqualTo(customUri); + } + + private void verifyEndpoint(String protocol, + String expectedEndpoint, + S3Configuration.Builder configBuilder) { + String bucket = "test-bucket"; + String key = "test-key"; + URI customUri = URI.create(String.format("%s://s3-test.com/%s/%s", protocol, bucket, key)); + URI expectedUri = URI.create(String.format("%s/%s/%s", expectedEndpoint, bucket, key)); + + S3EndpointResolverContext context = S3EndpointResolverContext.builder() + .request(InterceptorTestUtils.sdkHttpRequest(customUri)) + .originalRequest(PutObjectRequest.builder().build()) + .region(Region.US_EAST_1) + .serviceConfiguration(configBuilder.build()) + .build(); + + ConfiguredS3SdkHttpRequest sdkHttpFullRequest = endpointResolver.applyEndpointConfiguration(context); + assertThat(sdkHttpFullRequest.sdkHttpRequest().getUri()).isEqualTo(expectedUri); + } + +} diff --git a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointResolverContextTest.java b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointResolverContextTest.java new file mode 100644 index 000000000000..9b846ad9cda2 --- /dev/null +++ b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointResolverContextTest.java @@ -0,0 +1,59 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.s3.internal.endpoints; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertNull; +import static org.junit.Assert.assertTrue; + +import org.junit.Test; +import software.amazon.awssdk.http.SdkHttpFullRequest; +import software.amazon.awssdk.http.SdkHttpMethod; +import software.amazon.awssdk.regions.Region; +import software.amazon.awssdk.services.s3.S3Configuration; +import software.amazon.awssdk.services.s3.model.PutObjectRequest; + +public class S3EndpointResolverContextTest { + + @Test + public void toBuilder_minimal() { + S3EndpointResolverContext context = S3EndpointResolverContext.builder().build(); + assertFalse(context.endpointOverridden()); + assertNull(context.originalRequest()); + assertNull(context.region()); + assertNull(context.serviceConfiguration()); + assertNull(context.request()); + } + + @Test + public void toBuilder_maximal() { + S3Configuration serviceConfiguration = S3Configuration.builder().build(); + SdkHttpFullRequest httpRequest = SdkHttpFullRequest.builder().protocol("http").host("host").method(SdkHttpMethod.POST).build(); + S3EndpointResolverContext context = S3EndpointResolverContext.builder() + .endpointOverridden(true) + .originalRequest(PutObjectRequest.builder().build()) + .region(Region.US_EAST_1) + .serviceConfiguration(serviceConfiguration) + .request(httpRequest) + .build(); + assertTrue(context.endpointOverridden()); + assertThat(context.originalRequest()).isInstanceOf(PutObjectRequest.class); + assertThat(context.region()).isEqualTo(Region.US_EAST_1); + assertThat(context.serviceConfiguration()).isEqualTo(serviceConfiguration); + assertThat(context.request()).isEqualTo(httpRequest); + } +} diff --git a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointResolverFactoryTest.java b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointResolverFactoryTest.java new file mode 100644 index 000000000000..ad5f86b8dd06 --- /dev/null +++ b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointResolverFactoryTest.java @@ -0,0 +1,47 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.s3.internal.endpoints; + +import static org.assertj.core.api.Assertions.assertThat; + +import org.junit.Test; + +public class S3EndpointResolverFactoryTest { + + @Test + public void nullBucketName_returnsBucketEndpointResolver() { + assertThat(S3EndpointResolverFactory.getEndpointResolver(null)).isInstanceOf(S3BucketEndpointResolver.class); + } + + @Test + public void emptyBucketName_returnsBucketEndpointResolver() { + String bucketName = ""; + assertThat(S3EndpointResolverFactory.getEndpointResolver(bucketName)).isInstanceOf(S3BucketEndpointResolver.class); + } + + @Test + public void nonAccessPointBucketName_returnsBucketEndpointResolver() { + String bucketName = "test-bucket"; + assertThat(S3EndpointResolverFactory.getEndpointResolver(bucketName)).isInstanceOf(S3BucketEndpointResolver.class); + } + + @Test + public void accessPointBucketName_returnsAccessPointEndpointResolver() { + String bucketName = "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar"; + assertThat(S3EndpointResolverFactory.getEndpointResolver(bucketName)).isInstanceOf(S3AccessPointEndpointResolver.class); + } + +} diff --git a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointUtilsTest.java b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointUtilsTest.java new file mode 100644 index 000000000000..c2983aef2d12 --- /dev/null +++ b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/endpoints/S3EndpointUtilsTest.java @@ -0,0 +1,124 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.s3.internal.endpoints; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; + +import java.net.URI; +import org.junit.Test; +import software.amazon.awssdk.http.SdkHttpFullRequest; +import software.amazon.awssdk.http.SdkHttpRequest; +import software.amazon.awssdk.services.s3.S3Configuration; +import software.amazon.awssdk.services.s3.model.ListBucketsRequest; +import software.amazon.awssdk.services.s3.model.PutObjectRequest; + +public class S3EndpointUtilsTest { + + @Test + public void removesFipsIfNeeded() { + assertThat(S3EndpointUtils.removeFipsIfNeeded("fips-us-east-1")).isEqualTo("us-east-1"); + assertThat(S3EndpointUtils.removeFipsIfNeeded("us-east-1-fips")).isEqualTo("us-east-1"); + } + + @Test + public void isFipsRegion() { + assertTrue(S3EndpointUtils.isFipsRegion("fips-us-east-1")); + assertTrue(S3EndpointUtils.isFipsRegion("us-east-1-fips")); + assertFalse(S3EndpointUtils.isFipsRegion("us-fips-1")); + } + + @Test + public void isFipsRegionProvided() { + assertTrue(S3EndpointUtils.isFipsRegionProvided("fips-us-east-1", "us-east-1", false)); + assertFalse(S3EndpointUtils.isFipsRegionProvided("us-east-1", "fips-us-east-1", false)); + assertTrue(S3EndpointUtils.isFipsRegionProvided("us-east-1", "us-east-1-fips", true)); + assertFalse(S3EndpointUtils.isFipsRegionProvided("us-east-1-fips", "us-east-1", true)); + } + + @Test + public void isAccelerateEnabled() { + assertFalse(S3EndpointUtils.isAccelerateEnabled(S3Configuration.builder().build())); + assertFalse(S3EndpointUtils.isAccelerateEnabled(null)); + assertFalse(S3EndpointUtils.isAccelerateEnabled(S3Configuration.builder().accelerateModeEnabled(false).build())); + assertTrue(S3EndpointUtils.isAccelerateEnabled(S3Configuration.builder().accelerateModeEnabled(true).build())); + } + + @Test + public void isAccelerateSupported() { + assertFalse(S3EndpointUtils.isAccelerateSupported(ListBucketsRequest.builder().build())); + assertTrue(S3EndpointUtils.isAccelerateSupported(PutObjectRequest.builder().build())); + } + + @Test + public void accelerateEndpoint() { + assertThat(S3EndpointUtils.accelerateEndpoint(S3Configuration.builder().build(), + "domain", + "https")) + .isEqualTo(URI.create("https://s3-accelerate.domain")); + + assertThat(S3EndpointUtils.accelerateEndpoint(S3Configuration.builder().dualstackEnabled(true).build(), + "domain", + "https")) + .isEqualTo(URI.create("https://s3-accelerate.dualstack.domain")); + } + + @Test + public void isDualstackEnabled() { + assertFalse(S3EndpointUtils.isDualstackEnabled(S3Configuration.builder().build())); + assertFalse(S3EndpointUtils.isDualstackEnabled(null)); + assertFalse(S3EndpointUtils.isDualstackEnabled(S3Configuration.builder().dualstackEnabled(false).build())); + assertTrue(S3EndpointUtils.isDualstackEnabled(S3Configuration.builder().dualstackEnabled(true).build())); + } + + @Test + public void dualStackEndpoint() { + assertThat(S3EndpointUtils.dualstackEndpoint("id", "domain", "https")) + .isEqualTo(URI.create("https://s3.dualstack.id.domain")); + } + + @Test + public void isPathstyleAccessEnabled() { + assertFalse(S3EndpointUtils.isPathStyleAccessEnabled(S3Configuration.builder().build())); + assertFalse(S3EndpointUtils.isPathStyleAccessEnabled(null)); + assertFalse(S3EndpointUtils.isPathStyleAccessEnabled(S3Configuration.builder().pathStyleAccessEnabled(false).build())); + assertTrue(S3EndpointUtils.isPathStyleAccessEnabled(S3Configuration.builder().pathStyleAccessEnabled(true).build())); + } + + @Test + public void isArnRegionEnabled() { + assertFalse(S3EndpointUtils.isArnRegionEnabled(S3Configuration.builder().build())); + assertFalse(S3EndpointUtils.isArnRegionEnabled(null)); + assertFalse(S3EndpointUtils.isArnRegionEnabled(S3Configuration.builder().useArnRegionEnabled(false).build())); + assertTrue(S3EndpointUtils.isArnRegionEnabled(S3Configuration.builder().useArnRegionEnabled(true).build())); + } + + @Test + public void changeToDnsEndpoint() { + SdkHttpRequest.Builder mutableRequest = SdkHttpFullRequest.builder().host("s3").encodedPath("/test-bucket"); + S3EndpointUtils.changeToDnsEndpoint(mutableRequest, "test-bucket"); + assertThat(mutableRequest.host()).isEqualTo("test-bucket.s3"); + assertThat(mutableRequest.encodedPath()).isEqualTo(""); + } + + @Test + public void isArn() { + assertFalse(S3EndpointUtils.isArn("bucketName")); + assertFalse(S3EndpointUtils.isArn("test:arn:")); + assertTrue(S3EndpointUtils.isArn("arn:test")); + } +} diff --git a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/handlers/EndpointAddressInterceptorTest.java b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/handlers/EndpointAddressInterceptorTest.java index 47cba5b80f0f..c6c20fb17057 100644 --- a/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/handlers/EndpointAddressInterceptorTest.java +++ b/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/handlers/EndpointAddressInterceptorTest.java @@ -16,7 +16,6 @@ package software.amazon.awssdk.services.s3.internal.handlers; import static org.assertj.core.api.Assertions.assertThat; -import static org.assertj.core.api.Assertions.assertThatThrownBy; import static software.amazon.awssdk.auth.signer.AwsSignerExecutionAttribute.SERVICE_SIGNING_NAME; import static software.amazon.awssdk.auth.signer.AwsSignerExecutionAttribute.SIGNING_REGION; import static software.amazon.awssdk.awscore.AwsExecutionAttribute.AWS_REGION; @@ -24,704 +23,85 @@ import static software.amazon.awssdk.utils.http.SdkHttpUtils.urlEncode; import java.net.URI; -import java.util.Optional; +import org.junit.Before; import org.junit.Test; -import software.amazon.awssdk.auth.signer.AwsSignerExecutionAttribute; -import software.amazon.awssdk.core.SdkRequest; -import software.amazon.awssdk.core.async.AsyncRequestBody; import software.amazon.awssdk.core.interceptor.Context; import software.amazon.awssdk.core.interceptor.ExecutionAttributes; -import software.amazon.awssdk.core.sync.RequestBody; -import software.amazon.awssdk.http.SdkHttpFullRequest; -import software.amazon.awssdk.http.SdkHttpMethod; import software.amazon.awssdk.http.SdkHttpRequest; import software.amazon.awssdk.regions.Region; import software.amazon.awssdk.services.s3.S3Configuration; -import software.amazon.awssdk.services.s3.model.CreateBucketRequest; -import software.amazon.awssdk.services.s3.model.DeleteBucketRequest; -import software.amazon.awssdk.services.s3.model.ListBucketsRequest; -import software.amazon.awssdk.services.s3.model.ListObjectsV2Request; import software.amazon.awssdk.services.s3.model.PutObjectRequest; +import software.amazon.awssdk.services.s3.utils.InterceptorTestUtils; public class EndpointAddressInterceptorTest { - private final EndpointAddressInterceptor interceptor = new EndpointAddressInterceptor(); + private static final String AP_ARN = "arn:aws:s3:us-west-2:123456789012:accesspoint:foobar"; + private static final String OUTPOSTS_ARN = "arn:aws:s3-outposts:us-west-2:123456789012:outpost:op-01234567890123456" + + ":accesspoint:myaccesspoint"; + private static final String KEY = "test-key"; + private static final String DEFAULT_SIGNING_NAME = "s3"; + private static final String OUTPOSTS_SIGNING_NAME = "s3-outposts"; + private static final Region DEFAULT_REGION = Region.US_WEST_2; - @Test - public void traditionalEndpoint_shouldNotConvertEndpoint() { - verifyEndpoint("http", "http://s3-test.com", - S3Configuration.builder()); - - verifyEndpoint("https", "https://s3-test.com", - S3Configuration.builder()); - } - - @Test - public void accelerateEnabled_shouldConvertToAccelerateEndpoint() { - verifyEndpoint("http", "http://s3-accelerate.amazonaws.com", - S3Configuration.builder().accelerateModeEnabled(true)); - verifyEndpoint("https", "https://s3-accelerate.amazonaws.com", - S3Configuration.builder().accelerateModeEnabled(true)); - } - - @Test - public void bothAccelerateDualstackEnabled_shouldConvertToAccelerateDualstackEndpoint() { - S3Configuration.Builder configurationBuilder = S3Configuration.builder() - .dualstackEnabled(true) - .accelerateModeEnabled(true); - verifyEndpoint("http", - "http://s3-accelerate.dualstack.amazonaws.com", - S3Configuration.builder() - .accelerateModeEnabled(true) - .dualstackEnabled(true) - ); - verifyEndpoint("https", - "https://s3-accelerate.dualstack.amazonaws.com", - configurationBuilder); - } - - @Test - public void accelerateEnabled_ListBucketRequest_shouldNotConvertToAccelerateEndpoint() { - verifyAccelerateDisabledOperationsEndpointNotConverted(ListBucketsRequest.builder().build()); - } - - @Test - public void accelerateEnabled_CreateBucketsRequest_shouldNotConvertToAccelerateEndpoint() { - verifyAccelerateDisabledOperationsEndpointNotConverted(CreateBucketRequest.builder().build()); - } - - @Test - public void accelerateEnabled_DeleteBucketRequest_shouldNotConvertToAccelerateEndpoint() { - verifyAccelerateDisabledOperationsEndpointNotConverted(DeleteBucketRequest.builder().build()); - } - - @Test - public void dualstackEnabled_shouldConvertToDualstackEndpoint() { - verifyEndpoint("http", "http://s3.dualstack.us-east-1.amazonaws.com", - S3Configuration.builder().dualstackEnabled(true)); - verifyEndpoint("https", "https://s3.dualstack.us-east-1.amazonaws.com", - S3Configuration.builder().dualstackEnabled(true)); - } - - @Test - public void virtualStyle_shouldConvertToDnsEndpoint() { - verifyVirtualStyleConvertDnsEndpoint("https"); - verifyVirtualStyleConvertDnsEndpoint("http"); - } - - @Test - public void pathStyleAccessEnabled_shouldNotConvertToDnsEndpoint() { - verifyEndpoint("http", "http://s3-test.com", - S3Configuration.builder().pathStyleAccessEnabled(true)); - verifyEndpoint("https", "https://s3-test.com", - S3Configuration.builder().pathStyleAccessEnabled(true)); - } - - @Test - public void accesspointArn_shouldConvertEndpoint() { - verifyAccesspointArn("http", - "arn:aws:s3:us-east-1:12345678910:accesspoint:foobar", - "http://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", - S3Configuration.builder()); - verifyAccesspointArn("https", - "arn:aws:s3:us-east-1:12345678910:accesspoint:foobar", - "https://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", - S3Configuration.builder()); - } - - @Test - public void accesspointArn_futureUnknownRegion_US_correctlyInfersPartition() { - verifyAccesspointArn("http", - "arn:aws:s3:us-future-1:12345678910:accesspoint:foobar", - "http://foobar-12345678910.s3-accesspoint.us-future-1.amazonaws.com", - Region.of("us-future-1"), - S3Configuration.builder(), - Region.of("us-future-1")); - } - - @Test - public void accesspointArn_futureUnknownRegion_crossRegion_correctlyInfersPartition() { - verifyAccesspointArn("http", - "arn:aws:s3:us-future-2:12345678910:accesspoint:foobar", - "http://foobar-12345678910.s3-accesspoint.us-future-2.amazonaws.com", - Region.of("us-future-2"), - S3Configuration.builder().useArnRegionEnabled(true), - Region.of("us-future-1")); - } - - @Test - public void accesspointArn_futureUnknownRegion_CN_correctlyInfersPartition() { - verifyAccesspointArn("http", - "arn:aws-cn:s3:cn-future-1:12345678910:accesspoint:foobar", - "http://foobar-12345678910.s3-accesspoint.cn-future-1.amazonaws.com.cn", - Region.of("cn-future-1"), - S3Configuration.builder(), - Region.of("cn-future-1")); - } - - @Test - public void accesspointArn_futureUnknownRegionAndPartition_defaultsToAws() { - verifyAccesspointArn("http", - "arn:aws:s3:unknown:12345678910:accesspoint:foobar", - "http://foobar-12345678910.s3-accesspoint.unknown.amazonaws.com", - Region.of("unknown"), - S3Configuration.builder(), - Region.of("unknown")); - } - - @Test - public void malformedArn_throwsIllegalArgumentException() { - assertThatThrownBy(() -> verifyAccesspointArn("http", - "arn:foobar", - null, - S3Configuration.builder())) - .isInstanceOf(IllegalArgumentException.class) - .hasMessageContaining("ARN"); - } - - @Test - public void unsupportedArn_throwsIllegalArgumentException() { - assertThatThrownBy(() -> verifyAccesspointArn("http", - "arn:aws:s3:us-east-1:12345678910:unsupported:foobar", - null, - S3Configuration.builder())) - .isInstanceOf(IllegalArgumentException.class) - .hasMessageContaining("ARN"); - } - - @Test - public void accesspointArn_invalidPartition_throwsIllegalArgumentException() { - assertThatThrownBy(() -> verifyAccesspointArn("http", - "arn:bar:s3:us-east-1:12345678910:accesspoint:foobar", - null, - S3Configuration.builder())) - .isInstanceOf(IllegalArgumentException.class) - .hasMessageContaining("bar"); - } - - @Test - public void bucketArn_throwsIllegalArgumentException() { - assertThatThrownBy(() -> verifyAccesspointArn("http", - "arn:aws:s3:us-east-1:12345678910:bucket_name:foobar", - null, - S3Configuration.builder())) - .isInstanceOf(IllegalArgumentException.class) - .hasMessageContaining("bucket parameter"); - } - - - @Test - public void accesspointArn_withSlashes_shouldConvertEndpoint() { - verifyAccesspointArn("http", - "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", - "http://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", - S3Configuration.builder()); - verifyAccesspointArn("https", - "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", - "https://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", - S3Configuration.builder()); - } - - @Test - public void accesspointArn_withDualStackEnabled_shouldConvertEndpoint() { - verifyAccesspointArn("http", - "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", - "http://foobar-12345678910.s3-accesspoint.dualstack.us-east-1.amazonaws.com", - S3Configuration.builder().dualstackEnabled(true)); - verifyAccesspointArn("https", - "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", - "https://foobar-12345678910.s3-accesspoint.dualstack.us-east-1.amazonaws.com", - S3Configuration.builder().dualstackEnabled(true)); - } - - @Test - public void accesspointArn_withCnPartition_shouldConvertEndpoint() { - verifyAccesspointArn("http", - "arn:aws-cn:s3:cn-north-1:12345678910:accesspoint:foobar", - "http://foobar-12345678910.s3-accesspoint.cn-north-1.amazonaws.com.cn", - Region.of("cn-north-1"), - S3Configuration.builder(), - Region.of("cn-north-1")); - verifyAccesspointArn("https", - "arn:aws-cn:s3:cn-north-1:12345678910:accesspoint:foobar", - "https://foobar-12345678910.s3-accesspoint.cn-north-1.amazonaws.com.cn", - Region.of("cn-north-1"), - S3Configuration.builder(), - Region.of("cn-north-1")); - } - - @Test - public void accesspointArn_withDifferentPartition_useArnRegionEnabled_shouldThrowIllegalArgumentException() { - assertThatThrownBy(() -> verifyAccesspointArn("http", - "arn:aws-cn:s3:cn-north-1:12345678910:accesspoint:foobar", - "http://foobar-12345678910.s3-accesspoint.cn-north-1.amazonaws.com.cn", - Region.of("cn-north-1"), - S3Configuration.builder().useArnRegionEnabled(true), - Region.of("us-east-1"))) - .isInstanceOf(IllegalArgumentException.class) - .hasMessageContaining("partition"); - } - - @Test - public void accesspointArn_withFipsRegionPrefix_noFipsInArn_shouldConvertEndpoint() { - verifyAccesspointArn("http", - "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", - "http://foobar-12345678910.s3-accesspoint.fips-us-east-1.amazonaws.com", - Region.of("us-east-1"), - S3Configuration.builder(), - Region.of("fips-us-east-1")); - verifyAccesspointArn("https", - "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", - "https://foobar-12345678910.s3-accesspoint.fips-us-east-1.amazonaws.com", - Region.of("us-east-1"), - S3Configuration.builder(), - Region.of("fips-us-east-1")); - } - - @Test - public void accesspointArn_withFipsRegionPrefix_FipsInArn_shouldConvertEndpoint() { - verifyAccesspointArn("http", - "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", - "http://foobar-12345678910.s3-accesspoint.fips-us-east-1.amazonaws.com", - Region.of("fips-us-east-1"), - S3Configuration.builder(), - Region.of("fips-us-east-1")); - verifyAccesspointArn("https", - "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", - "https://foobar-12345678910.s3-accesspoint.fips-us-east-1.amazonaws.com", - Region.of("fips-us-east-1"), - S3Configuration.builder(), - Region.of("fips-us-east-1")); - } - - @Test - public void accesspointArn_withFipsRegionPrefix_noFipsInArn_useArnRegionEnabled_shouldConvertEndpoint() { - verifyAccesspointArn("http", - "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", - "http://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", - Region.of("us-east-1"), - S3Configuration.builder().useArnRegionEnabled(true), - Region.of("fips-us-east-1")); - verifyAccesspointArn("https", - "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", - "https://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", - Region.of("us-east-1"), - S3Configuration.builder().useArnRegionEnabled(true), - Region.of("fips-us-east-1")); - } - - - @Test - public void accesspointArn_withFipsRegionPrefix_FipsInArn_useArnRegionEnabled_shouldConvertEndpoint() { - verifyAccesspointArn("http", - "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", - "http://foobar-12345678910.s3-accesspoint.fips-us-east-1.amazonaws.com", - Region.of("fips-us-east-1"), - S3Configuration.builder().useArnRegionEnabled(true), - Region.of("fips-us-east-1")); - verifyAccesspointArn("https", - "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", - "https://foobar-12345678910.s3-accesspoint.fips-us-east-1.amazonaws.com", - Region.of("fips-us-east-1"), - S3Configuration.builder().useArnRegionEnabled(true), - Region.of("fips-us-east-1")); - } + private EndpointAddressInterceptor interceptor; - - - @Test - public void accesspointArn_withFipsRegionPrefix_ArnRegionNotMatches_shouldThrowIllegalArgumentException() { - assertThatThrownBy(() -> verifyAccesspointArn("http", - "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", - "http://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", - Region.of("us-east-1"), - S3Configuration.builder(), - Region.of("fips-us-gov-east-1"))) - .isInstanceOf(IllegalArgumentException.class) - .hasMessageContaining("The region field of the ARN being passed as a bucket parameter to an S3 operation does not match the region the client was configured with."); - assertThatThrownBy(() -> verifyAccesspointArn("https", - "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", - "https://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", - Region.of("us-east-1"), - S3Configuration.builder(), - Region.of("fips-us-gov-east-1"))) - .isInstanceOf(IllegalArgumentException.class) - .hasMessageContaining("The region field of the ARN being passed as a bucket parameter to an S3 operation does not match the region the client was configured with."); - } - - @Test - public void accesspointArn_withFipsRegionPrefix_noFipsInArn_DualstackEnabled_shouldConvertEndpoint() { - verifyAccesspointArn("http", - "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", - "http://foobar-12345678910.s3-accesspoint.dualstack.fips-us-east-1.amazonaws.com", - Region.of("us-east-1"), - S3Configuration.builder().dualstackEnabled(true), - Region.of("fips-us-east-1")); - verifyAccesspointArn("https", - "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", - "https://foobar-12345678910.s3-accesspoint.dualstack.fips-us-east-1.amazonaws.com", - Region.of("us-east-1"), - S3Configuration.builder().dualstackEnabled(true), - Region.of("fips-us-east-1")); - } - - @Test - public void accesspointArn_withFipsRegionPrefix_FipsInArn_DualStackEnabled_shouldConvertEndpoint() { - verifyAccesspointArn("http", - "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", - "http://foobar-12345678910.s3-accesspoint.dualstack.fips-us-east-1.amazonaws.com", - Region.of("fips-us-east-1"), - S3Configuration.builder().dualstackEnabled(true), - Region.of("fips-us-east-1")); - verifyAccesspointArn("https", - "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", - "https://foobar-12345678910.s3-accesspoint.dualstack.fips-us-east-1.amazonaws.com", - Region.of("fips-us-east-1"), - S3Configuration.builder().dualstackEnabled(true), - Region.of("fips-us-east-1")); - } - - @Test - public void accesspointArn_withFipsRegionSuffix_noFipsinArn_shouldConvertEndpoint() { - verifyAccesspointArn("http", - "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", - "http://foobar-12345678910.s3-accesspoint.fips-us-east-1.amazonaws.com", - Region.of("us-east-1"), - S3Configuration.builder(), - Region.of("us-east-1-fips")); - verifyAccesspointArn("https", - "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", - "https://foobar-12345678910.s3-accesspoint.fips-us-east-1.amazonaws.com", - Region.of("us-east-1"), - S3Configuration.builder(), - Region.of("us-east-1-fips")); - } - - @Test - public void accesspointArn_noFipsRegionPrefix_FipsInArn_shouldConvertEndpoint() { - verifyAccesspointArn("http", - "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", - "http://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", - Region.of("fips-us-east-1"), - S3Configuration.builder(), - Region.of("us-east-1")); - verifyAccesspointArn("https", - "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", - "https://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", - Region.of("fips-us-east-1"), - S3Configuration.builder(), - Region.of("us-east-1")); - } - - @Test - public void accesspointArn_noFipsRegionPrefix_FipsInArn_useArnRegionEnabled_shouldConvertEndpoint() { - verifyAccesspointArn("http", - "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", - "http://foobar-12345678910.s3-accesspoint.fips-us-east-1.amazonaws.com", - Region.of("fips-us-east-1"), - S3Configuration.builder().useArnRegionEnabled(true), - Region.of("us-east-1")); - verifyAccesspointArn("https", - "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", - "https://foobar-12345678910.s3-accesspoint.fips-us-east-1.amazonaws.com", - Region.of("fips-us-east-1"), - S3Configuration.builder().useArnRegionEnabled(true), - Region.of("us-east-1")); - } - - @Test - public void accesspointArn_noFipsRegionPrefix_FipsInArn_useArnRegionEnabled_DualstackEnabled_shouldConvertEndpoint() { - verifyAccesspointArn("http", - "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", - "http://foobar-12345678910.s3-accesspoint.dualstack.fips-us-east-1.amazonaws.com", - Region.of("fips-us-east-1"), - S3Configuration.builder().useArnRegionEnabled(true).dualstackEnabled(true), - Region.of("us-east-1")); - verifyAccesspointArn("https", - "arn:aws:s3:fips-us-east-1:12345678910:accesspoint/foobar", - "https://foobar-12345678910.s3-accesspoint.dualstack.fips-us-east-1.amazonaws.com", - Region.of("fips-us-east-1"), - S3Configuration.builder().useArnRegionEnabled(true).dualstackEnabled(true), - Region.of("us-east-1")); - } - - @Test - public void accesspointArn_withAccelerateEnabled_shouldThrowIllegalArgumentException() { - assertThatThrownBy(() -> verifyAccesspointArn("http", - "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", - "http://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", - Region.of("us-east-1"), - S3Configuration.builder().accelerateModeEnabled(true), - Region.of("us-east-1"))) - .isInstanceOf(IllegalArgumentException.class) - .hasMessageContaining("accelerate"); - } - - - @Test - public void accesspointArn_withPathStyleAddressingEnabled_shouldThrowIllegalArgumentException() { - assertThatThrownBy(() -> verifyAccesspointArn("http", - "arn:aws:s3:us-east-1:12345678910:accesspoint/foobar", - "http://foobar-12345678910.s3-accesspoint.us-east-1.amazonaws.com", - Region.of("us-east-1"), - S3Configuration.builder().pathStyleAccessEnabled(true), - Region.of("us-east-1"))) - .isInstanceOf(IllegalArgumentException.class) - .hasMessageContaining("path style"); - } - - @Test - public void outpostAccessPointArn_shouldConvertEndpoint() { - - verifyAccesspointArn("http", - "arn:aws:s3-outposts:us-west-2:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint", - "http://myaccesspoint-123456789012.op-01234567890123456.s3-outposts.us-west-2.amazonaws.com", - Region.of("us-west-2"), - S3Configuration.builder(), - Region.of("us-west-2")); - - verifyAccesspointArn("https", - "arn:aws:s3-outposts:us-west-2:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint", - "https://myaccesspoint-123456789012.op-01234567890123456.s3-outposts.us-west-2.amazonaws.com", - Region.of("us-west-2"), - S3Configuration.builder(), - Region.of("us-west-2")); - } - - @Test - public void outpostAccessPointArn_futureUnknownRegion_US_correctlyInfersPartition() { - verifyAccesspointArn("http", - "arn:aws:s3-outposts:us-future-2:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint", - "http://myaccesspoint-123456789012.op-01234567890123456.s3-outposts.us-future-2.amazonaws.com", - Region.of("us-future-2"), - S3Configuration.builder(), - Region.of("us-future-2")); - } - - @Test - public void outpostAccessPointArn_futureUnknownRegion_crossRegion_correctlyInfersPartition() { - verifyAccesspointArn("http", - "arn:aws:s3-outposts:us-future-2:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint", - "http://myaccesspoint-123456789012.op-01234567890123456.s3-outposts.us-future-2.amazonaws.com", - Region.of("us-future-2"), - S3Configuration.builder().useArnRegionEnabled(true), - Region.of("us-future-1")); - } - - @Test - public void outpostAccessPointArn_futureUnknownRegion_CN_correctlyInfersPartition() { - verifyAccesspointArn("http", - "arn:aws-cn:s3-outposts:cn-future-1:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint", - "http://myaccesspoint-123456789012.op-01234567890123456.s3-outposts.cn-future-1.amazonaws.com.cn", - Region.of("cn-future-1"), - S3Configuration.builder(), - Region.of("cn-future-1")); - } - - @Test - public void outpostAccessPointArn_futureUnknownRegionAndPartition_defaultsToAws() { - verifyAccesspointArn("http", - "arn:aws:s3-outposts:unknown:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint", - "http://myaccesspoint-123456789012.op-01234567890123456.s3-outposts.unknown.amazonaws.com", - Region.of("unknown"), - S3Configuration.builder(), - Region.of("unknown")); + @Before + public void setUp() throws Exception { + interceptor = new EndpointAddressInterceptor(); } @Test - public void outpostAccessPointArn_invalidPartition_throwsIllegalArgumentException() { - assertThatThrownBy(() -> verifyAccesspointArn("http", - "arn:bar:s3-outposts:us-east-1:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint", - null, - S3Configuration.builder())) - .isInstanceOf(IllegalArgumentException.class) - .hasMessageContaining("bar"); - } + public void accesspointArn_shouldReturnStandardRequest() { + ExecutionAttributes executionAttributes = createExecutionAttributes(S3Configuration.builder(), DEFAULT_REGION); + SdkHttpRequest sdkHttpFullRequest = interceptor.modifyHttpRequest(createContext(AP_ARN), executionAttributes); - @Test - public void outpostAccessPointArn_differentRegionWithoutUseArnRegion_throwsIllegalArgumentException() { - assertThatThrownBy(() -> verifyAccesspointArn("http", - "arn:bar:aws-outposts:us-west-2:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint", - null, - S3Configuration.builder())) - .isInstanceOf(IllegalArgumentException.class) - .hasMessageContaining("region"); - } - - @Test - public void outpostAccessPointArn_fipsEnabled_throwsIllegalArgumentException() { - assertThatThrownBy(() -> verifyAccesspointArn("http", - "arn:aws:s3-outposts:us-east-1:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint", - null, - Region.of("us-east-1"), - S3Configuration.builder().useArnRegionEnabled(true), - Region.of("fips-us-east-1"))) - .isInstanceOf(IllegalArgumentException.class) - .hasMessageContaining("FIPS"); + String expectedEndpoint = "http://foobar-123456789012.s3-accesspoint.us-west-2.amazonaws.com"; + assertThat(sdkHttpFullRequest.getUri()).isEqualTo(uri(expectedEndpoint)); + assertThat(executionAttributes.getAttribute(SIGNING_REGION)).isEqualTo(Region.US_WEST_2); + assertThat(executionAttributes.getAttribute(SERVICE_SIGNING_NAME)).isEqualTo(DEFAULT_SIGNING_NAME); } @Test - public void outpostAccessPointArn_dualStackEnabled_throwsIllegalArgumentException() { - assertThatThrownBy(() -> verifyAccesspointArn("http", - "arn:aws:s3-outposts:us-east-1:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint", - null, - Region.of("us-east-1"), - S3Configuration.builder().dualstackEnabled(true), - Region.of("us-east-1"))) - .isInstanceOf(IllegalArgumentException.class) - .hasMessageContaining("dualstack"); - } + public void outpostAccessPointArn_sameRegion_shouldRegion() { + ExecutionAttributes executionAttributes = createExecutionAttributes(S3Configuration.builder(), DEFAULT_REGION); + SdkHttpRequest sdkHttpFullRequest = interceptor.modifyHttpRequest(createContext(OUTPOSTS_ARN), executionAttributes); - @Test - public void outpostAccessPointArn_accelerateEnabled_throwsIllegalArgumentException() { - assertThatThrownBy(() -> verifyAccesspointArn("http", - "arn:aws:s3-outposts:us-east-1:123456789012:outpost:op-01234567890123456:accesspoint:myaccesspoint", - null, - Region.of("us-east-1"), - S3Configuration.builder().accelerateModeEnabled(true), - Region.of("us-east-1"))) - .isInstanceOf(IllegalArgumentException.class) - .hasMessageContaining("accelerate"); + String expectedEndpoint = "http://myaccesspoint-123456789012.op-01234567890123456.s3-outposts.us-west-2.amazonaws.com"; + assertThat(sdkHttpFullRequest.getUri()).isEqualTo(uri(expectedEndpoint)); + assertThat(executionAttributes.getAttribute(SIGNING_REGION)).isEqualTo(Region.US_WEST_2); + assertThat(executionAttributes.getAttribute(SERVICE_SIGNING_NAME)).isEqualTo(OUTPOSTS_SIGNING_NAME); } @Test - public void outpostAccessPointArn_ArnMissingAccesspointName_throwsIllegalArgumentException() { - assertThatThrownBy(() -> verifyAccesspointArn("http", - "arn:aws:s3-outposts:us-west-2:123456789012:outpost:op-01234567890123456", - null, - Region.of("us-east-1"), - S3Configuration.builder().accelerateModeEnabled(true), - Region.of("us-east-1"))) - .isInstanceOf(IllegalArgumentException.class) - .hasMessageContaining("Invalid format"); - } - - private void verifyVirtualStyleConvertDnsEndpoint(String protocol) { - String bucketName = "test-bucket"; - String key = "test-key"; - URI customUri = URI.create(String.format("%s://s3-test.com/%s/%s", protocol, bucketName, key)); - URI expectedUri = URI.create(String.format("%s://%s.s3.dualstack.us-east-1.amazonaws.com/%s", protocol, - bucketName, key)); - - Context.ModifyHttpRequest ctx = context(ListObjectsV2Request.builder().bucket(bucketName).build(), - sdkHttpRequest(customUri)); - ExecutionAttributes executionAttributes = new ExecutionAttributes(); - S3Configuration s3Configuration = S3Configuration.builder().dualstackEnabled(true).build(); - - executionAttributes.putAttribute(SERVICE_CONFIG, s3Configuration); - executionAttributes.putAttribute(AWS_REGION, Region.US_EAST_1); - - SdkHttpRequest sdkHttpFullRequest = interceptor.modifyHttpRequest(ctx, executionAttributes); - - assertThat(sdkHttpFullRequest.getUri()).isEqualTo(expectedUri); - } + public void outpostAccessPointArn_crossRegion_ArnRegionEnabled_correctlyInfersPartition() { + ExecutionAttributes executionAttributes = createExecutionAttributes(S3Configuration.builder().useArnRegionEnabled(true), + Region.US_EAST_1); + SdkHttpRequest sdkHttpFullRequest = interceptor.modifyHttpRequest(createContext(OUTPOSTS_ARN), executionAttributes); - private SdkHttpRequest sdkHttpRequest(URI customUri) { - return SdkHttpFullRequest.builder() - .protocol(customUri.getScheme()) - .host(customUri.getHost()) - .port(customUri.getPort()) - .method(SdkHttpMethod.GET) - .encodedPath(customUri.getPath()) - .build(); + String expectedEndpoint = "http://myaccesspoint-123456789012.op-01234567890123456.s3-outposts.us-west-2.amazonaws.com"; + assertThat(sdkHttpFullRequest.getUri()).isEqualTo(uri(expectedEndpoint)); + assertThat(executionAttributes.getAttribute(SIGNING_REGION)).isEqualTo(Region.US_WEST_2); + assertThat(executionAttributes.getAttribute(SERVICE_SIGNING_NAME)).isEqualTo(OUTPOSTS_SIGNING_NAME); } - private void verifyAccelerateDisabledOperationsEndpointNotConverted(SdkRequest request) { - URI customUri = URI.create("http://s3-test.com"); - Context.ModifyHttpRequest ctx = context(request, sdkHttpRequest(customUri)); - ExecutionAttributes executionAttributes = new ExecutionAttributes(); - S3Configuration s3Configuration = S3Configuration.builder().accelerateModeEnabled(true).build(); - - executionAttributes.putAttribute(SERVICE_CONFIG, s3Configuration); - executionAttributes.putAttribute(AWS_REGION, Region.US_EAST_1); - - SdkHttpRequest sdkHttpFullRequest = interceptor.modifyHttpRequest(ctx, executionAttributes); - - assertThat(sdkHttpFullRequest.getUri()).isEqualTo(customUri); - } + private Context.ModifyHttpRequest createContext(String accessPointArn) { + URI customUri = URI.create(String.format("http://s3-test.com/%s/%s", urlEncode(accessPointArn), KEY)); + PutObjectRequest request = PutObjectRequest.builder().bucket(accessPointArn).key(KEY).build(); - private void verifyEndpoint(String protocol, String expectedEndpoint, - S3Configuration.Builder builder) { - String bucket = "test-bucket"; - String key = "test-key"; - URI customUri = URI.create(String.format("%s://s3-test.com/%s/%s", protocol, bucket, key)); - URI expectedUri = URI.create(String.format("%s/%s/%s", expectedEndpoint, bucket, key)); - Context.ModifyHttpRequest ctx = context(PutObjectRequest.builder().build(), sdkHttpRequest(customUri)); - ExecutionAttributes executionAttributes = new ExecutionAttributes(); - S3Configuration s3Configuration = builder.build(); - - executionAttributes.putAttribute(SERVICE_CONFIG, s3Configuration); - executionAttributes.putAttribute(AWS_REGION, Region.US_EAST_1); - - SdkHttpRequest sdkHttpFullRequest = interceptor.modifyHttpRequest(ctx, executionAttributes); - - assertThat(sdkHttpFullRequest.getUri()).isEqualTo(expectedUri); + return InterceptorTestUtils.modifyHttpRequestContext(request, InterceptorTestUtils.sdkHttpRequest(customUri)); } - private void verifyAccesspointArn(String protocol, String accessPointArn, String expectedEndpoint, - Region expectedSigningRegion, - S3Configuration.Builder builder, Region region) { - String key = "test-key"; - - URI customUri = URI.create(String.format("%s://s3-test.com/%s/%s", protocol, urlEncode(accessPointArn), key)); - URI expectedUri = URI.create(String.format("%s/%s", expectedEndpoint, key)); - PutObjectRequest putObjectRequest = PutObjectRequest.builder() - .bucket(accessPointArn) - .key(key) - .build(); - Context.ModifyHttpRequest ctx = context(putObjectRequest, sdkHttpRequest(customUri)); + private ExecutionAttributes createExecutionAttributes(S3Configuration.Builder builder, Region region) { ExecutionAttributes executionAttributes = new ExecutionAttributes(); - S3Configuration s3Configuration = builder.build(); - - executionAttributes.putAttribute(SERVICE_CONFIG, s3Configuration); + executionAttributes.putAttribute(SERVICE_CONFIG, builder.build()); executionAttributes.putAttribute(AWS_REGION, region); executionAttributes.putAttribute(SIGNING_REGION, region); - executionAttributes.putAttribute(SERVICE_SIGNING_NAME, "s3"); - - SdkHttpRequest sdkHttpFullRequest = interceptor.modifyHttpRequest(ctx, executionAttributes); - - assertThat(executionAttributes.getAttribute(SIGNING_REGION)) - .isEqualTo(expectedSigningRegion); - assertThat(sdkHttpFullRequest.getUri()).isEqualTo(expectedUri); - - String expectedSigningName; - if (accessPointArn.contains(":s3-outposts")) { - expectedSigningName = "s3-outposts"; - } else { - expectedSigningName = "s3"; - } - assertThat(executionAttributes.getAttribute(SERVICE_SIGNING_NAME)) - .isEqualTo(expectedSigningName); - } - - - private void verifyAccesspointArn(String protocol, String accessPointArn, String expectedEndpoint, - S3Configuration.Builder builder) { - verifyAccesspointArn(protocol, accessPointArn, expectedEndpoint, Region.US_EAST_1, builder, Region.US_EAST_1); + executionAttributes.putAttribute(SERVICE_SIGNING_NAME, DEFAULT_SIGNING_NAME); + return executionAttributes; } - private Context.ModifyHttpRequest context(SdkRequest request, SdkHttpRequest sdkHttpRequest) { - return new Context.ModifyHttpRequest() { - @Override - public SdkHttpRequest httpRequest() { - return sdkHttpRequest; - } - - @Override - public Optional requestBody() { - return null; - } - - @Override - public Optional asyncRequestBody() { - return null; - } - - @Override - public SdkRequest request() { - return request; - } - }; + private URI uri(String expectedEndpoint) { + return URI.create(String.format("%s/%s", expectedEndpoint, KEY)); } } diff --git a/services/s3/src/test/java/software/amazon/awssdk/services/s3/utils/InterceptorTestUtils.java b/services/s3/src/test/java/software/amazon/awssdk/services/s3/utils/InterceptorTestUtils.java index 06c7efa12347..83e462042437 100644 --- a/services/s3/src/test/java/software/amazon/awssdk/services/s3/utils/InterceptorTestUtils.java +++ b/services/s3/src/test/java/software/amazon/awssdk/services/s3/utils/InterceptorTestUtils.java @@ -37,6 +37,23 @@ public final class InterceptorTestUtils { private InterceptorTestUtils() { } + public static SdkHttpFullRequest sdkHttpFullRequest() { + return SdkHttpFullRequest.builder() + .uri(URI.create("http://localhost:8080")) + .method(SdkHttpMethod.GET) + .build(); + } + + public static SdkHttpRequest sdkHttpRequest(URI customUri) { + return SdkHttpFullRequest.builder() + .protocol(customUri.getScheme()) + .host(customUri.getHost()) + .port(customUri.getPort()) + .method(SdkHttpMethod.GET) + .encodedPath(customUri.getPath()) + .build(); + } + public static Context.ModifyHttpResponse modifyHttpResponse(SdkRequest request, SdkHttpResponse sdkHttpResponse) { Publisher publisher = new EmptyPublisher<>(); @@ -116,13 +133,6 @@ public SdkRequest request() { }; } - public static SdkHttpFullRequest sdkHttpFullRequest() { - return SdkHttpFullRequest.builder() - .uri(URI.create("http://localhost:8080")) - .method(SdkHttpMethod.GET) - .build(); - } - public static Context.ModifyResponse modifyResponseContext(SdkRequest request, SdkResponse response, SdkHttpResponse sdkHttpResponse) { return new Context.ModifyResponse() { @Override From fc454ddbe839416a1dba9ebe5f5ad2bc90ebbacf Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 20 Oct 2020 18:03:49 +0000 Subject: [PATCH 037/339] AWS Batch Update: Adding evaluateOnExit to job retry strategies. --- .../feature-AWSBatch-93fecdf.json | 5 +++ .../codegen-resources/service-2.json | 42 ++++++++++++++++++- 2 files changed, 45 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AWSBatch-93fecdf.json diff --git a/.changes/next-release/feature-AWSBatch-93fecdf.json b/.changes/next-release/feature-AWSBatch-93fecdf.json new file mode 100644 index 000000000000..d29eda9315d5 --- /dev/null +++ b/.changes/next-release/feature-AWSBatch-93fecdf.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS Batch", + "description": "Adding evaluateOnExit to job retry strategies." +} diff --git a/services/batch/src/main/resources/codegen-resources/service-2.json b/services/batch/src/main/resources/codegen-resources/service-2.json index c4df3ebbef5d..f300782e00d2 100644 --- a/services/batch/src/main/resources/codegen-resources/service-2.json +++ b/services/batch/src/main/resources/codegen-resources/service-2.json @@ -556,7 +556,7 @@ }, "allocationStrategy":{ "shape":"CRAllocationStrategy", - "documentation":"

The allocation strategy to use for the compute resource in case not enough instances of the best fitting instance type can be allocated. This could be due to availability of the instance type in the region or Amazon EC2 service limits. If this is not specified, the default is BEST_FIT, which will use only the best fitting instance type, waiting for additional capacity if it's not available. This allocation strategy keeps costs lower but can limit scaling. If you are using Spot Fleets with BEST_FIT then the Spot Fleet IAM Role must be specified. BEST_FIT_PROGRESSIVE will select additional instance types that are large enough to meet the requirements of the jobs in the queue, with a preference for instance types with a lower cost per vCPU. SPOT_CAPACITY_OPTIMIZED is only available for Spot Instance compute resources and will select additional instance types that are large enough to meet the requirements of the jobs in the queue, with a preference for instance types that are less likely to be interrupted. For more information, see Allocation Strategies in the AWS Batch User Guide.

" + "documentation":"

The allocation strategy to use for the compute resource in case not enough instances of the best fitting instance type can be allocated. This could be due to availability of the instance type in the region or Amazon EC2 service limits. If this is not specified, the default is BEST_FIT, which will use only the best fitting instance type, waiting for additional capacity if it's not available. This allocation strategy keeps costs lower but can limit scaling. If you are using Spot Fleets with BEST_FIT then the Spot Fleet IAM Role must be specified. BEST_FIT_PROGRESSIVE will select additional instance types that are large enough to meet the requirements of the jobs in the queue, with a preference for instance types with a lower cost per vCPU. SPOT_CAPACITY_OPTIMIZED is only available for Spot Instance compute resources and will select additional instance types that are large enough to meet the requirements of the jobs in the queue, with a preference for instance types that are less likely to be interrupted. For more information, see Allocation Strategies in the AWS Batch User Guide.

" }, "minvCpus":{ "shape":"Integer", @@ -1154,6 +1154,33 @@ "type":"list", "member":{"shape":"KeyValuePair"} }, + "EvaluateOnExit":{ + "type":"structure", + "required":["action"], + "members":{ + "onStatusReason":{ + "shape":"String", + "documentation":"

Contains a glob pattern to match against the StatusReason returned for a job. The patten can be up to 512 characters long, can contain letters, numbers, periods (.), colons (:), and whitespace (spaces, tabs). and can optionally end with an asterisk (*) so that only the start of the string needs to be an exact match.

" + }, + "onReason":{ + "shape":"String", + "documentation":"

Contains a glob pattern to match against the Reason returned for a job. The patten can be up to 512 characters long, can contain letters, numbers, periods (.), colons (:), and whitespace (spaces, tabs), and can optionally end with an asterisk (*) so that only the start of the string needs to be an exact match.

" + }, + "onExitCode":{ + "shape":"String", + "documentation":"

Contains a glob pattern to match against the decimal representation of the ExitCode returned for a job. The patten can be up to 512 characters long, can contain only numbers, and can optionally end with an asterisk (*) so that only the start of the string needs to be an exact match.

" + }, + "action":{ + "shape":"RetryAction", + "documentation":"

Specifies the action to take if all of the specified conditions (onStatusReason, onReason, and onExitCode) are met.

" + } + }, + "documentation":"

Specifies a set of conditions to be met, and an action to take (RETRY or EXIT) if all conditions are met.

" + }, + "EvaluateOnExitList":{ + "type":"list", + "member":{"shape":"EvaluateOnExit"} + }, "Host":{ "type":"structure", "members":{ @@ -1548,7 +1575,7 @@ }, "maxSwap":{ "shape":"Integer", - "documentation":"

The total amount of swap memory (in MiB) a container can use. This parameter will be translated to the --memory-swap option to docker run where the value would be the sum of the container memory plus the maxSwap value.

If a maxSwap value of 0 is specified, the container will not use swap. Accepted values are 0 or any positive integer. If the maxSwap parameter is omitted, the container will use the swap configuration for the container instance it is running on. A maxSwap value must be set for the swappiness parameter to be used.

" + "documentation":"

The total amount of swap memory (in MiB) a container can use. This parameter will be translated to the --memory-swap option to docker run where the value would be the sum of the container memory plus the maxSwap value. For more information, see --memory-swap details in the Docker documentation.

If a maxSwap value of 0 is specified, the container will not use swap. Accepted values are 0 or any positive integer. If the maxSwap parameter is omitted, the container will use the swap configuration for the container instance it is running on. A maxSwap value must be set for the swappiness parameter to be used.

" }, "swappiness":{ "shape":"Integer", @@ -1903,12 +1930,23 @@ "type":"string", "enum":["GPU"] }, + "RetryAction":{ + "type":"string", + "enum":[ + "RETRY", + "EXIT" + ] + }, "RetryStrategy":{ "type":"structure", "members":{ "attempts":{ "shape":"Integer", "documentation":"

The number of times to move a job to the RUNNABLE status. You may specify between 1 and 10 attempts. If the value of attempts is greater than one, the job is retried on failure the same number of attempts as the value.

" + }, + "evaluateOnExit":{ + "shape":"EvaluateOnExitList", + "documentation":"

Array of up to 5 objects that specify conditions under which the job should be retried or failed. If this parameter is specified, then the attempts parameter must also be specified.

" } }, "documentation":"

The retry strategy associated with a job.

" From fd475b3de16eefb27d0c6571945736678b6f1d4c Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 20 Oct 2020 18:03:53 +0000 Subject: [PATCH 038/339] AWS Elastic Beanstalk Update: EnvironmentStatus enum update to include Aborting, LinkingFrom and LinkingTo --- .../next-release/feature-AWSElasticBeanstalk-427fe8e.json | 5 +++++ .../src/main/resources/codegen-resources/service-2.json | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 .changes/next-release/feature-AWSElasticBeanstalk-427fe8e.json diff --git a/.changes/next-release/feature-AWSElasticBeanstalk-427fe8e.json b/.changes/next-release/feature-AWSElasticBeanstalk-427fe8e.json new file mode 100644 index 000000000000..2f2d10db6c2a --- /dev/null +++ b/.changes/next-release/feature-AWSElasticBeanstalk-427fe8e.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS Elastic Beanstalk", + "description": "EnvironmentStatus enum update to include Aborting, LinkingFrom and LinkingTo" +} diff --git a/services/elasticbeanstalk/src/main/resources/codegen-resources/service-2.json b/services/elasticbeanstalk/src/main/resources/codegen-resources/service-2.json index 249e5a1cc288..6d2fcb8a6b05 100755 --- a/services/elasticbeanstalk/src/main/resources/codegen-resources/service-2.json +++ b/services/elasticbeanstalk/src/main/resources/codegen-resources/service-2.json @@ -2462,8 +2462,11 @@ "EnvironmentStatus":{ "type":"string", "enum":[ + "Aborting", "Launching", "Updating", + "LinkingFrom", + "LinkingTo", "Ready", "Terminating", "Terminated" From 4c09970e4e28070136f0e9297da0456aeb877dce Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 20 Oct 2020 18:03:52 +0000 Subject: [PATCH 039/339] AWS AppSync Update: Documentation updates to AppSync to correct several typos. --- .../next-release/feature-AWSAppSync-c2583d0.json | 5 +++++ .../resources/codegen-resources/service-2.json | 14 +++++++------- 2 files changed, 12 insertions(+), 7 deletions(-) create mode 100644 .changes/next-release/feature-AWSAppSync-c2583d0.json diff --git a/.changes/next-release/feature-AWSAppSync-c2583d0.json b/.changes/next-release/feature-AWSAppSync-c2583d0.json new file mode 100644 index 000000000000..0f6a95420f33 --- /dev/null +++ b/.changes/next-release/feature-AWSAppSync-c2583d0.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS AppSync", + "description": "Documentation updates to AppSync to correct several typos." +} diff --git a/services/appsync/src/main/resources/codegen-resources/service-2.json b/services/appsync/src/main/resources/codegen-resources/service-2.json index 30aa7340af4c..d0fb12696941 100644 --- a/services/appsync/src/main/resources/codegen-resources/service-2.json +++ b/services/appsync/src/main/resources/codegen-resources/service-2.json @@ -742,7 +742,7 @@ }, "apiCachingBehavior":{ "shape":"ApiCachingBehavior", - "documentation":"

Caching behavior.

  • FULL_REQUEST_CACHING: All requests are fully cached.

  • PER_RESOLVER_CACHING: Individual resovlers that you specify are cached.

" + "documentation":"

Caching behavior.

  • FULL_REQUEST_CACHING: All requests are fully cached.

  • PER_RESOLVER_CACHING: Individual resolvers that you specify are cached.

" }, "transitEncryptionEnabled":{ "shape":"Boolean", @@ -754,7 +754,7 @@ }, "type":{ "shape":"ApiCacheType", - "documentation":"

The cache instance type. Valid values are

  • SMALL

  • MEDIUM

  • LARGE

  • XLARGE

  • LARGE_2X

  • LARGE_4X

  • LARGE_8X (not available in all regions)

  • LARGE_12X

Historically, instance types were identified by an EC2-style value. As of July 2020, this is deprecated, and the generic identifiers above should be used.

The following legacy instance types are avaible, but their use is discouraged:

  • T2_SMALL: A t2.small instance type.

  • T2_MEDIUM: A t2.medium instance type.

  • R4_LARGE: A r4.large instance type.

  • R4_XLARGE: A r4.xlarge instance type.

  • R4_2XLARGE: A r4.2xlarge instance type.

  • R4_4XLARGE: A r4.4xlarge instance type.

  • R4_8XLARGE: A r4.8xlarge instance type.

" + "documentation":"

The cache instance type. Valid values are

  • SMALL

  • MEDIUM

  • LARGE

  • XLARGE

  • LARGE_2X

  • LARGE_4X

  • LARGE_8X (not available in all regions)

  • LARGE_12X

Historically, instance types were identified by an EC2-style value. As of July 2020, this is deprecated, and the generic identifiers above should be used.

The following legacy instance types are available, but their use is discouraged:

  • T2_SMALL: A t2.small instance type.

  • T2_MEDIUM: A t2.medium instance type.

  • R4_LARGE: A r4.large instance type.

  • R4_XLARGE: A r4.xlarge instance type.

  • R4_2XLARGE: A r4.2xlarge instance type.

  • R4_4XLARGE: A r4.4xlarge instance type.

  • R4_8XLARGE: A r4.8xlarge instance type.

" }, "status":{ "shape":"ApiCacheStatus", @@ -1001,11 +1001,11 @@ }, "apiCachingBehavior":{ "shape":"ApiCachingBehavior", - "documentation":"

Caching behavior.

  • FULL_REQUEST_CACHING: All requests are fully cached.

  • PER_RESOLVER_CACHING: Individual resovlers that you specify are cached.

" + "documentation":"

Caching behavior.

  • FULL_REQUEST_CACHING: All requests are fully cached.

  • PER_RESOLVER_CACHING: Individual resolvers that you specify are cached.

" }, "type":{ "shape":"ApiCacheType", - "documentation":"

The cache instance type. Valid values are

  • SMALL

  • MEDIUM

  • LARGE

  • XLARGE

  • LARGE_2X

  • LARGE_4X

  • LARGE_8X (not available in all regions)

  • LARGE_12X

Historically, instance types were identified by an EC2-style value. As of July 2020, this is deprecated, and the generic identifiers above should be used.

The following legacy instance types are avaible, but their use is discouraged:

  • T2_SMALL: A t2.small instance type.

  • T2_MEDIUM: A t2.medium instance type.

  • R4_LARGE: A r4.large instance type.

  • R4_XLARGE: A r4.xlarge instance type.

  • R4_2XLARGE: A r4.2xlarge instance type.

  • R4_4XLARGE: A r4.4xlarge instance type.

  • R4_8XLARGE: A r4.8xlarge instance type.

" + "documentation":"

The cache instance type. Valid values are

  • SMALL

  • MEDIUM

  • LARGE

  • XLARGE

  • LARGE_2X

  • LARGE_4X

  • LARGE_8X (not available in all regions)

  • LARGE_12X

Historically, instance types were identified by an EC2-style value. As of July 2020, this is deprecated, and the generic identifiers above should be used.

The following legacy instance types are available, but their use is discouraged:

  • T2_SMALL: A t2.small instance type.

  • T2_MEDIUM: A t2.medium instance type.

  • R4_LARGE: A r4.large instance type.

  • R4_XLARGE: A r4.xlarge instance type.

  • R4_2XLARGE: A r4.2xlarge instance type.

  • R4_4XLARGE: A r4.4xlarge instance type.

  • R4_8XLARGE: A r4.8xlarge instance type.

" } }, "documentation":"

Represents the input of a CreateApiCache operation.

" @@ -1985,7 +1985,7 @@ }, "wafWebAclArn":{ "shape":"String", - "documentation":"

The ARN of the AWS WAF ACL associated with this GraphqlApi if one exists.

" + "documentation":"

The ARN of the AWS Web Application Firewall (WAF) ACL associated with this GraphqlApi, if one exists.

" } }, "documentation":"

Describes a GraphQL API.

" @@ -2755,11 +2755,11 @@ }, "apiCachingBehavior":{ "shape":"ApiCachingBehavior", - "documentation":"

Caching behavior.

  • FULL_REQUEST_CACHING: All requests are fully cached.

  • PER_RESOLVER_CACHING: Individual resovlers that you specify are cached.

" + "documentation":"

Caching behavior.

  • FULL_REQUEST_CACHING: All requests are fully cached.

  • PER_RESOLVER_CACHING: Individual resolvers that you specify are cached.

" }, "type":{ "shape":"ApiCacheType", - "documentation":"

The cache instance type. Valid values are

  • SMALL

  • MEDIUM

  • LARGE

  • XLARGE

  • LARGE_2X

  • LARGE_4X

  • LARGE_8X (not available in all regions)

  • LARGE_12X

Historically, instance types were identified by an EC2-style value. As of July 2020, this is deprecated, and the generic identifiers above should be used.

The following legacy instance types are avaible, but their use is discouraged:

  • T2_SMALL: A t2.small instance type.

  • T2_MEDIUM: A t2.medium instance type.

  • R4_LARGE: A r4.large instance type.

  • R4_XLARGE: A r4.xlarge instance type.

  • R4_2XLARGE: A r4.2xlarge instance type.

  • R4_4XLARGE: A r4.4xlarge instance type.

  • R4_8XLARGE: A r4.8xlarge instance type.

" + "documentation":"

The cache instance type. Valid values are

  • SMALL

  • MEDIUM

  • LARGE

  • XLARGE

  • LARGE_2X

  • LARGE_4X

  • LARGE_8X (not available in all regions)

  • LARGE_12X

Historically, instance types were identified by an EC2-style value. As of July 2020, this is deprecated, and the generic identifiers above should be used.

The following legacy instance types are available, but their use is discouraged:

  • T2_SMALL: A t2.small instance type.

  • T2_MEDIUM: A t2.medium instance type.

  • R4_LARGE: A r4.large instance type.

  • R4_XLARGE: A r4.xlarge instance type.

  • R4_2XLARGE: A r4.2xlarge instance type.

  • R4_4XLARGE: A r4.4xlarge instance type.

  • R4_8XLARGE: A r4.8xlarge instance type.

" } }, "documentation":"

Represents the input of a UpdateApiCache operation.

" From 8950a2bdc7bf3140580050c4ac45b2668fd7f941 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 20 Oct 2020 18:04:57 +0000 Subject: [PATCH 040/339] Updated endpoints.json. --- .../feature-AWSSDKforJavav2-e97801d.json | 5 ++ .../regions/internal/region/endpoints.json | 75 +++++++++---------- 2 files changed, 40 insertions(+), 40 deletions(-) create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-e97801d.json diff --git a/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json b/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json new file mode 100644 index 000000000000..a695ba6944db --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS SDK for Java v2", + "description": "Updated service endpoint metadata." +} diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json index 3c2b60ac9273..620f087e5297 100644 --- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json +++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json @@ -5580,6 +5580,12 @@ "eu-west-1" : { }, "eu-west-2" : { }, "eu-west-3" : { }, + "fips-ca-central-1" : { + "credentialScope" : { + "region" : "ca-central-1" + }, + "hostname" : "ssm-fips.ca-central-1.amazonaws.com" + }, "fips-us-east-1" : { "credentialScope" : { "region" : "us-east-1" @@ -5606,30 +5612,6 @@ }, "me-south-1" : { }, "sa-east-1" : { }, - "ssm-facade-fips-us-east-1" : { - "credentialScope" : { - "region" : "us-east-1" - }, - "hostname" : "ssm-facade-fips.us-east-1.amazonaws.com" - }, - "ssm-facade-fips-us-east-2" : { - "credentialScope" : { - "region" : "us-east-2" - }, - "hostname" : "ssm-facade-fips.us-east-2.amazonaws.com" - }, - "ssm-facade-fips-us-west-1" : { - "credentialScope" : { - "region" : "us-west-1" - }, - "hostname" : "ssm-facade-fips.us-west-1.amazonaws.com" - }, - "ssm-facade-fips-us-west-2" : { - "credentialScope" : { - "region" : "us-west-2" - }, - "hostname" : "ssm-facade-fips.us-west-2.amazonaws.com" - }, "us-east-1" : { }, "us-east-2" : { }, "us-west-1" : { }, @@ -6801,6 +6783,11 @@ "cn-northwest-1" : { } } }, + "iotanalytics" : { + "endpoints" : { + "cn-north-1" : { } + } + }, "iotevents" : { "endpoints" : { "cn-north-1" : { } @@ -7287,8 +7274,12 @@ "protocols" : [ "http", "https" ] }, "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } + "us-gov-east-1" : { + "protocols" : [ "http", "https" ] + }, + "us-gov-west-1" : { + "protocols" : [ "http", "https" ] + } } }, "appstream2" : { @@ -7341,8 +7332,12 @@ "protocols" : [ "http", "https" ] }, "endpoints" : { - "us-gov-east-1" : { }, - "us-gov-west-1" : { } + "us-gov-east-1" : { + "protocols" : [ "http", "https" ] + }, + "us-gov-west-1" : { + "protocols" : [ "http", "https" ] + } } }, "backup" : { @@ -7483,6 +7478,12 @@ }, "cognito-identity" : { "endpoints" : { + "fips-us-gov-west-1" : { + "credentialScope" : { + "region" : "us-gov-west-1" + }, + "hostname" : "cognito-identity-fips.us-gov-west-1.amazonaws.com" + }, "us-gov-west-1" : { } } }, @@ -7864,6 +7865,12 @@ "protocols" : [ "https" ] }, "endpoints" : { + "dataplane-us-gov-west-1" : { + "credentialScope" : { + "region" : "us-gov-west-1" + }, + "hostname" : "greengrass-ats.iot.us-gov-west-1.amazonaws.com" + }, "us-gov-west-1" : { "credentialScope" : { "region" : "us-gov-west-1" @@ -8473,18 +8480,6 @@ }, "hostname" : "ssm.us-gov-west-1.amazonaws.com" }, - "ssm-facade-fips-us-gov-east-1" : { - "credentialScope" : { - "region" : "us-gov-east-1" - }, - "hostname" : "ssm-facade.us-gov-east-1.amazonaws.com" - }, - "ssm-facade-fips-us-gov-west-1" : { - "credentialScope" : { - "region" : "us-gov-west-1" - }, - "hostname" : "ssm-facade.us-gov-west-1.amazonaws.com" - }, "us-gov-east-1" : { }, "us-gov-west-1" : { } } From 025d470f194e982d72adce0b2b9f8afebc4b2670 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 20 Oct 2020 18:05:27 +0000 Subject: [PATCH 041/339] Release 2.15.11. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.11.json | 46 +++++++++++++++++++ .../bugfix-AWSSDKforJavav2-3374d0a.json | 5 -- ...-AmazonDynamoDBEnhancedClient-6338e31.json | 5 -- .../next-release/bugfix-AmazonS3-9878254.json | 5 -- .../feature-AWSAppSync-c2583d0.json | 5 -- .../feature-AWSBatch-93fecdf.json | 5 -- .../feature-AWSElasticBeanstalk-427fe8e.json | 5 -- .../feature-AWSSDKforJavav2-e97801d.json | 5 -- .../feature-AmazonS3-544f82b.json | 5 -- CHANGELOG.md | 32 +++++++++++++ README.md | 8 ++-- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- .../serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 291 files changed, 362 insertions(+), 324 deletions(-) create mode 100644 .changes/2.15.11.json delete mode 100644 .changes/next-release/bugfix-AWSSDKforJavav2-3374d0a.json delete mode 100644 .changes/next-release/bugfix-AmazonDynamoDBEnhancedClient-6338e31.json delete mode 100644 .changes/next-release/bugfix-AmazonS3-9878254.json delete mode 100644 .changes/next-release/feature-AWSAppSync-c2583d0.json delete mode 100644 .changes/next-release/feature-AWSBatch-93fecdf.json delete mode 100644 .changes/next-release/feature-AWSElasticBeanstalk-427fe8e.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-e97801d.json delete mode 100644 .changes/next-release/feature-AmazonS3-544f82b.json diff --git a/.changes/2.15.11.json b/.changes/2.15.11.json new file mode 100644 index 000000000000..5f5b3016ea01 --- /dev/null +++ b/.changes/2.15.11.json @@ -0,0 +1,46 @@ +{ + "version": "2.15.11", + "date": "2020-10-20", + "entries": [ + { + "type": "bugfix", + "category": "Amazon S3", + "description": "Fixed an issue where metrics were not being collected for Amazon S3 (or other XML services)" + }, + { + "type": "feature", + "category": "AWS Batch", + "description": "Adding evaluateOnExit to job retry strategies." + }, + { + "type": "bugfix", + "category": "AWS SDK for Java v2", + "description": "Fixed an issue where requestBody and asyncRequestBody were not visible in ExecutionInterceptor.afterMarshalling." + }, + { + "type": "feature", + "category": "AWS Elastic Beanstalk", + "description": "EnvironmentStatus enum update to include Aborting, LinkingFrom and LinkingTo" + }, + { + "type": "feature", + "category": "AWS AppSync", + "description": "Documentation updates to AppSync to correct several typos." + }, + { + "type": "feature", + "category": "Amazon S3", + "description": "Moved the logic for calculating the Content-MD5 checksums from s3 to sdk-core. As always, make sure to use a version of 'sdk-core' greater than or equal to your version of 's3'. If you use an old version of 'sdk-core' and a new version of 's3', you will receive errors that Content-MD5 is required." + }, + { + "type": "bugfix", + "category": "Amazon DynamoDB Enhanced Client", + "description": "Fix for handling special characters in attribute names with WRITE_IF_NOT_EXISTS update behavior" + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "description": "Updated service endpoint metadata." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/bugfix-AWSSDKforJavav2-3374d0a.json b/.changes/next-release/bugfix-AWSSDKforJavav2-3374d0a.json deleted file mode 100644 index 113f3c29fb48..000000000000 --- a/.changes/next-release/bugfix-AWSSDKforJavav2-3374d0a.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "bugfix", - "category": "AWS SDK for Java v2", - "description": "Fixed an issue where requestBody and asyncRequestBody were not visible in ExecutionInterceptor.afterMarshalling." -} diff --git a/.changes/next-release/bugfix-AmazonDynamoDBEnhancedClient-6338e31.json b/.changes/next-release/bugfix-AmazonDynamoDBEnhancedClient-6338e31.json deleted file mode 100644 index 5a94bf3c3462..000000000000 --- a/.changes/next-release/bugfix-AmazonDynamoDBEnhancedClient-6338e31.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "bugfix", - "category": "Amazon DynamoDB Enhanced Client", - "description": "Fix for handling special characters in attribute names with WRITE_IF_NOT_EXISTS update behavior" -} diff --git a/.changes/next-release/bugfix-AmazonS3-9878254.json b/.changes/next-release/bugfix-AmazonS3-9878254.json deleted file mode 100644 index 510e69d3b21e..000000000000 --- a/.changes/next-release/bugfix-AmazonS3-9878254.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "bugfix", - "category": "Amazon S3", - "description": "Fixed an issue where metrics were not being collected for Amazon S3 (or other XML services)" -} diff --git a/.changes/next-release/feature-AWSAppSync-c2583d0.json b/.changes/next-release/feature-AWSAppSync-c2583d0.json deleted file mode 100644 index 0f6a95420f33..000000000000 --- a/.changes/next-release/feature-AWSAppSync-c2583d0.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS AppSync", - "description": "Documentation updates to AppSync to correct several typos." -} diff --git a/.changes/next-release/feature-AWSBatch-93fecdf.json b/.changes/next-release/feature-AWSBatch-93fecdf.json deleted file mode 100644 index d29eda9315d5..000000000000 --- a/.changes/next-release/feature-AWSBatch-93fecdf.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS Batch", - "description": "Adding evaluateOnExit to job retry strategies." -} diff --git a/.changes/next-release/feature-AWSElasticBeanstalk-427fe8e.json b/.changes/next-release/feature-AWSElasticBeanstalk-427fe8e.json deleted file mode 100644 index 2f2d10db6c2a..000000000000 --- a/.changes/next-release/feature-AWSElasticBeanstalk-427fe8e.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS Elastic Beanstalk", - "description": "EnvironmentStatus enum update to include Aborting, LinkingFrom and LinkingTo" -} diff --git a/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json b/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json deleted file mode 100644 index a695ba6944db..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS SDK for Java v2", - "description": "Updated service endpoint metadata." -} diff --git a/.changes/next-release/feature-AmazonS3-544f82b.json b/.changes/next-release/feature-AmazonS3-544f82b.json deleted file mode 100644 index da565b93104b..000000000000 --- a/.changes/next-release/feature-AmazonS3-544f82b.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "Amazon S3", - "description": "Moved the logic for calculating the Content-MD5 checksums from s3 to sdk-core. As always, make sure to use a version of 'sdk-core' greater than or equal to your version of 's3'. If you use an old version of 'sdk-core' and a new version of 's3', you will receive errors that Content-MD5 is required." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index 1719316b64f9..142cdc0a2c14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,34 @@ +# __2.15.11__ __2020-10-20__ +## __AWS AppSync__ + - ### Features + - Documentation updates to AppSync to correct several typos. + +## __AWS Batch__ + - ### Features + - Adding evaluateOnExit to job retry strategies. + +## __AWS Elastic Beanstalk__ + - ### Features + - EnvironmentStatus enum update to include Aborting, LinkingFrom and LinkingTo + +## __AWS SDK for Java v2__ + - ### Features + - Updated service endpoint metadata. + + - ### Bugfixes + - Fixed an issue where requestBody and asyncRequestBody were not visible in ExecutionInterceptor.afterMarshalling. + +## __Amazon DynamoDB Enhanced Client__ + - ### Bugfixes + - Fix for handling special characters in attribute names with WRITE_IF_NOT_EXISTS update behavior + +## __Amazon S3__ + - ### Features + - Moved the logic for calculating the Content-MD5 checksums from s3 to sdk-core. As always, make sure to use a version of 'sdk-core' greater than or equal to your version of 's3'. If you use an old version of 'sdk-core' and a new version of 's3', you will receive errors that Content-MD5 is required. + + - ### Bugfixes + - Fixed an issue where metrics were not being collected for Amazon S3 (or other XML services) + # __2.15.10__ __2020-10-19__ ## __AWS Backup__ - ### Features @@ -4943,6 +4974,7 @@ ## __Amazon Elastic Compute Cloud__ - ### Features - This release of Amazon Elastic Compute Cloud (Amazon EC2) introduces support for Amazon Elastic Block Store (Amazon EBS) fast snapshot restores. + - Upgrades to Instance Metadata Service version 2 (IMDS v2). With IMDS v2, a session token is used to make requests for EC2 instance metadata and credentials. ## __Amazon FSx__ - ### Features diff --git a/README.md b/README.md index 71b25a988621..6fd04c3c09d1 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.10 + 2.15.11 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.10 + 2.15.11 software.amazon.awssdk s3 - 2.15.10 + 2.15.11 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.10 + 2.15.11 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 5a2941f0cf0c..a04e4069623e 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index f950006bffef..7e74a22e8bb1 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index b9e026b39b39..48151c7c0afe 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.15.11-SNAPSHOT + 2.15.11 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index d17e7a4ecbe5..0a97459a3c6f 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 33ebd3c22096..b1b36e8b9495 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.11-SNAPSHOT + 2.15.11 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 18a020c261f0..3a8a4598c5f8 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.11-SNAPSHOT + 2.15.11 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index f61b42d46709..17ac2c9af621 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.15.11-SNAPSHOT + 2.15.11 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 83b893a2e345..43a2903d11da 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.11-SNAPSHOT + 2.15.11 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index a8b11b805bdd..c38949a0f81d 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.15.11-SNAPSHOT + 2.15.11 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 588b02c05b5b..f31db1ec9323 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.11-SNAPSHOT + 2.15.11 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 17d97b519ab4..f60dcb43b181 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 938f62d20202..54e48bd9f313 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index e213d960af12..94f307786c74 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.11-SNAPSHOT + 2.15.11 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index ce9b9b673606..f41b8da21fe6 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.11-SNAPSHOT + 2.15.11 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index b6c75004a66f..6b7e0dffdafa 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 1b0d37541f3b..c59bddc53f29 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 001bf21b856f..68526d92c7b5 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.11-SNAPSHOT + 2.15.11 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index fa86bde058f6..fb2178ae54c7 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.15.11-SNAPSHOT + 2.15.11 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 1835fd72fe2a..f2193a34e416 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 4d739cdf7cde..a2599edf0431 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.15.11-SNAPSHOT + 2.15.11 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 75a1cdf6dc0e..b21e60ea1bcc 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.15.11-SNAPSHOT + 2.15.11 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 9a28e12ff5b4..411b1a2cddb2 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.15.11-SNAPSHOT + 2.15.11 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index bf663d3a39a6..f089ac77f183 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 046751fe50f0..2cc0424aad33 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index af1f199a7391..9b18bfac72cb 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.11-SNAPSHOT + 2.15.11 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index c82d2456937e..b90f20be74e7 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.11-SNAPSHOT + 2.15.11 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 64af4be7c14a..3c54cb1f4e69 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.15.11-SNAPSHOT + 2.15.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 f14e7904571c..7d18449d0746 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.15.11-SNAPSHOT + 2.15.11 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 421b5c81c526..1b5ebd7b0555 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.15.11-SNAPSHOT + 2.15.11 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 0d95d8b99ca5..3d891b332001 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.15.11-SNAPSHOT + 2.15.11 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 22cb3f686bfe..9d4f83ab857d 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index bcb59b193a48..733215a27ff1 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.15.11-SNAPSHOT + 2.15.11 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 3ed44a367dd9..6d8f89851bd1 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.15.11-SNAPSHOT + 2.15.11 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index f8a66ebbca79..3f9cb09e64da 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.11-SNAPSHOT + 2.15.11 metric-publishers diff --git a/pom.xml b/pom.xml index b8953dde99bc..e3f801ec7694 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.11-SNAPSHOT + 2.15.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 a88b0d830865..39f0d67b9360 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.11-SNAPSHOT + 2.15.11 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 9356d5d5cf6a..bcc64d310c25 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.15.11-SNAPSHOT + 2.15.11 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index e88d6943c867..6b7d9339e894 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.11-SNAPSHOT + 2.15.11 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index f2d993392717..172938a56519 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index fb09f1e386fb..716667d4b32a 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index c8b9e79dc67b..96ad1d4beccc 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index bdfc916edd9b..0fb0d87a3496 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 7f8e7a3752e1..3ed26ed54529 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 8437a405100e..2e9b946a8edf 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index ce2458d2f547..3473072238fb 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 2103ba11b54e..c775acf52d78 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index f1dd758ffec5..be952817fdb8 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 672843c316d5..63471d76e27b 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index b88a39ec76ff..e8080c78ea62 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index fefd55f29e8d..ef81ecfe1f9d 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 8d3f0bac7015..401d8a60eca8 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index caa3d2fb03f2..6bf1c97f6e00 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 111ac429fe0f..674a784eec03 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index aba8c32efe24..e04603430921 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index f80e14640448..56a361b5e163 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 39e541aca30e..0ae3f02bc7a3 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index b24299b15061..e1f0affbc158 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 250cee93b5d5..527191b0a873 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 2751c433d21c..42322170e7f4 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 47167341f86b..566880d324de 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index df8acbab269f..182a7f0fb09c 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 0b552bdcedf7..d6733b45a4a5 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 34520ce384f2..baffaa54bdc2 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index e3054e1f62cc..9c5ca4ed0e1b 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 2d419a07da18..3c0a95f09aba 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 409fcac8c455..07b13227af70 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 2f4582019bbd..33346dd4e138 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 7f1128c3d10d..a52a33c1f8e1 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 80d029b4e35d..7425963e7e7f 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 000db4b1af4f..42625ece8bbd 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 475799491bb7..fc67b3119809 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 835c73b71af0..eda93496a4b7 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 68436d41981d..63a01cd0ef0c 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index a1665265f5b9..28012a512996 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index a030d144748f..b4d6195a63f5 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 5b8f8578a0bc..e30a7290a956 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 04daf5e33479..6bd1189d9892 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 8d755db03537..54489917837c 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 0c97e6aedd67..8881f45d0a0f 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 218d2d4106b2..90a4933a09ae 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 490654e6b11a..9a1c328a5400 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 8973bfca1b77..e2a957fd3bb8 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index d4213511e25f..304558118a57 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 36644b76afc9..4cc1883803ad 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 0e2d98fedde5..9b83dbb0ad69 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index be222b8b6b43..6669b0beba26 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index b82b38b570cc..7f058e036812 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 2202bb23761c..4153d5be2391 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 08a465860b5b..f3d24240e213 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 288dc19fe5f2..2c29928aa892 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 5ef7a4a8b742..63da6bd0989b 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 1ad205756c5b..73b7d9cd5461 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 32e48964d443..f57aaff581a7 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 21ca57d5e879..da162dc7574f 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index c54219623e08..778d6013068c 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index dce7814d34f7..b153c2bd887d 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 0faf19803f11..2a9f2152bd3c 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 3abf08b0fcd6..63c0184fbd71 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index bb19462a12c3..e39e4d0387d7 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index af23a6aa0c2d..cfc2dee82798 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 60a2fe868904..96eb61c72425 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 444830ea63e8..10507d3e0cec 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index f4594ba3a36f..03131c19e253 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 50bebff1340a..0bfb0363e1e7 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index b2db8c677370..3a06d6edf34a 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 92da0b2002ef..8b181656bc60 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index f0399b8a436b..3e2ebe66e01d 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 194e881e9992..e9d36e2aaf8c 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 8339ff09682b..3ec56efd201b 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 373b22fcc9ec..905d52d1c127 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index f67790cac4c4..ef017925f669 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 82183b0ec63c..198ff39be81b 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index f4705b3b62a4..60cc558205f7 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 4e791dc8ff17..b6b2396afabf 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index ec3e40274b5d..59d137ea843d 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 47cfabe8ed44..a6b38befbe93 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index a204cb3e5141..3344b8d35fe8 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index eeafd4882d1a..16acec384927 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index a2c01d6249fa..74aa000cc411 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 1fa194c5ec15..e6da671924f2 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 3ed5cf40768b..0474abfa5228 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 2b5f168bf792..d8c85ad82ffe 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 2fd59f4432a8..8d800210979a 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index beec9c567a0c..4372489f269b 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index ce05536bb8a5..15c6218c9d47 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index eeedb0f15295..c3c20a7d0eb7 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index a146b9dafef0..aed0516c36b9 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 85847e098635..ffb2dd94dc4a 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 1e7bf65193ab..f94f4417fb2d 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 05446f167749..e2a708d0567e 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index bd946a75ffc9..1debef4d7a2a 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index a9752bf80ccb..bc58549ea353 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index d13416173151..017fa47cfa3e 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index b441ab89e652..2773cd4598bf 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 6d334cd85594..41e321a60ee5 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index d4ab0c1d677f..07caf7021701 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 52ecf932a342..325eb78ddaf4 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index aebe025e75a4..54a3cc3f31ac 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index bded0848ac28..24a16dc1d239 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index ad6f325090e2..aea9305da412 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 3c02375c647f..0ca7f379fda1 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 8e926f82092e..71ef71394bd9 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index c91f6cbb865e..36c0f0ff8919 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 096e17918aeb..c19ffd824873 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index fe04d891e939..c25367b41ce8 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index a33c3a657809..4a060f8c8c30 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 9ce091ee3806..b3a9e49b9c81 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index f00da8e111a9..c78fb6f89d7a 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 51bd195df1a2..0e0a3f0b2d1a 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index cd7886d88471..dbce863ef917 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 7736b06086e5..9a3545ba63f8 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 72247946001e..65096b854917 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 5abbc14c3731..cbbae5259ec5 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 0eb12621f174..22a22bc67d75 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index ced4e5f1f331..3a8138166add 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 3dc43a128aa7..6b1e3d63bb11 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index c293100d566f..c8286da68a3d 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 52db38df058c..db837e52824e 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index d665d3f5f2e8..a50254c9aafe 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 77731efc2236..5264f0c9c520 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 4f7d6614853f..13deb270e7cf 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 015b9b7fb65d..714e1fc80b3c 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index a9d6e6fa590c..17568f2aea16 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 4142882bb013..dd713198bb36 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 30c0f8bd5d47..7152d84f0d1c 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 7de597a67c37..cad635b968a9 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 269b455ec8cd..ef71968b7674 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 7ca8dbba68ba..d671208778a0 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 5a174b985cbf..f343fcabbe03 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 58c1aff315b4..b8afd9d081ef 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index a98803489604..b1f9ea82b2c1 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 19529004029f..98e4290771f2 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 94a74255ba58..59183822b474 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index aed3cb24f629..d8a39977c89e 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 78bdfe55e27c..8b713735557d 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index b88a2f886df3..ae14eafe016a 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 7244fa95ab07..e97ee9fe3501 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index e273b9041ccb..7909bab83a36 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 9bccca88d54c..c03c37b462d8 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index e85b79d82e3e..9c8dcaef65d7 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index f45da0848289..c11fceebbc93 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 68be43754014..572e87769e2f 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index be4581c8e3fb..4fe47040be05 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 145e9236a64e..1c1fa3a51230 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 153edf798ca6..d63ead7410d2 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 279e1d9483d0..a6e6cf358f32 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 0f59b305fedc..4af3bf6914c7 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 670c5aef8a91..66b1f9e06d23 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 5ad788a7b0fd..3b053bd4eaee 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 5ed0bee94e42..80978dae4d72 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 5713ecee3d85..1c9fbbcb763b 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 63e0b3d28f67..c9064bcbacb2 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 3c5b7403143b..be18cc86e249 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index ae7412452e59..e9ca8eadc075 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 824db9b0b1e0..785b8f7be612 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index d3c428a8083a..1743fbd6e510 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 613e9f461109..f64c155f5522 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index f47e856cc8bb..928fef30ee90 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index eb81f1a6381c..e97e3125db47 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 1e7fe4e67608..97d6553ad082 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 0c3e5217bb21..a0996bf53fa8 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 5f248eb16ced..4b5648b02d2f 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index ce0e21b6c1ff..e2e6a3793dea 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 34640b92498e..34a05d0f0001 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 1b4e391eb58a..d5335ba18c6d 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 625f6f3795f8..228d13b20deb 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.11-SNAPSHOT + 2.15.11 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index bc4f1d0b4763..ece1c4dcba50 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index ae3348bbd8c9..e6a31f6c53dc 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 3a26076db631..d85128a946c3 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 189e00ef4cca..2c68a6e9cb16 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 0f7aa453016d..35a88bf63321 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 704114aede15..534b58fbe364 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 983caef9265b..c2e2fc448b85 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 99f7c43cd711..5d8dfa354b8e 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 2154984a367a..32a1bf18a7e7 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 52e1909a27c1..aaa66a4d8122 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index ad4607b3ebe2..9ed97e135925 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 87f6fa65196c..dc2ca0cc0fbd 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 6dccebc45308..ea6323a0c4bf 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 45cef3045fbc..c0925a518559 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index cb32b626cd53..2d57c90a41e9 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index f324df0a55bd..6f1b3c204887 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 18e3f3225114..f26cdd78b7b5 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 95056245c14e..3902fc1f5b70 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 61edc3484fe7..370505379d52 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 51d6c60097d3..3770edc2abe2 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 7dc5b5e37d1e..2fbcfa33ccf7 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index af7c7fe598ac..524e1c244f8d 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 2e70d5fc63e0..d98bf4dbf6b6 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 6b40bbfbdcb3..c6c59e0888ee 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 6d5080a3c367..2a35c1744123 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 0c42b6f82eb6..0903cef54f2e 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index ad009d127011..d03f799fdc0a 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index d7d6f427a015..ef6c8d7cc62a 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 05efa7116e91..e1ce98cf8f4a 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index a295c846a3ff..cbea50a34914 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 7d3205ec33af..b1da53586890 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index eb961aae8d44..0290e68e4849 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index aae48a24d3cc..22f835da2340 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 4e0149390902..e65823293825 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index ee8066cb978e..85ed6f90c91d 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index a94f607c7b4c..17789059881f 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 581c5d829c05..36124842d624 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 8142aa7925ea..f93335490e4c 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index ac98ba261bd8..7fa0a405fb0f 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 20fd515374e3..f49fbf1af20f 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 868450347be6..09d33b193b5b 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 546c182ebbba..ded6f9372273 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index c91d8454f431..3722a54bf84a 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 7149b7bcb634..c79c9575a614 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index d04770be0bb3..84c753392d89 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index b276ffc6ede0..1406a8cc34e3 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 6958f9357a2a..63002d29b57b 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index c32f1bf4eac7..7d8701d61d85 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 4754eeb63c80..1cb401377313 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index ef17c091747d..c35d63749e8e 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index f2e6e1fefa53..35ae1e7968f7 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 77aee3ad4dd7..6278edda8f37 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 048e0fff648c..c5936ab931da 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index aac0c77eb1b6..f102d8df15ee 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 5a6f30c2f928..9f02408eef28 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index a83d1a0f27bb..0a37abc4d216 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index b18691dec4ca..995cce26f742 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 85b2fac86b8b..546dd449c393 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 5cee47c00446..506597fb9acc 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 09327d5014ab..69cd2ce02bcf 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 0b5454467c3e..0cab2775ad32 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index a1579dc2b2fc..a3aee780fe5c 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index f96d97158ab5..7f47ac37810c 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11-SNAPSHOT + 2.15.11 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 0a9c4c10b390..e3c259be3831 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.15.11-SNAPSHOT + 2.15.11 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index abb471f3f419..7231856b65c2 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.15.11-SNAPSHOT + 2.15.11 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 7f8b940572ee..f0b1656a35b2 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.15.11-SNAPSHOT + 2.15.11 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 3dc0af678dae..c48fd41ebcf6 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.15.11-SNAPSHOT + 2.15.11 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index f187efdcb18d..9deb0c2c8d52 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.15.11-SNAPSHOT + 2.15.11 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index d20a0f0acac1..25ddb00a43b0 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.11-SNAPSHOT + 2.15.11 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 13c80429212d..09691ed4ee03 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.15.11-SNAPSHOT + 2.15.11 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 1bd2650c8984..7f663212003e 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.15.11-SNAPSHOT + 2.15.11 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index d4baa7b2fb93..62a8bc168465 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.15.11-SNAPSHOT + 2.15.11 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 13b3fd504c47..f82c39b16e20 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.15.11-SNAPSHOT + 2.15.11 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index fc9b06b25071..8b8fbbaa80af 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.11-SNAPSHOT + 2.15.11 4.0.0 From bd9243c197b217b420bc3d57abdc32e2907972e9 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 20 Oct 2020 18:48:50 +0000 Subject: [PATCH 042/339] Update to next snapshot version: 2.15.12-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 280 files changed, 280 insertions(+), 280 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index a04e4069623e..31d8c79de721 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 7e74a22e8bb1..52139c671fa0 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 48151c7c0afe..8ac83794c172 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.15.11 + 2.15.12-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 0a97459a3c6f..2e2336654cc5 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index b1b36e8b9495..960fae7c4cad 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.11 + 2.15.12-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 3a8a4598c5f8..4c856f833705 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.11 + 2.15.12-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 17ac2c9af621..a1f5ac9ec4f5 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.15.11 + 2.15.12-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 43a2903d11da..f3a913448471 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.11 + 2.15.12-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index c38949a0f81d..8e15e5f469f9 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.15.11 + 2.15.12-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index f31db1ec9323..f403729077cf 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.11 + 2.15.12-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index f60dcb43b181..4448fa06858c 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 54e48bd9f313..898c8d534f02 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 94f307786c74..ef1d0a0aa929 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.11 + 2.15.12-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index f41b8da21fe6..1279960542b7 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.11 + 2.15.12-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 6b7e0dffdafa..0225058d3b9c 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index c59bddc53f29..9427f143d95c 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 68526d92c7b5..2e01635480a8 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.11 + 2.15.12-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index fb2178ae54c7..c2e323638c4b 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.15.11 + 2.15.12-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index f2193a34e416..44a953634196 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index a2599edf0431..aab532fc2a0f 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.15.11 + 2.15.12-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index b21e60ea1bcc..c190d8aa4fb5 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.15.11 + 2.15.12-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 411b1a2cddb2..a6054dcbbaa6 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.15.11 + 2.15.12-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index f089ac77f183..5866175649dc 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 2cc0424aad33..cd99589a83a4 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 9b18bfac72cb..247d7b2fcc3f 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.11 + 2.15.12-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index b90f20be74e7..8a48cfa02868 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.11 + 2.15.12-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 3c54cb1f4e69..100ac58e0d3e 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.15.11 + 2.15.12-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index 7d18449d0746..31e4515c874d 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.15.11 + 2.15.12-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 1b5ebd7b0555..5af6b21793b2 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.15.11 + 2.15.12-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 3d891b332001..e4aae9a76ffe 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.15.11 + 2.15.12-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 9d4f83ab857d..fe15a83febc4 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 733215a27ff1..1c6347e26578 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.15.11 + 2.15.12-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 6d8f89851bd1..78202e92232c 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.15.11 + 2.15.12-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 3f9cb09e64da..81bc57497c43 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.11 + 2.15.12-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index e3f801ec7694..5ec2d643f37e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.11 + 2.15.12-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 39f0d67b9360..53df98bc75d4 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.11 + 2.15.12-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index bcc64d310c25..9fead02acc45 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.15.11 + 2.15.12-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 6b7d9339e894..29a0ece2f124 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.11 + 2.15.12-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 172938a56519..1cc86ba3618f 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 716667d4b32a..2a62f8be8499 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 96ad1d4beccc..e72539126838 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 0fb0d87a3496..67395c5437a3 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 3ed26ed54529..713703be79fa 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 2e9b946a8edf..6d1daf01c3ab 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 3473072238fb..5826755034d7 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index c775acf52d78..0465ac880eda 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index be952817fdb8..623c5ba567f9 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 63471d76e27b..4e719c81ba99 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index e8080c78ea62..973c5d09506d 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index ef81ecfe1f9d..dcd6f0d3288b 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 401d8a60eca8..24bc9493287c 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 6bf1c97f6e00..2dd4b432c5ed 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 674a784eec03..7d87f5976321 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index e04603430921..8d4e2a6e8042 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 56a361b5e163..6fcf548bd052 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 0ae3f02bc7a3..8f109091d8a5 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index e1f0affbc158..a24b5366c742 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 527191b0a873..7fb4b2490518 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 42322170e7f4..9f59703fba58 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 566880d324de..88d2970987b1 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 182a7f0fb09c..26cb0eb2889a 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index d6733b45a4a5..e1670d8ad351 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index baffaa54bdc2..d6ccab8c0657 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 9c5ca4ed0e1b..21333d2ad640 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 3c0a95f09aba..199d0223be6c 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 07b13227af70..df6e751297c4 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 33346dd4e138..def8f32b7602 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index a52a33c1f8e1..5aa78ed06bc8 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 7425963e7e7f..cfd8b7c1e237 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 42625ece8bbd..d0ea2ac78ed1 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index fc67b3119809..bccc9e181695 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index eda93496a4b7..924ab5224259 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 63a01cd0ef0c..325be8571530 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 28012a512996..d554684992e6 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index b4d6195a63f5..3d55c67c99ff 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index e30a7290a956..f1c9712264ca 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 6bd1189d9892..374b4bba7f12 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 54489917837c..597afc3d9cab 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 8881f45d0a0f..521f6f5d99bb 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 90a4933a09ae..8251c856bdc9 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 9a1c328a5400..203082818827 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index e2a957fd3bb8..43949db76c9e 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 304558118a57..a66858636617 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 4cc1883803ad..add28c7cb596 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 9b83dbb0ad69..425c11421c49 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 6669b0beba26..d4224018a407 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 7f058e036812..fe4f624b0b6b 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 4153d5be2391..f33f6845bf44 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index f3d24240e213..e24fbb136738 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 2c29928aa892..8f1fd1bb58e1 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 63da6bd0989b..9a48d6b4ae0a 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 73b7d9cd5461..1b72e8e66bff 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index f57aaff581a7..d19b9fc12ea3 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index da162dc7574f..32e1d4df1751 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 778d6013068c..c59932c33b2c 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index b153c2bd887d..e2233ed70679 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 2a9f2152bd3c..0c9d9a83e393 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 63c0184fbd71..0861890dc727 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index e39e4d0387d7..695c461d56aa 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index cfc2dee82798..211d1d3290a8 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 96eb61c72425..1568dea48ad8 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 10507d3e0cec..f7bc40dd7431 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 03131c19e253..4f03f94a4438 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 0bfb0363e1e7..b9cf0622c71f 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 3a06d6edf34a..f7d96712fce5 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 8b181656bc60..f97f84b9754b 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 3e2ebe66e01d..8065e6a4df94 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index e9d36e2aaf8c..1523ba404f45 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 3ec56efd201b..8d1b61af1fd6 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 905d52d1c127..4159d4d1582d 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index ef017925f669..855d3c1e422a 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 198ff39be81b..8c74bfbd1b80 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 60cc558205f7..6f361746d43c 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index b6b2396afabf..bbcb279a20ba 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 59d137ea843d..4948a658a646 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index a6b38befbe93..bf329df60c4a 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 3344b8d35fe8..dafa35dc92be 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 16acec384927..1edbeb38509f 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 74aa000cc411..b8efb905d4cb 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index e6da671924f2..3129116ccf2f 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 0474abfa5228..9afcf798e388 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index d8c85ad82ffe..68a28ccd19d1 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 8d800210979a..e44067e88050 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 4372489f269b..1d129498b2ea 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 15c6218c9d47..ec74109bfbb5 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index c3c20a7d0eb7..22126a03da3f 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index aed0516c36b9..0842380277de 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index ffb2dd94dc4a..fcb6bdc44967 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index f94f4417fb2d..451a6444fc1e 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index e2a708d0567e..42b60ed80c5b 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 1debef4d7a2a..5d489d3b2a6e 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index bc58549ea353..bacbbbadd019 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 017fa47cfa3e..3a345914ce68 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 2773cd4598bf..46ecf1d110d6 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 41e321a60ee5..28b8dc829cf8 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 07caf7021701..124148ae2cc1 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 325eb78ddaf4..cf536409bf2f 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 54a3cc3f31ac..806a38ad417f 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 24a16dc1d239..f3524468e9e9 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index aea9305da412..4477449ee3fe 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 0ca7f379fda1..8047109b040f 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 71ef71394bd9..d9547be442d0 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 36c0f0ff8919..09d0db3ea002 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index c19ffd824873..bafa0bc3513c 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index c25367b41ce8..e5427317470f 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 4a060f8c8c30..4d855ff01115 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index b3a9e49b9c81..6a96ae509845 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index c78fb6f89d7a..823a2976104b 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 0e0a3f0b2d1a..06ab925df553 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index dbce863ef917..b002fe2b0a29 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 9a3545ba63f8..4e5f539181c8 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 65096b854917..9c7fb435631c 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index cbbae5259ec5..d4c6501b1d85 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 22a22bc67d75..3571a854972d 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 3a8138166add..34dd2b4d4ff4 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 6b1e3d63bb11..8ce6e3da07ca 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index c8286da68a3d..ef12068630ac 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index db837e52824e..2eee4a0f9ab4 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index a50254c9aafe..e4611631a7e0 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 5264f0c9c520..a0c393713c72 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 13deb270e7cf..236536568916 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 714e1fc80b3c..e37c62c922bd 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 17568f2aea16..88355c1385fe 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index dd713198bb36..3962648c485e 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 7152d84f0d1c..19291c93a133 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index cad635b968a9..c2341c5941ac 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index ef71968b7674..91c4bdf71ea5 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index d671208778a0..39b98c646b92 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index f343fcabbe03..093fb9dc6acc 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index b8afd9d081ef..d25fc7d80220 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index b1f9ea82b2c1..91eac52bcbec 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 98e4290771f2..cf2d32641609 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 59183822b474..f50c9504a8e3 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index d8a39977c89e..e5caadef663e 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 8b713735557d..aee87c6cee9d 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index ae14eafe016a..05124df8db70 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index e97ee9fe3501..51566d5042f5 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 7909bab83a36..a77584f1e01a 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index c03c37b462d8..6392a8d6d72b 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 9c8dcaef65d7..c054f3012cdc 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index c11fceebbc93..5fe456052d42 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 572e87769e2f..1c54ab4316ef 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 4fe47040be05..c5be24fdd41e 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 1c1fa3a51230..1b0f79f1c968 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index d63ead7410d2..51f61184e59f 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index a6e6cf358f32..af86ced6c60f 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 4af3bf6914c7..4f518e114040 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 66b1f9e06d23..6c9d713de5f6 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 3b053bd4eaee..3c97fba8ec68 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 80978dae4d72..aabb48e5d0fe 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 1c9fbbcb763b..3a38f4b8c877 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index c9064bcbacb2..bbf7df0c50dc 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index be18cc86e249..3fd7f84a3333 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index e9ca8eadc075..ab62e7c1ce0b 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 785b8f7be612..35f39203644e 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 1743fbd6e510..fd7763bd02ff 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index f64c155f5522..a0f9fb14bf8d 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 928fef30ee90..b9cb42b31ee9 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index e97e3125db47..5b335a3bfcf9 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 97d6553ad082..a9b0a9ebd325 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index a0996bf53fa8..1dabe48a5464 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 4b5648b02d2f..ce85665377b4 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index e2e6a3793dea..cc78d0c0bcf8 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 34a05d0f0001..3a90f5856a36 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index d5335ba18c6d..028f632440ee 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 228d13b20deb..0bad4901c9fa 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.11 + 2.15.12-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index ece1c4dcba50..6c8a64d0b6b5 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index e6a31f6c53dc..fb8a3d4cfe81 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index d85128a946c3..4bcbbe45ce2b 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 2c68a6e9cb16..1f3a06da0da1 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 35a88bf63321..d5f21a477402 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 534b58fbe364..3c97bcd758fb 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index c2e2fc448b85..9a2bbce4ae53 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 5d8dfa354b8e..6a49caab2c2a 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 32a1bf18a7e7..91c1d3cf84a2 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index aaa66a4d8122..14f92b95a9ff 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 9ed97e135925..53c6d74a6722 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index dc2ca0cc0fbd..282c770198df 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index ea6323a0c4bf..fb2a8e31ef26 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index c0925a518559..01c72843be1e 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 2d57c90a41e9..d1353b35806f 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 6f1b3c204887..5ecaaf9f9c3c 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index f26cdd78b7b5..87a836387af6 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 3902fc1f5b70..2d38907e8e01 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 370505379d52..5166b913467a 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 3770edc2abe2..963b3e6c81c7 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 2fbcfa33ccf7..9f6dd68b4764 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 524e1c244f8d..0c65c65170ee 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index d98bf4dbf6b6..279124348b61 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index c6c59e0888ee..0e1af694d9af 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 2a35c1744123..0f13894d311f 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 0903cef54f2e..7652e0184f60 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index d03f799fdc0a..1969fbf71a91 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index ef6c8d7cc62a..aa73969ed3b0 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index e1ce98cf8f4a..c1ede310845c 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index cbea50a34914..528636f68bae 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index b1da53586890..4df9f611459e 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 0290e68e4849..e9796d81cbdc 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 22f835da2340..b9fdd02f70e9 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index e65823293825..5686106b4a17 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 85ed6f90c91d..d87679bd85e5 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 17789059881f..56a3dc011088 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 36124842d624..5e8864415fd7 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index f93335490e4c..0fd8154771b0 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 7fa0a405fb0f..563775530adb 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index f49fbf1af20f..70b2674870c4 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 09d33b193b5b..a9a378dd0859 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index ded6f9372273..534afa5a3f64 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 3722a54bf84a..c8f048fe179e 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index c79c9575a614..5680c06a7918 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 84c753392d89..b45c99e60d87 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 1406a8cc34e3..069fffb82a82 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 63002d29b57b..f28a8bf50c47 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 7d8701d61d85..43d84bb1fd48 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 1cb401377313..95191cf7ede2 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index c35d63749e8e..6a132420e110 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 35ae1e7968f7..8e9701d39a5c 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 6278edda8f37..15272cd92fd9 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index c5936ab931da..327be6ab865c 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index f102d8df15ee..141a7a0c2929 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 9f02408eef28..d95e0204ee17 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 0a37abc4d216..c5976c66866e 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 995cce26f742..da64b57f6c53 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 546dd449c393..1b2de4463a02 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 506597fb9acc..7e5c4f0079bc 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 69cd2ce02bcf..058cea8e747e 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 0cab2775ad32..3a82d186c59c 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index a3aee780fe5c..6a0c4b050cea 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 7f47ac37810c..9ccbac13f9bb 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.11 + 2.15.12-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index e3c259be3831..07994065acba 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.15.11 + 2.15.12-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 7231856b65c2..8a95b3124ce5 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.15.11 + 2.15.12-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index f0b1656a35b2..c02e335e0a04 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.15.11 + 2.15.12-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index c48fd41ebcf6..096f4ab1a2dd 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.15.11 + 2.15.12-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 9deb0c2c8d52..999fe25a6c60 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.15.11 + 2.15.12-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 25ddb00a43b0..d5dbf0e24ff1 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.11 + 2.15.12-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 09691ed4ee03..1582a3023e7e 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.15.11 + 2.15.12-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 7f663212003e..1e5a66109531 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.15.11 + 2.15.12-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 62a8bc168465..4a9bfed31565 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.15.11 + 2.15.12-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index f82c39b16e20..e47e1bc6bf2c 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.15.11 + 2.15.12-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 8b8fbbaa80af..ab5eabd689a2 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.11 + 2.15.12-SNAPSHOT 4.0.0 From ca401dcd58d5446e6a5558f6a9ff71da9c0e8295 Mon Sep 17 00:00:00 2001 From: Zoe Wang Date: Fri, 16 Oct 2020 16:41:24 -0700 Subject: [PATCH 043/339] Add an option to provide github username to be mentioned in the CHAGNELOG --- scripts/changelog/model.py | 3 ++- scripts/changelog/util.py | 3 ++- scripts/changelog/writer.py | 23 ++++++++++++++++++++--- scripts/new-change | 19 ++++++++++++++++++- 4 files changed, 42 insertions(+), 6 deletions(-) diff --git a/scripts/changelog/model.py b/scripts/changelog/model.py index 722108159c76..0b21fedd415f 100644 --- a/scripts/changelog/model.py +++ b/scripts/changelog/model.py @@ -5,9 +5,10 @@ def __init__(self, version, date, entries): self.entries = entries class ChangelogEntry(object): - def __init__(self, type, category, description): + def __init__(self, type, category, description, contributor): self.type = type self.category = category + self.contributor = contributor self.description = description class Version(object): diff --git a/scripts/changelog/util.py b/scripts/changelog/util.py index 998a5f2a1429..acb86d8d8049 100644 --- a/scripts/changelog/util.py +++ b/scripts/changelog/util.py @@ -38,7 +38,8 @@ def parse_release_changes(changes_json): return ReleaseChanges(version, date, entries) def parse_changelog_entry(entry_json): - return ChangelogEntry(entry_json['type'], entry_json['category'], entry_json['description']) + return ChangelogEntry(entry_json['type'], entry_json['category'], entry_json['description'], + entry_json.get('contributor')) def parse_version_string(s): version_parts = [s for s in s.split('.')] diff --git a/scripts/changelog/writer.py b/scripts/changelog/writer.py index 458fb8f02561..a41dad92c971 100644 --- a/scripts/changelog/writer.py +++ b/scripts/changelog/writer.py @@ -28,6 +28,19 @@ def write_changes(self, changes): self.write_items_for_category(s, self.bugfixes, "Bugfixes") self.write_items_for_category(s, self.deprecations, "Deprecations") self.write_items_for_category(s, self.removals, "Removals") + self.write_contributors() + + def write_contributors(self): + contributors = set() + for e in self.current_changes.entries: + if e.contributor: + contributors.add(e.contributor) + + if contributors: + self.output_file.write("## __Contributors__\n") + contributors_string = ', '.join(contributors) + self.output_file.write("Special thanks to the following contributors to this release: \n") + self.output_file.write("\n" + contributors_string + ".\n") def process_changes(self, changes): self.current_changes = changes @@ -44,7 +57,7 @@ def reset_maps(self): def group_entries(self): for e in self.current_changes.entries: m = self.get_map_for_type(e.type) - m.setdefault(e.category, []).append(e.description) + m.setdefault(e.category, []).append(e) self.categories.add(e.category) def get_sorted_categories(self): @@ -75,7 +88,8 @@ def write_entries_with_header(self, header, entries): self.write('\n') def write_entry(self,e): - entry_lines = e.splitlines(True) + description = e.description + entry_lines = description.splitlines(True) self.write(" - %s" % entry_lines[0]) for l in entry_lines[1:]: if len(l.strip()) == 0: @@ -83,7 +97,10 @@ def write_entry(self,e): else: self.write(" %s" % l) self.write('\n') - + if e.contributor: + self.write("\n - ") + self.write("Contributed by: " + e.contributor) + self.write('\n') def get_map_for_type(self, t): if t == 'feature': diff --git a/scripts/new-change b/scripts/new-change index 21d12444947e..fdce35c44c8d 100755 --- a/scripts/new-change +++ b/scripts/new-change @@ -61,6 +61,12 @@ type: {change_type} # or "AWS SDK for Java v2" if it's an SDK change to the core, runtime etc category: {category} +# Your GitHub user name to be included in the CHANGELOG. +# Every contribution counts and we would like to recognize +# your contribution! +# Leave it empty if you would prefer not to be mentioned. +contributor: {contributor} + The description of the change. Feel free to use Markdown here. description: {description} """ @@ -76,6 +82,7 @@ def new_changelog_entry(args): 'type': args.change_type, 'category': args.category, 'description': args.description, + 'contributor': args.contributor } else: parsed_values = get_values_from_editor(args) @@ -94,7 +101,7 @@ def get_missing_parts(parsed_values): def all_values_provided(args): - return args.change_type and args.category and args.description + return args.change_type and args.category and args.description and args.github_username def get_values_from_editor(args): @@ -103,6 +110,7 @@ def get_values_from_editor(args): change_type=args.change_type, category=args.category, description=args.description, + contributor=args.contributor ) f.write(contents) f.flush() @@ -137,6 +145,11 @@ def write_new_change(parsed_values): os.makedirs(dirname) # Need to generate a unique filename for this change. category = parsed_values['category'] + + contributor = parsed_values['contributor'] + if contributor and contributor.strip: + parsed_values['contributor'] = "@" + contributor + short_summary = ''.join(filter(lambda x: x in VALID_CHARS, category)) contents = json.dumps(parsed_values, indent=4) + "\n" contents_digest = hashlib.sha1(contents.encode('utf-8')).hexdigest() @@ -176,6 +189,8 @@ def parse_filled_in_contents(contents): parsed['type'] = t elif 'category' not in parsed and line.startswith('category:'): parsed['category'] = line[len('category:'):].strip() + elif 'contributor' not in parsed and line.startswith('contributor:'): + parsed['contributor'] = line[len('contributor:'):].strip() elif 'description' not in parsed and line.startswith('description:'): # Assume that everything until the end of the file is part # of the description, so we can break once we pull in the @@ -193,6 +208,8 @@ def main(): default='', choices=('bugfix', 'feature', 'deprecation')) parser.add_argument('-c', '--category', dest='category', default='') + parser.add_argument('-u', '--contributor', dest='contributor', + default='') parser.add_argument('-d', '--description', dest='description', default='') parser.add_argument('-r', '--repo', default='aws/aws-sdk-java-v2', From 56dc8cdacb94258eedaf399549d3debfbfae0eac Mon Sep 17 00:00:00 2001 From: Zoe Wang Date: Wed, 21 Oct 2020 12:27:41 -0700 Subject: [PATCH 044/339] Revert "Add an option to provide github username to be mentioned in the CHAGNELOG" This reverts commit ca401dcd58d5446e6a5558f6a9ff71da9c0e8295. --- scripts/changelog/model.py | 3 +-- scripts/changelog/util.py | 3 +-- scripts/changelog/writer.py | 23 +++-------------------- scripts/new-change | 19 +------------------ 4 files changed, 6 insertions(+), 42 deletions(-) diff --git a/scripts/changelog/model.py b/scripts/changelog/model.py index 0b21fedd415f..722108159c76 100644 --- a/scripts/changelog/model.py +++ b/scripts/changelog/model.py @@ -5,10 +5,9 @@ def __init__(self, version, date, entries): self.entries = entries class ChangelogEntry(object): - def __init__(self, type, category, description, contributor): + def __init__(self, type, category, description): self.type = type self.category = category - self.contributor = contributor self.description = description class Version(object): diff --git a/scripts/changelog/util.py b/scripts/changelog/util.py index acb86d8d8049..998a5f2a1429 100644 --- a/scripts/changelog/util.py +++ b/scripts/changelog/util.py @@ -38,8 +38,7 @@ def parse_release_changes(changes_json): return ReleaseChanges(version, date, entries) def parse_changelog_entry(entry_json): - return ChangelogEntry(entry_json['type'], entry_json['category'], entry_json['description'], - entry_json.get('contributor')) + return ChangelogEntry(entry_json['type'], entry_json['category'], entry_json['description']) def parse_version_string(s): version_parts = [s for s in s.split('.')] diff --git a/scripts/changelog/writer.py b/scripts/changelog/writer.py index a41dad92c971..458fb8f02561 100644 --- a/scripts/changelog/writer.py +++ b/scripts/changelog/writer.py @@ -28,19 +28,6 @@ def write_changes(self, changes): self.write_items_for_category(s, self.bugfixes, "Bugfixes") self.write_items_for_category(s, self.deprecations, "Deprecations") self.write_items_for_category(s, self.removals, "Removals") - self.write_contributors() - - def write_contributors(self): - contributors = set() - for e in self.current_changes.entries: - if e.contributor: - contributors.add(e.contributor) - - if contributors: - self.output_file.write("## __Contributors__\n") - contributors_string = ', '.join(contributors) - self.output_file.write("Special thanks to the following contributors to this release: \n") - self.output_file.write("\n" + contributors_string + ".\n") def process_changes(self, changes): self.current_changes = changes @@ -57,7 +44,7 @@ def reset_maps(self): def group_entries(self): for e in self.current_changes.entries: m = self.get_map_for_type(e.type) - m.setdefault(e.category, []).append(e) + m.setdefault(e.category, []).append(e.description) self.categories.add(e.category) def get_sorted_categories(self): @@ -88,8 +75,7 @@ def write_entries_with_header(self, header, entries): self.write('\n') def write_entry(self,e): - description = e.description - entry_lines = description.splitlines(True) + entry_lines = e.splitlines(True) self.write(" - %s" % entry_lines[0]) for l in entry_lines[1:]: if len(l.strip()) == 0: @@ -97,10 +83,7 @@ def write_entry(self,e): else: self.write(" %s" % l) self.write('\n') - if e.contributor: - self.write("\n - ") - self.write("Contributed by: " + e.contributor) - self.write('\n') + def get_map_for_type(self, t): if t == 'feature': diff --git a/scripts/new-change b/scripts/new-change index fdce35c44c8d..21d12444947e 100755 --- a/scripts/new-change +++ b/scripts/new-change @@ -61,12 +61,6 @@ type: {change_type} # or "AWS SDK for Java v2" if it's an SDK change to the core, runtime etc category: {category} -# Your GitHub user name to be included in the CHANGELOG. -# Every contribution counts and we would like to recognize -# your contribution! -# Leave it empty if you would prefer not to be mentioned. -contributor: {contributor} - The description of the change. Feel free to use Markdown here. description: {description} """ @@ -82,7 +76,6 @@ def new_changelog_entry(args): 'type': args.change_type, 'category': args.category, 'description': args.description, - 'contributor': args.contributor } else: parsed_values = get_values_from_editor(args) @@ -101,7 +94,7 @@ def get_missing_parts(parsed_values): def all_values_provided(args): - return args.change_type and args.category and args.description and args.github_username + return args.change_type and args.category and args.description def get_values_from_editor(args): @@ -110,7 +103,6 @@ def get_values_from_editor(args): change_type=args.change_type, category=args.category, description=args.description, - contributor=args.contributor ) f.write(contents) f.flush() @@ -145,11 +137,6 @@ def write_new_change(parsed_values): os.makedirs(dirname) # Need to generate a unique filename for this change. category = parsed_values['category'] - - contributor = parsed_values['contributor'] - if contributor and contributor.strip: - parsed_values['contributor'] = "@" + contributor - short_summary = ''.join(filter(lambda x: x in VALID_CHARS, category)) contents = json.dumps(parsed_values, indent=4) + "\n" contents_digest = hashlib.sha1(contents.encode('utf-8')).hexdigest() @@ -189,8 +176,6 @@ def parse_filled_in_contents(contents): parsed['type'] = t elif 'category' not in parsed and line.startswith('category:'): parsed['category'] = line[len('category:'):].strip() - elif 'contributor' not in parsed and line.startswith('contributor:'): - parsed['contributor'] = line[len('contributor:'):].strip() elif 'description' not in parsed and line.startswith('description:'): # Assume that everything until the end of the file is part # of the description, so we can break once we pull in the @@ -208,8 +193,6 @@ def main(): default='', choices=('bugfix', 'feature', 'deprecation')) parser.add_argument('-c', '--category', dest='category', default='') - parser.add_argument('-u', '--contributor', dest='contributor', - default='') parser.add_argument('-d', '--description', dest='description', default='') parser.add_argument('-r', '--repo', default='aws/aws-sdk-java-v2', From 2fac1e8a3e5b8b88729d3c652b5b9f1b39764f57 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 21 Oct 2020 19:33:47 +0000 Subject: [PATCH 045/339] AWS Organizations Update: AWS Organizations renamed the 'master account' to 'management account'. --- .../feature-AWSOrganizations-73ba404.json | 5 + .../codegen-resources/service-2.json | 124 +++++++++--------- 2 files changed, 67 insertions(+), 62 deletions(-) create mode 100644 .changes/next-release/feature-AWSOrganizations-73ba404.json diff --git a/.changes/next-release/feature-AWSOrganizations-73ba404.json b/.changes/next-release/feature-AWSOrganizations-73ba404.json new file mode 100644 index 000000000000..f7073b2aefff --- /dev/null +++ b/.changes/next-release/feature-AWSOrganizations-73ba404.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS Organizations", + "description": "AWS Organizations renamed the 'master account' to 'management account'." +} diff --git a/services/organizations/src/main/resources/codegen-resources/service-2.json b/services/organizations/src/main/resources/codegen-resources/service-2.json index bd27306b8c57..de1098be3006 100644 --- a/services/organizations/src/main/resources/codegen-resources/service-2.json +++ b/services/organizations/src/main/resources/codegen-resources/service-2.json @@ -34,7 +34,7 @@ {"shape":"TooManyRequestsException"}, {"shape":"AccessDeniedForDependencyException"} ], - "documentation":"

Sends a response to the originator of a handshake agreeing to the action proposed by the handshake request.

This operation can be called only by the following principals when they also have the relevant IAM permissions:

  • Invitation to join or Approve all features request handshakes: only a principal from the member account.

    The user who calls the API for an invitation to join must have the organizations:AcceptHandshake permission. If you enabled all features in the organization, the user must also have the iam:CreateServiceLinkedRole permission so that AWS Organizations can create the required service-linked role named AWSServiceRoleForOrganizations. For more information, see AWS Organizations and Service-Linked Roles in the AWS Organizations User Guide.

  • Enable all features final confirmation handshake: only a principal from the master account.

    For more information about invitations, see Inviting an AWS Account to Join Your Organization in the AWS Organizations User Guide. For more information about requests to enable all features in the organization, see Enabling All Features in Your Organization in the AWS Organizations User Guide.

After you accept a handshake, it continues to appear in the results of relevant APIs for only 30 days. After that, it's deleted.

" + "documentation":"

Sends a response to the originator of a handshake agreeing to the action proposed by the handshake request.

This operation can be called only by the following principals when they also have the relevant IAM permissions:

  • Invitation to join or Approve all features request handshakes: only a principal from the member account.

    The user who calls the API for an invitation to join must have the organizations:AcceptHandshake permission. If you enabled all features in the organization, the user must also have the iam:CreateServiceLinkedRole permission so that AWS Organizations can create the required service-linked role named AWSServiceRoleForOrganizations. For more information, see AWS Organizations and Service-Linked Roles in the AWS Organizations User Guide.

  • Enable all features final confirmation handshake: only a principal from the management account.

    For more information about invitations, see Inviting an AWS Account to Join Your Organization in the AWS Organizations User Guide. For more information about requests to enable all features in the organization, see Enabling All Features in Your Organization in the AWS Organizations User Guide.

After you accept a handshake, it continues to appear in the results of relevant APIs for only 30 days. After that, it's deleted.

" }, "AttachPolicy":{ "name":"AttachPolicy", @@ -58,7 +58,7 @@ {"shape":"UnsupportedAPIEndpointException"}, {"shape":"PolicyChangesInProgressException"} ], - "documentation":"

Attaches a policy to a root, an organizational unit (OU), or an individual account. How the policy affects accounts depends on the type of policy. Refer to the AWS Organizations User Guide for information about each policy type:

This operation can be called only from the organization's master account.

" + "documentation":"

Attaches a policy to a root, an organizational unit (OU), or an individual account. How the policy affects accounts depends on the type of policy. Refer to the AWS Organizations User Guide for information about each policy type:

This operation can be called only from the organization's management account.

" }, "CancelHandshake":{ "name":"CancelHandshake", @@ -99,7 +99,7 @@ {"shape":"TooManyRequestsException"}, {"shape":"UnsupportedAPIEndpointException"} ], - "documentation":"

Creates an AWS account that is automatically a member of the organization whose credentials made the request. This is an asynchronous request that AWS performs in the background. Because CreateAccount operates asynchronously, it can return a successful completion message even though account initialization might still be in progress. You might need to wait a few minutes before you can successfully access the account. To check the status of the request, do one of the following:

  • Use the Id member of the CreateAccountStatus response element from this operation to provide as a parameter to the DescribeCreateAccountStatus operation.

  • Check the AWS CloudTrail log for the CreateAccountResult event. For information on using AWS CloudTrail with AWS Organizations, see Monitoring the Activity in Your Organization in the AWS Organizations User Guide.

The user who calls the API to create an account must have the organizations:CreateAccount permission. If you enabled all features in the organization, AWS Organizations creates the required service-linked role named AWSServiceRoleForOrganizations. For more information, see AWS Organizations and Service-Linked Roles in the AWS Organizations User Guide.

If the request includes tags, then the requester must have the organizations:TagResource permission.

AWS Organizations preconfigures the new member account with a role (named OrganizationAccountAccessRole by default) that grants users in the master account administrator permissions in the new member account. Principals in the master account can assume the role. AWS Organizations clones the company name and address information for the new account from the organization's master account.

This operation can be called only from the organization's master account.

For more information about creating accounts, see Creating an AWS Account in Your Organization in the AWS Organizations User Guide.

  • When you create an account in an organization using the AWS Organizations console, API, or CLI commands, the information required for the account to operate as a standalone account, such as a payment method and signing the end user license agreement (EULA) is not automatically collected. If you must remove an account from your organization later, you can do so only after you provide the missing information. Follow the steps at To leave an organization as a member account in the AWS Organizations User Guide.

  • If you get an exception that indicates that you exceeded your account limits for the organization, contact AWS Support.

  • If you get an exception that indicates that the operation failed because your organization is still initializing, wait one hour and then try again. If the error persists, contact AWS Support.

  • Using CreateAccount to create multiple temporary accounts isn't recommended. You can only close an account from the Billing and Cost Management Console, and you must be signed in as the root user. For information on the requirements and process for closing an account, see Closing an AWS Account in the AWS Organizations User Guide.

When you create a member account with this operation, you can choose whether to create the account with the IAM User and Role Access to Billing Information switch enabled. If you enable it, IAM users and roles that have appropriate permissions can view billing information for the account. If you disable it, only the account root user can access billing information. For information about how to disable this switch for an account, see Granting Access to Your Billing Information and Tools.

" + "documentation":"

Creates an AWS account that is automatically a member of the organization whose credentials made the request. This is an asynchronous request that AWS performs in the background. Because CreateAccount operates asynchronously, it can return a successful completion message even though account initialization might still be in progress. You might need to wait a few minutes before you can successfully access the account. To check the status of the request, do one of the following:

  • Use the Id member of the CreateAccountStatus response element from this operation to provide as a parameter to the DescribeCreateAccountStatus operation.

  • Check the AWS CloudTrail log for the CreateAccountResult event. For information on using AWS CloudTrail with AWS Organizations, see Monitoring the Activity in Your Organization in the AWS Organizations User Guide.

The user who calls the API to create an account must have the organizations:CreateAccount permission. If you enabled all features in the organization, AWS Organizations creates the required service-linked role named AWSServiceRoleForOrganizations. For more information, see AWS Organizations and Service-Linked Roles in the AWS Organizations User Guide.

If the request includes tags, then the requester must have the organizations:TagResource permission.

AWS Organizations preconfigures the new member account with a role (named OrganizationAccountAccessRole by default) that grants users in the management account administrator permissions in the new member account. Principals in the management account can assume the role. AWS Organizations clones the company name and address information for the new account from the organization's management account.

This operation can be called only from the organization's management account.

For more information about creating accounts, see Creating an AWS Account in Your Organization in the AWS Organizations User Guide.

  • When you create an account in an organization using the AWS Organizations console, API, or CLI commands, the information required for the account to operate as a standalone account, such as a payment method and signing the end user license agreement (EULA) is not automatically collected. If you must remove an account from your organization later, you can do so only after you provide the missing information. Follow the steps at To leave an organization as a member account in the AWS Organizations User Guide.

  • If you get an exception that indicates that you exceeded your account limits for the organization, contact AWS Support.

  • If you get an exception that indicates that the operation failed because your organization is still initializing, wait one hour and then try again. If the error persists, contact AWS Support.

  • Using CreateAccount to create multiple temporary accounts isn't recommended. You can only close an account from the Billing and Cost Management Console, and you must be signed in as the root user. For information on the requirements and process for closing an account, see Closing an AWS Account in the AWS Organizations User Guide.

When you create a member account with this operation, you can choose whether to create the account with the IAM User and Role Access to Billing Information switch enabled. If you enable it, IAM users and roles that have appropriate permissions can view billing information for the account. If you disable it, only the account root user can access billing information. For information about how to disable this switch for an account, see Granting Access to Your Billing Information and Tools.

" }, "CreateGovCloudAccount":{ "name":"CreateGovCloudAccount", @@ -120,7 +120,7 @@ {"shape":"TooManyRequestsException"}, {"shape":"UnsupportedAPIEndpointException"} ], - "documentation":"

This action is available if all of the following are true:

  • You're authorized to create accounts in the AWS GovCloud (US) Region. For more information on the AWS GovCloud (US) Region, see the AWS GovCloud User Guide.

  • You already have an account in the AWS GovCloud (US) Region that is paired with a master account of an organization in the commercial Region.

  • You call this action from the master account of your organization in the commercial Region.

  • You have the organizations:CreateGovCloudAccount permission.

AWS Organizations automatically creates the required service-linked role named AWSServiceRoleForOrganizations. For more information, see AWS Organizations and Service-Linked Roles in the AWS Organizations User Guide.

AWS automatically enables AWS CloudTrail for AWS GovCloud (US) accounts, but you should also do the following:

  • Verify that AWS CloudTrail is enabled to store logs.

  • Create an S3 bucket for AWS CloudTrail log storage.

    For more information, see Verifying AWS CloudTrail Is Enabled in the AWS GovCloud User Guide.

If the request includes tags, then the requester must have the organizations:TagResource permission. The tags are attached to the commercial account associated with the GovCloud account, rather than the GovCloud account itself. To add tags to the GovCloud account, call the TagResource operation in the GovCloud Region after the new GovCloud account exists.

You call this action from the master account of your organization in the commercial Region to create a standalone AWS account in the AWS GovCloud (US) Region. After the account is created, the master account of an organization in the AWS GovCloud (US) Region can invite it to that organization. For more information on inviting standalone accounts in the AWS GovCloud (US) to join an organization, see AWS Organizations in the AWS GovCloud User Guide.

Calling CreateGovCloudAccount is an asynchronous request that AWS performs in the background. Because CreateGovCloudAccount operates asynchronously, it can return a successful completion message even though account initialization might still be in progress. You might need to wait a few minutes before you can successfully access the account. To check the status of the request, do one of the following:

When you call the CreateGovCloudAccount action, you create two accounts: a standalone account in the AWS GovCloud (US) Region and an associated account in the commercial Region for billing and support purposes. The account in the commercial Region is automatically a member of the organization whose credentials made the request. Both accounts are associated with the same email address.

A role is created in the new account in the commercial Region that allows the master account in the organization in the commercial Region to assume it. An AWS GovCloud (US) account is then created and associated with the commercial account that you just created. A role is also created in the new AWS GovCloud (US) account that can be assumed by the AWS GovCloud (US) account that is associated with the master account of the commercial organization. For more information and to view a diagram that explains how account access works, see AWS Organizations in the AWS GovCloud User Guide.

For more information about creating accounts, see Creating an AWS Account in Your Organization in the AWS Organizations User Guide.

  • When you create an account in an organization using the AWS Organizations console, API, or CLI commands, the information required for the account to operate as a standalone account is not automatically collected. This includes a payment method and signing the end user license agreement (EULA). If you must remove an account from your organization later, you can do so only after you provide the missing information. Follow the steps at To leave an organization as a member account in the AWS Organizations User Guide.

  • If you get an exception that indicates that you exceeded your account limits for the organization, contact AWS Support.

  • If you get an exception that indicates that the operation failed because your organization is still initializing, wait one hour and then try again. If the error persists, contact AWS Support.

  • Using CreateGovCloudAccount to create multiple temporary accounts isn't recommended. You can only close an account from the AWS Billing and Cost Management console, and you must be signed in as the root user. For information on the requirements and process for closing an account, see Closing an AWS Account in the AWS Organizations User Guide.

When you create a member account with this operation, you can choose whether to create the account with the IAM User and Role Access to Billing Information switch enabled. If you enable it, IAM users and roles that have appropriate permissions can view billing information for the account. If you disable it, only the account root user can access billing information. For information about how to disable this switch for an account, see Granting Access to Your Billing Information and Tools.

" + "documentation":"

This action is available if all of the following are true:

  • You're authorized to create accounts in the AWS GovCloud (US) Region. For more information on the AWS GovCloud (US) Region, see the AWS GovCloud User Guide.

  • You already have an account in the AWS GovCloud (US) Region that is paired with a management account of an organization in the commercial Region.

  • You call this action from the management account of your organization in the commercial Region.

  • You have the organizations:CreateGovCloudAccount permission.

AWS Organizations automatically creates the required service-linked role named AWSServiceRoleForOrganizations. For more information, see AWS Organizations and Service-Linked Roles in the AWS Organizations User Guide.

AWS automatically enables AWS CloudTrail for AWS GovCloud (US) accounts, but you should also do the following:

  • Verify that AWS CloudTrail is enabled to store logs.

  • Create an S3 bucket for AWS CloudTrail log storage.

    For more information, see Verifying AWS CloudTrail Is Enabled in the AWS GovCloud User Guide.

If the request includes tags, then the requester must have the organizations:TagResource permission. The tags are attached to the commercial account associated with the GovCloud account, rather than the GovCloud account itself. To add tags to the GovCloud account, call the TagResource operation in the GovCloud Region after the new GovCloud account exists.

You call this action from the management account of your organization in the commercial Region to create a standalone AWS account in the AWS GovCloud (US) Region. After the account is created, the management account of an organization in the AWS GovCloud (US) Region can invite it to that organization. For more information on inviting standalone accounts in the AWS GovCloud (US) to join an organization, see AWS Organizations in the AWS GovCloud User Guide.

Calling CreateGovCloudAccount is an asynchronous request that AWS performs in the background. Because CreateGovCloudAccount operates asynchronously, it can return a successful completion message even though account initialization might still be in progress. You might need to wait a few minutes before you can successfully access the account. To check the status of the request, do one of the following:

When you call the CreateGovCloudAccount action, you create two accounts: a standalone account in the AWS GovCloud (US) Region and an associated account in the commercial Region for billing and support purposes. The account in the commercial Region is automatically a member of the organization whose credentials made the request. Both accounts are associated with the same email address.

A role is created in the new account in the commercial Region that allows the management account in the organization in the commercial Region to assume it. An AWS GovCloud (US) account is then created and associated with the commercial account that you just created. A role is also created in the new AWS GovCloud (US) account that can be assumed by the AWS GovCloud (US) account that is associated with the management account of the commercial organization. For more information and to view a diagram that explains how account access works, see AWS Organizations in the AWS GovCloud User Guide.

For more information about creating accounts, see Creating an AWS Account in Your Organization in the AWS Organizations User Guide.

  • When you create an account in an organization using the AWS Organizations console, API, or CLI commands, the information required for the account to operate as a standalone account is not automatically collected. This includes a payment method and signing the end user license agreement (EULA). If you must remove an account from your organization later, you can do so only after you provide the missing information. Follow the steps at To leave an organization as a member account in the AWS Organizations User Guide.

  • If you get an exception that indicates that you exceeded your account limits for the organization, contact AWS Support.

  • If you get an exception that indicates that the operation failed because your organization is still initializing, wait one hour and then try again. If the error persists, contact AWS Support.

  • Using CreateGovCloudAccount to create multiple temporary accounts isn't recommended. You can only close an account from the AWS Billing and Cost Management console, and you must be signed in as the root user. For information on the requirements and process for closing an account, see Closing an AWS Account in the AWS Organizations User Guide.

When you create a member account with this operation, you can choose whether to create the account with the IAM User and Role Access to Billing Information switch enabled. If you enable it, IAM users and roles that have appropriate permissions can view billing information for the account. If you disable it, only the account root user can access billing information. For information about how to disable this switch for an account, see Granting Access to Your Billing Information and Tools.

" }, "CreateOrganization":{ "name":"CreateOrganization", @@ -140,7 +140,7 @@ {"shape":"TooManyRequestsException"}, {"shape":"AccessDeniedForDependencyException"} ], - "documentation":"

Creates an AWS organization. The account whose user is calling the CreateOrganization operation automatically becomes the master account of the new organization.

This operation must be called using credentials from the account that is to become the new organization's master account. The principal must also have the relevant IAM permissions.

By default (or if you set the FeatureSet parameter to ALL), the new organization is created with all features enabled and service control policies automatically enabled in the root. If you instead choose to create the organization supporting only the consolidated billing features by setting the FeatureSet parameter to CONSOLIDATED_BILLING\", no policy types are enabled by default, and you can't use organization policies

" + "documentation":"

Creates an AWS organization. The account whose user is calling the CreateOrganization operation automatically becomes the management account of the new organization.

This operation must be called using credentials from the account that is to become the new organization's management account. The principal must also have the relevant IAM permissions.

By default (or if you set the FeatureSet parameter to ALL), the new organization is created with all features enabled and service control policies automatically enabled in the root. If you instead choose to create the organization supporting only the consolidated billing features by setting the FeatureSet parameter to CONSOLIDATED_BILLING\", no policy types are enabled by default, and you can't use organization policies

" }, "CreateOrganizationalUnit":{ "name":"CreateOrganizationalUnit", @@ -161,7 +161,7 @@ {"shape":"ServiceException"}, {"shape":"TooManyRequestsException"} ], - "documentation":"

Creates an organizational unit (OU) within a root or parent OU. An OU is a container for accounts that enables you to organize your accounts to apply policies according to your business requirements. The number of levels deep that you can nest OUs is dependent upon the policy types enabled for that root. For service control policies, the limit is five.

For more information about OUs, see Managing Organizational Units in the AWS Organizations User Guide.

If the request includes tags, then the requester must have the organizations:TagResource permission.

This operation can be called only from the organization's master account.

" + "documentation":"

Creates an organizational unit (OU) within a root or parent OU. An OU is a container for accounts that enables you to organize your accounts to apply policies according to your business requirements. The number of levels deep that you can nest OUs is dependent upon the policy types enabled for that root. For service control policies, the limit is five.

For more information about OUs, see Managing Organizational Units in the AWS Organizations User Guide.

If the request includes tags, then the requester must have the organizations:TagResource permission.

This operation can be called only from the organization's management account.

" }, "CreatePolicy":{ "name":"CreatePolicy", @@ -184,7 +184,7 @@ {"shape":"TooManyRequestsException"}, {"shape":"UnsupportedAPIEndpointException"} ], - "documentation":"

Creates a policy of a specified type that you can attach to a root, an organizational unit (OU), or an individual AWS account.

For more information about policies and their use, see Managing Organization Policies.

If the request includes tags, then the requester must have the organizations:TagResource permission.

This operation can be called only from the organization's master account.

" + "documentation":"

Creates a policy of a specified type that you can attach to a root, an organizational unit (OU), or an individual AWS account.

For more information about policies and their use, see Managing Organization Policies.

If the request includes tags, then the requester must have the organizations:TagResource permission.

This operation can be called only from the organization's management account.

" }, "DeclineHandshake":{ "name":"DeclineHandshake", @@ -221,7 +221,7 @@ {"shape":"ServiceException"}, {"shape":"TooManyRequestsException"} ], - "documentation":"

Deletes the organization. You can delete an organization only by using credentials from the master account. The organization must be empty of member accounts.

" + "documentation":"

Deletes the organization. You can delete an organization only by using credentials from the management account. The organization must be empty of member accounts.

" }, "DeleteOrganizationalUnit":{ "name":"DeleteOrganizationalUnit", @@ -240,7 +240,7 @@ {"shape":"ServiceException"}, {"shape":"TooManyRequestsException"} ], - "documentation":"

Deletes an organizational unit (OU) from a root or another OU. You must first remove all accounts and child OUs from the OU that you want to delete.

This operation can be called only from the organization's master account.

" + "documentation":"

Deletes an organizational unit (OU) from a root or another OU. You must first remove all accounts and child OUs from the OU that you want to delete.

This operation can be called only from the organization's management account.

" }, "DeletePolicy":{ "name":"DeletePolicy", @@ -260,7 +260,7 @@ {"shape":"TooManyRequestsException"}, {"shape":"UnsupportedAPIEndpointException"} ], - "documentation":"

Deletes the specified policy from your organization. Before you perform this operation, you must first detach the policy from all organizational units (OUs), roots, and accounts.

This operation can be called only from the organization's master account.

" + "documentation":"

Deletes the specified policy from your organization. Before you perform this operation, you must first detach the policy from all organizational units (OUs), roots, and accounts.

This operation can be called only from the organization's management account.

" }, "DeregisterDelegatedAdministrator":{ "name":"DeregisterDelegatedAdministrator", @@ -281,7 +281,7 @@ {"shape":"ServiceException"}, {"shape":"UnsupportedAPIEndpointException"} ], - "documentation":"

Removes the specified member AWS account as a delegated administrator for the specified AWS service.

Deregistering a delegated administrator can have unintended impacts on the functionality of the enabled AWS service. See the documentation for the enabled service before you deregister a delegated administrator so that you understand any potential impacts.

You can run this action only for AWS services that support this feature. For a current list of services that support it, see the column Supports Delegated Administrator in the table at AWS Services that you can use with AWS Organizations in the AWS Organizations User Guide.

This operation can be called only from the organization's master account.

" + "documentation":"

Removes the specified member AWS account as a delegated administrator for the specified AWS service.

Deregistering a delegated administrator can have unintended impacts on the functionality of the enabled AWS service. See the documentation for the enabled service before you deregister a delegated administrator so that you understand any potential impacts.

You can run this action only for AWS services that support this feature. For a current list of services that support it, see the column Supports Delegated Administrator in the table at AWS Services that you can use with AWS Organizations in the AWS Organizations User Guide.

This operation can be called only from the organization's management account.

" }, "DescribeAccount":{ "name":"DescribeAccount", @@ -299,7 +299,7 @@ {"shape":"ServiceException"}, {"shape":"TooManyRequestsException"} ], - "documentation":"

Retrieves AWS Organizations-related information about the specified account.

This operation can be called only from the organization's master account or by a member account that is a delegated administrator for an AWS service.

" + "documentation":"

Retrieves AWS Organizations-related information about the specified account.

This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an AWS service.

" }, "DescribeCreateAccountStatus":{ "name":"DescribeCreateAccountStatus", @@ -318,7 +318,7 @@ {"shape":"TooManyRequestsException"}, {"shape":"UnsupportedAPIEndpointException"} ], - "documentation":"

Retrieves the current status of an asynchronous request to create an account.

This operation can be called only from the organization's master account or by a member account that is a delegated administrator for an AWS service.

" + "documentation":"

Retrieves the current status of an asynchronous request to create an account.

This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an AWS service.

" }, "DescribeEffectivePolicy":{ "name":"DescribeEffectivePolicy", @@ -339,7 +339,7 @@ {"shape":"InvalidInputException"}, {"shape":"UnsupportedAPIEndpointException"} ], - "documentation":"

Returns the contents of the effective policy for specified policy type and account. The effective policy is the aggregation of any policies of the specified type that the account inherits, plus any policy of that type that is directly attached to the account.

This operation applies only to policy types other than service control policies (SCPs).

For more information about policy inheritance, see How Policy Inheritance Works in the AWS Organizations User Guide.

This operation can be called only from the organization's master account or by a member account that is a delegated administrator for an AWS service.

" + "documentation":"

Returns the contents of the effective policy for specified policy type and account. The effective policy is the aggregation of any policies of the specified type that the account inherits, plus any policy of that type that is directly attached to the account.

This operation applies only to policy types other than service control policies (SCPs).

For more information about policy inheritance, see How Policy Inheritance Works in the AWS Organizations User Guide.

This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an AWS service.

" }, "DescribeHandshake":{ "name":"DescribeHandshake", @@ -391,7 +391,7 @@ {"shape":"ServiceException"}, {"shape":"TooManyRequestsException"} ], - "documentation":"

Retrieves information about an organizational unit (OU).

This operation can be called only from the organization's master account or by a member account that is a delegated administrator for an AWS service.

" + "documentation":"

Retrieves information about an organizational unit (OU).

This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an AWS service.

" }, "DescribePolicy":{ "name":"DescribePolicy", @@ -410,7 +410,7 @@ {"shape":"TooManyRequestsException"}, {"shape":"UnsupportedAPIEndpointException"} ], - "documentation":"

Retrieves information about a policy.

This operation can be called only from the organization's master account or by a member account that is a delegated administrator for an AWS service.

" + "documentation":"

Retrieves information about a policy.

This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an AWS service.

" }, "DetachPolicy":{ "name":"DetachPolicy", @@ -433,7 +433,7 @@ {"shape":"UnsupportedAPIEndpointException"}, {"shape":"PolicyChangesInProgressException"} ], - "documentation":"

Detaches a policy from a target root, organizational unit (OU), or account.

If the policy being detached is a service control policy (SCP), the changes to permissions for AWS Identity and Access Management (IAM) users and roles in affected accounts are immediate.

Every root, OU, and account must have at least one SCP attached. If you want to replace the default FullAWSAccess policy with an SCP that limits the permissions that can be delegated, you must attach the replacement SCP before you can remove the default SCP. This is the authorization strategy of an \"allow list\". If you instead attach a second SCP and leave the FullAWSAccess SCP still attached, and specify \"Effect\": \"Deny\" in the second SCP to override the \"Effect\": \"Allow\" in the FullAWSAccess policy (or any other attached SCP), you're using the authorization strategy of a \"deny list\".

This operation can be called only from the organization's master account.

" + "documentation":"

Detaches a policy from a target root, organizational unit (OU), or account.

If the policy being detached is a service control policy (SCP), the changes to permissions for AWS Identity and Access Management (IAM) users and roles in affected accounts are immediate.

Every root, OU, and account must have at least one SCP attached. If you want to replace the default FullAWSAccess policy with an SCP that limits the permissions that can be delegated, you must attach the replacement SCP before you can remove the default SCP. This is the authorization strategy of an \"allow list\". If you instead attach a second SCP and leave the FullAWSAccess SCP still attached, and specify \"Effect\": \"Deny\" in the second SCP to override the \"Effect\": \"Allow\" in the FullAWSAccess policy (or any other attached SCP), you're using the authorization strategy of a \"deny list\".

This operation can be called only from the organization's management account.

" }, "DisableAWSServiceAccess":{ "name":"DisableAWSServiceAccess", @@ -452,7 +452,7 @@ {"shape":"TooManyRequestsException"}, {"shape":"UnsupportedAPIEndpointException"} ], - "documentation":"

Disables the integration of an AWS service (the service that is specified by ServicePrincipal) with AWS Organizations. When you disable integration, the specified service no longer can create a service-linked role in new accounts in your organization. This means the service can't perform operations on your behalf on any new accounts in your organization. The service can still perform operations in older accounts until the service completes its clean-up from AWS Organizations.

We recommend that you disable integration between AWS Organizations and the specified AWS service by using the console or commands that are provided by the specified service. Doing so ensures that the other service is aware that it can clean up any resources that are required only for the integration. How the service cleans up its resources in the organization's accounts depends on that service. For more information, see the documentation for the other AWS service.

After you perform the DisableAWSServiceAccess operation, the specified service can no longer perform operations in your organization's accounts unless the operations are explicitly permitted by the IAM policies that are attached to your roles.

For more information about integrating other services with AWS Organizations, including the list of services that work with Organizations, see Integrating AWS Organizations with Other AWS Services in the AWS Organizations User Guide.

This operation can be called only from the organization's master account.

" + "documentation":"

Disables the integration of an AWS service (the service that is specified by ServicePrincipal) with AWS Organizations. When you disable integration, the specified service no longer can create a service-linked role in new accounts in your organization. This means the service can't perform operations on your behalf on any new accounts in your organization. The service can still perform operations in older accounts until the service completes its clean-up from AWS Organizations.

We recommend that you disable integration between AWS Organizations and the specified AWS service by using the console or commands that are provided by the specified service. Doing so ensures that the other service is aware that it can clean up any resources that are required only for the integration. How the service cleans up its resources in the organization's accounts depends on that service. For more information, see the documentation for the other AWS service.

After you perform the DisableAWSServiceAccess operation, the specified service can no longer perform operations in your organization's accounts unless the operations are explicitly permitted by the IAM policies that are attached to your roles.

For more information about integrating other services with AWS Organizations, including the list of services that work with Organizations, see Integrating AWS Organizations with Other AWS Services in the AWS Organizations User Guide.

This operation can be called only from the organization's management account.

" }, "DisablePolicyType":{ "name":"DisablePolicyType", @@ -475,7 +475,7 @@ {"shape":"UnsupportedAPIEndpointException"}, {"shape":"PolicyChangesInProgressException"} ], - "documentation":"

Disables an organizational policy type in a root. A policy of a certain type can be attached to entities in a root only if that type is enabled in the root. After you perform this operation, you no longer can attach policies of the specified type to that root or to any organizational unit (OU) or account in that root. You can undo this by using the EnablePolicyType operation.

This is an asynchronous request that AWS performs in the background. If you disable a policy type for a root, it still appears enabled for the organization if all features are enabled for the organization. AWS recommends that you first use ListRoots to see the status of policy types for a specified root, and then use this operation.

This operation can be called only from the organization's master account.

To view the status of available policy types in the organization, use DescribeOrganization.

" + "documentation":"

Disables an organizational policy type in a root. A policy of a certain type can be attached to entities in a root only if that type is enabled in the root. After you perform this operation, you no longer can attach policies of the specified type to that root or to any organizational unit (OU) or account in that root. You can undo this by using the EnablePolicyType operation.

This is an asynchronous request that AWS performs in the background. If you disable a policy type for a root, it still appears enabled for the organization if all features are enabled for the organization. AWS recommends that you first use ListRoots to see the status of policy types for a specified root, and then use this operation.

This operation can be called only from the organization's management account.

To view the status of available policy types in the organization, use DescribeOrganization.

" }, "EnableAWSServiceAccess":{ "name":"EnableAWSServiceAccess", @@ -494,7 +494,7 @@ {"shape":"TooManyRequestsException"}, {"shape":"UnsupportedAPIEndpointException"} ], - "documentation":"

Enables the integration of an AWS service (the service that is specified by ServicePrincipal) with AWS Organizations. When you enable integration, you allow the specified service to create a service-linked role in all the accounts in your organization. This allows the service to perform operations on your behalf in your organization and its accounts.

We recommend that you enable integration between AWS Organizations and the specified AWS service by using the console or commands that are provided by the specified service. Doing so ensures that the service is aware that it can create the resources that are required for the integration. How the service creates those resources in the organization's accounts depends on that service. For more information, see the documentation for the other AWS service.

For more information about enabling services to integrate with AWS Organizations, see Integrating AWS Organizations with Other AWS Services in the AWS Organizations User Guide.

This operation can be called only from the organization's master account and only if the organization has enabled all features.

" + "documentation":"

Enables the integration of an AWS service (the service that is specified by ServicePrincipal) with AWS Organizations. When you enable integration, you allow the specified service to create a service-linked role in all the accounts in your organization. This allows the service to perform operations on your behalf in your organization and its accounts.

We recommend that you enable integration between AWS Organizations and the specified AWS service by using the console or commands that are provided by the specified service. Doing so ensures that the service is aware that it can create the resources that are required for the integration. How the service creates those resources in the organization's accounts depends on that service. For more information, see the documentation for the other AWS service.

For more information about enabling services to integrate with AWS Organizations, see Integrating AWS Organizations with Other AWS Services in the AWS Organizations User Guide.

This operation can be called only from the organization's management account and only if the organization has enabled all features.

" }, "EnableAllFeatures":{ "name":"EnableAllFeatures", @@ -513,7 +513,7 @@ {"shape":"ServiceException"}, {"shape":"TooManyRequestsException"} ], - "documentation":"

Enables all features in an organization. This enables the use of organization policies that can restrict the services and actions that can be called in each account. Until you enable all features, you have access only to consolidated billing, and you can't use any of the advanced account administration features that AWS Organizations supports. For more information, see Enabling All Features in Your Organization in the AWS Organizations User Guide.

This operation is required only for organizations that were created explicitly with only the consolidated billing features enabled. Calling this operation sends a handshake to every invited account in the organization. The feature set change can be finalized and the additional features enabled only after all administrators in the invited accounts approve the change by accepting the handshake.

After you enable all features, you can separately enable or disable individual policy types in a root using EnablePolicyType and DisablePolicyType. To see the status of policy types in a root, use ListRoots.

After all invited member accounts accept the handshake, you finalize the feature set change by accepting the handshake that contains \"Action\": \"ENABLE_ALL_FEATURES\". This completes the change.

After you enable all features in your organization, the master account in the organization can apply policies on all member accounts. These policies can restrict what users and even administrators in those accounts can do. The master account can apply policies that prevent accounts from leaving the organization. Ensure that your account administrators are aware of this.

This operation can be called only from the organization's master account.

" + "documentation":"

Enables all features in an organization. This enables the use of organization policies that can restrict the services and actions that can be called in each account. Until you enable all features, you have access only to consolidated billing, and you can't use any of the advanced account administration features that AWS Organizations supports. For more information, see Enabling All Features in Your Organization in the AWS Organizations User Guide.

This operation is required only for organizations that were created explicitly with only the consolidated billing features enabled. Calling this operation sends a handshake to every invited account in the organization. The feature set change can be finalized and the additional features enabled only after all administrators in the invited accounts approve the change by accepting the handshake.

After you enable all features, you can separately enable or disable individual policy types in a root using EnablePolicyType and DisablePolicyType. To see the status of policy types in a root, use ListRoots.

After all invited member accounts accept the handshake, you finalize the feature set change by accepting the handshake that contains \"Action\": \"ENABLE_ALL_FEATURES\". This completes the change.

After you enable all features in your organization, the management account in the organization can apply policies on all member accounts. These policies can restrict what users and even administrators in those accounts can do. The management account can apply policies that prevent accounts from leaving the organization. Ensure that your account administrators are aware of this.

This operation can be called only from the organization's management account.

" }, "EnablePolicyType":{ "name":"EnablePolicyType", @@ -537,7 +537,7 @@ {"shape":"UnsupportedAPIEndpointException"}, {"shape":"PolicyChangesInProgressException"} ], - "documentation":"

Enables a policy type in a root. After you enable a policy type in a root, you can attach policies of that type to the root, any organizational unit (OU), or account in that root. You can undo this by using the DisablePolicyType operation.

This is an asynchronous request that AWS performs in the background. AWS recommends that you first use ListRoots to see the status of policy types for a specified root, and then use this operation.

This operation can be called only from the organization's master account.

You can enable a policy type in a root only if that policy type is available in the organization. To view the status of available policy types in the organization, use DescribeOrganization.

" + "documentation":"

Enables a policy type in a root. After you enable a policy type in a root, you can attach policies of that type to the root, any organizational unit (OU), or account in that root. You can undo this by using the DisablePolicyType operation.

This is an asynchronous request that AWS performs in the background. AWS recommends that you first use ListRoots to see the status of policy types for a specified root, and then use this operation.

This operation can be called only from the organization's management account.

You can enable a policy type in a root only if that policy type is available in the organization. To view the status of available policy types in the organization, use DescribeOrganization.

" }, "InviteAccountToOrganization":{ "name":"InviteAccountToOrganization", @@ -560,7 +560,7 @@ {"shape":"ServiceException"}, {"shape":"TooManyRequestsException"} ], - "documentation":"

Sends an invitation to another account to join your organization as a member account. AWS Organizations sends email on your behalf to the email address that is associated with the other account's owner. The invitation is implemented as a Handshake whose details are in the response.

  • You can invite AWS accounts only from the same seller as the master account. For example, if your organization's master account was created by Amazon Internet Services Pvt. Ltd (AISPL), an AWS seller in India, you can invite only other AISPL accounts to your organization. You can't combine accounts from AISPL and AWS or from any other AWS seller. For more information, see Consolidated Billing in India.

  • If you receive an exception that indicates that you exceeded your account limits for the organization or that the operation failed because your organization is still initializing, wait one hour and then try again. If the error persists after an hour, contact AWS Support.

If the request includes tags, then the requester must have the organizations:TagResource permission.

This operation can be called only from the organization's master account.

" + "documentation":"

Sends an invitation to another account to join your organization as a member account. AWS Organizations sends email on your behalf to the email address that is associated with the other account's owner. The invitation is implemented as a Handshake whose details are in the response.

  • You can invite AWS accounts only from the same seller as the management account. For example, if your organization's management account was created by Amazon Internet Services Pvt. Ltd (AISPL), an AWS seller in India, you can invite only other AISPL accounts to your organization. You can't combine accounts from AISPL and AWS or from any other AWS seller. For more information, see Consolidated Billing in India.

  • If you receive an exception that indicates that you exceeded your account limits for the organization or that the operation failed because your organization is still initializing, wait one hour and then try again. If the error persists after an hour, contact AWS Support.

If the request includes tags, then the requester must have the organizations:TagResource permission.

This operation can be called only from the organization's management account.

" }, "LeaveOrganization":{ "name":"LeaveOrganization", @@ -579,7 +579,7 @@ {"shape":"ServiceException"}, {"shape":"TooManyRequestsException"} ], - "documentation":"

Removes a member account from its parent organization. This version of the operation is performed by the account that wants to leave. To remove a member account as a user in the master account, use RemoveAccountFromOrganization instead.

This operation can be called only from a member account in the organization.

  • The master account in an organization with all features enabled can set service control policies (SCPs) that can restrict what administrators of member accounts can do. This includes preventing them from successfully calling LeaveOrganization and leaving the organization.

  • You can leave an organization as a member account only if the account is configured with the information required to operate as a standalone account. When you create an account in an organization using the AWS Organizations console, API, or CLI commands, the information required of standalone accounts is not automatically collected. For each account that you want to make standalone, you must perform the following steps. If any of the steps are already completed for this account, that step doesn't appear.

    • Choose a support plan

    • Provide and verify the required contact information

    • Provide a current payment method

    AWS uses the payment method to charge for any billable (not free tier) AWS activity that occurs while the account isn't attached to an organization. Follow the steps at To leave an organization when all required account information has not yet been provided in the AWS Organizations User Guide.

  • You can leave an organization only after you enable IAM user access to billing in your account. For more information, see Activating Access to the Billing and Cost Management Console in the AWS Billing and Cost Management User Guide.

  • After the account leaves the organization, all tags that were attached to the account object in the organization are deleted. AWS accounts outside of an organization do not support tags.

" + "documentation":"

Removes a member account from its parent organization. This version of the operation is performed by the account that wants to leave. To remove a member account as a user in the management account, use RemoveAccountFromOrganization instead.

This operation can be called only from a member account in the organization.

  • The management account in an organization with all features enabled can set service control policies (SCPs) that can restrict what administrators of member accounts can do. This includes preventing them from successfully calling LeaveOrganization and leaving the organization.

  • You can leave an organization as a member account only if the account is configured with the information required to operate as a standalone account. When you create an account in an organization using the AWS Organizations console, API, or CLI commands, the information required of standalone accounts is not automatically collected. For each account that you want to make standalone, you must perform the following steps. If any of the steps are already completed for this account, that step doesn't appear.

    • Choose a support plan

    • Provide and verify the required contact information

    • Provide a current payment method

    AWS uses the payment method to charge for any billable (not free tier) AWS activity that occurs while the account isn't attached to an organization. Follow the steps at To leave an organization when all required account information has not yet been provided in the AWS Organizations User Guide.

  • You can leave an organization only after you enable IAM user access to billing in your account. For more information, see Activating Access to the Billing and Cost Management Console in the AWS Billing and Cost Management User Guide.

  • After the account leaves the organization, all tags that were attached to the account object in the organization are deleted. AWS accounts outside of an organization do not support tags.

" }, "ListAWSServiceAccessForOrganization":{ "name":"ListAWSServiceAccessForOrganization", @@ -598,7 +598,7 @@ {"shape":"TooManyRequestsException"}, {"shape":"UnsupportedAPIEndpointException"} ], - "documentation":"

Returns a list of the AWS services that you enabled to integrate with your organization. After a service on this list creates the resources that it requires for the integration, it can perform operations on your organization and its accounts.

For more information about integrating other services with AWS Organizations, including the list of services that currently work with Organizations, see Integrating AWS Organizations with Other AWS Services in the AWS Organizations User Guide.

This operation can be called only from the organization's master account or by a member account that is a delegated administrator for an AWS service.

" + "documentation":"

Returns a list of the AWS services that you enabled to integrate with your organization. After a service on this list creates the resources that it requires for the integration, it can perform operations on your organization and its accounts.

For more information about integrating other services with AWS Organizations, including the list of services that currently work with Organizations, see Integrating AWS Organizations with Other AWS Services in the AWS Organizations User Guide.

This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an AWS service.

" }, "ListAccounts":{ "name":"ListAccounts", @@ -615,7 +615,7 @@ {"shape":"ServiceException"}, {"shape":"TooManyRequestsException"} ], - "documentation":"

Lists all the accounts in the organization. To request only the accounts in a specified root or organizational unit (OU), use the ListAccountsForParent operation instead.

Always check the NextToken response parameter for a null value when calling a List* operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.

This operation can be called only from the organization's master account or by a member account that is a delegated administrator for an AWS service.

" + "documentation":"

Lists all the accounts in the organization. To request only the accounts in a specified root or organizational unit (OU), use the ListAccountsForParent operation instead.

Always check the NextToken response parameter for a null value when calling a List* operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.

This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an AWS service.

" }, "ListAccountsForParent":{ "name":"ListAccountsForParent", @@ -633,7 +633,7 @@ {"shape":"ServiceException"}, {"shape":"TooManyRequestsException"} ], - "documentation":"

Lists the accounts in an organization that are contained by the specified target root or organizational unit (OU). If you specify the root, you get a list of all the accounts that aren't in any OU. If you specify an OU, you get a list of all the accounts in only that OU and not in any child OUs. To get a list of all accounts in the organization, use the ListAccounts operation.

Always check the NextToken response parameter for a null value when calling a List* operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.

This operation can be called only from the organization's master account or by a member account that is a delegated administrator for an AWS service.

" + "documentation":"

Lists the accounts in an organization that are contained by the specified target root or organizational unit (OU). If you specify the root, you get a list of all the accounts that aren't in any OU. If you specify an OU, you get a list of all the accounts in only that OU and not in any child OUs. To get a list of all accounts in the organization, use the ListAccounts operation.

Always check the NextToken response parameter for a null value when calling a List* operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.

This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an AWS service.

" }, "ListChildren":{ "name":"ListChildren", @@ -651,7 +651,7 @@ {"shape":"ServiceException"}, {"shape":"TooManyRequestsException"} ], - "documentation":"

Lists all of the organizational units (OUs) or accounts that are contained in the specified parent OU or root. This operation, along with ListParents enables you to traverse the tree structure that makes up this root.

Always check the NextToken response parameter for a null value when calling a List* operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.

This operation can be called only from the organization's master account or by a member account that is a delegated administrator for an AWS service.

" + "documentation":"

Lists all of the organizational units (OUs) or accounts that are contained in the specified parent OU or root. This operation, along with ListParents enables you to traverse the tree structure that makes up this root.

Always check the NextToken response parameter for a null value when calling a List* operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.

This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an AWS service.

" }, "ListCreateAccountStatus":{ "name":"ListCreateAccountStatus", @@ -669,7 +669,7 @@ {"shape":"TooManyRequestsException"}, {"shape":"UnsupportedAPIEndpointException"} ], - "documentation":"

Lists the account creation requests that match the specified status that is currently being tracked for the organization.

Always check the NextToken response parameter for a null value when calling a List* operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.

This operation can be called only from the organization's master account or by a member account that is a delegated administrator for an AWS service.

" + "documentation":"

Lists the account creation requests that match the specified status that is currently being tracked for the organization.

Always check the NextToken response parameter for a null value when calling a List* operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.

This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an AWS service.

" }, "ListDelegatedAdministrators":{ "name":"ListDelegatedAdministrators", @@ -688,7 +688,7 @@ {"shape":"ServiceException"}, {"shape":"UnsupportedAPIEndpointException"} ], - "documentation":"

Lists the AWS accounts that are designated as delegated administrators in this organization.

This operation can be called only from the organization's master account or by a member account that is a delegated administrator for an AWS service.

" + "documentation":"

Lists the AWS accounts that are designated as delegated administrators in this organization.

This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an AWS service.

" }, "ListDelegatedServicesForAccount":{ "name":"ListDelegatedServicesForAccount", @@ -709,7 +709,7 @@ {"shape":"ServiceException"}, {"shape":"UnsupportedAPIEndpointException"} ], - "documentation":"

List the AWS services for which the specified account is a delegated administrator.

This operation can be called only from the organization's master account or by a member account that is a delegated administrator for an AWS service.

" + "documentation":"

List the AWS services for which the specified account is a delegated administrator.

This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an AWS service.

" }, "ListHandshakesForAccount":{ "name":"ListHandshakesForAccount", @@ -744,7 +744,7 @@ {"shape":"ServiceException"}, {"shape":"TooManyRequestsException"} ], - "documentation":"

Lists the handshakes that are associated with the organization that the requesting user is part of. The ListHandshakesForOrganization operation returns a list of handshake structures. Each structure contains details and status about a handshake.

Handshakes that are ACCEPTED, DECLINED, or CANCELED appear in the results of this API for only 30 days after changing to that state. After that, they're deleted and no longer accessible.

Always check the NextToken response parameter for a null value when calling a List* operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.

This operation can be called only from the organization's master account or by a member account that is a delegated administrator for an AWS service.

" + "documentation":"

Lists the handshakes that are associated with the organization that the requesting user is part of. The ListHandshakesForOrganization operation returns a list of handshake structures. Each structure contains details and status about a handshake.

Handshakes that are ACCEPTED, DECLINED, or CANCELED appear in the results of this API for only 30 days after changing to that state. After that, they're deleted and no longer accessible.

Always check the NextToken response parameter for a null value when calling a List* operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.

This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an AWS service.

" }, "ListOrganizationalUnitsForParent":{ "name":"ListOrganizationalUnitsForParent", @@ -762,7 +762,7 @@ {"shape":"ServiceException"}, {"shape":"TooManyRequestsException"} ], - "documentation":"

Lists the organizational units (OUs) in a parent organizational unit or root.

Always check the NextToken response parameter for a null value when calling a List* operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.

This operation can be called only from the organization's master account or by a member account that is a delegated administrator for an AWS service.

" + "documentation":"

Lists the organizational units (OUs) in a parent organizational unit or root.

Always check the NextToken response parameter for a null value when calling a List* operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.

This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an AWS service.

" }, "ListParents":{ "name":"ListParents", @@ -780,7 +780,7 @@ {"shape":"ServiceException"}, {"shape":"TooManyRequestsException"} ], - "documentation":"

Lists the root or organizational units (OUs) that serve as the immediate parent of the specified child OU or account. This operation, along with ListChildren enables you to traverse the tree structure that makes up this root.

Always check the NextToken response parameter for a null value when calling a List* operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.

This operation can be called only from the organization's master account or by a member account that is a delegated administrator for an AWS service.

In the current release, a child can have only a single parent.

" + "documentation":"

Lists the root or organizational units (OUs) that serve as the immediate parent of the specified child OU or account. This operation, along with ListChildren enables you to traverse the tree structure that makes up this root.

Always check the NextToken response parameter for a null value when calling a List* operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.

This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an AWS service.

In the current release, a child can have only a single parent.

" }, "ListPolicies":{ "name":"ListPolicies", @@ -798,7 +798,7 @@ {"shape":"TooManyRequestsException"}, {"shape":"UnsupportedAPIEndpointException"} ], - "documentation":"

Retrieves the list of all policies in an organization of a specified type.

Always check the NextToken response parameter for a null value when calling a List* operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.

This operation can be called only from the organization's master account or by a member account that is a delegated administrator for an AWS service.

" + "documentation":"

Retrieves the list of all policies in an organization of a specified type.

Always check the NextToken response parameter for a null value when calling a List* operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.

This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an AWS service.

" }, "ListPoliciesForTarget":{ "name":"ListPoliciesForTarget", @@ -817,7 +817,7 @@ {"shape":"TooManyRequestsException"}, {"shape":"UnsupportedAPIEndpointException"} ], - "documentation":"

Lists the policies that are directly attached to the specified target root, organizational unit (OU), or account. You must specify the policy type that you want included in the returned list.

Always check the NextToken response parameter for a null value when calling a List* operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.

This operation can be called only from the organization's master account or by a member account that is a delegated administrator for an AWS service.

" + "documentation":"

Lists the policies that are directly attached to the specified target root, organizational unit (OU), or account. You must specify the policy type that you want included in the returned list.

Always check the NextToken response parameter for a null value when calling a List* operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.

This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an AWS service.

" }, "ListRoots":{ "name":"ListRoots", @@ -834,7 +834,7 @@ {"shape":"ServiceException"}, {"shape":"TooManyRequestsException"} ], - "documentation":"

Lists the roots that are defined in the current organization.

Always check the NextToken response parameter for a null value when calling a List* operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.

This operation can be called only from the organization's master account or by a member account that is a delegated administrator for an AWS service.

Policy types can be enabled and disabled in roots. This is distinct from whether they're available in the organization. When you enable all features, you make policy types available for use in that organization. Individual policy types can then be enabled and disabled in a root. To see the availability of a policy type in an organization, use DescribeOrganization.

" + "documentation":"

Lists the roots that are defined in the current organization.

Always check the NextToken response parameter for a null value when calling a List* operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.

This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an AWS service.

Policy types can be enabled and disabled in roots. This is distinct from whether they're available in the organization. When you enable all features, you make policy types available for use in that organization. Individual policy types can then be enabled and disabled in a root. To see the availability of a policy type in an organization, use DescribeOrganization.

" }, "ListTagsForResource":{ "name":"ListTagsForResource", @@ -852,7 +852,7 @@ {"shape":"ServiceException"}, {"shape":"TooManyRequestsException"} ], - "documentation":"

Lists tags that are attached to the specified resource.

You can attach tags to the following resources in AWS Organizations.

  • AWS account

  • Organization root

  • Organizational unit (OU)

  • Policy (any type)

This operation can be called only from the organization's master account or by a member account that is a delegated administrator for an AWS service.

" + "documentation":"

Lists tags that are attached to the specified resource.

You can attach tags to the following resources in AWS Organizations.

  • AWS account

  • Organization root

  • Organizational unit (OU)

  • Policy (any type)

This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an AWS service.

" }, "ListTargetsForPolicy":{ "name":"ListTargetsForPolicy", @@ -871,7 +871,7 @@ {"shape":"TooManyRequestsException"}, {"shape":"UnsupportedAPIEndpointException"} ], - "documentation":"

Lists all the roots, organizational units (OUs), and accounts that the specified policy is attached to.

Always check the NextToken response parameter for a null value when calling a List* operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.

This operation can be called only from the organization's master account or by a member account that is a delegated administrator for an AWS service.

" + "documentation":"

Lists all the roots, organizational units (OUs), and accounts that the specified policy is attached to.

Always check the NextToken response parameter for a null value when calling a List* operation. These operations can occasionally return an empty set of results even when there are more results available. The NextToken response parameter value is null only when there are no more results to display.

This operation can be called only from the organization's management account or by a member account that is a delegated administrator for an AWS service.

" }, "MoveAccount":{ "name":"MoveAccount", @@ -892,7 +892,7 @@ {"shape":"AWSOrganizationsNotInUseException"}, {"shape":"ServiceException"} ], - "documentation":"

Moves an account from its current source parent root or organizational unit (OU) to the specified destination parent root or OU.

This operation can be called only from the organization's master account.

" + "documentation":"

Moves an account from its current source parent root or organizational unit (OU) to the specified destination parent root or OU.

This operation can be called only from the organization's management account.

" }, "RegisterDelegatedAdministrator":{ "name":"RegisterDelegatedAdministrator", @@ -913,7 +913,7 @@ {"shape":"ServiceException"}, {"shape":"UnsupportedAPIEndpointException"} ], - "documentation":"

Enables the specified member account to administer the Organizations features of the specified AWS service. It grants read-only access to AWS Organizations service data. The account still requires IAM permissions to access and administer the AWS service.

You can run this action only for AWS services that support this feature. For a current list of services that support it, see the column Supports Delegated Administrator in the table at AWS Services that you can use with AWS Organizations in the AWS Organizations User Guide.

This operation can be called only from the organization's master account.

" + "documentation":"

Enables the specified member account to administer the Organizations features of the specified AWS service. It grants read-only access to AWS Organizations service data. The account still requires IAM permissions to access and administer the AWS service.

You can run this action only for AWS services that support this feature. For a current list of services that support it, see the column Supports Delegated Administrator in the table at AWS Services that you can use with AWS Organizations in the AWS Organizations User Guide.

This operation can be called only from the organization's management account.

" }, "RemoveAccountFromOrganization":{ "name":"RemoveAccountFromOrganization", @@ -933,7 +933,7 @@ {"shape":"ServiceException"}, {"shape":"TooManyRequestsException"} ], - "documentation":"

Removes the specified account from the organization.

The removed account becomes a standalone account that isn't a member of any organization. It's no longer subject to any policies and is responsible for its own bill payments. The organization's master account is no longer charged for any expenses accrued by the member account after it's removed from the organization.

This operation can be called only from the organization's master account. Member accounts can remove themselves with LeaveOrganization instead.

  • You can remove an account from your organization only if the account is configured with the information required to operate as a standalone account. When you create an account in an organization using the AWS Organizations console, API, or CLI commands, the information required of standalone accounts is not automatically collected. For an account that you want to make standalone, you must choose a support plan, provide and verify the required contact information, and provide a current payment method. AWS uses the payment method to charge for any billable (not free tier) AWS activity that occurs while the account isn't attached to an organization. To remove an account that doesn't yet have this information, you must sign in as the member account and follow the steps at To leave an organization when all required account information has not yet been provided in the AWS Organizations User Guide.

  • After the account leaves the organization, all tags that were attached to the account object in the organization are deleted. AWS accounts outside of an organization do not support tags.

" + "documentation":"

Removes the specified account from the organization.

The removed account becomes a standalone account that isn't a member of any organization. It's no longer subject to any policies and is responsible for its own bill payments. The organization's management account is no longer charged for any expenses accrued by the member account after it's removed from the organization.

This operation can be called only from the organization's management account. Member accounts can remove themselves with LeaveOrganization instead.

  • You can remove an account from your organization only if the account is configured with the information required to operate as a standalone account. When you create an account in an organization using the AWS Organizations console, API, or CLI commands, the information required of standalone accounts is not automatically collected. For an account that you want to make standalone, you must choose a support plan, provide and verify the required contact information, and provide a current payment method. AWS uses the payment method to charge for any billable (not free tier) AWS activity that occurs while the account isn't attached to an organization. To remove an account that doesn't yet have this information, you must sign in as the member account and follow the steps at To leave an organization when all required account information has not yet been provided in the AWS Organizations User Guide.

  • After the account leaves the organization, all tags that were attached to the account object in the organization are deleted. AWS accounts outside of an organization do not support tags.

" }, "TagResource":{ "name":"TagResource", @@ -952,7 +952,7 @@ {"shape":"ServiceException"}, {"shape":"TooManyRequestsException"} ], - "documentation":"

Adds one or more tags to the specified resource.

Currently, you can attach tags to the following resources in AWS Organizations.

  • AWS account

  • Organization root

  • Organizational unit (OU)

  • Policy (any type)

This operation can be called only from the organization's master account.

" + "documentation":"

Adds one or more tags to the specified resource.

Currently, you can attach tags to the following resources in AWS Organizations.

  • AWS account

  • Organization root

  • Organizational unit (OU)

  • Policy (any type)

This operation can be called only from the organization's management account.

" }, "UntagResource":{ "name":"UntagResource", @@ -971,7 +971,7 @@ {"shape":"ServiceException"}, {"shape":"TooManyRequestsException"} ], - "documentation":"

Removes any tags with the specified keys from the specified resource.

You can attach tags to the following resources in AWS Organizations.

  • AWS account

  • Organization root

  • Organizational unit (OU)

  • Policy (any type)

This operation can be called only from the organization's master account.

" + "documentation":"

Removes any tags with the specified keys from the specified resource.

You can attach tags to the following resources in AWS Organizations.

  • AWS account

  • Organization root

  • Organizational unit (OU)

  • Policy (any type)

This operation can be called only from the organization's management account.

" }, "UpdateOrganizationalUnit":{ "name":"UpdateOrganizationalUnit", @@ -991,7 +991,7 @@ {"shape":"ServiceException"}, {"shape":"TooManyRequestsException"} ], - "documentation":"

Renames the specified organizational unit (OU). The ID and ARN don't change. The child OUs and accounts remain in place, and any attached policies of the OU remain attached.

This operation can be called only from the organization's master account.

" + "documentation":"

Renames the specified organizational unit (OU). The ID and ARN don't change. The child OUs and accounts remain in place, and any attached policies of the OU remain attached.

This operation can be called only from the organization's management account.

" }, "UpdatePolicy":{ "name":"UpdatePolicy", @@ -1015,7 +1015,7 @@ {"shape":"UnsupportedAPIEndpointException"}, {"shape":"PolicyChangesInProgressException"} ], - "documentation":"

Updates an existing policy with a new name, description, or content. If you don't supply any parameter, that value remains unchanged. You can't change a policy's type.

This operation can be called only from the organization's master account.

" + "documentation":"

Updates an existing policy with a new name, description, or content. If you don't supply any parameter, that value remains unchanged. You can't change a policy's type.

This operation can be called only from the organization's management account.

" } }, "shapes":{ @@ -1153,7 +1153,7 @@ "members":{ "Message":{"shape":"ExceptionMessage"} }, - "documentation":"

You can't invite an existing account to your organization until you verify that you own the email address associated with the master account. For more information, see Email Address Verification in the AWS Organizations User Guide.

", + "documentation":"

You can't invite an existing account to your organization until you verify that you own the email address associated with the management account. For more information, see Email Address Verification in the AWS Organizations User Guide.

", "exception":true }, "AccountStatus":{ @@ -1273,7 +1273,7 @@ "Message":{"shape":"ExceptionMessage"}, "Reason":{"shape":"ConstraintViolationExceptionReason"} }, - "documentation":"

Performing this operation violates a minimum or maximum value limit. For example, attempting to remove the last service control policy (SCP) from an OU or root, inviting or creating too many accounts to the organization, or attaching too many policies to an account, OU, or root. This exception includes a reason that contains additional information about the violated limit:

Some of the reasons in the following list might not be applicable to this specific API or operation.

  • ACCOUNT_CANNOT_LEAVE_ORGANIZAION: You attempted to remove the master account from the organization. You can't remove the master account. Instead, after you remove all member accounts, delete the organization itself.

  • ACCOUNT_CANNOT_LEAVE_WITHOUT_EULA: You attempted to remove an account from the organization that doesn't yet have enough information to exist as a standalone account. This account requires you to first agree to the AWS Customer Agreement. Follow the steps at Removing a member account from your organizationin the AWS Organizations User Guide.

  • ACCOUNT_CANNOT_LEAVE_WITHOUT_PHONE_VERIFICATION: You attempted to remove an account from the organization that doesn't yet have enough information to exist as a standalone account. This account requires you to first complete phone verification. Follow the steps at Removing a member account from your organization in the AWS Organizations User Guide.

  • ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of accounts that you can create in one day.

  • ACCOUNT_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the limit on the number of accounts in an organization. If you need more accounts, contact AWS Support to request an increase in your limit.

    Or the number of invitations that you tried to send would cause you to exceed the limit of accounts in your organization. Send fewer invitations or contact AWS Support to request an increase in the number of accounts.

    Deleted and closed accounts still count toward your limit.

    If you get this exception when running a command immediately after creating the organization, wait one hour and try again. After an hour, if the command continues to fail with this error, contact AWS Support.

  • CANNOT_REGISTER_MASTER_AS_DELEGATED_ADMINISTRATOR: You attempted to register the master account of the organization as a delegated administrator for an AWS service integrated with Organizations. You can designate only a member account as a delegated administrator.

  • CANNOT_REMOVE_DELEGATED_ADMINISTRATOR_FROM_ORG: You attempted to remove an account that is registered as a delegated administrator for a service integrated with your organization. To complete this operation, you must first deregister this account as a delegated administrator.

  • CREATE_ORGANIZATION_IN_BILLING_MODE_UNSUPPORTED_REGION: To create an organization in the specified region, you must enable all features mode.

  • DELEGATED_ADMINISTRATOR_EXISTS_FOR_THIS_SERVICE: You attempted to register an AWS account as a delegated administrator for an AWS service that already has a delegated administrator. To complete this operation, you must first deregister any existing delegated administrators for this service.

  • EMAIL_VERIFICATION_CODE_EXPIRED: The email verification code is only valid for a limited period of time. You must resubmit the request and generate a new verfication code.

  • HANDSHAKE_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of handshakes that you can send in one day.

  • MASTER_ACCOUNT_ADDRESS_DOES_NOT_MATCH_MARKETPLACE: To create an account in this organization, you first must migrate the organization's master account to the marketplace that corresponds to the master account's address. For example, accounts with India addresses must be associated with the AISPL marketplace. All accounts in an organization must be associated with the same marketplace.

  • MASTER_ACCOUNT_MISSING_BUSINESS_LICENSE: Applies only to the AWS Regions in China. To create an organization, the master must have an valid business license. For more information, contact customer support.

  • MASTER_ACCOUNT_MISSING_CONTACT_INFO: To complete this operation, you must first provide a valid contact address and phone number for the master account. Then try the operation again.

  • MASTER_ACCOUNT_NOT_GOVCLOUD_ENABLED: To complete this operation, the master account must have an associated account in the AWS GovCloud (US-West) Region. For more information, see AWS Organizations in the AWS GovCloud User Guide.

  • MASTER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To create an organization with this master account, you first must associate a valid payment instrument, such as a credit card, with the account. Follow the steps at To leave an organization when all required account information has not yet been provided in the AWS Organizations User Guide.

  • MAX_DELEGATED_ADMINISTRATORS_FOR_SERVICE_LIMIT_EXCEEDED: You attempted to register more delegated administrators than allowed for the service principal.

  • MAX_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to exceed the number of policies of a certain type that can be attached to an entity at one time.

  • MAX_TAG_LIMIT_EXCEEDED: You have exceeded the number of tags allowed on this resource.

  • MEMBER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To complete this operation with this member account, you first must associate a valid payment instrument, such as a credit card, with the account. Follow the steps at To leave an organization when all required account information has not yet been provided in the AWS Organizations User Guide.

  • MIN_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to detach a policy from an entity that would cause the entity to have fewer than the minimum number of policies of a certain type required.

  • ORGANIZATION_NOT_IN_ALL_FEATURES_MODE: You attempted to perform an operation that requires the organization to be configured to support all features. An organization that supports only consolidated billing features can't perform this operation.

  • OU_DEPTH_LIMIT_EXCEEDED: You attempted to create an OU tree that is too many levels deep.

  • OU_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the number of OUs that you can have in an organization.

  • POLICY_CONTENT_LIMIT_EXCEEDED: You attempted to create a policy that is larger than the maximum size.

  • POLICY_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the number of policies that you can have in an organization.

  • TAG_POLICY_VIOLATION: You attempted to create or update a resource with tags that are not compliant with the tag policy requirements for this account.

", + "documentation":"

Performing this operation violates a minimum or maximum value limit. For example, attempting to remove the last service control policy (SCP) from an OU or root, inviting or creating too many accounts to the organization, or attaching too many policies to an account, OU, or root. This exception includes a reason that contains additional information about the violated limit:

Some of the reasons in the following list might not be applicable to this specific API or operation.

  • ACCOUNT_CANNOT_LEAVE_ORGANIZAION: You attempted to remove the management account from the organization. You can't remove the management account. Instead, after you remove all member accounts, delete the organization itself.

  • ACCOUNT_CANNOT_LEAVE_WITHOUT_EULA: You attempted to remove an account from the organization that doesn't yet have enough information to exist as a standalone account. This account requires you to first agree to the AWS Customer Agreement. Follow the steps at Removing a member account from your organizationin the AWS Organizations User Guide.

  • ACCOUNT_CANNOT_LEAVE_WITHOUT_PHONE_VERIFICATION: You attempted to remove an account from the organization that doesn't yet have enough information to exist as a standalone account. This account requires you to first complete phone verification. Follow the steps at Removing a member account from your organization in the AWS Organizations User Guide.

  • ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of accounts that you can create in one day.

  • ACCOUNT_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the limit on the number of accounts in an organization. If you need more accounts, contact AWS Support to request an increase in your limit.

    Or the number of invitations that you tried to send would cause you to exceed the limit of accounts in your organization. Send fewer invitations or contact AWS Support to request an increase in the number of accounts.

    Deleted and closed accounts still count toward your limit.

    If you get this exception when running a command immediately after creating the organization, wait one hour and try again. After an hour, if the command continues to fail with this error, contact AWS Support.

  • CANNOT_REGISTER_MASTER_AS_DELEGATED_ADMINISTRATOR: You attempted to register the management account of the organization as a delegated administrator for an AWS service integrated with Organizations. You can designate only a member account as a delegated administrator.

  • CANNOT_REMOVE_DELEGATED_ADMINISTRATOR_FROM_ORG: You attempted to remove an account that is registered as a delegated administrator for a service integrated with your organization. To complete this operation, you must first deregister this account as a delegated administrator.

  • CREATE_ORGANIZATION_IN_BILLING_MODE_UNSUPPORTED_REGION: To create an organization in the specified region, you must enable all features mode.

  • DELEGATED_ADMINISTRATOR_EXISTS_FOR_THIS_SERVICE: You attempted to register an AWS account as a delegated administrator for an AWS service that already has a delegated administrator. To complete this operation, you must first deregister any existing delegated administrators for this service.

  • EMAIL_VERIFICATION_CODE_EXPIRED: The email verification code is only valid for a limited period of time. You must resubmit the request and generate a new verfication code.

  • HANDSHAKE_RATE_LIMIT_EXCEEDED: You attempted to exceed the number of handshakes that you can send in one day.

  • MASTER_ACCOUNT_ADDRESS_DOES_NOT_MATCH_MARKETPLACE: To create an account in this organization, you first must migrate the organization's management account to the marketplace that corresponds to the management account's address. For example, accounts with India addresses must be associated with the AISPL marketplace. All accounts in an organization must be associated with the same marketplace.

  • MASTER_ACCOUNT_MISSING_BUSINESS_LICENSE: Applies only to the AWS Regions in China. To create an organization, the master must have an valid business license. For more information, contact customer support.

  • MASTER_ACCOUNT_MISSING_CONTACT_INFO: To complete this operation, you must first provide a valid contact address and phone number for the management account. Then try the operation again.

  • MASTER_ACCOUNT_NOT_GOVCLOUD_ENABLED: To complete this operation, the management account must have an associated account in the AWS GovCloud (US-West) Region. For more information, see AWS Organizations in the AWS GovCloud User Guide.

  • MASTER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To create an organization with this management account, you first must associate a valid payment instrument, such as a credit card, with the account. Follow the steps at To leave an organization when all required account information has not yet been provided in the AWS Organizations User Guide.

  • MAX_DELEGATED_ADMINISTRATORS_FOR_SERVICE_LIMIT_EXCEEDED: You attempted to register more delegated administrators than allowed for the service principal.

  • MAX_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to exceed the number of policies of a certain type that can be attached to an entity at one time.

  • MAX_TAG_LIMIT_EXCEEDED: You have exceeded the number of tags allowed on this resource.

  • MEMBER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED: To complete this operation with this member account, you first must associate a valid payment instrument, such as a credit card, with the account. Follow the steps at To leave an organization when all required account information has not yet been provided in the AWS Organizations User Guide.

  • MIN_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED: You attempted to detach a policy from an entity that would cause the entity to have fewer than the minimum number of policies of a certain type required.

  • ORGANIZATION_NOT_IN_ALL_FEATURES_MODE: You attempted to perform an operation that requires the organization to be configured to support all features. An organization that supports only consolidated billing features can't perform this operation.

  • OU_DEPTH_LIMIT_EXCEEDED: You attempted to create an OU tree that is too many levels deep.

  • OU_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the number of OUs that you can have in an organization.

  • POLICY_CONTENT_LIMIT_EXCEEDED: You attempted to create a policy that is larger than the maximum size.

  • POLICY_NUMBER_LIMIT_EXCEEDED: You attempted to exceed the number of policies that you can have in an organization.

  • TAG_POLICY_VIOLATION: You attempted to create or update a resource with tags that are not compliant with the tag policy requirements for this account.

", "exception":true }, "ConstraintViolationExceptionReason":{ @@ -1340,7 +1340,7 @@ }, "RoleName":{ "shape":"RoleName", - "documentation":"

(Optional)

The name of an IAM role that AWS Organizations automatically preconfigures in the new member account. This role trusts the master account, allowing users in the master account to assume the role, as permitted by the master account administrator. The role has administrator permissions in the new member account.

If you don't specify this parameter, the role name defaults to OrganizationAccountAccessRole.

For more information about how to use this role to access the member account, see the following links:

The regex pattern that is used to validate this parameter. The pattern can include uppercase letters, lowercase letters, digits with no spaces, and any of the following characters: =,.@-

" + "documentation":"

(Optional)

The name of an IAM role that AWS Organizations automatically preconfigures in the new member account. This role trusts the management account, allowing users in the management account to assume the role, as permitted by the management account administrator. The role has administrator permissions in the new member account.

If you don't specify this parameter, the role name defaults to OrganizationAccountAccessRole.

For more information about how to use this role to access the member account, see the following links:

The regex pattern that is used to validate this parameter. The pattern can include uppercase letters, lowercase letters, digits with no spaces, and any of the following characters: =,.@-

" }, "IamUserAccessToBilling":{ "shape":"IAMUserAccessToBilling", @@ -1411,7 +1411,7 @@ }, "FailureReason":{ "shape":"CreateAccountFailureReason", - "documentation":"

If the request failed, a description of the reason for the failure.

  • ACCOUNT_LIMIT_EXCEEDED: The account could not be created because you have reached the limit on the number of accounts in your organization.

  • CONCURRENT_ACCOUNT_MODIFICATION: You already submitted a request with the same information.

  • EMAIL_ALREADY_EXISTS: The account could not be created because another AWS account with that email address already exists.

  • GOVCLOUD_ACCOUNT_ALREADY_EXISTS: The account in the AWS GovCloud (US) Region could not be created because this Region already includes an account with that email address.

  • INVALID_ADDRESS: The account could not be created because the address you provided is not valid.

  • INVALID_EMAIL: The account could not be created because the email address you provided is not valid.

  • INTERNAL_FAILURE: The account could not be created because of an internal failure. Try again later. If the problem persists, contact Customer Support.

  • MISSING_BUSINESS_VALIDATION: The AWS account that owns your organization has not received Business Validation.

  • MISSING_PAYMENT_INSTRUMENT: You must configure the master account with a valid payment method, such as a credit card.

" + "documentation":"

If the request failed, a description of the reason for the failure.

  • ACCOUNT_LIMIT_EXCEEDED: The account could not be created because you have reached the limit on the number of accounts in your organization.

  • CONCURRENT_ACCOUNT_MODIFICATION: You already submitted a request with the same information.

  • EMAIL_ALREADY_EXISTS: The account could not be created because another AWS account with that email address already exists.

  • GOVCLOUD_ACCOUNT_ALREADY_EXISTS: The account in the AWS GovCloud (US) Region could not be created because this Region already includes an account with that email address.

  • INVALID_ADDRESS: The account could not be created because the address you provided is not valid.

  • INVALID_EMAIL: The account could not be created because the email address you provided is not valid.

  • INTERNAL_FAILURE: The account could not be created because of an internal failure. Try again later. If the problem persists, contact Customer Support.

  • MISSING_BUSINESS_VALIDATION: The AWS account that owns your organization has not received Business Validation.

  • MISSING_PAYMENT_INSTRUMENT: You must configure the management account with a valid payment method, such as a credit card.

" } }, "documentation":"

Contains the status about a CreateAccount or CreateGovCloudAccount request to create an AWS account or an AWS GovCloud (US) account in an organization.

" @@ -1445,7 +1445,7 @@ }, "RoleName":{ "shape":"RoleName", - "documentation":"

(Optional)

The name of an IAM role that AWS Organizations automatically preconfigures in the new member accounts in both the AWS GovCloud (US) Region and in the commercial Region. This role trusts the master account, allowing users in the master account to assume the role, as permitted by the master account administrator. The role has administrator permissions in the new member account.

If you don't specify this parameter, the role name defaults to OrganizationAccountAccessRole.

For more information about how to use this role to access the member account, see Accessing and Administering the Member Accounts in Your Organization in the AWS Organizations User Guide and steps 2 and 3 in Tutorial: Delegate Access Across AWS Accounts Using IAM Roles in the IAM User Guide.

The regex pattern that is used to validate this parameter. The pattern can include uppercase letters, lowercase letters, digits with no spaces, and any of the following characters: =,.@-

" + "documentation":"

(Optional)

The name of an IAM role that AWS Organizations automatically preconfigures in the new member accounts in both the AWS GovCloud (US) Region and in the commercial Region. This role trusts the management account, allowing users in the management account to assume the role, as permitted by the management account administrator. The role has administrator permissions in the new member account.

If you don't specify this parameter, the role name defaults to OrganizationAccountAccessRole.

For more information about how to use this role to access the member account, see Accessing and Administering the Member Accounts in Your Organization in the AWS Organizations User Guide and steps 2 and 3 in Tutorial: Delegate Access Across AWS Accounts Using IAM Roles in the IAM User Guide.

The regex pattern that is used to validate this parameter. The pattern can include uppercase letters, lowercase letters, digits with no spaces, and any of the following characters: =,.@-

" }, "IamUserAccessToBilling":{ "shape":"IAMUserAccessToBilling", @@ -1468,7 +1468,7 @@ "members":{ "FeatureSet":{ "shape":"OrganizationFeatureSet", - "documentation":"

Specifies the feature set supported by the new organization. Each feature set supports different levels of functionality.

  • CONSOLIDATED_BILLING: All member accounts have their bills consolidated to and paid by the master account. For more information, see Consolidated billing in the AWS Organizations User Guide.

    The consolidated billing feature subset isn't available for organizations in the AWS GovCloud (US) Region.

  • ALL: In addition to all the features supported by the consolidated billing feature set, the master account can also apply any policy type to any member account in the organization. For more information, see All features in the AWS Organizations User Guide.

" + "documentation":"

Specifies the feature set supported by the new organization. Each feature set supports different levels of functionality.

  • CONSOLIDATED_BILLING: All member accounts have their bills consolidated to and paid by the management account. For more information, see Consolidated billing in the AWS Organizations User Guide.

    The consolidated billing feature subset isn't available for organizations in the AWS GovCloud (US) Region.

  • ALL: In addition to all the features supported by the consolidated billing feature set, the management account can also apply any policy type to any member account in the organization. For more information, see All features in the AWS Organizations User Guide.

" } } }, @@ -1715,7 +1715,7 @@ }, "TargetId":{ "shape":"PolicyTargetId", - "documentation":"

When you're signed in as the master account, specify the ID of the account that you want details about. Specifying an organization root or organizational unit (OU) as the target is not supported.

" + "documentation":"

When you're signed in as the management account, specify the ID of the account that you want details about. Specifying an organization root or organizational unit (OU) as the target is not supported.

" } } }, @@ -1922,7 +1922,7 @@ "members":{ "Message":{"shape":"ExceptionMessage"} }, - "documentation":"

If you ran this action on the master account, this policy type is not enabled. If you ran the action on a member account, the account doesn't have an effective policy of this type. Contact the administrator of your organization about attaching a policy of this type to the account.

", + "documentation":"

If you ran this action on the management account, this policy type is not enabled. If you ran the action on a member account, the account doesn't have an effective policy of this type. Contact the administrator of your organization about attaching a policy of this type to the account.

", "exception":true }, "EffectivePolicyType":{ @@ -2051,14 +2051,14 @@ }, "Action":{ "shape":"ActionType", - "documentation":"

The type of handshake, indicating what action occurs when the recipient accepts the handshake. The following handshake types are supported:

  • INVITE: This type of handshake represents a request to join an organization. It is always sent from the master account to only non-member accounts.

  • ENABLE_ALL_FEATURES: This type of handshake represents a request to enable all features in an organization. It is always sent from the master account to only invited member accounts. Created accounts do not receive this because those accounts were created by the organization's master account and approval is inferred.

  • APPROVE_ALL_FEATURES: This type of handshake is sent from the Organizations service when all member accounts have approved the ENABLE_ALL_FEATURES invitation. It is sent only to the master account and signals the master that it can finalize the process to enable all features.

" + "documentation":"

The type of handshake, indicating what action occurs when the recipient accepts the handshake. The following handshake types are supported:

  • INVITE: This type of handshake represents a request to join an organization. It is always sent from the management account to only non-member accounts.

  • ENABLE_ALL_FEATURES: This type of handshake represents a request to enable all features in an organization. It is always sent from the management account to only invited member accounts. Created accounts do not receive this because those accounts were created by the organization's management account and approval is inferred.

  • APPROVE_ALL_FEATURES: This type of handshake is sent from the Organizations service when all member accounts have approved the ENABLE_ALL_FEATURES invitation. It is sent only to the management account and signals the master that it can finalize the process to enable all features.

" }, "Resources":{ "shape":"HandshakeResources", "documentation":"

Additional information that is needed to process the handshake.

" } }, - "documentation":"

Contains information that must be exchanged to securely establish a relationship between two accounts (an originator and a recipient). For example, when a master account (the originator) invites another account (the recipient) to join its organization, the two accounts exchange information as a series of handshake requests and responses.

Note: Handshakes that are CANCELED, ACCEPTED, or DECLINED show up in lists for only 30 days after entering that state After that they are deleted.

" + "documentation":"

Contains information that must be exchanged to securely establish a relationship between two accounts (an originator and a recipient). For example, when a management account (the originator) invites another account (the recipient) to join its organization, the two accounts exchange information as a series of handshake requests and responses.

Note: Handshakes that are CANCELED, ACCEPTED, or DECLINED show up in lists for only 30 days after entering that state After that they are deleted.

" }, "HandshakeAlreadyInStateException":{ "type":"structure", @@ -2173,7 +2173,7 @@ }, "Type":{ "shape":"HandshakeResourceType", - "documentation":"

The type of information being passed, specifying how the value is to be interpreted by the other party:

  • ACCOUNT - Specifies an AWS account ID number.

  • ORGANIZATION - Specifies an organization ID number.

  • EMAIL - Specifies the email address that is associated with the account that receives the handshake.

  • OWNER_EMAIL - Specifies the email address associated with the master account. Included as information about an organization.

  • OWNER_NAME - Specifies the name associated with the master account. Included as information about an organization.

  • NOTES - Additional text provided by the handshake initiator and intended for the recipient to read.

" + "documentation":"

The type of information being passed, specifying how the value is to be interpreted by the other party:

  • ACCOUNT - Specifies an AWS account ID number.

  • ORGANIZATION - Specifies an organization ID number.

  • EMAIL - Specifies the email address that is associated with the account that receives the handshake.

  • OWNER_EMAIL - Specifies the email address associated with the management account. Included as information about an organization.

  • OWNER_NAME - Specifies the name associated with the management account. Included as information about an organization.

  • NOTES - Additional text provided by the handshake initiator and intended for the recipient to read.

" }, "Resources":{ "shape":"HandshakeResources", @@ -2797,7 +2797,7 @@ "members":{ "Message":{"shape":"ExceptionMessage"} }, - "documentation":"

You can't remove a master account from an organization. If you want the master account to become a member account in another organization, you must first delete the current organization of the master account.

", + "documentation":"

You can't remove a management account from an organization. If you want the management account to become a member account in another organization, you must first delete the current organization of the management account.

", "exception":true }, "MaxResults":{ @@ -2850,15 +2850,15 @@ }, "MasterAccountArn":{ "shape":"AccountArn", - "documentation":"

The Amazon Resource Name (ARN) of the account that is designated as the master account for the organization.

For more information about ARNs in Organizations, see ARN Formats Supported by Organizations in the AWS Organizations User Guide.

" + "documentation":"

The Amazon Resource Name (ARN) of the account that is designated as the management account for the organization.

For more information about ARNs in Organizations, see ARN Formats Supported by Organizations in the AWS Organizations User Guide.

" }, "MasterAccountId":{ "shape":"AccountId", - "documentation":"

The unique identifier (ID) of the master account of an organization.

The regex pattern for an account ID string requires exactly 12 digits.

" + "documentation":"

The unique identifier (ID) of the management account of an organization.

The regex pattern for an account ID string requires exactly 12 digits.

" }, "MasterAccountEmail":{ "shape":"Email", - "documentation":"

The email address that is associated with the AWS account that is designated as the master account for the organization.

" + "documentation":"

The email address that is associated with the AWS account that is designated as the management account for the organization.

" }, "AvailablePolicyTypes":{ "shape":"PolicyTypes", @@ -2887,7 +2887,7 @@ "members":{ "Message":{"shape":"ExceptionMessage"} }, - "documentation":"

The organization isn't empty. To delete an organization, you must first remove all accounts except the master account, delete all OUs, and delete all policies.

", + "documentation":"

The organization isn't empty. To delete an organization, you must first remove all accounts except the management account, delete all OUs, and delete all policies.

", "exception":true }, "OrganizationalUnit":{ From f0c2f577fdeffcd82bd0caf645152f2e02959fe4 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 21 Oct 2020 19:33:48 +0000 Subject: [PATCH 046/339] AWS Glue Update: AWS Glue crawlers now support incremental crawls for the Amazon Simple Storage Service (Amazon S3) data source. --- .../next-release/feature-AWSGlue-5e3d9a5.json | 5 ++++ .../codegen-resources/service-2.json | 29 +++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 .changes/next-release/feature-AWSGlue-5e3d9a5.json diff --git a/.changes/next-release/feature-AWSGlue-5e3d9a5.json b/.changes/next-release/feature-AWSGlue-5e3d9a5.json new file mode 100644 index 000000000000..f71953ca373b --- /dev/null +++ b/.changes/next-release/feature-AWSGlue-5e3d9a5.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS Glue", + "description": "AWS Glue crawlers now support incremental crawls for the Amazon Simple Storage Service (Amazon S3) data source." +} diff --git a/services/glue/src/main/resources/codegen-resources/service-2.json b/services/glue/src/main/resources/codegen-resources/service-2.json index c5dbae9e44d6..2d3259ea013e 100644 --- a/services/glue/src/main/resources/codegen-resources/service-2.json +++ b/services/glue/src/main/resources/codegen-resources/service-2.json @@ -3580,6 +3580,10 @@ "shape":"ClassifierNameList", "documentation":"

A list of UTF-8 strings that specify the custom classifiers that are associated with the crawler.

" }, + "RecrawlPolicy":{ + "shape":"RecrawlPolicy", + "documentation":"

A policy that specifies whether to crawl the entire dataset again, or to crawl only folders that were added since the last crawler run.

" + }, "SchemaChangePolicy":{ "shape":"SchemaChangePolicy", "documentation":"

The policy that specifies update and delete behaviors for the crawler.

" @@ -3851,6 +3855,10 @@ "shape":"SchemaChangePolicy", "documentation":"

The policy for the crawler's update and deletion behavior.

" }, + "RecrawlPolicy":{ + "shape":"RecrawlPolicy", + "documentation":"

A policy that specifies whether to crawl the entire dataset again, or to crawl only folders that were added since the last crawler run.

" + }, "Configuration":{ "shape":"CrawlerConfiguration", "documentation":"

Crawler configuration information. This versioned JSON string allows users to specify aspects of a crawler's behavior. For more information, see Configuring a Crawler.

" @@ -8833,6 +8841,23 @@ "type":"long", "box":true }, + "RecrawlBehavior":{ + "type":"string", + "enum":[ + "CRAWL_EVERYTHING", + "CRAWL_NEW_FOLDERS_ONLY" + ] + }, + "RecrawlPolicy":{ + "type":"structure", + "members":{ + "RecrawlBehavior":{ + "shape":"RecrawlBehavior", + "documentation":"

Specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run.

A value of CRAWL_EVERYTHING specifies crawling the entire dataset again.

A value of CRAWL_NEW_FOLDERS_ONLY specifies crawling only folders that were added since the last crawler run.

" + } + }, + "documentation":"

When crawling an Amazon S3 data source after the first crawl is complete, specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run. For more information, see Incremental Crawls in AWS Glue in the developer guide.

" + }, "ReplaceBoolean":{"type":"boolean"}, "ResetJobBookmarkRequest":{ "type":"structure", @@ -10492,6 +10517,10 @@ "shape":"SchemaChangePolicy", "documentation":"

The policy for the crawler's update and deletion behavior.

" }, + "RecrawlPolicy":{ + "shape":"RecrawlPolicy", + "documentation":"

A policy that specifies whether to crawl the entire dataset again, or to crawl only folders that were added since the last crawler run.

" + }, "Configuration":{ "shape":"CrawlerConfiguration", "documentation":"

Crawler configuration information. This versioned JSON string allows users to specify aspects of a crawler's behavior. For more information, see Configuring a Crawler.

" From b6777b94316adcd1d9d749b46f0989bd48a15b0a Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 21 Oct 2020 19:33:51 +0000 Subject: [PATCH 047/339] AWSKendraFrontendService Update: This release adds custom data sources: a new data source type that gives you full control of the documents added, modified or deleted during a data source sync while providing run history metrics. --- ...ture-AWSKendraFrontendService-c9a8529.json | 5 +++ .../codegen-resources/service-2.json | 37 +++++++++++++------ 2 files changed, 30 insertions(+), 12 deletions(-) create mode 100644 .changes/next-release/feature-AWSKendraFrontendService-c9a8529.json diff --git a/.changes/next-release/feature-AWSKendraFrontendService-c9a8529.json b/.changes/next-release/feature-AWSKendraFrontendService-c9a8529.json new file mode 100644 index 000000000000..fb7fb17499a2 --- /dev/null +++ b/.changes/next-release/feature-AWSKendraFrontendService-c9a8529.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWSKendraFrontendService", + "description": "This release adds custom data sources: a new data source type that gives you full control of the documents added, modified or deleted during a data source sync while providing run history metrics." +} diff --git a/services/kendra/src/main/resources/codegen-resources/service-2.json b/services/kendra/src/main/resources/codegen-resources/service-2.json index 35ae53944ceb..62326bffc06e 100644 --- a/services/kendra/src/main/resources/codegen-resources/service-2.json +++ b/services/kendra/src/main/resources/codegen-resources/service-2.json @@ -810,9 +810,7 @@ "required":[ "Name", "IndexId", - "Type", - "Configuration", - "RoleArn" + "Type" ], "members":{ "Name":{ @@ -829,7 +827,7 @@ }, "Configuration":{ "shape":"DataSourceConfiguration", - "documentation":"

The data source connector configuration information that is required to access the repository.

" + "documentation":"

The connector configuration information that is required to access the repository.

You can't specify the Configuration parameter when the Type parameter is set to CUSTOM. If you do, you receive a ValidationException exception.

The Configuration parameter is required for all other data sources.

" }, "Description":{ "shape":"Description", @@ -837,15 +835,20 @@ }, "Schedule":{ "shape":"ScanSchedule", - "documentation":"

Sets the frequency that Amazon Kendra will check the documents in your repository and update the index. If you don't set a schedule Amazon Kendra will not periodically update the index. You can call the StartDataSourceSyncJob operation to update the index.

" + "documentation":"

Sets the frequency that Amazon Kendra will check the documents in your repository and update the index. If you don't set a schedule Amazon Kendra will not periodically update the index. You can call the StartDataSourceSyncJob operation to update the index.

You can't specify the Schedule parameter when the Type parameter is set to CUSTOM. If you do, you receive a ValidationException exception.

" }, "RoleArn":{ "shape":"RoleArn", - "documentation":"

The Amazon Resource Name (ARN) of a role with permission to access the data source. For more information, see IAM Roles for Amazon Kendra.

" + "documentation":"

The Amazon Resource Name (ARN) of a role with permission to access the data source. For more information, see IAM Roles for Amazon Kendra.

You can't specify the RoleArn parameter when the Type parameter is set to CUSTOM. If you do, you receive a ValidationException exception.

The RoleArn parameter is required for all other data sources.

" }, "Tags":{ "shape":"TagList", "documentation":"

A list of key-value pairs that identify the data source. You can use the tags to identify and organize your resources and to control access to resources.

" + }, + "ClientToken":{ + "shape":"ClientTokenName", + "documentation":"

A token that you provide to identify the request to create a data source. Multiple calls to the CreateDataSource operation with the same client token will create only one data source.

", + "idempotencyToken":true } } }, @@ -895,6 +898,11 @@ "FileFormat":{ "shape":"FaqFileFormat", "documentation":"

The format of the input file. You can choose between a basic CSV format, a CSV format that includes customs attributes in a header, and a JSON format that includes custom attributes.

The format must match the format of the file stored in the S3 bucket identified in the S3Path parameter.

For more information, see Adding questions and answers.

" + }, + "ClientToken":{ + "shape":"ClientTokenName", + "documentation":"

A token that you provide to identify the request to create a FAQ. Multiple calls to the CreateFaqRequest operation with the same client token will create only one FAQ.

", + "idempotencyToken":true } } }, @@ -924,7 +932,7 @@ }, "RoleArn":{ "shape":"RoleArn", - "documentation":"

An IAM role that gives Amazon Kendra permissions to access your Amazon CloudWatch logs and metrics. This is also the role used when you use the BatchPutDocument operation to index documents from an Amazon S3 bucket.

" + "documentation":"

An AWS Identity and Access Management (IAM) role that gives Amazon Kendra permissions to access your Amazon CloudWatch logs and metrics. This is also the role used when you use the BatchPutDocument operation to index documents from an Amazon S3 bucket.

" }, "ServerSideEncryptionConfiguration":{ "shape":"ServerSideEncryptionConfiguration", @@ -936,7 +944,7 @@ }, "ClientToken":{ "shape":"ClientTokenName", - "documentation":"

A token that you provide to identify the request to create an index. Multiple calls to the CreateIndex operation with the same client token will create only one index.”

", + "documentation":"

A token that you provide to identify the request to create an index. Multiple calls to the CreateIndex operation with the same client token will create only one index.

", "idempotencyToken":true }, "Tags":{ @@ -1010,7 +1018,7 @@ }, "DataSourceInclusionsExclusionsStringsMember":{ "type":"string", - "max":50, + "max":150, "min":1 }, "DataSourceName":{ @@ -1203,7 +1211,8 @@ "DATABASE", "SALESFORCE", "ONEDRIVE", - "SERVICENOW" + "SERVICENOW", + "CUSTOM" ] }, "DataSourceVpcConfiguration":{ @@ -1528,7 +1537,7 @@ "Description":{ "type":"string", "max":1000, - "min":1, + "min":0, "pattern":"^\\P{C}*$" }, "Document":{ @@ -2558,9 +2567,13 @@ "shape":"DataSourceInclusionsExclusionsStrings", "documentation":"

A list of S3 prefixes for the documents that should be included in the index.

" }, + "InclusionPatterns":{ + "shape":"DataSourceInclusionsExclusionsStrings", + "documentation":"

A list of glob patterns for documents that should be indexed. If a document that matches an inclusion pattern also matches an exclusion pattern, the document is not indexed.

For more information about glob patterns, see glob (programming) in Wikipedia.

" + }, "ExclusionPatterns":{ "shape":"DataSourceInclusionsExclusionsStrings", - "documentation":"

A list of glob patterns for documents that should not be indexed. If a document that matches an inclusion prefix also matches an exclusion pattern, the document is not indexed.

For more information about glob patterns, see glob (programming) in Wikipedia.

" + "documentation":"

A list of glob patterns for documents that should not be indexed. If a document that matches an inclusion prefix or inclusion pattern also matches an exclusion pattern, the document is not indexed.

For more information about glob patterns, see glob (programming) in Wikipedia.

" }, "DocumentsMetadataConfiguration":{"shape":"DocumentsMetadataConfiguration"}, "AccessControlListConfiguration":{ From c63c0a9e1b17df4e1073af03aaa7f8285db5b307 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 21 Oct 2020 19:33:51 +0000 Subject: [PATCH 048/339] AWS Global Accelerator Update: This release adds support for specifying port overrides on AWS Global Accelerator endpoint groups. --- .../feature-AWSGlobalAccelerator-029f300.json | 5 ++ .../codegen-resources/service-2.json | 62 ++++++++++++++----- 2 files changed, 52 insertions(+), 15 deletions(-) create mode 100644 .changes/next-release/feature-AWSGlobalAccelerator-029f300.json diff --git a/.changes/next-release/feature-AWSGlobalAccelerator-029f300.json b/.changes/next-release/feature-AWSGlobalAccelerator-029f300.json new file mode 100644 index 000000000000..0b6a121f7fee --- /dev/null +++ b/.changes/next-release/feature-AWSGlobalAccelerator-029f300.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS Global Accelerator", + "description": "This release adds support for specifying port overrides on AWS Global Accelerator endpoint groups." +} diff --git a/services/globalaccelerator/src/main/resources/codegen-resources/service-2.json b/services/globalaccelerator/src/main/resources/codegen-resources/service-2.json index e3a362e971ba..3251e58891c2 100644 --- a/services/globalaccelerator/src/main/resources/codegen-resources/service-2.json +++ b/services/globalaccelerator/src/main/resources/codegen-resources/service-2.json @@ -43,7 +43,7 @@ {"shape":"InvalidArgumentException"}, {"shape":"LimitExceededException"} ], - "documentation":"

Create an accelerator. An accelerator includes one or more listeners that process inbound connections and direct traffic to one or more endpoint groups, each of which includes endpoints, such as Network Load Balancers. To see an AWS CLI example of creating an accelerator, scroll down to Example.

If you bring your own IP address ranges to AWS Global Accelerator (BYOIP), you can assign IP addresses from your own pool to your accelerator as the static IP address entry points. Only one IP address from each of your IP address ranges can be used for each accelerator.

You must specify the US West (Oregon) Region to create or update accelerators.

" + "documentation":"

Create an accelerator. An accelerator includes one or more listeners that process inbound connections and direct traffic to one or more endpoint groups, each of which includes endpoints, such as Network Load Balancers. To see an AWS CLI example of creating an accelerator, scroll down to Example.

Global Accelerator is a global service that supports endpoints in multiple AWS Regions but you must specify the US West (Oregon) Region to create or update accelerators.

" }, "CreateEndpointGroup":{ "name":"CreateEndpointGroup", @@ -62,7 +62,7 @@ {"shape":"LimitExceededException"}, {"shape":"AccessDeniedException"} ], - "documentation":"

Create an endpoint group for the specified listener. An endpoint group is a collection of endpoints in one AWS Region. To see an AWS CLI example of creating an endpoint group, scroll down to Example.

" + "documentation":"

Create an endpoint group for the specified listener. An endpoint group is a collection of endpoints in one AWS Region. A resource must be valid and active when you add it as an endpoint.

To see an AWS CLI example of creating an endpoint group, scroll down to Example.

" }, "CreateListener":{ "name":"CreateListener", @@ -341,7 +341,7 @@ {"shape":"InternalServiceErrorException"}, {"shape":"InvalidArgumentException"} ], - "documentation":"

Update an accelerator. To see an AWS CLI example of updating an accelerator, scroll down to Example.

You must specify the US West (Oregon) Region to create or update accelerators.

" + "documentation":"

Update an accelerator. To see an AWS CLI example of updating an accelerator, scroll down to Example.

Global Accelerator is a global service that supports endpoints in multiple AWS Regions but you must specify the US West (Oregon) Region to create or update accelerators.

" }, "UpdateAcceleratorAttributes":{ "name":"UpdateAcceleratorAttributes", @@ -374,7 +374,7 @@ {"shape":"LimitExceededException"}, {"shape":"AccessDeniedException"} ], - "documentation":"

Update an endpoint group. To see an AWS CLI example of updating an endpoint group, scroll down to Example.

" + "documentation":"

Update an endpoint group. A resource must be valid and active when you add it as an endpoint.

To see an AWS CLI example of updating an endpoint group, scroll down to Example.

" }, "UpdateListener":{ "name":"UpdateListener", @@ -555,7 +555,7 @@ }, "Events":{ "shape":"ByoipCidrEvents", - "documentation":"

A history of status changes for an IP address range that that you bring to AWS Global Accelerator through bring your own IP address (BYOIP).

" + "documentation":"

A history of status changes for an IP address range that you bring to AWS Global Accelerator through bring your own IP address (BYOIP).

" } }, "documentation":"

Information about an IP address range that is provisioned for use with your AWS resources through bring your own IP address (BYOIP).

The following describes each BYOIP State that your IP address range can be in.

  • PENDING_PROVISIONING — You’ve submitted a request to provision an IP address range but it is not yet provisioned with AWS Global Accelerator.

  • READY — The address range is provisioned with AWS Global Accelerator and can be advertised.

  • PENDING_ADVERTISING — You’ve submitted a request for AWS Global Accelerator to advertise an address range but it is not yet being advertised.

  • ADVERTISING — The address range is being advertised by AWS Global Accelerator.

  • PENDING_WITHDRAWING — You’ve submitted a request to withdraw an address range from being advertised but it is still being advertised by AWS Global Accelerator.

  • PENDING_DEPROVISIONING — You’ve submitted a request to deprovision an address range from AWS Global Accelerator but it is still provisioned.

  • DEPROVISIONED — The address range is deprovisioned from AWS Global Accelerator.

  • FAILED_PROVISION — The request to provision the address range from AWS Global Accelerator was not successful. Please make sure that you provide all of the correct information, and try again. If the request fails a second time, contact AWS support.

  • FAILED_ADVERTISING — The request for AWS Global Accelerator to advertise the address range was not successful. Please make sure that you provide all of the correct information, and try again. If the request fails a second time, contact AWS support.

  • FAILED_WITHDRAW — The request to withdraw the address range from advertising by AWS Global Accelerator was not successful. Please make sure that you provide all of the correct information, and try again. If the request fails a second time, contact AWS support.

  • FAILED_DEPROVISION — The request to deprovision the address range from AWS Global Accelerator was not successful. Please make sure that you provide all of the correct information, and try again. If the request fails a second time, contact AWS support.

" @@ -648,7 +648,7 @@ }, "IpAddresses":{ "shape":"IpAddresses", - "documentation":"

Optionally, if you've added your own IP address pool to Global Accelerator, you can choose IP addresses from your own pool to use for the accelerator's static IP addresses. You can specify one or two addresses, separated by a comma. Do not include the /32 suffix.

If you specify only one IP address from your IP address range, Global Accelerator assigns a second static IP address for the accelerator from the AWS IP address pool.

For more information, see Bring Your Own IP Addresses (BYOIP) in the AWS Global Accelerator Developer Guide.

" + "documentation":"

Optionally, if you've added your own IP address pool to Global Accelerator (BYOIP), you can choose IP addresses from your own pool to use for the accelerator's static IP addresses when you create an accelerator. You can specify one or two addresses, separated by a comma. Do not include the /32 suffix.

Only one IP address from each of your IP address ranges can be used for each accelerator. If you specify only one IP address from your IP address range, Global Accelerator assigns a second static IP address for the accelerator from the AWS IP address pool.

Note that you can't update IP addresses for an existing accelerator. To change them, you must create a new accelerator with the new addresses.

For more information, see Bring Your Own IP Addresses (BYOIP) in the AWS Global Accelerator Developer Guide.

" }, "Enabled":{ "shape":"GenericBoolean", @@ -688,7 +688,7 @@ }, "EndpointGroupRegion":{ "shape":"GenericString", - "documentation":"

The name of the AWS Region where the endpoint group is located. A listener can have only one endpoint group in a specific Region.

" + "documentation":"

The AWS Region where the endpoint group is located. A listener can have only one endpoint group in a specific Region.

" }, "EndpointConfigurations":{ "shape":"EndpointConfigurations", @@ -722,6 +722,10 @@ "shape":"IdempotencyToken", "documentation":"

A unique, case-sensitive identifier that you provide to ensure the idempotency—that is, the uniqueness—of the request.

", "idempotencyToken":true + }, + "PortOverrides":{ + "shape":"PortOverrides", + "documentation":"

Override specific listener ports used to route traffic to endpoints that are part of this endpoint group. For example, you can create a port override in which the listener receives user traffic on ports 80 and 443, but your accelerator routes that traffic to ports 1080 and 1443, respectively, on the endpoints.

For more information, see Port overrides in the AWS Global Accelerator Developer Guide.

" } } }, @@ -757,7 +761,7 @@ }, "ClientAffinity":{ "shape":"ClientAffinity", - "documentation":"

Client affinity lets you direct all requests from a user to the same endpoint, if you have stateful applications, regardless of the port and protocol of the client request. Clienty affinity gives you control over whether to always route each client to the same specific endpoint.

AWS Global Accelerator uses a consistent-flow hashing algorithm to choose the optimal endpoint for a connection. If client affinity is NONE, Global Accelerator uses the \"five-tuple\" (5-tuple) properties—source IP address, source port, destination IP address, destination port, and protocol—to select the hash value, and then chooses the best endpoint. However, with this setting, if someone uses different ports to connect to Global Accelerator, their connections might not be always routed to the same endpoint because the hash value changes.

If you want a given client to always be routed to the same endpoint, set client affinity to SOURCE_IP instead. When you use the SOURCE_IP setting, Global Accelerator uses the \"two-tuple\" (2-tuple) properties— source (client) IP address and destination IP address—to select the hash value.

The default value is NONE.

" + "documentation":"

Client affinity lets you direct all requests from a user to the same endpoint, if you have stateful applications, regardless of the port and protocol of the client request. Client affinity gives you control over whether to always route each client to the same specific endpoint.

AWS Global Accelerator uses a consistent-flow hashing algorithm to choose the optimal endpoint for a connection. If client affinity is NONE, Global Accelerator uses the \"five-tuple\" (5-tuple) properties—source IP address, source port, destination IP address, destination port, and protocol—to select the hash value, and then chooses the best endpoint. However, with this setting, if someone uses different ports to connect to Global Accelerator, their connections might not be always routed to the same endpoint because the hash value changes.

If you want a given client to always be routed to the same endpoint, set client affinity to SOURCE_IP instead. When you use the SOURCE_IP setting, Global Accelerator uses the \"two-tuple\" (2-tuple) properties— source (client) IP address and destination IP address—to select the hash value.

The default value is NONE.

" }, "IdempotencyToken":{ "shape":"IdempotencyToken", @@ -905,7 +909,7 @@ "members":{ "EndpointId":{ "shape":"GenericString", - "documentation":"

An ID for the endpoint. If the endpoint is a Network Load Balancer or Application Load Balancer, this is the Amazon Resource Name (ARN) of the resource. If the endpoint is an Elastic IP address, this is the Elastic IP address allocation ID. For EC2 instances, this is the EC2 instance ID.

An Application Load Balancer can be either internal or internet-facing.

" + "documentation":"

An ID for the endpoint. If the endpoint is a Network Load Balancer or Application Load Balancer, this is the Amazon Resource Name (ARN) of the resource. If the endpoint is an Elastic IP address, this is the Elastic IP address allocation ID. For Amazon EC2 instances, this is the EC2 instance ID. A resource must be valid and active when you add it as an endpoint.

An Application Load Balancer can be either internal or internet-facing.

" }, "Weight":{ "shape":"EndpointWeight", @@ -916,7 +920,7 @@ "documentation":"

Indicates whether client IP address preservation is enabled for an Application Load Balancer endpoint. The value is true or false. The default value is true for new accelerators.

If the value is set to true, the client's IP address is preserved in the X-Forwarded-For request header as traffic travels to applications on the Application Load Balancer endpoint fronted by the accelerator.

For more information, see Preserve Client IP Addresses in AWS Global Accelerator in the AWS Global Accelerator Developer Guide.

" } }, - "documentation":"

A complex type for endpoints.

" + "documentation":"

A complex type for endpoints. A resource must be valid and active when you add it as an endpoint.

" }, "EndpointConfigurations":{ "type":"list", @@ -963,7 +967,7 @@ }, "EndpointGroupRegion":{ "shape":"GenericString", - "documentation":"

The AWS Region that this endpoint group belongs.

" + "documentation":"

The AWS Region where the endpoint group is located.

" }, "EndpointDescriptions":{ "shape":"EndpointDescriptions", @@ -992,6 +996,10 @@ "ThresholdCount":{ "shape":"ThresholdCount", "documentation":"

The number of consecutive health checks required to set the state of a healthy endpoint to unhealthy, or to set an unhealthy endpoint to healthy. The default value is 3.

" + }, + "PortOverrides":{ + "shape":"PortOverrides", + "documentation":"

Allows you to override the destination ports used to route traffic to an endpoint. Using a port override lets you to map a list of external destination ports (that your users send traffic to) to a list of internal destination ports that you want an application endpoint to receive traffic on.

" } }, "documentation":"

A complex type for the endpoint group. An AWS Region can have only one endpoint group for a specific listener.

" @@ -1284,7 +1292,7 @@ }, "ClientAffinity":{ "shape":"ClientAffinity", - "documentation":"

Client affinity lets you direct all requests from a user to the same endpoint, if you have stateful applications, regardless of the port and protocol of the client request. Clienty affinity gives you control over whether to always route each client to the same specific endpoint.

AWS Global Accelerator uses a consistent-flow hashing algorithm to choose the optimal endpoint for a connection. If client affinity is NONE, Global Accelerator uses the \"five-tuple\" (5-tuple) properties—source IP address, source port, destination IP address, destination port, and protocol—to select the hash value, and then chooses the best endpoint. However, with this setting, if someone uses different ports to connect to Global Accelerator, their connections might not be always routed to the same endpoint because the hash value changes.

If you want a given client to always be routed to the same endpoint, set client affinity to SOURCE_IP instead. When you use the SOURCE_IP setting, Global Accelerator uses the \"two-tuple\" (2-tuple) properties— source (client) IP address and destination IP address—to select the hash value.

The default value is NONE.

" + "documentation":"

Client affinity lets you direct all requests from a user to the same endpoint, if you have stateful applications, regardless of the port and protocol of the client request. Client affinity gives you control over whether to always route each client to the same specific endpoint.

AWS Global Accelerator uses a consistent-flow hashing algorithm to choose the optimal endpoint for a connection. If client affinity is NONE, Global Accelerator uses the \"five-tuple\" (5-tuple) properties—source IP address, source port, destination IP address, destination port, and protocol—to select the hash value, and then chooses the best endpoint. However, with this setting, if someone uses different ports to connect to Global Accelerator, their connections might not be always routed to the same endpoint because the hash value changes.

If you want a given client to always be routed to the same endpoint, set client affinity to SOURCE_IP instead. When you use the SOURCE_IP setting, Global Accelerator uses the \"two-tuple\" (2-tuple) properties— source (client) IP address and destination IP address—to select the hash value.

The default value is NONE.

" } }, "documentation":"

A complex type for a listener.

" @@ -1311,6 +1319,26 @@ "max":65535, "min":1 }, + "PortOverride":{ + "type":"structure", + "members":{ + "ListenerPort":{ + "shape":"PortNumber", + "documentation":"

The listener port that you want to map to a specific endpoint port. This is the port that user traffic arrives to the Global Accelerator on.

" + }, + "EndpointPort":{ + "shape":"PortNumber", + "documentation":"

The endpoint port that you want a listener port to be mapped to. This is the port on the endpoint, such as the Application Load Balancer or Amazon EC2 instance.

" + } + }, + "documentation":"

Override specific listener ports used to route traffic to endpoints that are part of an endpoint group. For example, you can create a port override in which the listener receives user traffic on ports 80 and 443, but your accelerator routes that traffic to ports 1080 and 1443, respectively, on the endpoints.

For more information, see Port overrides in the AWS Global Accelerator Developer Guide.

" + }, + "PortOverrides":{ + "type":"list", + "member":{"shape":"PortOverride"}, + "max":10, + "min":0 + }, "PortRange":{ "type":"structure", "members":{ @@ -1534,7 +1562,7 @@ }, "EndpointConfigurations":{ "shape":"EndpointConfigurations", - "documentation":"

The list of endpoint objects.

" + "documentation":"

The list of endpoint objects. A resource must be valid and active when you add it as an endpoint.

" }, "TrafficDialPercentage":{ "shape":"TrafficDialPercentage", @@ -1559,6 +1587,10 @@ "ThresholdCount":{ "shape":"ThresholdCount", "documentation":"

The number of consecutive health checks required to set the state of a healthy endpoint to unhealthy, or to set an unhealthy endpoint to healthy. The default value is 3.

" + }, + "PortOverrides":{ + "shape":"PortOverrides", + "documentation":"

Override specific listener ports used to route traffic to endpoints that are part of this endpoint group. For example, you can create a port override in which the listener receives user traffic on ports 80 and 443, but your accelerator routes that traffic to ports 1080 and 1443, respectively, on the endpoints.

For more information, see Port overrides in the AWS Global Accelerator Developer Guide.

" } } }, @@ -1589,7 +1621,7 @@ }, "ClientAffinity":{ "shape":"ClientAffinity", - "documentation":"

Client affinity lets you direct all requests from a user to the same endpoint, if you have stateful applications, regardless of the port and protocol of the client request. Clienty affinity gives you control over whether to always route each client to the same specific endpoint.

AWS Global Accelerator uses a consistent-flow hashing algorithm to choose the optimal endpoint for a connection. If client affinity is NONE, Global Accelerator uses the \"five-tuple\" (5-tuple) properties—source IP address, source port, destination IP address, destination port, and protocol—to select the hash value, and then chooses the best endpoint. However, with this setting, if someone uses different ports to connect to Global Accelerator, their connections might not be always routed to the same endpoint because the hash value changes.

If you want a given client to always be routed to the same endpoint, set client affinity to SOURCE_IP instead. When you use the SOURCE_IP setting, Global Accelerator uses the \"two-tuple\" (2-tuple) properties— source (client) IP address and destination IP address—to select the hash value.

The default value is NONE.

" + "documentation":"

Client affinity lets you direct all requests from a user to the same endpoint, if you have stateful applications, regardless of the port and protocol of the client request. Client affinity gives you control over whether to always route each client to the same specific endpoint.

AWS Global Accelerator uses a consistent-flow hashing algorithm to choose the optimal endpoint for a connection. If client affinity is NONE, Global Accelerator uses the \"five-tuple\" (5-tuple) properties—source IP address, source port, destination IP address, destination port, and protocol—to select the hash value, and then chooses the best endpoint. However, with this setting, if someone uses different ports to connect to Global Accelerator, their connections might not be always routed to the same endpoint because the hash value changes.

If you want a given client to always be routed to the same endpoint, set client affinity to SOURCE_IP instead. When you use the SOURCE_IP setting, Global Accelerator uses the \"two-tuple\" (2-tuple) properties— source (client) IP address and destination IP address—to select the hash value.

The default value is NONE.

" } } }, @@ -1622,5 +1654,5 @@ } } }, - "documentation":"AWS Global Accelerator

This is the AWS Global Accelerator API Reference. This guide is for developers who need detailed information about AWS Global Accelerator API actions, data types, and errors. For more information about Global Accelerator features, see the AWS Global Accelerator Developer Guide.

AWS Global Accelerator is a service in which you create accelerators to improve availability and performance of your applications for local and global users.

You must specify the US West (Oregon) Region to create or update accelerators.

By default, Global Accelerator provides you with static IP addresses that you associate with your accelerator. (Instead of using the IP addresses that Global Accelerator provides, you can configure these entry points to be IPv4 addresses from your own IP address ranges that you bring to Global Accelerator.) The static IP addresses are anycast from the AWS edge network and distribute incoming application traffic across multiple endpoint resources in multiple AWS Regions, which increases the availability of your applications. Endpoints can be Network Load Balancers, Application Load Balancers, EC2 instances, or Elastic IP addresses that are located in one AWS Region or multiple Regions.

Global Accelerator uses the AWS global network to route traffic to the optimal regional endpoint based on health, client location, and policies that you configure. The service reacts instantly to changes in health or configuration to ensure that internet traffic from clients is directed to only healthy endpoints.

Global Accelerator includes components that work together to help you improve performance and availability for your applications:

Static IP address

By default, AWS Global Accelerator provides you with a set of static IP addresses that are anycast from the AWS edge network and serve as the single fixed entry points for your clients. Or you can configure these entry points to be IPv4 addresses from your own IP address ranges that you bring to Global Accelerator (BYOIP). For more information, see Bring Your Own IP Addresses (BYOIP) in the AWS Global Accelerator Developer Guide. If you already have load balancers, EC2 instances, or Elastic IP addresses set up for your applications, you can easily add those to Global Accelerator to allow the resources to be accessed by the static IP addresses.

The static IP addresses remain assigned to your accelerator for as long as it exists, even if you disable the accelerator and it no longer accepts or routes traffic. However, when you delete an accelerator, you lose the static IP addresses that are assigned to it, so you can no longer route traffic by using them. You can use IAM policies with Global Accelerator to limit the users who have permissions to delete an accelerator. For more information, see Authentication and Access Control in the AWS Global Accelerator Developer Guide.

Accelerator

An accelerator directs traffic to optimal endpoints over the AWS global network to improve availability and performance for your internet applications that have a global audience. Each accelerator includes one or more listeners.

DNS name

Global Accelerator assigns each accelerator a default Domain Name System (DNS) name, similar to a1234567890abcdef.awsglobalaccelerator.com, that points to your Global Accelerator static IP addresses. Depending on the use case, you can use your accelerator's static IP addresses or DNS name to route traffic to your accelerator, or set up DNS records to route traffic using your own custom domain name.

Network zone

A network zone services the static IP addresses for your accelerator from a unique IP subnet. Similar to an AWS Availability Zone, a network zone is an isolated unit with its own set of physical infrastructure. When you configure an accelerator, by default, Global Accelerator allocates two IPv4 addresses for it. If one IP address from a network zone becomes unavailable due to IP address blocking by certain client networks, or network disruptions, then client applications can retry on the healthy static IP address from the other isolated network zone.

Listener

A listener processes inbound connections from clients to Global Accelerator, based on the protocol and port that you configure. Each listener has one or more endpoint groups associated with it, and traffic is forwarded to endpoints in one of the groups. You associate endpoint groups with listeners by specifying the Regions that you want to distribute traffic to. Traffic is distributed to optimal endpoints within the endpoint groups associated with a listener.

Endpoint group

Each endpoint group is associated with a specific AWS Region. Endpoint groups include one or more endpoints in the Region. You can increase or reduce the percentage of traffic that would be otherwise directed to an endpoint group by adjusting a setting called a traffic dial. The traffic dial lets you easily do performance testing or blue/green deployment testing for new releases across different AWS Regions, for example.

Endpoint

An endpoint is a Network Load Balancer, Application Load Balancer, EC2 instance, or Elastic IP address. Traffic is routed to endpoints based on several factors, including the geo-proximity to the user, the health of the endpoint, and the configuration options that you choose, such as endpoint weights. For each endpoint, you can configure weights, which are numbers that you can use to specify the proportion of traffic to route to each one. This can be useful, for example, to do performance testing within a Region.

" + "documentation":"AWS Global Accelerator

This is the AWS Global Accelerator API Reference. This guide is for developers who need detailed information about AWS Global Accelerator API actions, data types, and errors. For more information about Global Accelerator features, see the AWS Global Accelerator Developer Guide.

AWS Global Accelerator is a service in which you create accelerators to improve availability and performance of your applications for local and global users. Global Accelerator directs traffic to optimal endpoints over the AWS global network. This improves the availability and performance of your internet applications that are used by a global audience. Global Accelerator is a global service that supports endpoints in multiple AWS Regions, which are listed in the AWS Region Table.

Global Accelerator is a global service that supports endpoints in multiple AWS Regions but you must specify the US West (Oregon) Region to create or update accelerators.

By default, Global Accelerator provides you with static IP addresses that you associate with your accelerator. (Instead of using the IP addresses that Global Accelerator provides, you can configure these entry points to be IPv4 addresses from your own IP address ranges that you bring to Global Accelerator.) The static IP addresses are anycast from the AWS edge network and distribute incoming application traffic across multiple endpoint resources in multiple AWS Regions, which increases the availability of your applications. Endpoints can be Network Load Balancers, Application Load Balancers, EC2 instances, or Elastic IP addresses that are located in one AWS Region or multiple Regions.

Global Accelerator uses the AWS global network to route traffic to the optimal regional endpoint based on health, client location, and policies that you configure. The service reacts instantly to changes in health or configuration to ensure that internet traffic from clients is directed to only healthy endpoints.

Global Accelerator includes components that work together to help you improve performance and availability for your applications:

Static IP address

By default, AWS Global Accelerator provides you with a set of static IP addresses that are anycast from the AWS edge network and serve as the single fixed entry points for your clients. Or you can configure these entry points to be IPv4 addresses from your own IP address ranges that you bring to Global Accelerator (BYOIP). For more information, see Bring Your Own IP Addresses (BYOIP) in the AWS Global Accelerator Developer Guide. If you already have load balancers, EC2 instances, or Elastic IP addresses set up for your applications, you can easily add those to Global Accelerator to allow the resources to be accessed by the static IP addresses.

The static IP addresses remain assigned to your accelerator for as long as it exists, even if you disable the accelerator and it no longer accepts or routes traffic. However, when you delete an accelerator, you lose the static IP addresses that are assigned to it, so you can no longer route traffic by using them. You can use IAM policies with Global Accelerator to limit the users who have permissions to delete an accelerator. For more information, see Authentication and Access Control in the AWS Global Accelerator Developer Guide.

Accelerator

An accelerator directs traffic to optimal endpoints over the AWS global network to improve availability and performance for your internet applications that have a global audience. Each accelerator includes one or more listeners.

DNS name

Global Accelerator assigns each accelerator a default Domain Name System (DNS) name, similar to a1234567890abcdef.awsglobalaccelerator.com, that points to your Global Accelerator static IP addresses. Depending on the use case, you can use your accelerator's static IP addresses or DNS name to route traffic to your accelerator, or set up DNS records to route traffic using your own custom domain name.

Network zone

A network zone services the static IP addresses for your accelerator from a unique IP subnet. Similar to an AWS Availability Zone, a network zone is an isolated unit with its own set of physical infrastructure. When you configure an accelerator, by default, Global Accelerator allocates two IPv4 addresses for it. If one IP address from a network zone becomes unavailable due to IP address blocking by certain client networks, or network disruptions, then client applications can retry on the healthy static IP address from the other isolated network zone.

Listener

A listener processes inbound connections from clients to Global Accelerator, based on the protocol and port that you configure. Each listener has one or more endpoint groups associated with it, and traffic is forwarded to endpoints in one of the groups. You associate endpoint groups with listeners by specifying the Regions that you want to distribute traffic to. Traffic is distributed to optimal endpoints within the endpoint groups associated with a listener.

Endpoint group

Each endpoint group is associated with a specific AWS Region. Endpoint groups include one or more endpoints in the Region. You can increase or reduce the percentage of traffic that would be otherwise directed to an endpoint group by adjusting a setting called a traffic dial. The traffic dial lets you easily do performance testing or blue/green deployment testing for new releases across different AWS Regions, for example.

Endpoint

An endpoint is a Network Load Balancer, Application Load Balancer, EC2 instance, or Elastic IP address. Traffic is routed to endpoints based on several factors, including the geo-proximity to the user, the health of the endpoint, and the configuration options that you choose, such as endpoint weights. For each endpoint, you can configure weights, which are numbers that you can use to specify the proportion of traffic to route to each one. This can be useful, for example, to do performance testing within a Region.

" } From 91c51f4ea6933b0477dfda39e621b3e795e49ce4 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 21 Oct 2020 19:33:54 +0000 Subject: [PATCH 049/339] Amazon CloudFront Update: CloudFront adds support for managing the public keys for signed URLs and signed cookies directly in CloudFront (it no longer requires the AWS root account). --- .../feature-AmazonCloudFront-94d9588.json | 5 + .../codegen-resources/service-2.json | 696 ++++++++++++++++-- 2 files changed, 638 insertions(+), 63 deletions(-) create mode 100644 .changes/next-release/feature-AmazonCloudFront-94d9588.json diff --git a/.changes/next-release/feature-AmazonCloudFront-94d9588.json b/.changes/next-release/feature-AmazonCloudFront-94d9588.json new file mode 100644 index 000000000000..0f0ce7ba90fe --- /dev/null +++ b/.changes/next-release/feature-AmazonCloudFront-94d9588.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "Amazon CloudFront", + "description": "CloudFront adds support for managing the public keys for signed URLs and signed cookies directly in CloudFront (it no longer requires the AWS root account)." +} diff --git a/services/cloudfront/src/main/resources/codegen-resources/service-2.json b/services/cloudfront/src/main/resources/codegen-resources/service-2.json index 64c27b7b7477..a1e7dfe0b11c 100644 --- a/services/cloudfront/src/main/resources/codegen-resources/service-2.json +++ b/services/cloudfront/src/main/resources/codegen-resources/service-2.json @@ -109,7 +109,10 @@ {"shape":"NoSuchCachePolicy"}, {"shape":"TooManyDistributionsAssociatedToCachePolicy"}, {"shape":"NoSuchOriginRequestPolicy"}, - {"shape":"TooManyDistributionsAssociatedToOriginRequestPolicy"} + {"shape":"TooManyDistributionsAssociatedToOriginRequestPolicy"}, + {"shape":"TooManyDistributionsAssociatedToKeyGroup"}, + {"shape":"TooManyKeyGroupsAssociatedToDistribution"}, + {"shape":"TrustedKeyGroupDoesNotExist"} ], "documentation":"

Creates a new web distribution. You create a CloudFront distribution to tell CloudFront where you want content to be delivered from, and the details about how to track and manage content delivery. Send a POST request to the /CloudFront API version/distribution/distribution ID resource.

When you update a distribution, there are more required fields than when you create a distribution. When you update your distribution by using UpdateDistribution, follow the steps included in the documentation to get the current configuration and then make your updates. This helps to make sure that you include all of the required fields. To view a summary, see Required Fields for Create Distribution and Update Distribution in the Amazon CloudFront Developer Guide.

" }, @@ -172,7 +175,10 @@ {"shape":"NoSuchCachePolicy"}, {"shape":"TooManyDistributionsAssociatedToCachePolicy"}, {"shape":"NoSuchOriginRequestPolicy"}, - {"shape":"TooManyDistributionsAssociatedToOriginRequestPolicy"} + {"shape":"TooManyDistributionsAssociatedToOriginRequestPolicy"}, + {"shape":"TooManyDistributionsAssociatedToKeyGroup"}, + {"shape":"TooManyKeyGroupsAssociatedToDistribution"}, + {"shape":"TrustedKeyGroupDoesNotExist"} ], "documentation":"

Create a new distribution with tags.

" }, @@ -238,6 +244,23 @@ ], "documentation":"

Create a new invalidation.

" }, + "CreateKeyGroup":{ + "name":"CreateKeyGroup2020_05_31", + "http":{ + "method":"POST", + "requestUri":"/2020-05-31/key-group", + "responseCode":201 + }, + "input":{"shape":"CreateKeyGroupRequest"}, + "output":{"shape":"CreateKeyGroupResult"}, + "errors":[ + {"shape":"InvalidArgument"}, + {"shape":"KeyGroupAlreadyExists"}, + {"shape":"TooManyKeyGroups"}, + {"shape":"TooManyPublicKeysInKeyGroup"} + ], + "documentation":"

Creates a key group that you can use with CloudFront signed URLs and signed cookies.

To create a key group, you must specify at least one public key for the key group. After you create a key group, you can reference it from one or more cache behaviors. When you reference a key group in a cache behavior, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

" + }, "CreateMonitoringSubscription":{ "name":"CreateMonitoringSubscription2020_05_31", "http":{ @@ -287,7 +310,7 @@ {"shape":"InvalidArgument"}, {"shape":"TooManyPublicKeys"} ], - "documentation":"

Add a new public key to CloudFront to use, for example, for field-level encryption. You can add a maximum of 10 public keys with one AWS account.

" + "documentation":"

Uploads a public key to CloudFront that you can use with signed URLs and signed cookies, or with field-level encryption.

" }, "CreateRealtimeLogConfig":{ "name":"CreateRealtimeLogConfig2020_05_31", @@ -305,7 +328,8 @@ "errors":[ {"shape":"RealtimeLogConfigAlreadyExists"}, {"shape":"TooManyRealtimeLogConfigs"}, - {"shape":"InvalidArgument"} + {"shape":"InvalidArgument"}, + {"shape":"AccessDenied"} ], "documentation":"

Creates a real-time log configuration.

After you create a real-time log configuration, you can attach it to one or more cache behaviors to send real-time log data to the specified Amazon Kinesis data stream.

For more information about real-time log configurations, see Real-time logs in the Amazon CloudFront Developer Guide.

" }, @@ -446,6 +470,22 @@ ], "documentation":"

Remove a field-level encryption profile.

" }, + "DeleteKeyGroup":{ + "name":"DeleteKeyGroup2020_05_31", + "http":{ + "method":"DELETE", + "requestUri":"/2020-05-31/key-group/{Id}", + "responseCode":204 + }, + "input":{"shape":"DeleteKeyGroupRequest"}, + "errors":[ + {"shape":"InvalidIfMatchVersion"}, + {"shape":"NoSuchResource"}, + {"shape":"PreconditionFailed"}, + {"shape":"ResourceInUse"} + ], + "documentation":"

Deletes a key group.

You cannot delete a key group that is referenced in a cache behavior. First update your distributions to remove the key group from all cache behaviors, then delete the key group.

To delete a key group, you must provide the key group’s identifier and version. To get these values, use ListKeyGroups followed by GetKeyGroup or GetKeyGroupConfig.

" + }, "DeleteMonitoringSubscription":{ "name":"DeleteMonitoringSubscription2020_05_31", "http":{ @@ -510,7 +550,8 @@ "errors":[ {"shape":"NoSuchRealtimeLogConfig"}, {"shape":"RealtimeLogConfigInUse"}, - {"shape":"InvalidArgument"} + {"shape":"InvalidArgument"}, + {"shape":"AccessDenied"} ], "documentation":"

Deletes a real-time log configuration.

You cannot delete a real-time log configuration if it’s attached to a cache behavior. First update your distributions to remove the real-time log configuration from all cache behaviors, then delete the real-time log configuration.

To delete a real-time log configuration, you can provide the configuration’s name or its Amazon Resource Name (ARN). You must provide at least one. If you provide both, CloudFront uses the name to identify the real-time log configuration to delete.

" }, @@ -686,6 +727,32 @@ ], "documentation":"

Get the information about an invalidation.

" }, + "GetKeyGroup":{ + "name":"GetKeyGroup2020_05_31", + "http":{ + "method":"GET", + "requestUri":"/2020-05-31/key-group/{Id}" + }, + "input":{"shape":"GetKeyGroupRequest"}, + "output":{"shape":"GetKeyGroupResult"}, + "errors":[ + {"shape":"NoSuchResource"} + ], + "documentation":"

Gets a key group, including the date and time when the key group was last modified.

To get a key group, you must provide the key group’s identifier. If the key group is referenced in a distribution’s cache behavior, you can get the key group’s identifier using ListDistributions or GetDistribution. If the key group is not referenced in a cache behavior, you can get the identifier using ListKeyGroups.

" + }, + "GetKeyGroupConfig":{ + "name":"GetKeyGroupConfig2020_05_31", + "http":{ + "method":"GET", + "requestUri":"/2020-05-31/key-group/{Id}/config" + }, + "input":{"shape":"GetKeyGroupConfigRequest"}, + "output":{"shape":"GetKeyGroupConfigResult"}, + "errors":[ + {"shape":"NoSuchResource"} + ], + "documentation":"

Gets a key group configuration.

To get a key group configuration, you must provide the key group’s identifier. If the key group is referenced in a distribution’s cache behavior, you can get the key group’s identifier using ListDistributions or GetDistribution. If the key group is not referenced in a cache behavior, you can get the identifier using ListKeyGroups.

" + }, "GetMonitoringSubscription":{ "name":"GetMonitoringSubscription2020_05_31", "http":{ @@ -740,7 +807,7 @@ {"shape":"AccessDenied"}, {"shape":"NoSuchPublicKey"} ], - "documentation":"

Get the public key information.

" + "documentation":"

Gets a public key.

" }, "GetPublicKeyConfig":{ "name":"GetPublicKeyConfig2020_05_31", @@ -754,7 +821,7 @@ {"shape":"AccessDenied"}, {"shape":"NoSuchPublicKey"} ], - "documentation":"

Return public key configuration informaation

" + "documentation":"

Gets a public key configuration.

" }, "GetRealtimeLogConfig":{ "name":"GetRealtimeLogConfig2020_05_31", @@ -770,7 +837,8 @@ "output":{"shape":"GetRealtimeLogConfigResult"}, "errors":[ {"shape":"NoSuchRealtimeLogConfig"}, - {"shape":"InvalidArgument"} + {"shape":"InvalidArgument"}, + {"shape":"AccessDenied"} ], "documentation":"

Gets a real-time log configuration.

To get a real-time log configuration, you can provide the configuration’s name or its Amazon Resource Name (ARN). You must provide at least one. If you provide both, CloudFront uses the name to identify the real-time log configuration to get.

" }, @@ -858,6 +926,20 @@ ], "documentation":"

Gets a list of distribution IDs for distributions that have a cache behavior that’s associated with the specified cache policy.

You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent request.

" }, + "ListDistributionsByKeyGroup":{ + "name":"ListDistributionsByKeyGroup2020_05_31", + "http":{ + "method":"GET", + "requestUri":"/2020-05-31/distributionsByKeyGroupId/{KeyGroupId}" + }, + "input":{"shape":"ListDistributionsByKeyGroupRequest"}, + "output":{"shape":"ListDistributionsByKeyGroupResult"}, + "errors":[ + {"shape":"NoSuchResource"}, + {"shape":"InvalidArgument"} + ], + "documentation":"

Gets a list of distribution IDs for distributions that have a cache behavior that references the specified key group.

You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent request.

" + }, "ListDistributionsByOriginRequestPolicyId":{ "name":"ListDistributionsByOriginRequestPolicyId2020_05_31", "http":{ @@ -945,6 +1027,19 @@ ], "documentation":"

Lists invalidation batches.

" }, + "ListKeyGroups":{ + "name":"ListKeyGroups2020_05_31", + "http":{ + "method":"GET", + "requestUri":"/2020-05-31/key-group" + }, + "input":{"shape":"ListKeyGroupsRequest"}, + "output":{"shape":"ListKeyGroupsResult"}, + "errors":[ + {"shape":"InvalidArgument"} + ], + "documentation":"

Gets a list of key groups.

You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent request.

" + }, "ListOriginRequestPolicies":{ "name":"ListOriginRequestPolicies2020_05_31", "http":{ @@ -981,6 +1076,11 @@ }, "input":{"shape":"ListRealtimeLogConfigsRequest"}, "output":{"shape":"ListRealtimeLogConfigsResult"}, + "errors":[ + {"shape":"InvalidArgument"}, + {"shape":"AccessDenied"}, + {"shape":"NoSuchRealtimeLogConfig"} + ], "documentation":"

Gets a list of real-time log configurations.

You can optionally specify the maximum number of items to receive in the response. If the total number of items in the list exceeds the maximum that you specify, or the default maximum, the response is paginated. To get the next page of items, send a subsequent request that specifies the NextMarker value from the current response as the Marker value in the subsequent request.

" }, "ListStreamingDistributions":{ @@ -1144,7 +1244,10 @@ {"shape":"NoSuchCachePolicy"}, {"shape":"TooManyDistributionsAssociatedToCachePolicy"}, {"shape":"NoSuchOriginRequestPolicy"}, - {"shape":"TooManyDistributionsAssociatedToOriginRequestPolicy"} + {"shape":"TooManyDistributionsAssociatedToOriginRequestPolicy"}, + {"shape":"TooManyDistributionsAssociatedToKeyGroup"}, + {"shape":"TooManyKeyGroupsAssociatedToDistribution"}, + {"shape":"TrustedKeyGroupDoesNotExist"} ], "documentation":"

Updates the configuration for a web distribution.

When you update a distribution, there are more required fields than when you create a distribution. When you update your distribution by using this API action, follow the steps here to get the current configuration and then make your updates, to make sure that you include all of the required fields. To view a summary, see Required Fields for Create Distribution and Update Distribution in the Amazon CloudFront Developer Guide.

The update process includes getting the current distribution configuration, updating the XML document that is returned to make your changes, and then submitting an UpdateDistribution request to make the updates.

For information about updating a distribution using the CloudFront console instead, see Creating a Distribution in the Amazon CloudFront Developer Guide.

To update a web distribution using the CloudFront API

  1. Submit a GetDistributionConfig request to get the current configuration and an Etag header for the distribution.

    If you update the distribution again, you must get a new Etag header.

  2. Update the XML document that was returned in the response to your GetDistributionConfig request to include your changes.

    When you edit the XML file, be aware of the following:

    • You must strip out the ETag parameter that is returned.

    • Additional fields are required when you update a distribution. There may be fields included in the XML file for features that you haven't configured for your distribution. This is expected and required to successfully update the distribution.

    • You can't change the value of CallerReference. If you try to change this value, CloudFront returns an IllegalUpdate error.

    • The new configuration replaces the existing configuration; the values that you specify in an UpdateDistribution request are not merged into your existing configuration. When you add, delete, or replace values in an element that allows multiple values (for example, CNAME), you must specify all of the values that you want to appear in the updated distribution. In addition, you must update the corresponding Quantity element.

  3. Submit an UpdateDistribution request to update the configuration for your distribution:

    • In the request body, include the XML document that you updated in Step 2. The request body must include an XML document with a DistributionConfig element.

    • Set the value of the HTTP If-Match header to the value of the ETag header that CloudFront returned when you submitted the GetDistributionConfig request in Step 1.

  4. Review the response to the UpdateDistribution request to confirm that the configuration was successfully updated.

  5. Optional: Submit a GetDistribution request to confirm that your changes have propagated. When propagation is complete, the value of Status is Deployed.

" }, @@ -1195,6 +1298,24 @@ ], "documentation":"

Update a field-level encryption profile.

" }, + "UpdateKeyGroup":{ + "name":"UpdateKeyGroup2020_05_31", + "http":{ + "method":"PUT", + "requestUri":"/2020-05-31/key-group/{Id}" + }, + "input":{"shape":"UpdateKeyGroupRequest"}, + "output":{"shape":"UpdateKeyGroupResult"}, + "errors":[ + {"shape":"InvalidIfMatchVersion"}, + {"shape":"NoSuchResource"}, + {"shape":"PreconditionFailed"}, + {"shape":"KeyGroupAlreadyExists"}, + {"shape":"InvalidArgument"}, + {"shape":"TooManyPublicKeysInKeyGroup"} + ], + "documentation":"

Updates a key group.

When you update a key group, all the fields are updated with the values provided in the request. You cannot update some fields independent of others. To update a key group:

  1. Get the current key group with GetKeyGroup or GetKeyGroupConfig.

  2. Locally modify the fields in the key group that you want to update. For example, add or remove public key IDs.

  3. Call UpdateKeyGroup with the entire key group object, including the fields that you modified and those that you didn’t.

" + }, "UpdateOriginRequestPolicy":{ "name":"UpdateOriginRequestPolicy2020_05_31", "http":{ @@ -1251,7 +1372,8 @@ "output":{"shape":"UpdateRealtimeLogConfigResult"}, "errors":[ {"shape":"NoSuchRealtimeLogConfig"}, - {"shape":"InvalidArgument"} + {"shape":"InvalidArgument"}, + {"shape":"AccessDenied"} ], "documentation":"

Updates a real-time log configuration.

When you update a real-time log configuration, all the parameters are updated with the values provided in the request. You cannot update some parameters independent of others. To update a real-time log configuration:

  1. Call GetRealtimeLogConfig to get the current real-time log configuration.

  2. Locally modify the parameters in the real-time log configuration that you want to update.

  3. Call this API (UpdateRealtimeLogConfig) by providing the entire real-time log configuration, including the parameters that you modified and those that you didn’t.

You cannot update a real-time log configuration’s Name or ARN.

" }, @@ -1291,6 +1413,28 @@ "error":{"httpStatusCode":403}, "exception":true }, + "ActiveTrustedKeyGroups":{ + "type":"structure", + "required":[ + "Enabled", + "Quantity" + ], + "members":{ + "Enabled":{ + "shape":"boolean", + "documentation":"

This field is true if any of the key groups have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

" + }, + "Quantity":{ + "shape":"integer", + "documentation":"

The number of key groups in the list.

" + }, + "Items":{ + "shape":"KGKeyPairIdsList", + "documentation":"

A list of key groups, including the identifiers of the public keys in each key group that CloudFront can use to verify the signatures of signed URLs and signed cookies.

" + } + }, + "documentation":"

A list of key groups, and the public keys in each key group, that CloudFront can use to verify the signatures of signed URLs and signed cookies.

" + }, "ActiveTrustedSigners":{ "type":"structure", "required":[ @@ -1300,18 +1444,18 @@ "members":{ "Enabled":{ "shape":"boolean", - "documentation":"

Enabled is true if any of the AWS accounts listed in the TrustedSigners complex type for this distribution have active CloudFront key pairs. If not, Enabled is false.

" + "documentation":"

This field is true if any of the AWS accounts in the list have active CloudFront key pairs that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

" }, "Quantity":{ "shape":"integer", - "documentation":"

The number of trusted signers specified in the TrustedSigners complex type.

" + "documentation":"

The number of AWS accounts in the list.

" }, "Items":{ "shape":"SignerList", - "documentation":"

A complex type that contains one Signer complex type for each trusted signer that is specified in the TrustedSigners complex type.

" + "documentation":"

A list of AWS accounts and the identifiers of active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs and signed cookies.

" } }, - "documentation":"

A complex type that lists the AWS accounts, if any, that you included in the TrustedSigners complex type for this distribution. These are the accounts that you want to allow to create signed URLs for private content.

The Signer complex type lists the AWS account number of the trusted signer or self if the signer is the AWS account that created the distribution. The Signer element also includes the IDs of any active CloudFront key pairs that are associated with the trusted signer's AWS account. If no KeyPairId element appears for a Signer, that signer can't create signed URLs.

For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

" + "documentation":"

A list of AWS accounts and the active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs and signed cookies.

" }, "AliasICPRecordal":{ "type":"structure", @@ -1405,7 +1549,6 @@ "required":[ "PathPattern", "TargetOriginId", - "TrustedSigners", "ViewerProtocolPolicy" ], "members":{ @@ -1419,7 +1562,11 @@ }, "TrustedSigners":{ "shape":"TrustedSigners", - "documentation":"

A complex type that specifies the AWS accounts, if any, that you want to allow to create signed URLs for private content.

If you want to require signed URLs in requests for objects in the target origin that match the PathPattern for this cache behavior, specify true for Enabled, and specify the applicable values for Quantity and Items. For more information, see Serving Private Content with Signed URLs and Signed Cookies in the Amazon CloudFront Developer Guide.

If you don’t want to require signed URLs in requests for objects that match PathPattern, specify false for Enabled and 0 for Quantity. Omit Items.

To add, change, or remove one or more trusted signers, change Enabled to true (if it’s currently false), change Quantity as applicable, and specify all of the trusted signers that you want to include in the updated distribution.

" + "documentation":"

We recommend using TrustedKeyGroups instead of TrustedSigners.

A list of AWS account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in the trusted signer’s AWS account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

" + }, + "TrustedKeyGroups":{ + "shape":"TrustedKeyGroups", + "documentation":"

A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

" }, "ViewerProtocolPolicy":{ "shape":"ViewerProtocolPolicy", @@ -2211,6 +2358,41 @@ "documentation":"

The returned result of the corresponding request.

", "payload":"Invalidation" }, + "CreateKeyGroupRequest":{ + "type":"structure", + "required":["KeyGroupConfig"], + "members":{ + "KeyGroupConfig":{ + "shape":"KeyGroupConfig", + "documentation":"

A key group configuration.

", + "locationName":"KeyGroupConfig", + "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2020-05-31/"} + } + }, + "payload":"KeyGroupConfig" + }, + "CreateKeyGroupResult":{ + "type":"structure", + "members":{ + "KeyGroup":{ + "shape":"KeyGroup", + "documentation":"

The key group that was just created.

" + }, + "Location":{ + "shape":"string", + "documentation":"

The URL of the key group.

", + "location":"header", + "locationName":"Location" + }, + "ETag":{ + "shape":"string", + "documentation":"

The identifier for this version of the key group.

", + "location":"header", + "locationName":"ETag" + } + }, + "payload":"KeyGroup" + }, "CreateMonitoringSubscriptionRequest":{ "type":"structure", "required":[ @@ -2284,7 +2466,7 @@ "members":{ "PublicKeyConfig":{ "shape":"PublicKeyConfig", - "documentation":"

The request to add a public key to CloudFront.

", + "documentation":"

A CloudFront public key configuration.

", "locationName":"PublicKeyConfig", "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2020-05-31/"} } @@ -2296,17 +2478,17 @@ "members":{ "PublicKey":{ "shape":"PublicKey", - "documentation":"

Returned when you add a public key.

" + "documentation":"

The public key.

" }, "Location":{ "shape":"string", - "documentation":"

The fully qualified URI of the new public key resource just created.

", + "documentation":"

The URL of the public key.

", "location":"header", "locationName":"Location" }, "ETag":{ "shape":"string", - "documentation":"

The current version of the public key. For example: E2QWRUHAPOMQZL.

", + "documentation":"

The identifier for this version of the public key.

", "location":"header", "locationName":"ETag" } @@ -2522,7 +2704,6 @@ "type":"structure", "required":[ "TargetOriginId", - "TrustedSigners", "ViewerProtocolPolicy" ], "members":{ @@ -2532,7 +2713,11 @@ }, "TrustedSigners":{ "shape":"TrustedSigners", - "documentation":"

A complex type that specifies the AWS accounts, if any, that you want to allow to create signed URLs for private content.

If you want to require signed URLs in requests for objects in the target origin that match the PathPattern for this cache behavior, specify true for Enabled, and specify the applicable values for Quantity and Items. For more information, see Serving Private Content with Signed URLs and Signed Cookies in the Amazon CloudFront Developer Guide.

If you don’t want to require signed URLs in requests for objects that match PathPattern, specify false for Enabled and 0 for Quantity. Omit Items.

To add, change, or remove one or more trusted signers, change Enabled to true (if it’s currently false), change Quantity as applicable, and specify all of the trusted signers that you want to include in the updated distribution.

" + "documentation":"

We recommend using TrustedKeyGroups instead of TrustedSigners.

A list of AWS account IDs whose public keys CloudFront can use to validate signed URLs or signed cookies.

When a cache behavior contains trusted signers, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with the private key of a CloudFront key pair in a trusted signer’s AWS account. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

" + }, + "TrustedKeyGroups":{ + "shape":"TrustedKeyGroups", + "documentation":"

A list of key groups that CloudFront can use to validate signed URLs or signed cookies.

When a cache behavior contains trusted key groups, CloudFront requires signed URLs or signed cookies for all requests that match the cache behavior. The URLs or cookies must be signed with a private key whose corresponding public key is in the key group. The signed URL or cookie contains information about which public key CloudFront should use to verify the signature. For more information, see Serving private content in the Amazon CloudFront Developer Guide.

" }, "ViewerProtocolPolicy":{ "shape":"ViewerProtocolPolicy", @@ -2682,6 +2867,24 @@ } } }, + "DeleteKeyGroupRequest":{ + "type":"structure", + "required":["Id"], + "members":{ + "Id":{ + "shape":"string", + "documentation":"

The identifier of the key group that you are deleting. To get the identifier, use ListKeyGroups.

", + "location":"uri", + "locationName":"Id" + }, + "IfMatch":{ + "shape":"string", + "documentation":"

The version of the key group that you are deleting. The version is the key group’s ETag value. To get the ETag, use GetKeyGroup or GetKeyGroupConfig.

", + "location":"header", + "locationName":"If-Match" + } + } + }, "DeleteMonitoringSubscriptionRequest":{ "type":"structure", "required":["DistributionId"], @@ -2776,7 +2979,6 @@ "LastModifiedTime", "InProgressInvalidationBatches", "DomainName", - "ActiveTrustedSigners", "DistributionConfig" ], "members":{ @@ -2806,7 +3008,11 @@ }, "ActiveTrustedSigners":{ "shape":"ActiveTrustedSigners", - "documentation":"

CloudFront automatically adds this element to the response only if you've set up the distribution to serve private content with signed URLs. The element lists the key pair IDs that CloudFront is aware of for each trusted signer. The Signer child element lists the AWS account number of the trusted signer (or an empty Self element if the signer is you). The Signer element also includes the IDs of any active key pairs associated with the trusted signer's AWS account. If no KeyPairId element appears for a Signer, that signer can't create working signed URLs.

" + "documentation":"

We recommend using TrustedKeyGroups instead of TrustedSigners.

CloudFront automatically adds this field to the response if you’ve configured a cache behavior in this distribution to serve private content using trusted signers. This field contains a list of AWS account IDs and the active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs or signed cookies.

" + }, + "ActiveTrustedKeyGroups":{ + "shape":"ActiveTrustedKeyGroups", + "documentation":"

CloudFront automatically adds this field to the response if you’ve configured a cache behavior in this distribution to serve private content using key groups. This field contains a list of key groups and the public keys in each key group that CloudFront can use to verify the signatures of signed URLs or signed cookies.

" }, "DistributionConfig":{ "shape":"DistributionConfig", @@ -3880,6 +4086,62 @@ "documentation":"

The returned result of the corresponding request.

", "payload":"Invalidation" }, + "GetKeyGroupConfigRequest":{ + "type":"structure", + "required":["Id"], + "members":{ + "Id":{ + "shape":"string", + "documentation":"

The identifier of the key group whose configuration you are getting. To get the identifier, use ListKeyGroups.

", + "location":"uri", + "locationName":"Id" + } + } + }, + "GetKeyGroupConfigResult":{ + "type":"structure", + "members":{ + "KeyGroupConfig":{ + "shape":"KeyGroupConfig", + "documentation":"

The key group configuration.

" + }, + "ETag":{ + "shape":"string", + "documentation":"

The identifier for this version of the key group.

", + "location":"header", + "locationName":"ETag" + } + }, + "payload":"KeyGroupConfig" + }, + "GetKeyGroupRequest":{ + "type":"structure", + "required":["Id"], + "members":{ + "Id":{ + "shape":"string", + "documentation":"

The identifier of the key group that you are getting. To get the identifier, use ListKeyGroups.

", + "location":"uri", + "locationName":"Id" + } + } + }, + "GetKeyGroupResult":{ + "type":"structure", + "members":{ + "KeyGroup":{ + "shape":"KeyGroup", + "documentation":"

The key group.

" + }, + "ETag":{ + "shape":"string", + "documentation":"

The identifier for this version of the key group.

", + "location":"header", + "locationName":"ETag" + } + }, + "payload":"KeyGroup" + }, "GetMonitoringSubscriptionRequest":{ "type":"structure", "required":["DistributionId"], @@ -3964,7 +4226,7 @@ "members":{ "Id":{ "shape":"string", - "documentation":"

Request the ID for the public key configuration.

", + "documentation":"

The identifier of the public key whose configuration you are getting.

", "location":"uri", "locationName":"Id" } @@ -3975,11 +4237,11 @@ "members":{ "PublicKeyConfig":{ "shape":"PublicKeyConfig", - "documentation":"

Return the result for the public key configuration.

" + "documentation":"

A public key configuration.

" }, "ETag":{ "shape":"string", - "documentation":"

The current version of the public key configuration. For example: E2QWRUHAPOMQZL.

", + "documentation":"

The identifier for this version of the public key configuration.

", "location":"header", "locationName":"ETag" } @@ -3992,7 +4254,7 @@ "members":{ "Id":{ "shape":"string", - "documentation":"

Request the ID for the public key.

", + "documentation":"

The identifier of the public key you are getting.

", "location":"uri", "locationName":"Id" } @@ -4003,11 +4265,11 @@ "members":{ "PublicKey":{ "shape":"PublicKey", - "documentation":"

Return the public key.

" + "documentation":"

The public key.

" }, "ETag":{ "shape":"string", - "documentation":"

The current version of the public key. For example: E2QWRUHAPOMQZL.

", + "documentation":"

The identifier for this version of the public key.

", "location":"header", "locationName":"ETag" } @@ -4496,6 +4758,122 @@ "all" ] }, + "KGKeyPairIds":{ + "type":"structure", + "members":{ + "KeyGroupId":{ + "shape":"string", + "documentation":"

The identifier of the key group that contains the public keys.

" + }, + "KeyPairIds":{"shape":"KeyPairIds"} + }, + "documentation":"

A list of identifiers for the public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies.

" + }, + "KGKeyPairIdsList":{ + "type":"list", + "member":{ + "shape":"KGKeyPairIds", + "locationName":"KeyGroup" + } + }, + "KeyGroup":{ + "type":"structure", + "required":[ + "Id", + "LastModifiedTime", + "KeyGroupConfig" + ], + "members":{ + "Id":{ + "shape":"string", + "documentation":"

The identifier for the key group.

" + }, + "LastModifiedTime":{ + "shape":"timestamp", + "documentation":"

The date and time when the key group was last modified.

" + }, + "KeyGroupConfig":{ + "shape":"KeyGroupConfig", + "documentation":"

The key group configuration.

" + } + }, + "documentation":"

A key group.

A key group contains a list of public keys that you can use with CloudFront signed URLs and signed cookies.

" + }, + "KeyGroupAlreadyExists":{ + "type":"structure", + "members":{ + "Message":{"shape":"string"} + }, + "documentation":"

A key group with this name already exists. You must provide a unique name. To modify an existing key group, use UpdateKeyGroup.

", + "error":{"httpStatusCode":409}, + "exception":true + }, + "KeyGroupConfig":{ + "type":"structure", + "required":[ + "Name", + "Items" + ], + "members":{ + "Name":{ + "shape":"string", + "documentation":"

A name to identify the key group.

" + }, + "Items":{ + "shape":"PublicKeyIdList", + "documentation":"

A list of the identifiers of the public keys in the key group.

" + }, + "Comment":{ + "shape":"string", + "documentation":"

A comment to describe the key group.

" + } + }, + "documentation":"

A key group configuration.

A key group contains a list of public keys that you can use with CloudFront signed URLs and signed cookies.

" + }, + "KeyGroupList":{ + "type":"structure", + "required":[ + "MaxItems", + "Quantity" + ], + "members":{ + "NextMarker":{ + "shape":"string", + "documentation":"

If there are more items in the list than are in this response, this element is present. It contains the value that you should use in the Marker field of a subsequent request to continue listing key groups.

" + }, + "MaxItems":{ + "shape":"integer", + "documentation":"

The maximum number of key groups requested.

" + }, + "Quantity":{ + "shape":"integer", + "documentation":"

The number of key groups returned in the response.

" + }, + "Items":{ + "shape":"KeyGroupSummaryList", + "documentation":"

A list of key groups.

" + } + }, + "documentation":"

A list of key groups.

" + }, + "KeyGroupSummary":{ + "type":"structure", + "required":["KeyGroup"], + "members":{ + "KeyGroup":{ + "shape":"KeyGroup", + "documentation":"

A key group.

" + } + }, + "documentation":"

Contains information about a key group.

" + }, + "KeyGroupSummaryList":{ + "type":"list", + "member":{ + "shape":"KeyGroupSummary", + "locationName":"KeyGroupSummary" + } + }, "KeyPairIdList":{ "type":"list", "member":{ @@ -4509,14 +4887,14 @@ "members":{ "Quantity":{ "shape":"integer", - "documentation":"

The number of active CloudFront key pairs for AwsAccountNumber.

For more information, see ActiveTrustedSigners.

" + "documentation":"

The number of key pair identifiers in the list.

" }, "Items":{ "shape":"KeyPairIdList", - "documentation":"

A complex type that lists the active CloudFront key pairs, if any, that are associated with AwsAccountNumber.

For more information, see ActiveTrustedSigners.

" + "documentation":"

A list of CloudFront key pair identifiers.

" } }, - "documentation":"

A complex type that lists the active CloudFront key pairs, if any, that are associated with AwsAccountNumber.

For more information, see ActiveTrustedSigners.

" + "documentation":"

A list of CloudFront key pair identifiers.

" }, "KinesisStreamConfig":{ "type":"structure", @@ -4677,6 +5055,37 @@ }, "payload":"DistributionIdList" }, + "ListDistributionsByKeyGroupRequest":{ + "type":"structure", + "required":["KeyGroupId"], + "members":{ + "Marker":{ + "shape":"string", + "documentation":"

Use this field when paginating results to indicate where to begin in your list of distribution IDs. The response includes distribution IDs in the list that occur after the marker. To get the next page of the list, set this field’s value to the value of NextMarker from the current page’s response.

", + "location":"querystring", + "locationName":"Marker" + }, + "MaxItems":{ + "shape":"string", + "documentation":"

The maximum number of distribution IDs that you want in the response.

", + "location":"querystring", + "locationName":"MaxItems" + }, + "KeyGroupId":{ + "shape":"string", + "documentation":"

The ID of the key group whose associated distribution IDs you are listing.

", + "location":"uri", + "locationName":"KeyGroupId" + } + } + }, + "ListDistributionsByKeyGroupResult":{ + "type":"structure", + "members":{ + "DistributionIdList":{"shape":"DistributionIdList"} + }, + "payload":"DistributionIdList" + }, "ListDistributionsByOriginRequestPolicyIdRequest":{ "type":"structure", "required":["OriginRequestPolicyId"], @@ -4894,6 +5303,33 @@ "documentation":"

The returned result of the corresponding request.

", "payload":"InvalidationList" }, + "ListKeyGroupsRequest":{ + "type":"structure", + "members":{ + "Marker":{ + "shape":"string", + "documentation":"

Use this field when paginating results to indicate where to begin in your list of key groups. The response includes key groups in the list that occur after the marker. To get the next page of the list, set this field’s value to the value of NextMarker from the current page’s response.

", + "location":"querystring", + "locationName":"Marker" + }, + "MaxItems":{ + "shape":"string", + "documentation":"

The maximum number of key groups that you want in the response.

", + "location":"querystring", + "locationName":"MaxItems" + } + } + }, + "ListKeyGroupsResult":{ + "type":"structure", + "members":{ + "KeyGroupList":{ + "shape":"KeyGroupList", + "documentation":"

A list of key groups.

" + } + }, + "payload":"KeyGroupList" + }, "ListOriginRequestPoliciesRequest":{ "type":"structure", "members":{ @@ -5743,18 +6179,18 @@ "members":{ "Id":{ "shape":"string", - "documentation":"

A unique ID assigned to a public key you've added to CloudFront.

" + "documentation":"

The identifier of the public key.

" }, "CreatedTime":{ "shape":"timestamp", - "documentation":"

A time you added a public key to CloudFront.

" + "documentation":"

The date and time when the public key was uploaded.

" }, "PublicKeyConfig":{ "shape":"PublicKeyConfig", - "documentation":"

A complex data type for a public key you add to CloudFront to use with features like field-level encryption.

" + "documentation":"

Configuration information about a public key that you can use with signed URLs and signed cookies, or with field-level encryption.

" } }, - "documentation":"

A complex data type of public keys you add to CloudFront to use with features like field-level encryption.

" + "documentation":"

A public key that you can use with signed URLs and signed cookies, or with field-level encryption.

" }, "PublicKeyAlreadyExists":{ "type":"structure", @@ -5775,22 +6211,29 @@ "members":{ "CallerReference":{ "shape":"string", - "documentation":"

A unique number that ensures that the request can't be replayed.

" + "documentation":"

A string included in the request to help make sure that the request can’t be replayed.

" }, "Name":{ "shape":"string", - "documentation":"

The name for a public key you add to CloudFront to use with features like field-level encryption.

" + "documentation":"

A name to help identify the public key.

" }, "EncodedKey":{ "shape":"string", - "documentation":"

The encoded public key that you want to add to CloudFront to use with features like field-level encryption.

" + "documentation":"

The public key that you can use with signed URLs and signed cookies, or with field-level encryption.

" }, "Comment":{ "shape":"string", - "documentation":"

An optional comment about a public key.

" + "documentation":"

A comment to describe the public key.

" } }, - "documentation":"

Information about a public key you add to CloudFront to use with features like field-level encryption.

" + "documentation":"

Configuration information about a public key that you can use with signed URLs and signed cookies, or with field-level encryption.

" + }, + "PublicKeyIdList":{ + "type":"list", + "member":{ + "shape":"string", + "locationName":"PublicKey" + } }, "PublicKeyInUse":{ "type":"structure", @@ -5814,18 +6257,18 @@ }, "MaxItems":{ "shape":"integer", - "documentation":"

The maximum number of public keys you want in the response body.

" + "documentation":"

The maximum number of public keys you want in the response.

" }, "Quantity":{ "shape":"integer", - "documentation":"

The number of public keys you added to CloudFront to use with features like field-level encryption.

" + "documentation":"

The number of public keys in the list.

" }, "Items":{ "shape":"PublicKeySummaryList", - "documentation":"

An array of information about a public key you add to CloudFront to use with features like field-level encryption.

" + "documentation":"

A list of public keys.

" } }, - "documentation":"

A list of public keys you've added to CloudFront to use with features like field-level encryption.

" + "documentation":"

A list of public keys that you can use with signed URLs and signed cookies, or with field-level encryption.

" }, "PublicKeySummary":{ "type":"structure", @@ -5838,26 +6281,26 @@ "members":{ "Id":{ "shape":"string", - "documentation":"

ID for public key information summary.

" + "documentation":"

The identifier of the public key.

" }, "Name":{ "shape":"string", - "documentation":"

Name for public key information summary.

" + "documentation":"

A name to help identify the public key.

" }, "CreatedTime":{ "shape":"timestamp", - "documentation":"

Creation time for public key information summary.

" + "documentation":"

The date and time when the public key was uploaded.

" }, "EncodedKey":{ "shape":"string", - "documentation":"

Encoded key for public key information summary.

" + "documentation":"

The public key.

" }, "Comment":{ "shape":"string", - "documentation":"

Comment for public key information summary.

" + "documentation":"

A comment to describe the public key.

" } }, - "documentation":"

A complex data type for public key information.

" + "documentation":"

Contains information about a public key.

" }, "PublicKeySummaryList":{ "type":"list", @@ -6082,6 +6525,15 @@ "type":"string", "pattern":"arn:aws(-cn)?:cloudfront::[0-9]+:.*" }, + "ResourceInUse":{ + "type":"structure", + "members":{ + "Message":{"shape":"string"} + }, + "documentation":"

Cannot delete this resource because it is in use.

", + "error":{"httpStatusCode":409}, + "exception":true + }, "Restrictions":{ "type":"structure", "required":["GeoRestriction"], @@ -6135,14 +6587,14 @@ "members":{ "AwsAccountNumber":{ "shape":"string", - "documentation":"

An AWS account that is included in the TrustedSigners complex type for this distribution. Valid values include:

  • self, which is the AWS account used to create the distribution.

  • An AWS account number.

" + "documentation":"

An AWS account number that contains active CloudFront key pairs that CloudFront can use to verify the signatures of signed URLs and signed cookies. If the AWS account that owns the key pairs is the same account that owns the CloudFront distribution, the value of this field is self.

" }, "KeyPairIds":{ "shape":"KeyPairIds", - "documentation":"

A complex type that lists the active CloudFront key pairs, if any, that are associated with AwsAccountNumber.

" + "documentation":"

A list of CloudFront key pair identifiers.

" } }, - "documentation":"

A complex type that lists the AWS accounts that were included in the TrustedSigners complex type, as well as their active CloudFront key pair IDs, if any.

" + "documentation":"

A list of AWS accounts and the active CloudFront key pairs in each account that CloudFront can use to verify the signatures of signed URLs and signed cookies.

" }, "SignerList":{ "type":"list", @@ -6630,6 +7082,15 @@ "error":{"httpStatusCode":400}, "exception":true }, + "TooManyDistributionsAssociatedToKeyGroup":{ + "type":"structure", + "members":{ + "Message":{"shape":"string"} + }, + "documentation":"

The number of distributions that reference this key group is more than the maximum allowed. For more information, see Quotas (formerly known as limits) in the Amazon CloudFront Developer Guide.

", + "error":{"httpStatusCode":400}, + "exception":true + }, "TooManyDistributionsAssociatedToOriginRequestPolicy":{ "type":"structure", "members":{ @@ -6747,6 +7208,24 @@ "error":{"httpStatusCode":400}, "exception":true }, + "TooManyKeyGroups":{ + "type":"structure", + "members":{ + "Message":{"shape":"string"} + }, + "documentation":"

You have reached the maximum number of key groups for this AWS account. For more information, see Quotas (formerly known as limits) in the Amazon CloudFront Developer Guide.

", + "error":{"httpStatusCode":400}, + "exception":true + }, + "TooManyKeyGroupsAssociatedToDistribution":{ + "type":"structure", + "members":{ + "Message":{"shape":"string"} + }, + "documentation":"

The number of key groups referenced by this distribution is more than the maximum allowed. For more information, see Quotas (formerly known as limits) in the Amazon CloudFront Developer Guide.

", + "error":{"httpStatusCode":400}, + "exception":true + }, "TooManyLambdaFunctionAssociations":{ "type":"structure", "members":{ @@ -6801,6 +7280,15 @@ "error":{"httpStatusCode":400}, "exception":true }, + "TooManyPublicKeysInKeyGroup":{ + "type":"structure", + "members":{ + "Message":{"shape":"string"} + }, + "documentation":"

The number of public keys in this key group is more than the maximum allowed. For more information, see Quotas (formerly known as limits) in the Amazon CloudFront Developer Guide.

", + "error":{"httpStatusCode":400}, + "exception":true + }, "TooManyQueryStringParameters":{ "type":"structure", "members":{ @@ -6864,6 +7352,44 @@ "error":{"httpStatusCode":400}, "exception":true }, + "TrustedKeyGroupDoesNotExist":{ + "type":"structure", + "members":{ + "Message":{"shape":"string"} + }, + "documentation":"

The specified key group does not exist.

", + "error":{"httpStatusCode":400}, + "exception":true + }, + "TrustedKeyGroupIdList":{ + "type":"list", + "member":{ + "shape":"string", + "locationName":"KeyGroup" + } + }, + "TrustedKeyGroups":{ + "type":"structure", + "required":[ + "Enabled", + "Quantity" + ], + "members":{ + "Enabled":{ + "shape":"boolean", + "documentation":"

This field is true if any of the key groups in the list have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

" + }, + "Quantity":{ + "shape":"integer", + "documentation":"

The number of key groups in the list.

" + }, + "Items":{ + "shape":"TrustedKeyGroupIdList", + "documentation":"

A list of key groups identifiers.

" + } + }, + "documentation":"

A list of key groups whose public keys CloudFront can use to verify the signatures of signed URLs and signed cookies.

" + }, "TrustedSignerDoesNotExist":{ "type":"structure", "members":{ @@ -6882,18 +7408,18 @@ "members":{ "Enabled":{ "shape":"boolean", - "documentation":"

Specifies whether you want to require viewers to use signed URLs to access the files specified by PathPattern and TargetOriginId.

" + "documentation":"

This field is true if any of the AWS accounts have public keys that CloudFront can use to verify the signatures of signed URLs and signed cookies. If not, this field is false.

" }, "Quantity":{ "shape":"integer", - "documentation":"

The number of trusted signers for this cache behavior.

" + "documentation":"

The number of AWS accounts in the list.

" }, "Items":{ "shape":"AwsAccountNumberList", - "documentation":"

Optional: A complex type that contains trusted signers for this cache behavior. If Quantity is 0, you can omit Items.

" + "documentation":"

A list of AWS account identifiers.

" } }, - "documentation":"

A complex type that specifies the AWS accounts, if any, that you want to allow to create signed URLs for private content.

If you want to require signed URLs in requests for objects in the target origin that match the PathPattern for this cache behavior, specify true for Enabled, and specify the applicable values for Quantity and Items. For more information, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.

If you don't want to require signed URLs in requests for objects that match PathPattern, specify false for Enabled and 0 for Quantity. Omit Items.

To add, change, or remove one or more trusted signers, change Enabled to true (if it's currently false), change Quantity as applicable, and specify all of the trusted signers that you want to include in the updated distribution.

For more information about updating the distribution configuration, see DistributionConfig in the Amazon CloudFront API Reference.

" + "documentation":"

A list of AWS accounts whose public keys CloudFront can use to verify the signatures of signed URLs and signed cookies.

" }, "UntagResourceRequest":{ "type":"structure", @@ -7142,6 +7668,50 @@ }, "payload":"FieldLevelEncryptionProfile" }, + "UpdateKeyGroupRequest":{ + "type":"structure", + "required":[ + "KeyGroupConfig", + "Id" + ], + "members":{ + "KeyGroupConfig":{ + "shape":"KeyGroupConfig", + "documentation":"

The key group configuration.

", + "locationName":"KeyGroupConfig", + "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2020-05-31/"} + }, + "Id":{ + "shape":"string", + "documentation":"

The identifier of the key group that you are updating.

", + "location":"uri", + "locationName":"Id" + }, + "IfMatch":{ + "shape":"string", + "documentation":"

The version of the key group that you are updating. The version is the key group’s ETag value.

", + "location":"header", + "locationName":"If-Match" + } + }, + "payload":"KeyGroupConfig" + }, + "UpdateKeyGroupResult":{ + "type":"structure", + "members":{ + "KeyGroup":{ + "shape":"KeyGroup", + "documentation":"

The key group that was just updated.

" + }, + "ETag":{ + "shape":"string", + "documentation":"

The identifier for this version of the key group.

", + "location":"header", + "locationName":"ETag" + } + }, + "payload":"KeyGroup" + }, "UpdateOriginRequestPolicyRequest":{ "type":"structure", "required":[ @@ -7195,13 +7765,13 @@ "members":{ "PublicKeyConfig":{ "shape":"PublicKeyConfig", - "documentation":"

Request to update public key information.

", + "documentation":"

A public key configuration.

", "locationName":"PublicKeyConfig", "xmlNamespace":{"uri":"http://cloudfront.amazonaws.com/doc/2020-05-31/"} }, "Id":{ "shape":"string", - "documentation":"

ID of the public key to be updated.

", + "documentation":"

The identifier of the public key that you are updating.

", "location":"uri", "locationName":"Id" }, @@ -7219,11 +7789,11 @@ "members":{ "PublicKey":{ "shape":"PublicKey", - "documentation":"

Return the results of updating the public key.

" + "documentation":"

The public key.

" }, "ETag":{ "shape":"string", - "documentation":"

The current version of the update public key result. For example: E2QWRUHAPOMQZL.

", + "documentation":"

The identifier of the current version of the public key.

", "location":"header", "locationName":"ETag" } From 0860684e3d9297e9f6d6495516febd24e012cd67 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 21 Oct 2020 19:33:57 +0000 Subject: [PATCH 050/339] Amazon Elastic Compute Cloud Update: instance-storage-info nvmeSupport added to DescribeInstanceTypes API --- ...ure-AmazonElasticComputeCloud-191c354.json | 5 +++ .../codegen-resources/service-2.json | 43 ++++++++++++------- 2 files changed, 33 insertions(+), 15 deletions(-) create mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-191c354.json diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-191c354.json b/.changes/next-release/feature-AmazonElasticComputeCloud-191c354.json new file mode 100644 index 000000000000..354166c9a823 --- /dev/null +++ b/.changes/next-release/feature-AmazonElasticComputeCloud-191c354.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "description": "instance-storage-info nvmeSupport added to DescribeInstanceTypes API" +} diff --git a/services/ec2/src/main/resources/codegen-resources/service-2.json b/services/ec2/src/main/resources/codegen-resources/service-2.json index 812425860223..4290d00a7fa8 100755 --- a/services/ec2/src/main/resources/codegen-resources/service-2.json +++ b/services/ec2/src/main/resources/codegen-resources/service-2.json @@ -3692,7 +3692,7 @@ "requestUri":"/" }, "input":{"shape":"RebootInstancesRequest"}, - "documentation":"

Requests a reboot of the specified instances. This operation is asynchronous; it only queues a request to reboot the specified instances. The operation succeeds if the instances are valid and belong to you. Requests to reboot terminated instances are ignored.

If an instance does not cleanly shut down within four minutes, Amazon EC2 performs a hard reboot.

For more information about troubleshooting, see Getting console output and rebooting instances in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

Requests a reboot of the specified instances. This operation is asynchronous; it only queues a request to reboot the specified instances. The operation succeeds if the instances are valid and belong to you. Requests to reboot terminated instances are ignored.

If an instance does not cleanly shut down within a few minutes, Amazon EC2 performs a hard reboot.

For more information about troubleshooting, see Getting console output and rebooting instances in the Amazon Elastic Compute Cloud User Guide.

" }, "RegisterImage":{ "name":"RegisterImage", @@ -9371,7 +9371,7 @@ "members":{ "Bucket":{ "shape":"String", - "documentation":"

The Amazon S3 bucket in which to store the Spot Instance data feed.

", + "documentation":"

The name of the Amazon S3 bucket in which to store the Spot Instance data feed. For more information about bucket names, see Rules for bucket naming in the Amazon S3 Developer Guide.

", "locationName":"bucket" }, "DryRun":{ @@ -9381,7 +9381,7 @@ }, "Prefix":{ "shape":"String", - "documentation":"

A prefix for the data feed file names.

", + "documentation":"

The prefix for the data feed file names.

", "locationName":"prefix" } }, @@ -13934,7 +13934,7 @@ }, "Filters":{ "shape":"FilterList", - "documentation":"

One or more filters. Filter names and values are case-sensitive.

  • auto-recovery-supported - Indicates whether auto recovery is supported. (true | false)

  • bare-metal - Indicates whether it is a bare metal instance type. (true | false)

  • burstable-performance-supported - Indicates whether it is a burstable performance instance type. (true | false)

  • current-generation - Indicates whether this instance type is the latest generation instance type of an instance family. (true | false)

  • ebs-info.ebs-optimized-info.baseline-bandwidth-in-mbps - The baseline bandwidth performance for an EBS-optimized instance type, in Mbps.

  • ebs-info.ebs-optimized-info.baseline-throughput-in-mbps - The baseline throughput performance for an EBS-optimized instance type, in MBps.

  • ebs-info.ebs-optimized-info.baseline-iops - The baseline input/output storage operations per second for an EBS-optimized instance type.

  • ebs-info.ebs-optimized-info.maximum-bandwidth-in-mbps - The maximum bandwidth performance for an EBS-optimized instance type, in Mbps.

  • ebs-info.ebs-optimized-info.maximum-throughput-in-mbps - The maximum throughput performance for an EBS-optimized instance type, in MBps.

  • ebs-info.ebs-optimized-info.maximum-iops - The maximum input/output storage operations per second for an EBS-optimized instance type.

  • ebs-info.ebs-optimized-support - Indicates whether the instance type is EBS-optimized. (supported | unsupported | default)

  • ebs-info.encryption-support - Indicates whether EBS encryption is supported. (supported | unsupported)

  • ebs-info.nvme-support - Indicates whether non-volatile memory express (NVMe) is supported or required. (required | supported | unsupported)

  • free-tier-eligible - Indicates whether the instance type is eligible to use in the free tier. (true | false)

  • hibernation-supported - Indicates whether On-Demand hibernation is supported. (true | false)

  • hypervisor - The hypervisor used. (nitro | xen)

  • instance-storage-info.disk.count - The number of local disks.

  • instance-storage-info.disk.size-in-gb - The storage size of each instance storage disk, in GB.

  • instance-storage-info.disk.type - The storage technology for the local instance storage disks. (hdd | ssd)

  • instance-storage-info.total-size-in-gb - The total amount of storage available from all local instance storage, in GB.

  • instance-storage-supported - Indicates whether the instance type has local instance storage. (true | false)

  • memory-info.size-in-mib - The memory size.

  • network-info.ena-support - Indicates whether Elastic Network Adapter (ENA) is supported or required. (required | supported | unsupported)

  • network-info.efa-supported - Indicates whether the instance type supports Elastic Fabric Adapter (EFA). (true | false)

  • network-info.ipv4-addresses-per-interface - The maximum number of private IPv4 addresses per network interface.

  • network-info.ipv6-addresses-per-interface - The maximum number of private IPv6 addresses per network interface.

  • network-info.ipv6-supported - Indicates whether the instance type supports IPv6. (true | false)

  • network-info.maximum-network-interfaces - The maximum number of network interfaces per instance.

  • network-info.network-performance - Describes the network performance.

  • processor-info.sustained-clock-speed-in-ghz - The CPU clock speed, in GHz.

  • vcpu-info.default-cores - The default number of cores for the instance type.

  • vcpu-info.default-threads-per-core - The default number of threads per core for the instance type.

  • vcpu-info.default-vcpus - The default number of vCPUs for the instance type.

", + "documentation":"

One or more filters. Filter names and values are case-sensitive.

  • auto-recovery-supported - Indicates whether auto recovery is supported. (true | false)

  • bare-metal - Indicates whether it is a bare metal instance type. (true | false)

  • burstable-performance-supported - Indicates whether it is a burstable performance instance type. (true | false)

  • current-generation - Indicates whether this instance type is the latest generation instance type of an instance family. (true | false)

  • ebs-info.ebs-optimized-info.baseline-bandwidth-in-mbps - The baseline bandwidth performance for an EBS-optimized instance type, in Mbps.

  • ebs-info.ebs-optimized-info.baseline-iops - The baseline input/output storage operations per second for an EBS-optimized instance type.

  • ebs-info.ebs-optimized-info.baseline-throughput-in-mbps - The baseline throughput performance for an EBS-optimized instance type, in MBps.

  • ebs-info.ebs-optimized-info.maximum-bandwidth-in-mbps - The maximum bandwidth performance for an EBS-optimized instance type, in Mbps.

  • ebs-info.ebs-optimized-info.maximum-iops - The maximum input/output storage operations per second for an EBS-optimized instance type.

  • ebs-info.ebs-optimized-info.maximum-throughput-in-mbps - The maximum throughput performance for an EBS-optimized instance type, in MBps.

  • ebs-info.ebs-optimized-support - Indicates whether the instance type is EBS-optimized. (supported | unsupported | default)

  • ebs-info.encryption-support - Indicates whether EBS encryption is supported. (supported | unsupported)

  • ebs-info.nvme-support - Indicates whether non-volatile memory express (NVMe) is supported for EBS volumes. (required | supported | unsupported)

  • free-tier-eligible - Indicates whether the instance type is eligible to use in the free tier. (true | false)

  • hibernation-supported - Indicates whether On-Demand hibernation is supported. (true | false)

  • hypervisor - The hypervisor. (nitro | xen)

  • instance-storage-info.disk.count - The number of local disks.

  • instance-storage-info.disk.size-in-gb - The storage size of each instance storage disk, in GB.

  • instance-storage-info.disk.type - The storage technology for the local instance storage disks. (hdd | ssd)

  • instance-storage-info.nvme-support - Indicates whether non-volatile memory express (NVMe) is supported for instance store. (required | supported) | unsupported)

  • instance-storage-info.total-size-in-gb - The total amount of storage available from all local instance storage, in GB.

  • instance-storage-supported - Indicates whether the instance type has local instance storage. (true | false)

  • instance-type - The instance type (for example c5.2xlarge or c5*).

  • memory-info.size-in-mib - The memory size.

  • network-info.efa-supported - Indicates whether the instance type supports Elastic Fabric Adapter (EFA). (true | false)

  • network-info.ena-support - Indicates whether Elastic Network Adapter (ENA) is supported or required. (required | supported | unsupported)

  • network-info.ipv4-addresses-per-interface - The maximum number of private IPv4 addresses per network interface.

  • network-info.ipv6-addresses-per-interface - The maximum number of private IPv6 addresses per network interface.

  • network-info.ipv6-supported - Indicates whether the instance type supports IPv6. (true | false)

  • network-info.maximum-network-interfaces - The maximum number of network interfaces per instance.

  • network-info.network-performance - The network performance (for example, \"25 Gigabit\").

  • processor-info.supported-architecture - The CPU architecture. (arm64 | i386 | x86_64)

  • processor-info.sustained-clock-speed-in-ghz - The CPU clock speed, in GHz.

  • supported-root-device-type - The root device type. (ebs | instance-store)

  • supported-usage-class - The usage class. (on-demand | spot)

  • supported-virtualization-type - The virtualization type. (hvm | paravirtual)

  • vcpu-info.default-cores - The default number of cores for the instance type.

  • vcpu-info.default-threads-per-core - The default number of threads per core for the instance type.

  • vcpu-info.default-vcpus - The default number of vCPUs for the instance type.

  • vcpu-info.valid-cores - The number of cores that can be configured for the instance type.

  • vcpu-info.valid-threads-per-core - The number of threads per core that can be configured for the instance type. For example, \"1\" or \"1,2\".

", "locationName":"Filter" }, "MaxResults":{ @@ -15794,7 +15794,7 @@ "members":{ "Filters":{ "shape":"FilterList", - "documentation":"

One or more filters.

  • availability-zone - The Availability Zone for which prices should be returned.

  • instance-type - The type of instance (for example, m3.medium).

  • product-description - The product description for the Spot price (Linux/UNIX | SUSE Linux | Windows | Linux/UNIX (Amazon VPC) | SUSE Linux (Amazon VPC) | Windows (Amazon VPC)).

  • spot-price - The Spot price. The value must match exactly (or use wildcards; greater than or less than comparison is not supported).

  • timestamp - The time stamp of the Spot price history, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). You can use wildcards (* and ?). Greater than or less than comparison is not supported.

", + "documentation":"

One or more filters.

  • availability-zone - The Availability Zone for which prices should be returned.

  • instance-type - The type of instance (for example, m3.medium).

  • product-description - The product description for the Spot price (Linux/UNIX | Red Hat Enterprise Linux | SUSE Linux | Windows | Linux/UNIX (Amazon VPC) | Red Hat Enterprise Linux (Amazon VPC) | SUSE Linux (Amazon VPC) | Windows (Amazon VPC)).

  • spot-price - The Spot price. The value must match exactly (or use wildcards; greater than or less than comparison is not supported).

  • timestamp - The time stamp of the Spot price history, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). You can use wildcards (* and ?). Greater than or less than comparison is not supported.

", "locationName":"Filter" }, "AvailabilityZone":{ @@ -18725,6 +18725,14 @@ "locationName":"item" } }, + "EphemeralNvmeSupport":{ + "type":"string", + "enum":[ + "unsupported", + "supported", + "required" + ] + }, "ErrorSet":{ "type":"list", "member":{ @@ -23642,6 +23650,11 @@ "shape":"DiskInfoList", "documentation":"

Array describing the disks that are available for the instance type.

", "locationName":"disks" + }, + "NvmeSupport":{ + "shape":"EphemeralNvmeSupport", + "documentation":"

Indicates whether non-volatile memory express (NVMe) is supported for instance store.

", + "locationName":"nvmeSupport" } }, "documentation":"

Describes the disks that are available for the instance type.

" @@ -31381,7 +31394,7 @@ }, "BlockDurationMinutes":{ "shape":"Integer", - "documentation":"

The required duration for the Spot Instances (also known as Spot blocks), in minutes. This value must be a multiple of 60 (60, 120, 180, 240, 300, or 360).

The duration period starts as soon as your Spot Instance receives its instance ID. At the end of the duration period, Amazon EC2 marks the Spot Instance for termination and provides a Spot Instance termination notice, which gives the instance a two-minute warning before it terminates.

You can't specify an Availability Zone group or a launch group if you specify a duration.

", + "documentation":"

The required duration for the Spot Instances (also known as Spot blocks), in minutes. This value must be a multiple of 60 (60, 120, 180, 240, 300, or 360).

The duration period starts as soon as your Spot Instance receives its instance ID. At the end of the duration period, Amazon EC2 marks the Spot Instance for termination and provides a Spot Instance termination notice, which gives the instance a two-minute warning before it terminates.

You can't specify an Availability Zone group or a launch group if you specify a duration.

New accounts or accounts with no previous billing history with AWS are not eligible for Spot Instances with a defined duration (also known as Spot blocks).

", "locationName":"blockDurationMinutes" }, "ClientToken":{ @@ -31425,7 +31438,7 @@ }, "ValidUntil":{ "shape":"DateTime", - "documentation":"

The end date of the request. If this is a one-time request, the request remains active until all instances launch, the request is canceled, or this date is reached. If the request is persistent, it remains active until it is canceled or this date is reached. The default end date is 7 days from the current date.

", + "documentation":"

The end date of the request, in UTC format (YYYY-MM-DDTHH:MM:SSZ).

  • For a persistent request, the request remains active until the ValidUntil date and time is reached. Otherwise, the request remains active until you cancel it.

  • For a one-time request, the request remains active until all instances launch, the request is canceled, or the ValidUntil date and time is reached. By default, the request is valid for 7 days from the date the request was created.

", "locationName":"validUntil" }, "TagSpecifications":{ @@ -31580,7 +31593,7 @@ "locationName":"reservationId" } }, - "documentation":"

Describes a reservation.

" + "documentation":"

Describes a launch request for one or more instances, and includes owner, requester, and security group information that applies to all instances in the launch request.

" }, "ReservationId":{"type":"string"}, "ReservationList":{ @@ -34511,7 +34524,7 @@ "members":{ "Bucket":{ "shape":"String", - "documentation":"

The Amazon S3 bucket where the Spot Instance data feed is located.

", + "documentation":"

The name of the Amazon S3 bucket where the Spot Instance data feed is located.

", "locationName":"bucket" }, "Fault":{ @@ -34526,7 +34539,7 @@ }, "Prefix":{ "shape":"String", - "documentation":"

The prefix that is prepended to data feed files.

", + "documentation":"

The prefix for the data feed files.

", "locationName":"prefix" }, "State":{ @@ -34592,7 +34605,7 @@ }, "NetworkInterfaces":{ "shape":"InstanceNetworkInterfaceSpecificationList", - "documentation":"

One or more network interfaces. If you specify a network interface, you must specify subnet IDs and security group IDs using the network interface.

", + "documentation":"

One or more network interfaces. If you specify a network interface, you must specify subnet IDs and security group IDs using the network interface.

SpotFleetLaunchSpecification currently does not support Elastic Fabric Adapter (EFA). To specify an EFA, you must use LaunchTemplateConfig.

", "locationName":"networkInterfaceSet" }, "Placement":{ @@ -34631,7 +34644,7 @@ "locationName":"tagSpecificationSet" } }, - "documentation":"

Describes the launch specification for one or more Spot Instances. If you include On-Demand capacity in your fleet request, you can't use SpotFleetLaunchSpecification; you must use LaunchTemplateConfig.

" + "documentation":"

Describes the launch specification for one or more Spot Instances. If you include On-Demand capacity in your fleet request or want to specify an EFA network device, you can't use SpotFleetLaunchSpecification; you must use LaunchTemplateConfig.

" }, "SpotFleetMonitoring":{ "type":"structure", @@ -34941,7 +34954,7 @@ }, "ValidUntil":{ "shape":"DateTime", - "documentation":"

The end date of the request, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ). If this is a one-time request, it remains active until all instances launch, the request is canceled, or this date is reached. If the request is persistent, it remains active until it is canceled or this date is reached. The default end date is 7 days from the current date.

", + "documentation":"

The end date of the request, in UTC format (YYYY-MM-DDTHH:MM:SSZ).

  • For a persistent request, the request remains active until the validUntil date and time is reached. Otherwise, the request remains active until you cancel it.

  • For a one-time request, the request remains active until all instances launch, the request is canceled, or the validUntil date and time is reached. By default, the request is valid for 7 days from the date the request was created.

", "locationName":"validUntil" }, "InstanceInterruptionBehavior":{ @@ -35034,11 +35047,11 @@ }, "BlockDurationMinutes":{ "shape":"Integer", - "documentation":"

The required duration for the Spot Instances (also known as Spot blocks), in minutes. This value must be a multiple of 60 (60, 120, 180, 240, 300, or 360).

" + "documentation":"

The required duration for the Spot Instances (also known as Spot blocks), in minutes. This value must be a multiple of 60 (60, 120, 180, 240, 300, or 360).

The duration period starts as soon as your Spot Instance receives its instance ID. At the end of the duration period, Amazon EC2 marks the Spot Instance for termination and provides a Spot Instance termination notice, which gives the instance a two-minute warning before it terminates.

You can't specify an Availability Zone group or a launch group if you specify a duration.

New accounts or accounts with no previous billing history with AWS are not eligible for Spot Instances with a defined duration (also known as Spot blocks).

" }, "ValidUntil":{ "shape":"DateTime", - "documentation":"

The end date of the request. For a one-time request, the request remains active until all instances launch, the request is canceled, or this date is reached. If the request is persistent, it remains active until it is canceled or this date and time is reached. The default end date is 7 days from the current date.

" + "documentation":"

The end date of the request, in UTC format (YYYY-MM-DDTHH:MM:SSZ). Supported only for persistent requests.

  • For a persistent request, the request remains active until the ValidUntil date and time is reached. Otherwise, the request remains active until you cancel it.

  • For a one-time request, ValidUntil is not supported. The request remains active until all instances launch or you cancel the request.

" }, "InstanceInterruptionBehavior":{ "shape":"InstanceInterruptionBehavior", From dd4dd893263b8edbca72409885b352916fec9d70 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 21 Oct 2020 19:35:45 +0000 Subject: [PATCH 051/339] Release 2.15.12. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.12.json | 36 +++++++++++++++++++ .../feature-AWSGlobalAccelerator-029f300.json | 5 --- .../next-release/feature-AWSGlue-5e3d9a5.json | 5 --- ...ture-AWSKendraFrontendService-c9a8529.json | 5 --- .../feature-AWSOrganizations-73ba404.json | 5 --- .../feature-AmazonCloudFront-94d9588.json | 5 --- ...ure-AmazonElasticComputeCloud-191c354.json | 5 --- CHANGELOG.md | 25 +++++++++++++ README.md | 8 ++--- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- .../serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 289 files changed, 345 insertions(+), 314 deletions(-) create mode 100644 .changes/2.15.12.json delete mode 100644 .changes/next-release/feature-AWSGlobalAccelerator-029f300.json delete mode 100644 .changes/next-release/feature-AWSGlue-5e3d9a5.json delete mode 100644 .changes/next-release/feature-AWSKendraFrontendService-c9a8529.json delete mode 100644 .changes/next-release/feature-AWSOrganizations-73ba404.json delete mode 100644 .changes/next-release/feature-AmazonCloudFront-94d9588.json delete mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-191c354.json diff --git a/.changes/2.15.12.json b/.changes/2.15.12.json new file mode 100644 index 000000000000..dd77de617bf4 --- /dev/null +++ b/.changes/2.15.12.json @@ -0,0 +1,36 @@ +{ + "version": "2.15.12", + "date": "2020-10-21", + "entries": [ + { + "type": "feature", + "category": "AWS Global Accelerator", + "description": "This release adds support for specifying port overrides on AWS Global Accelerator endpoint groups." + }, + { + "type": "feature", + "category": "AWS Organizations", + "description": "AWS Organizations renamed the 'master account' to 'management account'." + }, + { + "type": "feature", + "category": "AWSKendraFrontendService", + "description": "This release adds custom data sources: a new data source type that gives you full control of the documents added, modified or deleted during a data source sync while providing run history metrics." + }, + { + "type": "feature", + "category": "AWS Glue", + "description": "AWS Glue crawlers now support incremental crawls for the Amazon Simple Storage Service (Amazon S3) data source." + }, + { + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "description": "instance-storage-info nvmeSupport added to DescribeInstanceTypes API" + }, + { + "type": "feature", + "category": "Amazon CloudFront", + "description": "CloudFront adds support for managing the public keys for signed URLs and signed cookies directly in CloudFront (it no longer requires the AWS root account)." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSGlobalAccelerator-029f300.json b/.changes/next-release/feature-AWSGlobalAccelerator-029f300.json deleted file mode 100644 index 0b6a121f7fee..000000000000 --- a/.changes/next-release/feature-AWSGlobalAccelerator-029f300.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS Global Accelerator", - "description": "This release adds support for specifying port overrides on AWS Global Accelerator endpoint groups." -} diff --git a/.changes/next-release/feature-AWSGlue-5e3d9a5.json b/.changes/next-release/feature-AWSGlue-5e3d9a5.json deleted file mode 100644 index f71953ca373b..000000000000 --- a/.changes/next-release/feature-AWSGlue-5e3d9a5.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS Glue", - "description": "AWS Glue crawlers now support incremental crawls for the Amazon Simple Storage Service (Amazon S3) data source." -} diff --git a/.changes/next-release/feature-AWSKendraFrontendService-c9a8529.json b/.changes/next-release/feature-AWSKendraFrontendService-c9a8529.json deleted file mode 100644 index fb7fb17499a2..000000000000 --- a/.changes/next-release/feature-AWSKendraFrontendService-c9a8529.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWSKendraFrontendService", - "description": "This release adds custom data sources: a new data source type that gives you full control of the documents added, modified or deleted during a data source sync while providing run history metrics." -} diff --git a/.changes/next-release/feature-AWSOrganizations-73ba404.json b/.changes/next-release/feature-AWSOrganizations-73ba404.json deleted file mode 100644 index f7073b2aefff..000000000000 --- a/.changes/next-release/feature-AWSOrganizations-73ba404.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS Organizations", - "description": "AWS Organizations renamed the 'master account' to 'management account'." -} diff --git a/.changes/next-release/feature-AmazonCloudFront-94d9588.json b/.changes/next-release/feature-AmazonCloudFront-94d9588.json deleted file mode 100644 index 0f0ce7ba90fe..000000000000 --- a/.changes/next-release/feature-AmazonCloudFront-94d9588.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "Amazon CloudFront", - "description": "CloudFront adds support for managing the public keys for signed URLs and signed cookies directly in CloudFront (it no longer requires the AWS root account)." -} diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-191c354.json b/.changes/next-release/feature-AmazonElasticComputeCloud-191c354.json deleted file mode 100644 index 354166c9a823..000000000000 --- a/.changes/next-release/feature-AmazonElasticComputeCloud-191c354.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Elastic Compute Cloud", - "description": "instance-storage-info nvmeSupport added to DescribeInstanceTypes API" -} diff --git a/CHANGELOG.md b/CHANGELOG.md index 142cdc0a2c14..45621d6c5be5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,28 @@ +# __2.15.12__ __2020-10-21__ +## __AWS Global Accelerator__ + - ### Features + - This release adds support for specifying port overrides on AWS Global Accelerator endpoint groups. + +## __AWS Glue__ + - ### Features + - AWS Glue crawlers now support incremental crawls for the Amazon Simple Storage Service (Amazon S3) data source. + +## __AWS Organizations__ + - ### Features + - AWS Organizations renamed the 'master account' to 'management account'. + +## __AWSKendraFrontendService__ + - ### Features + - This release adds custom data sources: a new data source type that gives you full control of the documents added, modified or deleted during a data source sync while providing run history metrics. + +## __Amazon CloudFront__ + - ### Features + - CloudFront adds support for managing the public keys for signed URLs and signed cookies directly in CloudFront (it no longer requires the AWS root account). + +## __Amazon Elastic Compute Cloud__ + - ### Features + - instance-storage-info nvmeSupport added to DescribeInstanceTypes API + # __2.15.11__ __2020-10-20__ ## __AWS AppSync__ - ### Features diff --git a/README.md b/README.md index 6fd04c3c09d1..0b7b0741b1bc 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.11 + 2.15.12 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.11 + 2.15.12 software.amazon.awssdk s3 - 2.15.11 + 2.15.12 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.11 + 2.15.12 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 31d8c79de721..59496dc20c9b 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 52139c671fa0..1e7083cf71c3 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 8ac83794c172..8caa6e909b1c 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.15.12-SNAPSHOT + 2.15.12 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 2e2336654cc5..ea814a3dc58a 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 960fae7c4cad..72acd2ed329f 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.12-SNAPSHOT + 2.15.12 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 4c856f833705..98aaf6964f63 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.12-SNAPSHOT + 2.15.12 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index a1f5ac9ec4f5..27aacd0ec25d 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.15.12-SNAPSHOT + 2.15.12 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index f3a913448471..ac31ca593e65 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.12-SNAPSHOT + 2.15.12 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 8e15e5f469f9..fd814074e3f2 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.15.12-SNAPSHOT + 2.15.12 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index f403729077cf..4a88b3c5999a 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.12-SNAPSHOT + 2.15.12 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 4448fa06858c..41e6f18372df 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 898c8d534f02..72255d234d0a 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index ef1d0a0aa929..3174f962d285 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.12-SNAPSHOT + 2.15.12 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 1279960542b7..d12901fc1049 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.12-SNAPSHOT + 2.15.12 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 0225058d3b9c..a4f180079200 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 9427f143d95c..a82572299e97 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 2e01635480a8..a86971d5fdbc 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.12-SNAPSHOT + 2.15.12 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index c2e323638c4b..445029e27c7e 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.15.12-SNAPSHOT + 2.15.12 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 44a953634196..7f94cb8f1f61 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index aab532fc2a0f..1ba1733e577c 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.15.12-SNAPSHOT + 2.15.12 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index c190d8aa4fb5..78e2c4f65b7f 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.15.12-SNAPSHOT + 2.15.12 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index a6054dcbbaa6..57ecd934c3d2 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.15.12-SNAPSHOT + 2.15.12 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 5866175649dc..b2efa1bdb943 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index cd99589a83a4..5eb1e7fb7945 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 247d7b2fcc3f..f0e77e47157c 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.12-SNAPSHOT + 2.15.12 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 8a48cfa02868..c17a4a0ce410 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.12-SNAPSHOT + 2.15.12 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 100ac58e0d3e..59bcf638a9d0 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.15.12-SNAPSHOT + 2.15.12 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 31e4515c874d..cece59f2437b 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.15.12-SNAPSHOT + 2.15.12 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 5af6b21793b2..f57daba4ed76 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.15.12-SNAPSHOT + 2.15.12 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index e4aae9a76ffe..b2d069341e23 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.15.12-SNAPSHOT + 2.15.12 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index fe15a83febc4..48bb116bd606 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 1c6347e26578..dda8d8237d9e 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.15.12-SNAPSHOT + 2.15.12 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 78202e92232c..c7febdcf5f9f 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.15.12-SNAPSHOT + 2.15.12 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 81bc57497c43..95b65df6c435 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.12-SNAPSHOT + 2.15.12 metric-publishers diff --git a/pom.xml b/pom.xml index 5ec2d643f37e..939560cae90a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.12-SNAPSHOT + 2.15.12 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 53df98bc75d4..c4195d72d034 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.12-SNAPSHOT + 2.15.12 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 9fead02acc45..4334d72cc5c1 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.15.12-SNAPSHOT + 2.15.12 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 29a0ece2f124..0f8c174f5ffc 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.12-SNAPSHOT + 2.15.12 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 1cc86ba3618f..f01cbad48683 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 2a62f8be8499..2396312d1d3b 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index e72539126838..86c7906838e1 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 67395c5437a3..94afd8eca4e1 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 713703be79fa..eb53f0994967 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 6d1daf01c3ab..25ee8e7278ce 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 5826755034d7..94a6e96f0c70 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 0465ac880eda..8e88f67bdd0d 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 623c5ba567f9..39ac0e306384 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 4e719c81ba99..56d0dbf01d79 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 973c5d09506d..408020ded9c5 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index dcd6f0d3288b..4a416ffc98e0 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 24bc9493287c..c291d00700b2 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 2dd4b432c5ed..9a62b54cda75 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 7d87f5976321..05e70472dd57 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 8d4e2a6e8042..62b9f1b54751 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 6fcf548bd052..b84b4e27aba2 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 8f109091d8a5..bc587eabaa2f 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index a24b5366c742..46f40588ed45 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 7fb4b2490518..0bac7a4b8a20 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 9f59703fba58..40d6a71fad1c 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 88d2970987b1..c434267c95f1 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 26cb0eb2889a..7d2aab73eeb9 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index e1670d8ad351..6cb226c87772 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index d6ccab8c0657..cbd5e9e80be3 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 21333d2ad640..091db1fd889e 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 199d0223be6c..8e2e4db8d2db 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index df6e751297c4..e11431385f0e 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index def8f32b7602..7e1afa0545f6 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 5aa78ed06bc8..9976430e1d80 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index cfd8b7c1e237..7253a8557650 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index d0ea2ac78ed1..572ad9bf17b9 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index bccc9e181695..fe1fca8a1960 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 924ab5224259..f83191b3c6aa 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 325be8571530..f982bc16fc66 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index d554684992e6..8fdbce6ab7c5 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 3d55c67c99ff..322e50d42a5f 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index f1c9712264ca..f776df750bfe 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 374b4bba7f12..05a2cc863c1d 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 597afc3d9cab..985a0b2cd29d 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 521f6f5d99bb..f722f1b2d95c 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 8251c856bdc9..7e585a8ee615 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 203082818827..f825eb0cb6ac 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 43949db76c9e..88524a3ee087 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index a66858636617..514286b6057f 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index add28c7cb596..fa759101209d 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 425c11421c49..b251319a10ce 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index d4224018a407..cddea9edaa7a 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index fe4f624b0b6b..586b9435bc2e 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index f33f6845bf44..26a47a895b80 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index e24fbb136738..673b212117b7 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 8f1fd1bb58e1..2c5e16b020f4 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 9a48d6b4ae0a..729fc5cda1a6 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 1b72e8e66bff..5ea0a38b0469 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index d19b9fc12ea3..62925cee79c9 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 32e1d4df1751..bec1cdded5cf 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index c59932c33b2c..ae040dc3c212 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index e2233ed70679..a21bbba8148f 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 0c9d9a83e393..7986b91e637a 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 0861890dc727..c7dabade7e64 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 695c461d56aa..54f2ed459ce1 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 211d1d3290a8..dc10031aa859 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 1568dea48ad8..0b8dc8c2f3c6 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index f7bc40dd7431..03f7a92fbd9a 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 4f03f94a4438..b8b085af061c 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index b9cf0622c71f..5c49d75965bf 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index f7d96712fce5..6aa48e988658 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index f97f84b9754b..2a83c2d22926 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 8065e6a4df94..bfad65ba9490 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 1523ba404f45..fde3891c0348 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 8d1b61af1fd6..2f32d79b939d 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 4159d4d1582d..bf26ded468b6 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 855d3c1e422a..a8239b4d1aec 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 8c74bfbd1b80..0c1861d7e1d6 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 6f361746d43c..68f453e43008 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index bbcb279a20ba..dc8cdf52e1f9 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 4948a658a646..a8cc3af81c70 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index bf329df60c4a..7ff226fa30a7 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index dafa35dc92be..0360858b383f 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 1edbeb38509f..110558f920bc 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index b8efb905d4cb..873c4f0786d4 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 3129116ccf2f..a4023205bb16 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 9afcf798e388..2d9206a598c8 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 68a28ccd19d1..0bc124a580fd 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index e44067e88050..f6380f723e28 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 1d129498b2ea..3ede35428706 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index ec74109bfbb5..4d86af434169 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 22126a03da3f..7e083a66fc00 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 0842380277de..68733e8343ef 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index fcb6bdc44967..693f092b1ce6 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 451a6444fc1e..075f8251dcb8 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 42b60ed80c5b..53d648e868e1 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 5d489d3b2a6e..e623e0137414 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index bacbbbadd019..0578ff0a7a4b 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 3a345914ce68..9170a9dc9f8a 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 46ecf1d110d6..2da4126ed523 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 28b8dc829cf8..cc4b3046f63a 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 124148ae2cc1..4af6ad70a7f1 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index cf536409bf2f..f5adea02d28b 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 806a38ad417f..a5c6091ff1fa 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index f3524468e9e9..2677cc1cc305 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 4477449ee3fe..0ce6a0bcf52a 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 8047109b040f..27f35f49ee12 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index d9547be442d0..9a77673f3e94 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 09d0db3ea002..8c8e3a07e3ef 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index bafa0bc3513c..a40880c05320 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index e5427317470f..3160658b932c 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 4d855ff01115..0731194f614a 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 6a96ae509845..97edea144e49 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 823a2976104b..a8538d38e85c 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 06ab925df553..cf0acd7b283a 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index b002fe2b0a29..9406fca7d6a9 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 4e5f539181c8..b26af2eb2551 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 9c7fb435631c..a2392fa9de18 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index d4c6501b1d85..65bb71dfe7e3 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 3571a854972d..14ef512aa2fd 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 34dd2b4d4ff4..4b42c3fe7fa4 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 8ce6e3da07ca..3de03ab64bd4 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index ef12068630ac..fdc5d32000d3 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 2eee4a0f9ab4..14d0108c6505 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index e4611631a7e0..0efa6a2d8fb0 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index a0c393713c72..665b63ab7a9c 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 236536568916..0406a9754d16 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index e37c62c922bd..34c1a1c1ce2d 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 88355c1385fe..cdd3358fdb12 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 3962648c485e..0e2e62eb67a0 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 19291c93a133..cb2ed1a5f14d 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index c2341c5941ac..e82b3cc48208 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 91c4bdf71ea5..454302538dae 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 39b98c646b92..1a421317283f 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 093fb9dc6acc..f8a5f40e62c4 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index d25fc7d80220..ca91bb9a2507 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 91eac52bcbec..07ed2af8b25b 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index cf2d32641609..071fce89b791 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index f50c9504a8e3..9cb7e371584d 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index e5caadef663e..f100d26c9cf2 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index aee87c6cee9d..cdc6a66b8bce 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 05124df8db70..11d5485cf2cf 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 51566d5042f5..b9c1afca8b35 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index a77584f1e01a..093b53bb48a6 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 6392a8d6d72b..524a47c51d0c 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index c054f3012cdc..5363b6ac7aa7 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 5fe456052d42..612685ab0380 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 1c54ab4316ef..64682e0bf451 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index c5be24fdd41e..ac92789a2f6f 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 1b0f79f1c968..5a270997590a 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 51f61184e59f..9f9e2e1b065a 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index af86ced6c60f..0e49395bd5c4 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 4f518e114040..eee357b04ad6 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 6c9d713de5f6..5f1cd1fb5bb3 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 3c97fba8ec68..d38cd5b0eedc 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index aabb48e5d0fe..9f2ee063fbd6 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 3a38f4b8c877..22b7d9f7e75b 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index bbf7df0c50dc..b64d88e7852e 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 3fd7f84a3333..e91017e1d81b 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index ab62e7c1ce0b..612e551e8d44 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 35f39203644e..aca1b1a4c4d6 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index fd7763bd02ff..4ffe18ddcd30 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index a0f9fb14bf8d..6ca394315737 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index b9cb42b31ee9..a3c810494366 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 5b335a3bfcf9..4d065e3d0a60 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index a9b0a9ebd325..40d23877e2cb 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 1dabe48a5464..097153041b3c 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index ce85665377b4..03640480747c 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index cc78d0c0bcf8..a4e7f2c68c0c 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 3a90f5856a36..239e8c963f15 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 028f632440ee..6ceee7870fc2 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 0bad4901c9fa..061a69cbca6a 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.12-SNAPSHOT + 2.15.12 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 6c8a64d0b6b5..3a5199d4387f 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index fb8a3d4cfe81..918f96f03102 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 4bcbbe45ce2b..36ad6423b221 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 1f3a06da0da1..e07a52f4aa31 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index d5f21a477402..6ebfec8398ea 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 3c97bcd758fb..526ee2c25082 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 9a2bbce4ae53..f85515441c07 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 6a49caab2c2a..9fc8bc50687e 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 91c1d3cf84a2..8ecbe0b1b815 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 14f92b95a9ff..4ceaac0ee7c8 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 53c6d74a6722..e613a5093edb 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 282c770198df..8f3a5196c484 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index fb2a8e31ef26..84e8cd5100cc 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 01c72843be1e..0392ea0bfbcd 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index d1353b35806f..60f6bc12ea67 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 5ecaaf9f9c3c..270676a5ffd4 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 87a836387af6..9e9cdf186b1b 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 2d38907e8e01..bfbef0bfa4f1 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 5166b913467a..1c4c6ff63647 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 963b3e6c81c7..32fe09fae813 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 9f6dd68b4764..5b1420f6896e 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 0c65c65170ee..f2195c8d32db 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 279124348b61..4b6e84e10dfa 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 0e1af694d9af..4b39cf740ad8 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 0f13894d311f..6145b5ca4c7d 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 7652e0184f60..9133c6d77a10 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 1969fbf71a91..66e8ee435751 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index aa73969ed3b0..e68bcf07c5c9 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index c1ede310845c..e81692018186 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 528636f68bae..1cecc568831a 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 4df9f611459e..71c7ceb6c187 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index e9796d81cbdc..4bcec65c8400 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index b9fdd02f70e9..27b9a4280dbf 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 5686106b4a17..dd496471b4ba 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index d87679bd85e5..8a8b2df2a655 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 56a3dc011088..eb0f0891d7c5 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 5e8864415fd7..9950ad6ed043 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 0fd8154771b0..0e02e8d560c6 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 563775530adb..1dd5065c8743 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 70b2674870c4..f909a289272d 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index a9a378dd0859..c2c95089046d 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 534afa5a3f64..733392f14452 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index c8f048fe179e..d94958ea1f65 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 5680c06a7918..c2ad4c6263dc 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index b45c99e60d87..691c142b7d5a 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 069fffb82a82..2f7c0a96babc 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index f28a8bf50c47..5e52e86512ef 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 43d84bb1fd48..5a8f99f2775a 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 95191cf7ede2..8c9c3d82ddb3 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 6a132420e110..ddf0ec1419b2 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 8e9701d39a5c..1fa0a716b8e3 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 15272cd92fd9..06b220c2cb63 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 327be6ab865c..e047a43e380a 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 141a7a0c2929..56db88321d06 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index d95e0204ee17..b5bf77ebdf5e 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index c5976c66866e..37760e496174 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index da64b57f6c53..8b5b94e36655 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 1b2de4463a02..0c1cfda2c80d 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 7e5c4f0079bc..d3c58266ce41 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 058cea8e747e..723c0d7472ff 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 3a82d186c59c..c782e9f50a58 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 6a0c4b050cea..79579a05a7df 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 9ccbac13f9bb..b83ccc83d98e 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12-SNAPSHOT + 2.15.12 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 07994065acba..7cc252015960 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.15.12-SNAPSHOT + 2.15.12 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 8a95b3124ce5..9c016daf23d4 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.15.12-SNAPSHOT + 2.15.12 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index c02e335e0a04..c363b34a5eff 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.15.12-SNAPSHOT + 2.15.12 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 096f4ab1a2dd..0ffa58de2459 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.15.12-SNAPSHOT + 2.15.12 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 999fe25a6c60..9281a756f536 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.15.12-SNAPSHOT + 2.15.12 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index d5dbf0e24ff1..36896aed470b 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.12-SNAPSHOT + 2.15.12 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 1582a3023e7e..5519c32fd5d6 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.15.12-SNAPSHOT + 2.15.12 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 1e5a66109531..94730ba9bf5c 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.15.12-SNAPSHOT + 2.15.12 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 4a9bfed31565..bb36f043a737 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.15.12-SNAPSHOT + 2.15.12 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index e47e1bc6bf2c..053339f1c639 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.15.12-SNAPSHOT + 2.15.12 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index ab5eabd689a2..6553f6324608 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.12-SNAPSHOT + 2.15.12 4.0.0 From 840c22a5899cf32241e90ca9cc133947883d011f Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 21 Oct 2020 20:00:49 +0000 Subject: [PATCH 052/339] Update to next snapshot version: 2.15.13-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 280 files changed, 280 insertions(+), 280 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 59496dc20c9b..c9a9e4d548e6 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 1e7083cf71c3..e065e7efb91d 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 8caa6e909b1c..ec42da3cf569 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.15.12 + 2.15.13-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index ea814a3dc58a..d67d2718186c 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 72acd2ed329f..4da49ff263f1 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.12 + 2.15.13-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 98aaf6964f63..64f19da9c5c9 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.12 + 2.15.13-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 27aacd0ec25d..757a6647d10d 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.15.12 + 2.15.13-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index ac31ca593e65..8d462f31c5bc 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.12 + 2.15.13-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index fd814074e3f2..07d0bb10cc00 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.15.12 + 2.15.13-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 4a88b3c5999a..1682cc048c34 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.12 + 2.15.13-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 41e6f18372df..5751f214a882 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 72255d234d0a..b019854e5857 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 3174f962d285..d3cb3de7054c 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.12 + 2.15.13-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index d12901fc1049..f2b9b74c9c48 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.12 + 2.15.13-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index a4f180079200..3f67dc7c2850 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index a82572299e97..18b10371fa5a 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index a86971d5fdbc..02c7a49bbe79 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.12 + 2.15.13-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 445029e27c7e..5ea02dceea07 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.15.12 + 2.15.13-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 7f94cb8f1f61..870a091db42a 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 1ba1733e577c..853051f1c9ab 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.15.12 + 2.15.13-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 78e2c4f65b7f..7e9b4c7449b5 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.15.12 + 2.15.13-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 57ecd934c3d2..a175b13889eb 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.15.12 + 2.15.13-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index b2efa1bdb943..5f6252876433 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 5eb1e7fb7945..c3c26de589c8 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index f0e77e47157c..4cea829af267 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.12 + 2.15.13-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index c17a4a0ce410..4e294dbde6d3 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.12 + 2.15.13-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 59bcf638a9d0..87a3cb2d3cc4 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.15.12 + 2.15.13-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index cece59f2437b..39fc8c091c3a 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.15.12 + 2.15.13-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index f57daba4ed76..eca1f564a4a3 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.15.12 + 2.15.13-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index b2d069341e23..bdaf68ef108a 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.15.12 + 2.15.13-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 48bb116bd606..3c6a6a60c143 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index dda8d8237d9e..d256bde44133 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.15.12 + 2.15.13-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index c7febdcf5f9f..fa86d205c1dd 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.15.12 + 2.15.13-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 95b65df6c435..ac7f49b2863b 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.12 + 2.15.13-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 939560cae90a..aedbecc81fe7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.12 + 2.15.13-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index c4195d72d034..389622620a91 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.12 + 2.15.13-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 4334d72cc5c1..f2b5b5caeb7f 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.15.12 + 2.15.13-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 0f8c174f5ffc..949704412769 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.12 + 2.15.13-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index f01cbad48683..3afad1dd0c9f 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 2396312d1d3b..b8c8c9d40cf1 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 86c7906838e1..3389c2be2093 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 94afd8eca4e1..858d8045fadb 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index eb53f0994967..a180a3ac44ad 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 25ee8e7278ce..164346ef7500 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 94a6e96f0c70..28d209905a46 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 8e88f67bdd0d..92957f214eea 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 39ac0e306384..93eedbac3b33 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 56d0dbf01d79..8ec8152610c2 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 408020ded9c5..d3967b20e1b8 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 4a416ffc98e0..def4ae5d246c 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index c291d00700b2..d92995b4c352 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 9a62b54cda75..3b17e59898b2 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 05e70472dd57..e87435823c7f 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 62b9f1b54751..c7d6de461ab1 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index b84b4e27aba2..666d8a304c4c 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index bc587eabaa2f..0702a4d5a612 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 46f40588ed45..62d524653f82 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 0bac7a4b8a20..aac8e2d456f2 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 40d6a71fad1c..0b28b53075a2 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index c434267c95f1..200a30ab7228 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 7d2aab73eeb9..b778b31cc4c1 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 6cb226c87772..6141cf655e53 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index cbd5e9e80be3..92294e43d9e8 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 091db1fd889e..3ae0fcd25f1a 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 8e2e4db8d2db..3673833127b4 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index e11431385f0e..8e058757fa9c 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 7e1afa0545f6..45fed5889cca 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 9976430e1d80..b7fb63c033cd 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 7253a8557650..038b5d652a7c 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 572ad9bf17b9..6ff42184de32 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index fe1fca8a1960..56876cf04824 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index f83191b3c6aa..aaaf2878a892 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index f982bc16fc66..a6fc2e44f47c 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 8fdbce6ab7c5..ff616691381c 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 322e50d42a5f..45b1fa695ace 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index f776df750bfe..b702ca559562 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 05a2cc863c1d..38c6c7aa0730 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 985a0b2cd29d..05cbc50c4a69 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index f722f1b2d95c..66fea16fda2a 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 7e585a8ee615..6cfc4bf9bce0 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index f825eb0cb6ac..390d16866d77 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 88524a3ee087..f5337b4ba430 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 514286b6057f..f245aa8b9ac8 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index fa759101209d..d6a10a49260a 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index b251319a10ce..aef2ccd4f6e5 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index cddea9edaa7a..d4eebfd2a28f 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 586b9435bc2e..6f6a1224a572 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 26a47a895b80..fa6e1d96bcb9 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 673b212117b7..d8c0f2d5a2ef 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 2c5e16b020f4..087e9128b479 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 729fc5cda1a6..08e47c41a7cd 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 5ea0a38b0469..3640536ac6bc 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 62925cee79c9..9ccf6fdff383 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index bec1cdded5cf..59cf28b3d2d7 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index ae040dc3c212..fe0cd80c5c86 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index a21bbba8148f..48fc7d59655f 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 7986b91e637a..1f40de46469a 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index c7dabade7e64..05ad848c5d2a 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 54f2ed459ce1..003e4f3055ca 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index dc10031aa859..db94f81a4192 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 0b8dc8c2f3c6..4a28fa33104b 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 03f7a92fbd9a..2d778b67ab47 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index b8b085af061c..f37345a69bbe 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 5c49d75965bf..dfa6917cfc81 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 6aa48e988658..7342d2b00dae 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 2a83c2d22926..a0a2feee15c7 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index bfad65ba9490..040c16a92c86 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index fde3891c0348..2bd69dc8813c 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 2f32d79b939d..714bc44ca8bd 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index bf26ded468b6..80c4603d8f9d 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index a8239b4d1aec..4c884e36e585 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 0c1861d7e1d6..f8aa45201e75 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 68f453e43008..98111e788025 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index dc8cdf52e1f9..0ba9ff247cbb 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index a8cc3af81c70..8a3cb7b2890f 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 7ff226fa30a7..868db4066b6d 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 0360858b383f..d40a927dcaef 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 110558f920bc..f7a6385cd5d5 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 873c4f0786d4..61ed7309ff6d 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index a4023205bb16..7d6c2fb94ddc 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 2d9206a598c8..db33876680a3 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 0bc124a580fd..2a5708be96d0 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index f6380f723e28..e9120e2ddfdc 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 3ede35428706..417bbd41c911 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 4d86af434169..5e416fc4a02d 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 7e083a66fc00..dcb5b49ff4d6 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 68733e8343ef..871f90b541fe 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 693f092b1ce6..c82f07c4fa31 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 075f8251dcb8..0bb19f111f9e 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 53d648e868e1..162dc3cc1d3b 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index e623e0137414..577d201585b9 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 0578ff0a7a4b..810a3996b432 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 9170a9dc9f8a..558a1da2f142 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 2da4126ed523..93ed64759ba9 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index cc4b3046f63a..2942cf2c5167 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 4af6ad70a7f1..ed67a3ed9e8f 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index f5adea02d28b..5d7f65d60e51 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index a5c6091ff1fa..7a1713531ec3 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 2677cc1cc305..56d8b20bc814 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 0ce6a0bcf52a..8d6af0edc15f 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 27f35f49ee12..4634dcc68c7b 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 9a77673f3e94..0948acd7976a 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 8c8e3a07e3ef..69ebc642d3d4 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index a40880c05320..1c1de0fc5c97 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 3160658b932c..a581a046377e 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 0731194f614a..d23790c96164 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 97edea144e49..b04aca869845 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index a8538d38e85c..f4c1a022092b 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index cf0acd7b283a..977948c0db65 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 9406fca7d6a9..837da7bfc96e 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index b26af2eb2551..cfca13d80ebc 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index a2392fa9de18..56882c477859 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 65bb71dfe7e3..5ca1c6409d6c 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 14ef512aa2fd..4c11e06f6872 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 4b42c3fe7fa4..a0f90db16603 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 3de03ab64bd4..aa750b22e372 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index fdc5d32000d3..8d6036d6bdfe 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 14d0108c6505..ce2718e486d5 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 0efa6a2d8fb0..3493d4d8c3cc 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 665b63ab7a9c..c97e078c2ef1 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 0406a9754d16..c3e0d5e15616 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 34c1a1c1ce2d..dc6004cf358e 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index cdd3358fdb12..c729b6166d5b 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 0e2e62eb67a0..999cd037c5fe 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index cb2ed1a5f14d..e8a5c24e1e65 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index e82b3cc48208..18af48c2654d 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 454302538dae..78ddb7a073fb 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 1a421317283f..98221bd3d82f 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index f8a5f40e62c4..744bc7560cc2 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index ca91bb9a2507..6de5840652b2 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 07ed2af8b25b..26f5b0b13374 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 071fce89b791..14e664f7bcf4 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 9cb7e371584d..53916471223f 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index f100d26c9cf2..7505a091d5a4 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index cdc6a66b8bce..837f93109b01 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 11d5485cf2cf..c6f09f459db2 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index b9c1afca8b35..ce37bc7c1f8a 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 093b53bb48a6..0a92161bf8d7 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 524a47c51d0c..963bde4fa1f8 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 5363b6ac7aa7..c11b8d86e8fa 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 612685ab0380..ad29a2e55001 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 64682e0bf451..76a9adb3bb1a 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index ac92789a2f6f..c0de4ca9403f 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 5a270997590a..3af7ac42f9a6 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 9f9e2e1b065a..0d4e4fa802cc 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 0e49395bd5c4..263cd34d3921 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index eee357b04ad6..4f0dbdbfadd3 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 5f1cd1fb5bb3..f3079d68c12c 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index d38cd5b0eedc..9681df69bf36 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 9f2ee063fbd6..53940382bea2 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 22b7d9f7e75b..038f231facf9 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index b64d88e7852e..3612b8144d83 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index e91017e1d81b..91a4963537f8 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 612e551e8d44..4bb1ec23e9f9 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index aca1b1a4c4d6..d4074b220f0a 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 4ffe18ddcd30..37c917164c7a 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 6ca394315737..99ea51cd0978 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index a3c810494366..0c27ae02c940 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 4d065e3d0a60..721e128f86ae 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 40d23877e2cb..eb2dcf8a965c 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 097153041b3c..125751044ef1 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 03640480747c..4d4809b068d0 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index a4e7f2c68c0c..836383b4cdca 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 239e8c963f15..80fd873ba3da 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 6ceee7870fc2..eb0b8eda967a 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 061a69cbca6a..30c5b26563df 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.12 + 2.15.13-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 3a5199d4387f..34f064e33d8d 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 918f96f03102..e4cb16826061 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 36ad6423b221..c4b0a69046aa 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index e07a52f4aa31..372a24b12429 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 6ebfec8398ea..ddef372b50af 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 526ee2c25082..f6edc16bc3fb 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index f85515441c07..f244231fae68 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 9fc8bc50687e..3aee380d4758 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 8ecbe0b1b815..4d8374916488 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 4ceaac0ee7c8..872c95500963 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index e613a5093edb..9ca8bfd4d118 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 8f3a5196c484..9f5aca5771e2 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 84e8cd5100cc..3a25ff06968f 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 0392ea0bfbcd..7e37b9320088 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 60f6bc12ea67..c00739a8c21d 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 270676a5ffd4..8773850781b2 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 9e9cdf186b1b..483d472c8078 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index bfbef0bfa4f1..c77d9109bae1 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 1c4c6ff63647..20509c85bdc3 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 32fe09fae813..5134646ebafa 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 5b1420f6896e..0822e8e67064 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index f2195c8d32db..6f3c020fe2be 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 4b6e84e10dfa..15fee7989a38 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 4b39cf740ad8..b63ece609439 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 6145b5ca4c7d..aded942d0ba0 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 9133c6d77a10..0e3f8cd375d4 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 66e8ee435751..066beeb98f50 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index e68bcf07c5c9..e9eb790b900c 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index e81692018186..77e868316425 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 1cecc568831a..45991080b062 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 71c7ceb6c187..9b2174069569 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 4bcec65c8400..53bfb078dffb 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 27b9a4280dbf..16bae2289810 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index dd496471b4ba..f56852d73edd 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 8a8b2df2a655..de3c035a45a5 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index eb0f0891d7c5..04a1bb28f6d6 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 9950ad6ed043..ace09826231a 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 0e02e8d560c6..30a89d29d51b 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 1dd5065c8743..df0a46b1f8ff 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index f909a289272d..45fc020f9daa 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index c2c95089046d..cd7284df3242 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 733392f14452..6d6022ae7a52 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index d94958ea1f65..5e2fdfbb81b6 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index c2ad4c6263dc..d0fe6958f6c5 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 691c142b7d5a..9d21a6f1d550 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 2f7c0a96babc..b6f16af24b40 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 5e52e86512ef..b5c54a73b8c4 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 5a8f99f2775a..b6330b6c1246 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 8c9c3d82ddb3..9e6a8242102d 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index ddf0ec1419b2..b6b5beef64dd 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 1fa0a716b8e3..0d37e13d4794 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 06b220c2cb63..afc87d8d7262 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index e047a43e380a..b0f140a3c6f1 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 56db88321d06..db79cee13c04 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index b5bf77ebdf5e..467d0fdf34c6 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 37760e496174..40814f7261b1 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 8b5b94e36655..934c62b51dfe 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 0c1cfda2c80d..d1edf874d888 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index d3c58266ce41..80ba4ee5d294 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 723c0d7472ff..17663666df65 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index c782e9f50a58..db436fad04ec 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 79579a05a7df..fbb7c42cb659 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index b83ccc83d98e..b64315733ace 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.12 + 2.15.13-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 7cc252015960..2fe12c6047e2 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.15.12 + 2.15.13-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 9c016daf23d4..5261428d0ab3 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.15.12 + 2.15.13-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index c363b34a5eff..cd71ca177d97 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.15.12 + 2.15.13-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 0ffa58de2459..d461ca4582a0 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.15.12 + 2.15.13-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 9281a756f536..d06068bceda3 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.15.12 + 2.15.13-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 36896aed470b..3e040c861c9c 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.12 + 2.15.13-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 5519c32fd5d6..faf1afc8a37e 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.15.12 + 2.15.13-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 94730ba9bf5c..3028cdc1ab5d 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.15.12 + 2.15.13-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index bb36f043a737..8169e29e669d 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.15.12 + 2.15.13-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 053339f1c639..aedf143ae13e 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.15.12 + 2.15.13-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 6553f6324608..113b61cad1a9 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.12 + 2.15.13-SNAPSHOT 4.0.0 From 6c8f85d802d1a3694a8707f19da4358abb444bfa Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 22 Oct 2020 18:03:18 +0000 Subject: [PATCH 053/339] Amazon Appflow Update: Salesforce connector creation with customer provided client id and client secret, incremental pull configuration, salesforce upsert write operations and execution ID when on-demand flows are executed. --- .../feature-AmazonAppflow-23b9414.json | 5 + .../codegen-resources/service-2.json | 91 +++++++++++++++++-- 2 files changed, 86 insertions(+), 10 deletions(-) create mode 100644 .changes/next-release/feature-AmazonAppflow-23b9414.json diff --git a/.changes/next-release/feature-AmazonAppflow-23b9414.json b/.changes/next-release/feature-AmazonAppflow-23b9414.json new file mode 100644 index 000000000000..71fee23f4071 --- /dev/null +++ b/.changes/next-release/feature-AmazonAppflow-23b9414.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "Amazon Appflow", + "description": "Salesforce connector creation with customer provided client id and client secret, incremental pull configuration, salesforce upsert write operations and execution ID when on-demand flows are executed." +} diff --git a/services/appflow/src/main/resources/codegen-resources/service-2.json b/services/appflow/src/main/resources/codegen-resources/service-2.json index fa8e5e28ddaa..ece72b1fd765 100644 --- a/services/appflow/src/main/resources/codegen-resources/service-2.json +++ b/services/appflow/src/main/resources/codegen-resources/service-2.json @@ -420,6 +420,13 @@ "max":512, "pattern":".*" }, + "ClientCredentialsArn":{ + "type":"string", + "max":2048, + "min":20, + "pattern":"arn:aws:secretsmanager:.*:[0-9]+:.*", + "sensitive":true + }, "ClientId":{ "type":"string", "max":512, @@ -1138,6 +1145,11 @@ "documentation":"

The properties that are applied when Datadog is being used as a source.

" }, "Date":{"type":"timestamp"}, + "DatetimeTypeFieldName":{ + "type":"string", + "max":256, + "pattern":".*" + }, "DeleteConnectorProfileRequest":{ "type":"structure", "required":["connectorProfileName"], @@ -1424,6 +1436,14 @@ "isUpsertable":{ "shape":"Boolean", "documentation":"

Specifies if the flow run can either insert new rows in the destination field if they do not already exist, or update them if they do.

" + }, + "isUpdatable":{ + "shape":"Boolean", + "documentation":"

Specifies whether the field can be updated during an UPDATE or UPSERT write operation.

" + }, + "supportedWriteOperations":{ + "shape":"SupportedWriteOperationList", + "documentation":"

A list of supported write operations. For each write operation listed, this field can be used in idFieldNames when that write operation is present as a destination option.

" } }, "documentation":"

The properties that can be applied to a field when connector is being used as a destination.

" @@ -1809,7 +1829,7 @@ }, "clientSecret":{ "shape":"ClientSecret", - "documentation":"

The client secret used by the oauth client to authenticate to the authorization server.

" + "documentation":"

The client secret used by the OAuth client to authenticate to the authorization server.

" }, "accessToken":{ "shape":"AccessToken", @@ -1821,7 +1841,7 @@ }, "oAuthRequest":{ "shape":"ConnectorOAuthRequest", - "documentation":"

The oauth requirement needed to request security tokens from the connector endpoint.

" + "documentation":"

The OAuth requirement needed to request security tokens from the connector endpoint.

" } }, "documentation":"

The connector-specific profile credentials required by Google Analytics.

" @@ -1858,11 +1878,28 @@ "max":128, "pattern":"\\S+" }, + "IdFieldNameList":{ + "type":"list", + "member":{"shape":"Name"}, + "documentation":"

A list of field names that can be used as an ID field when performing a write operation.

", + "max":1, + "min":0 + }, "Identifier":{ "type":"string", "max":128, "pattern":"\\S+" }, + "IncrementalPullConfig":{ + "type":"structure", + "members":{ + "datetimeTypeFieldName":{ + "shape":"DatetimeTypeFieldName", + "documentation":"

A field that specifies the date time or timestamp field as the criteria to use when importing incremental records from the source.

" + } + }, + "documentation":"

Specifies the configuration used when importing incremental records from the source.

" + }, "InforNexusConnectorOperator":{ "type":"string", "enum":[ @@ -2078,7 +2115,7 @@ }, "clientSecret":{ "shape":"ClientSecret", - "documentation":"

The client secret used by the oauth client to authenticate to the authorization server.

" + "documentation":"

The client secret used by the OAuth client to authenticate to the authorization server.

" }, "accessToken":{ "shape":"AccessToken", @@ -2086,7 +2123,7 @@ }, "oAuthRequest":{ "shape":"ConnectorOAuthRequest", - "documentation":"

The oauth requirement needed to request security tokens from the connector endpoint.

" + "documentation":"

The OAuth requirement needed to request security tokens from the connector endpoint.

" } }, "documentation":"

The connector-specific profile credentials required by Marketo.

" @@ -2472,7 +2509,11 @@ }, "oAuthRequest":{ "shape":"ConnectorOAuthRequest", - "documentation":"

The oauth requirement needed to request security tokens from the connector endpoint.

" + "documentation":"

The OAuth requirement needed to request security tokens from the connector endpoint.

" + }, + "clientCredentialsArn":{ + "shape":"ClientCredentialsArn", + "documentation":"

The secret manager ARN, which contains the client ID and client secret of the connected app.

" } }, "documentation":"

The connector-specific profile credentials required when using Salesforce.

" @@ -2499,9 +2540,17 @@ "shape":"Object", "documentation":"

The object specified in the Salesforce flow destination.

" }, + "idFieldNames":{ + "shape":"IdFieldNameList", + "documentation":"

The name of the field that Amazon AppFlow uses as an ID when performing a write operation such as update or delete.

" + }, "errorHandlingConfig":{ "shape":"ErrorHandlingConfig", "documentation":"

The settings that determine how Amazon AppFlow handles an error when placing data in the Salesforce destination. For example, this setting would determine if the flow should fail after one insertion error, or continue and attempt to insert every record regardless of the initial failure. ErrorHandlingConfig is a part of the destination connector details.

" + }, + "writeOperationType":{ + "shape":"WriteOperationType", + "documentation":"

This specifies the type of write operation to be performed in Salesforce. When the value is UPSERT, then idFieldNames is required.

" } }, "documentation":"

The properties that are applied when Salesforce is being used as a destination.

" @@ -2759,7 +2808,7 @@ }, "clientSecret":{ "shape":"ClientSecret", - "documentation":"

The client secret used by the oauth client to authenticate to the authorization server.

" + "documentation":"

The client secret used by the OAuth client to authenticate to the authorization server.

" }, "accessToken":{ "shape":"AccessToken", @@ -2767,7 +2816,7 @@ }, "oAuthRequest":{ "shape":"ConnectorOAuthRequest", - "documentation":"

The oauth requirement needed to request security tokens from the connector endpoint.

" + "documentation":"

The OAuth requirement needed to request security tokens from the connector endpoint.

" } }, "documentation":"

The connector-specific profile credentials required when using Slack.

" @@ -2995,6 +3044,10 @@ "sourceConnectorProperties":{ "shape":"SourceConnectorProperties", "documentation":"

Specifies the information that is required to query a particular source connector.

" + }, + "incrementalPullConfig":{ + "shape":"IncrementalPullConfig", + "documentation":"

Defines the configuration for a scheduled incremental data pull. If a valid configuration is provided, the fields specified in the configuration are used when querying for the incremental data pull.

" } }, "documentation":"

Contains information about the configuration of the source connector used in the flow.

" @@ -3024,6 +3077,10 @@ "flowStatus":{ "shape":"FlowStatus", "documentation":"

Indicates the current status of the flow.

" + }, + "executionId":{ + "shape":"ExecutionId", + "documentation":"

Returns the internal execution ID of an on-demand flow when the flow is started. For scheduled or event-triggered flows, this value is null.

" } } }, @@ -3070,6 +3127,10 @@ "type":"list", "member":{"shape":"Value"} }, + "SupportedWriteOperationList":{ + "type":"list", + "member":{"shape":"WriteOperationType"} + }, "TagKey":{ "type":"string", "max":128, @@ -3171,7 +3232,8 @@ }, "Timezone":{ "type":"string", - "max":256 + "max":256, + "pattern":".*" }, "TrendmicroConnectorOperator":{ "type":"string", @@ -3471,6 +3533,15 @@ "max":512, "pattern":"[\\s\\w/!@#+=.-]*" }, + "WriteOperationType":{ + "type":"string", + "documentation":"

The possible write operations in the destination connector. When this value is not provided, this defaults to the INSERT operation.

", + "enum":[ + "INSERT", + "UPSERT", + "UPDATE" + ] + }, "ZendeskConnectorOperator":{ "type":"string", "enum":[ @@ -3503,7 +3574,7 @@ }, "clientSecret":{ "shape":"ClientSecret", - "documentation":"

The client secret used by the oauth client to authenticate to the authorization server.

" + "documentation":"

The client secret used by the OAuth client to authenticate to the authorization server.

" }, "accessToken":{ "shape":"AccessToken", @@ -3511,7 +3582,7 @@ }, "oAuthRequest":{ "shape":"ConnectorOAuthRequest", - "documentation":"

The oauth requirement needed to request security tokens from the connector endpoint.

" + "documentation":"

The OAuth requirement needed to request security tokens from the connector endpoint.

" } }, "documentation":"

The connector-specific profile credentials required when using Zendesk.

" From f1def2d38b29331281aa0f45532316872a1b91ba Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 22 Oct 2020 18:03:18 +0000 Subject: [PATCH 054/339] AWS Service Catalog Update: Documentation updates for servicecatalog --- .changes/next-release/feature-AWSServiceCatalog-c81fdb5.json | 5 +++++ .../src/main/resources/codegen-resources/service-2.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AWSServiceCatalog-c81fdb5.json diff --git a/.changes/next-release/feature-AWSServiceCatalog-c81fdb5.json b/.changes/next-release/feature-AWSServiceCatalog-c81fdb5.json new file mode 100644 index 000000000000..9a85821fe1e1 --- /dev/null +++ b/.changes/next-release/feature-AWSServiceCatalog-c81fdb5.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS Service Catalog", + "description": "Documentation updates for servicecatalog" +} diff --git a/services/servicecatalog/src/main/resources/codegen-resources/service-2.json b/services/servicecatalog/src/main/resources/codegen-resources/service-2.json index 187695d4532e..686619e0c865 100644 --- a/services/servicecatalog/src/main/resources/codegen-resources/service-2.json +++ b/services/servicecatalog/src/main/resources/codegen-resources/service-2.json @@ -6122,7 +6122,7 @@ }, "ProvisionedProductProperties":{ "shape":"ProvisionedProductProperties", - "documentation":"

A map that contains the provisioned product properties to be updated.

The LAUNCH_ROLE key accepts user ARNs and role ARNs. This key allows an administrator to call UpdateProvisionedProductProperties to update the launch role that is associated with a provisioned product. This role is used when an end-user calls a provisioning operation such as UpdateProvisionedProduct, TerminateProvisionedProduct, or ExecuteProvisionedProductServiceAction. Only an ARN role or null is valid. A user ARN is invalid. For example, if an admin user passes null as the value for the key LAUNCH_ROLE, the admin removes the launch role that is associated with the provisioned product. As a result, the end user operations use the credentials of the end user.

The OWNER key accepts user ARNs and role ARNs. The owner is the user that has permission to see, update, terminate, and execute service actions in the provisioned product.

The administrator can change the owner of a provisioned product to another IAM user within the same account. Both end user owners and administrators can see ownership history of the provisioned product using the ListRecordHistory API. The new owner can describe all past records for the provisioned product using the DescribeRecord API. The previous owner can no longer use DescribeRecord, but can still see the product's history from when he was an owner using ListRecordHistory.

If a provisioned product ownership is assigned to an end user, they can see and perform any action through the API or Service Catalog console such as update, terminate, and execute service actions. If an end user provisions a product and the owner is updated to someone else, they will no longer be able to see or perform any actions through API or the Service Catalog console on that provisioned product.

" + "documentation":"

A map that contains the provisioned product properties to be updated.

The LAUNCH_ROLE key accepts user ARNs and role ARNs. This key allows an administrator to call UpdateProvisionedProductProperties to update the launch role that is associated with a provisioned product. This role is used when an end-user calls a provisioning operation such as UpdateProvisionedProduct, TerminateProvisionedProduct, or ExecuteProvisionedProductServiceAction. Only an ARN role is valid. A user ARN is invalid.

The OWNER key accepts user ARNs and role ARNs. The owner is the user that has permission to see, update, terminate, and execute service actions in the provisioned product.

The administrator can change the owner of a provisioned product to another IAM user within the same account. Both end user owners and administrators can see ownership history of the provisioned product using the ListRecordHistory API. The new owner can describe all past records for the provisioned product using the DescribeRecord API. The previous owner can no longer use DescribeRecord, but can still see the product's history from when he was an owner using ListRecordHistory.

If a provisioned product ownership is assigned to an end user, they can see and perform any action through the API or Service Catalog console such as update, terminate, and execute service actions. If an end user provisions a product and the owner is updated to someone else, they will no longer be able to see or perform any actions through API or the Service Catalog console on that provisioned product.

" }, "IdempotencyToken":{ "shape":"IdempotencyToken", From c6c746762d7a1e0d49dd20e6408891b8c19cd544 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 22 Oct 2020 18:03:20 +0000 Subject: [PATCH 055/339] Access Analyzer Update: API Documentation updates for IAM Access Analyzer. --- .changes/next-release/feature-AccessAnalyzer-170b47a.json | 5 +++++ .../src/main/resources/codegen-resources/service-2.json | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 .changes/next-release/feature-AccessAnalyzer-170b47a.json diff --git a/.changes/next-release/feature-AccessAnalyzer-170b47a.json b/.changes/next-release/feature-AccessAnalyzer-170b47a.json new file mode 100644 index 000000000000..25bb8da77aea --- /dev/null +++ b/.changes/next-release/feature-AccessAnalyzer-170b47a.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "Access Analyzer", + "description": "API Documentation updates for IAM Access Analyzer." +} diff --git a/services/accessanalyzer/src/main/resources/codegen-resources/service-2.json b/services/accessanalyzer/src/main/resources/codegen-resources/service-2.json index 984c51aa13c8..4313bb012bfc 100644 --- a/services/accessanalyzer/src/main/resources/codegen-resources/service-2.json +++ b/services/accessanalyzer/src/main/resources/codegen-resources/service-2.json @@ -158,7 +158,7 @@ {"shape":"ThrottlingException"}, {"shape":"AccessDeniedException"} ], - "documentation":"

Retrieves information about an archive rule.

" + "documentation":"

Retrieves information about an archive rule.

To learn about filter keys that you can use to create an archive rule, see Access Analyzer filter keys in the IAM User Guide.

" }, "GetFinding":{ "name":"GetFinding", @@ -246,7 +246,7 @@ {"shape":"ThrottlingException"}, {"shape":"AccessDeniedException"} ], - "documentation":"

Retrieves a list of findings generated by the specified analyzer.

" + "documentation":"

Retrieves a list of findings generated by the specified analyzer.

To learn about filter keys that you can use to create an archive rule, see Access Analyzer filter keys in the IAM User Guide.

" }, "ListTagsForResource":{ "name":"ListTagsForResource", @@ -1673,5 +1673,5 @@ "min":1 } }, - "documentation":"

AWS IAM Access Analyzer helps identify potential resource-access risks by enabling you to identify any policies that grant access to an external principal. It does this by using logic-based reasoning to analyze resource-based policies in your AWS environment. An external principal can be another AWS account, a root user, an IAM user or role, a federated user, an AWS service, or an anonymous user. This guide describes the AWS IAM Access Analyzer operations that you can call programmatically. For general information about Access Analyzer, see the AWS IAM Access Analyzer section of the IAM User Guide.

To start using Access Analyzer, you first need to create an analyzer.

" + "documentation":"

AWS IAM Access Analyzer helps identify potential resource-access risks by enabling you to identify any policies that grant access to an external principal. It does this by using logic-based reasoning to analyze resource-based policies in your AWS environment. An external principal can be another AWS account, a root user, an IAM user or role, a federated user, an AWS service, or an anonymous user. This guide describes the AWS IAM Access Analyzer operations that you can call programmatically. For general information about Access Analyzer, see AWS IAM Access Analyzer in the IAM User Guide.

To start using Access Analyzer, you first need to create an analyzer.

" } From 81cce317f3fbf0c9152a4128bc48d8dadb1961ac Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 22 Oct 2020 18:03:20 +0000 Subject: [PATCH 056/339] Amazon Simple Notification Service Update: SNS now supports a new class of topics: FIFO (First-In-First-Out). FIFO topics provide strictly-ordered, deduplicated, filterable, encryptable, many-to-many messaging at scale. --- ...azonSimpleNotificationService-4f80a22.json | 5 +++++ .../codegen-resources/service-2.json | 22 ++++++++++++++----- 2 files changed, 22 insertions(+), 5 deletions(-) create mode 100644 .changes/next-release/feature-AmazonSimpleNotificationService-4f80a22.json diff --git a/.changes/next-release/feature-AmazonSimpleNotificationService-4f80a22.json b/.changes/next-release/feature-AmazonSimpleNotificationService-4f80a22.json new file mode 100644 index 000000000000..2ff5da7ba2e6 --- /dev/null +++ b/.changes/next-release/feature-AmazonSimpleNotificationService-4f80a22.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "Amazon Simple Notification Service", + "description": "SNS now supports a new class of topics: FIFO (First-In-First-Out). FIFO topics provide strictly-ordered, deduplicated, filterable, encryptable, many-to-many messaging at scale." +} diff --git a/services/sns/src/main/resources/codegen-resources/service-2.json b/services/sns/src/main/resources/codegen-resources/service-2.json index 834d2866eca7..d9c48dc8c4e6 100755 --- a/services/sns/src/main/resources/codegen-resources/service-2.json +++ b/services/sns/src/main/resources/codegen-resources/service-2.json @@ -126,7 +126,7 @@ {"shape":"TagPolicyException"}, {"shape":"ConcurrentAccessException"} ], - "documentation":"

Creates a topic to which notifications can be published. Users can create at most 100,000 topics. For more information, see https://aws.amazon.com/sns. This action is idempotent, so if the requester already owns a topic with the specified name, that topic's ARN is returned without creating a new topic.

" + "documentation":"

Creates a topic to which notifications can be published. Users can create at most 100,000 standard topics (at most 1,000 FIFO topics). For more information, see https://aws.amazon.com/sns. This action is idempotent, so if the requester already owns a topic with the specified name, that topic's ARN is returned without creating a new topic.

" }, "DeleteEndpoint":{ "name":"DeleteEndpoint", @@ -820,11 +820,11 @@ "members":{ "Name":{ "shape":"topicName", - "documentation":"

The name of the topic you want to create.

Constraints: Topic names must be made up of only uppercase and lowercase ASCII letters, numbers, underscores, and hyphens, and must be between 1 and 256 characters long.

" + "documentation":"

The name of the topic you want to create.

Constraints: Topic names must be made up of only uppercase and lowercase ASCII letters, numbers, underscores, and hyphens, and must be between 1 and 256 characters long.

For a FIFO (first-in-first-out) topic, the name must end with the .fifo suffix.

" }, "Attributes":{ "shape":"TopicAttributesMap", - "documentation":"

A map of attributes with their corresponding values.

The following lists the names, descriptions, and values of the special request parameters that the CreateTopic action uses:

  • DeliveryPolicy – The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints.

  • DisplayName – The display name to use for a topic with SMS subscriptions.

  • Policy – The policy that defines who can access your topic. By default, only the topic owner can publish or subscribe to the topic.

The following attribute applies only to server-side-encryption:

  • KmsMasterKeyId - The ID of an AWS-managed customer master key (CMK) for Amazon SNS or a custom CMK. For more information, see Key Terms. For more examples, see KeyId in the AWS Key Management Service API Reference.

" + "documentation":"

A map of attributes with their corresponding values.

The following lists the names, descriptions, and values of the special request parameters that the CreateTopic action uses:

  • DeliveryPolicy – The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints.

  • DisplayName – The display name to use for a topic with SMS subscriptions.

  • FifoTopic – Set to true to create a FIFO topic.

  • Policy – The policy that defines who can access your topic. By default, only the topic owner can publish or subscribe to the topic.

The following attribute applies only to server-side-encryption:

  • KmsMasterKeyId – The ID of an AWS-managed customer master key (CMK) for Amazon SNS or a custom CMK. For more information, see Key Terms. For more examples, see KeyId in the AWS Key Management Service API Reference.

The following attribute applies only to FIFO topics:

  • ContentBasedDeduplication – Enables content-based deduplication. Amazon SNS uses a SHA-256 hash to generate the MessageDeduplicationId using the body of the message (but not the attributes of the message).

  • When ContentBasedDeduplication is in effect, messages with identical content sent within the deduplication interval are treated as duplicates and only one copy of the message is delivered.

  • If the queue has ContentBasedDeduplication set, your MessageDeduplicationId overrides the generated one.

" }, "Tags":{ "shape":"TagList", @@ -1474,6 +1474,14 @@ "MessageAttributes":{ "shape":"MessageAttributeMap", "documentation":"

Message attributes for Publish action.

" + }, + "MessageDeduplicationId":{ + "shape":"String", + "documentation":"

This parameter applies only to FIFO (first-in-first-out) topics. The MessageDeduplicationId can contain up to 128 alphanumeric characters (a-z, A-Z, 0-9) and punctuation (!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~).

Every message must have a unique MessageDeduplicationId, which is a token used for deduplication of sent messages. If a message with a particular MessageDeduplicationId is sent successfully, any message sent with the same MessageDeduplicationId during the 5-minute deduplication interval is treated as a duplicate.

If the topic has ContentBasedDeduplication set, the system generates a MessageDeduplicationId based on the contents of the message. Your MessageDeduplicationId overrides the generated one.

" + }, + "MessageGroupId":{ + "shape":"String", + "documentation":"

This parameter applies only to FIFO (first-in-first-out) topics. The MessageGroupId can contain up to 128 alphanumeric characters (a-z, A-Z, 0-9) and punctuation (!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~).

The MessageGroupId is a tag that specifies that a message belongs to a specific message group. Messages that belong to the same message group are processed in a FIFO manner (however, messages in different message groups might be processed out of order). Every message must include a MessageGroupId.

" } }, "documentation":"

Input for Publish action.

" @@ -1484,6 +1492,10 @@ "MessageId":{ "shape":"messageId", "documentation":"

Unique identifier assigned to the published message.

Length Constraint: Maximum 100 characters

" + }, + "SequenceNumber":{ + "shape":"String", + "documentation":"

This response element applies only to FIFO (first-in-first-out) topics.

The sequence number is a large, non-consecutive number that Amazon SNS assigns to each message. The length of SequenceNumber is 128 bits. SequenceNumber continues to increase for each MessageGroupId.

" } }, "documentation":"

Response for Publish action.

" @@ -1607,7 +1619,7 @@ }, "AttributeName":{ "shape":"attributeName", - "documentation":"

A map of attributes with their corresponding values.

The following lists the names, descriptions, and values of the special request parameters that the SetTopicAttributes action uses:

  • DeliveryPolicy – The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints.

  • DisplayName – The display name to use for a topic with SMS subscriptions.

  • Policy – The policy that defines who can access your topic. By default, only the topic owner can publish or subscribe to the topic.

The following attribute applies only to server-side-encryption:

  • KmsMasterKeyId - The ID of an AWS-managed customer master key (CMK) for Amazon SNS or a custom CMK. For more information, see Key Terms. For more examples, see KeyId in the AWS Key Management Service API Reference.

" + "documentation":"

A map of attributes with their corresponding values.

The following lists the names, descriptions, and values of the special request parameters that the SetTopicAttributes action uses:

  • DeliveryPolicy – The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints.

  • DisplayName – The display name to use for a topic with SMS subscriptions.

  • Policy – The policy that defines who can access your topic. By default, only the topic owner can publish or subscribe to the topic.

The following attribute applies only to server-side-encryption:

  • KmsMasterKeyId – The ID of an AWS-managed customer master key (CMK) for Amazon SNS or a custom CMK. For more information, see Key Terms. For more examples, see KeyId in the AWS Key Management Service API Reference.

The following attribute applies only to FIFO topics:

  • ContentBasedDeduplication – Enables content-based deduplication. Amazon SNS uses a SHA-256 hash to generate the MessageDeduplicationId using the body of the message (but not the attributes of the message).

  • When ContentBasedDeduplication is in effect, messages with identical content sent within the deduplication interval are treated as duplicates and only one copy of the message is delivered.

  • If the queue has ContentBasedDeduplication set, your MessageDeduplicationId overrides the generated one.

" }, "AttributeValue":{ "shape":"attributeValue", @@ -1655,7 +1667,7 @@ }, "ReturnSubscriptionArn":{ "shape":"boolean", - "documentation":"

Sets whether the response from the Subscribe request includes the subscription ARN, even if the subscription is not yet confirmed.

If you set this parameter to true, the response includes the ARN in all cases, even if the subscription is not yet confirmed. In addition to the ARN for confirmed subscriptions, the response also includes the pending subscription ARN value for subscriptions that aren't yet confirmed. A subscription becomes confirmed when the subscriber calls the ConfirmSubscription action with a confirmation token.

The default value is false.

" + "documentation":"

Sets whether the response from the Subscribe request includes the subscription ARN, even if the subscription is not yet confirmed.

  • If you set this parameter to true, the response includes the ARN in all cases, even if the subscription is not yet confirmed. In addition to the ARN for confirmed subscriptions, the response also includes the pending subscription ARN value for subscriptions that aren't yet confirmed. A subscription becomes confirmed when the subscriber calls the ConfirmSubscription action with a confirmation token.

The default value is false.

" } }, "documentation":"

Input for Subscribe action.

" From bce9901ce476bdd6b4da0818f62bb9a0c62a8dc7 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 22 Oct 2020 18:04:30 +0000 Subject: [PATCH 057/339] Updated endpoints.json. --- .../feature-AWSSDKforJavav2-e97801d.json | 5 +++++ .../regions/internal/region/endpoints.json | 16 ++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-e97801d.json diff --git a/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json b/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json new file mode 100644 index 000000000000..a695ba6944db --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS SDK for Java v2", + "description": "Updated service endpoint metadata." +} diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json index 620f087e5297..728bd1fc2126 100644 --- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json +++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json @@ -614,6 +614,7 @@ "ca-central-1" : { }, "eu-central-1" : { }, "eu-north-1" : { }, + "eu-south-1" : { }, "eu-west-1" : { }, "eu-west-2" : { }, "eu-west-3" : { }, @@ -748,6 +749,7 @@ }, "backup" : { "endpoints" : { + "af-south-1" : { }, "ap-east-1" : { }, "ap-northeast-1" : { }, "ap-northeast-2" : { }, @@ -757,6 +759,7 @@ "ca-central-1" : { }, "eu-central-1" : { }, "eu-north-1" : { }, + "eu-south-1" : { }, "eu-west-1" : { }, "eu-west-2" : { }, "eu-west-3" : { }, @@ -3296,6 +3299,7 @@ "sa-east-1" : { }, "us-east-1" : { }, "us-east-2" : { }, + "us-west-1" : { }, "us-west-2" : { } } }, @@ -6725,6 +6729,12 @@ "cn-northwest-1" : { } } }, + "fsx" : { + "endpoints" : { + "cn-north-1" : { }, + "cn-northwest-1" : { } + } + }, "gamelift" : { "endpoints" : { "cn-north-1" : { } @@ -6982,6 +6992,12 @@ "cn-northwest-1" : { } } }, + "securityhub" : { + "endpoints" : { + "cn-north-1" : { }, + "cn-northwest-1" : { } + } + }, "serverlessrepo" : { "defaults" : { "protocols" : [ "https" ] From f6716e5e4d9bf863cd399f5c3b1919d6024db600 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 22 Oct 2020 18:04:59 +0000 Subject: [PATCH 058/339] Release 2.15.13. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.13.json | 31 +++++++++++++++++++ .../feature-AWSSDKforJavav2-e97801d.json | 5 --- .../feature-AWSServiceCatalog-c81fdb5.json | 5 --- .../feature-AccessAnalyzer-170b47a.json | 5 --- .../feature-AmazonAppflow-23b9414.json | 5 --- ...azonSimpleNotificationService-4f80a22.json | 5 --- CHANGELOG.md | 21 +++++++++++++ README.md | 8 ++--- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- .../serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 288 files changed, 336 insertions(+), 309 deletions(-) create mode 100644 .changes/2.15.13.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-e97801d.json delete mode 100644 .changes/next-release/feature-AWSServiceCatalog-c81fdb5.json delete mode 100644 .changes/next-release/feature-AccessAnalyzer-170b47a.json delete mode 100644 .changes/next-release/feature-AmazonAppflow-23b9414.json delete mode 100644 .changes/next-release/feature-AmazonSimpleNotificationService-4f80a22.json diff --git a/.changes/2.15.13.json b/.changes/2.15.13.json new file mode 100644 index 000000000000..293eccb6f4cb --- /dev/null +++ b/.changes/2.15.13.json @@ -0,0 +1,31 @@ +{ + "version": "2.15.13", + "date": "2020-10-22", + "entries": [ + { + "type": "feature", + "category": "Amazon Appflow", + "description": "Salesforce connector creation with customer provided client id and client secret, incremental pull configuration, salesforce upsert write operations and execution ID when on-demand flows are executed." + }, + { + "type": "feature", + "category": "Amazon Simple Notification Service", + "description": "SNS now supports a new class of topics: FIFO (First-In-First-Out). FIFO topics provide strictly-ordered, deduplicated, filterable, encryptable, many-to-many messaging at scale." + }, + { + "type": "feature", + "category": "Access Analyzer", + "description": "API Documentation updates for IAM Access Analyzer." + }, + { + "type": "feature", + "category": "AWS Service Catalog", + "description": "Documentation updates for servicecatalog" + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "description": "Updated service endpoint metadata." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json b/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json deleted file mode 100644 index a695ba6944db..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-e97801d.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS SDK for Java v2", - "description": "Updated service endpoint metadata." -} diff --git a/.changes/next-release/feature-AWSServiceCatalog-c81fdb5.json b/.changes/next-release/feature-AWSServiceCatalog-c81fdb5.json deleted file mode 100644 index 9a85821fe1e1..000000000000 --- a/.changes/next-release/feature-AWSServiceCatalog-c81fdb5.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS Service Catalog", - "description": "Documentation updates for servicecatalog" -} diff --git a/.changes/next-release/feature-AccessAnalyzer-170b47a.json b/.changes/next-release/feature-AccessAnalyzer-170b47a.json deleted file mode 100644 index 25bb8da77aea..000000000000 --- a/.changes/next-release/feature-AccessAnalyzer-170b47a.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "Access Analyzer", - "description": "API Documentation updates for IAM Access Analyzer." -} diff --git a/.changes/next-release/feature-AmazonAppflow-23b9414.json b/.changes/next-release/feature-AmazonAppflow-23b9414.json deleted file mode 100644 index 71fee23f4071..000000000000 --- a/.changes/next-release/feature-AmazonAppflow-23b9414.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Appflow", - "description": "Salesforce connector creation with customer provided client id and client secret, incremental pull configuration, salesforce upsert write operations and execution ID when on-demand flows are executed." -} diff --git a/.changes/next-release/feature-AmazonSimpleNotificationService-4f80a22.json b/.changes/next-release/feature-AmazonSimpleNotificationService-4f80a22.json deleted file mode 100644 index 2ff5da7ba2e6..000000000000 --- a/.changes/next-release/feature-AmazonSimpleNotificationService-4f80a22.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Simple Notification Service", - "description": "SNS now supports a new class of topics: FIFO (First-In-First-Out). FIFO topics provide strictly-ordered, deduplicated, filterable, encryptable, many-to-many messaging at scale." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index 45621d6c5be5..bb3ad1f6f392 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +# __2.15.13__ __2020-10-22__ +## __AWS SDK for Java v2__ + - ### Features + - Updated service endpoint metadata. + +## __AWS Service Catalog__ + - ### Features + - Documentation updates for servicecatalog + +## __Access Analyzer__ + - ### Features + - API Documentation updates for IAM Access Analyzer. + +## __Amazon Appflow__ + - ### Features + - Salesforce connector creation with customer provided client id and client secret, incremental pull configuration, salesforce upsert write operations and execution ID when on-demand flows are executed. + +## __Amazon Simple Notification Service__ + - ### Features + - SNS now supports a new class of topics: FIFO (First-In-First-Out). FIFO topics provide strictly-ordered, deduplicated, filterable, encryptable, many-to-many messaging at scale. + # __2.15.12__ __2020-10-21__ ## __AWS Global Accelerator__ - ### Features diff --git a/README.md b/README.md index 0b7b0741b1bc..ffb1f73bbf31 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.12 + 2.15.13 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.12 + 2.15.13 software.amazon.awssdk s3 - 2.15.12 + 2.15.13 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.12 + 2.15.13 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index c9a9e4d548e6..6f084224d13b 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index e065e7efb91d..b469750d05e0 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index ec42da3cf569..ee3fce71ae6e 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.15.13-SNAPSHOT + 2.15.13 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index d67d2718186c..5583b6a2f235 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 4da49ff263f1..a43bb3869991 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.13-SNAPSHOT + 2.15.13 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 64f19da9c5c9..09a2b4c59323 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.13-SNAPSHOT + 2.15.13 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 757a6647d10d..98cc496c0fb3 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.15.13-SNAPSHOT + 2.15.13 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 8d462f31c5bc..23fd90d0e0a7 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.13-SNAPSHOT + 2.15.13 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 07d0bb10cc00..7c98ea249101 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.15.13-SNAPSHOT + 2.15.13 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 1682cc048c34..9cce871def16 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.13-SNAPSHOT + 2.15.13 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 5751f214a882..ac0a26c88568 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index b019854e5857..7ce316bdc723 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index d3cb3de7054c..c7232f3fd80c 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.13-SNAPSHOT + 2.15.13 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index f2b9b74c9c48..a6a71de583fe 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.13-SNAPSHOT + 2.15.13 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 3f67dc7c2850..3c303061af00 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 18b10371fa5a..696f22718043 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 02c7a49bbe79..a7866440fcad 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.13-SNAPSHOT + 2.15.13 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 5ea02dceea07..b9e09a3102a8 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.15.13-SNAPSHOT + 2.15.13 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 870a091db42a..b9a6f4f1cce1 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 853051f1c9ab..c79c12be8cc0 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.15.13-SNAPSHOT + 2.15.13 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 7e9b4c7449b5..2f13961d2bf5 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.15.13-SNAPSHOT + 2.15.13 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index a175b13889eb..1cc2bc0aa582 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.15.13-SNAPSHOT + 2.15.13 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 5f6252876433..1df1e6e8a8d1 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index c3c26de589c8..9756bc2473c4 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 4cea829af267..c418e061ddef 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.13-SNAPSHOT + 2.15.13 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 4e294dbde6d3..f8695ade7e4b 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.13-SNAPSHOT + 2.15.13 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 87a3cb2d3cc4..82fbce6ec6da 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.15.13-SNAPSHOT + 2.15.13 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 39fc8c091c3a..ccb3a03ff623 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.15.13-SNAPSHOT + 2.15.13 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index eca1f564a4a3..2ed00b36ae7c 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.15.13-SNAPSHOT + 2.15.13 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index bdaf68ef108a..895de02025f4 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.15.13-SNAPSHOT + 2.15.13 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 3c6a6a60c143..02e0b8aa9633 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index d256bde44133..2a9e131cdeb0 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.15.13-SNAPSHOT + 2.15.13 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index fa86d205c1dd..468d0b0c0a8f 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.15.13-SNAPSHOT + 2.15.13 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index ac7f49b2863b..528615f6f064 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.13-SNAPSHOT + 2.15.13 metric-publishers diff --git a/pom.xml b/pom.xml index aedbecc81fe7..244e5749e8dc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.13-SNAPSHOT + 2.15.13 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 389622620a91..0dedd83e8943 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.13-SNAPSHOT + 2.15.13 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index f2b5b5caeb7f..3bffd015f140 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.15.13-SNAPSHOT + 2.15.13 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 949704412769..89950395bc37 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.13-SNAPSHOT + 2.15.13 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 3afad1dd0c9f..bd0a7d6c8bc5 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index b8c8c9d40cf1..6ab51cd0ee0b 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 3389c2be2093..f868b8dfe364 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 858d8045fadb..68bcef0cd4c2 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index a180a3ac44ad..0935f1c62823 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 164346ef7500..ee59900f6b8b 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 28d209905a46..e5ea19ceb247 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 92957f214eea..0d98b45f2fd5 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 93eedbac3b33..0d5e658c71cd 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 8ec8152610c2..60f615887a08 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index d3967b20e1b8..8629ef24b5e3 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index def4ae5d246c..6b4136cef7d0 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index d92995b4c352..f2af35fe88c0 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 3b17e59898b2..c68ae346dfda 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index e87435823c7f..979476b7aff6 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index c7d6de461ab1..6392c121087f 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 666d8a304c4c..c5869b9a87c6 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 0702a4d5a612..c2598dd94a2f 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 62d524653f82..dca3430d6259 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index aac8e2d456f2..37617f10027b 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 0b28b53075a2..09c153860758 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 200a30ab7228..fb9d664502e3 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index b778b31cc4c1..cde8f090c9ab 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 6141cf655e53..065137f620d7 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 92294e43d9e8..5bb6e04b491b 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 3ae0fcd25f1a..8eb40f9d4fae 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 3673833127b4..0316e81eec1c 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 8e058757fa9c..b1c314ea76d3 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 45fed5889cca..08c756c7eaa6 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index b7fb63c033cd..fb550895a52d 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 038b5d652a7c..073fb22917a1 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 6ff42184de32..84cb8cb540f0 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 56876cf04824..69e344f99f78 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index aaaf2878a892..a05062efa094 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index a6fc2e44f47c..c221dd60cd11 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index ff616691381c..7b29bee60700 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 45b1fa695ace..df6368f85947 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index b702ca559562..415b55b71a65 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 38c6c7aa0730..b87442ce0442 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 05cbc50c4a69..65640e417973 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 66fea16fda2a..e8073d66427e 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 6cfc4bf9bce0..1d05d7907016 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 390d16866d77..7b26f001cdc6 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index f5337b4ba430..39eb6c3c61da 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index f245aa8b9ac8..db5d768502f8 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index d6a10a49260a..78625f384f25 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index aef2ccd4f6e5..6c7696e4e4fa 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index d4eebfd2a28f..f804d652e14c 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 6f6a1224a572..cfa74119945d 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index fa6e1d96bcb9..003b492f40a5 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index d8c0f2d5a2ef..5045d43c66fc 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 087e9128b479..9c3d77a1b848 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 08e47c41a7cd..95739e4f4684 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 3640536ac6bc..200961ffeff1 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 9ccf6fdff383..6143cda4a312 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 59cf28b3d2d7..0a5bec11323c 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index fe0cd80c5c86..f439eed7e2ae 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 48fc7d59655f..08aa76bcf47d 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 1f40de46469a..87b350fe83bb 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 05ad848c5d2a..fb4d74cca87f 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 003e4f3055ca..7ac24b82a620 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index db94f81a4192..58e6d94b38af 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 4a28fa33104b..b23c3cab8c59 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 2d778b67ab47..8f26f6d78623 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index f37345a69bbe..6b2db95976d7 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index dfa6917cfc81..d10befafc18b 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 7342d2b00dae..26b8d6ce4508 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index a0a2feee15c7..418e08de2086 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 040c16a92c86..6d5849e6b873 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 2bd69dc8813c..c3de9ac4c23f 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 714bc44ca8bd..23a86d590c19 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 80c4603d8f9d..c142755c2a47 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 4c884e36e585..e6e9176ae39f 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index f8aa45201e75..8c77e1c3e671 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 98111e788025..2b54a535fa32 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 0ba9ff247cbb..b4312c382790 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 8a3cb7b2890f..c68b14c52961 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 868db4066b6d..721a4d30e6a5 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index d40a927dcaef..5e0b72d3e9fa 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index f7a6385cd5d5..58b65ed1f18c 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 61ed7309ff6d..78068d40e413 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 7d6c2fb94ddc..ae2ef2da0da5 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index db33876680a3..60e7e0215ed4 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 2a5708be96d0..cd1fcc6c54b6 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index e9120e2ddfdc..849dc7fce240 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 417bbd41c911..4702d16b8f91 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 5e416fc4a02d..9544bf12c3ad 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index dcb5b49ff4d6..2b70a8884956 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 871f90b541fe..8718e24780e7 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index c82f07c4fa31..14343d5b5fab 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 0bb19f111f9e..274d291e0a59 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 162dc3cc1d3b..e33da0a330be 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 577d201585b9..302b01180bc8 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 810a3996b432..d06b0ccfe1a3 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 558a1da2f142..68e1b6b91ad9 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 93ed64759ba9..24df9dbb37a0 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 2942cf2c5167..c45651332595 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index ed67a3ed9e8f..efa1d2be3c3e 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 5d7f65d60e51..950de1769f3b 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 7a1713531ec3..1faae6f2370e 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 56d8b20bc814..619205160be7 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 8d6af0edc15f..6d36ae4b2173 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 4634dcc68c7b..27d3c8c9454e 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 0948acd7976a..7fe5d9a7619b 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 69ebc642d3d4..6790143f3cdf 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 1c1de0fc5c97..4f68a3aafc42 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index a581a046377e..c738f3e0e6f9 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index d23790c96164..72575b6387f3 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index b04aca869845..3131b6ef1eeb 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index f4c1a022092b..632fdc2aff02 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 977948c0db65..a79f99b14ed1 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 837da7bfc96e..cfd62569d983 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index cfca13d80ebc..ce2737f997d8 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 56882c477859..3ccb2e93a41b 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 5ca1c6409d6c..cce4fc751b85 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 4c11e06f6872..e0fba17aebcf 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index a0f90db16603..8e9f96ebf0a8 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index aa750b22e372..d850e611ab08 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 8d6036d6bdfe..04e0f26947e9 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index ce2718e486d5..1079c6bb5021 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 3493d4d8c3cc..05124dbcc8f7 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index c97e078c2ef1..4777388e4746 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index c3e0d5e15616..b7d70cc8121e 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index dc6004cf358e..3fa7ff1564ba 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index c729b6166d5b..a960c7ef48ce 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 999cd037c5fe..4469226baa08 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index e8a5c24e1e65..47eecbb1bd56 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 18af48c2654d..974b6a0dade1 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 78ddb7a073fb..1bc22581bae1 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 98221bd3d82f..34a20af7c409 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 744bc7560cc2..94c1ab7f8d23 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 6de5840652b2..4cc1bd0107d5 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 26f5b0b13374..b691ec5bee7f 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 14e664f7bcf4..d7a2266b347f 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 53916471223f..8caace4a5d9b 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 7505a091d5a4..0bc23223df7d 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 837f93109b01..e5389336dbd4 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index c6f09f459db2..58f87c479b9a 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index ce37bc7c1f8a..6b56554e6dc9 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 0a92161bf8d7..acbc5d108b29 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 963bde4fa1f8..0f7a85e502aa 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index c11b8d86e8fa..4fc82ed4b3f5 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index ad29a2e55001..e9433261df6b 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 76a9adb3bb1a..9908d4af73a2 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index c0de4ca9403f..a2d2574b2642 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 3af7ac42f9a6..a4316826d91c 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 0d4e4fa802cc..2ebaef4d0690 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 263cd34d3921..303c6b9257d8 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 4f0dbdbfadd3..680a32b4ce3a 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index f3079d68c12c..c54152bf6063 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 9681df69bf36..e71cc8e888a3 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 53940382bea2..0f5eb281c81e 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 038f231facf9..ed0a5ae4066d 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 3612b8144d83..f4efc757907a 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 91a4963537f8..d7976081c1ec 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 4bb1ec23e9f9..06081b065da5 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index d4074b220f0a..4b38df77f9d5 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 37c917164c7a..9813bb574f37 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 99ea51cd0978..57bda1632b88 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 0c27ae02c940..0500f2be12e3 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 721e128f86ae..493be691ad72 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index eb2dcf8a965c..669320924219 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 125751044ef1..c8ce72e554d9 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 4d4809b068d0..3d8caf6214c1 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 836383b4cdca..5d4cde897f6e 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 80fd873ba3da..bff3792e6785 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index eb0b8eda967a..ae75cfd5da27 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 30c5b26563df..d5f0012047d2 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.13-SNAPSHOT + 2.15.13 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 34f064e33d8d..e26e537ad534 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index e4cb16826061..645a59034038 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index c4b0a69046aa..d2f220cf8ee0 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 372a24b12429..a10aa8fdc73c 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index ddef372b50af..abc656a5fd7e 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index f6edc16bc3fb..8163391aa532 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index f244231fae68..d5f7756458ce 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 3aee380d4758..8b12bb408aaf 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 4d8374916488..4588788f6093 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 872c95500963..af79c5094d86 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 9ca8bfd4d118..43d42c8ca84b 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 9f5aca5771e2..e5e705a1ade2 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 3a25ff06968f..e52e275d2e33 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 7e37b9320088..3784d1d7b4ae 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index c00739a8c21d..82e843d4e3a6 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 8773850781b2..4096ccc81f17 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 483d472c8078..b375a76e3b00 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index c77d9109bae1..5d7104db7f72 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 20509c85bdc3..5236af2d3b9b 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 5134646ebafa..1c011ad001b0 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 0822e8e67064..5439100ed894 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 6f3c020fe2be..ccb3e28e2578 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 15fee7989a38..05a1535db163 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index b63ece609439..6abd8ae6025e 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index aded942d0ba0..6986ac9518c3 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 0e3f8cd375d4..38089fd60bcc 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 066beeb98f50..1796569bac05 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index e9eb790b900c..8b66578a3514 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 77e868316425..b39a25c443a0 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 45991080b062..3ef2f58384c5 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 9b2174069569..a2fdb70d036a 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 53bfb078dffb..d988b686f752 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 16bae2289810..d1c8519027ff 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index f56852d73edd..ca45373b7993 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index de3c035a45a5..ed65999633ba 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 04a1bb28f6d6..f68bcfe33497 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index ace09826231a..3c608856376c 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 30a89d29d51b..5c1778267450 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index df0a46b1f8ff..003024922537 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 45fc020f9daa..47f236299997 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index cd7284df3242..05f8e5657c3d 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 6d6022ae7a52..a4d27f6bc3e9 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 5e2fdfbb81b6..a140f7eabbd3 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index d0fe6958f6c5..2697b269ed31 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 9d21a6f1d550..91f375c74780 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index b6f16af24b40..23b9991e447a 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index b5c54a73b8c4..ee1468a5da6e 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index b6330b6c1246..27b0a96b8c34 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 9e6a8242102d..424556570022 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index b6b5beef64dd..fe6ae7f21e46 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 0d37e13d4794..74ab1d2d01e4 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index afc87d8d7262..1facf9ed597a 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index b0f140a3c6f1..b6280a7827b7 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index db79cee13c04..c2afc2cee922 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 467d0fdf34c6..67174749c058 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 40814f7261b1..fa7c3e397cf3 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 934c62b51dfe..e298fad0c404 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index d1edf874d888..6d2ba413cc88 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 80ba4ee5d294..ae26aa0de099 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 17663666df65..725ad8abefa1 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index db436fad04ec..3b051076bc41 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index fbb7c42cb659..a35d92192f2b 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index b64315733ace..4bdcfe09caeb 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13-SNAPSHOT + 2.15.13 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 2fe12c6047e2..66873d32abc4 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.15.13-SNAPSHOT + 2.15.13 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 5261428d0ab3..1c455d5951bc 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.15.13-SNAPSHOT + 2.15.13 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index cd71ca177d97..89aad349dc23 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.15.13-SNAPSHOT + 2.15.13 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index d461ca4582a0..131b030f6354 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.15.13-SNAPSHOT + 2.15.13 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index d06068bceda3..b67b45ac0091 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.15.13-SNAPSHOT + 2.15.13 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 3e040c861c9c..6114c1305130 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.13-SNAPSHOT + 2.15.13 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index faf1afc8a37e..93191ca6e0ef 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.15.13-SNAPSHOT + 2.15.13 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 3028cdc1ab5d..38ac9aa8b308 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.15.13-SNAPSHOT + 2.15.13 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 8169e29e669d..8fb8bdab3635 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.15.13-SNAPSHOT + 2.15.13 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index aedf143ae13e..1264849a7a09 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.15.13-SNAPSHOT + 2.15.13 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 113b61cad1a9..b513f6c942bb 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.13-SNAPSHOT + 2.15.13 4.0.0 From 4daf8dd1ff62e9a056c2931638313ae3f00a90d4 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 22 Oct 2020 18:30:19 +0000 Subject: [PATCH 059/339] Update to next snapshot version: 2.15.14-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 280 files changed, 280 insertions(+), 280 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 6f084224d13b..eb7521bb3b6b 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index b469750d05e0..5d48515b8db4 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index ee3fce71ae6e..1853a7b4fb91 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.15.13 + 2.15.14-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 5583b6a2f235..608ae31f3c57 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index a43bb3869991..ad1184b6896f 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.13 + 2.15.14-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 09a2b4c59323..5d02d585036b 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.13 + 2.15.14-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 98cc496c0fb3..6682fbcd11d5 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.15.13 + 2.15.14-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 23fd90d0e0a7..c7f783d39561 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.13 + 2.15.14-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 7c98ea249101..3fe25e2ecf3c 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.15.13 + 2.15.14-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 9cce871def16..2a90d84b887b 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.13 + 2.15.14-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index ac0a26c88568..bd0fc1b88427 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 7ce316bdc723..786aa1b86a73 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index c7232f3fd80c..0f4a2fb948dd 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.13 + 2.15.14-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index a6a71de583fe..825533a60513 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.13 + 2.15.14-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 3c303061af00..ac7f80877c76 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 696f22718043..c61b0d64fca1 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index a7866440fcad..63e4c8a1fd09 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.13 + 2.15.14-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index b9e09a3102a8..1596e4f11524 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.15.13 + 2.15.14-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index b9a6f4f1cce1..0e285f9b6b5d 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index c79c12be8cc0..e36d8f931c2c 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.15.13 + 2.15.14-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 2f13961d2bf5..159db053d3d8 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.15.13 + 2.15.14-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 1cc2bc0aa582..26b5c644d603 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.15.13 + 2.15.14-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 1df1e6e8a8d1..ad9fb956094f 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 9756bc2473c4..0eb0ed39ab01 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index c418e061ddef..a1ed5394c99f 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.13 + 2.15.14-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index f8695ade7e4b..fc0db8c344e6 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.13 + 2.15.14-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 82fbce6ec6da..8852a80a44ef 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.15.13 + 2.15.14-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index ccb3a03ff623..acf7d92c0871 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.15.13 + 2.15.14-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 2ed00b36ae7c..555e96a77cc4 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.15.13 + 2.15.14-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 895de02025f4..c67810b1129a 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.15.13 + 2.15.14-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 02e0b8aa9633..a8a6f1ae8743 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 2a9e131cdeb0..1c98fdd73965 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.15.13 + 2.15.14-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 468d0b0c0a8f..c73367ec03dd 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.15.13 + 2.15.14-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 528615f6f064..74f2d47a4acb 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.13 + 2.15.14-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 244e5749e8dc..6a62e42611fc 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.13 + 2.15.14-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 0dedd83e8943..37c688919fc3 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.13 + 2.15.14-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 3bffd015f140..3efd46f6e361 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.15.13 + 2.15.14-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 89950395bc37..85966d0309b8 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.13 + 2.15.14-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index bd0a7d6c8bc5..24feb113500b 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 6ab51cd0ee0b..c667c080392b 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index f868b8dfe364..567ed9f9bf59 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 68bcef0cd4c2..b66c4a46cef9 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 0935f1c62823..363b751ca1e8 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index ee59900f6b8b..fc12d090e0c9 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index e5ea19ceb247..5ecd3bdebc8d 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 0d98b45f2fd5..2b8be5718627 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 0d5e658c71cd..31957c81432d 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 60f615887a08..c245d902710b 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 8629ef24b5e3..58a43027009c 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 6b4136cef7d0..7dcf756bd3ae 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index f2af35fe88c0..4e5c3870f5f3 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index c68ae346dfda..7061cff33be4 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 979476b7aff6..eaff3aff3f02 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 6392c121087f..2325f94d346d 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index c5869b9a87c6..b414ca64ff59 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index c2598dd94a2f..20cab641189c 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index dca3430d6259..16b85d073c19 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 37617f10027b..8b4d4781b618 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 09c153860758..e35445a36b84 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index fb9d664502e3..8ae0ce94a8df 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index cde8f090c9ab..3986a071fb8a 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 065137f620d7..4a9c6f18a215 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 5bb6e04b491b..06d47a16887c 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 8eb40f9d4fae..9041b7ddedd5 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 0316e81eec1c..28b8ec7d72f8 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index b1c314ea76d3..838f59e86cad 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 08c756c7eaa6..aaf7529812a6 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index fb550895a52d..384d955cca0a 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 073fb22917a1..40389217b815 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 84cb8cb540f0..49ed3069b83d 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 69e344f99f78..d227f8e27c67 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index a05062efa094..2aecee77834d 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index c221dd60cd11..f6bd3809b019 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 7b29bee60700..0474db0e240b 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index df6368f85947..2e46cfe1b04d 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 415b55b71a65..5856bf37af0a 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index b87442ce0442..7b1426896551 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 65640e417973..e83213644971 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index e8073d66427e..120ae4a641f3 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 1d05d7907016..72f33b5c5406 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 7b26f001cdc6..1148a9e6f273 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 39eb6c3c61da..1873894810ab 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index db5d768502f8..3aba007a3e87 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 78625f384f25..3e30867e999b 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 6c7696e4e4fa..8539196c3d30 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index f804d652e14c..1bc9797cc59f 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index cfa74119945d..8514bee5127a 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 003b492f40a5..52e5f0535f27 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 5045d43c66fc..ce592d832361 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 9c3d77a1b848..fafa035ba81d 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 95739e4f4684..ea2766e7cac0 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 200961ffeff1..c91b8d2c15c0 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 6143cda4a312..e5dfe4146947 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 0a5bec11323c..58d4d93cc94c 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index f439eed7e2ae..28acb79effb0 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 08aa76bcf47d..47a3e56c9aa1 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 87b350fe83bb..ee68a243eef0 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index fb4d74cca87f..a0b2fd0c7234 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 7ac24b82a620..f07cf8424c27 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 58e6d94b38af..e7b667e52c67 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index b23c3cab8c59..3748eb922e7e 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 8f26f6d78623..97f0b1ea12c5 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 6b2db95976d7..7ae858e08207 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index d10befafc18b..2432386e38ce 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 26b8d6ce4508..8d024e291672 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 418e08de2086..63dbb84003cc 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 6d5849e6b873..11b4a04ef57a 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index c3de9ac4c23f..3917e5e6df42 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 23a86d590c19..37854857e172 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index c142755c2a47..89247c2348d6 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index e6e9176ae39f..b9360fd30148 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 8c77e1c3e671..13a944d2bf1a 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 2b54a535fa32..5c0742fac4e9 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index b4312c382790..e0a3004cb0d9 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index c68b14c52961..f828e32d91e3 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 721a4d30e6a5..87d9870e8719 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 5e0b72d3e9fa..4707ff2c4370 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 58b65ed1f18c..0d5e93bf7a62 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 78068d40e413..0f3ec556a85d 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index ae2ef2da0da5..fd7ba0bdd7f6 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 60e7e0215ed4..26013b87ae36 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index cd1fcc6c54b6..1a61696aff77 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 849dc7fce240..f5db61381744 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 4702d16b8f91..cc1d7bea45dd 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 9544bf12c3ad..e6f18931ce58 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 2b70a8884956..355a3230ddf7 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 8718e24780e7..664194ab03d0 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 14343d5b5fab..069e7f1b3715 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 274d291e0a59..06641a46537d 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index e33da0a330be..891da48f2d6e 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 302b01180bc8..c33d51ab1f15 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index d06b0ccfe1a3..3dc89a33332d 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 68e1b6b91ad9..f72ee23ef674 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 24df9dbb37a0..fd00edc27d60 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index c45651332595..7aca4a55121b 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index efa1d2be3c3e..db9473c8a314 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 950de1769f3b..a62235e52897 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 1faae6f2370e..73d345d0fe31 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 619205160be7..e6fb3ce33a7d 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 6d36ae4b2173..9e3b3198c15a 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 27d3c8c9454e..8b394f4343ca 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 7fe5d9a7619b..30d6f8bd693d 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 6790143f3cdf..f33b4a239ba0 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 4f68a3aafc42..4aa0bfad9793 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index c738f3e0e6f9..c30110a1b641 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 72575b6387f3..f9bf8d1b3d24 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 3131b6ef1eeb..24a3445727d1 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 632fdc2aff02..62304b107264 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index a79f99b14ed1..4f0bef0ae67f 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index cfd62569d983..1729ad91cfff 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index ce2737f997d8..0432309e4704 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 3ccb2e93a41b..290629f71da5 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index cce4fc751b85..d9427c8002cb 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index e0fba17aebcf..39166bb59411 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 8e9f96ebf0a8..08665da4817f 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index d850e611ab08..ef46db315e4c 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 04e0f26947e9..f09bb41a75a4 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 1079c6bb5021..33b4c17cdb0f 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 05124dbcc8f7..1797b1741cd7 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 4777388e4746..d5f384dd7450 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index b7d70cc8121e..9931c21a8879 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 3fa7ff1564ba..2328f9f2c7ce 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index a960c7ef48ce..f4006700f8b8 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 4469226baa08..f9961a08a357 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 47eecbb1bd56..fd022697da88 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 974b6a0dade1..683ce70ee599 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 1bc22581bae1..cd7a28fcb254 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 34a20af7c409..bc74337ac77e 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 94c1ab7f8d23..5836aed7c8ea 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 4cc1bd0107d5..e6a197ff390e 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index b691ec5bee7f..25d60bfb8dd9 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index d7a2266b347f..734cbe274bfd 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 8caace4a5d9b..74ae4ed67172 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 0bc23223df7d..003ee581a3be 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index e5389336dbd4..31a20c1d0570 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 58f87c479b9a..5fa1ec99bfd8 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 6b56554e6dc9..e19c402941b1 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index acbc5d108b29..a93aae09e5f3 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 0f7a85e502aa..b0c00449da3d 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 4fc82ed4b3f5..25fc52705b22 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index e9433261df6b..577dc6b41895 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 9908d4af73a2..46ae48cffd34 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index a2d2574b2642..8d7fb2b6dc45 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index a4316826d91c..57d68175db0d 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 2ebaef4d0690..25b08522a30e 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 303c6b9257d8..9bd78ec297a0 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 680a32b4ce3a..ac5b9d7927bf 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index c54152bf6063..c5f779044dd4 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index e71cc8e888a3..5bc3bd63d4cd 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 0f5eb281c81e..a92439ad6e0b 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index ed0a5ae4066d..ac9e802c63fb 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index f4efc757907a..5a3b2511ef9a 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index d7976081c1ec..55872d022992 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 06081b065da5..96fa02f7b119 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 4b38df77f9d5..558be57c2f68 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 9813bb574f37..89cd63cb5569 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 57bda1632b88..f231930c0158 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 0500f2be12e3..da72a3553f35 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 493be691ad72..f274ba981bdb 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 669320924219..f740ca93d9a4 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index c8ce72e554d9..b3522c38f423 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 3d8caf6214c1..2e09ff67c8e3 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 5d4cde897f6e..8374387bf620 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index bff3792e6785..e3a40976d9b4 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index ae75cfd5da27..6380eff99909 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index d5f0012047d2..1bcc56537ac1 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.13 + 2.15.14-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index e26e537ad534..5ee5f7365937 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 645a59034038..fb0d56aef240 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index d2f220cf8ee0..2145041fcb7f 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index a10aa8fdc73c..4491f9d75722 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index abc656a5fd7e..32afa01c0a5e 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 8163391aa532..8f68d0eb97c2 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index d5f7756458ce..9968057e1a16 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 8b12bb408aaf..bbf4e0449c37 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 4588788f6093..dbe9601416d2 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index af79c5094d86..ee042763b7f1 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 43d42c8ca84b..a0d377c0f938 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index e5e705a1ade2..d383317384e3 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index e52e275d2e33..461daf90eb03 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 3784d1d7b4ae..54c8ff18e05b 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 82e843d4e3a6..f73faf311f3d 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 4096ccc81f17..4091ea85ce7e 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index b375a76e3b00..1308e211baa9 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 5d7104db7f72..9cef4b6aea27 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 5236af2d3b9b..a0083fe9e269 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 1c011ad001b0..23330ef909e1 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 5439100ed894..7ab50b54bc7a 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index ccb3e28e2578..8ca83dd48e30 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 05a1535db163..f086dfb4e95a 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 6abd8ae6025e..c28852149bc9 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 6986ac9518c3..948139741788 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 38089fd60bcc..896b082d63fc 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 1796569bac05..31518cb8ad0d 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 8b66578a3514..5dd3ba1d09bb 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index b39a25c443a0..320bb4ab7888 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 3ef2f58384c5..38023dcf735a 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index a2fdb70d036a..966b7f036aa2 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index d988b686f752..96823ff084c5 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index d1c8519027ff..e4013c8db6dd 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index ca45373b7993..baeb043ff1e2 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index ed65999633ba..93e02a7f39b6 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index f68bcfe33497..f43572200f7b 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 3c608856376c..b4b9cef097fd 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 5c1778267450..fa7ae1178c91 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 003024922537..5a5f8111aced 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 47f236299997..2e337672737b 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 05f8e5657c3d..fffafbc0ff9b 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index a4d27f6bc3e9..b74f172a9d9d 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index a140f7eabbd3..a405b02cba71 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 2697b269ed31..a8ab914c6ae7 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 91f375c74780..553a59ca11c8 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 23b9991e447a..553f1db2e156 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index ee1468a5da6e..3c632907b870 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 27b0a96b8c34..f8256c6fdd84 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 424556570022..7f9e7095fd4a 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index fe6ae7f21e46..8dacbbe01d8a 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 74ab1d2d01e4..6b667bc7560f 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 1facf9ed597a..1070a8294a4b 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index b6280a7827b7..065aa9d4800f 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index c2afc2cee922..383199ed2a88 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 67174749c058..37185b7f25c1 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index fa7c3e397cf3..f57f71d407c8 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index e298fad0c404..a1e53bf6ea7b 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 6d2ba413cc88..6a2067010b73 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index ae26aa0de099..7738b22b04bc 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 725ad8abefa1..93749d324d8b 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 3b051076bc41..7e0805fc725a 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index a35d92192f2b..d1e4337870c5 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 4bdcfe09caeb..29748547b0e4 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.13 + 2.15.14-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 66873d32abc4..f984d34d5b2d 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.15.13 + 2.15.14-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 1c455d5951bc..ba51eccbcaaa 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.15.13 + 2.15.14-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 89aad349dc23..6261395ab461 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.15.13 + 2.15.14-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 131b030f6354..4453d5c709d2 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.15.13 + 2.15.14-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index b67b45ac0091..e4aa374f8fdf 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.15.13 + 2.15.14-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 6114c1305130..f0b27532e17f 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.13 + 2.15.14-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 93191ca6e0ef..b6600f1e8a23 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.15.13 + 2.15.14-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 38ac9aa8b308..88e8a6791b7f 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.15.13 + 2.15.14-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 8fb8bdab3635..924b6529cd12 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.15.13 + 2.15.14-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 1264849a7a09..b2add11be655 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.15.13 + 2.15.14-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index b513f6c942bb..346fd9bc4b01 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.13 + 2.15.14-SNAPSHOT 4.0.0 From b2321b40b4bf24d8e1f15a4e7d4b68dc459aa8be Mon Sep 17 00:00:00 2001 From: Zoe Wang Date: Fri, 16 Oct 2020 16:41:24 -0700 Subject: [PATCH 060/339] Add an option to provide github username to be mentioned in the CHAGNELOG --- scripts/changelog/model.py | 3 ++- scripts/changelog/util.py | 3 ++- scripts/changelog/writer.py | 23 ++++++++++++++++++++--- scripts/new-change | 19 ++++++++++++++++++- 4 files changed, 42 insertions(+), 6 deletions(-) diff --git a/scripts/changelog/model.py b/scripts/changelog/model.py index 722108159c76..0b21fedd415f 100644 --- a/scripts/changelog/model.py +++ b/scripts/changelog/model.py @@ -5,9 +5,10 @@ def __init__(self, version, date, entries): self.entries = entries class ChangelogEntry(object): - def __init__(self, type, category, description): + def __init__(self, type, category, description, contributor): self.type = type self.category = category + self.contributor = contributor self.description = description class Version(object): diff --git a/scripts/changelog/util.py b/scripts/changelog/util.py index 998a5f2a1429..acb86d8d8049 100644 --- a/scripts/changelog/util.py +++ b/scripts/changelog/util.py @@ -38,7 +38,8 @@ def parse_release_changes(changes_json): return ReleaseChanges(version, date, entries) def parse_changelog_entry(entry_json): - return ChangelogEntry(entry_json['type'], entry_json['category'], entry_json['description']) + return ChangelogEntry(entry_json['type'], entry_json['category'], entry_json['description'], + entry_json.get('contributor')) def parse_version_string(s): version_parts = [s for s in s.split('.')] diff --git a/scripts/changelog/writer.py b/scripts/changelog/writer.py index 458fb8f02561..a41dad92c971 100644 --- a/scripts/changelog/writer.py +++ b/scripts/changelog/writer.py @@ -28,6 +28,19 @@ def write_changes(self, changes): self.write_items_for_category(s, self.bugfixes, "Bugfixes") self.write_items_for_category(s, self.deprecations, "Deprecations") self.write_items_for_category(s, self.removals, "Removals") + self.write_contributors() + + def write_contributors(self): + contributors = set() + for e in self.current_changes.entries: + if e.contributor: + contributors.add(e.contributor) + + if contributors: + self.output_file.write("## __Contributors__\n") + contributors_string = ', '.join(contributors) + self.output_file.write("Special thanks to the following contributors to this release: \n") + self.output_file.write("\n" + contributors_string + ".\n") def process_changes(self, changes): self.current_changes = changes @@ -44,7 +57,7 @@ def reset_maps(self): def group_entries(self): for e in self.current_changes.entries: m = self.get_map_for_type(e.type) - m.setdefault(e.category, []).append(e.description) + m.setdefault(e.category, []).append(e) self.categories.add(e.category) def get_sorted_categories(self): @@ -75,7 +88,8 @@ def write_entries_with_header(self, header, entries): self.write('\n') def write_entry(self,e): - entry_lines = e.splitlines(True) + description = e.description + entry_lines = description.splitlines(True) self.write(" - %s" % entry_lines[0]) for l in entry_lines[1:]: if len(l.strip()) == 0: @@ -83,7 +97,10 @@ def write_entry(self,e): else: self.write(" %s" % l) self.write('\n') - + if e.contributor: + self.write("\n - ") + self.write("Contributed by: " + e.contributor) + self.write('\n') def get_map_for_type(self, t): if t == 'feature': diff --git a/scripts/new-change b/scripts/new-change index 21d12444947e..bab75aeedbff 100755 --- a/scripts/new-change +++ b/scripts/new-change @@ -61,6 +61,12 @@ type: {change_type} # or "AWS SDK for Java v2" if it's an SDK change to the core, runtime etc category: {category} +# Your GitHub user name to be included in the CHANGELOG. +# Every contribution counts and we would like to recognize +# your contribution! +# Leave it empty if you would prefer not to be mentioned. +contributor: {contributor} + The description of the change. Feel free to use Markdown here. description: {description} """ @@ -76,6 +82,7 @@ def new_changelog_entry(args): 'type': args.change_type, 'category': args.category, 'description': args.description, + 'contributor': args.contributor } else: parsed_values = get_values_from_editor(args) @@ -94,7 +101,7 @@ def get_missing_parts(parsed_values): def all_values_provided(args): - return args.change_type and args.category and args.description + return args.change_type and args.category and args.description and args.contributor def get_values_from_editor(args): @@ -103,6 +110,7 @@ def get_values_from_editor(args): change_type=args.change_type, category=args.category, description=args.description, + contributor=args.contributor ) f.write(contents) f.flush() @@ -137,6 +145,11 @@ def write_new_change(parsed_values): os.makedirs(dirname) # Need to generate a unique filename for this change. category = parsed_values['category'] + + contributor = parsed_values['contributor'] + if contributor and contributor.strip: + parsed_values['contributor'] = "@" + contributor + short_summary = ''.join(filter(lambda x: x in VALID_CHARS, category)) contents = json.dumps(parsed_values, indent=4) + "\n" contents_digest = hashlib.sha1(contents.encode('utf-8')).hexdigest() @@ -176,6 +189,8 @@ def parse_filled_in_contents(contents): parsed['type'] = t elif 'category' not in parsed and line.startswith('category:'): parsed['category'] = line[len('category:'):].strip() + elif 'contributor' not in parsed and line.startswith('contributor:'): + parsed['contributor'] = line[len('contributor:'):].strip() elif 'description' not in parsed and line.startswith('description:'): # Assume that everything until the end of the file is part # of the description, so we can break once we pull in the @@ -193,6 +208,8 @@ def main(): default='', choices=('bugfix', 'feature', 'deprecation')) parser.add_argument('-c', '--category', dest='category', default='') + parser.add_argument('-u', '--contributor', dest='contributor', + default='') parser.add_argument('-d', '--description', dest='description', default='') parser.add_argument('-r', '--repo', default='aws/aws-sdk-java-v2', From a63fdbc644fcaf13cc013c96fd49e4e5d3035925 Mon Sep 17 00:00:00 2001 From: Zoe Wang Date: Fri, 23 Oct 2020 11:17:14 -0700 Subject: [PATCH 061/339] Revert "Add an option to provide github username to be mentioned in the CHAGNELOG" This reverts commit b2321b40b4bf24d8e1f15a4e7d4b68dc459aa8be. --- scripts/changelog/model.py | 3 +-- scripts/changelog/util.py | 3 +-- scripts/changelog/writer.py | 23 +++-------------------- scripts/new-change | 19 +------------------ 4 files changed, 6 insertions(+), 42 deletions(-) diff --git a/scripts/changelog/model.py b/scripts/changelog/model.py index 0b21fedd415f..722108159c76 100644 --- a/scripts/changelog/model.py +++ b/scripts/changelog/model.py @@ -5,10 +5,9 @@ def __init__(self, version, date, entries): self.entries = entries class ChangelogEntry(object): - def __init__(self, type, category, description, contributor): + def __init__(self, type, category, description): self.type = type self.category = category - self.contributor = contributor self.description = description class Version(object): diff --git a/scripts/changelog/util.py b/scripts/changelog/util.py index acb86d8d8049..998a5f2a1429 100644 --- a/scripts/changelog/util.py +++ b/scripts/changelog/util.py @@ -38,8 +38,7 @@ def parse_release_changes(changes_json): return ReleaseChanges(version, date, entries) def parse_changelog_entry(entry_json): - return ChangelogEntry(entry_json['type'], entry_json['category'], entry_json['description'], - entry_json.get('contributor')) + return ChangelogEntry(entry_json['type'], entry_json['category'], entry_json['description']) def parse_version_string(s): version_parts = [s for s in s.split('.')] diff --git a/scripts/changelog/writer.py b/scripts/changelog/writer.py index a41dad92c971..458fb8f02561 100644 --- a/scripts/changelog/writer.py +++ b/scripts/changelog/writer.py @@ -28,19 +28,6 @@ def write_changes(self, changes): self.write_items_for_category(s, self.bugfixes, "Bugfixes") self.write_items_for_category(s, self.deprecations, "Deprecations") self.write_items_for_category(s, self.removals, "Removals") - self.write_contributors() - - def write_contributors(self): - contributors = set() - for e in self.current_changes.entries: - if e.contributor: - contributors.add(e.contributor) - - if contributors: - self.output_file.write("## __Contributors__\n") - contributors_string = ', '.join(contributors) - self.output_file.write("Special thanks to the following contributors to this release: \n") - self.output_file.write("\n" + contributors_string + ".\n") def process_changes(self, changes): self.current_changes = changes @@ -57,7 +44,7 @@ def reset_maps(self): def group_entries(self): for e in self.current_changes.entries: m = self.get_map_for_type(e.type) - m.setdefault(e.category, []).append(e) + m.setdefault(e.category, []).append(e.description) self.categories.add(e.category) def get_sorted_categories(self): @@ -88,8 +75,7 @@ def write_entries_with_header(self, header, entries): self.write('\n') def write_entry(self,e): - description = e.description - entry_lines = description.splitlines(True) + entry_lines = e.splitlines(True) self.write(" - %s" % entry_lines[0]) for l in entry_lines[1:]: if len(l.strip()) == 0: @@ -97,10 +83,7 @@ def write_entry(self,e): else: self.write(" %s" % l) self.write('\n') - if e.contributor: - self.write("\n - ") - self.write("Contributed by: " + e.contributor) - self.write('\n') + def get_map_for_type(self, t): if t == 'feature': diff --git a/scripts/new-change b/scripts/new-change index bab75aeedbff..21d12444947e 100755 --- a/scripts/new-change +++ b/scripts/new-change @@ -61,12 +61,6 @@ type: {change_type} # or "AWS SDK for Java v2" if it's an SDK change to the core, runtime etc category: {category} -# Your GitHub user name to be included in the CHANGELOG. -# Every contribution counts and we would like to recognize -# your contribution! -# Leave it empty if you would prefer not to be mentioned. -contributor: {contributor} - The description of the change. Feel free to use Markdown here. description: {description} """ @@ -82,7 +76,6 @@ def new_changelog_entry(args): 'type': args.change_type, 'category': args.category, 'description': args.description, - 'contributor': args.contributor } else: parsed_values = get_values_from_editor(args) @@ -101,7 +94,7 @@ def get_missing_parts(parsed_values): def all_values_provided(args): - return args.change_type and args.category and args.description and args.contributor + return args.change_type and args.category and args.description def get_values_from_editor(args): @@ -110,7 +103,6 @@ def get_values_from_editor(args): change_type=args.change_type, category=args.category, description=args.description, - contributor=args.contributor ) f.write(contents) f.flush() @@ -145,11 +137,6 @@ def write_new_change(parsed_values): os.makedirs(dirname) # Need to generate a unique filename for this change. category = parsed_values['category'] - - contributor = parsed_values['contributor'] - if contributor and contributor.strip: - parsed_values['contributor'] = "@" + contributor - short_summary = ''.join(filter(lambda x: x in VALID_CHARS, category)) contents = json.dumps(parsed_values, indent=4) + "\n" contents_digest = hashlib.sha1(contents.encode('utf-8')).hexdigest() @@ -189,8 +176,6 @@ def parse_filled_in_contents(contents): parsed['type'] = t elif 'category' not in parsed and line.startswith('category:'): parsed['category'] = line[len('category:'):].strip() - elif 'contributor' not in parsed and line.startswith('contributor:'): - parsed['contributor'] = line[len('contributor:'):].strip() elif 'description' not in parsed and line.startswith('description:'): # Assume that everything until the end of the file is part # of the description, so we can break once we pull in the @@ -208,8 +193,6 @@ def main(): default='', choices=('bugfix', 'feature', 'deprecation')) parser.add_argument('-c', '--category', dest='category', default='') - parser.add_argument('-u', '--contributor', dest='contributor', - default='') parser.add_argument('-d', '--description', dest='description', default='') parser.add_argument('-r', '--repo', default='aws/aws-sdk-java-v2', From cc18eb1ffcd3cb81af5d6a5353ca59bcfdc9e43d Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 23 Oct 2020 18:33:32 +0000 Subject: [PATCH 062/339] Amazon QuickSight Update: Support description on columns. --- .../feature-AmazonQuickSight-1bfeb17.json | 5 +++ .../codegen-resources/service-2.json | 37 +++++++++++++++---- 2 files changed, 35 insertions(+), 7 deletions(-) create mode 100644 .changes/next-release/feature-AmazonQuickSight-1bfeb17.json diff --git a/.changes/next-release/feature-AmazonQuickSight-1bfeb17.json b/.changes/next-release/feature-AmazonQuickSight-1bfeb17.json new file mode 100644 index 000000000000..3127f71af649 --- /dev/null +++ b/.changes/next-release/feature-AmazonQuickSight-1bfeb17.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "Amazon QuickSight", + "description": "Support description on columns." +} diff --git a/services/quicksight/src/main/resources/codegen-resources/service-2.json b/services/quicksight/src/main/resources/codegen-resources/service-2.json index 045e9b15fd7b..ea21922be157 100644 --- a/services/quicksight/src/main/resources/codegen-resources/service-2.json +++ b/services/quicksight/src/main/resources/codegen-resources/service-2.json @@ -2346,6 +2346,21 @@ "DATETIME" ] }, + "ColumnDescription":{ + "type":"structure", + "members":{ + "Text":{ + "shape":"ColumnDescriptiveText", + "documentation":"

The text of a description for a column.

" + } + }, + "documentation":"

Metadata that contains a description for a column.

" + }, + "ColumnDescriptiveText":{ + "type":"string", + "max":500, + "min":0 + }, "ColumnGroup":{ "type":"structure", "members":{ @@ -2446,6 +2461,10 @@ "ColumnGeographicRole":{ "shape":"GeoSpatialDataRole", "documentation":"

A geospatial role for a column.

" + }, + "ColumnDescription":{ + "shape":"ColumnDescription", + "documentation":"

A description for a column.

" } }, "documentation":"

A tag for a column in a TagColumnOperation structure. This is a variant type structure. For this structure to be valid, only one of the attributes can be non-null.

" @@ -3435,7 +3454,7 @@ }, "AlternateDataSourceParameters":{ "shape":"DataSourceParametersList", - "documentation":"

A set of alternate data source parameters that you want to share for these credentials. The credentials are applied in tandem with the data source parameters when you copy a data source by using a create or update request. The API operation compares the DataSourceParameters structure that's in the request with the structures in the AlternateDataSourceParameters allowlist. If the structures are an exact match, the request is allowed to use the new data source with the existing credentials. If the AlternateDataSourceParameters list is null, the DataSourceParameters originally used with these Credentials is automatically allowed.

" + "documentation":"

A set of alternate data source parameters that you want to share for these credentials. The credentials are applied in tandem with the data source parameters when you copy a data source by using a create or update request. The API operation compares the DataSourceParameters structure that's in the request with the structures in the AlternateDataSourceParameters allow list. If the structures are an exact match, the request is allowed to use the new data source with the existing credentials. If the AlternateDataSourceParameters list is null, the DataSourceParameters originally used with these Credentials is automatically allowed.

" } }, "documentation":"

The combination of user name and password that are used as credentials.

" @@ -3770,7 +3789,7 @@ "documentation":"

The hexadecimal code of a color that applies to charts where a lack of data is highlighted.

" } }, - "documentation":"

The theme colors that are used for data colors in charts. The colors description is a hexidecimal color code that consists of six alphanumerical characters, prefixed with #, for example #37BFF5.

" + "documentation":"

The theme colors that are used for data colors in charts. The colors description is a hexadecimal color code that consists of six alphanumerical characters, prefixed with #, for example #37BFF5.

" }, "DataSet":{ "type":"structure", @@ -3974,7 +3993,7 @@ }, "AlternateDataSourceParameters":{ "shape":"DataSourceParametersList", - "documentation":"

A set of alternate data source parameters that you want to share for the credentials stored with this data source. The credentials are applied in tandem with the data source parameters when you copy a data source by using a create or update request. The API operation compares the DataSourceParameters structure that's in the request with the structures in the AlternateDataSourceParameters allowlist. If the structures are an exact match, the request is allowed to use the credentials from this existing data source. If the AlternateDataSourceParameters list is null, the Credentials originally used with this DataSourceParameters are automatically allowed.

" + "documentation":"

A set of alternate data source parameters that you want to share for the credentials stored with this data source. The credentials are applied in tandem with the data source parameters when you copy a data source by using a create or update request. The API operation compares the DataSourceParameters structure that's in the request with the structures in the AlternateDataSourceParameters allow list. If the structures are an exact match, the request is allowed to use the credentials from this existing data source. If the AlternateDataSourceParameters list is null, the Credentials originally used with this DataSourceParameters are automatically allowed.

" }, "VpcConnectionProperties":{ "shape":"VpcConnectionProperties", @@ -7883,6 +7902,10 @@ "shape":"ColumnName", "documentation":"

A display name for the dataset.

" }, + "Description":{ + "shape":"ColumnDescriptiveText", + "documentation":"

A description for a column.

" + }, "Type":{ "shape":"ColumnDataType", "documentation":"

Type.

" @@ -8301,7 +8324,7 @@ "members":{ "Principal":{ "shape":"Principal", - "documentation":"

The Amazon Resource Name (ARN) of the principal. This can be one of the following:

  • The ARN of an Amazon QuickSight user, group, or namespace. (This is most common.)

  • The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts. (This is less common.)

" + "documentation":"

The Amazon Resource Name (ARN) of the principal. This can be one of the following:

  • The ARN of an Amazon QuickSight user or group associated with a data source or dataset. (This is common.)

  • The ARN of an Amazon QuickSight user, group, or namespace associated with an analysis, dashboard, template, or theme. (This is common.)

  • The ARN of an AWS account root: This is an IAM ARN rather than a QuickSight ARN. Use this option only to share resources (templates) across AWS accounts. (This is less common.)

" }, "Actions":{ "shape":"ActionList", @@ -8632,10 +8655,10 @@ }, "Name":{ "shape":"NonEmptyString", - "documentation":"

The name of a sheet. This is displayed on the sheet's tab in the QuickSight console.

" + "documentation":"

The name of a sheet. This name is displayed on the sheet's tab in the QuickSight console.

" } }, - "documentation":"

A sheet is an object that contains a set of visuals that are viewed together on one page in the Amazon QuickSight console. Every analysis and dashboard contains at least one sheet. Each sheet contains at least one visualization widget, for example a chart, pivot table, or narrative insight. Sheets can be associated with other components, such as controls, filters, and so on.

" + "documentation":"

A sheet, which is an object that contains a set of visuals that are viewed together on one page in the Amazon QuickSight console. Every analysis and dashboard contains at least one sheet. Each sheet contains at least one visualization widget, for example a chart, pivot table, or narrative insight. Sheets can be associated with other components, such as controls, filters, and so on.

" }, "SheetControlsOption":{ "type":"structure", @@ -9518,7 +9541,7 @@ "documentation":"

The foreground color that applies to any text or other elements that appear over the measure color.

" } }, - "documentation":"

The theme colors that apply to UI and to charts, excluding data colors. The colors description is a hexidecimal color code that consists of six alphanumerical characters, prefixed with #, for example #37BFF5. For more information, see Using Themes in Amazon QuickSight in the Amazon QuickSight User Guide.

" + "documentation":"

The theme colors that apply to UI and to charts, excluding data colors. The colors description is a hexadecimal color code that consists of six alphanumerical characters, prefixed with #, for example #37BFF5. For more information, see Using Themes in Amazon QuickSight in the Amazon QuickSight User Guide.

" }, "UnsupportedUserEditionException":{ "type":"structure", From 9db72b088cfbaaa0ebeef5d3fd4c92969433a3e9 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 23 Oct 2020 18:33:33 +0000 Subject: [PATCH 063/339] AWS MediaTailor Update: MediaTailor now supports ad marker passthrough for HLS. Use AdMarkerPassthrough to pass EXT-X-CUE-IN, EXT-X-CUE-OUT, and EXT-X-SPLICEPOINT-SCTE35 from origin manifests into personalized manifests. --- .../feature-AWSMediaTailor-3c513b7.json | 5 +++ .../codegen-resources/service-2.json | 35 +++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 .changes/next-release/feature-AWSMediaTailor-3c513b7.json diff --git a/.changes/next-release/feature-AWSMediaTailor-3c513b7.json b/.changes/next-release/feature-AWSMediaTailor-3c513b7.json new file mode 100644 index 000000000000..38dc899c91a0 --- /dev/null +++ b/.changes/next-release/feature-AWSMediaTailor-3c513b7.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "AWS MediaTailor", + "description": "MediaTailor now supports ad marker passthrough for HLS. Use AdMarkerPassthrough to pass EXT-X-CUE-IN, EXT-X-CUE-OUT, and EXT-X-SPLICEPOINT-SCTE35 from origin manifests into personalized manifests." +} diff --git a/services/mediatailor/src/main/resources/codegen-resources/service-2.json b/services/mediatailor/src/main/resources/codegen-resources/service-2.json index 5c0ddda05cdd..53164a8d54f8 100644 --- a/services/mediatailor/src/main/resources/codegen-resources/service-2.json +++ b/services/mediatailor/src/main/resources/codegen-resources/service-2.json @@ -141,6 +141,16 @@ } }, "shapes": { + "AdMarkerPassthrough" : { + "type" : "structure", + "members" : { + "Enabled" : { + "documentation": "

For HLS, when set to true, MediaTailor passes through EXT-X-CUE-IN, EXT-X-CUE-OUT, and EXT-X-SPLICEPOINT-SCTE35 ad markers from the origin manifest to the MediaTailor personalized manifest.

No logic is applied to these ad markers. For example, if EXT-X-CUE-OUT has a value of 60, but no ads are filled for that ad break, MediaTailor will not set the value to 0.

", + "shape" : "__boolean" + } + }, + "documentation" : "

The configuration for Ad Marker Passthrough. Ad marker passthrough can be used to pass ad markers from the origin to the customized manifest.

" + }, "AvailSuppression": { "type": "structure", "documentation" : "

The configuration for Avail Suppression. Ad suppression can be used to turn off ad personalization in a long manifest, or if a viewer joins mid-break.

", @@ -294,6 +304,10 @@ "shape" : "LivePreRollConfiguration", "documentation" : "

The configuration for pre-roll ad insertion.

" }, + "ManifestProcessingRules": { + "shape" : "ManifestProcessingRules", + "documentation" : "

The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.

" + }, "Name": { "documentation": "

The identifier for the playback configuration.

", "shape": "__string" @@ -405,6 +419,15 @@ ], "type": "string" }, + "ManifestProcessingRules" : { + "type" : "structure", + "documentation" : "

The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.

", + "members" : { + "AdMarkerPassthrough" : { + "shape" : "AdMarkerPassthrough" + } + } + }, "Mode": { "enum": [ "OFF", @@ -439,6 +462,10 @@ "documentation": "

The configuration for HLS content.

", "shape": "HlsConfiguration" }, + "ManifestProcessingRules": { + "shape" : "ManifestProcessingRules", + "documentation" : "

The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.

" + }, "Name": { "documentation": "

The identifier for the playback configuration.

", "shape": "__string" @@ -519,6 +546,10 @@ "shape" : "LivePreRollConfiguration", "documentation" : "

The configuration for pre-roll ad insertion.

" }, + "ManifestProcessingRules": { + "shape" : "ManifestProcessingRules", + "documentation": "

The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor.

" + }, "Name": { "documentation": "

The identifier for the playback configuration.

", "shape": "__string" @@ -577,6 +608,10 @@ "shape" : "LivePreRollConfiguration", "documentation" : "

The configuration for pre-roll ad insertion.

" }, + "ManifestProcessingRules": { + "shape" : "ManifestProcessingRules", + "documentation": "The configuration for manifest processing rules. Manifest processing rules enable customization of the personalized manifests created by MediaTailor." + }, "Name": { "documentation": "

The identifier for the playback configuration.

", "shape": "__string" From 8d3a767f974f8aec11c679a7718039954a48293b Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 23 Oct 2020 18:33:34 +0000 Subject: [PATCH 064/339] Amazon Macie 2 Update: This release of the Amazon Macie API includes miscellaneous updates and improvements to the documentation. --- .../feature-AmazonMacie2-2b05537.json | 5 ++++ .../codegen-resources/service-2.json | 30 +++++++++---------- 2 files changed, 20 insertions(+), 15 deletions(-) create mode 100644 .changes/next-release/feature-AmazonMacie2-2b05537.json diff --git a/.changes/next-release/feature-AmazonMacie2-2b05537.json b/.changes/next-release/feature-AmazonMacie2-2b05537.json new file mode 100644 index 000000000000..a0d240ba4f81 --- /dev/null +++ b/.changes/next-release/feature-AmazonMacie2-2b05537.json @@ -0,0 +1,5 @@ +{ + "type": "feature", + "category": "Amazon Macie 2", + "description": "This release of the Amazon Macie API includes miscellaneous updates and improvements to the documentation." +} diff --git a/services/macie2/src/main/resources/codegen-resources/service-2.json b/services/macie2/src/main/resources/codegen-resources/service-2.json index f4ead0e382ba..3afd3aab822f 100644 --- a/services/macie2/src/main/resources/codegen-resources/service-2.json +++ b/services/macie2/src/main/resources/codegen-resources/service-2.json @@ -836,7 +836,7 @@ "documentation": "

The request failed because it conflicts with the current state of the specified resource.

" } ], - "documentation": "

Disables an account as a delegated administrator of Amazon Macie for an AWS organization.

" + "documentation": "

Disables an account as the delegated Amazon Macie administrator account for an AWS organization.

" }, "DisassociateFromMasterAccount": { "name": "DisassociateFromMasterAccount", @@ -1020,7 +1020,7 @@ "documentation": "

The request failed because it conflicts with the current state of the specified resource.

" } ], - "documentation": "

Enables an account as a delegated administrator of Amazon Macie for an AWS organization.

" + "documentation": "

Designates an account as the delegated Amazon Macie administrator account for an AWS organization.

" }, "GetBucketStatistics": { "name": "GetBucketStatistics", @@ -1894,7 +1894,7 @@ "documentation": "

The request failed because it conflicts with the current state of the specified resource.

" } ], - "documentation": "

Retrieves information about the account that's designated as the delegated administrator of Amazon Macie for an AWS organization.

" + "documentation": "

Retrieves information about the delegated Amazon Macie administrator account for an AWS organization.

" }, "ListTagsForResource": { "name": "ListTagsForResource", @@ -2267,7 +2267,7 @@ "documentation": "

The request failed because it conflicts with the current state of the specified resource.

" } ], - "documentation": "

Updates Amazon Macie configuration settings for an AWS organization.

" + "documentation": "

Updates the Amazon Macie configuration settings for an AWS organization.

" } }, "shapes": { @@ -2370,11 +2370,11 @@ "documentation": "

The current status of the account as a delegated administrator of Amazon Macie for the organization.

" } }, - "documentation": "

Provides information about an account that's designated as a delegated administrator of Amazon Macie for an AWS organization.

" + "documentation": "

Provides information about the delegated Amazon Macie administrator account for an AWS organization.

" }, "AdminStatus": { "type": "string", - "documentation": "

The current status of an account as a delegated administrator of Amazon Macie for an AWS organization.

", + "documentation": "

The current status of an account as the delegated Amazon Macie administrator account for an AWS organization.

", "enum": [ "ENABLED", "DISABLING_IN_PROGRESS" @@ -3365,7 +3365,7 @@ "documentation": "

The total number of occurrences of the data that was detected by the custom data identifiers and produced the finding.

" } }, - "documentation": "

Provides information about the number of occurrences of the data that produced a sensitive data finding, and the custom data identifiers that detected the data for the finding.

" + "documentation": "

Provides information about custom data identifiers that produced a sensitive data finding, and the number of occurrences of the data that they detected for the finding.

" }, "CustomDetection": { "type": "structure", @@ -3705,7 +3705,7 @@ "maxAccountLimitReached": { "shape": "__boolean", "locationName": "maxAccountLimitReached", - "documentation": "

Specifies whether the maximum number of Amazon Macie member accounts are already associated with the AWS organization.

" + "documentation": "

Specifies whether the maximum number of Amazon Macie member accounts are part of the AWS organization.

" } } }, @@ -3816,7 +3816,7 @@ "adminAccountId": { "shape": "__string", "locationName": "adminAccountId", - "documentation": "

The AWS account ID for the account.

" + "documentation": "

The AWS account ID for the account to designate as the delegated Amazon Macie administrator account for the organization.

" }, "clientToken": { "shape": "__string", @@ -4847,7 +4847,7 @@ }, "JobStatus": { "type": "string", - "documentation": "

The current status of a classification job. Possible values are:

", + "documentation": "

The status of a classification job. Possible values are:

", "enum": [ "RUNNING", "PAUSED", @@ -5237,7 +5237,7 @@ "adminAccounts": { "shape": "__listOfAdminAccount", "locationName": "adminAccounts", - "documentation": "

An array of objects, one for each account that's designated as a delegated administrator of Amazon Macie for the AWS organization. Of those accounts, only one can have a status of ENABLED.

" + "documentation": "

An array of objects, one for each delegated Amazon Macie administrator account for the organization. Only one of these accounts can have a status of ENABLED.

" }, "nextToken": { "shape": "__string", @@ -5403,7 +5403,7 @@ "offsetRanges": { "shape": "Ranges", "locationName": "offsetRanges", - "documentation": "

An array of objects, one for each occurrence of sensitive data in a binary text file. Each object specifies the position of the data relative to the start of the file.

This value is typically null. For binary text files, Macie adds location data to a lineRanges.Range or Page object, depending on the file type.

" + "documentation": "

An array of objects, one for each occurrence of sensitive data in a binary text file. Each object specifies the position of the data relative to the beginning of the file.

This value is typically null. For binary text files, Macie adds location data to a lineRanges.Range or Page object, depending on the file type.

" }, "pages": { "shape": "Pages", @@ -5436,7 +5436,7 @@ "offsetRange": { "shape": "Range", "locationName": "offsetRange", - "documentation": "

The position of the data on the page, relative to the start and end of the page.

" + "documentation": "

The position of the data on the page, relative to the beginning of the page.

" }, "pageNumber": { "shape": "__long", @@ -5498,12 +5498,12 @@ "end": { "shape": "__long", "locationName": "end", - "documentation": "

Possible values are:

  • In an Occurrences.lineRanges array, the number of lines from the end of the file.

  • In an Occurrences.offsetRanges array, the number of characters from the end of the file.

  • In a Page object, the number of lines (lineRange) or characters (offsetRange) from the end of the page.

" + "documentation": "

Possible values are:

  • In an Occurrences.lineRanges array, the number of lines from the beginning of the file to the end of the sensitive data.

  • In an Occurrences.offsetRanges array, the number of characters from the beginning of the file to the end of the sensitive data.

  • In a Page object, the number of lines (lineRange) or characters (offsetRange) from the beginning of the page to the end of the sensitive data.

" }, "start": { "shape": "__long", "locationName": "start", - "documentation": "

Possible values are:

  • In an Occurrences.lineRanges array, the number of lines from the start of the file.

  • In an Occurrences.offsetRanges array, the number of characters from the start of the file.

  • In a Page object, the number of lines (lineRange) or characters (offsetRange) from the start of the page.

" + "documentation": "

Possible values are:

  • In an Occurrences.lineRanges array, the number of lines from the beginning of the file to the beginning of the sensitive data.

  • In an Occurrences.offsetRanges array, the number of characters from the beginning of the file to the beginning of the sensitive data.

  • In a Page object, the number of lines (lineRange) or characters (offsetRange) from the beginning of the page to the beginning of the sensitive data.

" }, "startColumn": { "shape": "__long", From 1c9b228fcccdd6f56dda893c0b2744067c76123f Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 23 Oct 2020 18:35:07 +0000 Subject: [PATCH 065/339] Release 2.15.14. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.14.json | 21 +++++++++++++++++++ .../feature-AWSMediaTailor-3c513b7.json | 5 ----- .../feature-AmazonMacie2-2b05537.json | 5 ----- .../feature-AmazonQuickSight-1bfeb17.json | 5 ----- CHANGELOG.md | 13 ++++++++++++ README.md | 8 +++---- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- .../serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 286 files changed, 318 insertions(+), 299 deletions(-) create mode 100644 .changes/2.15.14.json delete mode 100644 .changes/next-release/feature-AWSMediaTailor-3c513b7.json delete mode 100644 .changes/next-release/feature-AmazonMacie2-2b05537.json delete mode 100644 .changes/next-release/feature-AmazonQuickSight-1bfeb17.json diff --git a/.changes/2.15.14.json b/.changes/2.15.14.json new file mode 100644 index 000000000000..1fcb96571caa --- /dev/null +++ b/.changes/2.15.14.json @@ -0,0 +1,21 @@ +{ + "version": "2.15.14", + "date": "2020-10-23", + "entries": [ + { + "type": "feature", + "category": "Amazon Macie 2", + "description": "This release of the Amazon Macie API includes miscellaneous updates and improvements to the documentation." + }, + { + "type": "feature", + "category": "Amazon QuickSight", + "description": "Support description on columns." + }, + { + "type": "feature", + "category": "AWS MediaTailor", + "description": "MediaTailor now supports ad marker passthrough for HLS. Use AdMarkerPassthrough to pass EXT-X-CUE-IN, EXT-X-CUE-OUT, and EXT-X-SPLICEPOINT-SCTE35 from origin manifests into personalized manifests." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSMediaTailor-3c513b7.json b/.changes/next-release/feature-AWSMediaTailor-3c513b7.json deleted file mode 100644 index 38dc899c91a0..000000000000 --- a/.changes/next-release/feature-AWSMediaTailor-3c513b7.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "AWS MediaTailor", - "description": "MediaTailor now supports ad marker passthrough for HLS. Use AdMarkerPassthrough to pass EXT-X-CUE-IN, EXT-X-CUE-OUT, and EXT-X-SPLICEPOINT-SCTE35 from origin manifests into personalized manifests." -} diff --git a/.changes/next-release/feature-AmazonMacie2-2b05537.json b/.changes/next-release/feature-AmazonMacie2-2b05537.json deleted file mode 100644 index a0d240ba4f81..000000000000 --- a/.changes/next-release/feature-AmazonMacie2-2b05537.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Macie 2", - "description": "This release of the Amazon Macie API includes miscellaneous updates and improvements to the documentation." -} diff --git a/.changes/next-release/feature-AmazonQuickSight-1bfeb17.json b/.changes/next-release/feature-AmazonQuickSight-1bfeb17.json deleted file mode 100644 index 3127f71af649..000000000000 --- a/.changes/next-release/feature-AmazonQuickSight-1bfeb17.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "feature", - "category": "Amazon QuickSight", - "description": "Support description on columns." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index bb3ad1f6f392..efe5606a02d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# __2.15.14__ __2020-10-23__ +## __AWS MediaTailor__ + - ### Features + - MediaTailor now supports ad marker passthrough for HLS. Use AdMarkerPassthrough to pass EXT-X-CUE-IN, EXT-X-CUE-OUT, and EXT-X-SPLICEPOINT-SCTE35 from origin manifests into personalized manifests. + +## __Amazon Macie 2__ + - ### Features + - This release of the Amazon Macie API includes miscellaneous updates and improvements to the documentation. + +## __Amazon QuickSight__ + - ### Features + - Support description on columns. + # __2.15.13__ __2020-10-22__ ## __AWS SDK for Java v2__ - ### Features diff --git a/README.md b/README.md index ffb1f73bbf31..bb1d6b0d8238 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.13 + 2.15.14 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.13 + 2.15.14 software.amazon.awssdk s3 - 2.15.13 + 2.15.14 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.13 + 2.15.14 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index eb7521bb3b6b..1bc56aa2e6c7 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 5d48515b8db4..2e53f77f6255 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 1853a7b4fb91..521c8589163f 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.15.14-SNAPSHOT + 2.15.14 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 608ae31f3c57..c7dc5df549ba 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index ad1184b6896f..fe04e459d583 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.14-SNAPSHOT + 2.15.14 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 5d02d585036b..f77073c523bc 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.14-SNAPSHOT + 2.15.14 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 6682fbcd11d5..2524b3a35e46 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.15.14-SNAPSHOT + 2.15.14 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index c7f783d39561..d5d77e6e581a 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.14-SNAPSHOT + 2.15.14 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 3fe25e2ecf3c..7194be7528f2 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.15.14-SNAPSHOT + 2.15.14 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 2a90d84b887b..ca99c5809358 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.14-SNAPSHOT + 2.15.14 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index bd0fc1b88427..cde66bc2e3fe 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 786aa1b86a73..3dabe7a0efbd 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 0f4a2fb948dd..13bd801c3888 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.14-SNAPSHOT + 2.15.14 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 825533a60513..8db0b35fbc31 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.14-SNAPSHOT + 2.15.14 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index ac7f80877c76..fe5d4c464c5f 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index c61b0d64fca1..1df027917960 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 63e4c8a1fd09..63e51cd52c04 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.14-SNAPSHOT + 2.15.14 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 1596e4f11524..d48f13af4fd6 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.15.14-SNAPSHOT + 2.15.14 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 0e285f9b6b5d..a8b17d8dfc4a 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index e36d8f931c2c..3f86ee80b61b 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.15.14-SNAPSHOT + 2.15.14 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 159db053d3d8..4f10551a5b98 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.15.14-SNAPSHOT + 2.15.14 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 26b5c644d603..36fd9bc85b68 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.15.14-SNAPSHOT + 2.15.14 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index ad9fb956094f..59b3eb801a23 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 0eb0ed39ab01..21f22f242f40 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index a1ed5394c99f..c4a07f07b296 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.14-SNAPSHOT + 2.15.14 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index fc0db8c344e6..1743d2dac543 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.14-SNAPSHOT + 2.15.14 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 8852a80a44ef..c27cc3890b60 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.15.14-SNAPSHOT + 2.15.14 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 acf7d92c0871..4ae054c9ccd6 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.15.14-SNAPSHOT + 2.15.14 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 555e96a77cc4..92b755dce453 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.15.14-SNAPSHOT + 2.15.14 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index c67810b1129a..a80e8398d043 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.15.14-SNAPSHOT + 2.15.14 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index a8a6f1ae8743..ee6744d880d1 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 1c98fdd73965..00171762c866 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.15.14-SNAPSHOT + 2.15.14 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index c73367ec03dd..837cee42009d 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.15.14-SNAPSHOT + 2.15.14 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 74f2d47a4acb..b5a31453cf1f 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.14-SNAPSHOT + 2.15.14 metric-publishers diff --git a/pom.xml b/pom.xml index 6a62e42611fc..c321abf6908b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.14-SNAPSHOT + 2.15.14 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 37c688919fc3..8e9230a2a9c7 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.14-SNAPSHOT + 2.15.14 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 3efd46f6e361..a7392fed6fc9 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.15.14-SNAPSHOT + 2.15.14 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 85966d0309b8..a618132eb7e9 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.14-SNAPSHOT + 2.15.14 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 24feb113500b..2fc660debd3b 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index c667c080392b..c2fcada35aff 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 567ed9f9bf59..2e6d72e4777d 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index b66c4a46cef9..9b64a4857c87 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 363b751ca1e8..2625a551609f 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index fc12d090e0c9..55e8f97d7664 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 5ecd3bdebc8d..5d2207cedd63 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 2b8be5718627..d8d007b4ba2e 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 31957c81432d..f830634d49be 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index c245d902710b..f2bc4bbab057 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 58a43027009c..90e4f327a014 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 7dcf756bd3ae..f416d2c04329 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 4e5c3870f5f3..db6ebf85b12f 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 7061cff33be4..54db552d735f 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index eaff3aff3f02..3d282a33e00a 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 2325f94d346d..bca2d6eda7da 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index b414ca64ff59..8c8bf7e25168 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 20cab641189c..f081ba23dd25 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 16b85d073c19..592275ccbd1f 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 8b4d4781b618..0269c0640834 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index e35445a36b84..7d9c7ffc897d 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 8ae0ce94a8df..05449139de8d 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 3986a071fb8a..83750f015b21 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 4a9c6f18a215..210fbd9f9cb4 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 06d47a16887c..c32a1850d530 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 9041b7ddedd5..75d7b49b0b32 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 28b8ec7d72f8..96e839267733 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 838f59e86cad..41c9bc412870 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index aaf7529812a6..865c98cc17f3 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 384d955cca0a..c01f18af68f1 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 40389217b815..44fbd31b10b1 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 49ed3069b83d..79464fba713e 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index d227f8e27c67..bca3d52bc755 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 2aecee77834d..b50005e28caa 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index f6bd3809b019..178ff21c91bc 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 0474db0e240b..00d036caaaa9 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 2e46cfe1b04d..993651bb9220 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 5856bf37af0a..a6fde0decfbd 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 7b1426896551..42b069e73a64 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index e83213644971..2d9f243a6dd5 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 120ae4a641f3..a20523341d1c 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 72f33b5c5406..2924941e722a 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 1148a9e6f273..7640391df067 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 1873894810ab..d555c2d87c19 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 3aba007a3e87..8be80babd32c 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 3e30867e999b..3b9aada20994 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 8539196c3d30..86a340630e56 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 1bc9797cc59f..eb3f5e964d20 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 8514bee5127a..d6e7b4919f80 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 52e5f0535f27..f121333747bb 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index ce592d832361..bdd57cd3f8cd 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index fafa035ba81d..5cdf49e1c25c 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index ea2766e7cac0..ca9b3f6e519e 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index c91b8d2c15c0..673c43a53f11 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index e5dfe4146947..fe0e0c2cf059 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 58d4d93cc94c..f3b0b701a331 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 28acb79effb0..351fb3d09ebb 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 47a3e56c9aa1..9d29d07d1cbe 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index ee68a243eef0..22c5fd25d0e5 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index a0b2fd0c7234..dc8bb232d020 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index f07cf8424c27..eb2006cb6201 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index e7b667e52c67..3ec0deaa090e 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 3748eb922e7e..6b11d63d3ac8 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 97f0b1ea12c5..d260b2253177 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 7ae858e08207..21dcc75df4fd 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 2432386e38ce..117260005d2d 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 8d024e291672..0f6c1189ab79 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 63dbb84003cc..5a8bafd22bb7 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 11b4a04ef57a..36ba7a44c584 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 3917e5e6df42..c6df9c22891a 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 37854857e172..d5d6a7b86bc5 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 89247c2348d6..9d1652648e54 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index b9360fd30148..a9372bfdfc5c 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 13a944d2bf1a..cc83b8c175ee 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 5c0742fac4e9..376ddbe626c8 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index e0a3004cb0d9..e95a3bfa7cdb 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index f828e32d91e3..5cbdbd0ae079 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 87d9870e8719..43aa3fbeb3eb 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 4707ff2c4370..b276c1ad22af 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 0d5e93bf7a62..2048a5105195 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 0f3ec556a85d..de3e304f5045 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index fd7ba0bdd7f6..906f4ecbf4f8 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 26013b87ae36..172506b6f533 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 1a61696aff77..a57ed060b982 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index f5db61381744..20f478835804 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index cc1d7bea45dd..968628908b71 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index e6f18931ce58..b9fee867a018 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 355a3230ddf7..79280dfe6eca 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 664194ab03d0..a610c4dfaefb 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 069e7f1b3715..fceaa63b788b 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 06641a46537d..a5cb94a3d3f6 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 891da48f2d6e..90021478ad0e 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index c33d51ab1f15..2665787f71a8 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 3dc89a33332d..e826daebb498 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index f72ee23ef674..c3928076e3f7 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index fd00edc27d60..c8f89099694a 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 7aca4a55121b..488507a59e96 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index db9473c8a314..9149ccd18706 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index a62235e52897..9cd02611c4d2 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 73d345d0fe31..466c862d34ff 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index e6fb3ce33a7d..2729d7b22c2b 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 9e3b3198c15a..3ed2cf109e67 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 8b394f4343ca..bf24b715271e 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 30d6f8bd693d..d78fe6595c0a 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index f33b4a239ba0..b9c870a410f5 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 4aa0bfad9793..e2cb9efc7a7b 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index c30110a1b641..0664585f829f 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index f9bf8d1b3d24..ab639282aca8 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 24a3445727d1..eeea55378a3b 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 62304b107264..c71374fad5a1 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 4f0bef0ae67f..fe11071ff7c9 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 1729ad91cfff..4b99d11f9551 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 0432309e4704..decaeabe3aa8 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 290629f71da5..106b3f282ea9 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index d9427c8002cb..8a3b297ad09c 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 39166bb59411..dddc498d5512 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 08665da4817f..3ab5bbadd23e 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index ef46db315e4c..e8e6ae81e07d 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index f09bb41a75a4..2c1d0e54eb8a 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 33b4c17cdb0f..5bded65256e1 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 1797b1741cd7..c51e511645b0 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index d5f384dd7450..71123f0b0f5e 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 9931c21a8879..be18ea3fd09d 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 2328f9f2c7ce..b4f1397f3a4b 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index f4006700f8b8..4999f754bbc3 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index f9961a08a357..2e8ef390e118 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index fd022697da88..2749cd2e0a82 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 683ce70ee599..f86d48643162 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index cd7a28fcb254..d377c4c62053 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index bc74337ac77e..839e9206f710 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 5836aed7c8ea..4106ad59e192 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index e6a197ff390e..4b9a5e657347 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 25d60bfb8dd9..bc6dd7e7fe79 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 734cbe274bfd..822bb0330321 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 74ae4ed67172..ad7afead0cbf 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 003ee581a3be..dc455c4e4965 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 31a20c1d0570..e5c73c2d000b 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 5fa1ec99bfd8..d4c95d623b17 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index e19c402941b1..d8e0158b4532 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index a93aae09e5f3..cd7c7a242236 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index b0c00449da3d..3a5fd012138c 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 25fc52705b22..03a9fcc45f78 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 577dc6b41895..f6ac1d4751fa 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 46ae48cffd34..6b2cc36b2d74 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 8d7fb2b6dc45..2a11fd5523aa 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 57d68175db0d..0e8fc8f0641f 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 25b08522a30e..3ab56a0bd030 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 9bd78ec297a0..35b3fd532323 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index ac5b9d7927bf..4c59af57ab78 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index c5f779044dd4..5d05659a9b11 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 5bc3bd63d4cd..c54a4b2d9770 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index a92439ad6e0b..e71d8d44c6ea 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index ac9e802c63fb..6d75a512daef 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 5a3b2511ef9a..a6b4b94d0ad8 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 55872d022992..05d97ae2e738 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 96fa02f7b119..5cde7e937636 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 558be57c2f68..ffc5a2a25fbe 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 89cd63cb5569..725430db0dd3 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index f231930c0158..e60175e77c47 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index da72a3553f35..7b83ce3a5dbf 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index f274ba981bdb..82b66f79b636 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index f740ca93d9a4..af133c945aa2 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index b3522c38f423..4edc2df89f1c 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 2e09ff67c8e3..900ef4f58107 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 8374387bf620..1075a4068cf2 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index e3a40976d9b4..65406573c7a1 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 6380eff99909..7f1a7dea18d8 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 1bcc56537ac1..40bda5ec2235 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.14-SNAPSHOT + 2.15.14 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 5ee5f7365937..fd7e4804110d 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index fb0d56aef240..dd8ecbd4b481 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 2145041fcb7f..3e89361f347a 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 4491f9d75722..a5f1d8b13eab 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 32afa01c0a5e..03c627c02987 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 8f68d0eb97c2..95379110c249 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 9968057e1a16..4d4c24eaa471 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index bbf4e0449c37..89d34ab97107 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index dbe9601416d2..1426b70280ff 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index ee042763b7f1..23afe53c809a 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index a0d377c0f938..babe3c75568a 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index d383317384e3..803076bb93b7 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 461daf90eb03..550425efdfda 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 54c8ff18e05b..8e8a192bef5f 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index f73faf311f3d..9d5b35b88794 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 4091ea85ce7e..0622d104ca23 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 1308e211baa9..3c6d104fe529 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 9cef4b6aea27..218b212ddd84 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index a0083fe9e269..a0a00364f877 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 23330ef909e1..fb92d9c7f41d 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 7ab50b54bc7a..8fe0a4b30bb0 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 8ca83dd48e30..741f92cb0dd1 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index f086dfb4e95a..1a5351cf688a 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index c28852149bc9..5146ddcf7fb3 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 948139741788..4351f82b5570 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 896b082d63fc..7a77d357c8f4 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 31518cb8ad0d..7e741306026a 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 5dd3ba1d09bb..c71dbb27a453 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 320bb4ab7888..e16364bde822 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 38023dcf735a..fbb8c8241fc4 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 966b7f036aa2..b9ec0ad42c31 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 96823ff084c5..fd600fcc25d4 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index e4013c8db6dd..4966534b2b7e 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index baeb043ff1e2..1d65812ed2c5 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 93e02a7f39b6..6e95501d559a 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index f43572200f7b..fde49b45591e 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index b4b9cef097fd..9e572cb5e11e 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index fa7ae1178c91..655065c77c7d 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 5a5f8111aced..7874a765a4fd 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 2e337672737b..d59c124be796 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index fffafbc0ff9b..a306fe28185f 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index b74f172a9d9d..8fe9be4b7da0 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index a405b02cba71..9862388293dc 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index a8ab914c6ae7..0bb20f240aab 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 553a59ca11c8..d9c8f0c2374b 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 553f1db2e156..e185c1d84187 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 3c632907b870..6952533907ea 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index f8256c6fdd84..8ca932c71eaf 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 7f9e7095fd4a..0d3952e2ca09 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 8dacbbe01d8a..24150dfd9120 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 6b667bc7560f..249672932d0f 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 1070a8294a4b..97402a713676 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 065aa9d4800f..b4ef0a60c69d 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 383199ed2a88..509c70cabeae 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 37185b7f25c1..1ff355f353ed 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index f57f71d407c8..a2a2cbbaac70 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index a1e53bf6ea7b..bb6e9fbda5cf 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 6a2067010b73..0d642fd44192 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 7738b22b04bc..d1259faee006 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 93749d324d8b..a270c1a50186 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 7e0805fc725a..4b5a9d069cf2 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index d1e4337870c5..c682d83e8494 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 29748547b0e4..d10a6a0f02c8 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14-SNAPSHOT + 2.15.14 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index f984d34d5b2d..ccdb06fa14ad 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.15.14-SNAPSHOT + 2.15.14 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index ba51eccbcaaa..f92fa9ce1b94 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.15.14-SNAPSHOT + 2.15.14 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 6261395ab461..44cbdf6dfc63 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.15.14-SNAPSHOT + 2.15.14 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 4453d5c709d2..85f737a0cc37 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.15.14-SNAPSHOT + 2.15.14 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index e4aa374f8fdf..9f83beb2ffad 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.15.14-SNAPSHOT + 2.15.14 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index f0b27532e17f..e07213d777d1 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.14-SNAPSHOT + 2.15.14 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index b6600f1e8a23..515c5df137fa 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.15.14-SNAPSHOT + 2.15.14 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 88e8a6791b7f..36f39ef7f6b5 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.15.14-SNAPSHOT + 2.15.14 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 924b6529cd12..bc7f707bcd28 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.15.14-SNAPSHOT + 2.15.14 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index b2add11be655..2f044e3a599d 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.15.14-SNAPSHOT + 2.15.14 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 346fd9bc4b01..dde17efbc26a 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.14-SNAPSHOT + 2.15.14 4.0.0 From 4f41645bec674c3efd1336910909253cedb74800 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 23 Oct 2020 19:00:12 +0000 Subject: [PATCH 066/339] Update to next snapshot version: 2.15.15-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 280 files changed, 280 insertions(+), 280 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 1bc56aa2e6c7..befc9d125ede 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 2e53f77f6255..fda212587a56 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 521c8589163f..f68b8d0497b9 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.15.14 + 2.15.15-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index c7dc5df549ba..9158e72a78cc 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index fe04e459d583..3926be046e7e 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.14 + 2.15.15-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index f77073c523bc..6bdbf1549779 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.14 + 2.15.15-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 2524b3a35e46..8333489a938b 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.15.14 + 2.15.15-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index d5d77e6e581a..547cb7cdaef4 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.14 + 2.15.15-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 7194be7528f2..31a90d9ceb90 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.15.14 + 2.15.15-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index ca99c5809358..98a19a5186a0 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.14 + 2.15.15-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index cde66bc2e3fe..527fa06d2143 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 3dabe7a0efbd..7a3a188e1404 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 13bd801c3888..5f184efab853 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.14 + 2.15.15-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 8db0b35fbc31..7a1b0aac6e0e 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.14 + 2.15.15-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index fe5d4c464c5f..38861cb25808 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 1df027917960..0e9f492c6754 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 63e51cd52c04..887e22fce43d 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.14 + 2.15.15-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index d48f13af4fd6..b06338a5c92e 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.15.14 + 2.15.15-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index a8b17d8dfc4a..33021b13ab12 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 3f86ee80b61b..5822479770bf 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.15.14 + 2.15.15-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 4f10551a5b98..7f85f90cde8d 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.15.14 + 2.15.15-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 36fd9bc85b68..14755ab2cdc9 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.15.14 + 2.15.15-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 59b3eb801a23..e8f88ff02f63 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 21f22f242f40..62f9586e1f3d 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index c4a07f07b296..c6a3cf73343e 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.14 + 2.15.15-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 1743d2dac543..f88707f97f97 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.14 + 2.15.15-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index c27cc3890b60..6240758b35a2 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.15.14 + 2.15.15-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index 4ae054c9ccd6..7c753ef9c9b5 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.15.14 + 2.15.15-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 92b755dce453..e672f3c28d31 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.15.14 + 2.15.15-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index a80e8398d043..397e4395cc60 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.15.14 + 2.15.15-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index ee6744d880d1..fa9a4af579e7 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 00171762c866..0d07a3794210 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.15.14 + 2.15.15-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 837cee42009d..3b6f5580325d 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.15.14 + 2.15.15-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index b5a31453cf1f..799ccaa492b0 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.14 + 2.15.15-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index c321abf6908b..7429e789c008 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.14 + 2.15.15-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 8e9230a2a9c7..8f2adac7fae6 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.14 + 2.15.15-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index a7392fed6fc9..75836003c3a9 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.15.14 + 2.15.15-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index a618132eb7e9..519e3034c8d8 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.14 + 2.15.15-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 2fc660debd3b..3baa1cf14381 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index c2fcada35aff..52f0befcff02 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 2e6d72e4777d..1d7f044fcd1b 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 9b64a4857c87..385811099c75 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 2625a551609f..31dc8389b100 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 55e8f97d7664..9adec064c6fd 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 5d2207cedd63..990d4791f8de 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index d8d007b4ba2e..0476698c417b 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index f830634d49be..bdcb810659c1 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index f2bc4bbab057..0f5a5e1e9e0f 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 90e4f327a014..b0211727b45a 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index f416d2c04329..35a97548744d 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index db6ebf85b12f..96fd6c24a5c2 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 54db552d735f..107fd7a55276 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 3d282a33e00a..f0e8c2b3608a 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index bca2d6eda7da..7999e073743b 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 8c8bf7e25168..3f839834bbe7 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index f081ba23dd25..5c1e7d79e82e 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 592275ccbd1f..8d9c553f9684 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 0269c0640834..180ce1331a51 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 7d9c7ffc897d..d6ea38989e9b 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 05449139de8d..cccc819ad43a 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 83750f015b21..3a19a48b34d5 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 210fbd9f9cb4..831783ee9c17 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index c32a1850d530..681888a212c8 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 75d7b49b0b32..b8c950f83db4 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 96e839267733..026f7c4945ea 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 41c9bc412870..13101b061f12 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 865c98cc17f3..7394a020c5cb 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index c01f18af68f1..33ba76243543 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 44fbd31b10b1..f10e7f66d24f 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 79464fba713e..f2aac5644dfa 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index bca3d52bc755..7309a742337b 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index b50005e28caa..d283bd8ed426 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 178ff21c91bc..126e41d0a49b 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 00d036caaaa9..205aa869e446 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 993651bb9220..e6aa15039885 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index a6fde0decfbd..b1b1af5a43f0 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 42b069e73a64..510ec4a1b476 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 2d9f243a6dd5..4708ee1aefc0 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index a20523341d1c..2adffcc1d0ae 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 2924941e722a..3872ceeaad88 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 7640391df067..2c2488cef60d 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index d555c2d87c19..4434edcefb1d 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 8be80babd32c..0c5e60a6d131 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 3b9aada20994..7d80b988171a 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 86a340630e56..5702673dd71f 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index eb3f5e964d20..89f6c25a4f51 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index d6e7b4919f80..a667735531ac 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index f121333747bb..a5a67a607a69 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index bdd57cd3f8cd..6840cb0d11d9 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 5cdf49e1c25c..ee49ff8735aa 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index ca9b3f6e519e..5c6142822b1b 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 673c43a53f11..8f8e3556da4f 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index fe0e0c2cf059..c1f5151fa996 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index f3b0b701a331..e13c4b44c72d 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 351fb3d09ebb..4235f1df771b 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 9d29d07d1cbe..f4545130a293 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 22c5fd25d0e5..a15f5a55b10a 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index dc8bb232d020..88e5f3e2c0e6 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index eb2006cb6201..5f6b9a0057ad 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 3ec0deaa090e..855200b112be 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 6b11d63d3ac8..03f1c04af90a 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index d260b2253177..546a5af8f0ac 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 21dcc75df4fd..0d51013c9b7f 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 117260005d2d..7f9bda5f7fd1 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 0f6c1189ab79..f8cf56855a72 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 5a8bafd22bb7..05497c2d9a7d 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 36ba7a44c584..705e8445ee29 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index c6df9c22891a..5fb9d2a48479 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index d5d6a7b86bc5..0ed8e1436524 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 9d1652648e54..d13bcedd90d4 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index a9372bfdfc5c..79e8edaf49f8 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index cc83b8c175ee..68b43c068df4 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 376ddbe626c8..6fe92ed2058b 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index e95a3bfa7cdb..a0365e62be01 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 5cbdbd0ae079..e984155cbac1 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 43aa3fbeb3eb..794edfa648cf 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index b276c1ad22af..c6039f2b90b4 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 2048a5105195..c46d24cac44b 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index de3e304f5045..39e91f96053e 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 906f4ecbf4f8..739d8105cda8 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 172506b6f533..923a997dfb57 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index a57ed060b982..8e7401f18005 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 20f478835804..3a1dbf5e11e0 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 968628908b71..b8c92e1abc55 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index b9fee867a018..107243a56128 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 79280dfe6eca..93460d9cd378 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index a610c4dfaefb..7892ee27059f 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index fceaa63b788b..26b0908a5385 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index a5cb94a3d3f6..ba3f17cb6c78 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 90021478ad0e..210b0f704034 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 2665787f71a8..87e0deee1117 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index e826daebb498..9b80b2436c40 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index c3928076e3f7..716766aae781 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index c8f89099694a..c0edcd07a606 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 488507a59e96..df33c4a0b4a7 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 9149ccd18706..e0cecac26412 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 9cd02611c4d2..86b3b76c39e1 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 466c862d34ff..f2aadc0a40fd 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 2729d7b22c2b..fb6266fc752c 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 3ed2cf109e67..22fb532f2a33 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index bf24b715271e..1ad904b0aeb9 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index d78fe6595c0a..dc471d86eb40 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index b9c870a410f5..a4e09a7dadd6 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index e2cb9efc7a7b..27e886b7f62e 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 0664585f829f..6fb3d936b13e 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index ab639282aca8..1c7858ef52ee 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index eeea55378a3b..c6e6db2dd3af 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index c71374fad5a1..a1cf335a8991 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index fe11071ff7c9..bb1bd35ad3af 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 4b99d11f9551..b31d32f55bbe 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index decaeabe3aa8..b0a0767066f1 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 106b3f282ea9..0bef23979bc0 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 8a3b297ad09c..2cf1a4ee3b6a 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index dddc498d5512..f0fe307d5641 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 3ab5bbadd23e..d862de17a4f5 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index e8e6ae81e07d..816507b06fe9 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 2c1d0e54eb8a..42ffc0a8916f 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 5bded65256e1..9bd457731a90 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index c51e511645b0..29ef2a5d85d8 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 71123f0b0f5e..d19ea6826bba 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index be18ea3fd09d..7c0f4fd95df1 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index b4f1397f3a4b..08fafc48e215 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 4999f754bbc3..6262b0b25799 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 2e8ef390e118..30bd2bd2fc82 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 2749cd2e0a82..2fa22ab3e1bb 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index f86d48643162..a987e1d7031f 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index d377c4c62053..c78d0c397e2b 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 839e9206f710..382826aea9c4 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 4106ad59e192..7f55c2cbc939 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 4b9a5e657347..7c70a30804f4 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index bc6dd7e7fe79..31bea9e082f8 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 822bb0330321..04b533eee0a9 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index ad7afead0cbf..95cf83f309e1 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index dc455c4e4965..7a09a0485a44 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index e5c73c2d000b..c451dbaf2134 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index d4c95d623b17..9c9305d5324a 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index d8e0158b4532..ae80c12ab1b7 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index cd7c7a242236..f584226633c6 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 3a5fd012138c..704418ba42d2 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 03a9fcc45f78..588c789205c8 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index f6ac1d4751fa..7d74611b4a91 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 6b2cc36b2d74..aff7b3334be0 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 2a11fd5523aa..3d1e4c2ec557 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 0e8fc8f0641f..03da3a5120bf 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 3ab56a0bd030..26b2ac856872 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 35b3fd532323..e6093281c0ce 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 4c59af57ab78..2eac4f0cccc4 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 5d05659a9b11..678f8ae79fc6 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index c54a4b2d9770..3136dd10ab44 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index e71d8d44c6ea..fb1bdc50b609 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 6d75a512daef..2ee5af869e20 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index a6b4b94d0ad8..bd96324917e6 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 05d97ae2e738..737df8d957a5 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 5cde7e937636..20ebcf67055a 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index ffc5a2a25fbe..edaeb097c629 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 725430db0dd3..82e63296b484 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index e60175e77c47..2a2bd527a508 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 7b83ce3a5dbf..623c9b244cd4 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 82b66f79b636..6920238edab0 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index af133c945aa2..c6d38fecf275 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 4edc2df89f1c..695c276d0b5e 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 900ef4f58107..8b4f396c9015 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 1075a4068cf2..1a8fc7065fb7 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 65406573c7a1..4771bfd0bfd5 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 7f1a7dea18d8..c36cf1908edf 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 40bda5ec2235..da23a9d1c61e 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.14 + 2.15.15-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index fd7e4804110d..8066392521c3 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index dd8ecbd4b481..6ec6ec4d8027 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 3e89361f347a..796f3571a02e 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index a5f1d8b13eab..637f6a2d7fb6 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 03c627c02987..8e765be39260 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 95379110c249..21ac14ba0408 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 4d4c24eaa471..41e50979fc1d 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 89d34ab97107..32ecbd45086a 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 1426b70280ff..8ac44b6ffdbf 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 23afe53c809a..9785ba1e2106 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index babe3c75568a..43aaa7382119 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 803076bb93b7..9f3800d03d51 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 550425efdfda..3fa50d164093 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 8e8a192bef5f..a2ba80da7014 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 9d5b35b88794..c32ccf752438 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 0622d104ca23..00d381ec1741 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 3c6d104fe529..4ab28db633ef 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 218b212ddd84..5dea7732deee 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index a0a00364f877..cfd3d3604c02 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index fb92d9c7f41d..733f77a5fe50 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 8fe0a4b30bb0..399a0aa86fac 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 741f92cb0dd1..0a7242ae863a 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 1a5351cf688a..eb89cbec2a59 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 5146ddcf7fb3..3442bf0bcd43 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 4351f82b5570..0387313f3170 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 7a77d357c8f4..c4e236b3d877 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 7e741306026a..069857c663d0 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index c71dbb27a453..da5c9626d6e3 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index e16364bde822..b96334fdd3e0 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index fbb8c8241fc4..5e4025222aa7 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index b9ec0ad42c31..42df4adf44a1 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index fd600fcc25d4..2fa8dc4ac4c0 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 4966534b2b7e..4def044248f0 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 1d65812ed2c5..ce46ed3bf69f 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 6e95501d559a..c7ac0269d872 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index fde49b45591e..e20149ed70c0 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 9e572cb5e11e..7c0e3c13caeb 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 655065c77c7d..875b1c7e390d 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 7874a765a4fd..a44c5c22826e 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index d59c124be796..f774a2ab6285 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index a306fe28185f..150a5aba9647 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 8fe9be4b7da0..73daaa6242e8 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 9862388293dc..d4bb55ff786f 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 0bb20f240aab..924eeaf03d04 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index d9c8f0c2374b..70dab06bafc5 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index e185c1d84187..07bc6a01e6e4 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 6952533907ea..9a62fececf8c 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 8ca932c71eaf..6d9c18419098 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 0d3952e2ca09..58b63774388e 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 24150dfd9120..bc63f0b948e5 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 249672932d0f..ad62fe1d862d 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 97402a713676..74512aafd4a2 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index b4ef0a60c69d..408ff33f2bae 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 509c70cabeae..f154e5da2c86 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 1ff355f353ed..8bb60517a8b9 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index a2a2cbbaac70..dabb63fd0d95 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index bb6e9fbda5cf..d528521b551b 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 0d642fd44192..99af75a256f5 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index d1259faee006..aeaa64402d3f 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index a270c1a50186..531768e5b690 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 4b5a9d069cf2..58772d80550e 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index c682d83e8494..dca53b0ae651 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index d10a6a0f02c8..6ded5e40ad0b 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.14 + 2.15.15-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index ccdb06fa14ad..24a67af8c911 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.15.14 + 2.15.15-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index f92fa9ce1b94..ddd4ac09da2d 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.15.14 + 2.15.15-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 44cbdf6dfc63..b89083dacf02 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.15.14 + 2.15.15-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 85f737a0cc37..22d96c9bc673 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.15.14 + 2.15.15-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 9f83beb2ffad..3886189dd0ff 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.15.14 + 2.15.15-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index e07213d777d1..f92aab79cbad 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.14 + 2.15.15-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 515c5df137fa..59ce7560ec04 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.15.14 + 2.15.15-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 36f39ef7f6b5..23434824292f 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.15.14 + 2.15.15-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index bc7f707bcd28..673184c6b4b2 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.15.14 + 2.15.15-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 2f044e3a599d..2fa70d164153 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.15.14 + 2.15.15-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index dde17efbc26a..66e4733c4029 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.14 + 2.15.15-SNAPSHOT 4.0.0 From 68c616fddcbbf504d888fc98295d6da3dda0eb53 Mon Sep 17 00:00:00 2001 From: Zoe Wang Date: Fri, 23 Oct 2020 11:57:27 -0700 Subject: [PATCH 067/339] Revert "Revert "Add an option to provide github username to be mentioned in the CHAGNELOG"" This reverts commit a63fdbc644fcaf13cc013c96fd49e4e5d3035925. --- scripts/changelog/model.py | 3 ++- scripts/changelog/util.py | 3 ++- scripts/changelog/writer.py | 23 ++++++++++++++++++++--- scripts/new-change | 19 ++++++++++++++++++- 4 files changed, 42 insertions(+), 6 deletions(-) diff --git a/scripts/changelog/model.py b/scripts/changelog/model.py index 722108159c76..0b21fedd415f 100644 --- a/scripts/changelog/model.py +++ b/scripts/changelog/model.py @@ -5,9 +5,10 @@ def __init__(self, version, date, entries): self.entries = entries class ChangelogEntry(object): - def __init__(self, type, category, description): + def __init__(self, type, category, description, contributor): self.type = type self.category = category + self.contributor = contributor self.description = description class Version(object): diff --git a/scripts/changelog/util.py b/scripts/changelog/util.py index 998a5f2a1429..acb86d8d8049 100644 --- a/scripts/changelog/util.py +++ b/scripts/changelog/util.py @@ -38,7 +38,8 @@ def parse_release_changes(changes_json): return ReleaseChanges(version, date, entries) def parse_changelog_entry(entry_json): - return ChangelogEntry(entry_json['type'], entry_json['category'], entry_json['description']) + return ChangelogEntry(entry_json['type'], entry_json['category'], entry_json['description'], + entry_json.get('contributor')) def parse_version_string(s): version_parts = [s for s in s.split('.')] diff --git a/scripts/changelog/writer.py b/scripts/changelog/writer.py index 458fb8f02561..a41dad92c971 100644 --- a/scripts/changelog/writer.py +++ b/scripts/changelog/writer.py @@ -28,6 +28,19 @@ def write_changes(self, changes): self.write_items_for_category(s, self.bugfixes, "Bugfixes") self.write_items_for_category(s, self.deprecations, "Deprecations") self.write_items_for_category(s, self.removals, "Removals") + self.write_contributors() + + def write_contributors(self): + contributors = set() + for e in self.current_changes.entries: + if e.contributor: + contributors.add(e.contributor) + + if contributors: + self.output_file.write("## __Contributors__\n") + contributors_string = ', '.join(contributors) + self.output_file.write("Special thanks to the following contributors to this release: \n") + self.output_file.write("\n" + contributors_string + ".\n") def process_changes(self, changes): self.current_changes = changes @@ -44,7 +57,7 @@ def reset_maps(self): def group_entries(self): for e in self.current_changes.entries: m = self.get_map_for_type(e.type) - m.setdefault(e.category, []).append(e.description) + m.setdefault(e.category, []).append(e) self.categories.add(e.category) def get_sorted_categories(self): @@ -75,7 +88,8 @@ def write_entries_with_header(self, header, entries): self.write('\n') def write_entry(self,e): - entry_lines = e.splitlines(True) + description = e.description + entry_lines = description.splitlines(True) self.write(" - %s" % entry_lines[0]) for l in entry_lines[1:]: if len(l.strip()) == 0: @@ -83,7 +97,10 @@ def write_entry(self,e): else: self.write(" %s" % l) self.write('\n') - + if e.contributor: + self.write("\n - ") + self.write("Contributed by: " + e.contributor) + self.write('\n') def get_map_for_type(self, t): if t == 'feature': diff --git a/scripts/new-change b/scripts/new-change index 21d12444947e..bab75aeedbff 100755 --- a/scripts/new-change +++ b/scripts/new-change @@ -61,6 +61,12 @@ type: {change_type} # or "AWS SDK for Java v2" if it's an SDK change to the core, runtime etc category: {category} +# Your GitHub user name to be included in the CHANGELOG. +# Every contribution counts and we would like to recognize +# your contribution! +# Leave it empty if you would prefer not to be mentioned. +contributor: {contributor} + The description of the change. Feel free to use Markdown here. description: {description} """ @@ -76,6 +82,7 @@ def new_changelog_entry(args): 'type': args.change_type, 'category': args.category, 'description': args.description, + 'contributor': args.contributor } else: parsed_values = get_values_from_editor(args) @@ -94,7 +101,7 @@ def get_missing_parts(parsed_values): def all_values_provided(args): - return args.change_type and args.category and args.description + return args.change_type and args.category and args.description and args.contributor def get_values_from_editor(args): @@ -103,6 +110,7 @@ def get_values_from_editor(args): change_type=args.change_type, category=args.category, description=args.description, + contributor=args.contributor ) f.write(contents) f.flush() @@ -137,6 +145,11 @@ def write_new_change(parsed_values): os.makedirs(dirname) # Need to generate a unique filename for this change. category = parsed_values['category'] + + contributor = parsed_values['contributor'] + if contributor and contributor.strip: + parsed_values['contributor'] = "@" + contributor + short_summary = ''.join(filter(lambda x: x in VALID_CHARS, category)) contents = json.dumps(parsed_values, indent=4) + "\n" contents_digest = hashlib.sha1(contents.encode('utf-8')).hexdigest() @@ -176,6 +189,8 @@ def parse_filled_in_contents(contents): parsed['type'] = t elif 'category' not in parsed and line.startswith('category:'): parsed['category'] = line[len('category:'):].strip() + elif 'contributor' not in parsed and line.startswith('contributor:'): + parsed['contributor'] = line[len('contributor:'):].strip() elif 'description' not in parsed and line.startswith('description:'): # Assume that everything until the end of the file is part # of the description, so we can break once we pull in the @@ -193,6 +208,8 @@ def main(): default='', choices=('bugfix', 'feature', 'deprecation')) parser.add_argument('-c', '--category', dest='category', default='') + parser.add_argument('-u', '--contributor', dest='contributor', + default='') parser.add_argument('-d', '--description', dest='description', default='') parser.add_argument('-r', '--repo', default='aws/aws-sdk-java-v2', From 82aa860b0b29e00042a7d46e456e8ba2097b5f54 Mon Sep 17 00:00:00 2001 From: Zoe Wang Date: Fri, 23 Oct 2020 12:39:17 -0700 Subject: [PATCH 068/339] Fix script --- scripts/changelog/writer.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/changelog/writer.py b/scripts/changelog/writer.py index a41dad92c971..ca9e55d0b256 100644 --- a/scripts/changelog/writer.py +++ b/scripts/changelog/writer.py @@ -1,6 +1,7 @@ from changelog.git import stage_file from changelog.util import load_all_released_changes, load_unreleased_changes, version_cmp from functools import cmp_to_key +from operator import attrgetter class ChangelogWriter(object): """ @@ -40,7 +41,7 @@ def write_contributors(self): self.output_file.write("## __Contributors__\n") contributors_string = ', '.join(contributors) self.output_file.write("Special thanks to the following contributors to this release: \n") - self.output_file.write("\n" + contributors_string + ".\n") + self.output_file.write("\n" + contributors_string + "\n") def process_changes(self, changes): self.current_changes = changes @@ -76,7 +77,8 @@ def write_category_header(self, c): self.output_file.write("## __%s__\n" % c) def write_items_for_category(self, category, map, header): - items = sorted(map.get(category, [])) + entries = map.get(category, []) + items = sorted(entries, key=attrgetter('description')) self.write_entries_with_header(header, items) def write_entries_with_header(self, header, entries): @@ -98,7 +100,7 @@ def write_entry(self,e): self.write(" %s" % l) self.write('\n') if e.contributor: - self.write("\n - ") + self.write(" - ") self.write("Contributed by: " + e.contributor) self.write('\n') From 5e7c1fd9a87d608a02cc5ec46327bbe6dbb7ce96 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 26 Oct 2020 18:10:36 +0000 Subject: [PATCH 069/339] AWSKendraFrontendService Update: Amazon Kendra now supports indexing data from Confluence Server. --- ...ture-AWSKendraFrontendService-71aa78d.json | 6 + .../codegen-resources/service-2.json | 285 +++++++++++++++++- 2 files changed, 290 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AWSKendraFrontendService-71aa78d.json diff --git a/.changes/next-release/feature-AWSKendraFrontendService-71aa78d.json b/.changes/next-release/feature-AWSKendraFrontendService-71aa78d.json new file mode 100644 index 000000000000..5010261bea05 --- /dev/null +++ b/.changes/next-release/feature-AWSKendraFrontendService-71aa78d.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWSKendraFrontendService", + "contributor": "", + "description": "Amazon Kendra now supports indexing data from Confluence Server." +} diff --git a/services/kendra/src/main/resources/codegen-resources/service-2.json b/services/kendra/src/main/resources/codegen-resources/service-2.json index 62326bffc06e..d86cd3af01ff 100644 --- a/services/kendra/src/main/resources/codegen-resources/service-2.json +++ b/services/kendra/src/main/resources/codegen-resources/service-2.json @@ -762,6 +762,284 @@ "documentation":"

", "exception":true }, + "ConfluenceAttachmentConfiguration":{ + "type":"structure", + "members":{ + "CrawlAttachments":{ + "shape":"Boolean", + "documentation":"

Indicates whether Amazon Kendra indexes attachments to the pages and blogs in the Confluence data source.

" + }, + "AttachmentFieldMappings":{ + "shape":"ConfluenceAttachmentFieldMappingsList", + "documentation":"

Defines how attachment metadata fields should be mapped to index fields. Before you can map a field, you must first create an index field with a matching type using the console or the UpdateIndex operation.

If you specify the AttachentFieldMappings parameter, you must specify at least one field mapping.

" + } + }, + "documentation":"

Specifies the attachment settings for the Confluence data source. Attachment settings are optional, if you don't specify settings attachments, Amazon Kendra won't index them.

" + }, + "ConfluenceAttachmentFieldMappingsList":{ + "type":"list", + "member":{"shape":"ConfluenceAttachmentToIndexFieldMapping"}, + "max":11, + "min":1 + }, + "ConfluenceAttachmentFieldName":{ + "type":"string", + "enum":[ + "AUTHOR", + "CONTENT_TYPE", + "CREATED_DATE", + "DISPLAY_URL", + "FILE_SIZE", + "ITEM_TYPE", + "PARENT_ID", + "SPACE_KEY", + "SPACE_NAME", + "URL", + "VERSION" + ] + }, + "ConfluenceAttachmentToIndexFieldMapping":{ + "type":"structure", + "members":{ + "DataSourceFieldName":{ + "shape":"ConfluenceAttachmentFieldName", + "documentation":"

The name of the field in the data source.

You must first create the index field using the operation.

" + }, + "DateFieldFormat":{ + "shape":"DataSourceDateFieldFormat", + "documentation":"

The format for date fields in the data source. If the field specified in DataSourceFieldName is a date field you must specify the date format. If the field is not a date field, an exception is thrown.

" + }, + "IndexFieldName":{ + "shape":"IndexFieldName", + "documentation":"

The name of the index field to map to the Confluence data source field. The index field type must match the Confluence field type.

" + } + }, + "documentation":"

Defines the mapping between a field in the Confluence data source to a Amazon Kendra index field.

You must first create the index field using the operation.

" + }, + "ConfluenceBlogConfiguration":{ + "type":"structure", + "members":{ + "BlogFieldMappings":{ + "shape":"ConfluenceBlogFieldMappingsList", + "documentation":"

Defines how blog metadata fields should be mapped to index fields. Before you can map a field, you must first create an index field with a matching type using the console or the UpdateIndex operation.

If you specify the BlogFieldMappings parameter, you must specify at least one field mapping.

" + } + }, + "documentation":"

Specifies the blog settings for the Confluence data source. Blogs are always indexed unless filtered from the index by the ExclusionPatterns or InclusionPatterns fields in the data type.

" + }, + "ConfluenceBlogFieldMappingsList":{ + "type":"list", + "member":{"shape":"ConfluenceBlogToIndexFieldMapping"}, + "max":9, + "min":1 + }, + "ConfluenceBlogFieldName":{ + "type":"string", + "enum":[ + "AUTHOR", + "DISPLAY_URL", + "ITEM_TYPE", + "LABELS", + "PUBLISH_DATE", + "SPACE_KEY", + "SPACE_NAME", + "URL", + "VERSION" + ] + }, + "ConfluenceBlogToIndexFieldMapping":{ + "type":"structure", + "members":{ + "DataSourceFieldName":{ + "shape":"ConfluenceBlogFieldName", + "documentation":"

The name of the field in the data source.

" + }, + "DateFieldFormat":{ + "shape":"DataSourceDateFieldFormat", + "documentation":"

The format for date fields in the data source. If the field specified in DataSourceFieldName is a date field you must specify the date format. If the field is not a date field, an exception is thrown.

" + }, + "IndexFieldName":{ + "shape":"IndexFieldName", + "documentation":"

The name of the index field to map to the Confluence data source field. The index field type must match the Confluence field type.

" + } + }, + "documentation":"

Defines the mapping between a blog field in the Confluence data source to a Amazon Kendra index field.

You must first create the index field using the operation.

" + }, + "ConfluenceConfiguration":{ + "type":"structure", + "required":[ + "ServerUrl", + "SecretArn", + "Version" + ], + "members":{ + "ServerUrl":{ + "shape":"Url", + "documentation":"

The URL of your Confluence instance. Use the full URL of the server. For example, https://server.example.com:port/. You can also use an IP address, for example, https://192.168.1.113/.

" + }, + "SecretArn":{ + "shape":"SecretArn", + "documentation":"

The Amazon Resource Name (ARN) of an AWS Secrets Manager secret that contains the key/value pairs required to connect to your Confluence server. The secret must contain a JSON structure with the following keys:

  • username - The user name of a user with administrative privileges for the Confluence server.

  • password - The password associated with the user logging in to the Confluence server.

" + }, + "Version":{ + "shape":"ConfluenceVersion", + "documentation":"

Specifies the version of the Confluence installation that you are connecting to.

" + }, + "SpaceConfiguration":{ + "shape":"ConfluenceSpaceConfiguration", + "documentation":"

Specifies configuration information for indexing Confluence spaces.

" + }, + "PageConfiguration":{ + "shape":"ConfluencePageConfiguration", + "documentation":"

Specifies configuration information for indexing Confluence pages.

" + }, + "BlogConfiguration":{ + "shape":"ConfluenceBlogConfiguration", + "documentation":"

Specifies configuration information for indexing Confluence blogs.

" + }, + "AttachmentConfiguration":{ + "shape":"ConfluenceAttachmentConfiguration", + "documentation":"

Specifies configuration information for indexing attachments to Confluence blogs and pages.

" + }, + "VpcConfiguration":{ + "shape":"DataSourceVpcConfiguration", + "documentation":"

Specifies the information for connecting to an Amazon VPC.

" + }, + "InclusionPatterns":{ + "shape":"DataSourceInclusionsExclusionsStrings", + "documentation":"

A list of regular expression patterns that apply to a URL on the Confluence server. An inclusion pattern can apply to a blog post, a page, a space, or an attachment. Items that match the patterns are included in the index. Items that don't match the pattern are excluded from the index. If an item matches both an inclusion pattern and an exclusion pattern, the item isn't included in the index.

" + }, + "ExclusionPatterns":{ + "shape":"DataSourceInclusionsExclusionsStrings", + "documentation":"

A list of regular expression patterns that apply to a URL on the Confluence server. An exclusion pattern can apply to a blog post, a page, a space, or an attachment. Items that match the pattern are excluded from the index. Items that don't match the pattern are included in the index. If a item matches both an exclusion pattern and an inclusion pattern, the item isn't included in the index.

" + } + }, + "documentation":"

Provides configuration information for data sources that connect to Confluence.

" + }, + "ConfluencePageConfiguration":{ + "type":"structure", + "members":{ + "PageFieldMappings":{ + "shape":"ConfluencePageFieldMappingsList", + "documentation":"

Defines how page metadata fields should be mapped to index fields. Before you can map a field, you must first create an index field with a matching type using the console or the UpdateIndex operation.

If you specify the PageFieldMappings parameter, you must specify at least one field mapping.

" + } + }, + "documentation":"

Specifies the page settings for the Confluence data source.

" + }, + "ConfluencePageFieldMappingsList":{ + "type":"list", + "member":{"shape":"ConfluencePageToIndexFieldMapping"}, + "max":12, + "min":1 + }, + "ConfluencePageFieldName":{ + "type":"string", + "enum":[ + "AUTHOR", + "CONTENT_STATUS", + "CREATED_DATE", + "DISPLAY_URL", + "ITEM_TYPE", + "LABELS", + "MODIFIED_DATE", + "PARENT_ID", + "SPACE_KEY", + "SPACE_NAME", + "URL", + "VERSION" + ] + }, + "ConfluencePageToIndexFieldMapping":{ + "type":"structure", + "members":{ + "DataSourceFieldName":{ + "shape":"ConfluencePageFieldName", + "documentation":"

The name of the field in the data source.

" + }, + "DateFieldFormat":{ + "shape":"DataSourceDateFieldFormat", + "documentation":"

The format for date fields in the data source. If the field specified in DataSourceFieldName is a date field you must specify the date format. If the field is not a date field, an exception is thrown.

" + }, + "IndexFieldName":{ + "shape":"IndexFieldName", + "documentation":"

The name of the index field to map to the Confluence data source field. The index field type must match the Confluence field type.

" + } + }, + "documentation":"

Defines the mapping between a field in the Confluence data source to a Amazon Kendra index field.

You must first create the index field using the operation.

" + }, + "ConfluenceSpaceConfiguration":{ + "type":"structure", + "members":{ + "CrawlPersonalSpaces":{ + "shape":"Boolean", + "documentation":"

Specifies whether Amazon Kendra should index personal spaces. Users can add restrictions to items in personal spaces. If personal spaces are indexed, queries without user context information may return restricted items from a personal space in their results. For more information, see Filtering on user context.

" + }, + "CrawlArchivedSpaces":{ + "shape":"Boolean", + "documentation":"

Specifies whether Amazon Kendra should index archived spaces.

" + }, + "IncludeSpaces":{ + "shape":"ConfluenceSpaceList", + "documentation":"

A list of space keys for Confluence spaces. If you include a key, the blogs, documents, and attachments in the space are indexed. Spaces that aren't in the list aren't indexed. A space in the list must exist. Otherwise, Amazon Kendra logs an error when the data source is synchronized. If a space is in both the IncludeSpaces and the ExcludeSpaces list, the space is excluded.

" + }, + "ExcludeSpaces":{ + "shape":"ConfluenceSpaceList", + "documentation":"

A list of space keys of Confluence spaces. If you include a key, the blogs, documents, and attachments in the space are not indexed. If a space is in both the ExcludeSpaces and the IncludeSpaces list, the space is excluded.

" + }, + "SpaceFieldMappings":{ + "shape":"ConfluenceSpaceFieldMappingsList", + "documentation":"

Defines how space metadata fields should be mapped to index fields. Before you can map a field, you must first create an index field with a matching type using the console or the UpdateIndex operation.

If you specify the SpaceFieldMappings parameter, you must specify at least one field mapping.

" + } + }, + "documentation":"

Specifies the configuration for indexing Confluence spaces.

" + }, + "ConfluenceSpaceFieldMappingsList":{ + "type":"list", + "member":{"shape":"ConfluenceSpaceToIndexFieldMapping"}, + "max":4, + "min":1 + }, + "ConfluenceSpaceFieldName":{ + "type":"string", + "enum":[ + "DISPLAY_URL", + "ITEM_TYPE", + "SPACE_KEY", + "URL" + ] + }, + "ConfluenceSpaceIdentifier":{ + "type":"string", + "max":255, + "min":1, + "pattern":"^\\P{C}*$" + }, + "ConfluenceSpaceList":{ + "type":"list", + "member":{"shape":"ConfluenceSpaceIdentifier"}, + "min":1 + }, + "ConfluenceSpaceToIndexFieldMapping":{ + "type":"structure", + "members":{ + "DataSourceFieldName":{ + "shape":"ConfluenceSpaceFieldName", + "documentation":"

The name of the field in the data source.

" + }, + "DateFieldFormat":{ + "shape":"DataSourceDateFieldFormat", + "documentation":"

The format for date fields in the data source. If the field specified in DataSourceFieldName is a date field you must specify the date format. If the field is not a date field, an exception is thrown.

" + }, + "IndexFieldName":{ + "shape":"IndexFieldName", + "documentation":"

The name of the index field to map to the Confluence data source field. The index field type must match the Confluence field type.

" + } + }, + "documentation":"

Defines the mapping between a field in the Confluence data source to a Amazon Kendra index field.

You must first create the index field using the operation.

" + }, + "ConfluenceVersion":{ + "type":"string", + "enum":["SERVER"] + }, "ConnectionConfiguration":{ "type":"structure", "required":[ @@ -988,6 +1266,10 @@ "ServiceNowConfiguration":{ "shape":"ServiceNowConfiguration", "documentation":"

Provides configuration for data sources that connect to ServiceNow instances.

" + }, + "ConfluenceConfiguration":{ + "shape":"ConfluenceConfiguration", + "documentation":"

Provides configuration information for connecting to a Confluence data source.

" } }, "documentation":"

Configuration information for a Amazon Kendra data source.

" @@ -1212,7 +1494,8 @@ "SALESFORCE", "ONEDRIVE", "SERVICENOW", - "CUSTOM" + "CUSTOM", + "CONFLUENCE" ] }, "DataSourceVpcConfiguration":{ From caabc4fa5b2bfb3b2526240424c533fd9ed215a5 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 26 Oct 2020 18:10:36 +0000 Subject: [PATCH 070/339] Amazon Neptune Update: This feature enables custom endpoints for Amazon Neptune clusters. Custom endpoints simplify connection management when clusters contain instances with different capacities and configuration settings. --- .../feature-AmazonNeptune-7360c76.json | 6 + .../codegen-resources/paginators-1.json | 6 + .../codegen-resources/service-2.json | 442 +++++++++++++++++- 3 files changed, 450 insertions(+), 4 deletions(-) create mode 100644 .changes/next-release/feature-AmazonNeptune-7360c76.json diff --git a/.changes/next-release/feature-AmazonNeptune-7360c76.json b/.changes/next-release/feature-AmazonNeptune-7360c76.json new file mode 100644 index 000000000000..fb0c53f10905 --- /dev/null +++ b/.changes/next-release/feature-AmazonNeptune-7360c76.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Neptune", + "contributor": "", + "description": "This feature enables custom endpoints for Amazon Neptune clusters. Custom endpoints simplify connection management when clusters contain instances with different capacities and configuration settings." +} diff --git a/services/neptune/src/main/resources/codegen-resources/paginators-1.json b/services/neptune/src/main/resources/codegen-resources/paginators-1.json index 2a4588640a88..fddbddd2e111 100644 --- a/services/neptune/src/main/resources/codegen-resources/paginators-1.json +++ b/services/neptune/src/main/resources/codegen-resources/paginators-1.json @@ -1,5 +1,11 @@ { "pagination": { + "DescribeDBClusterEndpoints": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "DBClusterEndpoints" + }, "DescribeDBEngineVersions": { "input_token": "Marker", "limit_key": "MaxRecords", diff --git a/services/neptune/src/main/resources/codegen-resources/service-2.json b/services/neptune/src/main/resources/codegen-resources/service-2.json index ed8a484a390b..c586b8be6c0f 100644 --- a/services/neptune/src/main/resources/codegen-resources/service-2.json +++ b/services/neptune/src/main/resources/codegen-resources/service-2.json @@ -162,6 +162,27 @@ ], "documentation":"

Creates a new Amazon Neptune DB cluster.

You can use the ReplicationSourceIdentifier parameter to create the DB cluster as a Read Replica of another DB cluster or Amazon Neptune DB instance.

Note that when you create a new cluster using CreateDBCluster directly, deletion protection is disabled by default (when you create a new production cluster in the console, deletion protection is enabled by default). You can only delete a DB cluster if its DeletionProtection field is set to false.

" }, + "CreateDBClusterEndpoint":{ + "name":"CreateDBClusterEndpoint", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateDBClusterEndpointMessage"}, + "output":{ + "shape":"CreateDBClusterEndpointOutput", + "resultWrapper":"CreateDBClusterEndpointResult" + }, + "errors":[ + {"shape":"DBClusterEndpointQuotaExceededFault"}, + {"shape":"DBClusterEndpointAlreadyExistsFault"}, + {"shape":"DBClusterNotFoundFault"}, + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"InvalidDBInstanceStateFault"} + ], + "documentation":"

Creates a new custom endpoint and associates it with an Amazon Neptune DB cluster.

" + }, "CreateDBClusterParameterGroup":{ "name":"CreateDBClusterParameterGroup", "http":{ @@ -311,6 +332,24 @@ ], "documentation":"

The DeleteDBCluster action deletes a previously provisioned DB cluster. When you delete a DB cluster, all automated backups for that DB cluster are deleted and can't be recovered. Manual DB cluster snapshots of the specified DB cluster are not deleted.

Note that the DB Cluster cannot be deleted if deletion protection is enabled. To delete it, you must first set its DeletionProtection field to False.

" }, + "DeleteDBClusterEndpoint":{ + "name":"DeleteDBClusterEndpoint", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteDBClusterEndpointMessage"}, + "output":{ + "shape":"DeleteDBClusterEndpointOutput", + "resultWrapper":"DeleteDBClusterEndpointResult" + }, + "errors":[ + {"shape":"InvalidDBClusterEndpointStateFault"}, + {"shape":"DBClusterEndpointNotFoundFault"}, + {"shape":"InvalidDBClusterStateFault"} + ], + "documentation":"

Deletes a custom endpoint and removes it from an Amazon Neptune DB cluster.

" + }, "DeleteDBClusterParameterGroup":{ "name":"DeleteDBClusterParameterGroup", "http":{ @@ -405,6 +444,22 @@ ], "documentation":"

Deletes an event notification subscription.

" }, + "DescribeDBClusterEndpoints":{ + "name":"DescribeDBClusterEndpoints", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeDBClusterEndpointsMessage"}, + "output":{ + "shape":"DBClusterEndpointMessage", + "resultWrapper":"DescribeDBClusterEndpointsResult" + }, + "errors":[ + {"shape":"DBClusterNotFoundFault"} + ], + "documentation":"

Returns information about endpoints for an Amazon Neptune DB cluster.

This operation can also return information for Amazon RDS clusters and Amazon DocDB clusters.

" + }, "DescribeDBClusterParameterGroups":{ "name":"DescribeDBClusterParameterGroups", "http":{ @@ -738,6 +793,26 @@ ], "documentation":"

Modify a setting for a DB cluster. You can change one or more database configuration parameters by specifying these parameters and the new values in the request.

" }, + "ModifyDBClusterEndpoint":{ + "name":"ModifyDBClusterEndpoint", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyDBClusterEndpointMessage"}, + "output":{ + "shape":"ModifyDBClusterEndpointOutput", + "resultWrapper":"ModifyDBClusterEndpointResult" + }, + "errors":[ + {"shape":"InvalidDBClusterStateFault"}, + {"shape":"InvalidDBClusterEndpointStateFault"}, + {"shape":"DBClusterEndpointNotFoundFault"}, + {"shape":"DBInstanceNotFoundFault"}, + {"shape":"InvalidDBInstanceStateFault"} + ], + "documentation":"

Modifies the properties of an endpoint in an Amazon Neptune DB cluster.

" + }, "ModifyDBClusterParameterGroup":{ "name":"ModifyDBClusterParameterGroup", "http":{ @@ -1092,6 +1167,10 @@ "RoleArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the IAM role to associate with the Neptune DB cluster, for example arn:aws:iam::123456789012:role/NeptuneAccessRole.

" + }, + "FeatureName":{ + "shape":"String", + "documentation":"

The name of the feature for the Neptune DB cluster that the IAM role is to be associated with. For the list of supported feature names, see DBEngineVersion.

" } } }, @@ -1359,6 +1438,86 @@ "DBParameterGroup":{"shape":"DBParameterGroup"} } }, + "CreateDBClusterEndpointMessage":{ + "type":"structure", + "required":[ + "DBClusterIdentifier", + "DBClusterEndpointIdentifier", + "EndpointType" + ], + "members":{ + "DBClusterIdentifier":{ + "shape":"String", + "documentation":"

The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.

" + }, + "DBClusterEndpointIdentifier":{ + "shape":"String", + "documentation":"

The identifier to use for the new endpoint. This parameter is stored as a lowercase string.

" + }, + "EndpointType":{ + "shape":"String", + "documentation":"

The type of the endpoint. One of: READER, WRITER, ANY.

" + }, + "StaticMembers":{ + "shape":"StringList", + "documentation":"

List of DB instance identifiers that are part of the custom endpoint group.

" + }, + "ExcludedMembers":{ + "shape":"StringList", + "documentation":"

List of DB instance identifiers that aren't part of the custom endpoint group. All other eligible instances are reachable through the custom endpoint. Only relevant if the list of static members is empty.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

The tags to be assigned to the Amazon Neptune resource.

" + } + } + }, + "CreateDBClusterEndpointOutput":{ + "type":"structure", + "members":{ + "DBClusterEndpointIdentifier":{ + "shape":"String", + "documentation":"

The identifier associated with the endpoint. This parameter is stored as a lowercase string.

" + }, + "DBClusterIdentifier":{ + "shape":"String", + "documentation":"

The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.

" + }, + "DBClusterEndpointResourceIdentifier":{ + "shape":"String", + "documentation":"

A unique system-generated identifier for an endpoint. It remains the same for the whole life of the endpoint.

" + }, + "Endpoint":{ + "shape":"String", + "documentation":"

The DNS address of the endpoint.

" + }, + "Status":{ + "shape":"String", + "documentation":"

The current status of the endpoint. One of: creating, available, deleting, inactive, modifying. The inactive state applies to an endpoint that cannot be used for a certain kind of cluster, such as a writer endpoint for a read-only secondary cluster in a global database.

" + }, + "EndpointType":{ + "shape":"String", + "documentation":"

The type of the endpoint. One of: READER, WRITER, CUSTOM.

" + }, + "CustomEndpointType":{ + "shape":"String", + "documentation":"

The type associated with a custom endpoint. One of: READER, WRITER, ANY.

" + }, + "StaticMembers":{ + "shape":"StringList", + "documentation":"

List of DB instance identifiers that are part of the custom endpoint group.

" + }, + "ExcludedMembers":{ + "shape":"StringList", + "documentation":"

List of DB instance identifiers that aren't part of the custom endpoint group. All other eligible instances are reachable through the custom endpoint. Only relevant if the list of static members is empty.

" + }, + "DBClusterEndpointArn":{ + "shape":"String", + "documentation":"

The Amazon Resource Name (ARN) for the endpoint.

" + } + }, + "documentation":"

This data type represents the information you need to connect to an Amazon Neptune DB cluster. This data type is used as a response element in the following actions:

  • CreateDBClusterEndpoint

  • DescribeDBClusterEndpoints

  • ModifyDBClusterEndpoint

  • DeleteDBClusterEndpoint

For the data structure that represents Amazon Neptune DB instance endpoints, see Endpoint.

" + }, "CreateDBClusterMessage":{ "type":"structure", "required":[ @@ -1404,7 +1563,7 @@ }, "EngineVersion":{ "shape":"String", - "documentation":"

The version number of the database engine to use. Currently, setting this parameter has no effect.

Example: 1.0.1

" + "documentation":"

The version number of the database engine to use for the new DB cluster.

Example: 1.0.2.1

" }, "Port":{ "shape":"IntegerOptional", @@ -1452,7 +1611,7 @@ }, "EnableIAMDatabaseAuthentication":{ "shape":"BooleanOptional", - "documentation":"

True to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts, and otherwise false.

Default: false

" + "documentation":"

Not supported by Neptune.

" }, "EnableCloudwatchLogsExports":{ "shape":"LogTypeList", @@ -1992,6 +2151,108 @@ }, "exception":true }, + "DBClusterEndpoint":{ + "type":"structure", + "members":{ + "DBClusterEndpointIdentifier":{ + "shape":"String", + "documentation":"

The identifier associated with the endpoint. This parameter is stored as a lowercase string.

" + }, + "DBClusterIdentifier":{ + "shape":"String", + "documentation":"

The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.

" + }, + "DBClusterEndpointResourceIdentifier":{ + "shape":"String", + "documentation":"

A unique system-generated identifier for an endpoint. It remains the same for the whole life of the endpoint.

" + }, + "Endpoint":{ + "shape":"String", + "documentation":"

The DNS address of the endpoint.

" + }, + "Status":{ + "shape":"String", + "documentation":"

The current status of the endpoint. One of: creating, available, deleting, inactive, modifying. The inactive state applies to an endpoint that cannot be used for a certain kind of cluster, such as a writer endpoint for a read-only secondary cluster in a global database.

" + }, + "EndpointType":{ + "shape":"String", + "documentation":"

The type of the endpoint. One of: READER, WRITER, CUSTOM.

" + }, + "CustomEndpointType":{ + "shape":"String", + "documentation":"

The type associated with a custom endpoint. One of: READER, WRITER, ANY.

" + }, + "StaticMembers":{ + "shape":"StringList", + "documentation":"

List of DB instance identifiers that are part of the custom endpoint group.

" + }, + "ExcludedMembers":{ + "shape":"StringList", + "documentation":"

List of DB instance identifiers that aren't part of the custom endpoint group. All other eligible instances are reachable through the custom endpoint. Only relevant if the list of static members is empty.

" + }, + "DBClusterEndpointArn":{ + "shape":"String", + "documentation":"

The Amazon Resource Name (ARN) for the endpoint.

" + } + }, + "documentation":"

This data type represents the information you need to connect to an Amazon Neptune DB cluster. This data type is used as a response element in the following actions:

  • CreateDBClusterEndpoint

  • DescribeDBClusterEndpoints

  • ModifyDBClusterEndpoint

  • DeleteDBClusterEndpoint

For the data structure that represents Amazon Neptune DB instance endpoints, see Endpoint.

" + }, + "DBClusterEndpointAlreadyExistsFault":{ + "type":"structure", + "members":{ + }, + "documentation":"

The specified custom endpoint cannot be created because it already exists.

", + "error":{ + "code":"DBClusterEndpointAlreadyExistsFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBClusterEndpointList":{ + "type":"list", + "member":{ + "shape":"DBClusterEndpoint", + "locationName":"DBClusterEndpointList" + } + }, + "DBClusterEndpointMessage":{ + "type":"structure", + "members":{ + "Marker":{ + "shape":"String", + "documentation":"

An optional pagination token provided by a previous DescribeDBClusterEndpoints request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

" + }, + "DBClusterEndpoints":{ + "shape":"DBClusterEndpointList", + "documentation":"

Contains the details of the endpoints associated with the cluster and matching any filter conditions.

" + } + } + }, + "DBClusterEndpointNotFoundFault":{ + "type":"structure", + "members":{ + }, + "documentation":"

The specified custom endpoint doesn't exist.

", + "error":{ + "code":"DBClusterEndpointNotFoundFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "DBClusterEndpointQuotaExceededFault":{ + "type":"structure", + "members":{ + }, + "documentation":"

The cluster already has the maximum number of custom endpoints.

", + "error":{ + "code":"DBClusterEndpointQuotaExceededFault", + "httpStatusCode":403, + "senderFault":true + }, + "exception":true + }, "DBClusterList":{ "type":"list", "member":{ @@ -2174,6 +2435,10 @@ "Status":{ "shape":"String", "documentation":"

Describes the state of association between the IAM role and the DB cluster. The Status property returns one of the following values:

  • ACTIVE - the IAM role ARN is associated with the DB cluster and can be used to access other AWS services on your behalf.

  • PENDING - the IAM role ARN is being associated with the DB cluster.

  • INVALID - the IAM role ARN is associated with the DB cluster, but the DB cluster is unable to assume the IAM role in order to access other AWS services on your behalf.

" + }, + "FeatureName":{ + "shape":"String", + "documentation":"

The name of the feature associated with the AWS Identity and Access Management (IAM) role. For the list of supported feature names, see DBEngineVersion.

" } }, "documentation":"

Describes an AWS Identity and Access Management (IAM) role that is associated with a DB cluster.

" @@ -3064,6 +3329,62 @@ }, "exception":true }, + "DeleteDBClusterEndpointMessage":{ + "type":"structure", + "required":["DBClusterEndpointIdentifier"], + "members":{ + "DBClusterEndpointIdentifier":{ + "shape":"String", + "documentation":"

The identifier associated with the custom endpoint. This parameter is stored as a lowercase string.

" + } + } + }, + "DeleteDBClusterEndpointOutput":{ + "type":"structure", + "members":{ + "DBClusterEndpointIdentifier":{ + "shape":"String", + "documentation":"

The identifier associated with the endpoint. This parameter is stored as a lowercase string.

" + }, + "DBClusterIdentifier":{ + "shape":"String", + "documentation":"

The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.

" + }, + "DBClusterEndpointResourceIdentifier":{ + "shape":"String", + "documentation":"

A unique system-generated identifier for an endpoint. It remains the same for the whole life of the endpoint.

" + }, + "Endpoint":{ + "shape":"String", + "documentation":"

The DNS address of the endpoint.

" + }, + "Status":{ + "shape":"String", + "documentation":"

The current status of the endpoint. One of: creating, available, deleting, inactive, modifying. The inactive state applies to an endpoint that cannot be used for a certain kind of cluster, such as a writer endpoint for a read-only secondary cluster in a global database.

" + }, + "EndpointType":{ + "shape":"String", + "documentation":"

The type of the endpoint. One of: READER, WRITER, CUSTOM.

" + }, + "CustomEndpointType":{ + "shape":"String", + "documentation":"

The type associated with a custom endpoint. One of: READER, WRITER, ANY.

" + }, + "StaticMembers":{ + "shape":"StringList", + "documentation":"

List of DB instance identifiers that are part of the custom endpoint group.

" + }, + "ExcludedMembers":{ + "shape":"StringList", + "documentation":"

List of DB instance identifiers that aren't part of the custom endpoint group. All other eligible instances are reachable through the custom endpoint. Only relevant if the list of static members is empty.

" + }, + "DBClusterEndpointArn":{ + "shape":"String", + "documentation":"

The Amazon Resource Name (ARN) for the endpoint.

" + } + }, + "documentation":"

This data type represents the information you need to connect to an Amazon Neptune DB cluster. This data type is used as a response element in the following actions:

  • CreateDBClusterEndpoint

  • DescribeDBClusterEndpoints

  • ModifyDBClusterEndpoint

  • DeleteDBClusterEndpoint

For the data structure that represents Amazon RDS DB instance endpoints, see Endpoint.

" + }, "DeleteDBClusterMessage":{ "type":"structure", "required":["DBClusterIdentifier"], @@ -3174,6 +3495,31 @@ "EventSubscription":{"shape":"EventSubscription"} } }, + "DescribeDBClusterEndpointsMessage":{ + "type":"structure", + "members":{ + "DBClusterIdentifier":{ + "shape":"String", + "documentation":"

The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.

" + }, + "DBClusterEndpointIdentifier":{ + "shape":"String", + "documentation":"

The identifier of the endpoint to describe. This parameter is stored as a lowercase string.

" + }, + "Filters":{ + "shape":"FilterList", + "documentation":"

A set of name-value pairs that define which endpoints to include in the output. The filters are specified as name-value pairs, in the format Name=endpoint_type,Values=endpoint_type1,endpoint_type2,.... Name can be one of: db-cluster-endpoint-type, db-cluster-endpoint-custom-type, db-cluster-endpoint-id, db-cluster-endpoint-status. Values for the db-cluster-endpoint-type filter can be one or more of: reader, writer, custom. Values for the db-cluster-endpoint-custom-type filter can be one or more of: reader, any. Values for the db-cluster-endpoint-status filter can be one or more of: available, creating, deleting, inactive, modifying.

" + }, + "MaxRecords":{ + "shape":"IntegerOptional", + "documentation":"

The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so you can retrieve the remaining results.

Default: 100

Constraints: Minimum 20, maximum 100.

" + }, + "Marker":{ + "shape":"String", + "documentation":"

An optional pagination token provided by a previous DescribeDBClusterEndpoints request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.

" + } + } + }, "DescribeDBClusterParameterGroupsMessage":{ "type":"structure", "members":{ @@ -3711,7 +4057,7 @@ "documentation":"

Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.

" } }, - "documentation":"

Specifies a connection endpoint.

" + "documentation":"

Specifies a connection endpoint.

For the data structure that represents Amazon Neptune DB cluster endpoints, see DBClusterEndpoint.

" }, "EngineDefaults":{ "type":"structure", @@ -4000,6 +4346,18 @@ }, "Integer":{"type":"integer"}, "IntegerOptional":{"type":"integer"}, + "InvalidDBClusterEndpointStateFault":{ + "type":"structure", + "members":{ + }, + "documentation":"

The requested operation cannot be performed on the endpoint while the endpoint is in this state.

", + "error":{ + "code":"InvalidDBClusterEndpointStateFault", + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, "InvalidDBClusterSnapshotStateFault":{ "type":"structure", "members":{ @@ -4178,6 +4536,74 @@ "type":"list", "member":{"shape":"String"} }, + "ModifyDBClusterEndpointMessage":{ + "type":"structure", + "required":["DBClusterEndpointIdentifier"], + "members":{ + "DBClusterEndpointIdentifier":{ + "shape":"String", + "documentation":"

The identifier of the endpoint to modify. This parameter is stored as a lowercase string.

" + }, + "EndpointType":{ + "shape":"String", + "documentation":"

The type of the endpoint. One of: READER, WRITER, ANY.

" + }, + "StaticMembers":{ + "shape":"StringList", + "documentation":"

List of DB instance identifiers that are part of the custom endpoint group.

" + }, + "ExcludedMembers":{ + "shape":"StringList", + "documentation":"

List of DB instance identifiers that aren't part of the custom endpoint group. All other eligible instances are reachable through the custom endpoint. Only relevant if the list of static members is empty.

" + } + } + }, + "ModifyDBClusterEndpointOutput":{ + "type":"structure", + "members":{ + "DBClusterEndpointIdentifier":{ + "shape":"String", + "documentation":"

The identifier associated with the endpoint. This parameter is stored as a lowercase string.

" + }, + "DBClusterIdentifier":{ + "shape":"String", + "documentation":"

The DB cluster identifier of the DB cluster associated with the endpoint. This parameter is stored as a lowercase string.

" + }, + "DBClusterEndpointResourceIdentifier":{ + "shape":"String", + "documentation":"

A unique system-generated identifier for an endpoint. It remains the same for the whole life of the endpoint.

" + }, + "Endpoint":{ + "shape":"String", + "documentation":"

The DNS address of the endpoint.

" + }, + "Status":{ + "shape":"String", + "documentation":"

The current status of the endpoint. One of: creating, available, deleting, inactive, modifying. The inactive state applies to an endpoint that cannot be used for a certain kind of cluster, such as a writer endpoint for a read-only secondary cluster in a global database.

" + }, + "EndpointType":{ + "shape":"String", + "documentation":"

The type of the endpoint. One of: READER, WRITER, CUSTOM.

" + }, + "CustomEndpointType":{ + "shape":"String", + "documentation":"

The type associated with a custom endpoint. One of: READER, WRITER, ANY.

" + }, + "StaticMembers":{ + "shape":"StringList", + "documentation":"

List of DB instance identifiers that are part of the custom endpoint group.

" + }, + "ExcludedMembers":{ + "shape":"StringList", + "documentation":"

List of DB instance identifiers that aren't part of the custom endpoint group. All other eligible instances are reachable through the custom endpoint. Only relevant if the list of static members is empty.

" + }, + "DBClusterEndpointArn":{ + "shape":"String", + "documentation":"

The Amazon Resource Name (ARN) for the endpoint.

" + } + }, + "documentation":"

This data type represents the information you need to connect to an Amazon Aurora DB cluster. This data type is used as a response element in the following actions:

  • CreateDBClusterEndpoint

  • DescribeDBClusterEndpoints

  • ModifyDBClusterEndpoint

  • DeleteDBClusterEndpoint

For the data structure that represents Amazon RDS DB instance endpoints, see Endpoint.

" + }, "ModifyDBClusterMessage":{ "type":"structure", "required":["DBClusterIdentifier"], @@ -4236,7 +4662,7 @@ }, "EngineVersion":{ "shape":"String", - "documentation":"

The version number of the database engine. Currently, setting this parameter has no effect. To upgrade your database engine to the most recent release, use the ApplyPendingMaintenanceAction API.

For a list of valid engine versions, see CreateDBInstance, or call DescribeDBEngineVersions.

" + "documentation":"

The version number of the database engine to which you want to upgrade. Changing this parameter results in an outage. The change is applied during the next maintenance window unless the ApplyImmediately parameter is set to true.

For a list of valid engine versions, see Engine Releases for Amazon Neptune, or call DescribeDBEngineVersions.

" }, "DeletionProtection":{ "shape":"BooleanOptional", @@ -4969,6 +5395,10 @@ "RoleArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the IAM role to disassociate from the DB cluster, for example arn:aws:iam::123456789012:role/NeptuneAccessRole.

" + }, + "FeatureName":{ + "shape":"String", + "documentation":"

The name of the feature for the DB cluster that the IAM role is to be disassociated from. For the list of supported feature names, see DBEngineVersion.

" } } }, @@ -5377,6 +5807,10 @@ "exception":true }, "String":{"type":"string"}, + "StringList":{ + "type":"list", + "member":{"shape":"String"} + }, "Subnet":{ "type":"structure", "members":{ From 950270896bddd714c6d54ce652b1a841a331efa2 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 26 Oct 2020 18:10:40 +0000 Subject: [PATCH 071/339] Amazon SageMaker Service Update: This release enables customers to bring custom images for use with SageMaker Studio notebooks. --- ...eature-AmazonSageMakerService-1687ac0.json | 6 + .../codegen-resources/paginators-1.json | 12 + .../codegen-resources/service-2.json | 1165 ++++++++++++++++- 3 files changed, 1146 insertions(+), 37 deletions(-) create mode 100644 .changes/next-release/feature-AmazonSageMakerService-1687ac0.json diff --git a/.changes/next-release/feature-AmazonSageMakerService-1687ac0.json b/.changes/next-release/feature-AmazonSageMakerService-1687ac0.json new file mode 100644 index 000000000000..db6e4ec2e60c --- /dev/null +++ b/.changes/next-release/feature-AmazonSageMakerService-1687ac0.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon SageMaker Service", + "contributor": "", + "description": "This release enables customers to bring custom images for use with SageMaker Studio notebooks." +} diff --git a/services/sagemaker/src/main/resources/codegen-resources/paginators-1.json b/services/sagemaker/src/main/resources/codegen-resources/paginators-1.json index 7f87ca77493b..e4cb62d8038e 100644 --- a/services/sagemaker/src/main/resources/codegen-resources/paginators-1.json +++ b/services/sagemaker/src/main/resources/codegen-resources/paginators-1.json @@ -78,6 +78,18 @@ "limit_key": "MaxResults", "result_key": "HyperParameterTuningJobSummaries" }, + "ListImageVersions": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "ImageVersions" + }, + "ListImages": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "Images" + }, "ListLabelingJobs": { "input_token": "NextToken", "output_token": "NextToken", 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 8f4f2da939e9..8ed720837d47 100644 --- a/services/sagemaker/src/main/resources/codegen-resources/service-2.json +++ b/services/sagemaker/src/main/resources/codegen-resources/service-2.json @@ -62,6 +62,19 @@ ], "documentation":"

Creates a running App for the specified UserProfile. Supported Apps are JupyterServer and KernelGateway. This operation is automatically invoked by Amazon SageMaker Studio upon access to the associated Domain, and when new kernel configurations are selected by the user. A user may have multiple Apps active simultaneously.

" }, + "CreateAppImageConfig":{ + "name":"CreateAppImageConfig", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateAppImageConfigRequest"}, + "output":{"shape":"CreateAppImageConfigResponse"}, + "errors":[ + {"shape":"ResourceInUse"} + ], + "documentation":"

Creates a configuration for running an Amazon SageMaker image as a KernelGateway app.

" + }, "CreateAutoMLJob":{ "name":"CreateAutoMLJob", "http":{ @@ -112,7 +125,7 @@ {"shape":"ResourceLimitExceeded"}, {"shape":"ResourceInUse"} ], - "documentation":"

Creates a Domain used by Amazon SageMaker Studio. A domain consists of an associated Amazon Elastic File System (EFS) volume, a list of authorized users, and a variety of security, application, policy, and Amazon Virtual Private Cloud (VPC) configurations. An AWS account is limited to one domain per region. Users within a domain can share notebook files and other artifacts with each other.

When a domain is created, an EFS volume is created for use by all of the users within the domain. Each user receives a private home directory within the EFS volume for notebooks, Git repositories, and data files.

VPC configuration

All SageMaker Studio traffic between the domain and the EFS volume is through the specified VPC and subnets. For other Studio traffic, you can specify the AppNetworkAccessType parameter. AppNetworkAccessType corresponds to the network access type that you choose when you onboard to Studio. The following options are available:

  • PublicInternetOnly - Non-EFS traffic goes through a VPC managed by Amazon SageMaker, which allows internet access. This is the default value.

  • VpcOnly - All Studio traffic is through the specified VPC and subnets. Internet access is disabled by default. To allow internet access, you must specify a NAT gateway.

    When internet access is disabled, you won't be able to train or host models unless your VPC has an interface endpoint (PrivateLink) or a NAT gateway and your security groups allow outbound connections.

VpcOnly network access type

When you choose VpcOnly, you must specify the following:

  • Security group inbound and outbound rules to allow NFS traffic over TCP on port 2049 between the domain and the EFS volume

  • Security group inbound and outbound rules to allow traffic between the JupyterServer app and the KernelGateway apps

  • Interface endpoints to access the SageMaker API and SageMaker runtime

For more information, see:

" + "documentation":"

Creates a Domain used by Amazon SageMaker Studio. A domain consists of an associated Amazon Elastic File System (EFS) volume, a list of authorized users, and a variety of security, application, policy, and Amazon Virtual Private Cloud (VPC) configurations. An AWS account is limited to one domain per region. Users within a domain can share notebook files and other artifacts with each other.

When a domain is created, an EFS volume is created for use by all of the users within the domain. Each user receives a private home directory within the EFS volume for notebooks, Git repositories, and data files.

VPC configuration

All SageMaker Studio traffic between the domain and the EFS volume is through the specified VPC and subnets. For other Studio traffic, you can specify the AppNetworkAccessType parameter. AppNetworkAccessType corresponds to the network access type that you choose when you onboard to Studio. The following options are available:

  • PublicInternetOnly - Non-EFS traffic goes through a VPC managed by Amazon SageMaker, which allows internet access. This is the default value.

  • VpcOnly - All Studio traffic is through the specified VPC and subnets. Internet access is disabled by default. To allow internet access, you must specify a NAT gateway.

    When internet access is disabled, you won't be able to run a Studio notebook or to train or host models unless your VPC has an interface endpoint to the SageMaker API and runtime or a NAT gateway and your security groups allow outbound connections.

For more information, see Connect SageMaker Studio Notebooks to Resources in a VPC.

" }, "CreateEndpoint":{ "name":"CreateEndpoint", @@ -195,6 +208,35 @@ ], "documentation":"

Starts a hyperparameter tuning job. A hyperparameter tuning job finds the best version of a model by running many training jobs on your dataset using the algorithm you choose and values for hyperparameters within ranges that you specify. It then chooses the hyperparameter values that result in a model that performs the best, as measured by an objective metric that you choose.

" }, + "CreateImage":{ + "name":"CreateImage", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateImageRequest"}, + "output":{"shape":"CreateImageResponse"}, + "errors":[ + {"shape":"ResourceInUse"}, + {"shape":"ResourceLimitExceeded"} + ], + "documentation":"

Creates a SageMaker Image. A SageMaker image represents a set of container images. Each of these container images is represented by a SageMaker ImageVersion.

" + }, + "CreateImageVersion":{ + "name":"CreateImageVersion", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateImageVersionRequest"}, + "output":{"shape":"CreateImageVersionResponse"}, + "errors":[ + {"shape":"ResourceInUse"}, + {"shape":"ResourceLimitExceeded"}, + {"shape":"ResourceNotFound"} + ], + "documentation":"

Creates a version of the SageMaker image specified by ImageName. The version represents the Amazon Container Registry (ECR) container image specified by BaseImage.

" + }, "CreateLabelingJob":{ "name":"CreateLabelingJob", "http":{ @@ -230,6 +272,10 @@ }, "input":{"shape":"CreateModelPackageInput"}, "output":{"shape":"CreateModelPackageOutput"}, + "errors":[ + {"shape":"ConflictException"}, + {"shape":"ResourceLimitExceeded"} + ], "documentation":"

Creates a model package that you can use to create Amazon SageMaker models or list on AWS Marketplace. Buyers can subscribe to model packages listed on AWS Marketplace to create models in Amazon SageMaker.

To create a model package by specifying a Docker container that contains your inference code and the Amazon S3 location of your model artifacts, provide values for InferenceSpecification. To create a model from an algorithm resource that you created or subscribed to in AWS Marketplace, provide a value for SourceAlgorithmSpecification.

" }, "CreateMonitoringSchedule":{ @@ -427,6 +473,18 @@ ], "documentation":"

Used to stop and delete an app.

" }, + "DeleteAppImageConfig":{ + "name":"DeleteAppImageConfig", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteAppImageConfigRequest"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Deletes an AppImageConfig.

" + }, "DeleteCodeRepository":{ "name":"DeleteCodeRepository", "http":{ @@ -507,6 +565,34 @@ ], "documentation":"

Use this operation to delete a human task user interface (worker task template).

To see a list of human task user interfaces (work task templates) in your account, use . When you delete a worker task template, it no longer appears when you call ListHumanTaskUis.

" }, + "DeleteImage":{ + "name":"DeleteImage", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteImageRequest"}, + "output":{"shape":"DeleteImageResponse"}, + "errors":[ + {"shape":"ResourceInUse"}, + {"shape":"ResourceNotFound"} + ], + "documentation":"

Deletes a SageMaker image and all versions of the image. The container images aren't deleted.

" + }, + "DeleteImageVersion":{ + "name":"DeleteImageVersion", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteImageVersionRequest"}, + "output":{"shape":"DeleteImageVersionResponse"}, + "errors":[ + {"shape":"ResourceInUse"}, + {"shape":"ResourceNotFound"} + ], + "documentation":"

Deletes a version of a SageMaker image. The container image the version represents isn't deleted.

" + }, "DeleteModel":{ "name":"DeleteModel", "http":{ @@ -523,6 +609,9 @@ "requestUri":"/" }, "input":{"shape":"DeleteModelPackageInput"}, + "errors":[ + {"shape":"ConflictException"} + ], "documentation":"

Deletes a model package.

A model package is used to create Amazon SageMaker models or list on AWS Marketplace. Buyers can subscribe to model packages listed on AWS Marketplace to create models in Amazon SageMaker.

" }, "DeleteMonitoringSchedule":{ @@ -650,6 +739,19 @@ ], "documentation":"

Describes the app.

" }, + "DescribeAppImageConfig":{ + "name":"DescribeAppImageConfig", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeAppImageConfigRequest"}, + "output":{"shape":"DescribeAppImageConfigResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Describes an AppImageConfig.

" + }, "DescribeAutoMLJob":{ "name":"DescribeAutoMLJob", "http":{ @@ -771,6 +873,32 @@ ], "documentation":"

Gets a description of a hyperparameter tuning job.

" }, + "DescribeImage":{ + "name":"DescribeImage", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeImageRequest"}, + "output":{"shape":"DescribeImageResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Describes a SageMaker image.

" + }, + "DescribeImageVersion":{ + "name":"DescribeImageVersion", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeImageVersionRequest"}, + "output":{"shape":"DescribeImageVersionResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Describes a version of a SageMaker image.

" + }, "DescribeLabelingJob":{ "name":"DescribeLabelingJob", "http":{ @@ -978,6 +1106,16 @@ "output":{"shape":"ListAlgorithmsOutput"}, "documentation":"

Lists the machine learning algorithms that have been created.

" }, + "ListAppImageConfigs":{ + "name":"ListAppImageConfigs", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListAppImageConfigsRequest"}, + "output":{"shape":"ListAppImageConfigsResponse"}, + "documentation":"

Lists the AppImageConfigs in your account and their properties. The list can be filtered by creation time or modified time, and whether the AppImageConfig name contains a specified string.

" + }, "ListApps":{ "name":"ListApps", "http":{ @@ -1101,6 +1239,29 @@ "output":{"shape":"ListHyperParameterTuningJobsResponse"}, "documentation":"

Gets a list of HyperParameterTuningJobSummary objects that describe the hyperparameter tuning jobs launched in your account.

" }, + "ListImageVersions":{ + "name":"ListImageVersions", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListImageVersionsRequest"}, + "output":{"shape":"ListImageVersionsResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Lists the versions of a specified image and their properties. The list can be filtered by creation time or modified time.

" + }, + "ListImages":{ + "name":"ListImages", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListImagesRequest"}, + "output":{"shape":"ListImagesResponse"}, + "documentation":"

Lists the images in your account and their properties. The list can be filtered by creation time or modified time, and whether the image name contains a specified string.

" + }, "ListLabelingJobs":{ "name":"ListLabelingJobs", "http":{ @@ -1455,6 +1616,19 @@ ], "documentation":"

Stops a transform job.

When Amazon SageMaker receives a StopTransformJob request, the status of the job changes to Stopping. After Amazon SageMaker stops the job, the status is set to Stopped. When you stop a transform job before it is completed, Amazon SageMaker doesn't store the job's output in Amazon S3.

" }, + "UpdateAppImageConfig":{ + "name":"UpdateAppImageConfig", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateAppImageConfigRequest"}, + "output":{"shape":"UpdateAppImageConfigResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Updates the properties of an AppImageConfig.

" + }, "UpdateCodeRepository":{ "name":"UpdateCodeRepository", "http":{ @@ -1520,6 +1694,20 @@ ], "documentation":"

Adds, updates, or removes the description of an experiment. Updates the display name of an experiment.

" }, + "UpdateImage":{ + "name":"UpdateImage", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateImageRequest"}, + "output":{"shape":"UpdateImageResponse"}, + "errors":[ + {"shape":"ResourceInUse"}, + {"shape":"ResourceNotFound"} + ], + "documentation":"

Updates the properties of a SageMaker image. To change the image's tags, use the AddTags and DeleteTags APIs.

" + }, "UpdateMonitoringSchedule":{ "name":"UpdateMonitoringSchedule", "http":{ @@ -1889,7 +2077,55 @@ "documentation":"

The creation time.

" } }, - "documentation":"

The app's details.

" + "documentation":"

Details about an Amazon SageMaker app.

" + }, + "AppImageConfigArn":{ + "type":"string", + "max":256, + "pattern":"arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:app-image-config/.*" + }, + "AppImageConfigDetails":{ + "type":"structure", + "members":{ + "AppImageConfigArn":{ + "shape":"AppImageConfigArn", + "documentation":"

The Amazon Resource Name (ARN) of the AppImageConfig.

" + }, + "AppImageConfigName":{ + "shape":"AppImageConfigName", + "documentation":"

The name of the AppImageConfig.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

When the AppImageConfig was created.

" + }, + "LastModifiedTime":{ + "shape":"Timestamp", + "documentation":"

When the AppImageConfig was last modified.

" + }, + "KernelGatewayImageConfig":{ + "shape":"KernelGatewayImageConfig", + "documentation":"

The KernelGateway app.

" + } + }, + "documentation":"

The configuration for running an Amazon SageMaker image as a KernelGateway app.

" + }, + "AppImageConfigList":{ + "type":"list", + "member":{"shape":"AppImageConfigDetails"} + }, + "AppImageConfigName":{ + "type":"string", + "max":63, + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*" + }, + "AppImageConfigSortKey":{ + "type":"string", + "enum":[ + "CreationTime", + "LastModifiedTime", + "Name" + ] }, "AppInstanceType":{ "type":"string", @@ -2729,6 +2965,12 @@ "pattern":"[\\w+=/-]+", "sensitive":true }, + "ClientToken":{ + "type":"string", + "max":36, + "min":1, + "pattern":"^[a-zA-Z0-9-]+$" + }, "CodeRepositoryArn":{ "type":"string", "max":2048, @@ -2967,8 +3209,8 @@ "CompilerOptions":{ "type":"string", "max":1024, - "min":7, - "pattern":"^\\{.+\\}$" + "min":3, + "pattern":".*" }, "CompressionType":{ "type":"string", @@ -3039,7 +3281,7 @@ "documentation":"

The environment variables to set in the Docker container. Each key and value in the Environment string to string map can have length of up to 1024. We support up to 16 entries in the map.

" }, "ModelPackageName":{ - "shape":"ArnOrName", + "shape":"VersionedArnOrName", "documentation":"

The name or Amazon Resource Name (ARN) of the model package to use to create the model.

" } }, @@ -3193,6 +3435,33 @@ } } }, + "CreateAppImageConfigRequest":{ + "type":"structure", + "required":["AppImageConfigName"], + "members":{ + "AppImageConfigName":{ + "shape":"AppImageConfigName", + "documentation":"

The name of the AppImageConfig. Must be unique to your account.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

A list of tags to apply to the AppImageConfig.

" + }, + "KernelGatewayImageConfig":{ + "shape":"KernelGatewayImageConfig", + "documentation":"

The KernelGatewayImageConfig.

" + } + } + }, + "CreateAppImageConfigResponse":{ + "type":"structure", + "members":{ + "AppImageConfigArn":{ + "shape":"AppImageConfigArn", + "documentation":"

The Amazon Resource Name (ARN) of the AppImageConfig.

" + } + } + }, "CreateAppRequest":{ "type":"structure", "required":[ @@ -3233,7 +3502,7 @@ "members":{ "AppArn":{ "shape":"AppArn", - "documentation":"

The App's Amazon Resource Name (ARN).

" + "documentation":"

The Amazon Resource Name (ARN) of the app.

" } } }, @@ -3350,6 +3619,10 @@ "StoppingCondition":{ "shape":"StoppingCondition", "documentation":"

Specifies a limit to how long a model compilation job can run. When the job reaches the time limit, Amazon SageMaker ends the compilation job. Use this API to cap model training costs.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

An array of key-value pairs that you want to use to organize and track your AWS resource costs. For more information, see Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide.

" } } }, @@ -3397,13 +3670,13 @@ "shape":"TagList", "documentation":"

Tags to associated with the Domain. Each tag consists of a key and an optional value. Tag keys must be unique per resource. Tags are searchable using the Search API.

" }, - "HomeEfsFileSystemKmsKeyId":{ - "shape":"KmsKeyId", - "documentation":"

The AWS Key Management Service (KMS) encryption key ID. Encryption with a customer master key (CMK) is not supported.

" - }, "AppNetworkAccessType":{ "shape":"AppNetworkAccessType", "documentation":"

Specifies the VPC used for non-EFS traffic. The default value is PublicInternetOnly.

  • PublicInternetOnly - Non-EFS traffic is through a VPC managed by Amazon SageMaker, which allows direct internet access

  • VpcOnly - All Studio traffic is through the specified VPC and subnets

" + }, + "HomeEfsFileSystemKmsKeyId":{ + "shape":"KmsKeyId", + "documentation":"

The AWS Key Management Service (KMS) encryption key ID. Encryption with a customer master key (CMK) is not supported.

" } } }, @@ -3465,7 +3738,7 @@ "members":{ "EndpointName":{ "shape":"EndpointName", - "documentation":"

The name of the endpoint. The name must be unique within an AWS Region in your AWS account.

" + "documentation":"

The name of the endpoint.The name must be unique within an AWS Region in your AWS account. The name is case-insensitive in CreateEndpoint, but the case is preserved and must be matched in .

" }, "EndpointConfigName":{ "shape":"EndpointConfigName", @@ -3604,7 +3877,7 @@ "members":{ "HyperParameterTuningJobName":{ "shape":"HyperParameterTuningJobName", - "documentation":"

The name of the tuning job. This name is the prefix for the names of all training jobs that this tuning job launches. The name must be unique within the same AWS account and AWS Region. The name must have { } to { } characters. Valid characters are a-z, A-Z, 0-9, and : + = @ _ % - (hyphen). The name is not case sensitive.

" + "documentation":"

The name of the tuning job. This name is the prefix for the names of all training jobs that this tuning job launches. The name must be unique within the same AWS account and AWS Region. The name must have 1 to 32 characters. Valid characters are a-z, A-Z, 0-9, and : + = @ _ % - (hyphen). The name is not case sensitive.

" }, "HyperParameterTuningJobConfig":{ "shape":"HyperParameterTuningJobConfig", @@ -3638,6 +3911,76 @@ } } }, + "CreateImageRequest":{ + "type":"structure", + "required":[ + "ImageName", + "RoleArn" + ], + "members":{ + "Description":{ + "shape":"ImageDescription", + "documentation":"

The description of the image.

" + }, + "DisplayName":{ + "shape":"ImageDisplayName", + "documentation":"

The display name of the image. When the image is added to a domain, DisplayName must be unique to the domain.

" + }, + "ImageName":{ + "shape":"ImageName", + "documentation":"

The name of the image. Must be unique to your account.

" + }, + "RoleArn":{ + "shape":"RoleArn", + "documentation":"

The Amazon Resource Name (ARN) of an IAM role that enables Amazon SageMaker to perform tasks on your behalf.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

A list of tags to apply to the image.

" + } + } + }, + "CreateImageResponse":{ + "type":"structure", + "members":{ + "ImageArn":{ + "shape":"ImageArn", + "documentation":"

The Amazon Resource Name (ARN) of the image.

" + } + } + }, + "CreateImageVersionRequest":{ + "type":"structure", + "required":[ + "BaseImage", + "ClientToken", + "ImageName" + ], + "members":{ + "BaseImage":{ + "shape":"ImageBaseImage", + "documentation":"

The registry path of the container image to use as the starting point for this version. The path is an Amazon Container Registry (ECR) URI in the following format:

<acct-id>.dkr.ecr.<region>.amazonaws.com/<repo-name[:tag] or [@digest]>

" + }, + "ClientToken":{ + "shape":"ClientToken", + "documentation":"

A unique ID. If not specified, the AWS CLI and AWS SDKs, such as the SDK for Python (Boto3), add a unique value to the call.

", + "idempotencyToken":true + }, + "ImageName":{ + "shape":"ImageName", + "documentation":"

The ImageName of the Image to create a version of.

" + } + } + }, + "CreateImageVersionResponse":{ + "type":"structure", + "members":{ + "ImageVersionArn":{ + "shape":"ImageVersionArn", + "documentation":"

The Amazon Resource Name (ARN) of the image version.

" + } + } + }, "CreateLabelingJobRequest":{ "type":"structure", "required":[ @@ -3671,7 +4014,7 @@ }, "LabelCategoryConfigS3Uri":{ "shape":"S3Uri", - "documentation":"

The S3 URL of the file that defines the categories used to label the data objects.

For 3D point cloud task types, see Create a Labeling Category Configuration File for 3D Point Cloud Labeling Jobs.

For all other built-in task types and custom tasks, your label category configuration file must be a JSON file in the following format. Identify the labels you want to use by replacing label_1, label_2,...,label_n with your label categories.

{

\"document-version\": \"2018-11-28\"

\"labels\": [

{

\"label\": \"label_1\"

},

{

\"label\": \"label_2\"

},

...

{

\"label\": \"label_n\"

}

]

}

" + "documentation":"

The S3 URI of the file that defines the categories used to label the data objects.

For 3D point cloud task types, see Create a Labeling Category Configuration File for 3D Point Cloud Labeling Jobs.

For all other built-in task types and custom tasks, your label category configuration file must be a JSON file in the following format. Identify the labels you want to use by replacing label_1, label_2,...,label_n with your label categories.

{

\"document-version\": \"2018-11-28\"

\"labels\": [

{

\"label\": \"label_1\"

},

{

\"label\": \"label_2\"

},

...

{

\"label\": \"label_n\"

}

]

}

" }, "StoppingConditions":{ "shape":"LabelingJobStoppingConditions", @@ -3750,7 +4093,6 @@ }, "CreateModelPackageInput":{ "type":"structure", - "required":["ModelPackageName"], "members":{ "ModelPackageName":{ "shape":"EntityName", @@ -4409,6 +4751,34 @@ "max":10, "min":1 }, + "CustomImage":{ + "type":"structure", + "required":[ + "ImageName", + "AppImageConfigName" + ], + "members":{ + "ImageName":{ + "shape":"ImageName", + "documentation":"

The name of the CustomImage. Must be unique to your account.

" + }, + "ImageVersionNumber":{ + "shape":"ImageVersionNumber", + "documentation":"

The version number of the CustomImage.

", + "box":true + }, + "AppImageConfigName":{ + "shape":"AppImageConfigName", + "documentation":"

The name of the AppImageConfig.

" + } + }, + "documentation":"

A custom image.

" + }, + "CustomImages":{ + "type":"list", + "member":{"shape":"CustomImage"}, + "max":30 + }, "DataCaptureConfig":{ "type":"structure", "required":[ @@ -4618,6 +4988,16 @@ "max":20, "min":0 }, + "DefaultGid":{ + "type":"integer", + "max":65535, + "min":0 + }, + "DefaultUid":{ + "type":"integer", + "max":65535, + "min":0 + }, "DeleteAlgorithmInput":{ "type":"structure", "required":["AlgorithmName"], @@ -4628,6 +5008,16 @@ } } }, + "DeleteAppImageConfigRequest":{ + "type":"structure", + "required":["AppImageConfigName"], + "members":{ + "AppImageConfigName":{ + "shape":"AppImageConfigName", + "documentation":"

The name of the AppImageConfig to delete.

" + } + } + }, "DeleteAppRequest":{ "type":"structure", "required":[ @@ -4748,6 +5138,43 @@ "members":{ } }, + "DeleteImageRequest":{ + "type":"structure", + "required":["ImageName"], + "members":{ + "ImageName":{ + "shape":"ImageName", + "documentation":"

The name of the image to delete.

" + } + } + }, + "DeleteImageResponse":{ + "type":"structure", + "members":{ + } + }, + "DeleteImageVersionRequest":{ + "type":"structure", + "required":[ + "ImageName", + "Version" + ], + "members":{ + "ImageName":{ + "shape":"ImageName", + "documentation":"

The name of the image.

" + }, + "Version":{ + "shape":"ImageVersionNumber", + "documentation":"

The version to delete.

" + } + } + }, + "DeleteImageVersionResponse":{ + "type":"structure", + "members":{ + } + }, "DeleteModelInput":{ "type":"structure", "required":["ModelName"], @@ -4763,7 +5190,7 @@ "required":["ModelPackageName"], "members":{ "ModelPackageName":{ - "shape":"EntityName", + "shape":"VersionedArnOrName", "documentation":"

The name of the model package. The name must have 1 to 63 characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).

" } } @@ -4999,6 +5426,41 @@ } } }, + "DescribeAppImageConfigRequest":{ + "type":"structure", + "required":["AppImageConfigName"], + "members":{ + "AppImageConfigName":{ + "shape":"AppImageConfigName", + "documentation":"

The name of the AppImageConfig to describe.

" + } + } + }, + "DescribeAppImageConfigResponse":{ + "type":"structure", + "members":{ + "AppImageConfigArn":{ + "shape":"AppImageConfigArn", + "documentation":"

The Amazon Resource Name (ARN) of the AppImageConfig.

" + }, + "AppImageConfigName":{ + "shape":"AppImageConfigName", + "documentation":"

The name of the AppImageConfig.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

When the AppImageConfig was created.

" + }, + "LastModifiedTime":{ + "shape":"Timestamp", + "documentation":"

When the AppImageConfig was last modified.

" + }, + "KernelGatewayImageConfig":{ + "shape":"KernelGatewayImageConfig", + "documentation":"

The KernelGateway app.

" + } + } + }, "DescribeAppRequest":{ "type":"structure", "required":[ @@ -5031,7 +5493,7 @@ "members":{ "AppArn":{ "shape":"AppArn", - "documentation":"

The app's Amazon Resource Name (ARN).

" + "documentation":"

The Amazon Resource Name (ARN) of the app.

" }, "AppType":{ "shape":"AppType", @@ -5351,6 +5813,10 @@ "shape":"UserSettings", "documentation":"

Settings which are applied to all UserProfile in this domain, if settings are not explicitly specified in a given UserProfile.

" }, + "AppNetworkAccessType":{ + "shape":"AppNetworkAccessType", + "documentation":"

Specifies the VPC used for non-EFS traffic. The default value is PublicInternetOnly.

  • PublicInternetOnly - Non-EFS traffic is through a VPC managed by Amazon SageMaker, which allows direct internet access

  • VpcOnly - All Studio traffic is through the specified VPC and subnets

" + }, "HomeEfsFileSystemKmsKeyId":{ "shape":"KmsKeyId", "documentation":"

The AWS Key Management Service encryption key ID.

" @@ -5366,10 +5832,6 @@ "VpcId":{ "shape":"VpcId", "documentation":"

The ID of the Amazon Virtual Private Cloud (VPC) that Studio uses for communication.

" - }, - "AppNetworkAccessType":{ - "shape":"AppNetworkAccessType", - "documentation":"

Specifies the VPC used for non-EFS traffic. The default value is PublicInternetOnly.

  • PublicInternetOnly - Non-EFS traffic is through a VPC managed by Amazon SageMaker, which allows direct internet access

  • VpcOnly - All Studio traffic is through the specified VPC and subnets

" } } }, @@ -5708,6 +6170,112 @@ } } }, + "DescribeImageRequest":{ + "type":"structure", + "required":["ImageName"], + "members":{ + "ImageName":{ + "shape":"ImageName", + "documentation":"

The name of the image to describe.

" + } + } + }, + "DescribeImageResponse":{ + "type":"structure", + "members":{ + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

When the image was created.

" + }, + "Description":{ + "shape":"ImageDescription", + "documentation":"

The description of the image.

" + }, + "DisplayName":{ + "shape":"ImageDisplayName", + "documentation":"

The name of the image as displayed.

" + }, + "FailureReason":{ + "shape":"FailureReason", + "documentation":"

When a create, update, or delete operation fails, the reason for the failure.

" + }, + "ImageArn":{ + "shape":"ImageArn", + "documentation":"

The Amazon Resource Name (ARN) of the image.

" + }, + "ImageName":{ + "shape":"ImageName", + "documentation":"

The name of the image.

" + }, + "ImageStatus":{ + "shape":"ImageStatus", + "documentation":"

The status of the image.

" + }, + "LastModifiedTime":{ + "shape":"Timestamp", + "documentation":"

When the image was last modified.

" + }, + "RoleArn":{ + "shape":"RoleArn", + "documentation":"

The Amazon Resource Name (ARN) of the IAM role that enables Amazon SageMaker to perform tasks on your behalf.

" + } + } + }, + "DescribeImageVersionRequest":{ + "type":"structure", + "required":["ImageName"], + "members":{ + "ImageName":{ + "shape":"ImageName", + "documentation":"

The name of the image.

" + }, + "Version":{ + "shape":"ImageVersionNumber", + "documentation":"

The version of the image. If not specified, the latest version is described.

" + } + } + }, + "DescribeImageVersionResponse":{ + "type":"structure", + "members":{ + "BaseImage":{ + "shape":"ImageBaseImage", + "documentation":"

The registry path of the container image on which this image version is based.

" + }, + "ContainerImage":{ + "shape":"ImageContainerImage", + "documentation":"

The registry path of the container image that contains this image version.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

When the version was created.

" + }, + "FailureReason":{ + "shape":"FailureReason", + "documentation":"

When a create or delete operation fails, the reason for the failure.

" + }, + "ImageArn":{ + "shape":"ImageArn", + "documentation":"

The Amazon Resource Name (ARN) of the image the version is based on.

" + }, + "ImageVersionArn":{ + "shape":"ImageVersionArn", + "documentation":"

The ARN of the version.

" + }, + "ImageVersionStatus":{ + "shape":"ImageVersionStatus", + "documentation":"

The status of the version.

" + }, + "LastModifiedTime":{ + "shape":"Timestamp", + "documentation":"

When the version was last modified.

" + }, + "Version":{ + "shape":"ImageVersionNumber", + "documentation":"

The version number.

" + } + } + }, "DescribeLabelingJobRequest":{ "type":"structure", "required":["LabelingJobName"], @@ -5866,7 +6434,7 @@ "required":["ModelPackageName"], "members":{ "ModelPackageName":{ - "shape":"ArnOrName", + "shape":"VersionedArnOrName", "documentation":"

The name of the model package to describe.

" } } @@ -6879,7 +7447,10 @@ "Deleting", "Failed", "InService", - "Pending" + "Pending", + "Updating", + "Update_Failed", + "Delete_Failed" ] }, "DoubleParameterValue":{"type":"double"}, @@ -7150,7 +7721,7 @@ }, "ExperimentEntityName":{ "type":"string", - "max":82, + "max":120, "min":1, "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*" }, @@ -7216,6 +7787,26 @@ "ro" ] }, + "FileSystemConfig":{ + "type":"structure", + "members":{ + "MountPath":{ + "shape":"MountPath", + "documentation":"

The path within the image to mount the user's EFS home directory. The directory should be empty. If not specified, defaults to /home/sagemaker-user.

" + }, + "DefaultUid":{ + "shape":"DefaultUid", + "documentation":"

The default POSIX user ID. If not specified, defaults to 1000.

", + "box":true + }, + "DefaultGid":{ + "shape":"DefaultGid", + "documentation":"

The default POSIX group ID. If not specified, defaults to 100.

", + "box":true + } + }, + "documentation":"

The Amazon Elastic File System (EFS) storage configuration for an image.

" + }, "FileSystemDataSource":{ "type":"structure", "required":[ @@ -7457,7 +8048,8 @@ "ONNX", "PYTORCH", "XGBOOST", - "TFLITE" + "TFLITE", + "DARKNET" ] }, "GenerateCandidateDefinitionsOnly":{"type":"boolean"}, @@ -7752,6 +8344,11 @@ }, "documentation":"

Specifies which training algorithm to use for training jobs that a hyperparameter tuning job launches and the metrics to monitor.

" }, + "HyperParameterKey":{ + "type":"string", + "max":256, + "pattern":".*" + }, "HyperParameterScalingType":{ "type":"string", "enum":[ @@ -7793,7 +8390,7 @@ "documentation":"

Indicates whether this hyperparameter is required.

" }, "DefaultValue":{ - "shape":"ParameterValue", + "shape":"HyperParameterValue", "documentation":"

The default value for this hyperparameter. If a default value is specified, a hyperparameter cannot be required.

" } }, @@ -8130,18 +8727,74 @@ "TransferLearning" ] }, + "HyperParameterValue":{ + "type":"string", + "max":2500, + "pattern":".*" + }, "HyperParameters":{ "type":"map", - "key":{"shape":"ParameterKey"}, - "value":{"shape":"ParameterValue"}, + "key":{"shape":"HyperParameterKey"}, + "value":{"shape":"HyperParameterValue"}, "max":100, "min":0 }, + "Image":{ + "type":"structure", + "required":[ + "CreationTime", + "ImageArn", + "ImageName", + "ImageStatus", + "LastModifiedTime" + ], + "members":{ + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

When the image was created.

" + }, + "Description":{ + "shape":"ImageDescription", + "documentation":"

The description of the image.

" + }, + "DisplayName":{ + "shape":"ImageDisplayName", + "documentation":"

The name of the image as displayed.

" + }, + "FailureReason":{ + "shape":"FailureReason", + "documentation":"

When a create, update, or delete operation fails, the reason for the failure.

" + }, + "ImageArn":{ + "shape":"ImageArn", + "documentation":"

The Amazon Resource Name (ARN) of the image.

" + }, + "ImageName":{ + "shape":"ImageName", + "documentation":"

The name of the image.

" + }, + "ImageStatus":{ + "shape":"ImageStatus", + "documentation":"

The status of the image.

" + }, + "LastModifiedTime":{ + "shape":"Timestamp", + "documentation":"

When the image was last modified.

" + } + }, + "documentation":"

A SageMaker image. A SageMaker image represents a set of container images that are derived from a common base container image. Each of these container images is represented by a SageMaker ImageVersion.

" + }, "ImageArn":{ "type":"string", "max":256, "pattern":"^arn:aws(-[\\w]+)*:sagemaker:.+:[0-9]{12}:image/[a-z0-9]([-.]?[a-z0-9])*$" }, + "ImageBaseImage":{ + "type":"string", + "max":255, + "min":1, + "pattern":".*" + }, "ImageConfig":{ "type":"structure", "required":["RepositoryAccessMode"], @@ -8153,16 +8806,166 @@ }, "documentation":"

Specifies whether the model container is in Amazon ECR or a private Docker registry accessible from your Amazon Virtual Private Cloud (VPC).

" }, + "ImageContainerImage":{ + "type":"string", + "max":255, + "min":1 + }, + "ImageDeleteProperty":{ + "type":"string", + "max":11, + "min":1, + "pattern":"(^DisplayName$)|(^Description$)" + }, + "ImageDeletePropertyList":{ + "type":"list", + "member":{"shape":"ImageDeleteProperty"}, + "max":2 + }, + "ImageDescription":{ + "type":"string", + "max":512, + "min":1, + "pattern":"^\\S(.*\\S)?$" + }, "ImageDigest":{ "type":"string", "max":72, "pattern":"^[Ss][Hh][Aa]256:[0-9a-fA-F]{64}$" }, + "ImageDisplayName":{ + "type":"string", + "max":128, + "min":1, + "pattern":"^\\S(.*\\S)?$" + }, + "ImageName":{ + "type":"string", + "max":63, + "min":1, + "pattern":"^[a-zA-Z0-9]([-.]?[a-zA-Z0-9])*$" + }, + "ImageNameContains":{ + "type":"string", + "max":63, + "pattern":"^[a-zA-Z0-9\\-.]+$" + }, + "ImageSortBy":{ + "type":"string", + "enum":[ + "CREATION_TIME", + "LAST_MODIFIED_TIME", + "IMAGE_NAME" + ] + }, + "ImageSortOrder":{ + "type":"string", + "enum":[ + "ASCENDING", + "DESCENDING" + ] + }, + "ImageStatus":{ + "type":"string", + "enum":[ + "CREATING", + "CREATED", + "CREATE_FAILED", + "UPDATING", + "UPDATE_FAILED", + "DELETING", + "DELETE_FAILED" + ] + }, "ImageUri":{ "type":"string", "max":255, "pattern":".*" }, + "ImageVersion":{ + "type":"structure", + "required":[ + "CreationTime", + "ImageArn", + "ImageVersionArn", + "ImageVersionStatus", + "LastModifiedTime", + "Version" + ], + "members":{ + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

When the version was created.

" + }, + "FailureReason":{ + "shape":"FailureReason", + "documentation":"

When a create or delete operation fails, the reason for the failure.

" + }, + "ImageArn":{ + "shape":"ImageArn", + "documentation":"

The Amazon Resource Name (ARN) of the image the version is based on.

" + }, + "ImageVersionArn":{ + "shape":"ImageVersionArn", + "documentation":"

The ARN of the version.

" + }, + "ImageVersionStatus":{ + "shape":"ImageVersionStatus", + "documentation":"

The status of the version.

" + }, + "LastModifiedTime":{ + "shape":"Timestamp", + "documentation":"

When the version was last modified.

" + }, + "Version":{ + "shape":"ImageVersionNumber", + "documentation":"

The version number.

" + } + }, + "documentation":"

A version of a SageMaker Image. A version represents an existing container image.

" + }, + "ImageVersionArn":{ + "type":"string", + "max":256, + "pattern":"^arn:aws(-[\\w]+)*:sagemaker:.+:[0-9]{12}:image-version/[a-z0-9]([-.]?[a-z0-9])*/[0-9]+$" + }, + "ImageVersionNumber":{ + "type":"integer", + "min":0 + }, + "ImageVersionSortBy":{ + "type":"string", + "enum":[ + "CREATION_TIME", + "LAST_MODIFIED_TIME", + "VERSION" + ] + }, + "ImageVersionSortOrder":{ + "type":"string", + "enum":[ + "ASCENDING", + "DESCENDING" + ] + }, + "ImageVersionStatus":{ + "type":"string", + "enum":[ + "CREATING", + "CREATED", + "CREATE_FAILED", + "DELETING", + "DELETE_FAILED" + ] + }, + "ImageVersions":{ + "type":"list", + "member":{"shape":"ImageVersion"} + }, + "Images":{ + "type":"list", + "member":{"shape":"Image"} + }, "InferenceSpecification":{ "type":"structure", "required":[ @@ -8379,15 +9182,63 @@ }, "documentation":"

Jupyter server's app settings.

" }, + "KernelDisplayName":{ + "type":"string", + "max":1024 + }, "KernelGatewayAppSettings":{ "type":"structure", "members":{ "DefaultResourceSpec":{ "shape":"ResourceSpec", - "documentation":"

The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.

" + "documentation":"

The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app.

" + }, + "CustomImages":{ + "shape":"CustomImages", + "documentation":"

A list of custom images that are configured to run as a KernelGateway app.

" + } + }, + "documentation":"

The KernelGateway app settings.

" + }, + "KernelGatewayImageConfig":{ + "type":"structure", + "required":["KernelSpecs"], + "members":{ + "KernelSpecs":{ + "shape":"KernelSpecs", + "documentation":"

Defines how a kernel is started and the arguments, environment variables, and metadata that are available to the kernel.

" + }, + "FileSystemConfig":{ + "shape":"FileSystemConfig", + "documentation":"

The file system configuration.

" + } + }, + "documentation":"

The configuration for an Amazon SageMaker KernelGateway app.

" + }, + "KernelName":{ + "type":"string", + "max":1024 + }, + "KernelSpec":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"KernelName", + "documentation":"

The name of the kernel. Must be unique to your account.

" + }, + "DisplayName":{ + "shape":"KernelDisplayName", + "documentation":"

The display name of the kernel.

" } }, - "documentation":"

The kernel gateway app settings.

" + "documentation":"

Defines how a kernel is started and the arguments, environment variables, and metadata that are available to the kernel.

" + }, + "KernelSpecs":{ + "type":"list", + "member":{"shape":"KernelSpec"}, + "max":1, + "min":1 }, "KmsKeyId":{ "type":"string", @@ -8773,6 +9624,60 @@ } } }, + "ListAppImageConfigsRequest":{ + "type":"structure", + "members":{ + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of AppImageConfigs to return in the response. The default value is 10.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If the previous call to ListImages didn't return the full set of AppImageConfigs, the call returns a token for getting the next set of AppImageConfigs.

" + }, + "NameContains":{ + "shape":"AppImageConfigName", + "documentation":"

A filter that returns only AppImageConfigs whose name contains the specified string.

" + }, + "CreationTimeBefore":{ + "shape":"Timestamp", + "documentation":"

A filter that returns only AppImageConfigs created on or before the specified time.

" + }, + "CreationTimeAfter":{ + "shape":"Timestamp", + "documentation":"

A filter that returns only AppImageConfigs created on or after the specified time.

" + }, + "ModifiedTimeBefore":{ + "shape":"Timestamp", + "documentation":"

A filter that returns only AppImageConfigs modified on or before the specified time.

" + }, + "ModifiedTimeAfter":{ + "shape":"Timestamp", + "documentation":"

A filter that returns only AppImageConfigs modified on or after the specified time.

" + }, + "SortBy":{ + "shape":"AppImageConfigSortKey", + "documentation":"

The property used to sort results. The default value is CreationTime.

" + }, + "SortOrder":{ + "shape":"SortOrder", + "documentation":"

The sort order. The default value is Descending.

" + } + } + }, + "ListAppImageConfigsResponse":{ + "type":"structure", + "members":{ + "NextToken":{ + "shape":"NextToken", + "documentation":"

A token for getting the next set of AppImageConfigs, if there are any.

" + }, + "AppImageConfigs":{ + "shape":"AppImageConfigList", + "documentation":"

A list of AppImageConfigs and their properties.

" + } + } + }, "ListAppsRequest":{ "type":"structure", "members":{ @@ -9361,6 +10266,115 @@ } } }, + "ListImageVersionsRequest":{ + "type":"structure", + "required":["ImageName"], + "members":{ + "CreationTimeAfter":{ + "shape":"Timestamp", + "documentation":"

A filter that returns only versions created on or after the specified time.

" + }, + "CreationTimeBefore":{ + "shape":"Timestamp", + "documentation":"

A filter that returns only versions created on or before the specified time.

" + }, + "ImageName":{ + "shape":"ImageName", + "documentation":"

The name of the image to list the versions of.

" + }, + "LastModifiedTimeAfter":{ + "shape":"Timestamp", + "documentation":"

A filter that returns only versions modified on or after the specified time.

" + }, + "LastModifiedTimeBefore":{ + "shape":"Timestamp", + "documentation":"

A filter that returns only versions modified on or before the specified time.

" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of versions to return in the response. The default value is 10.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If the previous call to ListImageVersions didn't return the full set of versions, the call returns a token for getting the next set of versions.

" + }, + "SortBy":{ + "shape":"ImageVersionSortBy", + "documentation":"

The property used to sort results. The default value is CREATION_TIME.

" + }, + "SortOrder":{ + "shape":"ImageVersionSortOrder", + "documentation":"

The sort order. The default value is DESCENDING.

" + } + } + }, + "ListImageVersionsResponse":{ + "type":"structure", + "members":{ + "ImageVersions":{ + "shape":"ImageVersions", + "documentation":"

A list of versions and their properties.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A token for getting the next set of versions, if there are any.

" + } + } + }, + "ListImagesRequest":{ + "type":"structure", + "members":{ + "CreationTimeAfter":{ + "shape":"Timestamp", + "documentation":"

A filter that returns only images created on or after the specified time.

" + }, + "CreationTimeBefore":{ + "shape":"Timestamp", + "documentation":"

A filter that returns only images created on or before the specified time.

" + }, + "LastModifiedTimeAfter":{ + "shape":"Timestamp", + "documentation":"

A filter that returns only images modified on or after the specified time.

" + }, + "LastModifiedTimeBefore":{ + "shape":"Timestamp", + "documentation":"

A filter that returns only images modified on or before the specified time.

" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of images to return in the response. The default value is 10.

" + }, + "NameContains":{ + "shape":"ImageNameContains", + "documentation":"

A filter that returns only images whose name contains the specified string.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If the previous call to ListImages didn't return the full set of images, the call returns a token for getting the next set of images.

" + }, + "SortBy":{ + "shape":"ImageSortBy", + "documentation":"

The property used to sort results. The default value is CREATION_TIME.

" + }, + "SortOrder":{ + "shape":"ImageSortOrder", + "documentation":"

The sort order. The default value is DESCENDING.

" + } + } + }, + "ListImagesResponse":{ + "type":"structure", + "members":{ + "Images":{ + "shape":"Images", + "documentation":"

A list of images and their properties.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A token for getting the next set of images, if there are any.

" + } + } + }, "ListLabelingJobsForWorkteamRequest":{ "type":"structure", "required":["WorkteamArn"], @@ -10420,7 +11434,7 @@ "MediaType":{ "type":"string", "max":64, - "pattern":"^[\\w]+\\/[\\w+]+$" + "pattern":"^[-\\w]+\\/[-\\w+]+$" }, "MemberDefinition":{ "type":"structure", @@ -11131,6 +12145,11 @@ }, "documentation":"

A time limit for how long the monitoring job is allowed to run before stopping.

" }, + "MountPath":{ + "type":"string", + "max":1024, + "pattern":"^\\/.*" + }, "NameContains":{ "type":"string", "max":63, @@ -11577,7 +12596,7 @@ }, "CompilerOptions":{ "shape":"CompilerOptions", - "documentation":"

Specifies additional parameters for compiler options in JSON format. The compiler options are TargetPlatform specific. It is required for NVIDIA accelerators and highly recommended for CPU compilations. For any other cases, it is optional to specify CompilerOptions.

  • CPU: Compilation for CPU supports the following compiler options.

    • mcpu: CPU micro-architecture. For example, {'mcpu': 'skylake-avx512'}

    • mattr: CPU flags. For example, {'mattr': ['+neon', '+vfpv4']}

  • ARM: Details of ARM CPU compilations.

    • NEON: NEON is an implementation of the Advanced SIMD extension used in ARMv7 processors.

      For example, add {'mattr': ['+neon']} to the compiler options if compiling for ARM 32-bit platform with the NEON support.

  • NVIDIA: Compilation for NVIDIA GPU supports the following compiler options.

    • gpu_code: Specifies the targeted architecture.

    • trt-ver: Specifies the TensorRT versions in x.y.z. format.

    • cuda-ver: Specifies the CUDA version in x.y format.

    For example, {'gpu-code': 'sm_72', 'trt-ver': '6.0.1', 'cuda-ver': '10.1'}

  • ANDROID: Compilation for the Android OS supports the following compiler options:

    • ANDROID_PLATFORM: Specifies the Android API levels. Available levels range from 21 to 29. For example, {'ANDROID_PLATFORM': 28}.

    • mattr: Add {'mattr': ['+neon']} to compiler options if compiling for ARM 32-bit platform with NEON support.

  • CoreML: Compilation for the CoreML OutputConfig$TargetDevice supports the following compiler options:

    • class_labels: Specifies the classification labels file name inside input tar.gz file. For example, {\"class_labels\": \"imagenet_labels_1000.txt\"}. Labels inside the txt file should be separated by newlines.

" + "documentation":"

Specifies additional parameters for compiler options in JSON format. The compiler options are TargetPlatform specific. It is required for NVIDIA accelerators and highly recommended for CPU compilations. For any other cases, it is optional to specify CompilerOptions.

  • CPU: Compilation for CPU supports the following compiler options.

    • mcpu: CPU micro-architecture. For example, {'mcpu': 'skylake-avx512'}

    • mattr: CPU flags. For example, {'mattr': ['+neon', '+vfpv4']}

  • ARM: Details of ARM CPU compilations.

    • NEON: NEON is an implementation of the Advanced SIMD extension used in ARMv7 processors.

      For example, add {'mattr': ['+neon']} to the compiler options if compiling for ARM 32-bit platform with the NEON support.

  • NVIDIA: Compilation for NVIDIA GPU supports the following compiler options.

    • gpu_code: Specifies the targeted architecture.

    • trt-ver: Specifies the TensorRT versions in x.y.z. format.

    • cuda-ver: Specifies the CUDA version in x.y format.

    For example, {'gpu-code': 'sm_72', 'trt-ver': '6.0.1', 'cuda-ver': '10.1'}

  • ANDROID: Compilation for the Android OS supports the following compiler options:

    • ANDROID_PLATFORM: Specifies the Android API levels. Available levels range from 21 to 29. For example, {'ANDROID_PLATFORM': 28}.

    • mattr: Add {'mattr': ['+neon']} to compiler options if compiling for ARM 32-bit platform with NEON support.

  • INFERENTIA: Compilation for target ml_inf1 uses compiler options passed in as a JSON string. For example, \"CompilerOptions\": \"\\\"--verbose 1 --num-neuroncores 2 -O2\\\"\".

    For information about supported compiler options, see Neuron Compiler CLI.

  • CoreML: Compilation for the CoreML OutputConfig$TargetDevice supports the following compiler options:

    • class_labels: Specifies the classification labels file name inside input tar.gz file. For example, {\"class_labels\": \"imagenet_labels_1000.txt\"}. Labels inside the txt file should be separated by newlines.

" } }, "documentation":"

Contains information about the output location for the compiled model and the target device that the model runs on. TargetDevice and TargetPlatform are mutually exclusive, so you need to choose one between the two to specify your target device or platform. If you cannot find your device you want to use from the TargetDevice list, use TargetPlatform to describe the platform of your edge device and CompilerOptions if there are specific settings that are required or recommended to use for particular TargetPlatform.

" @@ -12545,14 +13564,18 @@ "members":{ "SageMakerImageArn":{ "shape":"ImageArn", - "documentation":"

The Amazon Resource Name (ARN) of the SageMaker image created on the instance.

" + "documentation":"

The ARN of the SageMaker image that the image version belongs to.

" + }, + "SageMakerImageVersionArn":{ + "shape":"ImageVersionArn", + "documentation":"

The ARN of the image version created on the instance.

" }, "InstanceType":{ "shape":"AppInstanceType", - "documentation":"

The instance type.

" + "documentation":"

The instance type that the image version runs on.

" } }, - "documentation":"

The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance. The ARN is stored as metadata in SageMaker Studio notebooks.

" + "documentation":"

Specifies the ARN's of a SageMaker image and SageMaker image version, and the instance type that the version runs on.

" }, "ResourceType":{ "type":"string", @@ -12914,7 +13937,7 @@ "SnsTopicArn":{ "type":"string", "max":2048, - "pattern":"arn:aws[a-z\\-]*:sns:[a-z0-9\\-]*:[0-9]{12}:[a-zA-Z0-9_.-]*" + "pattern":"arn:aws[a-z\\-]*:sns:[a-z0-9\\-]*:[0-9]{12}:[a-zA-Z0-9_.-]+" }, "SortBy":{ "type":"string", @@ -13470,6 +14493,7 @@ "ml.p3.8xlarge", "ml.p3.16xlarge", "ml.p3dn.24xlarge", + "ml.p4d.24xlarge", "ml.c5.xlarge", "ml.c5.2xlarge", "ml.c5.4xlarge", @@ -14627,6 +15651,29 @@ }, "documentation":"

Container for user interface template information.

" }, + "UpdateAppImageConfigRequest":{ + "type":"structure", + "required":["AppImageConfigName"], + "members":{ + "AppImageConfigName":{ + "shape":"AppImageConfigName", + "documentation":"

The name of the AppImageConfig to update.

" + }, + "KernelGatewayImageConfig":{ + "shape":"KernelGatewayImageConfig", + "documentation":"

The new KernelGateway app to run on the image.

" + } + } + }, + "UpdateAppImageConfigResponse":{ + "type":"structure", + "members":{ + "AppImageConfigArn":{ + "shape":"AppImageConfigArn", + "documentation":"

The Amazon Resource Name (ARN) for the AppImageConfig.

" + } + } + }, "UpdateCodeRepositoryInput":{ "type":"structure", "required":["CodeRepositoryName"], @@ -14763,6 +15810,41 @@ } } }, + "UpdateImageRequest":{ + "type":"structure", + "required":["ImageName"], + "members":{ + "DeleteProperties":{ + "shape":"ImageDeletePropertyList", + "documentation":"

A list of properties to delete. Only the Description and DisplayName properties can be deleted.

" + }, + "Description":{ + "shape":"ImageDescription", + "documentation":"

The new description for the image.

" + }, + "DisplayName":{ + "shape":"ImageDisplayName", + "documentation":"

The new display name for the image.

" + }, + "ImageName":{ + "shape":"ImageName", + "documentation":"

The name of the image to update.

" + }, + "RoleArn":{ + "shape":"RoleArn", + "documentation":"

The new Amazon Resource Name (ARN) for the IAM role that enables Amazon SageMaker to perform tasks on your behalf.

" + } + } + }, + "UpdateImageResponse":{ + "type":"structure", + "members":{ + "ImageArn":{ + "shape":"ImageArn", + "documentation":"

The Amazon Resource Name (ARN) of the image.

" + } + } + }, "UpdateMonitoringScheduleRequest":{ "type":"structure", "required":[ @@ -15124,7 +16206,10 @@ "Deleting", "Failed", "InService", - "Pending" + "Pending", + "Updating", + "Update_Failed", + "Delete_Failed" ] }, "UserSettings":{ @@ -15136,7 +16221,7 @@ }, "SecurityGroups":{ "shape":"SecurityGroupIds", - "documentation":"

The security groups.

" + "documentation":"

The security groups for the Amazon Virtual Private Cloud (VPC) that Studio uses for communication.

Optional when the CreateDomain.AppNetworkAccessType parameter is set to PublicInternetOnly.

Required when the CreateDomain.AppNetworkAccessType parameter is set to VpcOnly.

" }, "SharingSettings":{ "shape":"SharingSettings", @@ -15191,6 +16276,12 @@ "type":"float", "min":0 }, + "VersionedArnOrName":{ + "type":"string", + "max":176, + "min":1, + "pattern":"(arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:[a-z\\-]*\\/)?([a-zA-Z0-9]([a-zA-Z0-9-]){0,62})(? Date: Mon, 26 Oct 2020 18:11:52 +0000 Subject: [PATCH 072/339] Updated endpoints.json. --- .../feature-AWSSDKforJavav2-bedacd4.json | 6 ++++++ .../awssdk/regions/internal/region/endpoints.json | 12 ++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json new file mode 100644 index 000000000000..ae3f84993e9e --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." +} diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json index 728bd1fc2126..8fcd3e500f1e 100644 --- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json +++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json @@ -4632,6 +4632,12 @@ "region" : "us-east-1" }, "hostname" : "route53.amazonaws.com" + }, + "fips-aws-global" : { + "credentialScope" : { + "region" : "us-east-1" + }, + "hostname" : "route53-fips.amazonaws.com" } }, "isRegionalized" : false, @@ -8263,6 +8269,12 @@ "region" : "us-gov-west-1" }, "hostname" : "route53.us-gov.amazonaws.com" + }, + "fips-aws-us-gov-global" : { + "credentialScope" : { + "region" : "us-gov-west-1" + }, + "hostname" : "route53.us-gov.amazonaws.com" } }, "isRegionalized" : false, From 906014cdfc287912daab3130386b2d2558be630f Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 26 Oct 2020 18:12:21 +0000 Subject: [PATCH 073/339] Release 2.15.15. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.15.json | 30 +++++++++++++++++++ ...ture-AWSKendraFrontendService-71aa78d.json | 6 ---- .../feature-AWSSDKforJavav2-bedacd4.json | 6 ---- .../feature-AmazonNeptune-7360c76.json | 6 ---- ...eature-AmazonSageMakerService-1687ac0.json | 6 ---- CHANGELOG.md | 17 +++++++++++ README.md | 8 ++--- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- .../serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 287 files changed, 331 insertions(+), 308 deletions(-) create mode 100644 .changes/2.15.15.json delete mode 100644 .changes/next-release/feature-AWSKendraFrontendService-71aa78d.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json delete mode 100644 .changes/next-release/feature-AmazonNeptune-7360c76.json delete mode 100644 .changes/next-release/feature-AmazonSageMakerService-1687ac0.json diff --git a/.changes/2.15.15.json b/.changes/2.15.15.json new file mode 100644 index 000000000000..2d738bc63a8a --- /dev/null +++ b/.changes/2.15.15.json @@ -0,0 +1,30 @@ +{ + "version": "2.15.15", + "date": "2020-10-26", + "entries": [ + { + "type": "feature", + "category": "Amazon SageMaker Service", + "contributor": "", + "description": "This release enables customers to bring custom images for use with SageMaker Studio notebooks." + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." + }, + { + "type": "feature", + "category": "AWSKendraFrontendService", + "contributor": "", + "description": "Amazon Kendra now supports indexing data from Confluence Server." + }, + { + "type": "feature", + "category": "Amazon Neptune", + "contributor": "", + "description": "This feature enables custom endpoints for Amazon Neptune clusters. Custom endpoints simplify connection management when clusters contain instances with different capacities and configuration settings." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSKendraFrontendService-71aa78d.json b/.changes/next-release/feature-AWSKendraFrontendService-71aa78d.json deleted file mode 100644 index 5010261bea05..000000000000 --- a/.changes/next-release/feature-AWSKendraFrontendService-71aa78d.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWSKendraFrontendService", - "contributor": "", - "description": "Amazon Kendra now supports indexing data from Confluence Server." -} diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json deleted file mode 100644 index ae3f84993e9e..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS SDK for Java v2", - "contributor": "", - "description": "Updated service endpoint metadata." -} diff --git a/.changes/next-release/feature-AmazonNeptune-7360c76.json b/.changes/next-release/feature-AmazonNeptune-7360c76.json deleted file mode 100644 index fb0c53f10905..000000000000 --- a/.changes/next-release/feature-AmazonNeptune-7360c76.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Neptune", - "contributor": "", - "description": "This feature enables custom endpoints for Amazon Neptune clusters. Custom endpoints simplify connection management when clusters contain instances with different capacities and configuration settings." -} diff --git a/.changes/next-release/feature-AmazonSageMakerService-1687ac0.json b/.changes/next-release/feature-AmazonSageMakerService-1687ac0.json deleted file mode 100644 index db6e4ec2e60c..000000000000 --- a/.changes/next-release/feature-AmazonSageMakerService-1687ac0.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon SageMaker Service", - "contributor": "", - "description": "This release enables customers to bring custom images for use with SageMaker Studio notebooks." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index efe5606a02d5..e3e5c3261de6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# __2.15.15__ __2020-10-26__ +## __AWS SDK for Java v2__ + - ### Features + - Updated service endpoint metadata. + +## __AWSKendraFrontendService__ + - ### Features + - Amazon Kendra now supports indexing data from Confluence Server. + +## __Amazon Neptune__ + - ### Features + - This feature enables custom endpoints for Amazon Neptune clusters. Custom endpoints simplify connection management when clusters contain instances with different capacities and configuration settings. + +## __Amazon SageMaker Service__ + - ### Features + - This release enables customers to bring custom images for use with SageMaker Studio notebooks. + # __2.15.14__ __2020-10-23__ ## __AWS MediaTailor__ - ### Features diff --git a/README.md b/README.md index bb1d6b0d8238..ccf466a6f79f 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.14 + 2.15.15 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.14 + 2.15.15 software.amazon.awssdk s3 - 2.15.14 + 2.15.15 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.14 + 2.15.15 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index befc9d125ede..b6151c262b75 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index fda212587a56..f45f25fcaabf 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index f68b8d0497b9..2ae9f4b666b0 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.15.15-SNAPSHOT + 2.15.15 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 9158e72a78cc..8372458aee35 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 3926be046e7e..9f5e894457fb 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.15-SNAPSHOT + 2.15.15 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 6bdbf1549779..32491dd354a8 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.15-SNAPSHOT + 2.15.15 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 8333489a938b..6e85b7f05a37 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.15.15-SNAPSHOT + 2.15.15 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 547cb7cdaef4..056b2ed9b095 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.15-SNAPSHOT + 2.15.15 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 31a90d9ceb90..76bdf6d97815 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.15.15-SNAPSHOT + 2.15.15 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 98a19a5186a0..3954025696fb 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.15-SNAPSHOT + 2.15.15 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 527fa06d2143..b22fb7858ac2 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 7a3a188e1404..625e6c00dfe2 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 5f184efab853..df6a141cde48 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.15-SNAPSHOT + 2.15.15 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 7a1b0aac6e0e..a998f91f583d 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.15-SNAPSHOT + 2.15.15 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 38861cb25808..a4203cb24f28 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 0e9f492c6754..50c58e693009 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 887e22fce43d..91b549a0b240 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.15-SNAPSHOT + 2.15.15 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index b06338a5c92e..7f7dbc04554a 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.15.15-SNAPSHOT + 2.15.15 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 33021b13ab12..75cf8fbb053a 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 5822479770bf..7d500c983548 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.15.15-SNAPSHOT + 2.15.15 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 7f85f90cde8d..e695d3bc2593 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.15.15-SNAPSHOT + 2.15.15 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 14755ab2cdc9..1340330c019e 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.15.15-SNAPSHOT + 2.15.15 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index e8f88ff02f63..3c7c73d915fe 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 62f9586e1f3d..73d95761a93c 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index c6a3cf73343e..7fc063fd2cf8 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.15-SNAPSHOT + 2.15.15 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index f88707f97f97..faa0ba7b608c 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.15-SNAPSHOT + 2.15.15 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 6240758b35a2..7bf0245c04ad 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.15.15-SNAPSHOT + 2.15.15 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 7c753ef9c9b5..81f092951293 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.15.15-SNAPSHOT + 2.15.15 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index e672f3c28d31..938d6537a9fe 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.15.15-SNAPSHOT + 2.15.15 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 397e4395cc60..c73f550621cc 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.15.15-SNAPSHOT + 2.15.15 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index fa9a4af579e7..8828ab733003 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 0d07a3794210..816f74d63b9f 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.15.15-SNAPSHOT + 2.15.15 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 3b6f5580325d..ee691384f88b 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.15.15-SNAPSHOT + 2.15.15 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 799ccaa492b0..9bb644affdd8 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.15-SNAPSHOT + 2.15.15 metric-publishers diff --git a/pom.xml b/pom.xml index 7429e789c008..fd4710caa1a6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.15-SNAPSHOT + 2.15.15 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 8f2adac7fae6..42f608007d54 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.15-SNAPSHOT + 2.15.15 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 75836003c3a9..5db7de43d257 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.15.15-SNAPSHOT + 2.15.15 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 519e3034c8d8..23d64dd691f1 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.15-SNAPSHOT + 2.15.15 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 3baa1cf14381..84d0f46e5d5f 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 52f0befcff02..9d0203f0107e 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 1d7f044fcd1b..f258ce4a8739 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 385811099c75..f322f0a06ca0 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 31dc8389b100..c99e490e4ddb 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 9adec064c6fd..ec5e1f9e1ddf 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 990d4791f8de..9e5678eea665 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 0476698c417b..ae1ee4b2c78f 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index bdcb810659c1..23d6b1b1e9d2 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 0f5a5e1e9e0f..ede249cd0171 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index b0211727b45a..9000dc20d638 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 35a97548744d..0dcb2014788b 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 96fd6c24a5c2..1d7c05d90b5d 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 107fd7a55276..fa24ae334f20 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index f0e8c2b3608a..5d8fd8f8ec4c 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 7999e073743b..e2eb3ad5ca6d 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 3f839834bbe7..104f53611fdf 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 5c1e7d79e82e..1de9ff327415 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 8d9c553f9684..4570e5b3b135 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 180ce1331a51..e79d79e470ee 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index d6ea38989e9b..b632bdf002db 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index cccc819ad43a..4f2a50282ce9 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 3a19a48b34d5..f8cc1d90b6ad 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 831783ee9c17..3a50336417cf 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 681888a212c8..2ce2f03576e9 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index b8c950f83db4..b850e398e8b0 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 026f7c4945ea..3db74c456381 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 13101b061f12..7228de672a27 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 7394a020c5cb..122d3e33a2c4 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 33ba76243543..dbc8a4a41d97 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index f10e7f66d24f..c7e2cd77a01f 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index f2aac5644dfa..dad9411234ab 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 7309a742337b..5c62191c59b9 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index d283bd8ed426..50ed497a33e7 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 126e41d0a49b..7a0ffb193116 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 205aa869e446..9efbdd9b89bc 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index e6aa15039885..5579a1c62f4c 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index b1b1af5a43f0..4821dce06d46 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 510ec4a1b476..910908b22ae5 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 4708ee1aefc0..32e4a998969e 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 2adffcc1d0ae..673576ccad4b 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 3872ceeaad88..e96fe3383297 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 2c2488cef60d..0e12422aa44f 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 4434edcefb1d..3a64e697bb56 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 0c5e60a6d131..44d5e14e5db3 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 7d80b988171a..4f63f37798c2 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 5702673dd71f..09f6ea468c09 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 89f6c25a4f51..76e8b8a3bb44 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index a667735531ac..1751858e9770 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index a5a67a607a69..e5c05a2af05a 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 6840cb0d11d9..e3a8bc6efed8 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index ee49ff8735aa..21a150f47afa 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 5c6142822b1b..e956448ae266 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 8f8e3556da4f..e32b77a791c9 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index c1f5151fa996..e2027203d6aa 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index e13c4b44c72d..fc38becbc028 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 4235f1df771b..af5b2227c5a8 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index f4545130a293..35ceae6763f9 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index a15f5a55b10a..f52e21348adc 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 88e5f3e2c0e6..fc21b1a2f3d4 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 5f6b9a0057ad..9efd118cd87f 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 855200b112be..0fb357a0f5a5 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 03f1c04af90a..5dd3c3b641a9 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 546a5af8f0ac..d142bc62650e 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 0d51013c9b7f..2053644812ff 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 7f9bda5f7fd1..3b37af95c9cc 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index f8cf56855a72..517770c07df6 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 05497c2d9a7d..ce135740bf76 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 705e8445ee29..0262e1be7fd4 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 5fb9d2a48479..51b5384b056e 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 0ed8e1436524..92dcafb3e5c4 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index d13bcedd90d4..d826f2fa7301 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 79e8edaf49f8..732b7ce334b5 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 68b43c068df4..e0bfbfdaaf2e 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 6fe92ed2058b..dcbef6dd47f4 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index a0365e62be01..eef0f27a9c9a 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index e984155cbac1..62e8d1888edf 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 794edfa648cf..48e2a0191ecc 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index c6039f2b90b4..ce57b262a6be 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index c46d24cac44b..83945c8d0c5d 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 39e91f96053e..08b920858794 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 739d8105cda8..fccdb8ddd135 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 923a997dfb57..f12d1f7a5b93 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 8e7401f18005..4a966d4d52f7 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 3a1dbf5e11e0..37166fd2ab5b 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index b8c92e1abc55..cffe6f2fde22 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 107243a56128..28b59d9ceb2e 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 93460d9cd378..3c082fd6eaab 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 7892ee27059f..d4b8636d963a 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 26b0908a5385..8a1860594f3f 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index ba3f17cb6c78..c7f4f63c5ae2 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 210b0f704034..fe31d9df663f 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 87e0deee1117..ae7efb0fef3e 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 9b80b2436c40..c92df99e77ff 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 716766aae781..820b6ce55ffc 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index c0edcd07a606..677778d6a930 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index df33c4a0b4a7..85d74b00bb18 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index e0cecac26412..51cc99d33db6 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 86b3b76c39e1..b9542908f0c6 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index f2aadc0a40fd..a85b0158e322 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index fb6266fc752c..180babc5fda8 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 22fb532f2a33..aa6de9b0c810 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 1ad904b0aeb9..d6eae83c5938 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index dc471d86eb40..3fc6cb7d8a51 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index a4e09a7dadd6..9b9fbd17b400 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 27e886b7f62e..af7032a158aa 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 6fb3d936b13e..ae7f41dd33f0 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 1c7858ef52ee..cd6dae9448cd 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index c6e6db2dd3af..29b44982fb57 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index a1cf335a8991..59e72c4a561c 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index bb1bd35ad3af..1a2c0616cd34 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index b31d32f55bbe..353a47cc6e08 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index b0a0767066f1..adc5ab3c8c86 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 0bef23979bc0..5b859468c1f6 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 2cf1a4ee3b6a..858155154aac 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index f0fe307d5641..1b56a6200407 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index d862de17a4f5..4c8fc69e0392 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 816507b06fe9..e0775307b9ae 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 42ffc0a8916f..d842c790ab15 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 9bd457731a90..0b1e2e0da543 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 29ef2a5d85d8..6b5b1cb948a0 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index d19ea6826bba..bbae8203cbd1 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 7c0f4fd95df1..1b62c95abb95 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 08fafc48e215..e857c3c38ace 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 6262b0b25799..8c4b7418c936 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 30bd2bd2fc82..1bf4f06f4b82 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 2fa22ab3e1bb..0d171ab3efa9 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index a987e1d7031f..bc8345a21695 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index c78d0c397e2b..1a61f2a0270b 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 382826aea9c4..ea7a152c0d0f 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 7f55c2cbc939..dc2a8b30d034 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 7c70a30804f4..f3933487ef58 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 31bea9e082f8..c236ad066004 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 04b533eee0a9..19ac1b1a408b 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 95cf83f309e1..1c64b33e755a 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 7a09a0485a44..6965ab2361cb 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index c451dbaf2134..4f1a7df016bd 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 9c9305d5324a..a9c7f7dda85d 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index ae80c12ab1b7..c02e02b53a76 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index f584226633c6..f7ebef743ead 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 704418ba42d2..892cc8b57066 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 588c789205c8..d595e40aa5c9 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 7d74611b4a91..5acfe3f9e88a 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index aff7b3334be0..d43926dd57e3 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 3d1e4c2ec557..dd4de9e643d1 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 03da3a5120bf..94275279a644 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 26b2ac856872..86e5ebe250ae 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index e6093281c0ce..735afa2a0c49 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 2eac4f0cccc4..f879498390d5 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 678f8ae79fc6..789abcd84989 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 3136dd10ab44..ee2b728dc03b 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index fb1bdc50b609..7f747cb3e009 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 2ee5af869e20..2de96c34740f 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index bd96324917e6..388d69e60300 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 737df8d957a5..058f810019bf 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 20ebcf67055a..999d01db1baf 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index edaeb097c629..292b4f163c69 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 82e63296b484..8cd99417b914 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 2a2bd527a508..12526ba4ccc9 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 623c9b244cd4..53b5ad53dcf2 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 6920238edab0..8370dba57b7a 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index c6d38fecf275..ab1df6015559 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 695c276d0b5e..247acd79b3ba 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 8b4f396c9015..a3ab3deca9de 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 1a8fc7065fb7..08e5eb9f04a9 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 4771bfd0bfd5..260cc319ef35 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index c36cf1908edf..07079541a2c1 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index da23a9d1c61e..badcec490ca4 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.15-SNAPSHOT + 2.15.15 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 8066392521c3..d2c26c8e435a 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 6ec6ec4d8027..e457d2f0966b 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 796f3571a02e..f439b7893c53 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 637f6a2d7fb6..363bc1235aeb 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 8e765be39260..ed5ee29b1606 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 21ac14ba0408..00934e6f77e0 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 41e50979fc1d..cc86e8c26ccd 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 32ecbd45086a..f810885b4b88 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 8ac44b6ffdbf..bbf0489fceb9 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 9785ba1e2106..f70b19c4a0fe 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 43aaa7382119..e03407e13eef 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 9f3800d03d51..8286c2eddce5 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 3fa50d164093..e6b22c93a722 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index a2ba80da7014..1c12458e83a8 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index c32ccf752438..6bcd2b22d9f7 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 00d381ec1741..635758b9dc1d 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 4ab28db633ef..0adf8ff194a0 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 5dea7732deee..0cdda245e0d2 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index cfd3d3604c02..44b6c24d15b9 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 733f77a5fe50..dbf28652f11c 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 399a0aa86fac..b1ca4ea4d3f7 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 0a7242ae863a..59104824c2a2 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index eb89cbec2a59..c50268d103d1 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 3442bf0bcd43..597bbf85ec40 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 0387313f3170..daf48e134897 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index c4e236b3d877..7916420cac88 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 069857c663d0..c86dc2c1b949 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index da5c9626d6e3..a5306d83cb10 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index b96334fdd3e0..31d8f943f8a1 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 5e4025222aa7..77c1b86c0063 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 42df4adf44a1..a06bdc221fb0 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 2fa8dc4ac4c0..1e39d6b98884 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 4def044248f0..2c23c798d572 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index ce46ed3bf69f..0f4dad5c06b0 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index c7ac0269d872..6dcc0e450c78 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index e20149ed70c0..c9f3d8207f83 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 7c0e3c13caeb..4952ba529e4e 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 875b1c7e390d..487b243d010e 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index a44c5c22826e..4cef35b3b295 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index f774a2ab6285..57996b0bb993 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 150a5aba9647..d190298b04e5 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 73daaa6242e8..fbe5c44f5216 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index d4bb55ff786f..92627ab5e5a3 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 924eeaf03d04..88dfc86b1de9 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 70dab06bafc5..96ab29bb4a3a 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 07bc6a01e6e4..8a3928298703 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 9a62fececf8c..c304a33d5670 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 6d9c18419098..0cf370a18e89 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 58b63774388e..dfb2c1c25408 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index bc63f0b948e5..596c8f5ac8b8 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index ad62fe1d862d..a675248cb858 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 74512aafd4a2..a9655c910f28 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 408ff33f2bae..20d98e4590c0 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index f154e5da2c86..50ce31ce7012 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 8bb60517a8b9..81e700806f94 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index dabb63fd0d95..bfcc0e1b4dc6 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index d528521b551b..9fd10ccca673 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 99af75a256f5..72b1c50e47a6 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index aeaa64402d3f..c573623a1865 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 531768e5b690..e789fec70953 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 58772d80550e..6f179ab169ff 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index dca53b0ae651..d34f77e01244 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 6ded5e40ad0b..0581ed60b5a2 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15-SNAPSHOT + 2.15.15 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 24a67af8c911..c928bb960a78 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.15.15-SNAPSHOT + 2.15.15 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index ddd4ac09da2d..6465e9c1cb42 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.15.15-SNAPSHOT + 2.15.15 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index b89083dacf02..9e45ffd243d1 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.15.15-SNAPSHOT + 2.15.15 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 22d96c9bc673..48590b6ec9d3 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.15.15-SNAPSHOT + 2.15.15 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 3886189dd0ff..12fecf28f983 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.15.15-SNAPSHOT + 2.15.15 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index f92aab79cbad..dd2fca3f37b1 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.15-SNAPSHOT + 2.15.15 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 59ce7560ec04..1b5200f6e4dd 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.15.15-SNAPSHOT + 2.15.15 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 23434824292f..e684dc3616cc 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.15.15-SNAPSHOT + 2.15.15 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 673184c6b4b2..9a3882d44352 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.15.15-SNAPSHOT + 2.15.15 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 2fa70d164153..9fe610f8a186 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.15.15-SNAPSHOT + 2.15.15 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 66e4733c4029..0e3f82a99a3a 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.15-SNAPSHOT + 2.15.15 4.0.0 From 96c91549c734744d7c5f4155664b7078419de3ec Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 26 Oct 2020 18:37:10 +0000 Subject: [PATCH 074/339] Update to next snapshot version: 2.15.16-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 280 files changed, 280 insertions(+), 280 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index b6151c262b75..f6fa0e1beff2 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index f45f25fcaabf..42b91bc3ebf5 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 2ae9f4b666b0..a23e598b5768 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.15.15 + 2.15.16-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 8372458aee35..f2c785f47305 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 9f5e894457fb..871a31ce6706 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.15 + 2.15.16-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 32491dd354a8..27e21f857011 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.15 + 2.15.16-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 6e85b7f05a37..61ebac20e06a 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.15.15 + 2.15.16-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 056b2ed9b095..056cedbb6b64 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.15 + 2.15.16-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 76bdf6d97815..c0204aea9b75 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.15.15 + 2.15.16-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 3954025696fb..f2e443e9adf6 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.15 + 2.15.16-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index b22fb7858ac2..6318c85e840f 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 625e6c00dfe2..91f7550bde27 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index df6a141cde48..e3e5438aef99 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.15 + 2.15.16-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index a998f91f583d..3fe31e18a015 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.15 + 2.15.16-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index a4203cb24f28..18599206dbea 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 50c58e693009..559da3606785 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 91b549a0b240..f4c3fedc4af8 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.15 + 2.15.16-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 7f7dbc04554a..943c102bfddb 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.15.15 + 2.15.16-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 75cf8fbb053a..a90005b08430 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 7d500c983548..0f1bb14f9b36 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.15.15 + 2.15.16-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index e695d3bc2593..dc4db547fac3 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.15.15 + 2.15.16-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 1340330c019e..1198cde26bf0 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.15.15 + 2.15.16-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 3c7c73d915fe..ecd05259336b 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 73d95761a93c..bb7b8fca8b38 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 7fc063fd2cf8..5feb5dfcb41c 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.15 + 2.15.16-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index faa0ba7b608c..b96bcd746cb4 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.15 + 2.15.16-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 7bf0245c04ad..a8fd8eda2071 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.15.15 + 2.15.16-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index 81f092951293..c01827a64d0c 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.15.15 + 2.15.16-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 938d6537a9fe..2babb0a44b10 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.15.15 + 2.15.16-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index c73f550621cc..4c8c2e5428d0 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.15.15 + 2.15.16-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 8828ab733003..c2804523736b 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 816f74d63b9f..9e26728d4bfd 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.15.15 + 2.15.16-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index ee691384f88b..614ab53dac76 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.15.15 + 2.15.16-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 9bb644affdd8..54decbbfe463 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.15 + 2.15.16-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index fd4710caa1a6..e0264d002887 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.15 + 2.15.16-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 42f608007d54..492f4134193a 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.15 + 2.15.16-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 5db7de43d257..4d8da567c1aa 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.15.15 + 2.15.16-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 23d64dd691f1..d9193a5fd9b0 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.15 + 2.15.16-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 84d0f46e5d5f..23c022de5327 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 9d0203f0107e..54f2a49f3e3f 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index f258ce4a8739..f070acec5ce4 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index f322f0a06ca0..4d7cdb13806b 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index c99e490e4ddb..f5ab7a85b40f 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index ec5e1f9e1ddf..9e88ef6905bf 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 9e5678eea665..070038d63353 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index ae1ee4b2c78f..3f14f249df98 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 23d6b1b1e9d2..35939b33af42 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index ede249cd0171..8aded43a4ab0 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 9000dc20d638..e54909c3a770 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 0dcb2014788b..0e6e4666abc6 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 1d7c05d90b5d..419b9e163b61 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index fa24ae334f20..f8f536d515cf 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 5d8fd8f8ec4c..faf2c17577c1 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index e2eb3ad5ca6d..c9b72868ba51 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 104f53611fdf..49acdc5ef944 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 1de9ff327415..494dfd9cbab1 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 4570e5b3b135..e6be2a3d5db9 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index e79d79e470ee..026f79446bd5 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index b632bdf002db..6d367c3f7126 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 4f2a50282ce9..441f49d300e9 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index f8cc1d90b6ad..c5590088b8e3 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 3a50336417cf..952bd7cd4fee 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 2ce2f03576e9..3666685f9f9a 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index b850e398e8b0..1451e02bbe53 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 3db74c456381..1568b9763100 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 7228de672a27..d168d70cd928 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 122d3e33a2c4..82b3e5e3894f 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index dbc8a4a41d97..bbc81a3b47da 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index c7e2cd77a01f..f04f762f3789 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index dad9411234ab..2018e0c20837 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 5c62191c59b9..83bcbae7bee3 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 50ed497a33e7..49c19a6a66ec 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 7a0ffb193116..fceb9ed63894 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 9efbdd9b89bc..824c01ababeb 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 5579a1c62f4c..af86bd2f1733 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 4821dce06d46..54a66c1bae9e 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 910908b22ae5..d83f5fe951c0 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 32e4a998969e..e80bbf85e104 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 673576ccad4b..98b3f0198006 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index e96fe3383297..1d74d56ed4af 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 0e12422aa44f..ff3c8201368d 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 3a64e697bb56..a42455b627e8 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 44d5e14e5db3..7eaa3b7e1b13 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 4f63f37798c2..8dcbe94c1a0b 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 09f6ea468c09..0c5bdad549a6 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 76e8b8a3bb44..d7816d12442e 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 1751858e9770..c35894db69bb 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index e5c05a2af05a..85b4b287bf76 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index e3a8bc6efed8..6cfec7e7e441 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 21a150f47afa..d7a1a8c2713f 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index e956448ae266..1c07617e73e5 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index e32b77a791c9..0e8d8af32c99 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index e2027203d6aa..680adb6d5aaa 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index fc38becbc028..47c4ad5e2c4f 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index af5b2227c5a8..6a66f88f83a7 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 35ceae6763f9..73a96e662ab9 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index f52e21348adc..22b6a6610abf 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index fc21b1a2f3d4..02803a00ea04 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 9efd118cd87f..f28e64bf6e54 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 0fb357a0f5a5..98d7add1e084 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 5dd3c3b641a9..2cd932efd878 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index d142bc62650e..3cdb2859123f 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 2053644812ff..c60f4fdcce2d 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 3b37af95c9cc..c73a64632836 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 517770c07df6..404fed6b5592 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index ce135740bf76..52849ec4d464 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 0262e1be7fd4..869efd5064a5 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 51b5384b056e..a94a2908b5ad 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 92dcafb3e5c4..6a5eff798e17 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index d826f2fa7301..3d5755187f66 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 732b7ce334b5..fa6b226dc8f5 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index e0bfbfdaaf2e..3953fef3453d 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index dcbef6dd47f4..c0c04344a91b 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index eef0f27a9c9a..7c407c373251 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 62e8d1888edf..bb36796b446d 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 48e2a0191ecc..031030b92078 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index ce57b262a6be..130678c7ae3b 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 83945c8d0c5d..9d3636892701 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 08b920858794..f69de12f2e9f 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index fccdb8ddd135..6fb4e8ccdfd2 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index f12d1f7a5b93..a580a2385da4 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 4a966d4d52f7..168e1c4391bf 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 37166fd2ab5b..bdb8be3781c7 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index cffe6f2fde22..82534045b19f 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 28b59d9ceb2e..550fad2dade3 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 3c082fd6eaab..73b80f5d7951 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index d4b8636d963a..7f9c7b141477 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 8a1860594f3f..8a016d970a75 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index c7f4f63c5ae2..ac51fec7f23c 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index fe31d9df663f..94efda4e2f3c 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index ae7efb0fef3e..99e4a66b38c9 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index c92df99e77ff..ea86a097382e 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 820b6ce55ffc..1be693c65fa3 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 677778d6a930..65182084f275 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 85d74b00bb18..7a2e329c57f0 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 51cc99d33db6..ae75a55e99cd 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index b9542908f0c6..4b388477d370 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index a85b0158e322..f1c60e004f99 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 180babc5fda8..d5262fdddeda 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index aa6de9b0c810..f6644d760c86 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index d6eae83c5938..5945c2948b6e 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 3fc6cb7d8a51..b7d3d91d5d1e 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 9b9fbd17b400..f31d016cf111 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index af7032a158aa..d05a10accdb5 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index ae7f41dd33f0..a28481b5b92f 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index cd6dae9448cd..4d86145ee92a 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 29b44982fb57..4409773200b6 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 59e72c4a561c..0c174a8efcc2 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 1a2c0616cd34..091b6abc7d46 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 353a47cc6e08..3bb680b1c4f9 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index adc5ab3c8c86..b8892c406f86 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 5b859468c1f6..fd96b1b16667 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 858155154aac..81fbe9a92b8e 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 1b56a6200407..2e6d3bab3ca8 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 4c8fc69e0392..6ebb42df04ed 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index e0775307b9ae..f770f29a099f 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index d842c790ab15..ef6309787e42 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 0b1e2e0da543..5cb1931b360c 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 6b5b1cb948a0..80e2982c90f7 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index bbae8203cbd1..a99aad772ae9 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 1b62c95abb95..1d39d3fa6a40 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index e857c3c38ace..f4434da0f349 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 8c4b7418c936..6eb57b3caf8d 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 1bf4f06f4b82..6e839b83d538 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 0d171ab3efa9..d5c2eaca9ac4 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index bc8345a21695..1d88209bd137 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 1a61f2a0270b..411a3aa78d57 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index ea7a152c0d0f..e67639211913 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index dc2a8b30d034..0342188d33cc 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index f3933487ef58..826fabf839fb 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index c236ad066004..f5eb85de1794 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 19ac1b1a408b..8fcb819af67b 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 1c64b33e755a..95cd3fa26f63 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 6965ab2361cb..c5e42fcc120a 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 4f1a7df016bd..83e39bb39d16 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index a9c7f7dda85d..a9bc335906c6 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index c02e02b53a76..a4d5792a2df6 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index f7ebef743ead..6b40b347d48b 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 892cc8b57066..aae46ee50674 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index d595e40aa5c9..fb1d063d470b 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 5acfe3f9e88a..ae5310012983 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index d43926dd57e3..eaef4407dfac 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index dd4de9e643d1..58775a590ccf 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 94275279a644..79d838fdfd92 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 86e5ebe250ae..ae1e60dbd719 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 735afa2a0c49..434a6e8d30a8 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index f879498390d5..ad8cdbdd657d 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 789abcd84989..45075443138d 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index ee2b728dc03b..4de9dab53c94 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 7f747cb3e009..ffcae038c53c 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 2de96c34740f..479e2c411325 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 388d69e60300..038c754eae33 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 058f810019bf..dbfc2b34d0b0 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 999d01db1baf..22c584d3c1f7 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 292b4f163c69..a880956eef17 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 8cd99417b914..227b1d7a2690 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 12526ba4ccc9..8ae5aca6e07d 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 53b5ad53dcf2..3d36f1063d61 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 8370dba57b7a..e7bd054212e6 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index ab1df6015559..081b8b2e9717 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 247acd79b3ba..7773bedcade3 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index a3ab3deca9de..5c589c496940 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 08e5eb9f04a9..90f59291d882 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 260cc319ef35..3063f07d0142 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 07079541a2c1..344cdb393527 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index badcec490ca4..3d18fa54b316 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.15 + 2.15.16-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index d2c26c8e435a..64c7b33cc5b3 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index e457d2f0966b..5270b9be20a4 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index f439b7893c53..9d40118bb981 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 363bc1235aeb..37493da3f84a 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index ed5ee29b1606..fcdecfeaf4d9 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 00934e6f77e0..3f0dee680369 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index cc86e8c26ccd..6ea1be45cc2c 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index f810885b4b88..dd72b47005c8 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index bbf0489fceb9..cd1554c8c384 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index f70b19c4a0fe..2ac8566047e8 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index e03407e13eef..24e6184910f2 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 8286c2eddce5..eec1ab5c530c 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index e6b22c93a722..2c33b0fb6185 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 1c12458e83a8..fa7758a25574 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 6bcd2b22d9f7..bcecbf06f9a0 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 635758b9dc1d..8d366acd41b3 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 0adf8ff194a0..05140cdc3266 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 0cdda245e0d2..8f8a2537e553 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 44b6c24d15b9..b54ce55ba13b 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index dbf28652f11c..f08804de314d 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index b1ca4ea4d3f7..80ec3cf30182 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 59104824c2a2..f3770fb63dd5 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index c50268d103d1..ea6963e26600 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 597bbf85ec40..1cb82d55124d 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index daf48e134897..908ae87fb397 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 7916420cac88..57764f37cce4 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index c86dc2c1b949..dd1f1e82b197 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index a5306d83cb10..f5d44a4758b1 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 31d8f943f8a1..bc5b60c72b88 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 77c1b86c0063..aa9e369f7c9d 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index a06bdc221fb0..836f134d8d19 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 1e39d6b98884..f52aab476b86 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 2c23c798d572..0666e9ac7a0a 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 0f4dad5c06b0..8d7fe495c9d5 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 6dcc0e450c78..11a65b6a2671 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index c9f3d8207f83..19d427cbfa8c 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 4952ba529e4e..bac475eff3c3 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 487b243d010e..df68da65bdff 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 4cef35b3b295..a795a34238e0 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 57996b0bb993..663129dbbe15 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index d190298b04e5..b4bf266af51b 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index fbe5c44f5216..9ad831c4a20e 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 92627ab5e5a3..830ec0463d0c 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 88dfc86b1de9..74d0e3effd71 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 96ab29bb4a3a..32b711231789 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 8a3928298703..3eb21237fd17 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index c304a33d5670..6ebf65cc7e36 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 0cf370a18e89..84c6877f8370 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index dfb2c1c25408..6eea90af8d59 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 596c8f5ac8b8..6b8d3372d41c 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index a675248cb858..bd92d365c1ac 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index a9655c910f28..91f2334da0e8 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 20d98e4590c0..af4b55ced92a 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 50ce31ce7012..cfc6117b38b8 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 81e700806f94..087895184b6c 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index bfcc0e1b4dc6..50aa3d7a415e 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 9fd10ccca673..3517a8bcf4d2 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 72b1c50e47a6..ea0ddee5b400 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index c573623a1865..f03f7c75be17 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index e789fec70953..c952b3209099 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 6f179ab169ff..58a3daea9664 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index d34f77e01244..c1a60bb91efa 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 0581ed60b5a2..2c27fbbb4f04 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.15 + 2.15.16-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index c928bb960a78..a68c1fe0b0a2 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.15.15 + 2.15.16-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 6465e9c1cb42..ddc76ffba4e5 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.15.15 + 2.15.16-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 9e45ffd243d1..737bb6ea872e 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.15.15 + 2.15.16-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 48590b6ec9d3..410662a4a25d 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.15.15 + 2.15.16-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 12fecf28f983..f1a799953e1a 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.15.15 + 2.15.16-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index dd2fca3f37b1..662bea70bc0a 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.15 + 2.15.16-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 1b5200f6e4dd..5446ddd6ed9f 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.15.15 + 2.15.16-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index e684dc3616cc..f3be172f92c6 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.15.15 + 2.15.16-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 9a3882d44352..97dd035e48ae 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.15.15 + 2.15.16-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 9fe610f8a186..534d682d9ca3 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.15.15 + 2.15.16-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 0e3f82a99a3a..994787df15ba 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.15 + 2.15.16-SNAPSHOT 4.0.0 From 54534f3e704cddd02c8dd55cd9fbb75b51e3b6cd Mon Sep 17 00:00:00 2001 From: Zoe Wang Date: Mon, 26 Oct 2020 16:08:38 -0700 Subject: [PATCH 075/339] Fix a bug where host prefix was not added for services with xml protocol --- .../poet/client/specs/XmlProtocolSpec.java | 1 + .../awssdk/codegen/poet/ClientTestModels.java | 14 + .../client/PoetClientFunctionalTests.java | 13 + .../poet/client/c2j/xml/customization.config | 5 + .../poet/client/c2j/xml/service-2.json | 193 ++++++++ .../client/test-xml-async-client-class.java | 428 ++++++++++++++++++ .../poet/client/test-xml-client-class.java | 349 ++++++++++++++ .../S3AsyncAccessPointsIntegrationTest.java | 95 ++++ 8 files changed, 1098 insertions(+) create mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/c2j/xml/customization.config create mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/c2j/xml/service-2.json create mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-xml-async-client-class.java create mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-xml-client-class.java create mode 100644 services/s3control/src/it/java/software.amazon.awssdk.services.s3control/S3AsyncAccessPointsIntegrationTest.java diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/specs/XmlProtocolSpec.java b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/specs/XmlProtocolSpec.java index 1e1284f116f4..df92aca61ce0 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/specs/XmlProtocolSpec.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/specs/XmlProtocolSpec.java @@ -170,6 +170,7 @@ public CodeBlock asyncExecutionHandler(IntermediateModel intermediateModel, Oper .add(".withOperationName(\"$N\")\n", opModel.getOperationName()) .add(".withMarshaller($L)\n", asyncMarshaller(intermediateModel, opModel, marshaller, "protocolFactory")) .add(".withCombinedResponseHandler(responseHandler)\n") + .add(hostPrefixExpression(opModel)) .add(".withMetricCollector(apiCallMetricCollector)\n") .add(asyncRequestBody(opModel)) .add(HttpChecksumRequiredTrait.putHttpChecksumAttribute(opModel)); diff --git a/codegen/src/test/java/software/amazon/awssdk/codegen/poet/ClientTestModels.java b/codegen/src/test/java/software/amazon/awssdk/codegen/poet/ClientTestModels.java index 25c34a37d3d4..6bc0740757ff 100644 --- a/codegen/src/test/java/software/amazon/awssdk/codegen/poet/ClientTestModels.java +++ b/codegen/src/test/java/software/amazon/awssdk/codegen/poet/ClientTestModels.java @@ -59,6 +59,20 @@ public static IntermediateModel queryServiceModels() { return new IntermediateModelBuilder(models).build(); } + public static IntermediateModel xmlServiceModels() { + File serviceModel = new File(ClientTestModels.class.getResource("client/c2j/xml/service-2.json").getFile()); + File customizationModel = new File(ClientTestModels.class.getResource("client/c2j/xml/customization.config").getFile()); + + + C2jModels models = C2jModels + .builder() + .serviceModel(getServiceModel(serviceModel)) + .customizationConfig(getCustomizationConfig(customizationModel)) + .build(); + + return new IntermediateModelBuilder(models).build(); + } + public static IntermediateModel endpointDiscoveryModels() { File serviceModel = new File(ClientTestModels.class.getResource("client/c2j/endpointdiscovery/service-2.json").getFile()); File customizationModel = new File(ClientTestModels.class.getResource("client/c2j/endpointdiscovery/customization.config").getFile()); diff --git a/codegen/src/test/java/software/amazon/awssdk/codegen/poet/client/PoetClientFunctionalTests.java b/codegen/src/test/java/software/amazon/awssdk/codegen/poet/client/PoetClientFunctionalTests.java index bddf732ff708..7a0fd95ff76a 100644 --- a/codegen/src/test/java/software/amazon/awssdk/codegen/poet/client/PoetClientFunctionalTests.java +++ b/codegen/src/test/java/software/amazon/awssdk/codegen/poet/client/PoetClientFunctionalTests.java @@ -65,6 +65,19 @@ public void asyncClientClassQuery() throws Exception { assertThat(syncClientClass, generatesTo("test-query-async-client-class.java")); } + @Test + public void syncClientClassXml() throws Exception { + SyncClientClass syncClientClass = createSyncClientClass(ClientTestModels.xmlServiceModels()); + assertThat(syncClientClass, generatesTo("test-xml-client-class.java")); + } + + + @Test + public void asyncClientClassXml() throws Exception { + AsyncClientClass syncClientClass = createAsyncClientClass(ClientTestModels.xmlServiceModels()); + assertThat(syncClientClass, generatesTo("test-xml-async-client-class.java")); + } + private SyncClientClass createSyncClientClass(IntermediateModel model) { return new SyncClientClass(GeneratorTaskParams.create(model, "sources/", "tests/")); } diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/c2j/xml/customization.config b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/c2j/xml/customization.config new file mode 100644 index 000000000000..dda643384baa --- /dev/null +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/c2j/xml/customization.config @@ -0,0 +1,5 @@ +{ + "authPolicyActions" : { + "skip" : true + } +} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/c2j/xml/service-2.json b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/c2j/xml/service-2.json new file mode 100644 index 000000000000..bbf395164f8a --- /dev/null +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/c2j/xml/service-2.json @@ -0,0 +1,193 @@ +{ + "version": "2.0", + "metadata": { + "apiVersion": "2010-05-08", + "endpointPrefix": "xml-service", + "globalEndpoint": "xml-service.amazonaws.com", + "protocol": "rest-xml", + "serviceAbbreviation": "xml Service", + "serviceFullName": "Some Service That Uses xml Protocol", + "serviceId":"Xml Service", + "signatureVersion": "v4", + "uid": "xml-service-2010-05-08", + "xmlNamespace": "https://xml-service.amazonaws.com/doc/2010-05-08/" + }, + "operations": { + "OperationWithChecksumRequired": { + "name": "APostOperation", + "http": { + "method": "POST", + "requestUri": "/" + }, + "httpChecksumRequired": true + }, + "APostOperation": { + "name": "APostOperation", + "http": { + "method": "POST", + "requestUri": "/" + }, + "endpoint": { + "hostPrefix": "foo-" + }, + "input": { + "shape": "APostOperationRequest" + }, + "errors": [ + { + "shape": "InvalidInputException" + } + ], + "documentation": "

Performs a post operation to the xml service and has no output

" + }, + "APostOperationWithOutput": { + "name": "APostOperation", + "http": { + "method": "POST", + "requestUri": "/" + }, + "input": { + "shape": "APostOperationWithOutputRequest" + }, + "output": { + "shape": "APostOperationWithOutputResponse", + "resultWrapper": "APostOperationWithOutputResult" + }, + "errors": [ + { + "shape": "InvalidInputException" + } + ], + "documentation": "

Performs a post operation to the xml service and has modelled output

" + }, + "StreamingInputOperation": { + "name": "StreamingInputOperation", + "http": { + "method": "POST", + "requestUri": "/2016-03-11/streamingInputOperation" + }, + "input": { + "shape": "StructureWithStreamingMember" + }, + "documentation": "Some operation with a streaming input" + }, + "StreamingOutputOperation": { + "name": "StreamingOutputOperation", + "http": { + "method": "POST", + "requestUri": "/2016-03-11/streamingOutputOperation" + }, + "output": { + "shape": "StructureWithStreamingMember" + }, + "documentation": "Some operation with a streaming output" + } + }, + "shapes": { + "APostOperationRequest": { + "type": "structure", + "required": [ + "SomeNestedMember" + ], + "members": { + "SomeNestedMember": { + "shape": "nestedMember", + "documentation": "

a member that has nested members

" + }, + "OptionalMember": { + "shape": "dateType", + "documentation": "

An optional member

" + } + } + }, + "APostOperationWithOutputRequest": { + "type": "structure", + "required": [ + "SomeNestedMember" + ], + "members": { + "SomeNestedMember": { + "shape": "nestedMember", + "documentation": "

a member that has nested members

" + }, + "OptionalMember": { + "shape": "dateType", + "documentation": "

An optional member

" + } + } + }, + "APostOperationWithOutputResponse": { + "type": "structure", + "required": [ + "NestedMember" + ], + "members": { + "NestedMember": { + "shape": "nestedMember", + "documentation": "

A structure containing nested members

" + } + }, + "documentation": "

Contains the response to a successful APostOperationWithOutput request.

" + }, + "InvalidInputException": { + "type": "structure", + "members": { + "message": { + "shape": "invalidInputMessage" + } + }, + "documentation": "

The request was rejected because an invalid or out-of-range value was supplied for an input parameter.

", + "error": { + "code": "InvalidInput", + "httpStatusCode": 400, + "senderFault": true + }, + "exception": true + }, + "nestedMember": { + "type": "structure", + "required": [ + "SubMember", + "CreateDate" + ], + "members": { + "SubMember": { + "shape": "subMember", + "documentation": "

A sub-member

" + }, + "CreateDate": { + "shape": "dateType", + "documentation": "

The date and time, in ISO 8601 date-time format, when the member was created.

" + } + }, + "documentation": "

A shape with nested sub-members" + }, + "subMember": { + "type": "string", + "max": 63, + "min": 3, + "pattern": "^[a-z0-9](([a-z0-9]|-(?!-))*[a-z0-9])?$" + }, + "dateType": { + "type": "timestamp" + }, + "invalidInputMessage": { + "type": "string" + }, + "StreamType": { + "type": "blob", + "streaming": true + }, + "StructureWithStreamingMember": { + "type": "structure", + "members": { + "StreamingMember": { + "shape": "StreamType", + "documentation": "This be a stream" + } + }, + "payload": "StreamingMember" + } + }, + "documentation": "A service that is implemented using the xml protocol" +} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-xml-async-client-class.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-xml-async-client-class.java new file mode 100644 index 000000000000..6a2f904ad448 --- /dev/null +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-xml-async-client-class.java @@ -0,0 +1,428 @@ +package software.amazon.awssdk.services.xml; + +import static software.amazon.awssdk.utils.FunctionalUtils.runAndLogError; + +import java.util.Collections; +import java.util.List; +import java.util.concurrent.CompletableFuture; +import java.util.function.Consumer; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import software.amazon.awssdk.annotations.Generated; +import software.amazon.awssdk.annotations.SdkInternalApi; +import software.amazon.awssdk.auth.signer.AsyncAws4Signer; +import software.amazon.awssdk.awscore.AwsRequestOverrideConfiguration; +import software.amazon.awssdk.awscore.client.handler.AwsAsyncClientHandler; +import software.amazon.awssdk.awscore.exception.AwsServiceException; +import software.amazon.awssdk.core.RequestOverrideConfiguration; +import software.amazon.awssdk.core.Response; +import software.amazon.awssdk.core.async.AsyncRequestBody; +import software.amazon.awssdk.core.async.AsyncResponseTransformer; +import software.amazon.awssdk.core.client.config.SdkClientConfiguration; +import software.amazon.awssdk.core.client.config.SdkClientOption; +import software.amazon.awssdk.core.client.handler.AsyncClientHandler; +import software.amazon.awssdk.core.client.handler.ClientExecutionParams; +import software.amazon.awssdk.core.http.HttpResponseHandler; +import software.amazon.awssdk.core.interceptor.SdkInternalExecutionAttribute; +import software.amazon.awssdk.core.interceptor.trait.HttpChecksumRequired; +import software.amazon.awssdk.core.metrics.CoreMetric; +import software.amazon.awssdk.core.runtime.transform.AsyncStreamingRequestMarshaller; +import software.amazon.awssdk.core.signer.Signer; +import software.amazon.awssdk.metrics.MetricCollector; +import software.amazon.awssdk.metrics.MetricPublisher; +import software.amazon.awssdk.metrics.NoOpMetricCollector; +import software.amazon.awssdk.protocols.core.ExceptionMetadata; +import software.amazon.awssdk.protocols.xml.AwsXmlProtocolFactory; +import software.amazon.awssdk.protocols.xml.XmlOperationMetadata; +import software.amazon.awssdk.services.xml.model.APostOperationRequest; +import software.amazon.awssdk.services.xml.model.APostOperationResponse; +import software.amazon.awssdk.services.xml.model.APostOperationWithOutputRequest; +import software.amazon.awssdk.services.xml.model.APostOperationWithOutputResponse; +import software.amazon.awssdk.services.xml.model.InvalidInputException; +import software.amazon.awssdk.services.xml.model.OperationWithChecksumRequiredRequest; +import software.amazon.awssdk.services.xml.model.OperationWithChecksumRequiredResponse; +import software.amazon.awssdk.services.xml.model.StreamingInputOperationRequest; +import software.amazon.awssdk.services.xml.model.StreamingInputOperationResponse; +import software.amazon.awssdk.services.xml.model.StreamingOutputOperationRequest; +import software.amazon.awssdk.services.xml.model.StreamingOutputOperationResponse; +import software.amazon.awssdk.services.xml.model.XmlException; +import software.amazon.awssdk.services.xml.model.XmlRequest; +import software.amazon.awssdk.services.xml.transform.APostOperationRequestMarshaller; +import software.amazon.awssdk.services.xml.transform.APostOperationWithOutputRequestMarshaller; +import software.amazon.awssdk.services.xml.transform.OperationWithChecksumRequiredRequestMarshaller; +import software.amazon.awssdk.services.xml.transform.StreamingInputOperationRequestMarshaller; +import software.amazon.awssdk.services.xml.transform.StreamingOutputOperationRequestMarshaller; +import software.amazon.awssdk.utils.CompletableFutureUtils; + +/** + * Internal implementation of {@link XmlAsyncClient}. + * + * @see XmlAsyncClient#builder() + */ +@Generated("software.amazon.awssdk:codegen") +@SdkInternalApi +final class DefaultXmlAsyncClient implements XmlAsyncClient { + private static final Logger log = LoggerFactory.getLogger(DefaultXmlAsyncClient.class); + + private final AsyncClientHandler clientHandler; + + private final AwsXmlProtocolFactory protocolFactory; + + private final SdkClientConfiguration clientConfiguration; + + protected DefaultXmlAsyncClient(SdkClientConfiguration clientConfiguration) { + this.clientHandler = new AwsAsyncClientHandler(clientConfiguration); + this.clientConfiguration = clientConfiguration; + this.protocolFactory = init(); + } + + @Override + public final String serviceName() { + return SERVICE_NAME; + } + + /** + *

+ * Performs a post operation to the xml service and has no output + *

+ * + * @param aPostOperationRequest + * @return A Java Future containing the result of the APostOperation operation returned by the service.
+ * The CompletableFuture returned by this method can be completed exceptionally with the following + * exceptions. + *
    + *
  • InvalidInputException The request was rejected because an invalid or out-of-range value was supplied + * for an input parameter.
  • + *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). + * Can be used for catch all scenarios.
  • + *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get + * credentials, etc.
  • + *
  • XmlException Base class for all service exceptions. Unknown exceptions will be thrown as an instance + * of this type.
  • + *
+ * @sample XmlAsyncClient.APostOperation + * @see AWS API + * Documentation + */ + @Override + public CompletableFuture aPostOperation(APostOperationRequest aPostOperationRequest) { + List metricPublishers = resolveMetricPublishers(clientConfiguration, aPostOperationRequest + .overrideConfiguration().orElse(null)); + MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector + .create("ApiCall"); + try { + apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Xml Service"); + apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "APostOperation"); + + HttpResponseHandler> responseHandler = protocolFactory + .createCombinedResponseHandler(APostOperationResponse::builder, + new XmlOperationMetadata().withHasStreamingSuccessResponse(false)); + String hostPrefix = "foo-"; + String resolvedHostExpression = "foo-"; + + CompletableFuture executeFuture = clientHandler + .execute(new ClientExecutionParams() + .withOperationName("APostOperation") + .withMarshaller(new APostOperationRequestMarshaller(protocolFactory)) + .withCombinedResponseHandler(responseHandler).hostPrefixExpression(resolvedHostExpression) + .withMetricCollector(apiCallMetricCollector).withInput(aPostOperationRequest)); + AwsRequestOverrideConfiguration requestOverrideConfig = aPostOperationRequest.overrideConfiguration().orElse(null); + CompletableFuture whenCompleteFuture = null; + whenCompleteFuture = executeFuture.whenComplete((r, e) -> { + metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); + }); + return CompletableFutureUtils.forwardExceptionTo(whenCompleteFuture, executeFuture); + } catch (Throwable t) { + metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); + return CompletableFutureUtils.failedFuture(t); + } + } + + /** + *

+ * Performs a post operation to the xml service and has modelled output + *

+ * + * @param aPostOperationWithOutputRequest + * @return A Java Future containing the result of the APostOperationWithOutput operation returned by the service.
+ * The CompletableFuture returned by this method can be completed exceptionally with the following + * exceptions. + *
    + *
  • InvalidInputException The request was rejected because an invalid or out-of-range value was supplied + * for an input parameter.
  • + *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). + * Can be used for catch all scenarios.
  • + *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get + * credentials, etc.
  • + *
  • XmlException Base class for all service exceptions. Unknown exceptions will be thrown as an instance + * of this type.
  • + *
+ * @sample XmlAsyncClient.APostOperationWithOutput + * @see AWS API Documentation + */ + @Override + public CompletableFuture aPostOperationWithOutput( + APostOperationWithOutputRequest aPostOperationWithOutputRequest) { + List metricPublishers = resolveMetricPublishers(clientConfiguration, aPostOperationWithOutputRequest + .overrideConfiguration().orElse(null)); + MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector + .create("ApiCall"); + try { + apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Xml Service"); + apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "APostOperationWithOutput"); + + HttpResponseHandler> responseHandler = protocolFactory + .createCombinedResponseHandler(APostOperationWithOutputResponse::builder, + new XmlOperationMetadata().withHasStreamingSuccessResponse(false)); + + CompletableFuture executeFuture = clientHandler + .execute(new ClientExecutionParams() + .withOperationName("APostOperationWithOutput") + .withMarshaller(new APostOperationWithOutputRequestMarshaller(protocolFactory)) + .withCombinedResponseHandler(responseHandler).withMetricCollector(apiCallMetricCollector) + .withInput(aPostOperationWithOutputRequest)); + AwsRequestOverrideConfiguration requestOverrideConfig = aPostOperationWithOutputRequest.overrideConfiguration() + .orElse(null); + CompletableFuture whenCompleteFuture = null; + whenCompleteFuture = executeFuture.whenComplete((r, e) -> { + metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); + }); + return CompletableFutureUtils.forwardExceptionTo(whenCompleteFuture, executeFuture); + } catch (Throwable t) { + metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); + return CompletableFutureUtils.failedFuture(t); + } + } + + /** + * Invokes the OperationWithChecksumRequired operation asynchronously. + * + * @param operationWithChecksumRequiredRequest + * @return A Java Future containing the result of the OperationWithChecksumRequired operation returned by the + * service.
+ * The CompletableFuture returned by this method can be completed exceptionally with the following + * exceptions. + *
    + *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). + * Can be used for catch all scenarios.
  • + *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get + * credentials, etc.
  • + *
  • XmlException Base class for all service exceptions. Unknown exceptions will be thrown as an instance + * of this type.
  • + *
+ * @sample XmlAsyncClient.OperationWithChecksumRequired + * @see AWS API Documentation + */ + @Override + public CompletableFuture operationWithChecksumRequired( + OperationWithChecksumRequiredRequest operationWithChecksumRequiredRequest) { + List metricPublishers = resolveMetricPublishers(clientConfiguration, + operationWithChecksumRequiredRequest.overrideConfiguration().orElse(null)); + MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector + .create("ApiCall"); + try { + apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Xml Service"); + apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "OperationWithChecksumRequired"); + + HttpResponseHandler> responseHandler = protocolFactory + .createCombinedResponseHandler(OperationWithChecksumRequiredResponse::builder, + new XmlOperationMetadata().withHasStreamingSuccessResponse(false)); + + CompletableFuture executeFuture = clientHandler + .execute(new ClientExecutionParams() + .withOperationName("OperationWithChecksumRequired") + .withMarshaller(new OperationWithChecksumRequiredRequestMarshaller(protocolFactory)) + .withCombinedResponseHandler(responseHandler) + .withMetricCollector(apiCallMetricCollector) + .putExecutionAttribute(SdkInternalExecutionAttribute.HTTP_CHECKSUM_REQUIRED, + HttpChecksumRequired.create()).withInput(operationWithChecksumRequiredRequest)); + AwsRequestOverrideConfiguration requestOverrideConfig = operationWithChecksumRequiredRequest.overrideConfiguration() + .orElse(null); + CompletableFuture whenCompleteFuture = null; + whenCompleteFuture = executeFuture.whenComplete((r, e) -> { + metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); + }); + return CompletableFutureUtils.forwardExceptionTo(whenCompleteFuture, executeFuture); + } catch (Throwable t) { + metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); + return CompletableFutureUtils.failedFuture(t); + } + } + + /** + * Some operation with a streaming input + * + * @param streamingInputOperationRequest + * @param requestBody + * Functional interface that can be implemented to produce the request content in a non-blocking manner. The + * size of the content is expected to be known up front. See {@link AsyncRequestBody} for specific details on + * implementing this interface as well as links to precanned implementations for common scenarios like + * uploading from a file. The service documentation for the request content is as follows 'This be a stream' + * @return A Java Future containing the result of the StreamingInputOperation operation returned by the service.
+ * The CompletableFuture returned by this method can be completed exceptionally with the following + * exceptions. + *
    + *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). + * Can be used for catch all scenarios.
  • + *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get + * credentials, etc.
  • + *
  • XmlException Base class for all service exceptions. Unknown exceptions will be thrown as an instance + * of this type.
  • + *
+ * @sample XmlAsyncClient.StreamingInputOperation + * @see AWS API Documentation + */ + @Override + public CompletableFuture streamingInputOperation( + StreamingInputOperationRequest streamingInputOperationRequest, AsyncRequestBody requestBody) { + List metricPublishers = resolveMetricPublishers(clientConfiguration, streamingInputOperationRequest + .overrideConfiguration().orElse(null)); + MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector + .create("ApiCall"); + try { + apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Xml Service"); + apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "StreamingInputOperation"); + if (!isSignerOverridden(clientConfiguration)) { + streamingInputOperationRequest = applySignerOverride(streamingInputOperationRequest, AsyncAws4Signer.create()); + } + + HttpResponseHandler> responseHandler = protocolFactory + .createCombinedResponseHandler(StreamingInputOperationResponse::builder, + new XmlOperationMetadata().withHasStreamingSuccessResponse(false)); + + CompletableFuture executeFuture = clientHandler + .execute(new ClientExecutionParams() + .withOperationName("StreamingInputOperation") + .withMarshaller( + AsyncStreamingRequestMarshaller.builder() + .delegateMarshaller(new StreamingInputOperationRequestMarshaller(protocolFactory)) + .asyncRequestBody(requestBody).build()).withCombinedResponseHandler(responseHandler) + .withMetricCollector(apiCallMetricCollector).withAsyncRequestBody(requestBody) + .withInput(streamingInputOperationRequest)); + AwsRequestOverrideConfiguration requestOverrideConfig = streamingInputOperationRequest.overrideConfiguration() + .orElse(null); + CompletableFuture whenCompleteFuture = null; + whenCompleteFuture = executeFuture.whenComplete((r, e) -> { + metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); + }); + return CompletableFutureUtils.forwardExceptionTo(whenCompleteFuture, executeFuture); + } catch (Throwable t) { + metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); + return CompletableFutureUtils.failedFuture(t); + } + } + + /** + * Some operation with a streaming output + * + * @param streamingOutputOperationRequest + * @param asyncResponseTransformer + * The response transformer for processing the streaming response in a non-blocking manner. See + * {@link AsyncResponseTransformer} for details on how this callback should be implemented and for links to + * precanned implementations for common scenarios like downloading to a file. The service documentation for + * the response content is as follows 'This be a stream'. + * @return A future to the transformed result of the AsyncResponseTransformer.
+ * The CompletableFuture returned by this method can be completed exceptionally with the following + * exceptions. + *
    + *
  • SdkException Base class for all exceptions that can be thrown by the SDK (both service and client). + * Can be used for catch all scenarios.
  • + *
  • SdkClientException If any client side error occurs such as an IO related failure, failure to get + * credentials, etc.
  • + *
  • XmlException Base class for all service exceptions. Unknown exceptions will be thrown as an instance + * of this type.
  • + *
+ * @sample XmlAsyncClient.StreamingOutputOperation + * @see AWS API Documentation + */ + @Override + public CompletableFuture streamingOutputOperation( + StreamingOutputOperationRequest streamingOutputOperationRequest, + AsyncResponseTransformer asyncResponseTransformer) { + List metricPublishers = resolveMetricPublishers(clientConfiguration, streamingOutputOperationRequest + .overrideConfiguration().orElse(null)); + MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector + .create("ApiCall"); + try { + apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Xml Service"); + apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "StreamingOutputOperation"); + + HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( + StreamingOutputOperationResponse::builder, new XmlOperationMetadata().withHasStreamingSuccessResponse(true)); + + HttpResponseHandler errorResponseHandler = protocolFactory.createErrorResponseHandler(); + + CompletableFuture executeFuture = clientHandler.execute( + new ClientExecutionParams() + .withOperationName("StreamingOutputOperation") + .withMarshaller(new StreamingOutputOperationRequestMarshaller(protocolFactory)) + .withResponseHandler(responseHandler).withErrorResponseHandler(errorResponseHandler) + .withMetricCollector(apiCallMetricCollector).withInput(streamingOutputOperationRequest), + asyncResponseTransformer); + AwsRequestOverrideConfiguration requestOverrideConfig = streamingOutputOperationRequest.overrideConfiguration() + .orElse(null); + CompletableFuture whenCompleteFuture = null; + whenCompleteFuture = executeFuture.whenComplete((r, e) -> { + if (e != null) { + runAndLogError(log, "Exception thrown in exceptionOccurred callback, ignoring", + () -> asyncResponseTransformer.exceptionOccurred(e)); + } + metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); + }); + return CompletableFutureUtils.forwardExceptionTo(whenCompleteFuture, executeFuture); + } catch (Throwable t) { + runAndLogError(log, "Exception thrown in exceptionOccurred callback, ignoring", + () -> asyncResponseTransformer.exceptionOccurred(t)); + metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); + return CompletableFutureUtils.failedFuture(t); + } + } + + @Override + public void close() { + clientHandler.close(); + } + + private AwsXmlProtocolFactory init() { + return AwsXmlProtocolFactory + .builder() + .registerModeledException( + ExceptionMetadata.builder().errorCode("InvalidInput") + .exceptionBuilderSupplier(InvalidInputException::builder).httpStatusCode(400).build()) + .clientConfiguration(clientConfiguration).defaultServiceExceptionSupplier(XmlException::builder).build(); + } + + private static List resolveMetricPublishers(SdkClientConfiguration clientConfiguration, + RequestOverrideConfiguration requestOverrideConfiguration) { + List publishers = null; + if (requestOverrideConfiguration != null) { + publishers = requestOverrideConfiguration.metricPublishers(); + } + if (publishers == null || publishers.isEmpty()) { + publishers = clientConfiguration.option(SdkClientOption.METRIC_PUBLISHERS); + } + if (publishers == null) { + publishers = Collections.emptyList(); + } + return publishers; + } + + private T applySignerOverride(T request, Signer signer) { + if (request.overrideConfiguration().flatMap(c -> c.signer()).isPresent()) { + return request; + } + Consumer signerOverride = b -> b.signer(signer).build(); + AwsRequestOverrideConfiguration overrideConfiguration = request.overrideConfiguration() + .map(c -> c.toBuilder().applyMutation(signerOverride).build()) + .orElse((AwsRequestOverrideConfiguration.builder().applyMutation(signerOverride).build())); + return (T) request.toBuilder().overrideConfiguration(overrideConfiguration).build(); + } + + private static boolean isSignerOverridden(SdkClientConfiguration clientConfiguration) { + return Boolean.TRUE.equals(clientConfiguration.option(SdkClientOption.SIGNER_OVERRIDDEN)); + } +} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-xml-client-class.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-xml-client-class.java new file mode 100644 index 000000000000..05778de0bc9c --- /dev/null +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-xml-client-class.java @@ -0,0 +1,349 @@ +package software.amazon.awssdk.services.xml; + +import java.util.Collections; +import java.util.List; +import software.amazon.awssdk.annotations.Generated; +import software.amazon.awssdk.annotations.SdkInternalApi; +import software.amazon.awssdk.awscore.client.handler.AwsSyncClientHandler; +import software.amazon.awssdk.awscore.exception.AwsServiceException; +import software.amazon.awssdk.core.RequestOverrideConfiguration; +import software.amazon.awssdk.core.Response; +import software.amazon.awssdk.core.client.config.SdkClientConfiguration; +import software.amazon.awssdk.core.client.config.SdkClientOption; +import software.amazon.awssdk.core.client.handler.ClientExecutionParams; +import software.amazon.awssdk.core.client.handler.SyncClientHandler; +import software.amazon.awssdk.core.exception.SdkClientException; +import software.amazon.awssdk.core.http.HttpResponseHandler; +import software.amazon.awssdk.core.interceptor.SdkInternalExecutionAttribute; +import software.amazon.awssdk.core.interceptor.trait.HttpChecksumRequired; +import software.amazon.awssdk.core.metrics.CoreMetric; +import software.amazon.awssdk.core.runtime.transform.StreamingRequestMarshaller; +import software.amazon.awssdk.core.sync.RequestBody; +import software.amazon.awssdk.core.sync.ResponseTransformer; +import software.amazon.awssdk.metrics.MetricCollector; +import software.amazon.awssdk.metrics.MetricPublisher; +import software.amazon.awssdk.metrics.NoOpMetricCollector; +import software.amazon.awssdk.protocols.core.ExceptionMetadata; +import software.amazon.awssdk.protocols.xml.AwsXmlProtocolFactory; +import software.amazon.awssdk.protocols.xml.XmlOperationMetadata; +import software.amazon.awssdk.services.xml.model.APostOperationRequest; +import software.amazon.awssdk.services.xml.model.APostOperationResponse; +import software.amazon.awssdk.services.xml.model.APostOperationWithOutputRequest; +import software.amazon.awssdk.services.xml.model.APostOperationWithOutputResponse; +import software.amazon.awssdk.services.xml.model.InvalidInputException; +import software.amazon.awssdk.services.xml.model.OperationWithChecksumRequiredRequest; +import software.amazon.awssdk.services.xml.model.OperationWithChecksumRequiredResponse; +import software.amazon.awssdk.services.xml.model.StreamingInputOperationRequest; +import software.amazon.awssdk.services.xml.model.StreamingInputOperationResponse; +import software.amazon.awssdk.services.xml.model.StreamingOutputOperationRequest; +import software.amazon.awssdk.services.xml.model.StreamingOutputOperationResponse; +import software.amazon.awssdk.services.xml.model.XmlException; +import software.amazon.awssdk.services.xml.transform.APostOperationRequestMarshaller; +import software.amazon.awssdk.services.xml.transform.APostOperationWithOutputRequestMarshaller; +import software.amazon.awssdk.services.xml.transform.OperationWithChecksumRequiredRequestMarshaller; +import software.amazon.awssdk.services.xml.transform.StreamingInputOperationRequestMarshaller; +import software.amazon.awssdk.services.xml.transform.StreamingOutputOperationRequestMarshaller; +import software.amazon.awssdk.utils.Logger; + +/** + * Internal implementation of {@link XmlClient}. + * + * @see XmlClient#builder() + */ +@Generated("software.amazon.awssdk:codegen") +@SdkInternalApi +final class DefaultXmlClient implements XmlClient { + private static final Logger log = Logger.loggerFor(DefaultXmlClient.class); + + private final SyncClientHandler clientHandler; + + private final AwsXmlProtocolFactory protocolFactory; + + private final SdkClientConfiguration clientConfiguration; + + protected DefaultXmlClient(SdkClientConfiguration clientConfiguration) { + this.clientHandler = new AwsSyncClientHandler(clientConfiguration); + this.clientConfiguration = clientConfiguration; + this.protocolFactory = init(); + } + + @Override + public final String serviceName() { + return SERVICE_NAME; + } + + /** + *

+ * Performs a post operation to the xml service and has no output + *

+ * + * @param aPostOperationRequest + * @return Result of the APostOperation operation returned by the service. + * @throws InvalidInputException + * The request was rejected because an invalid or out-of-range value was supplied for an input parameter. + * @throws SdkException + * Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for + * catch all scenarios. + * @throws SdkClientException + * If any client side error occurs such as an IO related failure, failure to get credentials, etc. + * @throws XmlException + * Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type. + * @sample XmlClient.APostOperation + * @see AWS API + * Documentation + */ + @Override + public APostOperationResponse aPostOperation(APostOperationRequest aPostOperationRequest) throws InvalidInputException, + AwsServiceException, SdkClientException, XmlException { + + HttpResponseHandler> responseHandler = protocolFactory.createCombinedResponseHandler( + APostOperationResponse::builder, new XmlOperationMetadata().withHasStreamingSuccessResponse(false)); + List metricPublishers = resolveMetricPublishers(clientConfiguration, aPostOperationRequest + .overrideConfiguration().orElse(null)); + MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector + .create("ApiCall"); + try { + apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Xml Service"); + apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "APostOperation"); + String hostPrefix = "foo-"; + String resolvedHostExpression = "foo-"; + + return clientHandler.execute(new ClientExecutionParams() + .withOperationName("APostOperation").withCombinedResponseHandler(responseHandler) + .withMetricCollector(apiCallMetricCollector).hostPrefixExpression(resolvedHostExpression) + .withInput(aPostOperationRequest).withMarshaller(new APostOperationRequestMarshaller(protocolFactory))); + } finally { + metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); + } + } + + /** + *

+ * Performs a post operation to the xml service and has modelled output + *

+ * + * @param aPostOperationWithOutputRequest + * @return Result of the APostOperationWithOutput operation returned by the service. + * @throws InvalidInputException + * The request was rejected because an invalid or out-of-range value was supplied for an input parameter. + * @throws SdkException + * Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for + * catch all scenarios. + * @throws SdkClientException + * If any client side error occurs such as an IO related failure, failure to get credentials, etc. + * @throws XmlException + * Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type. + * @sample XmlClient.APostOperationWithOutput + * @see AWS API Documentation + */ + @Override + public APostOperationWithOutputResponse aPostOperationWithOutput( + APostOperationWithOutputRequest aPostOperationWithOutputRequest) throws InvalidInputException, AwsServiceException, + SdkClientException, XmlException { + + HttpResponseHandler> responseHandler = protocolFactory + .createCombinedResponseHandler(APostOperationWithOutputResponse::builder, + new XmlOperationMetadata().withHasStreamingSuccessResponse(false)); + List metricPublishers = resolveMetricPublishers(clientConfiguration, aPostOperationWithOutputRequest + .overrideConfiguration().orElse(null)); + MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector + .create("ApiCall"); + try { + apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Xml Service"); + apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "APostOperationWithOutput"); + + return clientHandler + .execute(new ClientExecutionParams() + .withOperationName("APostOperationWithOutput").withCombinedResponseHandler(responseHandler) + .withMetricCollector(apiCallMetricCollector).withInput(aPostOperationWithOutputRequest) + .withMarshaller(new APostOperationWithOutputRequestMarshaller(protocolFactory))); + } finally { + metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); + } + } + + /** + * Invokes the OperationWithChecksumRequired operation. + * + * @param operationWithChecksumRequiredRequest + * @return Result of the OperationWithChecksumRequired operation returned by the service. + * @throws SdkException + * Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for + * catch all scenarios. + * @throws SdkClientException + * If any client side error occurs such as an IO related failure, failure to get credentials, etc. + * @throws XmlException + * Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type. + * @sample XmlClient.OperationWithChecksumRequired + * @see AWS API Documentation + */ + @Override + public OperationWithChecksumRequiredResponse operationWithChecksumRequired( + OperationWithChecksumRequiredRequest operationWithChecksumRequiredRequest) throws AwsServiceException, + SdkClientException, XmlException { + + HttpResponseHandler> responseHandler = protocolFactory + .createCombinedResponseHandler(OperationWithChecksumRequiredResponse::builder, + new XmlOperationMetadata().withHasStreamingSuccessResponse(false)); + List metricPublishers = resolveMetricPublishers(clientConfiguration, + operationWithChecksumRequiredRequest.overrideConfiguration().orElse(null)); + MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector + .create("ApiCall"); + try { + apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Xml Service"); + apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "OperationWithChecksumRequired"); + + return clientHandler + .execute(new ClientExecutionParams() + .withOperationName("OperationWithChecksumRequired") + .withCombinedResponseHandler(responseHandler) + .withMetricCollector(apiCallMetricCollector) + .withInput(operationWithChecksumRequiredRequest) + .putExecutionAttribute(SdkInternalExecutionAttribute.HTTP_CHECKSUM_REQUIRED, + HttpChecksumRequired.create()) + .withMarshaller(new OperationWithChecksumRequiredRequestMarshaller(protocolFactory))); + } finally { + metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); + } + } + + /** + * Some operation with a streaming input + * + * @param streamingInputOperationRequest + * @param requestBody + * The content to send to the service. A {@link RequestBody} can be created using one of several factory + * methods for various sources of data. For example, to create a request body from a file you can do the + * following. + * + *
+     * {@code RequestBody.fromFile(new File("myfile.txt"))}
+     * 
+ * + * See documentation in {@link RequestBody} for additional details and which sources of data are supported. + * The service documentation for the request content is as follows 'This be a stream' + * @return Result of the StreamingInputOperation operation returned by the service. + * @throws SdkException + * Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for + * catch all scenarios. + * @throws SdkClientException + * If any client side error occurs such as an IO related failure, failure to get credentials, etc. + * @throws XmlException + * Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type. + * @sample XmlClient.StreamingInputOperation + * @see AWS API Documentation + */ + @Override + public StreamingInputOperationResponse streamingInputOperation(StreamingInputOperationRequest streamingInputOperationRequest, + RequestBody requestBody) throws AwsServiceException, SdkClientException, XmlException { + + HttpResponseHandler> responseHandler = protocolFactory + .createCombinedResponseHandler(StreamingInputOperationResponse::builder, + new XmlOperationMetadata().withHasStreamingSuccessResponse(false)); + List metricPublishers = resolveMetricPublishers(clientConfiguration, streamingInputOperationRequest + .overrideConfiguration().orElse(null)); + MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector + .create("ApiCall"); + try { + apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Xml Service"); + apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "StreamingInputOperation"); + + return clientHandler + .execute(new ClientExecutionParams() + .withOperationName("StreamingInputOperation") + .withCombinedResponseHandler(responseHandler) + .withMetricCollector(apiCallMetricCollector) + .withInput(streamingInputOperationRequest) + .withRequestBody(requestBody) + .withMarshaller( + StreamingRequestMarshaller.builder() + .delegateMarshaller(new StreamingInputOperationRequestMarshaller(protocolFactory)) + .requestBody(requestBody).build())); + } finally { + metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); + } + } + + /** + * Some operation with a streaming output + * + * @param streamingOutputOperationRequest + * @param responseTransformer + * Functional interface for processing the streamed response content. The unmarshalled + * StreamingOutputOperationResponse and an InputStream to the response content are provided as parameters to + * the callback. The callback may return a transformed type which will be the return value of this method. + * See {@link software.amazon.awssdk.core.sync.ResponseTransformer} for details on implementing this + * interface and for links to pre-canned implementations for common scenarios like downloading to a file. The + * service documentation for the response content is as follows 'This be a stream'. + * @return The transformed result of the ResponseTransformer. + * @throws SdkException + * Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for + * catch all scenarios. + * @throws SdkClientException + * If any client side error occurs such as an IO related failure, failure to get credentials, etc. + * @throws XmlException + * Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type. + * @sample XmlClient.StreamingOutputOperation + * @see AWS API Documentation + */ + @Override + public ReturnT streamingOutputOperation(StreamingOutputOperationRequest streamingOutputOperationRequest, + ResponseTransformer responseTransformer) throws AwsServiceException, + SdkClientException, XmlException { + + HttpResponseHandler responseHandler = protocolFactory.createResponseHandler( + StreamingOutputOperationResponse::builder, new XmlOperationMetadata().withHasStreamingSuccessResponse(true)); + + HttpResponseHandler errorResponseHandler = protocolFactory.createErrorResponseHandler(); + List metricPublishers = resolveMetricPublishers(clientConfiguration, streamingOutputOperationRequest + .overrideConfiguration().orElse(null)); + MetricCollector apiCallMetricCollector = metricPublishers.isEmpty() ? NoOpMetricCollector.create() : MetricCollector + .create("ApiCall"); + try { + apiCallMetricCollector.reportMetric(CoreMetric.SERVICE_ID, "Xml Service"); + apiCallMetricCollector.reportMetric(CoreMetric.OPERATION_NAME, "StreamingOutputOperation"); + + return clientHandler.execute( + new ClientExecutionParams() + .withOperationName("StreamingOutputOperation").withResponseHandler(responseHandler) + .withErrorResponseHandler(errorResponseHandler).withInput(streamingOutputOperationRequest) + .withMetricCollector(apiCallMetricCollector) + .withMarshaller(new StreamingOutputOperationRequestMarshaller(protocolFactory)), responseTransformer); + } finally { + metricPublishers.forEach(p -> p.publish(apiCallMetricCollector.collect())); + } + } + + private static List resolveMetricPublishers(SdkClientConfiguration clientConfiguration, + RequestOverrideConfiguration requestOverrideConfiguration) { + List publishers = null; + if (requestOverrideConfiguration != null) { + publishers = requestOverrideConfiguration.metricPublishers(); + } + if (publishers == null || publishers.isEmpty()) { + publishers = clientConfiguration.option(SdkClientOption.METRIC_PUBLISHERS); + } + if (publishers == null) { + publishers = Collections.emptyList(); + } + return publishers; + } + + private AwsXmlProtocolFactory init() { + return AwsXmlProtocolFactory + .builder() + .registerModeledException( + ExceptionMetadata.builder().errorCode("InvalidInput") + .exceptionBuilderSupplier(InvalidInputException::builder).httpStatusCode(400).build()) + .clientConfiguration(clientConfiguration).defaultServiceExceptionSupplier(XmlException::builder).build(); + } + + @Override + public void close() { + clientHandler.close(); + } +} diff --git a/services/s3control/src/it/java/software.amazon.awssdk.services.s3control/S3AsyncAccessPointsIntegrationTest.java b/services/s3control/src/it/java/software.amazon.awssdk.services.s3control/S3AsyncAccessPointsIntegrationTest.java new file mode 100644 index 000000000000..48f537bece32 --- /dev/null +++ b/services/s3control/src/it/java/software.amazon.awssdk.services.s3control/S3AsyncAccessPointsIntegrationTest.java @@ -0,0 +1,95 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ +package software.amazon.awssdk.services.s3control; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.junit.Assert.assertNotNull; +import static software.amazon.awssdk.testutils.service.S3BucketUtils.temporaryBucketName; + +import java.util.StringJoiner; +import org.junit.AfterClass; +import org.junit.BeforeClass; +import org.junit.Test; +import software.amazon.awssdk.core.sync.RequestBody; +import software.amazon.awssdk.regions.Region; +import software.amazon.awssdk.services.s3.model.GetObjectRequest; +import software.amazon.awssdk.services.s3.model.PutObjectRequest; +import software.amazon.awssdk.services.sts.StsClient; + +public class S3AsyncAccessPointsIntegrationTest extends S3ControlIntegrationTestBase { + + private static final String BUCKET = temporaryBucketName(S3AsyncAccessPointsIntegrationTest.class); + + private static final String AP_NAME = "java-sdk-" + System.currentTimeMillis(); + + private static final String KEY = "some-key"; + + private static S3ControlAsyncClient s3control; + + private static StsClient sts; + + private static String accountId; + + @BeforeClass + public static void setupFixture() { + createBucket(BUCKET); + + s3control = S3ControlAsyncClient.builder() + .region(Region.US_WEST_2) + .credentialsProvider(CREDENTIALS_PROVIDER_CHAIN) + .build(); + + sts = StsClient.builder() + .region(Region.US_WEST_2) + .credentialsProvider(CREDENTIALS_PROVIDER_CHAIN) + .build(); + + accountId = sts.getCallerIdentity().account(); + s3control.createAccessPoint(r -> r.accountId(accountId) + .bucket(BUCKET) + .name(AP_NAME)) + .join(); + } + + @AfterClass + public static void tearDown() { + deleteBucketAndAllContents(BUCKET); + s3control.deleteAccessPoint(b -> b.accountId(accountId).name(AP_NAME)).join(); + } + + @Test + public void accessPointOperation_nonArns() { + assertNotNull(s3control.listAccessPoints(b -> b.bucket(BUCKET).accountId(accountId).maxResults(1)).join()); + assertNotNull(s3control.getAccessPoint(b -> b.name(AP_NAME).accountId(accountId)).join()); + } + + @Test + public void transfer_Succeeds_UsingAccessPoint() { + StringJoiner apArn = new StringJoiner(":"); + apArn.add("arn").add("aws").add("s3").add("us-west-2").add(accountId).add("accesspoint").add(AP_NAME); + + s3.putObject(PutObjectRequest.builder() + .bucket(apArn.toString()) + .key(KEY) + .build(), RequestBody.fromString("helloworld")); + + String objectContent = s3.getObjectAsBytes(GetObjectRequest.builder() + .bucket(apArn.toString()) + .key(KEY) + .build()).asUtf8String(); + + assertThat(objectContent).isEqualTo("helloworld"); + } +} From 7701d98e36f92a4673d2ed3c446c7608b4434bd8 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 27 Oct 2020 18:08:52 +0000 Subject: [PATCH 076/339] AWS Glue Update: AWS Glue machine learning transforms now support encryption-at-rest for labels and trained models. --- .../next-release/feature-AWSGlue-6b0225e.json | 6 + .../codegen-resources/service-2.json | 168 +++++++++++------- 2 files changed, 114 insertions(+), 60 deletions(-) create mode 100644 .changes/next-release/feature-AWSGlue-6b0225e.json diff --git a/.changes/next-release/feature-AWSGlue-6b0225e.json b/.changes/next-release/feature-AWSGlue-6b0225e.json new file mode 100644 index 000000000000..02b863e09cc8 --- /dev/null +++ b/.changes/next-release/feature-AWSGlue-6b0225e.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Glue", + "contributor": "", + "description": "AWS Glue machine learning transforms now support encryption-at-rest for labels and trained models." +} diff --git a/services/glue/src/main/resources/codegen-resources/service-2.json b/services/glue/src/main/resources/codegen-resources/service-2.json index 2d3259ea013e..148b81e47021 100644 --- a/services/glue/src/main/resources/codegen-resources/service-2.json +++ b/services/glue/src/main/resources/codegen-resources/service-2.json @@ -513,7 +513,7 @@ {"shape":"OperationTimeoutException"}, {"shape":"GlueEncryptionException"} ], - "documentation":"

Delete the partition column statistics of a column.

" + "documentation":"

Delete the partition column statistics of a column.

The Identity and Access Management (IAM) permission required for this operation is DeletePartition.

" }, "DeleteColumnStatisticsForTable":{ "name":"DeleteColumnStatisticsForTable", @@ -530,7 +530,7 @@ {"shape":"OperationTimeoutException"}, {"shape":"GlueEncryptionException"} ], - "documentation":"

Retrieves table statistics of columns.

" + "documentation":"

Retrieves table statistics of columns.

The Identity and Access Management (IAM) permission required for this operation is DeleteTable.

" }, "DeleteConnection":{ "name":"DeleteConnection", @@ -810,7 +810,7 @@ {"shape":"OperationTimeoutException"}, {"shape":"GlueEncryptionException"} ], - "documentation":"

Retrieves partition statistics of columns.

" + "documentation":"

Retrieves partition statistics of columns.

The Identity and Access Management (IAM) permission required for this operation is GetPartition.

" }, "GetColumnStatisticsForTable":{ "name":"GetColumnStatisticsForTable", @@ -827,7 +827,7 @@ {"shape":"OperationTimeoutException"}, {"shape":"GlueEncryptionException"} ], - "documentation":"

Retrieves table statistics of columns.

" + "documentation":"

Retrieves table statistics of columns.

The Identity and Access Management (IAM) permission required for this operation is GetTable.

" }, "GetConnection":{ "name":"GetConnection", @@ -1990,7 +1990,7 @@ {"shape":"OperationTimeoutException"}, {"shape":"GlueEncryptionException"} ], - "documentation":"

Creates or updates partition statistics of columns.

" + "documentation":"

Creates or updates partition statistics of columns.

The Identity and Access Management (IAM) permission required for this operation is UpdatePartition.

" }, "UpdateColumnStatisticsForTable":{ "name":"UpdateColumnStatisticsForTable", @@ -2007,7 +2007,7 @@ {"shape":"OperationTimeoutException"}, {"shape":"GlueEncryptionException"} ], - "documentation":"

Creates or updates table statistics of columns.

" + "documentation":"

Creates or updates table statistics of columns.

The Identity and Access Management (IAM) permission required for this operation is UpdateTable.

" }, "UpdateConnection":{ "name":"UpdateConnection", @@ -2786,18 +2786,18 @@ "members":{ "MaximumLength":{ "shape":"NonNegativeLong", - "documentation":"

Maximum length of the column.

" + "documentation":"

The size of the longest bit sequence in the column.

" }, "AverageLength":{ "shape":"NonNegativeDouble", - "documentation":"

Average length of the column.

" + "documentation":"

The average bit sequence length in the column.

" }, "NumberOfNulls":{ "shape":"NonNegativeLong", - "documentation":"

Number of nulls.

" + "documentation":"

The number of null values in the column.

" } }, - "documentation":"

Defines a binary column statistics data.

" + "documentation":"

Defines column statistics supported for bit sequence data values.

" }, "Blob":{"type":"blob"}, "Boolean":{"type":"boolean"}, @@ -2811,18 +2811,18 @@ "members":{ "NumberOfTrues":{ "shape":"NonNegativeLong", - "documentation":"

Number of true value.

" + "documentation":"

The number of true values in the column.

" }, "NumberOfFalses":{ "shape":"NonNegativeLong", - "documentation":"

Number of false value.

" + "documentation":"

The number of false values in the column.

" }, "NumberOfNulls":{ "shape":"NonNegativeLong", - "documentation":"

Number of nulls.

" + "documentation":"

The number of null values in the column.

" } }, - "documentation":"

Defines a boolean column statistics.

" + "documentation":"

Defines column statistics supported for Boolean data columns.

" }, "BooleanNullable":{"type":"boolean"}, "BooleanValue":{"type":"boolean"}, @@ -3112,14 +3112,14 @@ "members":{ "ColumnName":{ "shape":"NameString", - "documentation":"

The name of the column.

" + "documentation":"

The name of the column that failed.

" }, "Error":{ "shape":"ErrorDetail", - "documentation":"

The error message occurred during operation.

" + "documentation":"

An error message with the reason for the failure of an operation.

" } }, - "documentation":"

Defines a column containing error.

" + "documentation":"

Encapsulates a column name that failed and the reason for failure.

" }, "ColumnErrors":{ "type":"list", @@ -3146,22 +3146,22 @@ "members":{ "ColumnName":{ "shape":"NameString", - "documentation":"

The name of the column.

" + "documentation":"

Name of column which statistics belong to.

" }, "ColumnType":{ "shape":"TypeString", - "documentation":"

The type of the column.

" + "documentation":"

The data type of the column.

" }, "AnalyzedTime":{ "shape":"Timestamp", - "documentation":"

The analyzed time of the column statistics.

" + "documentation":"

The timestamp of when column statistics were generated.

" }, "StatisticsData":{ "shape":"ColumnStatisticsData", - "documentation":"

The statistics of the column.

" + "documentation":"

A ColumnStatisticData object that contains the statistics data values.

" } }, - "documentation":"

Defines a column statistics.

" + "documentation":"

Represents the generated column-level statistics for a table or partition.

" }, "ColumnStatisticsData":{ "type":"structure", @@ -3169,52 +3169,52 @@ "members":{ "Type":{ "shape":"ColumnStatisticsType", - "documentation":"

The name of the column.

" + "documentation":"

The type of column statistics data.

" }, "BooleanColumnStatisticsData":{ "shape":"BooleanColumnStatisticsData", - "documentation":"

Boolean Column Statistics Data.

" + "documentation":"

Boolean column statistics data.

" }, "DateColumnStatisticsData":{ "shape":"DateColumnStatisticsData", - "documentation":"

Date Column Statistics Data.

" + "documentation":"

Date column statistics data.

" }, "DecimalColumnStatisticsData":{ "shape":"DecimalColumnStatisticsData", - "documentation":"

Decimal Column Statistics Data.

" + "documentation":"

Decimal column statistics data.

" }, "DoubleColumnStatisticsData":{ "shape":"DoubleColumnStatisticsData", - "documentation":"

Double Column Statistics Data.

" + "documentation":"

Double column statistics data.

" }, "LongColumnStatisticsData":{ "shape":"LongColumnStatisticsData", - "documentation":"

Long Column Statistics Data.

" + "documentation":"

Long column statistics data.

" }, "StringColumnStatisticsData":{ "shape":"StringColumnStatisticsData", - "documentation":"

String Column Statistics Data.

" + "documentation":"

String column statistics data.

" }, "BinaryColumnStatisticsData":{ "shape":"BinaryColumnStatisticsData", - "documentation":"

Binary Column Statistics Data.

" + "documentation":"

Binary column statistics data.

" } }, - "documentation":"

Defines a column statistics data.

" + "documentation":"

Contains the individual types of column statistics data. Only one data object should be set and indicated by the Type attribute.

" }, "ColumnStatisticsError":{ "type":"structure", "members":{ "ColumnStatistics":{ "shape":"ColumnStatistics", - "documentation":"

The ColumnStatistics of the column.

" + "documentation":"

The ColumnStatistics of the column.

" }, "Error":{ "shape":"ErrorDetail", - "documentation":"

The error message occurred during operation.

" + "documentation":"

An error message with the reason for the failure of an operation.

" } }, - "documentation":"

Defines a column containing error.

" + "documentation":"

Encapsulates a ColumnStatistics object that failed and the reason for failure.

" }, "ColumnStatisticsErrors":{ "type":"list", @@ -4280,6 +4280,10 @@ "Tags":{ "shape":"TagsMap", "documentation":"

The tags to use with this machine learning transform. You may use tags to limit access to the machine learning transform. For more information about tags in AWS Glue, see AWS Tags in AWS Glue in the developer guide.

" + }, + "TransformEncryption":{ + "shape":"TransformEncryption", + "documentation":"

The encryption-at-rest settings of the transform that apply to accessing user data. Machine learning transforms can access user data encrypted in Amazon S3 using KMS.

" } } }, @@ -4764,22 +4768,22 @@ "members":{ "MinimumValue":{ "shape":"Timestamp", - "documentation":"

Minimum value of the column.

" + "documentation":"

The lowest value in the column.

" }, "MaximumValue":{ "shape":"Timestamp", - "documentation":"

Maximum value of the column.

" + "documentation":"

The highest value in the column.

" }, "NumberOfNulls":{ "shape":"NonNegativeLong", - "documentation":"

Number of nulls.

" + "documentation":"

The number of null values in the column.

" }, "NumberOfDistinctValues":{ "shape":"NonNegativeLong", - "documentation":"

Number of distinct values.

" + "documentation":"

The number of distinct values in a column.

" } }, - "documentation":"

Defines a date column statistics data.

" + "documentation":"

Defines column statistics supported for timestamp data columns.

" }, "DecimalColumnStatisticsData":{ "type":"structure", @@ -4790,22 +4794,22 @@ "members":{ "MinimumValue":{ "shape":"DecimalNumber", - "documentation":"

Minimum value of the column.

" + "documentation":"

The lowest value in the column.

" }, "MaximumValue":{ "shape":"DecimalNumber", - "documentation":"

Maximum value of the column.

" + "documentation":"

The highest value in the column.

" }, "NumberOfNulls":{ "shape":"NonNegativeLong", - "documentation":"

Number of nulls.

" + "documentation":"

The number of null values in the column.

" }, "NumberOfDistinctValues":{ "shape":"NonNegativeLong", - "documentation":"

Number of distinct values.

" + "documentation":"

The number of distinct values in a column.

" } }, - "documentation":"

Defines a decimal column statistics data.

" + "documentation":"

Defines column statistics supported for fixed-point number data columns.

" }, "DecimalNumber":{ "type":"structure", @@ -5368,22 +5372,22 @@ "members":{ "MinimumValue":{ "shape":"Double", - "documentation":"

Minimum value of the column.

" + "documentation":"

The lowest value in the column.

" }, "MaximumValue":{ "shape":"Double", - "documentation":"

Maximum value of the column.

" + "documentation":"

The highest value in the column.

" }, "NumberOfNulls":{ "shape":"NonNegativeLong", - "documentation":"

Number of nulls.

" + "documentation":"

The number of null values in the column.

" }, "NumberOfDistinctValues":{ "shape":"NonNegativeLong", - "documentation":"

Number of distinct values.

" + "documentation":"

The number of distinct values in a column.

" } }, - "documentation":"

Defines a double column statistics data.

" + "documentation":"

Defines column statistics supported for floating-point number data columns.

" }, "DynamoDBTarget":{ "type":"structure", @@ -6393,6 +6397,10 @@ "MaxRetries":{ "shape":"NullableInteger", "documentation":"

The maximum number of times to retry a task for this transform after a task run fails.

" + }, + "TransformEncryption":{ + "shape":"TransformEncryption", + "documentation":"

The encryption-at-rest settings of the transform that apply to accessing user data. Machine learning transforms can access user data encrypted in Amazon S3 using KMS.

" } } }, @@ -8113,22 +8121,22 @@ "members":{ "MinimumValue":{ "shape":"Long", - "documentation":"

Minimum value of the column.

" + "documentation":"

The lowest value in the column.

" }, "MaximumValue":{ "shape":"Long", - "documentation":"

Maximum value of the column.

" + "documentation":"

The highest value in the column.

" }, "NumberOfNulls":{ "shape":"NonNegativeLong", - "documentation":"

Number of nulls.

" + "documentation":"

The number of null values in the column.

" }, "NumberOfDistinctValues":{ "shape":"NonNegativeLong", - "documentation":"

Number of distinct values.

" + "documentation":"

The number of distinct values in a column.

" } }, - "documentation":"

Defines a long column statistics data.

" + "documentation":"

Defines column statistics supported for integer data columns.

" }, "MLTransform":{ "type":"structure", @@ -8204,6 +8212,10 @@ "MaxRetries":{ "shape":"NullableInteger", "documentation":"

The maximum number of times to retry after an MLTaskRun of the machine learning transform fails.

" + }, + "TransformEncryption":{ + "shape":"TransformEncryption", + "documentation":"

The encryption-at-rest settings of the transform that apply to accessing user data. Machine learning transforms can access user data encrypted in Amazon S3 using KMS.

" } }, "documentation":"

A structure for a machine learning transform.

" @@ -8219,6 +8231,28 @@ "documentation":"

The machine learning transform is not ready to run.

", "exception":true }, + "MLUserDataEncryption":{ + "type":"structure", + "required":["MlUserDataEncryptionMode"], + "members":{ + "MlUserDataEncryptionMode":{ + "shape":"MLUserDataEncryptionModeString", + "documentation":"

The encryption mode applied to user data. Valid values are:

  • DISABLED: encryption is disabled

  • SSEKMS: use of server-side encryption with AWS Key Management Service (SSE-KMS) for user data stored in Amazon S3.

" + }, + "KmsKeyId":{ + "shape":"NameString", + "documentation":"

The ID for the customer-provided KMS key.

" + } + }, + "documentation":"

The encryption-at-rest settings of the transform that apply to accessing user data.

" + }, + "MLUserDataEncryptionModeString":{ + "type":"string", + "enum":[ + "DISABLED", + "SSE-KMS" + ] + }, "MapValue":{ "type":"map", "key":{"shape":"GenericString"}, @@ -9633,22 +9667,22 @@ "members":{ "MaximumLength":{ "shape":"NonNegativeLong", - "documentation":"

Maximum value of the column.

" + "documentation":"

The size of the longest string in the column.

" }, "AverageLength":{ "shape":"NonNegativeDouble", - "documentation":"

Average value of the column.

" + "documentation":"

The average string length in the column.

" }, "NumberOfNulls":{ "shape":"NonNegativeLong", - "documentation":"

Number of nulls.

" + "documentation":"

The number of null values in the column.

" }, "NumberOfDistinctValues":{ "shape":"NonNegativeLong", - "documentation":"

Number of distinct values.

" + "documentation":"

The number of distinct values in a column.

" } }, - "documentation":"

Defines a string column statistics data.

" + "documentation":"

Defines column statistics supported for character sequence data values.

" }, "StringList":{ "type":"list", @@ -10086,6 +10120,20 @@ "max":10, "min":1 }, + "TransformEncryption":{ + "type":"structure", + "members":{ + "MlUserDataEncryption":{ + "shape":"MLUserDataEncryption", + "documentation":"

An MLUserDataEncryption object containing the encryption mode and customer-provided KMS key ID.

" + }, + "TaskRunSecurityConfigurationName":{ + "shape":"NameString", + "documentation":"

The name of the security configuration.

" + } + }, + "documentation":"

The encryption-at-rest settings of the transform that apply to accessing user data. Machine learning transforms can access user data encrypted in Amazon S3 using KMS.

Additionally, imported labels and trained transforms can now be encrypted using a customer provided KMS key.

" + }, "TransformFilterCriteria":{ "type":"structure", "members":{ @@ -10142,7 +10190,7 @@ "members":{ "TransformType":{ "shape":"TransformType", - "documentation":"

The type of machine learning transform.

For information about the types of machine learning transforms, see Creating Machine Learning Transforms.

" + "documentation":"

The type of machine learning transform.

For information about the types of machine learning transforms, see Creating Machine Learning Transforms.

" }, "FindMatchesParameters":{ "shape":"FindMatchesParameters", From c1de0ebc5b7896ae0ed0f6c6124812f86f9f0f81 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 27 Oct 2020 18:09:54 +0000 Subject: [PATCH 077/339] Updated endpoints.json. --- .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json | 6 ++++++ .../amazon/awssdk/regions/internal/region/endpoints.json | 2 ++ 2 files changed, 8 insertions(+) create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json new file mode 100644 index 000000000000..ae3f84993e9e --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." +} diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json index 8fcd3e500f1e..62f011400bb9 100644 --- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json +++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json @@ -727,6 +727,7 @@ "protocols" : [ "http", "https" ] }, "endpoints" : { + "af-south-1" : { }, "ap-east-1" : { }, "ap-northeast-1" : { }, "ap-northeast-2" : { }, @@ -736,6 +737,7 @@ "ca-central-1" : { }, "eu-central-1" : { }, "eu-north-1" : { }, + "eu-south-1" : { }, "eu-west-1" : { }, "eu-west-2" : { }, "eu-west-3" : { }, From 312aa3e5eb63bc9a94df1677024e96ce61d855db Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 27 Oct 2020 18:10:26 +0000 Subject: [PATCH 078/339] Release 2.15.16. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.16.json | 18 ++++++++++++++++++ .../next-release/feature-AWSGlue-6b0225e.json | 6 ------ .../feature-AWSSDKforJavav2-bedacd4.json | 6 ------ CHANGELOG.md | 9 +++++++++ README.md | 8 ++++---- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- .../serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 285 files changed, 311 insertions(+), 296 deletions(-) create mode 100644 .changes/2.15.16.json delete mode 100644 .changes/next-release/feature-AWSGlue-6b0225e.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json diff --git a/.changes/2.15.16.json b/.changes/2.15.16.json new file mode 100644 index 000000000000..11bf666c2268 --- /dev/null +++ b/.changes/2.15.16.json @@ -0,0 +1,18 @@ +{ + "version": "2.15.16", + "date": "2020-10-27", + "entries": [ + { + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." + }, + { + "type": "feature", + "category": "AWS Glue", + "contributor": "", + "description": "AWS Glue machine learning transforms now support encryption-at-rest for labels and trained models." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSGlue-6b0225e.json b/.changes/next-release/feature-AWSGlue-6b0225e.json deleted file mode 100644 index 02b863e09cc8..000000000000 --- a/.changes/next-release/feature-AWSGlue-6b0225e.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Glue", - "contributor": "", - "description": "AWS Glue machine learning transforms now support encryption-at-rest for labels and trained models." -} diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json deleted file mode 100644 index ae3f84993e9e..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS SDK for Java v2", - "contributor": "", - "description": "Updated service endpoint metadata." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index e3e5c3261de6..4eee97e3ac05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# __2.15.16__ __2020-10-27__ +## __AWS Glue__ + - ### Features + - AWS Glue machine learning transforms now support encryption-at-rest for labels and trained models. + +## __AWS SDK for Java v2__ + - ### Features + - Updated service endpoint metadata. + # __2.15.15__ __2020-10-26__ ## __AWS SDK for Java v2__ - ### Features diff --git a/README.md b/README.md index ccf466a6f79f..e35f4729efbb 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.15 + 2.15.16 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.15 + 2.15.16 software.amazon.awssdk s3 - 2.15.15 + 2.15.16 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.15 + 2.15.16 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index f6fa0e1beff2..074d6600af49 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 42b91bc3ebf5..00b00ca3f083 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index a23e598b5768..8054f46edd42 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.15.16-SNAPSHOT + 2.15.16 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index f2c785f47305..9e09f8420b87 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 871a31ce6706..6890079407bf 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.16-SNAPSHOT + 2.15.16 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 27e21f857011..4ef48983c167 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.16-SNAPSHOT + 2.15.16 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 61ebac20e06a..4210fae968a3 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.15.16-SNAPSHOT + 2.15.16 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 056cedbb6b64..9792c6e33ef9 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.16-SNAPSHOT + 2.15.16 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index c0204aea9b75..5c1128fb8b3f 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.15.16-SNAPSHOT + 2.15.16 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index f2e443e9adf6..9fc1a8a19c4f 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.16-SNAPSHOT + 2.15.16 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 6318c85e840f..853779c74868 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 91f7550bde27..13e08c60bf95 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index e3e5438aef99..73a01509f865 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.16-SNAPSHOT + 2.15.16 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 3fe31e18a015..d96f86c02be6 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.16-SNAPSHOT + 2.15.16 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 18599206dbea..49340ec0d0b6 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 559da3606785..1ffb9316fd84 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index f4c3fedc4af8..e019604e7eaa 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.16-SNAPSHOT + 2.15.16 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 943c102bfddb..7d2df2b645ec 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.15.16-SNAPSHOT + 2.15.16 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index a90005b08430..2e5b88f9f5be 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 0f1bb14f9b36..60a3a693e4f3 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.15.16-SNAPSHOT + 2.15.16 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index dc4db547fac3..9fe05b4d0d88 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.15.16-SNAPSHOT + 2.15.16 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 1198cde26bf0..9afba7ea9c75 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.15.16-SNAPSHOT + 2.15.16 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index ecd05259336b..6209a5aefaae 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index bb7b8fca8b38..973f88b30136 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 5feb5dfcb41c..4508e6b094ba 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.16-SNAPSHOT + 2.15.16 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index b96bcd746cb4..4dba16e3cabb 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.16-SNAPSHOT + 2.15.16 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index a8fd8eda2071..e1774b1767c1 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.15.16-SNAPSHOT + 2.15.16 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 c01827a64d0c..85cbf33842b9 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.15.16-SNAPSHOT + 2.15.16 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 2babb0a44b10..bbf86e7a0ef5 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.15.16-SNAPSHOT + 2.15.16 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 4c8c2e5428d0..373a5a167de8 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.15.16-SNAPSHOT + 2.15.16 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index c2804523736b..bb2a4cf4f21a 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 9e26728d4bfd..6d585537e685 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.15.16-SNAPSHOT + 2.15.16 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 614ab53dac76..793fb7e89650 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.15.16-SNAPSHOT + 2.15.16 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 54decbbfe463..0378f9b66762 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.16-SNAPSHOT + 2.15.16 metric-publishers diff --git a/pom.xml b/pom.xml index e0264d002887..75be66f9aaf5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.16-SNAPSHOT + 2.15.16 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 492f4134193a..f51b999cd853 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.16-SNAPSHOT + 2.15.16 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 4d8da567c1aa..3cb77099ed42 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.15.16-SNAPSHOT + 2.15.16 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index d9193a5fd9b0..4d40b3f0cd50 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.16-SNAPSHOT + 2.15.16 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 23c022de5327..c6d8f432fff8 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 54f2a49f3e3f..907f14889dc7 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index f070acec5ce4..42f374ee8215 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 4d7cdb13806b..3392ec846630 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index f5ab7a85b40f..9c0439e235f9 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 9e88ef6905bf..039767a41550 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 070038d63353..ff99ad71fc2a 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 3f14f249df98..afc9de8a8b11 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 35939b33af42..59d416fd8dc6 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 8aded43a4ab0..cb679f54e92f 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index e54909c3a770..4d650279b7f3 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 0e6e4666abc6..9f3759b28d0e 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 419b9e163b61..8a4dfeb50851 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index f8f536d515cf..e6e05d8fd627 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index faf2c17577c1..bd30bbcfc9e4 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index c9b72868ba51..4b659a294a44 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 49acdc5ef944..8d7a09843171 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 494dfd9cbab1..e24c24d140c2 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index e6be2a3d5db9..c36b9e6cfb27 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 026f79446bd5..45204439dac9 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 6d367c3f7126..066cb8e5ccbd 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 441f49d300e9..2f6c94a962a3 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index c5590088b8e3..12fb3c15c1d4 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 952bd7cd4fee..62e0d2d38a5a 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 3666685f9f9a..416c384f7906 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 1451e02bbe53..629d1b903d2d 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 1568b9763100..71cc89be556b 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index d168d70cd928..903c82d054ce 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 82b3e5e3894f..bfde6f842275 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index bbc81a3b47da..f1ad5c734410 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index f04f762f3789..5eaa8ea1e792 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 2018e0c20837..35f1579e3757 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 83bcbae7bee3..f8b05573ee29 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 49c19a6a66ec..81479bdc88d5 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index fceb9ed63894..a6c6be1e81fe 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 824c01ababeb..939fb71b7872 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index af86bd2f1733..033c1d5acdff 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 54a66c1bae9e..fbc9e3a6e02c 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index d83f5fe951c0..d948faed3f30 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index e80bbf85e104..925161e870e1 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 98b3f0198006..f04fcf6bfb25 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 1d74d56ed4af..8f957b2317cf 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index ff3c8201368d..ad537af1de0e 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index a42455b627e8..59a69713e996 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 7eaa3b7e1b13..916586be8654 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 8dcbe94c1a0b..5cd1487c0e7b 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 0c5bdad549a6..e93ad2f7f0a3 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index d7816d12442e..76ff78b6e7fb 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index c35894db69bb..29cc2fe7ada1 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 85b4b287bf76..00827179b4dd 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 6cfec7e7e441..19105805a4ce 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index d7a1a8c2713f..164364445311 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 1c07617e73e5..5b1c9cb57c17 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 0e8d8af32c99..a703772ff893 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 680adb6d5aaa..15f0297c6963 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 47c4ad5e2c4f..4ea48fa0028c 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 6a66f88f83a7..eb78dc507a10 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 73a96e662ab9..3cee6bb24ef1 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 22b6a6610abf..30ef9f0ce654 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 02803a00ea04..c1f381c27d7b 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index f28e64bf6e54..a88c1a828339 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 98d7add1e084..b7eae018a83e 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 2cd932efd878..7561cb2429f9 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 3cdb2859123f..8be1381129c1 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index c60f4fdcce2d..f054522cbae7 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index c73a64632836..7565e386c70a 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 404fed6b5592..aa113a526cfb 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 52849ec4d464..7e64b959622f 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 869efd5064a5..aaddba630f02 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index a94a2908b5ad..a3fad8549bd6 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 6a5eff798e17..89bd26ec3268 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 3d5755187f66..6433e7acf583 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index fa6b226dc8f5..a6b36f063a8d 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 3953fef3453d..94091e47746b 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index c0c04344a91b..2bba4a91ab95 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 7c407c373251..0b36cb9b8259 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index bb36796b446d..0d9194fb51c8 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 031030b92078..fbec3e69e37c 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 130678c7ae3b..f23f1bb12ebe 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 9d3636892701..8079078fadcf 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index f69de12f2e9f..39e372eddbf3 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 6fb4e8ccdfd2..c509d2c6a1aa 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index a580a2385da4..2db4d0246db9 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 168e1c4391bf..1ce39b72f1d9 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index bdb8be3781c7..c3ab14be928b 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 82534045b19f..caf31426d5df 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 550fad2dade3..6b8d86513a51 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 73b80f5d7951..7ebaca91ee82 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 7f9c7b141477..ebfb49846550 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 8a016d970a75..a7772b2ac59b 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index ac51fec7f23c..aff121464352 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 94efda4e2f3c..a228911b524c 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 99e4a66b38c9..28c130365e32 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index ea86a097382e..34e89c6b8882 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 1be693c65fa3..da2a158de7dd 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 65182084f275..12b3482d0d07 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 7a2e329c57f0..e024a6e95f72 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index ae75a55e99cd..2ee975aa722e 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 4b388477d370..85a51d6f2154 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index f1c60e004f99..c9cb3e051796 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index d5262fdddeda..817f1874b0db 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index f6644d760c86..8448ff2d9bd6 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 5945c2948b6e..b86db1d8fbcd 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index b7d3d91d5d1e..444f0f559143 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index f31d016cf111..93657cbdd4ec 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index d05a10accdb5..9dd32e14a338 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index a28481b5b92f..a3d6d6521296 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 4d86145ee92a..ec95b777e19d 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 4409773200b6..bac03252dee9 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 0c174a8efcc2..3613f1c7cbb3 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 091b6abc7d46..fb2161e95d99 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 3bb680b1c4f9..6623a3a231ec 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index b8892c406f86..42e4d745ded3 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index fd96b1b16667..be615beecc4d 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 81fbe9a92b8e..e849fe70d57e 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 2e6d3bab3ca8..27ccc8be23d5 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 6ebb42df04ed..4e7267cff37c 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index f770f29a099f..799ae605b561 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index ef6309787e42..97b904b5e973 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 5cb1931b360c..2696cb2177dc 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 80e2982c90f7..519963585ae9 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index a99aad772ae9..21d96c65a1c4 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 1d39d3fa6a40..3b3bfb314f83 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index f4434da0f349..13c82465ee8f 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 6eb57b3caf8d..b54b618c14f7 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 6e839b83d538..0007da10441e 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index d5c2eaca9ac4..21f2942631bc 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 1d88209bd137..d1b5c69c4fdf 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 411a3aa78d57..de01debc4483 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index e67639211913..06b0f8b75e8f 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 0342188d33cc..ecece3d35cda 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 826fabf839fb..837900303e19 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index f5eb85de1794..6c10bdbbeaa4 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 8fcb819af67b..a21420c41c25 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 95cd3fa26f63..e3d2597b4b1f 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index c5e42fcc120a..f99475542bb0 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 83e39bb39d16..f22e930dcca5 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index a9bc335906c6..66f815af4246 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index a4d5792a2df6..4c62f39b4c15 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 6b40b347d48b..82bff7fa71c4 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index aae46ee50674..d5cd626c60fa 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index fb1d063d470b..d8338d96b95a 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index ae5310012983..8bb817219e9d 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index eaef4407dfac..052dbf3a5190 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 58775a590ccf..47dd80216cf4 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 79d838fdfd92..65ba8ef7feaa 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index ae1e60dbd719..db8c7cb6ea60 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 434a6e8d30a8..557f56edb28e 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index ad8cdbdd657d..25b9b48b2c9a 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 45075443138d..c6d2a3e6072e 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 4de9dab53c94..af3d9821e3d5 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index ffcae038c53c..ab9d246aeddb 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 479e2c411325..c9de90ae5f69 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 038c754eae33..abd184061b34 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index dbfc2b34d0b0..fc20c21dedf4 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 22c584d3c1f7..789d23d16bf6 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index a880956eef17..f031696fa4ea 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 227b1d7a2690..7cc420da0dc6 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 8ae5aca6e07d..7225f01b4b22 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 3d36f1063d61..762136226577 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index e7bd054212e6..f8e2683f35b1 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 081b8b2e9717..bd2cae0ea5cc 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 7773bedcade3..b8c9f3a7d3d4 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 5c589c496940..214e76721207 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 90f59291d882..6724e59f263a 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 3063f07d0142..83635ea61d9b 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 344cdb393527..df7c849e7375 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 3d18fa54b316..4a12203232f0 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.16-SNAPSHOT + 2.15.16 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 64c7b33cc5b3..44a648ef2fe8 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 5270b9be20a4..75966fe97457 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 9d40118bb981..98f3dfca58d9 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 37493da3f84a..4f7283ea9b84 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index fcdecfeaf4d9..d0b186a24741 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 3f0dee680369..643f8166bd0e 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 6ea1be45cc2c..abfe2228e587 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index dd72b47005c8..f7942ce68cb0 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index cd1554c8c384..4b00b74965f4 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 2ac8566047e8..413e42122e27 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 24e6184910f2..8ee9a12e7866 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index eec1ab5c530c..3e595f9221c2 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 2c33b0fb6185..6962d43ee01e 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index fa7758a25574..f1f7bc28a508 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index bcecbf06f9a0..5baf096a37f3 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 8d366acd41b3..26c718f2cfd9 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 05140cdc3266..8a545e62febf 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 8f8a2537e553..04dc2059228a 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index b54ce55ba13b..6b9ecc040518 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index f08804de314d..88006a64937a 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 80ec3cf30182..e778b0e21ebb 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index f3770fb63dd5..0c3f7f559ff9 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index ea6963e26600..0db7f0275d13 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 1cb82d55124d..97c3756bdefa 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 908ae87fb397..bc70e0eb8df4 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 57764f37cce4..13088a381dc8 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index dd1f1e82b197..a5cb359899b9 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index f5d44a4758b1..415ac61a8b34 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index bc5b60c72b88..a86d323d09ad 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index aa9e369f7c9d..3d00a2151705 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 836f134d8d19..9e55fa077e31 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index f52aab476b86..2aa1a349b0f9 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 0666e9ac7a0a..228a001d6790 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 8d7fe495c9d5..e00f41f11a45 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 11a65b6a2671..c0ae5805ea5e 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 19d427cbfa8c..ba3b9741ad31 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index bac475eff3c3..200b62e8e6ca 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index df68da65bdff..80ddd1382ec6 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index a795a34238e0..354ca9823f66 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 663129dbbe15..bed8c2e0c063 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index b4bf266af51b..c5184c4008cc 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 9ad831c4a20e..0da9a9a4930c 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 830ec0463d0c..a3660d6c715f 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 74d0e3effd71..85dc146ac94a 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 32b711231789..be507822fa4f 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 3eb21237fd17..75662301b894 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 6ebf65cc7e36..9882279ad0bc 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 84c6877f8370..6ab01c0fe194 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 6eea90af8d59..524e8001ac73 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 6b8d3372d41c..8b5ad03b5056 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index bd92d365c1ac..3e2c9212fc42 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 91f2334da0e8..07e60f465c6c 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index af4b55ced92a..20af74528ea1 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index cfc6117b38b8..1211995e0a0f 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 087895184b6c..b03faab1440f 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 50aa3d7a415e..7ae4cc3c3a2d 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 3517a8bcf4d2..b76bce73c174 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index ea0ddee5b400..f8eeeff5f593 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index f03f7c75be17..b9b9ca5d2343 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index c952b3209099..4974684044b8 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 58a3daea9664..c550468a02d1 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index c1a60bb91efa..32ef85bc4d92 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 2c27fbbb4f04..1bd6d37e9062 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16-SNAPSHOT + 2.15.16 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index a68c1fe0b0a2..81524b829905 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.15.16-SNAPSHOT + 2.15.16 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index ddc76ffba4e5..498015c19435 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.15.16-SNAPSHOT + 2.15.16 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 737bb6ea872e..add7d091e149 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.15.16-SNAPSHOT + 2.15.16 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 410662a4a25d..7c46b48466dc 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.15.16-SNAPSHOT + 2.15.16 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index f1a799953e1a..a9f624368658 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.15.16-SNAPSHOT + 2.15.16 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 662bea70bc0a..5736005f8a44 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.16-SNAPSHOT + 2.15.16 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 5446ddd6ed9f..5557a6a3f8d7 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.15.16-SNAPSHOT + 2.15.16 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index f3be172f92c6..80c3ae569e15 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.15.16-SNAPSHOT + 2.15.16 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 97dd035e48ae..7c23c6bf23d8 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.15.16-SNAPSHOT + 2.15.16 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 534d682d9ca3..1f8ca042e7f8 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.15.16-SNAPSHOT + 2.15.16 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 994787df15ba..9777cd9b10e2 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.16-SNAPSHOT + 2.15.16 4.0.0 From 0e349f7c9e28ccb8c551aab402abf78451ae8331 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 27 Oct 2020 18:48:03 +0000 Subject: [PATCH 079/339] Update to next snapshot version: 2.15.17-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 280 files changed, 280 insertions(+), 280 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 074d6600af49..1daa6e34e730 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 00b00ca3f083..c04f1f6e6171 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 8054f46edd42..d1bcefd2420c 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.15.16 + 2.15.17-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 9e09f8420b87..adc58e6918c8 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 6890079407bf..cc2ae372069f 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.16 + 2.15.17-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 4ef48983c167..3ac9212602c4 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.16 + 2.15.17-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 4210fae968a3..c3135b6c4bdf 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.15.16 + 2.15.17-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 9792c6e33ef9..a6fdcddf7595 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.16 + 2.15.17-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 5c1128fb8b3f..b08e2768006d 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.15.16 + 2.15.17-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 9fc1a8a19c4f..422c55d0a6db 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.16 + 2.15.17-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 853779c74868..0daef6d50357 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 13e08c60bf95..376cf7f7bbb8 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 73a01509f865..40fc0b3265f5 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.16 + 2.15.17-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index d96f86c02be6..b382a6be06d2 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.16 + 2.15.17-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 49340ec0d0b6..7a8877150576 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 1ffb9316fd84..413c08d8337e 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index e019604e7eaa..f3900e0644d0 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.16 + 2.15.17-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 7d2df2b645ec..bef539b44c78 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.15.16 + 2.15.17-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 2e5b88f9f5be..296c6146c506 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 60a3a693e4f3..b7b7877b2966 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.15.16 + 2.15.17-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 9fe05b4d0d88..0a075024bb64 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.15.16 + 2.15.17-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 9afba7ea9c75..d36d3cf1e723 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.15.16 + 2.15.17-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 6209a5aefaae..39a68b427347 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 973f88b30136..0bf8dc9a6e77 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 4508e6b094ba..4cf55e8c353c 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.16 + 2.15.17-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 4dba16e3cabb..5e87d286f8f8 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.16 + 2.15.17-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index e1774b1767c1..d6b1a8df07bc 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.15.16 + 2.15.17-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index 85cbf33842b9..1a350123a9d1 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.15.16 + 2.15.17-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index bbf86e7a0ef5..2023726699e2 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.15.16 + 2.15.17-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 373a5a167de8..286db177f6db 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.15.16 + 2.15.17-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index bb2a4cf4f21a..6c2053bfd9a8 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 6d585537e685..9496be8422e0 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.15.16 + 2.15.17-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 793fb7e89650..8192503c38c6 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.15.16 + 2.15.17-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 0378f9b66762..3f39bc2bafa3 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.16 + 2.15.17-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 75be66f9aaf5..6fdecbc3b34c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.16 + 2.15.17-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index f51b999cd853..43a10e35eb8e 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.16 + 2.15.17-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 3cb77099ed42..3311f30c3883 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.15.16 + 2.15.17-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 4d40b3f0cd50..25b1de9062cf 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.16 + 2.15.17-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index c6d8f432fff8..a23230aca41a 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 907f14889dc7..01b16482364f 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 42f374ee8215..5fd742a63f34 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 3392ec846630..df84b5edf79e 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 9c0439e235f9..a819f4a741be 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 039767a41550..145e38fe972d 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index ff99ad71fc2a..8934408dec47 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index afc9de8a8b11..e0b3361076b4 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 59d416fd8dc6..b46dad13d5a1 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index cb679f54e92f..9173c95b4e8b 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 4d650279b7f3..b0e677a71c68 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 9f3759b28d0e..368f48a73487 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 8a4dfeb50851..15ef5e4ddaf3 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index e6e05d8fd627..66bbcfa9260e 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index bd30bbcfc9e4..b1f9f426e2db 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 4b659a294a44..df17940428b5 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 8d7a09843171..7f1f2b5b7954 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index e24c24d140c2..be21e4cb72e1 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index c36b9e6cfb27..2ca82d3da2b2 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 45204439dac9..20be502db108 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 066cb8e5ccbd..740e754993fc 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 2f6c94a962a3..7ba14846e131 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 12fb3c15c1d4..218f4a7a11b1 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 62e0d2d38a5a..e133ea3bc32c 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 416c384f7906..3d49dae29284 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 629d1b903d2d..438f87106689 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 71cc89be556b..47e05d851307 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 903c82d054ce..2044d088cdaa 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index bfde6f842275..cc8cb6169589 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index f1ad5c734410..9354cef6cbf9 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 5eaa8ea1e792..932a8412b07e 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 35f1579e3757..fd4939a501d6 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index f8b05573ee29..adc81302a18a 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 81479bdc88d5..34798179c15b 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index a6c6be1e81fe..2ec3d5b8343d 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 939fb71b7872..79505438d3b9 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 033c1d5acdff..93b184a2be87 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index fbc9e3a6e02c..e141bb8b9044 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index d948faed3f30..e1aa82cedc34 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 925161e870e1..fbaee3c75605 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index f04fcf6bfb25..e5ae1204b6bd 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 8f957b2317cf..0e5f6daf47a2 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index ad537af1de0e..a93b1e03422a 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 59a69713e996..83414cf724ae 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 916586be8654..82b94a0fd923 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 5cd1487c0e7b..972f1d15d730 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index e93ad2f7f0a3..bd7d2e9f26a4 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 76ff78b6e7fb..153570bad14a 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 29cc2fe7ada1..12f79d501a41 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 00827179b4dd..3e6f405199ed 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 19105805a4ce..a4978d2b4bed 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 164364445311..34e28ac0c332 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 5b1c9cb57c17..aa2a71ab047f 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index a703772ff893..a9220798706d 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 15f0297c6963..b457bd5cde4c 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 4ea48fa0028c..bac6cf1e6860 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index eb78dc507a10..a32b42d04b02 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 3cee6bb24ef1..7b3f6daf943c 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 30ef9f0ce654..e60f9331ce74 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index c1f381c27d7b..4f45d4c81445 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index a88c1a828339..bee72f92ca93 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index b7eae018a83e..9176d1a158a5 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 7561cb2429f9..c271697baf17 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 8be1381129c1..1bf0b96af3d3 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index f054522cbae7..bc6fbe6a7f18 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 7565e386c70a..e7759910c962 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index aa113a526cfb..95522ee4d4fd 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 7e64b959622f..b2519dd03c94 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index aaddba630f02..ac50907ee503 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index a3fad8549bd6..56274cefcd38 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 89bd26ec3268..dcd53e43740e 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 6433e7acf583..13a8d1e477b8 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index a6b36f063a8d..823982700bb5 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 94091e47746b..c0197bbaa734 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 2bba4a91ab95..20ea32fb854f 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 0b36cb9b8259..f44819ed3305 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 0d9194fb51c8..d53585142d8e 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index fbec3e69e37c..e82207f33630 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index f23f1bb12ebe..07d7df294ffc 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 8079078fadcf..f12571222f8d 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 39e372eddbf3..ee3b0fac8823 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index c509d2c6a1aa..238edc53a54a 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 2db4d0246db9..db92a8c55cc4 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 1ce39b72f1d9..7ab8647e4afd 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index c3ab14be928b..1e6d6e1df855 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index caf31426d5df..e22633712a32 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 6b8d86513a51..b80725bb8815 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 7ebaca91ee82..506ea8e0692e 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index ebfb49846550..3d8d0e232d92 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index a7772b2ac59b..399a2ad78c78 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index aff121464352..3d2397ef8840 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index a228911b524c..6752eff24755 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 28c130365e32..cdfcbe4b4d31 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 34e89c6b8882..15fc812d06be 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index da2a158de7dd..2568025cade6 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 12b3482d0d07..56b74671ca07 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index e024a6e95f72..6e93840cbcea 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 2ee975aa722e..d82b8f521f07 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 85a51d6f2154..53bce57b0251 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index c9cb3e051796..23ee0c427fd8 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 817f1874b0db..c76eb779c1e8 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 8448ff2d9bd6..40325df89d77 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index b86db1d8fbcd..fee55e393303 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 444f0f559143..3087b08e3c7a 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 93657cbdd4ec..159d21d6d25b 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 9dd32e14a338..636de1ba0f70 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index a3d6d6521296..bdd4ff36e966 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index ec95b777e19d..6e1bb6afb770 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index bac03252dee9..fbb3cac6f814 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 3613f1c7cbb3..a4e027e34db1 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index fb2161e95d99..142ed0e7702b 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 6623a3a231ec..11bfd55bf4b3 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 42e4d745ded3..310b51178d49 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index be615beecc4d..0f8e4dc2971d 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index e849fe70d57e..4be40d47a7fd 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 27ccc8be23d5..cbca222fda5f 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 4e7267cff37c..6bca9f23f259 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 799ae605b561..a9e352527657 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 97b904b5e973..dab4367957f9 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 2696cb2177dc..bb07881c2892 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 519963585ae9..86c943e5303a 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 21d96c65a1c4..f0c95d3ffdc1 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 3b3bfb314f83..4fa25fd0a143 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 13c82465ee8f..5b6daeb2e318 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index b54b618c14f7..e0e984ce0d90 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 0007da10441e..c06a209c2398 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 21f2942631bc..560a013b039c 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index d1b5c69c4fdf..fc3007b7cd5c 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index de01debc4483..5502f8741e65 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 06b0f8b75e8f..44c3f662b2b3 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index ecece3d35cda..fe6f19e72ed0 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 837900303e19..dae8af811fb2 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 6c10bdbbeaa4..d03f5f37ad0e 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index a21420c41c25..62664f4c52bc 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index e3d2597b4b1f..bd4f9b79896e 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index f99475542bb0..63b984786a50 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index f22e930dcca5..20621dbf6530 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 66f815af4246..8d7df5392ab1 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 4c62f39b4c15..635b72742b38 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 82bff7fa71c4..d363221eb588 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index d5cd626c60fa..e5bd739c83da 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index d8338d96b95a..05cf058bff79 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 8bb817219e9d..4e9399b2330e 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 052dbf3a5190..ea06b2a956aa 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 47dd80216cf4..71365f43af28 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 65ba8ef7feaa..af1fc0ead4be 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index db8c7cb6ea60..c6923809ffb3 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 557f56edb28e..afa093b8a55f 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 25b9b48b2c9a..d5e186cfe92a 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index c6d2a3e6072e..c2567eeb3abd 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index af3d9821e3d5..a3605cd97a3a 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index ab9d246aeddb..270ec17d1d19 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index c9de90ae5f69..d41c17cd3066 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index abd184061b34..34ddca270788 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index fc20c21dedf4..b6bb2893c1db 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 789d23d16bf6..7bc6c9024f6d 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index f031696fa4ea..d2665ca4962c 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 7cc420da0dc6..0932b8a2f974 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 7225f01b4b22..5793963e71e5 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 762136226577..dee53bcaed17 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index f8e2683f35b1..69cfa90b152d 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index bd2cae0ea5cc..859cca41a153 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index b8c9f3a7d3d4..59596e7596cc 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 214e76721207..24702925ca0c 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 6724e59f263a..3b443ae076bf 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 83635ea61d9b..727b53b2c8d3 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index df7c849e7375..5eaa306e7ca4 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 4a12203232f0..db0829ff4342 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.16 + 2.15.17-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 44a648ef2fe8..44c0d587fbd3 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 75966fe97457..974345288117 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 98f3dfca58d9..684c2a44a069 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 4f7283ea9b84..6d93bc85285e 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index d0b186a24741..5b1b24666d50 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 643f8166bd0e..a15f7228295b 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index abfe2228e587..4fe71b40c236 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index f7942ce68cb0..1f15544407a9 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 4b00b74965f4..10d32eb98fdc 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 413e42122e27..d3b1e711b288 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 8ee9a12e7866..623d6716d616 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 3e595f9221c2..d30a42d346c9 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 6962d43ee01e..929d4ea6cea6 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index f1f7bc28a508..7e881624dd42 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 5baf096a37f3..baf181b992bd 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 26c718f2cfd9..abc039ac507f 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 8a545e62febf..f99fd79a63b2 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 04dc2059228a..675de6c6f3e0 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 6b9ecc040518..97a513027587 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 88006a64937a..b8ea97380a51 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index e778b0e21ebb..9e96da548fd7 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 0c3f7f559ff9..053b255aaa4c 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 0db7f0275d13..836bf2db00f5 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 97c3756bdefa..e46fc1865502 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index bc70e0eb8df4..b39515486227 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 13088a381dc8..7506ef03233a 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index a5cb359899b9..2374cf6fa5bc 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 415ac61a8b34..940f016f08e3 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index a86d323d09ad..ad9ccba04f5f 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 3d00a2151705..19d0cfaf7c37 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 9e55fa077e31..48a070d350b9 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 2aa1a349b0f9..202f46684f62 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 228a001d6790..c17c2db5fe70 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index e00f41f11a45..1dff0a11d683 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index c0ae5805ea5e..cf7a1ca0dc25 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index ba3b9741ad31..25ec0f68b572 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 200b62e8e6ca..e7132262dd8f 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 80ddd1382ec6..abd75c177056 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 354ca9823f66..919ada055390 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index bed8c2e0c063..90de3bebc74b 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index c5184c4008cc..3491a1594fd2 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 0da9a9a4930c..c89023c37fe5 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index a3660d6c715f..c0cbafd4416d 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 85dc146ac94a..3a979fcfd596 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index be507822fa4f..95b0320f2639 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 75662301b894..76744a8367da 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 9882279ad0bc..19589fafb3c4 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 6ab01c0fe194..4a7c32d66d77 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 524e8001ac73..a7f7c003c1c8 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 8b5ad03b5056..195e3bfe9ce5 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 3e2c9212fc42..02edf0fa145d 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 07e60f465c6c..18271aa6ef66 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 20af74528ea1..3508cd1baf66 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 1211995e0a0f..a5a2689957ba 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index b03faab1440f..9d9cb5b828fd 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 7ae4cc3c3a2d..a91715387392 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index b76bce73c174..1af0fd9175ff 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index f8eeeff5f593..793b12fd452f 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index b9b9ca5d2343..eaa4ca779398 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 4974684044b8..d5c0db62236e 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index c550468a02d1..ab6ca16869c0 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 32ef85bc4d92..158d555c5025 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 1bd6d37e9062..3cf465cd2a83 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.16 + 2.15.17-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 81524b829905..5323159dffc1 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.15.16 + 2.15.17-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 498015c19435..ba37cb9c06b7 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.15.16 + 2.15.17-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index add7d091e149..52e5f81bc15d 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.15.16 + 2.15.17-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 7c46b48466dc..7c271fd016fd 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.15.16 + 2.15.17-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index a9f624368658..f64194488b43 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.15.16 + 2.15.17-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 5736005f8a44..5d260747b198 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.16 + 2.15.17-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 5557a6a3f8d7..ed63dbe48881 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.15.16 + 2.15.17-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 80c3ae569e15..d37546e29b6e 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.15.16 + 2.15.17-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 7c23c6bf23d8..bdc00688d6a2 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.15.16 + 2.15.17-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 1f8ca042e7f8..ac05b45a39b5 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.15.16 + 2.15.17-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 9777cd9b10e2..cfb879bcb209 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.16 + 2.15.17-SNAPSHOT 4.0.0 From af0e67c7b160c08b48e4f760a31ee4e1cf2f9ede Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Tue, 27 Oct 2020 11:13:18 -0700 Subject: [PATCH 080/339] Removed dead code in codegen. --- .../awssdk/codegen/AddCustomAuthorizers.java | 40 ------------------- .../amazon/awssdk/codegen/AddMetadata.java | 32 ++------------- .../amazon/awssdk/codegen/CodeGenerator.java | 9 +---- .../codegen/IntermediateModelBuilder.java | 35 +++------------- .../model/intermediate/IntermediateModel.java | 24 ++--------- .../codegen/model/intermediate/Metadata.java | 2 - .../codegen/model/intermediate/Protocol.java | 1 - .../codegen/model/service/Operation.java | 12 +----- .../codegen/naming/DefaultNamingStrategy.java | 12 +----- .../awssdk/codegen/naming/NamingStrategy.java | 6 --- .../codegen/poet/client/AsyncClientClass.java | 5 +-- .../codegen/poet/client/SyncClientClass.java | 2 - .../poet/transform/MarshallerSpec.java | 2 - .../naming/DefaultNamingStrategyTest.java | 6 --- 14 files changed, 18 insertions(+), 170 deletions(-) delete mode 100644 codegen/src/main/java/software/amazon/awssdk/codegen/AddCustomAuthorizers.java diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/AddCustomAuthorizers.java b/codegen/src/main/java/software/amazon/awssdk/codegen/AddCustomAuthorizers.java deleted file mode 100644 index 011d5bb88dcd..000000000000 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/AddCustomAuthorizers.java +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"). - * You may not use this file except in compliance with the License. - * A copy of the License is located at - * - * http://aws.amazon.com/apache2.0 - * - * or in the "license" file accompanying this file. This file is distributed - * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either - * express or implied. See the License for the specific language governing - * permissions and limitations under the License. - */ - -package software.amazon.awssdk.codegen; - -import java.util.Map; -import java.util.stream.Collectors; -import software.amazon.awssdk.codegen.model.intermediate.AuthorizerModel; -import software.amazon.awssdk.codegen.model.service.ServiceModel; -import software.amazon.awssdk.codegen.naming.NamingStrategy; - -public class AddCustomAuthorizers { - private final ServiceModel service; - private final NamingStrategy namingStrategy; - - public AddCustomAuthorizers(ServiceModel service, NamingStrategy namingStrategy) { - this.service = service; - this.namingStrategy = namingStrategy; - } - - public Map constructAuthorizers() { - return service.getAuthorizers().values().stream() - .map(a -> new AuthorizerModel(a.getName(), - namingStrategy.getAuthorizerClassName(a.getName()), a.getTokenLocation(), - a.getTokenName())) - .collect(Collectors.toMap(AuthorizerModel::getName, a -> a)); - } -} diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/AddMetadata.java b/codegen/src/main/java/software/amazon/awssdk/codegen/AddMetadata.java index 0f2bd2ea6627..3dbb1f02aa8c 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/AddMetadata.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/AddMetadata.java @@ -20,7 +20,6 @@ import software.amazon.awssdk.codegen.model.intermediate.Metadata; import software.amazon.awssdk.codegen.model.intermediate.Protocol; import software.amazon.awssdk.codegen.model.service.AuthType; -import software.amazon.awssdk.codegen.model.service.Operation; import software.amazon.awssdk.codegen.model.service.ServiceMetadata; import software.amazon.awssdk.codegen.model.service.ServiceModel; import software.amazon.awssdk.codegen.naming.DefaultNamingStrategy; @@ -38,21 +37,11 @@ private AddMetadata() { public static Metadata constructMetadata(ServiceModel serviceModel, CustomizationConfig customizationConfig) { - Metadata metadata = new Metadata(); NamingStrategy namingStrategy = new DefaultNamingStrategy(serviceModel, customizationConfig); ServiceMetadata serviceMetadata = serviceModel.getMetadata(); - - String serviceName; - String rootPackageName; - - if (serviceMetadata.getProtocol().equals(Protocol.API_GATEWAY.getValue())) { - throw new UnsupportedOperationException("Java SDK V2 doesn't support api-gateway protocol yet"); - } else { - serviceName = namingStrategy.getServiceName(); - rootPackageName = AWS_PACKAGE_PREFIX; - } + String serviceName = namingStrategy.getServiceName(); metadata.withApiVersion(serviceMetadata.getApiVersion()) .withAsyncClient(String.format(Constant.ASYNC_CLIENT_CLASS_NAME_PATTERN, serviceName)) @@ -62,7 +51,7 @@ public static Metadata constructMetadata(ServiceModel serviceModel, .withBaseBuilderInterface(String.format(Constant.BASE_BUILDER_INTERFACE_NAME_PATTERN, serviceName)) .withBaseBuilder(String.format(Constant.BASE_BUILDER_CLASS_NAME_PATTERN, serviceName)) .withDocumentation(serviceModel.getDocumentation()) - .withRootPackageName(rootPackageName) + .withRootPackageName(AWS_PACKAGE_PREFIX) .withClientPackageName(namingStrategy.getClientPackageName(serviceName)) .withModelPackageName(namingStrategy.getModelPackageName(serviceName)) .withTransformPackageName(namingStrategy.getTransformPackageName(serviceName)) @@ -84,13 +73,10 @@ public static Metadata constructMetadata(ServiceModel serviceModel, .withEndpointPrefix(serviceMetadata.getEndpointPrefix()) .withSigningName(serviceMetadata.getSigningName()) .withAuthType(AuthType.fromValue(serviceMetadata.getSignatureVersion())) - .withRequiresApiKey(requiresApiKey(serviceModel)) .withUid(serviceMetadata.getUid()) .withServiceId(serviceMetadata.getServiceId()) - .withSupportsH2(supportsH2(serviceMetadata)); - - String jsonVersion = getJsonVersion(metadata, serviceMetadata); - metadata.setJsonVersion(jsonVersion); + .withSupportsH2(supportsH2(serviceMetadata)) + .withJsonVersion(getJsonVersion(metadata, serviceMetadata)); return metadata; } @@ -107,14 +93,4 @@ private static String getJsonVersion(Metadata metadata, ServiceMetadata serviceM return serviceMetadata.getJsonVersion(); } } - - /** - * If any operation requires an API key we generate a setter on the builder. - * - * @return True if any operation requires an API key. False otherwise. - */ - private static boolean requiresApiKey(ServiceModel serviceModel) { - return serviceModel.getOperations().values().stream() - .anyMatch(Operation::requiresApiKey); - } } diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/CodeGenerator.java b/codegen/src/main/java/software/amazon/awssdk/codegen/CodeGenerator.java index 41317040a59f..f8b12acbf705 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/CodeGenerator.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/CodeGenerator.java @@ -26,7 +26,6 @@ import software.amazon.awssdk.codegen.internal.Jackson; import software.amazon.awssdk.codegen.internal.Utils; import software.amazon.awssdk.codegen.model.intermediate.IntermediateModel; -import software.amazon.awssdk.codegen.model.intermediate.Protocol; public class CodeGenerator { @@ -125,14 +124,8 @@ private void emitCode(IntermediateModel intermediateModel) { } private GeneratorTask createGeneratorTasks(IntermediateModel intermediateModel) { - // For clients built internally, the output directory and source directory are the same. - GeneratorTaskParams params = GeneratorTaskParams.create(intermediateModel, sourcesDirectory, testsDirectory); + return new AwsGeneratorTasks(GeneratorTaskParams.create(intermediateModel, sourcesDirectory, testsDirectory)); - if (params.getModel().getMetadata().getProtocol() == Protocol.API_GATEWAY) { - throw new UnsupportedOperationException("Unsupported protocol: " + Protocol.API_GATEWAY); - } else { - return new AwsGeneratorTasks(params); - } } /** diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/IntermediateModelBuilder.java b/codegen/src/main/java/software/amazon/awssdk/codegen/IntermediateModelBuilder.java index 3b13b00b63a7..48f6b07da926 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/IntermediateModelBuilder.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/IntermediateModelBuilder.java @@ -32,11 +32,9 @@ import software.amazon.awssdk.codegen.internal.TypeUtils; import software.amazon.awssdk.codegen.internal.Utils; import software.amazon.awssdk.codegen.model.config.customization.CustomizationConfig; -import software.amazon.awssdk.codegen.model.intermediate.AuthorizerModel; import software.amazon.awssdk.codegen.model.intermediate.IntermediateModel; import software.amazon.awssdk.codegen.model.intermediate.MemberModel; import software.amazon.awssdk.codegen.model.intermediate.OperationModel; -import software.amazon.awssdk.codegen.model.intermediate.Protocol; import software.amazon.awssdk.codegen.model.intermediate.ShapeModel; import software.amazon.awssdk.codegen.model.service.AuthType; import software.amazon.awssdk.codegen.model.service.Operation; @@ -96,8 +94,6 @@ public IntermediateModel build() { Map shapes = new HashMap<>(); Map operations = new TreeMap<>(new AddOperations(this).constructOperations()); - Map authorizers = - new HashMap<>(new AddCustomAuthorizers(this.service, getNamingStrategy()).constructAuthorizers()); // Iterate through every operation and build an 'endpointOperation' if at least one operation that supports // endpoint discovery is found. If -any operations that require- endpoint discovery are found, then the flag @@ -133,7 +129,7 @@ public IntermediateModel build() { IntermediateModel fullModel = new IntermediateModel( constructMetadata(service, customConfig), operations, shapes, - customConfig, endpointOperation, authorizers, paginators.getPagination(), namingStrategy, + customConfig, endpointOperation, paginators.getPagination(), namingStrategy, waiters.getWaiters()); customization.postprocess(fullModel); @@ -151,7 +147,6 @@ public IntermediateModel build() { trimmedShapes, fullModel.getCustomizationConfig(), endpointOperation, - fullModel.getCustomAuthorizers(), fullModel.getPaginators(), namingStrategy, fullModel.getWaiters()); @@ -210,33 +205,15 @@ private void linkCustomAuthorizationToRequestShapes(IntermediateModel model) { operation.getOperationName())); } - if (model.getMetadata().getProtocol() == Protocol.API_GATEWAY) { - linkAuthorizationToRequestShapeForApiGatewayProtocol(model, c2jOperation, shape); - } else { - linkAuthorizationToRequestShapeForAwsProtocol(c2jOperation.getAuthtype(), shape); - } + linkAuthorizationToRequestShapeForAwsProtocol(c2jOperation.getAuthtype(), shape); }); } - private void linkAuthorizationToRequestShapeForApiGatewayProtocol(IntermediateModel model, - Operation c2jOperation, - ShapeModel shape) { - if (AuthType.CUSTOM.equals(c2jOperation.getAuthtype())) { - AuthorizerModel auth = model.getCustomAuthorizers().get(c2jOperation.getAuthorizer()); - if (auth == null) { - throw new RuntimeException(String.format("Required custom auth not defined: %s", - c2jOperation.getAuthorizer())); - } - shape.setRequestSignerClassFqcn(model.getMetadata().getAuthPolicyPackageName() + '.' + - auth.getInterfaceName()); - } else if (AuthType.IAM.equals(c2jOperation.getAuthtype())) { - model.getMetadata().setRequiresIamSigners(true); - // TODO IamRequestSigner does not exist - shape.setRequestSignerClassFqcn("software.amazon.awssdk.opensdk.protect.auth.IamRequestSigner"); + private void linkAuthorizationToRequestShapeForAwsProtocol(AuthType authType, ShapeModel shape) { + if (authType == null) { + return; } - } - private void linkAuthorizationToRequestShapeForAwsProtocol(AuthType authType, ShapeModel shape) { switch (authType) { case V4: shape.setRequestSignerClassFqcn("software.amazon.awssdk.auth.signer.Aws4Signer"); @@ -245,8 +222,6 @@ private void linkAuthorizationToRequestShapeForAwsProtocol(AuthType authType, Sh shape.setRequestSignerClassFqcn("software.amazon.awssdk.auth.signer.Aws4UnsignedPayloadSigner"); break; case NONE: - case IAM: - // just ignore this, this is the default value but only applicable to APIG generated clients break; default: throw new IllegalArgumentException("Unsupported authtype for AWS Request: " + authType); diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/IntermediateModel.java b/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/IntermediateModel.java index 29f335017e7c..ebc2ad242586 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/IntermediateModel.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/IntermediateModel.java @@ -43,8 +43,6 @@ public final class IntermediateModel { private CustomizationConfig customizationConfig; - private Map customAuthorizers; - private Optional endpointOperation; private Map paginators; @@ -70,7 +68,7 @@ public IntermediateModel(Metadata metadata, Map shapes, CustomizationConfig customizationConfig) { this(metadata, operations, shapes, customizationConfig, null, - Collections.emptyMap(), Collections.emptyMap(), null, Collections.emptyMap()); + Collections.emptyMap(), null, Collections.emptyMap()); } public IntermediateModel( @@ -79,7 +77,6 @@ public IntermediateModel( Map shapes, CustomizationConfig customizationConfig, OperationModel endpointOperation, - Map customAuthorizers, Map paginators, NamingStrategy namingStrategy, Map waiters) { @@ -88,7 +85,6 @@ public IntermediateModel( this.shapes = shapes; this.customizationConfig = customizationConfig; this.endpointOperation = Optional.ofNullable(endpointOperation); - this.customAuthorizers = customAuthorizers; this.paginators = paginators; this.namingStrategy = namingStrategy; this.waiters = waiters; @@ -215,13 +211,9 @@ private static String loadDefaultFileHeader() { } public String getSdkBaseResponseFqcn() { - if (metadata.getProtocol() == Protocol.API_GATEWAY) { - return "software.amazon.awssdk.opensdk.BaseResult"; - } else { - return String.format("%s<%s>", - AwsResponse.class.getName(), - getResponseMetadataClassName()); - } + return String.format("%s<%s>", + AwsResponse.class.getName(), + getResponseMetadataClassName()); } private String getResponseMetadataClassName() { @@ -235,14 +227,6 @@ public List simpleMethodsRequiringTesting() { .collect(Collectors.toList()); } - public Map getCustomAuthorizers() { - return customAuthorizers; - } - - public void setCustomAuthorizers(Map customAuthorizers) { - this.customAuthorizers = customAuthorizers; - } - public Optional getEndpointOperation() { return endpointOperation; } diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/Metadata.java b/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/Metadata.java index 447e3ac012aa..eb3a83d9fb20 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/Metadata.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/Metadata.java @@ -511,7 +511,6 @@ public boolean isJsonProtocol() { return protocol == Protocol.CBOR || protocol == Protocol.ION || protocol == Protocol.AWS_JSON || - protocol == Protocol.API_GATEWAY || protocol == Protocol.REST_JSON; } @@ -531,7 +530,6 @@ public boolean isQueryProtocol() { */ public static boolean isNotRestProtocol(String protocol) { switch (Protocol.fromValue(protocol)) { - case API_GATEWAY: case REST_JSON: case REST_XML: return false; diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/Protocol.java b/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/Protocol.java index 9dff6efd810b..c24898551033 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/Protocol.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/Protocol.java @@ -25,7 +25,6 @@ public enum Protocol { CBOR("cbor"), QUERY("query"), REST_XML("rest-xml"), - API_GATEWAY("api-gateway"), ION("ion"); private String protocol; diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/model/service/Operation.java b/codegen/src/main/java/software/amazon/awssdk/codegen/model/service/Operation.java index 398118cf2fb3..d60eb076d2fb 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/model/service/Operation.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/model/service/Operation.java @@ -36,15 +36,13 @@ public class Operation { private List errors; - private boolean requiresApiKey; - private EndpointDiscovery endpointdiscovery; private boolean endpointoperation; private EndpointTrait endpoint; - private AuthType authtype = AuthType.IAM; + private AuthType authtype; private boolean httpChecksumRequired; @@ -135,14 +133,6 @@ public void setAuthorizer(String authorizer) { this.authorizer = authorizer; } - public boolean requiresApiKey() { - return requiresApiKey; - } - - public void setRequiresApiKey(boolean requiresApiKey) { - this.requiresApiKey = requiresApiKey; - } - public EndpointDiscovery getEndpointdiscovery() { return endpointdiscovery; } diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/naming/DefaultNamingStrategy.java b/codegen/src/main/java/software/amazon/awssdk/codegen/naming/DefaultNamingStrategy.java index b6bed715e3e7..33a20dc9c237 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/naming/DefaultNamingStrategy.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/naming/DefaultNamingStrategy.java @@ -16,7 +16,6 @@ package software.amazon.awssdk.codegen.naming; import static java.util.stream.Collectors.joining; -import static software.amazon.awssdk.codegen.internal.Constant.AUTHORIZER_NAME_PREFIX; import static software.amazon.awssdk.codegen.internal.Constant.CONFLICTING_NAME_SUFFIX; import static software.amazon.awssdk.codegen.internal.Constant.EXCEPTION_CLASS_SUFFIX; import static software.amazon.awssdk.codegen.internal.Constant.FAULT_CLASS_SUFFIX; @@ -48,7 +47,7 @@ */ public class DefaultNamingStrategy implements NamingStrategy { - private static Logger log = Logger.loggerFor(DefaultNamingStrategy.class); + private static final Logger log = Logger.loggerFor(DefaultNamingStrategy.class); private static final String COLLISION_DISAMBIGUATION_PREFIX = "Default"; @@ -276,15 +275,6 @@ public String getJavaClassName(String shapeName) { .collect(joining()); } - @Override - public String getAuthorizerClassName(String shapeName) { - String converted = getJavaClassName(shapeName); - if (converted.length() > 0 && !Character.isLetter(converted.charAt(0))) { - return AUTHORIZER_NAME_PREFIX + converted; - } - return converted; - } - @Override public String getFluentGetterMethodName(String memberName, Shape parentShape, Shape shape) { String getterMethodName = Utils.unCapitalize(memberName); diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/naming/NamingStrategy.java b/codegen/src/main/java/software/amazon/awssdk/codegen/naming/NamingStrategy.java index 2af31ff106b3..3fa2e301ed22 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/naming/NamingStrategy.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/naming/NamingStrategy.java @@ -99,12 +99,6 @@ public interface NamingStrategy { */ String getJavaClassName(String shapeName); - /** - * @param shapeName Name of an authorizer shape used to derive the authorizer name - * @return Appropriate name to use for a Java class for an Authorizer - */ - String getAuthorizerClassName(String shapeName); - /** * @param memberName Member name to name getter for. * @param shape The shape associated with the member. diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/AsyncClientClass.java b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/AsyncClientClass.java index ef46146eb90d..50a9a32cc366 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/AsyncClientClass.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/AsyncClientClass.java @@ -53,7 +53,6 @@ import software.amazon.awssdk.codegen.model.config.customization.UtilitiesMethod; import software.amazon.awssdk.codegen.model.intermediate.IntermediateModel; import software.amazon.awssdk.codegen.model.intermediate.OperationModel; -import software.amazon.awssdk.codegen.model.intermediate.Protocol; import software.amazon.awssdk.codegen.model.intermediate.ShapeModel; import software.amazon.awssdk.codegen.model.service.AuthType; import software.amazon.awssdk.codegen.poet.PoetExtensions; @@ -243,7 +242,7 @@ protected MethodSpec.Builder operationBody(MethodSpec.Builder builder, Operation builder.addStatement("apiCallMetricCollector.reportMetric($T.$L, $S)", CoreMetric.class, "OPERATION_NAME", opModel.getOperationName()); - if (model.getMetadata().getProtocol() != Protocol.API_GATEWAY && shouldUseAsyncWithBodySigner(opModel)) { + if (shouldUseAsyncWithBodySigner(opModel)) { builder.addCode(applyAsyncWithBodyV4SignerOverride(opModel)); } else { builder.addCode(ClientClassUtils.callApplySignerOverrideMethod(opModel)); @@ -445,7 +444,7 @@ private boolean shouldUseAsyncWithBodySigner(OperationModel opModel) { AuthType authTypeForOperation = opModel.getAuthType(); - if (authTypeForOperation == AuthType.IAM) { + if (authTypeForOperation == null) { authTypeForOperation = model.getMetadata().getAuthType(); } diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/SyncClientClass.java b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/SyncClientClass.java index eb9c392a8855..95724e518af9 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/SyncClientClass.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/client/SyncClientClass.java @@ -335,8 +335,6 @@ static ProtocolSpec getProtocolSpecs(PoetExtensions poetExtensions, Intermediate case CBOR: case ION: return new JsonProtocolSpec(poetExtensions, model); - case API_GATEWAY: - throw new UnsupportedOperationException("Not yet supported."); default: throw new RuntimeException("Unknown protocol: " + protocol.name()); } diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/transform/MarshallerSpec.java b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/transform/MarshallerSpec.java index ddf7f221f386..3024048cd15c 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/transform/MarshallerSpec.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/transform/MarshallerSpec.java @@ -128,8 +128,6 @@ private MarshallerProtocolSpec getProtocolSpecs(software.amazon.awssdk.codegen.m case REST_XML: return new XmlMarshallerSpec(intermediateModel, shapeModel); - case API_GATEWAY: - throw new UnsupportedOperationException("Not yet supported."); default: throw new RuntimeException("Unknown protocol: " + protocol.name()); } diff --git a/codegen/src/test/java/software/amazon/awssdk/codegen/naming/DefaultNamingStrategyTest.java b/codegen/src/test/java/software/amazon/awssdk/codegen/naming/DefaultNamingStrategyTest.java index f30c642cbeb6..3dab8c8be357 100644 --- a/codegen/src/test/java/software/amazon/awssdk/codegen/naming/DefaultNamingStrategyTest.java +++ b/codegen/src/test/java/software/amazon/awssdk/codegen/naming/DefaultNamingStrategyTest.java @@ -74,12 +74,6 @@ public void canConvertStringsWithNonAlphasToClassNames() { assertThat(strat.getJavaClassName(anInvalidClassName)).isEqualTo("APhraseWithOtherDelimiters"); } - @Test - public void canConvertAuthorizerStartingWithNumber() { - String anInvalidClassName = "35-authorizer-implementation"; - assertThat(strat.getAuthorizerClassName(anInvalidClassName)).isEqualTo("I35AuthorizerImplementation"); - } - @Test public void enumNamesConvertCorrectly() { validateConversion("Twilio-Sms", "TWILIO_SMS"); From a32536c0244fd2e3d329d078b870e51681161adb Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Mon, 26 Oct 2020 10:11:45 -0700 Subject: [PATCH 081/339] Make bean-based getters on modeled builders return null for auto-constructed lists and maps. This fixes a bug where marshalling/unmarshalling a modeled object would turn auto-construct collections into non-auto-construct collections. The following additional changes were also made: 1. Removed a customization that allowed opting out of auto-construct lists/maps. No services used this, so it was extra complexity. 2. Fixed equals/hashCode/toString on modeled objects to treat auto-construct lists/maps as null, not empty lists. --- .../bugfix-AWSSDKforJavav2-0e7afb0.json | 5 + .../bugfix-AWSSDKforJavav2-267da1c.json | 5 + .../customization/CustomizationConfig.java | 20 - .../codegen/poet/model/BeanGetterHelper.java | 42 +- .../codegen/poet/model/MemberCopierSpec.java | 35 +- .../codegen/poet/model/ModelBuilderSpecs.java | 4 +- .../poet/model/ModelMethodOverrides.java | 43 +- .../codegen/poet/model/TypeProvider.java | 8 - ...pecWithoutAutoConstructContainersTest.java | 89 - ...pecWithoutAutoConstructContainersTest.java | 96 - .../codegen/poet/model/alltypesrequest.java | 149 +- .../codegen/poet/model/alltypesresponse.java | 149 +- .../model/existencechecknamingrequest.java | 31 +- .../model/existencechecknamingresponse.java | 31 +- .../poet/model/listofsimplestructscopier.java | 4 +- .../model/mapofenumtosimplestructcopier.java | 20 +- .../mapofstringtosimplestructcopier.java | 8 +- .../poet/model/nestedcontainersrequest.java | 30 +- .../poet/model/nestedcontainersresponse.java | 30 +- .../alltypesrequest.java | 2515 ----------------- .../alltypesresponse.java | 2496 ---------------- .../blobmaptypecopier.java | 22 - .../existencechecknamingrequest.java | 458 --- .../existencechecknamingresponse.java | 438 --- .../listofblobstypecopier.java | 21 - .../listofenumscopier.java | 37 - .../listofintegerscopier.java | 20 - .../listoflistoflistofstringscopier.java | 21 - .../listoflistofstringscopier.java | 20 - .../listofmapofenumtostringcopier.java | 39 - .../listofmapstringtostringcopier.java | 21 - .../listofsimplestructscopier.java | 27 - .../listofstringscopier.java | 20 - .../mapofenumtoenumcopier.java | 43 - .../mapofenumtolistofenumscopier.java | 48 - .../mapofenumtomapofstringtoenumcopier.java | 50 - .../mapofenumtosimplestructcopier.java | 50 - .../mapofenumtostringcopier.java | 43 - .../mapofstringtoenumcopier.java | 39 - .../mapofstringtointegerlistcopier.java | 22 - ...apofstringtolistoflistofstringscopier.java | 25 - .../mapofstringtosimplestructcopier.java | 28 - .../mapofstringtostringcopier.java | 20 - .../nestedcontainersrequest.java | 454 --- .../nestedcontainersresponse.java | 435 --- .../recursivelisttypecopier.java | 27 - .../recursivemaptypecopier.java | 28 - .../recursivestructtype.java | 424 --- .../poet/model/recursivelisttypecopier.java | 4 +- .../poet/model/recursivemaptypecopier.java | 6 +- .../poet/model/recursivestructtype.java | 16 +- .../autoconstructedlists/customization.config | 8 - .../autoconstructedlists/service-2.json | 268 -- .../model/GetValueForFieldTest.java | 2 +- .../model/ListCopierTest.java | 2 +- .../model/MapCopierTest.java | 7 +- .../model/ModelBuilderListMemberTest.java | 2 +- .../model/ModelBuilderMapMemberTest.java | 2 +- .../query/customization.config | 4 +- 59 files changed, 439 insertions(+), 8572 deletions(-) create mode 100644 .changes/next-release/bugfix-AWSSDKforJavav2-0e7afb0.json create mode 100644 .changes/next-release/bugfix-AWSSDKforJavav2-267da1c.json delete mode 100644 codegen/src/test/java/software/amazon/awssdk/codegen/poet/model/AwsModelSpecWithoutAutoConstructContainersTest.java delete mode 100644 codegen/src/test/java/software/amazon/awssdk/codegen/poet/model/ModelCopierSpecWithoutAutoConstructContainersTest.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/alltypesrequest.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/alltypesresponse.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/blobmaptypecopier.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/existencechecknamingrequest.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/existencechecknamingresponse.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofblobstypecopier.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofenumscopier.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofintegerscopier.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listoflistoflistofstringscopier.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listoflistofstringscopier.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofmapofenumtostringcopier.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofmapstringtostringcopier.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofsimplestructscopier.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofstringscopier.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofenumtoenumcopier.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofenumtolistofenumscopier.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofenumtomapofstringtoenumcopier.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofenumtosimplestructcopier.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofenumtostringcopier.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofstringtoenumcopier.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofstringtointegerlistcopier.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofstringtolistoflistofstringscopier.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofstringtosimplestructcopier.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofstringtostringcopier.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/nestedcontainersrequest.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/nestedcontainersresponse.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/recursivelisttypecopier.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/recursivemaptypecopier.java delete mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/recursivestructtype.java delete mode 100644 test/codegen-generated-classes-test/src/main/resources/codegen-resources/autoconstructedlists/customization.config delete mode 100644 test/codegen-generated-classes-test/src/main/resources/codegen-resources/autoconstructedlists/service-2.json rename test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/{codegenerationjsonrpccustomized => protocolrestjson}/model/GetValueForFieldTest.java (94%) rename test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/{codegenerationjsonrpccustomized => protocolrestjson}/model/ListCopierTest.java (94%) rename test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/{codegenerationjsonrpccustomized => protocolrestjson}/model/MapCopierTest.java (93%) rename test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/{codegenerationjsonrpccustomized => protocolrestjson}/model/ModelBuilderListMemberTest.java (96%) rename test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/{codegenerationjsonrpccustomized => protocolrestjson}/model/ModelBuilderMapMemberTest.java (96%) diff --git a/.changes/next-release/bugfix-AWSSDKforJavav2-0e7afb0.json b/.changes/next-release/bugfix-AWSSDKforJavav2-0e7afb0.json new file mode 100644 index 000000000000..63821bdc44f2 --- /dev/null +++ b/.changes/next-release/bugfix-AWSSDKforJavav2-0e7afb0.json @@ -0,0 +1,5 @@ +{ + "type": "bugfix", + "category": "AWS SDK for Java v2", + "description": "Fixed an issue where the toString/equals/hashCode on a modeled object were not honoring the has* methods for lists and maps." +} diff --git a/.changes/next-release/bugfix-AWSSDKforJavav2-267da1c.json b/.changes/next-release/bugfix-AWSSDKforJavav2-267da1c.json new file mode 100644 index 000000000000..80820e7966a2 --- /dev/null +++ b/.changes/next-release/bugfix-AWSSDKforJavav2-267da1c.json @@ -0,0 +1,5 @@ +{ + "type": "bugfix", + "category": "AWS SDK for Java v2", + "description": "Fixed an issue where marshalling of a modeled object was not honoring the has* method on a list/map." +} diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/model/config/customization/CustomizationConfig.java b/codegen/src/main/java/software/amazon/awssdk/codegen/model/config/customization/CustomizationConfig.java index 97a50d27382e..2654b00dc6ce 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/model/config/customization/CustomizationConfig.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/model/config/customization/CustomizationConfig.java @@ -119,10 +119,6 @@ public class CustomizationConfig { private Map modelMarshallerDefaultValueSupplier = new HashMap<>(); - private boolean useAutoConstructList = true; - - private boolean useAutoConstructMap = true; - /** * Custom Retry Policy */ @@ -352,22 +348,6 @@ public void setModelMarshallerDefaultValueSupplier(Map modelMars this.modelMarshallerDefaultValueSupplier = modelMarshallerDefaultValueSupplier; } - public boolean isUseAutoConstructList() { - return useAutoConstructList; - } - - public void setUseAutoConstructList(boolean useAutoConstructList) { - this.useAutoConstructList = useAutoConstructList; - } - - public boolean isUseAutoConstructMap() { - return useAutoConstructMap; - } - - public void setUseAutoConstructMap(boolean useAutoConstructMap) { - this.useAutoConstructMap = useAutoConstructMap; - } - public String getCustomRetryPolicy() { return customRetryPolicy; } diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/model/BeanGetterHelper.java b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/model/BeanGetterHelper.java index c9a2db4777fd..d54740b12452 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/model/BeanGetterHelper.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/model/BeanGetterHelper.java @@ -63,20 +63,20 @@ public MethodSpec beanStyleGetter(MemberModel memberModel) { private MethodSpec byteBufferGetter(MemberModel memberModel) { return basicGetter(memberModel, ClassName.get(ByteBuffer.class), - CodeBlock.of("return $1N == null ? null : $1N.asByteBuffer()", + CodeBlock.of("return $1N == null ? null : $1N.asByteBuffer();", memberModel.getVariable().getVariableName())); } private MethodSpec listByteBufferGetter(MemberModel memberModel) { return basicGetter(memberModel, ParameterizedTypeName.get(List.class, ByteBuffer.class), - CodeBlock.of("return $1N == null ? null : $1N.stream().map($2T::asByteBuffer).collect($3T.toList())", + CodeBlock.of("return $1N == null ? null : $1N.stream().map($2T::asByteBuffer).collect($3T.toList());", memberModel.getVariable().getVariableName(), SdkBytes.class, Collectors.class)); } private MethodSpec mapByteBufferGetter(MemberModel memberModel) { String body = "return $1N == null ? null : " + - "$1N.entrySet().stream().collect($2T.toMap(e -> e.getKey(), e -> e.getValue().asByteBuffer()))"; + "$1N.entrySet().stream().collect($2T.toMap(e -> e.getKey(), e -> e.getValue().asByteBuffer()));"; String keyType = memberModel.getMapModel().getKeyModel().getVariable().getVariableType(); return basicGetter(memberModel, PoetUtils.createParameterizedTypeName(Map.class, keyType, ByteBuffer.class.getSimpleName()), @@ -86,15 +86,14 @@ private MethodSpec mapByteBufferGetter(MemberModel memberModel) { private MethodSpec regularGetter(MemberModel memberModel) { return basicGetter(memberModel, typeProvider.parameterType(memberModel), - CodeBlock.of("return $N", memberModel.getVariable().getVariableName())); + CodeBlock.of("return $N;", memberModel.getVariable().getVariableName())); } private MethodSpec builderGetter(MemberModel memberModel) { return basicGetter(memberModel, poetExtensions.getModelClass(memberModel.getC2jShape()).nestedClass("Builder"), - CodeBlock.builder().add("return $1N != null ? $1N.toBuilder() : null", - memberModel.getVariable().getVariableName()) - .build()); + CodeBlock.of("return $1N != null ? $1N.toBuilder() : null;", + memberModel.getVariable().getVariableName())); } private MethodSpec mapOfBuildersGetter(MemberModel memberModel) { @@ -105,11 +104,10 @@ private MethodSpec mapOfBuildersGetter(MemberModel memberModel) { return basicGetter(memberModel, returnType, - CodeBlock.builder().add("return $1N != null ? $2T.mapValues($1N, $3T::toBuilder) : null", + CodeBlock.of("return $1N != null ? $2T.mapValues($1N, $3T::toBuilder) : null;", memberModel.getVariable().getVariableName(), CollectionUtils.class, - valueType) - .build()); + valueType)); } private MethodSpec listOfBuildersGetter(MemberModel memberModel) { @@ -118,19 +116,27 @@ private MethodSpec listOfBuildersGetter(MemberModel memberModel) { return basicGetter(memberModel, returnType, - CodeBlock.builder().add( - "return $1N != null ? $1N.stream().map($2T::toBuilder).collect($3T.toList()) : null", - memberModel.getVariable().getVariableName(), - memberType, - Collectors.class) - .build()); + CodeBlock.of("return $1N != null ? $1N.stream().map($2T::toBuilder).collect($3T.toList()) : null;", + memberModel.getVariable().getVariableName(), + memberType, + Collectors.class)); } - private MethodSpec basicGetter(MemberModel memberModel, TypeName returnType, CodeBlock statement) { + private MethodSpec basicGetter(MemberModel memberModel, TypeName returnType, CodeBlock body) { + CodeBlock.Builder getterBody = CodeBlock.builder(); + + memberModel.getAutoConstructClassIfExists().ifPresent(autoConstructClass -> { + getterBody.add("if ($N instanceof $T) {", memberModel.getVariable().getVariableName(), autoConstructClass) + .add("return null;") + .add("}"); + }); + + getterBody.add(body); + return MethodSpec.methodBuilder(memberModel.getBeanStyleGetterMethodName()) .addModifiers(Modifier.PUBLIC, Modifier.FINAL) .returns(returnType) - .addStatement(statement) + .addCode(getterBody.build()) .build(); } } diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/model/MemberCopierSpec.java b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/model/MemberCopierSpec.java index ab95b64346dd..4825001efe12 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/model/MemberCopierSpec.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/model/MemberCopierSpec.java @@ -209,8 +209,9 @@ private MethodSpec builderCopyMethodForMap() { CodeBlock code = CodeBlock.builder() - .beginControlFlow("if ($N == null)", memberParamName()) - .addStatement("return null") + .beginControlFlow("if ($1N == null || $1N instanceof $2T)", + memberParamName(), DefaultSdkAutoConstructMap.class) + .addStatement("return $T.getInstance()", DefaultSdkAutoConstructMap.class) .endControlFlow() .addStatement("return $N($N.entrySet().stream().collect(toMap($T::getKey, e -> e.getValue().build())))", serviceModelCopiers.copyMethodName(), @@ -234,8 +235,9 @@ private MethodSpec builderCopyMethodForList() { ParameterizedTypeName.get(ClassName.get(Collection.class), WildcardTypeName.subtypeOf(builderForParameter)); CodeBlock code = CodeBlock.builder() - .beginControlFlow("if ($N == null)", memberParamName()) - .addStatement("return null") + .beginControlFlow("if ($1N == null || $1N instanceof $2T)", + memberParamName(), DefaultSdkAutoConstructList.class) + .addStatement("return $T.getInstance()", DefaultSdkAutoConstructList.class) .endControlFlow() .addStatement("return $N($N.stream().map($T::$N).collect(toList()))", serviceModelCopiers.copyMethodName(), @@ -270,16 +272,9 @@ private CodeBlock listCopyBody(EnumTransform enumTransform) { CodeBlock.Builder builder = CodeBlock.builder(); - if (typeProvider.useAutoConstructLists()) { - builder.beginControlFlow("if ($1N == null || $1N instanceof $2T)", memberParamName(), SdkAutoConstructList.class) - .addStatement("return $T.getInstance()", DefaultSdkAutoConstructList.class) - .endControlFlow(); - - } else { - builder.beginControlFlow("if ($N == null)", memberParamName()) - .addStatement("return null") - .endControlFlow(); - } + builder.beginControlFlow("if ($1N == null || $1N instanceof $2T)", memberParamName(), SdkAutoConstructList.class) + .addStatement("return $T.getInstance()", DefaultSdkAutoConstructList.class) + .endControlFlow(); Optional copierClass = serviceModelCopiers.copierClassFor(memberModel.getListModel().getListMemberModel()); boolean hasCopier = copierClass.isPresent(); @@ -367,15 +362,9 @@ private CodeBlock mapCopyBody(EnumTransform enumTransform) { CodeBlock valueCopyExpr = mapKeyValCopyExpr(valueModel, "getValue", valueTransform); CodeBlock.Builder builder = CodeBlock.builder(); - if (typeProvider.useAutoConstructMaps()) { - builder.beginControlFlow("if ($1N == null || $1N instanceof $2T)", memberParamName(), SdkAutoConstructMap.class) - .addStatement("return $T.getInstance()", DefaultSdkAutoConstructMap.class) - .endControlFlow(); - } else { - builder.beginControlFlow("if ($1N == null)", memberParamName()) - .addStatement("return null") - .endControlFlow(); - } + builder.beginControlFlow("if ($1N == null || $1N instanceof $2T)", memberParamName(), SdkAutoConstructMap.class) + .addStatement("return $T.getInstance()", DefaultSdkAutoConstructMap.class) + .endControlFlow(); TypeName copyType; if (enumTransform == EnumTransform.STRING_TO_ENUM) { diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/model/ModelBuilderSpecs.java b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/model/ModelBuilderSpecs.java index b5967dab40d2..c69127c10b40 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/model/ModelBuilderSpecs.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/model/ModelBuilderSpecs.java @@ -160,11 +160,11 @@ private List fields() { List fields = shapeModel.getNonStreamingMembers().stream() .map(m -> { FieldSpec fieldSpec = typeProvider.asField(m, Modifier.PRIVATE); - if (m.isList() && typeProvider.useAutoConstructLists()) { + if (m.isList()) { fieldSpec = fieldSpec.toBuilder() .initializer("$T.getInstance()", DefaultSdkAutoConstructList.class) .build(); - } else if (m.isMap() && typeProvider.useAutoConstructMaps()) { + } else if (m.isMap()) { fieldSpec = fieldSpec.toBuilder() .initializer("$T.getInstance()", DefaultSdkAutoConstructMap.class) .build(); diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/model/ModelMethodOverrides.java b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/model/ModelMethodOverrides.java index 943a423c4822..507c4aad7f72 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/model/ModelMethodOverrides.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/model/ModelMethodOverrides.java @@ -69,7 +69,15 @@ public MethodSpec equalsBySdkFieldsMethod(ShapeModel shapeModel) { memberEqualsStmt.add("return "); memberEqualsStmt.add(memberModels.stream().map(m -> { String getterName = m.getFluentGetterMethodName(); - return CodeBlock.builder().add("$T.equals($N(), other.$N())", Objects.class, getterName, getterName).build(); + + CodeBlock.Builder result = CodeBlock.builder(); + if (m.getAutoConstructClassIfExists().isPresent()) { + String existenceCheckMethodName = m.getExistenceCheckMethodName(); + result.add("$1N() == other.$1N() && ", existenceCheckMethodName); + } + + return result.add("$T.equals($N(), other.$N())", Objects.class, getterName, getterName) + .build(); }).collect(PoetCollectors.toDelimitedCodeBlock("&&"))); memberEqualsStmt.add(";"); } @@ -118,13 +126,19 @@ public MethodSpec toStringMethod(ShapeModel shapeModel) { } public CodeBlock toStringValue(MemberModel member) { - if (!member.isSensitive()) { - return CodeBlock.of("$L()", member.getFluentGetterMethodName()); + if (member.isSensitive()) { + return CodeBlock.of("$L() == null ? null : $S", + member.getFluentGetterMethodName(), + "*** Sensitive Data Redacted ***"); + } + + if (member.getAutoConstructClassIfExists().isPresent()) { + return CodeBlock.of("$N() ? $N() : null", + member.getExistenceCheckMethodName(), + member.getFluentGetterMethodName()); } - return CodeBlock.of("$L() == null ? null : $S", - member.getFluentGetterMethodName(), - "*** Sensitive Data Redacted ***"); + return CodeBlock.of("$L()", member.getFluentGetterMethodName()); } public MethodSpec hashCodeMethod(ShapeModel shapeModel) { @@ -140,13 +154,22 @@ public MethodSpec hashCodeMethod(ShapeModel shapeModel) { } shapeModel.getNonStreamingMembers() - .forEach(m -> methodBuilder.addStatement( - "hashCode = 31 * hashCode + $T.hashCode($N())", - Objects.class, - m.getFluentGetterMethodName())); + .forEach(m -> methodBuilder.addCode("hashCode = 31 * hashCode + $T.hashCode(", Objects.class) + .addCode(hashCodeValue(m)) + .addCode(");\n")); methodBuilder.addStatement("return hashCode"); return methodBuilder.build(); } + + public CodeBlock hashCodeValue(MemberModel member) { + if (member.getAutoConstructClassIfExists().isPresent()) { + return CodeBlock.of("$N() ? $N() : null", + member.getExistenceCheckMethodName(), + member.getFluentGetterMethodName()); + } + + return CodeBlock.of("$N()", member.getFluentGetterMethodName()); + } } diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/model/TypeProvider.java b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/model/TypeProvider.java index a759463165a6..f315bc74d15f 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/poet/model/TypeProvider.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/poet/model/TypeProvider.java @@ -53,14 +53,6 @@ public ClassName listImplClassName() { return ClassName.get(ArrayList.class); } - public boolean useAutoConstructLists() { - return intermediateModel.getCustomizationConfig().isUseAutoConstructList(); - } - - public boolean useAutoConstructMaps() { - return intermediateModel.getCustomizationConfig().isUseAutoConstructMap(); - } - public TypeName enumReturnType(MemberModel memberModel) { return fieldType(memberModel, true); } diff --git a/codegen/src/test/java/software/amazon/awssdk/codegen/poet/model/AwsModelSpecWithoutAutoConstructContainersTest.java b/codegen/src/test/java/software/amazon/awssdk/codegen/poet/model/AwsModelSpecWithoutAutoConstructContainersTest.java deleted file mode 100644 index 834b9fc6ceb2..000000000000 --- a/codegen/src/test/java/software/amazon/awssdk/codegen/poet/model/AwsModelSpecWithoutAutoConstructContainersTest.java +++ /dev/null @@ -1,89 +0,0 @@ -/* - * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"). - * You may not use this file except in compliance with the License. - * A copy of the License is located at - * - * http://aws.amazon.com/apache2.0 - * - * or in the "license" file accompanying this file. This file is distributed - * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either - * express or implied. See the License for the specific language governing - * permissions and limitations under the License. - */ - -package software.amazon.awssdk.codegen.poet.model; - -import static java.util.stream.Collectors.toList; -import static org.hamcrest.MatcherAssert.assertThat; -import static software.amazon.awssdk.codegen.poet.PoetMatchers.generatesTo; -import static software.amazon.awssdk.utils.FunctionalUtils.invokeSafely; - -import java.io.File; -import java.io.IOException; -import java.util.Collection; -import java.util.Locale; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.junit.runners.Parameterized; -import software.amazon.awssdk.codegen.C2jModels; -import software.amazon.awssdk.codegen.IntermediateModelBuilder; -import software.amazon.awssdk.codegen.model.config.customization.CustomizationConfig; -import software.amazon.awssdk.codegen.model.intermediate.IntermediateModel; -import software.amazon.awssdk.codegen.model.intermediate.ShapeModel; -import software.amazon.awssdk.codegen.model.service.ServiceModel; -import software.amazon.awssdk.codegen.utils.ModelLoaderUtils; - -/** - * Similar to {@link AwsModelSpecTest} but tests correct generation when auto construct containers are disabled. - */ -@RunWith(Parameterized.class) -public class AwsModelSpecWithoutAutoConstructContainersTest { - private static IntermediateModel intermediateModel; - - private final ShapeModel shapeModel; - - @Parameterized.Parameters(name = "{0}") - public static Collection data() { - invokeSafely(AwsModelSpecWithoutAutoConstructContainersTest::setUp); - return intermediateModel.getShapes().values().stream().map(shape -> new Object[] { shape }).collect(toList()); - } - - public AwsModelSpecWithoutAutoConstructContainersTest(ShapeModel shapeModel) { - this.shapeModel = shapeModel; - } - - @Test - public void generationWithAutoConstructList() { - assertThat(new AwsServiceModel(intermediateModel, shapeModel), generatesTo(referenceFileForShape())); - } - - private String referenceFileForShape() { - String name = shapeModel.getShapeName().toLowerCase(Locale.ENGLISH) + ".java"; - String autoConstructVariant = "./nonautoconstructcontainers/" + name; - if (getClass().getResource(autoConstructVariant) != null) { - return autoConstructVariant; - } - return name; - } - - private static void setUp() throws IOException { - File serviceModelFile = new File(AwsModelSpecWithoutAutoConstructContainersTest.class.getResource("service-2.json").getFile()); - File customizationConfigFile = new File(AwsModelSpecWithoutAutoConstructContainersTest.class - .getResource("customization.config") - .getFile()); - ServiceModel serviceModel = ModelLoaderUtils.loadModel(ServiceModel.class, serviceModelFile); - CustomizationConfig autoConstructListConfig = ModelLoaderUtils.loadModel(CustomizationConfig.class, customizationConfigFile); - autoConstructListConfig.setUseAutoConstructList(false); - autoConstructListConfig.setUseAutoConstructMap(false); - - intermediateModel = new IntermediateModelBuilder( - C2jModels.builder() - .serviceModel(serviceModel) - .customizationConfig(autoConstructListConfig) - .build()) - .build(); - - } -} diff --git a/codegen/src/test/java/software/amazon/awssdk/codegen/poet/model/ModelCopierSpecWithoutAutoConstructContainersTest.java b/codegen/src/test/java/software/amazon/awssdk/codegen/poet/model/ModelCopierSpecWithoutAutoConstructContainersTest.java deleted file mode 100644 index 27f1cbb6eabe..000000000000 --- a/codegen/src/test/java/software/amazon/awssdk/codegen/poet/model/ModelCopierSpecWithoutAutoConstructContainersTest.java +++ /dev/null @@ -1,96 +0,0 @@ -/* - * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"). - * You may not use this file except in compliance with the License. - * A copy of the License is located at - * - * http://aws.amazon.com/apache2.0 - * - * or in the "license" file accompanying this file. This file is distributed - * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either - * express or implied. See the License for the specific language governing - * permissions and limitations under the License. - */ - -package software.amazon.awssdk.codegen.poet.model; - -import static java.util.stream.Collectors.toList; -import static org.hamcrest.MatcherAssert.assertThat; -import static software.amazon.awssdk.codegen.poet.PoetMatchers.generatesTo; -import static software.amazon.awssdk.utils.FunctionalUtils.invokeSafely; - -import java.io.File; -import java.io.IOException; -import java.net.URISyntaxException; -import java.util.Collection; -import java.util.Locale; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.junit.runners.Parameterized; -import software.amazon.awssdk.codegen.C2jModels; -import software.amazon.awssdk.codegen.IntermediateModelBuilder; -import software.amazon.awssdk.codegen.model.config.customization.CustomizationConfig; -import software.amazon.awssdk.codegen.model.intermediate.IntermediateModel; -import software.amazon.awssdk.codegen.model.service.ServiceModel; -import software.amazon.awssdk.codegen.poet.ClassSpec; -import software.amazon.awssdk.codegen.utils.ModelLoaderUtils; - -/** - * Similar to {@link ModelCopierSpecTest} but tests correct generation when auto construct containers are disabled. - */ -@RunWith(Parameterized.class) -public class ModelCopierSpecWithoutAutoConstructContainersTest { - private static File serviceModelFile; - private static IntermediateModel intermediateModel; - private final ClassSpec spec; - private final String specName; - - private static void setUp() throws URISyntaxException, IOException { - serviceModelFile = new File(AwsModelSpecTest.class - .getResource("service-2.json") - .getFile()); - - File customizationConfigFile = new File(AwsModelSpecTest.class - .getResource("customization.config") - .getFile()); - - CustomizationConfig customizationConfig = ModelLoaderUtils.loadModel(CustomizationConfig.class, customizationConfigFile); - customizationConfig.setUseAutoConstructList(false); - customizationConfig.setUseAutoConstructMap(false); - - intermediateModel = new IntermediateModelBuilder( - C2jModels.builder() - .serviceModel(ModelLoaderUtils.loadModel(ServiceModel.class, serviceModelFile)) - .customizationConfig(customizationConfig) - .build()) - .build(); - } - - @Parameterized.Parameters(name = "{1}") - public static Collection data() { - invokeSafely(ModelCopierSpecWithoutAutoConstructContainersTest::setUp); - return new ServiceModelCopiers(intermediateModel).copierSpecs().stream() - .map(spec -> new Object[] { spec, spec.className().simpleName().toLowerCase(Locale.ENGLISH) }) - .collect(toList()); - } - - public ModelCopierSpecWithoutAutoConstructContainersTest(ClassSpec spec, String specName) { - this.spec = spec; - this.specName = specName; - } - - @Test - public void basicGeneration() { - assertThat(spec, generatesTo(expectedFile())); - } - - private String expectedFile() { - String name = specName + ".java"; - String autoConstructVariant = "./nonautoconstructcontainers/" + name; - if (getClass().getResource(autoConstructVariant) != null) { - return autoConstructVariant; - } - return name; - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/alltypesrequest.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/alltypesrequest.java index a143d8393b17..ec8f31570663 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/alltypesrequest.java +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/alltypesrequest.java @@ -1161,26 +1161,27 @@ public int hashCode() { hashCode = 31 * hashCode + Objects.hashCode(floatMember()); hashCode = 31 * hashCode + Objects.hashCode(doubleMember()); hashCode = 31 * hashCode + Objects.hashCode(longMember()); - hashCode = 31 * hashCode + Objects.hashCode(simpleList()); - hashCode = 31 * hashCode + Objects.hashCode(listOfEnumsAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(listOfMaps()); - hashCode = 31 * hashCode + Objects.hashCode(listOfStructs()); - hashCode = 31 * hashCode + Objects.hashCode(listOfMapOfEnumToStringAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfStringToIntegerList()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfStringToString()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfStringToSimpleStruct()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfEnumToEnumAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfEnumToStringAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfStringToEnumAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfEnumToSimpleStructAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfEnumToListOfEnumsAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfEnumToMapOfStringToEnumAsStrings()); + hashCode = 31 * hashCode + Objects.hashCode(hasSimpleList() ? simpleList() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasListOfEnums() ? listOfEnumsAsStrings() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasListOfMaps() ? listOfMaps() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasListOfStructs() ? listOfStructs() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasListOfMapOfEnumToString() ? listOfMapOfEnumToStringAsStrings() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasMapOfStringToIntegerList() ? mapOfStringToIntegerList() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasMapOfStringToString() ? mapOfStringToString() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasMapOfStringToSimpleStruct() ? mapOfStringToSimpleStruct() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasMapOfEnumToEnum() ? mapOfEnumToEnumAsStrings() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasMapOfEnumToString() ? mapOfEnumToStringAsStrings() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasMapOfStringToEnum() ? mapOfStringToEnumAsStrings() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasMapOfEnumToSimpleStruct() ? mapOfEnumToSimpleStructAsStrings() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasMapOfEnumToListOfEnums() ? mapOfEnumToListOfEnumsAsStrings() : null); + hashCode = 31 * hashCode + + Objects.hashCode(hasMapOfEnumToMapOfStringToEnum() ? mapOfEnumToMapOfStringToEnumAsStrings() : null); hashCode = 31 * hashCode + Objects.hashCode(timestampMember()); hashCode = 31 * hashCode + Objects.hashCode(structWithNestedTimestampMember()); hashCode = 31 * hashCode + Objects.hashCode(blobArg()); hashCode = 31 * hashCode + Objects.hashCode(structWithNestedBlob()); - hashCode = 31 * hashCode + Objects.hashCode(blobMap()); - hashCode = 31 * hashCode + Objects.hashCode(listOfBlobs()); + hashCode = 31 * hashCode + Objects.hashCode(hasBlobMap() ? blobMap() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasListOfBlobs() ? listOfBlobs() : null); hashCode = 31 * hashCode + Objects.hashCode(recursiveStruct()); hashCode = 31 * hashCode + Objects.hashCode(polymorphicTypeWithSubTypes()); hashCode = 31 * hashCode + Objects.hashCode(polymorphicTypeWithoutSubTypes()); @@ -1208,24 +1209,37 @@ public boolean equalsBySdkFields(Object obj) { return Objects.equals(stringMember(), other.stringMember()) && Objects.equals(integerMember(), other.integerMember()) && Objects.equals(booleanMember(), other.booleanMember()) && Objects.equals(floatMember(), other.floatMember()) && Objects.equals(doubleMember(), other.doubleMember()) && Objects.equals(longMember(), other.longMember()) - && Objects.equals(simpleList(), other.simpleList()) + && hasSimpleList() == other.hasSimpleList() && Objects.equals(simpleList(), other.simpleList()) + && hasListOfEnums() == other.hasListOfEnums() && Objects.equals(listOfEnumsAsStrings(), other.listOfEnumsAsStrings()) - && Objects.equals(listOfMaps(), other.listOfMaps()) && Objects.equals(listOfStructs(), other.listOfStructs()) + && hasListOfMaps() == other.hasListOfMaps() && Objects.equals(listOfMaps(), other.listOfMaps()) + && hasListOfStructs() == other.hasListOfStructs() && Objects.equals(listOfStructs(), other.listOfStructs()) + && hasListOfMapOfEnumToString() == other.hasListOfMapOfEnumToString() && Objects.equals(listOfMapOfEnumToStringAsStrings(), other.listOfMapOfEnumToStringAsStrings()) + && hasMapOfStringToIntegerList() == other.hasMapOfStringToIntegerList() && Objects.equals(mapOfStringToIntegerList(), other.mapOfStringToIntegerList()) + && hasMapOfStringToString() == other.hasMapOfStringToString() && Objects.equals(mapOfStringToString(), other.mapOfStringToString()) + && hasMapOfStringToSimpleStruct() == other.hasMapOfStringToSimpleStruct() && Objects.equals(mapOfStringToSimpleStruct(), other.mapOfStringToSimpleStruct()) + && hasMapOfEnumToEnum() == other.hasMapOfEnumToEnum() && Objects.equals(mapOfEnumToEnumAsStrings(), other.mapOfEnumToEnumAsStrings()) + && hasMapOfEnumToString() == other.hasMapOfEnumToString() && Objects.equals(mapOfEnumToStringAsStrings(), other.mapOfEnumToStringAsStrings()) + && hasMapOfStringToEnum() == other.hasMapOfStringToEnum() && Objects.equals(mapOfStringToEnumAsStrings(), other.mapOfStringToEnumAsStrings()) + && hasMapOfEnumToSimpleStruct() == other.hasMapOfEnumToSimpleStruct() && Objects.equals(mapOfEnumToSimpleStructAsStrings(), other.mapOfEnumToSimpleStructAsStrings()) + && hasMapOfEnumToListOfEnums() == other.hasMapOfEnumToListOfEnums() && Objects.equals(mapOfEnumToListOfEnumsAsStrings(), other.mapOfEnumToListOfEnumsAsStrings()) + && hasMapOfEnumToMapOfStringToEnum() == other.hasMapOfEnumToMapOfStringToEnum() && Objects.equals(mapOfEnumToMapOfStringToEnumAsStrings(), other.mapOfEnumToMapOfStringToEnumAsStrings()) && Objects.equals(timestampMember(), other.timestampMember()) && Objects.equals(structWithNestedTimestampMember(), other.structWithNestedTimestampMember()) && Objects.equals(blobArg(), other.blobArg()) - && Objects.equals(structWithNestedBlob(), other.structWithNestedBlob()) - && Objects.equals(blobMap(), other.blobMap()) && Objects.equals(listOfBlobs(), other.listOfBlobs()) + && Objects.equals(structWithNestedBlob(), other.structWithNestedBlob()) && hasBlobMap() == other.hasBlobMap() + && Objects.equals(blobMap(), other.blobMap()) && hasListOfBlobs() == other.hasListOfBlobs() + && Objects.equals(listOfBlobs(), other.listOfBlobs()) && Objects.equals(recursiveStruct(), other.recursiveStruct()) && Objects.equals(polymorphicTypeWithSubTypes(), other.polymorphicTypeWithSubTypes()) && Objects.equals(polymorphicTypeWithoutSubTypes(), other.polymorphicTypeWithoutSubTypes()) @@ -1238,23 +1252,36 @@ public boolean equalsBySdkFields(Object obj) { */ @Override public String toString() { - return ToString.builder("AllTypesRequest").add("StringMember", stringMember()).add("IntegerMember", integerMember()) - .add("BooleanMember", booleanMember()).add("FloatMember", floatMember()).add("DoubleMember", doubleMember()) - .add("LongMember", longMember()).add("SimpleList", simpleList()).add("ListOfEnums", listOfEnumsAsStrings()) - .add("ListOfMaps", listOfMaps()).add("ListOfStructs", listOfStructs()) - .add("ListOfMapOfEnumToString", listOfMapOfEnumToStringAsStrings()) - .add("MapOfStringToIntegerList", mapOfStringToIntegerList()).add("MapOfStringToString", mapOfStringToString()) - .add("MapOfStringToSimpleStruct", mapOfStringToSimpleStruct()).add("MapOfEnumToEnum", mapOfEnumToEnumAsStrings()) - .add("MapOfEnumToString", mapOfEnumToStringAsStrings()).add("MapOfStringToEnum", mapOfStringToEnumAsStrings()) - .add("MapOfEnumToSimpleStruct", mapOfEnumToSimpleStructAsStrings()) - .add("MapOfEnumToListOfEnums", mapOfEnumToListOfEnumsAsStrings()) - .add("MapOfEnumToMapOfStringToEnum", mapOfEnumToMapOfStringToEnumAsStrings()) - .add("TimestampMember", timestampMember()) - .add("StructWithNestedTimestampMember", structWithNestedTimestampMember()).add("BlobArg", blobArg()) - .add("StructWithNestedBlob", structWithNestedBlob()).add("BlobMap", blobMap()).add("ListOfBlobs", listOfBlobs()) - .add("RecursiveStruct", recursiveStruct()).add("PolymorphicTypeWithSubTypes", polymorphicTypeWithSubTypes()) - .add("PolymorphicTypeWithoutSubTypes", polymorphicTypeWithoutSubTypes()).add("EnumType", enumTypeAsString()) - .build(); + return ToString + .builder("AllTypesRequest") + .add("StringMember", stringMember()) + .add("IntegerMember", integerMember()) + .add("BooleanMember", booleanMember()) + .add("FloatMember", floatMember()) + .add("DoubleMember", doubleMember()) + .add("LongMember", longMember()) + .add("SimpleList", hasSimpleList() ? simpleList() : null) + .add("ListOfEnums", hasListOfEnums() ? listOfEnumsAsStrings() : null) + .add("ListOfMaps", hasListOfMaps() ? listOfMaps() : null) + .add("ListOfStructs", hasListOfStructs() ? listOfStructs() : null) + .add("ListOfMapOfEnumToString", hasListOfMapOfEnumToString() ? listOfMapOfEnumToStringAsStrings() : null) + .add("MapOfStringToIntegerList", hasMapOfStringToIntegerList() ? mapOfStringToIntegerList() : null) + .add("MapOfStringToString", hasMapOfStringToString() ? mapOfStringToString() : null) + .add("MapOfStringToSimpleStruct", hasMapOfStringToSimpleStruct() ? mapOfStringToSimpleStruct() : null) + .add("MapOfEnumToEnum", hasMapOfEnumToEnum() ? mapOfEnumToEnumAsStrings() : null) + .add("MapOfEnumToString", hasMapOfEnumToString() ? mapOfEnumToStringAsStrings() : null) + .add("MapOfStringToEnum", hasMapOfStringToEnum() ? mapOfStringToEnumAsStrings() : null) + .add("MapOfEnumToSimpleStruct", hasMapOfEnumToSimpleStruct() ? mapOfEnumToSimpleStructAsStrings() : null) + .add("MapOfEnumToListOfEnums", hasMapOfEnumToListOfEnums() ? mapOfEnumToListOfEnumsAsStrings() : null) + .add("MapOfEnumToMapOfStringToEnum", + hasMapOfEnumToMapOfStringToEnum() ? mapOfEnumToMapOfStringToEnumAsStrings() : null) + .add("TimestampMember", timestampMember()) + .add("StructWithNestedTimestampMember", structWithNestedTimestampMember()).add("BlobArg", blobArg()) + .add("StructWithNestedBlob", structWithNestedBlob()).add("BlobMap", hasBlobMap() ? blobMap() : null) + .add("ListOfBlobs", hasListOfBlobs() ? listOfBlobs() : null).add("RecursiveStruct", recursiveStruct()) + .add("PolymorphicTypeWithSubTypes", polymorphicTypeWithSubTypes()) + .add("PolymorphicTypeWithoutSubTypes", polymorphicTypeWithoutSubTypes()).add("EnumType", enumTypeAsString()) + .build(); } public Optional getValueForField(String fieldName, Class clazz) { @@ -2044,6 +2071,9 @@ public final void setLongMember(Long longMember) { } public final Collection getSimpleList() { + if (simpleList instanceof SdkAutoConstructList) { + return null; + } return simpleList; } @@ -2065,6 +2095,9 @@ public final void setSimpleList(Collection simpleList) { } public final Collection getListOfEnums() { + if (listOfEnums instanceof SdkAutoConstructList) { + return null; + } return listOfEnums; } @@ -2099,6 +2132,9 @@ public final void setListOfEnums(Collection listOfEnums) { } public final Collection> getListOfMaps() { + if (listOfMaps instanceof SdkAutoConstructList) { + return null; + } return listOfMaps; } @@ -2120,6 +2156,9 @@ public final void setListOfMaps(Collection> listOf } public final Collection getListOfStructs() { + if (listOfStructs instanceof SdkAutoConstructList) { + return null; + } return listOfStructs != null ? listOfStructs.stream().map(SimpleStruct::toBuilder).collect(Collectors.toList()) : null; } @@ -2150,6 +2189,9 @@ public final void setListOfStructs(Collection listOfSt } public final Collection> getListOfMapOfEnumToString() { + if (listOfMapOfEnumToString instanceof SdkAutoConstructList) { + return null; + } return listOfMapOfEnumToString; } @@ -2171,6 +2213,9 @@ public final void setListOfMapOfEnumToString(Collection> getMapOfStringToIntegerList() { + if (mapOfStringToIntegerList instanceof SdkAutoConstructMap) { + return null; + } return mapOfStringToIntegerList; } @@ -2185,6 +2230,9 @@ public final void setMapOfStringToIntegerList(Map getMapOfStringToString() { + if (mapOfStringToString instanceof SdkAutoConstructMap) { + return null; + } return mapOfStringToString; } @@ -2199,6 +2247,9 @@ public final void setMapOfStringToString(Map mapOfStringToString } public final Map getMapOfStringToSimpleStruct() { + if (mapOfStringToSimpleStruct instanceof SdkAutoConstructMap) { + return null; + } return mapOfStringToSimpleStruct != null ? CollectionUtils.mapValues(mapOfStringToSimpleStruct, SimpleStruct::toBuilder) : null; } @@ -2214,6 +2265,9 @@ public final void setMapOfStringToSimpleStruct(Map getMapOfEnumToEnum() { + if (mapOfEnumToEnum instanceof SdkAutoConstructMap) { + return null; + } return mapOfEnumToEnum; } @@ -2234,6 +2288,9 @@ public final void setMapOfEnumToEnum(Map mapOfEnumToEnum) { } public final Map getMapOfEnumToString() { + if (mapOfEnumToString instanceof SdkAutoConstructMap) { + return null; + } return mapOfEnumToString; } @@ -2254,6 +2311,9 @@ public final void setMapOfEnumToString(Map mapOfEnumToString) { } public final Map getMapOfStringToEnum() { + if (mapOfStringToEnum instanceof SdkAutoConstructMap) { + return null; + } return mapOfStringToEnum; } @@ -2274,6 +2334,9 @@ public final void setMapOfStringToEnum(Map mapOfStringToEnum) { } public final Map getMapOfEnumToSimpleStruct() { + if (mapOfEnumToSimpleStruct instanceof SdkAutoConstructMap) { + return null; + } return mapOfEnumToSimpleStruct != null ? CollectionUtils.mapValues(mapOfEnumToSimpleStruct, SimpleStruct::toBuilder) : null; } @@ -2295,6 +2358,9 @@ public final void setMapOfEnumToSimpleStruct(Map> getMapOfEnumToListOfEnums() { + if (mapOfEnumToListOfEnums instanceof SdkAutoConstructMap) { + return null; + } return mapOfEnumToListOfEnums; } @@ -2315,6 +2381,9 @@ public final void setMapOfEnumToListOfEnums(Map> getMapOfEnumToMapOfStringToEnum() { + if (mapOfEnumToMapOfStringToEnum instanceof SdkAutoConstructMap) { + return null; + } return mapOfEnumToMapOfStringToEnum; } @@ -2392,6 +2461,9 @@ public final void setStructWithNestedBlob(StructWithNestedBlobType.BuilderImpl s } public final Map getBlobMap() { + if (blobMap instanceof SdkAutoConstructMap) { + return null; + } return blobMap == null ? null : blobMap.entrySet().stream() .collect(Collectors.toMap(e -> e.getKey(), e -> e.getValue().asByteBuffer())); } @@ -2408,6 +2480,9 @@ public final void setBlobMap(Map blobMap) { } public final List getListOfBlobs() { + if (listOfBlobs instanceof SdkAutoConstructList) { + return null; + } return listOfBlobs == null ? null : listOfBlobs.stream().map(SdkBytes::asByteBuffer).collect(Collectors.toList()); } diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/alltypesresponse.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/alltypesresponse.java index 84700b2e37c5..9be04b10308a 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/alltypesresponse.java +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/alltypesresponse.java @@ -1160,26 +1160,27 @@ public int hashCode() { hashCode = 31 * hashCode + Objects.hashCode(floatMember()); hashCode = 31 * hashCode + Objects.hashCode(doubleMember()); hashCode = 31 * hashCode + Objects.hashCode(longMember()); - hashCode = 31 * hashCode + Objects.hashCode(simpleList()); - hashCode = 31 * hashCode + Objects.hashCode(listOfEnumsAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(listOfMaps()); - hashCode = 31 * hashCode + Objects.hashCode(listOfStructs()); - hashCode = 31 * hashCode + Objects.hashCode(listOfMapOfEnumToStringAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfStringToIntegerList()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfStringToString()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfStringToSimpleStruct()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfEnumToEnumAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfEnumToStringAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfStringToEnumAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfEnumToSimpleStructAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfEnumToListOfEnumsAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfEnumToMapOfStringToEnumAsStrings()); + hashCode = 31 * hashCode + Objects.hashCode(hasSimpleList() ? simpleList() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasListOfEnums() ? listOfEnumsAsStrings() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasListOfMaps() ? listOfMaps() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasListOfStructs() ? listOfStructs() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasListOfMapOfEnumToString() ? listOfMapOfEnumToStringAsStrings() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasMapOfStringToIntegerList() ? mapOfStringToIntegerList() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasMapOfStringToString() ? mapOfStringToString() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasMapOfStringToSimpleStruct() ? mapOfStringToSimpleStruct() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasMapOfEnumToEnum() ? mapOfEnumToEnumAsStrings() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasMapOfEnumToString() ? mapOfEnumToStringAsStrings() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasMapOfStringToEnum() ? mapOfStringToEnumAsStrings() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasMapOfEnumToSimpleStruct() ? mapOfEnumToSimpleStructAsStrings() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasMapOfEnumToListOfEnums() ? mapOfEnumToListOfEnumsAsStrings() : null); + hashCode = 31 * hashCode + + Objects.hashCode(hasMapOfEnumToMapOfStringToEnum() ? mapOfEnumToMapOfStringToEnumAsStrings() : null); hashCode = 31 * hashCode + Objects.hashCode(timestampMember()); hashCode = 31 * hashCode + Objects.hashCode(structWithNestedTimestampMember()); hashCode = 31 * hashCode + Objects.hashCode(blobArg()); hashCode = 31 * hashCode + Objects.hashCode(structWithNestedBlob()); - hashCode = 31 * hashCode + Objects.hashCode(blobMap()); - hashCode = 31 * hashCode + Objects.hashCode(listOfBlobs()); + hashCode = 31 * hashCode + Objects.hashCode(hasBlobMap() ? blobMap() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasListOfBlobs() ? listOfBlobs() : null); hashCode = 31 * hashCode + Objects.hashCode(recursiveStruct()); hashCode = 31 * hashCode + Objects.hashCode(polymorphicTypeWithSubTypes()); hashCode = 31 * hashCode + Objects.hashCode(polymorphicTypeWithoutSubTypes()); @@ -1207,24 +1208,37 @@ public boolean equalsBySdkFields(Object obj) { return Objects.equals(stringMember(), other.stringMember()) && Objects.equals(integerMember(), other.integerMember()) && Objects.equals(booleanMember(), other.booleanMember()) && Objects.equals(floatMember(), other.floatMember()) && Objects.equals(doubleMember(), other.doubleMember()) && Objects.equals(longMember(), other.longMember()) - && Objects.equals(simpleList(), other.simpleList()) + && hasSimpleList() == other.hasSimpleList() && Objects.equals(simpleList(), other.simpleList()) + && hasListOfEnums() == other.hasListOfEnums() && Objects.equals(listOfEnumsAsStrings(), other.listOfEnumsAsStrings()) - && Objects.equals(listOfMaps(), other.listOfMaps()) && Objects.equals(listOfStructs(), other.listOfStructs()) + && hasListOfMaps() == other.hasListOfMaps() && Objects.equals(listOfMaps(), other.listOfMaps()) + && hasListOfStructs() == other.hasListOfStructs() && Objects.equals(listOfStructs(), other.listOfStructs()) + && hasListOfMapOfEnumToString() == other.hasListOfMapOfEnumToString() && Objects.equals(listOfMapOfEnumToStringAsStrings(), other.listOfMapOfEnumToStringAsStrings()) + && hasMapOfStringToIntegerList() == other.hasMapOfStringToIntegerList() && Objects.equals(mapOfStringToIntegerList(), other.mapOfStringToIntegerList()) + && hasMapOfStringToString() == other.hasMapOfStringToString() && Objects.equals(mapOfStringToString(), other.mapOfStringToString()) + && hasMapOfStringToSimpleStruct() == other.hasMapOfStringToSimpleStruct() && Objects.equals(mapOfStringToSimpleStruct(), other.mapOfStringToSimpleStruct()) + && hasMapOfEnumToEnum() == other.hasMapOfEnumToEnum() && Objects.equals(mapOfEnumToEnumAsStrings(), other.mapOfEnumToEnumAsStrings()) + && hasMapOfEnumToString() == other.hasMapOfEnumToString() && Objects.equals(mapOfEnumToStringAsStrings(), other.mapOfEnumToStringAsStrings()) + && hasMapOfStringToEnum() == other.hasMapOfStringToEnum() && Objects.equals(mapOfStringToEnumAsStrings(), other.mapOfStringToEnumAsStrings()) + && hasMapOfEnumToSimpleStruct() == other.hasMapOfEnumToSimpleStruct() && Objects.equals(mapOfEnumToSimpleStructAsStrings(), other.mapOfEnumToSimpleStructAsStrings()) + && hasMapOfEnumToListOfEnums() == other.hasMapOfEnumToListOfEnums() && Objects.equals(mapOfEnumToListOfEnumsAsStrings(), other.mapOfEnumToListOfEnumsAsStrings()) + && hasMapOfEnumToMapOfStringToEnum() == other.hasMapOfEnumToMapOfStringToEnum() && Objects.equals(mapOfEnumToMapOfStringToEnumAsStrings(), other.mapOfEnumToMapOfStringToEnumAsStrings()) && Objects.equals(timestampMember(), other.timestampMember()) && Objects.equals(structWithNestedTimestampMember(), other.structWithNestedTimestampMember()) && Objects.equals(blobArg(), other.blobArg()) - && Objects.equals(structWithNestedBlob(), other.structWithNestedBlob()) - && Objects.equals(blobMap(), other.blobMap()) && Objects.equals(listOfBlobs(), other.listOfBlobs()) + && Objects.equals(structWithNestedBlob(), other.structWithNestedBlob()) && hasBlobMap() == other.hasBlobMap() + && Objects.equals(blobMap(), other.blobMap()) && hasListOfBlobs() == other.hasListOfBlobs() + && Objects.equals(listOfBlobs(), other.listOfBlobs()) && Objects.equals(recursiveStruct(), other.recursiveStruct()) && Objects.equals(polymorphicTypeWithSubTypes(), other.polymorphicTypeWithSubTypes()) && Objects.equals(polymorphicTypeWithoutSubTypes(), other.polymorphicTypeWithoutSubTypes()) @@ -1237,23 +1251,36 @@ public boolean equalsBySdkFields(Object obj) { */ @Override public String toString() { - return ToString.builder("AllTypesResponse").add("StringMember", stringMember()).add("IntegerMember", integerMember()) - .add("BooleanMember", booleanMember()).add("FloatMember", floatMember()).add("DoubleMember", doubleMember()) - .add("LongMember", longMember()).add("SimpleList", simpleList()).add("ListOfEnums", listOfEnumsAsStrings()) - .add("ListOfMaps", listOfMaps()).add("ListOfStructs", listOfStructs()) - .add("ListOfMapOfEnumToString", listOfMapOfEnumToStringAsStrings()) - .add("MapOfStringToIntegerList", mapOfStringToIntegerList()).add("MapOfStringToString", mapOfStringToString()) - .add("MapOfStringToSimpleStruct", mapOfStringToSimpleStruct()).add("MapOfEnumToEnum", mapOfEnumToEnumAsStrings()) - .add("MapOfEnumToString", mapOfEnumToStringAsStrings()).add("MapOfStringToEnum", mapOfStringToEnumAsStrings()) - .add("MapOfEnumToSimpleStruct", mapOfEnumToSimpleStructAsStrings()) - .add("MapOfEnumToListOfEnums", mapOfEnumToListOfEnumsAsStrings()) - .add("MapOfEnumToMapOfStringToEnum", mapOfEnumToMapOfStringToEnumAsStrings()) - .add("TimestampMember", timestampMember()) - .add("StructWithNestedTimestampMember", structWithNestedTimestampMember()).add("BlobArg", blobArg()) - .add("StructWithNestedBlob", structWithNestedBlob()).add("BlobMap", blobMap()).add("ListOfBlobs", listOfBlobs()) - .add("RecursiveStruct", recursiveStruct()).add("PolymorphicTypeWithSubTypes", polymorphicTypeWithSubTypes()) - .add("PolymorphicTypeWithoutSubTypes", polymorphicTypeWithoutSubTypes()).add("EnumType", enumTypeAsString()) - .build(); + return ToString + .builder("AllTypesResponse") + .add("StringMember", stringMember()) + .add("IntegerMember", integerMember()) + .add("BooleanMember", booleanMember()) + .add("FloatMember", floatMember()) + .add("DoubleMember", doubleMember()) + .add("LongMember", longMember()) + .add("SimpleList", hasSimpleList() ? simpleList() : null) + .add("ListOfEnums", hasListOfEnums() ? listOfEnumsAsStrings() : null) + .add("ListOfMaps", hasListOfMaps() ? listOfMaps() : null) + .add("ListOfStructs", hasListOfStructs() ? listOfStructs() : null) + .add("ListOfMapOfEnumToString", hasListOfMapOfEnumToString() ? listOfMapOfEnumToStringAsStrings() : null) + .add("MapOfStringToIntegerList", hasMapOfStringToIntegerList() ? mapOfStringToIntegerList() : null) + .add("MapOfStringToString", hasMapOfStringToString() ? mapOfStringToString() : null) + .add("MapOfStringToSimpleStruct", hasMapOfStringToSimpleStruct() ? mapOfStringToSimpleStruct() : null) + .add("MapOfEnumToEnum", hasMapOfEnumToEnum() ? mapOfEnumToEnumAsStrings() : null) + .add("MapOfEnumToString", hasMapOfEnumToString() ? mapOfEnumToStringAsStrings() : null) + .add("MapOfStringToEnum", hasMapOfStringToEnum() ? mapOfStringToEnumAsStrings() : null) + .add("MapOfEnumToSimpleStruct", hasMapOfEnumToSimpleStruct() ? mapOfEnumToSimpleStructAsStrings() : null) + .add("MapOfEnumToListOfEnums", hasMapOfEnumToListOfEnums() ? mapOfEnumToListOfEnumsAsStrings() : null) + .add("MapOfEnumToMapOfStringToEnum", + hasMapOfEnumToMapOfStringToEnum() ? mapOfEnumToMapOfStringToEnumAsStrings() : null) + .add("TimestampMember", timestampMember()) + .add("StructWithNestedTimestampMember", structWithNestedTimestampMember()).add("BlobArg", blobArg()) + .add("StructWithNestedBlob", structWithNestedBlob()).add("BlobMap", hasBlobMap() ? blobMap() : null) + .add("ListOfBlobs", hasListOfBlobs() ? listOfBlobs() : null).add("RecursiveStruct", recursiveStruct()) + .add("PolymorphicTypeWithSubTypes", polymorphicTypeWithSubTypes()) + .add("PolymorphicTypeWithoutSubTypes", polymorphicTypeWithoutSubTypes()).add("EnumType", enumTypeAsString()) + .build(); } public Optional getValueForField(String fieldName, Class clazz) { @@ -2037,6 +2064,9 @@ public final void setLongMember(Long longMember) { } public final Collection getSimpleList() { + if (simpleList instanceof SdkAutoConstructList) { + return null; + } return simpleList; } @@ -2058,6 +2088,9 @@ public final void setSimpleList(Collection simpleList) { } public final Collection getListOfEnums() { + if (listOfEnums instanceof SdkAutoConstructList) { + return null; + } return listOfEnums; } @@ -2092,6 +2125,9 @@ public final void setListOfEnums(Collection listOfEnums) { } public final Collection> getListOfMaps() { + if (listOfMaps instanceof SdkAutoConstructList) { + return null; + } return listOfMaps; } @@ -2113,6 +2149,9 @@ public final void setListOfMaps(Collection> listOf } public final Collection getListOfStructs() { + if (listOfStructs instanceof SdkAutoConstructList) { + return null; + } return listOfStructs != null ? listOfStructs.stream().map(SimpleStruct::toBuilder).collect(Collectors.toList()) : null; } @@ -2143,6 +2182,9 @@ public final void setListOfStructs(Collection listOfSt } public final Collection> getListOfMapOfEnumToString() { + if (listOfMapOfEnumToString instanceof SdkAutoConstructList) { + return null; + } return listOfMapOfEnumToString; } @@ -2164,6 +2206,9 @@ public final void setListOfMapOfEnumToString(Collection> getMapOfStringToIntegerList() { + if (mapOfStringToIntegerList instanceof SdkAutoConstructMap) { + return null; + } return mapOfStringToIntegerList; } @@ -2178,6 +2223,9 @@ public final void setMapOfStringToIntegerList(Map getMapOfStringToString() { + if (mapOfStringToString instanceof SdkAutoConstructMap) { + return null; + } return mapOfStringToString; } @@ -2192,6 +2240,9 @@ public final void setMapOfStringToString(Map mapOfStringToString } public final Map getMapOfStringToSimpleStruct() { + if (mapOfStringToSimpleStruct instanceof SdkAutoConstructMap) { + return null; + } return mapOfStringToSimpleStruct != null ? CollectionUtils.mapValues(mapOfStringToSimpleStruct, SimpleStruct::toBuilder) : null; } @@ -2207,6 +2258,9 @@ public final void setMapOfStringToSimpleStruct(Map getMapOfEnumToEnum() { + if (mapOfEnumToEnum instanceof SdkAutoConstructMap) { + return null; + } return mapOfEnumToEnum; } @@ -2227,6 +2281,9 @@ public final void setMapOfEnumToEnum(Map mapOfEnumToEnum) { } public final Map getMapOfEnumToString() { + if (mapOfEnumToString instanceof SdkAutoConstructMap) { + return null; + } return mapOfEnumToString; } @@ -2247,6 +2304,9 @@ public final void setMapOfEnumToString(Map mapOfEnumToString) { } public final Map getMapOfStringToEnum() { + if (mapOfStringToEnum instanceof SdkAutoConstructMap) { + return null; + } return mapOfStringToEnum; } @@ -2267,6 +2327,9 @@ public final void setMapOfStringToEnum(Map mapOfStringToEnum) { } public final Map getMapOfEnumToSimpleStruct() { + if (mapOfEnumToSimpleStruct instanceof SdkAutoConstructMap) { + return null; + } return mapOfEnumToSimpleStruct != null ? CollectionUtils.mapValues(mapOfEnumToSimpleStruct, SimpleStruct::toBuilder) : null; } @@ -2288,6 +2351,9 @@ public final void setMapOfEnumToSimpleStruct(Map> getMapOfEnumToListOfEnums() { + if (mapOfEnumToListOfEnums instanceof SdkAutoConstructMap) { + return null; + } return mapOfEnumToListOfEnums; } @@ -2308,6 +2374,9 @@ public final void setMapOfEnumToListOfEnums(Map> getMapOfEnumToMapOfStringToEnum() { + if (mapOfEnumToMapOfStringToEnum instanceof SdkAutoConstructMap) { + return null; + } return mapOfEnumToMapOfStringToEnum; } @@ -2385,6 +2454,9 @@ public final void setStructWithNestedBlob(StructWithNestedBlobType.BuilderImpl s } public final Map getBlobMap() { + if (blobMap instanceof SdkAutoConstructMap) { + return null; + } return blobMap == null ? null : blobMap.entrySet().stream() .collect(Collectors.toMap(e -> e.getKey(), e -> e.getValue().asByteBuffer())); } @@ -2401,6 +2473,9 @@ public final void setBlobMap(Map blobMap) { } public final List getListOfBlobs() { + if (listOfBlobs instanceof SdkAutoConstructList) { + return null; + } return listOfBlobs == null ? null : listOfBlobs.stream().map(SdkBytes::asByteBuffer).collect(Collectors.toList()); } diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/existencechecknamingrequest.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/existencechecknamingrequest.java index 271d69003275..630bc55458a5 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/existencechecknamingrequest.java +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/existencechecknamingrequest.java @@ -216,10 +216,10 @@ public static Class serializableBuilderClass() { public int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + super.hashCode(); - hashCode = 31 * hashCode + Objects.hashCode(build()); - hashCode = 31 * hashCode + Objects.hashCode(superValue()); - hashCode = 31 * hashCode + Objects.hashCode(toStringValue()); - hashCode = 31 * hashCode + Objects.hashCode(equalsValue()); + hashCode = 31 * hashCode + Objects.hashCode(hasBuild() ? build() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasSuperValue() ? superValue() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasToStringValue() ? toStringValue() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasEqualsValue() ? equalsValue() : null); return hashCode; } @@ -240,8 +240,10 @@ public boolean equalsBySdkFields(Object obj) { return false; } ExistenceCheckNamingRequest other = (ExistenceCheckNamingRequest) obj; - return Objects.equals(build(), other.build()) && Objects.equals(superValue(), other.superValue()) - && Objects.equals(toStringValue(), other.toStringValue()) && Objects.equals(equalsValue(), other.equalsValue()); + return hasBuild() == other.hasBuild() && Objects.equals(build(), other.build()) + && hasSuperValue() == other.hasSuperValue() && Objects.equals(superValue(), other.superValue()) + && hasToStringValue() == other.hasToStringValue() && Objects.equals(toStringValue(), other.toStringValue()) + && hasEqualsValue() == other.hasEqualsValue() && Objects.equals(equalsValue(), other.equalsValue()); } /** @@ -250,8 +252,9 @@ public boolean equalsBySdkFields(Object obj) { */ @Override public String toString() { - return ToString.builder("ExistenceCheckNamingRequest").add("Build", build()).add("Super", superValue()) - .add("ToString", toStringValue()).add("Equals", equalsValue()).build(); + return ToString.builder("ExistenceCheckNamingRequest").add("Build", hasBuild() ? build() : null) + .add("Super", hasSuperValue() ? superValue() : null).add("ToString", hasToStringValue() ? toStringValue() : null) + .add("Equals", hasEqualsValue() ? equalsValue() : null).build(); } public Optional getValueForField(String fieldName, Class clazz) { @@ -366,6 +369,9 @@ private BuilderImpl(ExistenceCheckNamingRequest model) { } public final Collection getBuild() { + if (build instanceof SdkAutoConstructList) { + return null; + } return build; } @@ -387,6 +393,9 @@ public final void setBuild(Collection build) { } public final Collection getSuperValue() { + if (superValue instanceof SdkAutoConstructList) { + return null; + } return superValue; } @@ -408,6 +417,9 @@ public final void setSuperValue(Collection superValue) { } public final Map getToStringValue() { + if (toStringValue instanceof SdkAutoConstructMap) { + return null; + } return toStringValue; } @@ -422,6 +434,9 @@ public final void setToStringValue(Map toStringValue) { } public final Map getEqualsValue() { + if (equalsValue instanceof SdkAutoConstructMap) { + return null; + } return equalsValue; } diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/existencechecknamingresponse.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/existencechecknamingresponse.java index a06b08e5a891..b337a90887ff 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/existencechecknamingresponse.java +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/existencechecknamingresponse.java @@ -214,10 +214,10 @@ public static Class serializableBuilderClass() { public int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + super.hashCode(); - hashCode = 31 * hashCode + Objects.hashCode(build()); - hashCode = 31 * hashCode + Objects.hashCode(superValue()); - hashCode = 31 * hashCode + Objects.hashCode(toStringValue()); - hashCode = 31 * hashCode + Objects.hashCode(equalsValue()); + hashCode = 31 * hashCode + Objects.hashCode(hasBuild() ? build() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasSuperValue() ? superValue() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasToStringValue() ? toStringValue() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasEqualsValue() ? equalsValue() : null); return hashCode; } @@ -238,8 +238,10 @@ public boolean equalsBySdkFields(Object obj) { return false; } ExistenceCheckNamingResponse other = (ExistenceCheckNamingResponse) obj; - return Objects.equals(build(), other.build()) && Objects.equals(superValue(), other.superValue()) - && Objects.equals(toStringValue(), other.toStringValue()) && Objects.equals(equalsValue(), other.equalsValue()); + return hasBuild() == other.hasBuild() && Objects.equals(build(), other.build()) + && hasSuperValue() == other.hasSuperValue() && Objects.equals(superValue(), other.superValue()) + && hasToStringValue() == other.hasToStringValue() && Objects.equals(toStringValue(), other.toStringValue()) + && hasEqualsValue() == other.hasEqualsValue() && Objects.equals(equalsValue(), other.equalsValue()); } /** @@ -248,8 +250,9 @@ public boolean equalsBySdkFields(Object obj) { */ @Override public String toString() { - return ToString.builder("ExistenceCheckNamingResponse").add("Build", build()).add("Super", superValue()) - .add("ToString", toStringValue()).add("Equals", equalsValue()).build(); + return ToString.builder("ExistenceCheckNamingResponse").add("Build", hasBuild() ? build() : null) + .add("Super", hasSuperValue() ? superValue() : null).add("ToString", hasToStringValue() ? toStringValue() : null) + .add("Equals", hasEqualsValue() ? equalsValue() : null).build(); } public Optional getValueForField(String fieldName, Class clazz) { @@ -358,6 +361,9 @@ private BuilderImpl(ExistenceCheckNamingResponse model) { } public final Collection getBuild() { + if (build instanceof SdkAutoConstructList) { + return null; + } return build; } @@ -379,6 +385,9 @@ public final void setBuild(Collection build) { } public final Collection getSuperValue() { + if (superValue instanceof SdkAutoConstructList) { + return null; + } return superValue; } @@ -400,6 +409,9 @@ public final void setSuperValue(Collection superValue) { } public final Map getToStringValue() { + if (toStringValue instanceof SdkAutoConstructMap) { + return null; + } return toStringValue; } @@ -414,6 +426,9 @@ public final void setToStringValue(Map toStringValue) { } public final Map getEqualsValue() { + if (equalsValue instanceof SdkAutoConstructMap) { + return null; + } return equalsValue; } diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/listofsimplestructscopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/listofsimplestructscopier.java index ba144c1b862d..becb315a4d9a 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/listofsimplestructscopier.java +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/listofsimplestructscopier.java @@ -21,8 +21,8 @@ static List copy(Collection listOfSimpleStructsParam } static List copyFromBuilder(Collection listOfSimpleStructsParam) { - if (listOfSimpleStructsParam == null) { - return null; + if (listOfSimpleStructsParam == null || listOfSimpleStructsParam instanceof DefaultSdkAutoConstructList) { + return DefaultSdkAutoConstructList.getInstance(); } return copy(listOfSimpleStructsParam.stream().map(SimpleStruct.Builder::build).collect(toList())); } diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/mapofenumtosimplestructcopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/mapofenumtosimplestructcopier.java index 3bc4cb33b5f0..e0e532a1de26 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/mapofenumtosimplestructcopier.java +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/mapofenumtosimplestructcopier.java @@ -16,13 +16,13 @@ static Map copy(Map mapOfEnumToSimpl return DefaultSdkAutoConstructMap.getInstance(); } Map mapOfEnumToSimpleStructParamCopy = mapOfEnumToSimpleStructParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> m.put(e.getKey(), e.getValue()), HashMap::putAll); + .collect(HashMap::new, (m, e) -> m.put(e.getKey(), e.getValue()), HashMap::putAll); return Collections.unmodifiableMap(mapOfEnumToSimpleStructParamCopy); } static Map copyFromBuilder(Map mapOfEnumToSimpleStructParam) { - if (mapOfEnumToSimpleStructParam == null) { - return null; + if (mapOfEnumToSimpleStructParam == null || mapOfEnumToSimpleStructParam instanceof DefaultSdkAutoConstructMap) { + return DefaultSdkAutoConstructMap.getInstance(); } return copy(mapOfEnumToSimpleStructParam.entrySet().stream().collect(toMap(Map.Entry::getKey, e -> e.getValue().build()))); } @@ -32,7 +32,7 @@ static Map copyEnumToString(Map ma return DefaultSdkAutoConstructMap.getInstance(); } Map mapOfEnumToSimpleStructParamCopy = mapOfEnumToSimpleStructParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> m.put(e.getKey().toString(), e.getValue()), HashMap::putAll); + .collect(HashMap::new, (m, e) -> m.put(e.getKey().toString(), e.getValue()), HashMap::putAll); return Collections.unmodifiableMap(mapOfEnumToSimpleStructParamCopy); } @@ -41,12 +41,12 @@ static Map copyStringToEnum(Map ma return DefaultSdkAutoConstructMap.getInstance(); } Map mapOfEnumToSimpleStructParamCopy = mapOfEnumToSimpleStructParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> { - EnumType keyAsEnum = EnumType.fromValue(e.getKey()); - if (keyAsEnum != EnumType.UNKNOWN_TO_SDK_VERSION) { - m.put(keyAsEnum, e.getValue()); - } - }, HashMap::putAll); + .collect(HashMap::new, (m, e) -> { + EnumType keyAsEnum = EnumType.fromValue(e.getKey()); + if (keyAsEnum != EnumType.UNKNOWN_TO_SDK_VERSION) { + m.put(keyAsEnum, e.getValue()); + } + }, HashMap::putAll); return Collections.unmodifiableMap(mapOfEnumToSimpleStructParamCopy); } } diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/mapofstringtosimplestructcopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/mapofstringtosimplestructcopier.java index 226288537ce2..50471407921b 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/mapofstringtosimplestructcopier.java +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/mapofstringtosimplestructcopier.java @@ -16,15 +16,15 @@ static Map copy(Map mapOfStringToSim return DefaultSdkAutoConstructMap.getInstance(); } Map mapOfStringToSimpleStructParamCopy = mapOfStringToSimpleStructParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> m.put(e.getKey(), e.getValue()), HashMap::putAll); + .collect(HashMap::new, (m, e) -> m.put(e.getKey(), e.getValue()), HashMap::putAll); return Collections.unmodifiableMap(mapOfStringToSimpleStructParamCopy); } static Map copyFromBuilder(Map mapOfStringToSimpleStructParam) { - if (mapOfStringToSimpleStructParam == null) { - return null; + if (mapOfStringToSimpleStructParam == null || mapOfStringToSimpleStructParam instanceof DefaultSdkAutoConstructMap) { + return DefaultSdkAutoConstructMap.getInstance(); } return copy(mapOfStringToSimpleStructParam.entrySet().stream() - .collect(toMap(Map.Entry::getKey, e -> e.getValue().build()))); + .collect(toMap(Map.Entry::getKey, e -> e.getValue().build()))); } } diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nestedcontainersrequest.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nestedcontainersrequest.java index dc2c1d9cae0f..2e159967a7bc 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nestedcontainersrequest.java +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nestedcontainersrequest.java @@ -235,9 +235,10 @@ public static Class serializableBuilderClass() { public int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + super.hashCode(); - hashCode = 31 * hashCode + Objects.hashCode(listOfListOfStrings()); - hashCode = 31 * hashCode + Objects.hashCode(listOfListOfListOfStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfStringToListOfListOfStrings()); + hashCode = 31 * hashCode + Objects.hashCode(hasListOfListOfStrings() ? listOfListOfStrings() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasListOfListOfListOfStrings() ? listOfListOfListOfStrings() : null); + hashCode = 31 * hashCode + + Objects.hashCode(hasMapOfStringToListOfListOfStrings() ? mapOfStringToListOfListOfStrings() : null); return hashCode; } @@ -258,8 +259,11 @@ public boolean equalsBySdkFields(Object obj) { return false; } NestedContainersRequest other = (NestedContainersRequest) obj; - return Objects.equals(listOfListOfStrings(), other.listOfListOfStrings()) + return hasListOfListOfStrings() == other.hasListOfListOfStrings() + && Objects.equals(listOfListOfStrings(), other.listOfListOfStrings()) + && hasListOfListOfListOfStrings() == other.hasListOfListOfListOfStrings() && Objects.equals(listOfListOfListOfStrings(), other.listOfListOfListOfStrings()) + && hasMapOfStringToListOfListOfStrings() == other.hasMapOfStringToListOfListOfStrings() && Objects.equals(mapOfStringToListOfListOfStrings(), other.mapOfStringToListOfListOfStrings()); } @@ -269,9 +273,12 @@ public boolean equalsBySdkFields(Object obj) { */ @Override public String toString() { - return ToString.builder("NestedContainersRequest").add("ListOfListOfStrings", listOfListOfStrings()) - .add("ListOfListOfListOfStrings", listOfListOfListOfStrings()) - .add("MapOfStringToListOfListOfStrings", mapOfStringToListOfListOfStrings()).build(); + return ToString + .builder("NestedContainersRequest") + .add("ListOfListOfStrings", hasListOfListOfStrings() ? listOfListOfStrings() : null) + .add("ListOfListOfListOfStrings", hasListOfListOfListOfStrings() ? listOfListOfListOfStrings() : null) + .add("MapOfStringToListOfListOfStrings", + hasMapOfStringToListOfListOfStrings() ? mapOfStringToListOfListOfStrings() : null).build(); } public Optional getValueForField(String fieldName, Class clazz) { @@ -372,6 +379,9 @@ private BuilderImpl(NestedContainersRequest model) { } public final Collection> getListOfListOfStrings() { + if (listOfListOfStrings instanceof SdkAutoConstructList) { + return null; + } return listOfListOfStrings; } @@ -393,6 +403,9 @@ public final void setListOfListOfStrings(Collection } public final Collection>> getListOfListOfListOfStrings() { + if (listOfListOfListOfStrings instanceof SdkAutoConstructList) { + return null; + } return listOfListOfListOfStrings; } @@ -416,6 +429,9 @@ public final void setListOfListOfListOfStrings( } public final Map>> getMapOfStringToListOfListOfStrings() { + if (mapOfStringToListOfListOfStrings instanceof SdkAutoConstructMap) { + return null; + } return mapOfStringToListOfListOfStrings; } diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nestedcontainersresponse.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nestedcontainersresponse.java index 9812ee459e5c..26d40dc84417 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nestedcontainersresponse.java +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nestedcontainersresponse.java @@ -233,9 +233,10 @@ public static Class serializableBuilderClass() { public int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + super.hashCode(); - hashCode = 31 * hashCode + Objects.hashCode(listOfListOfStrings()); - hashCode = 31 * hashCode + Objects.hashCode(listOfListOfListOfStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfStringToListOfListOfStrings()); + hashCode = 31 * hashCode + Objects.hashCode(hasListOfListOfStrings() ? listOfListOfStrings() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasListOfListOfListOfStrings() ? listOfListOfListOfStrings() : null); + hashCode = 31 * hashCode + + Objects.hashCode(hasMapOfStringToListOfListOfStrings() ? mapOfStringToListOfListOfStrings() : null); return hashCode; } @@ -256,8 +257,11 @@ public boolean equalsBySdkFields(Object obj) { return false; } NestedContainersResponse other = (NestedContainersResponse) obj; - return Objects.equals(listOfListOfStrings(), other.listOfListOfStrings()) + return hasListOfListOfStrings() == other.hasListOfListOfStrings() + && Objects.equals(listOfListOfStrings(), other.listOfListOfStrings()) + && hasListOfListOfListOfStrings() == other.hasListOfListOfListOfStrings() && Objects.equals(listOfListOfListOfStrings(), other.listOfListOfListOfStrings()) + && hasMapOfStringToListOfListOfStrings() == other.hasMapOfStringToListOfListOfStrings() && Objects.equals(mapOfStringToListOfListOfStrings(), other.mapOfStringToListOfListOfStrings()); } @@ -267,9 +271,12 @@ public boolean equalsBySdkFields(Object obj) { */ @Override public String toString() { - return ToString.builder("NestedContainersResponse").add("ListOfListOfStrings", listOfListOfStrings()) - .add("ListOfListOfListOfStrings", listOfListOfListOfStrings()) - .add("MapOfStringToListOfListOfStrings", mapOfStringToListOfListOfStrings()).build(); + return ToString + .builder("NestedContainersResponse") + .add("ListOfListOfStrings", hasListOfListOfStrings() ? listOfListOfStrings() : null) + .add("ListOfListOfListOfStrings", hasListOfListOfListOfStrings() ? listOfListOfListOfStrings() : null) + .add("MapOfStringToListOfListOfStrings", + hasMapOfStringToListOfListOfStrings() ? mapOfStringToListOfListOfStrings() : null).build(); } public Optional getValueForField(String fieldName, Class clazz) { @@ -365,6 +372,9 @@ private BuilderImpl(NestedContainersResponse model) { } public final Collection> getListOfListOfStrings() { + if (listOfListOfStrings instanceof SdkAutoConstructList) { + return null; + } return listOfListOfStrings; } @@ -386,6 +396,9 @@ public final void setListOfListOfStrings(Collection } public final Collection>> getListOfListOfListOfStrings() { + if (listOfListOfListOfStrings instanceof SdkAutoConstructList) { + return null; + } return listOfListOfListOfStrings; } @@ -409,6 +422,9 @@ public final void setListOfListOfListOfStrings( } public final Map>> getMapOfStringToListOfListOfStrings() { + if (mapOfStringToListOfListOfStrings instanceof SdkAutoConstructMap) { + return null; + } return mapOfStringToListOfListOfStrings; } diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/alltypesrequest.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/alltypesrequest.java deleted file mode 100644 index 41e8affd5b2f..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/alltypesrequest.java +++ /dev/null @@ -1,2515 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import java.nio.ByteBuffer; -import java.time.Instant; -import java.util.Arrays; -import java.util.Collection; -import java.util.Collections; -import java.util.List; -import java.util.Map; -import java.util.Objects; -import java.util.Optional; -import java.util.function.BiConsumer; -import java.util.function.Consumer; -import java.util.function.Function; -import java.util.stream.Collectors; -import java.util.stream.Stream; -import software.amazon.awssdk.annotations.Generated; -import software.amazon.awssdk.awscore.AwsRequestOverrideConfiguration; -import software.amazon.awssdk.core.SdkBytes; -import software.amazon.awssdk.core.SdkField; -import software.amazon.awssdk.core.SdkPojo; -import software.amazon.awssdk.core.adapter.StandardMemberCopier; -import software.amazon.awssdk.core.protocol.MarshallLocation; -import software.amazon.awssdk.core.protocol.MarshallingType; -import software.amazon.awssdk.core.traits.ListTrait; -import software.amazon.awssdk.core.traits.LocationTrait; -import software.amazon.awssdk.core.traits.MapTrait; -import software.amazon.awssdk.core.util.SdkAutoConstructList; -import software.amazon.awssdk.core.util.SdkAutoConstructMap; -import software.amazon.awssdk.utils.CollectionUtils; -import software.amazon.awssdk.utils.ToString; -import software.amazon.awssdk.utils.builder.CopyableBuilder; -import software.amazon.awssdk.utils.builder.ToCopyableBuilder; - -/** - */ -@Generated("software.amazon.awssdk:codegen") -public final class AllTypesRequest extends JsonProtocolTestsRequest implements - ToCopyableBuilder { - private static final SdkField STRING_MEMBER_FIELD = SdkField. builder(MarshallingType.STRING) - .memberName("StringMember").getter(getter(AllTypesRequest::stringMember)).setter(setter(Builder::stringMember)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("StringMember").build()).build(); - - private static final SdkField INTEGER_MEMBER_FIELD = SdkField. builder(MarshallingType.INTEGER) - .memberName("IntegerMember").getter(getter(AllTypesRequest::integerMember)).setter(setter(Builder::integerMember)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("IntegerMember").build()).build(); - - private static final SdkField BOOLEAN_MEMBER_FIELD = SdkField. builder(MarshallingType.BOOLEAN) - .memberName("BooleanMember").getter(getter(AllTypesRequest::booleanMember)).setter(setter(Builder::booleanMember)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("BooleanMember").build()).build(); - - private static final SdkField FLOAT_MEMBER_FIELD = SdkField. builder(MarshallingType.FLOAT) - .memberName("FloatMember").getter(getter(AllTypesRequest::floatMember)).setter(setter(Builder::floatMember)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("FloatMember").build()).build(); - - private static final SdkField DOUBLE_MEMBER_FIELD = SdkField. builder(MarshallingType.DOUBLE) - .memberName("DoubleMember").getter(getter(AllTypesRequest::doubleMember)).setter(setter(Builder::doubleMember)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("DoubleMember").build()).build(); - - private static final SdkField LONG_MEMBER_FIELD = SdkField. builder(MarshallingType.LONG) - .memberName("LongMember").getter(getter(AllTypesRequest::longMember)).setter(setter(Builder::longMember)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("LongMember").build()).build(); - - private static final SdkField> SIMPLE_LIST_FIELD = SdkField - .> builder(MarshallingType.LIST) - .memberName("SimpleList") - .getter(getter(AllTypesRequest::simpleList)) - .setter(setter(Builder::simpleList)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("SimpleList").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("member").build()).build()).build()).build(); - - private static final SdkField> LIST_OF_ENUMS_FIELD = SdkField - .> builder(MarshallingType.LIST) - .memberName("ListOfEnums") - .getter(getter(AllTypesRequest::listOfEnumsAsStrings)) - .setter(setter(Builder::listOfEnumsWithStrings)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ListOfEnums").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("member").build()).build()).build()).build(); - - private static final SdkField>> LIST_OF_MAPS_FIELD = SdkField - .>> builder(MarshallingType.LIST) - .memberName("ListOfMaps") - .getter(getter(AllTypesRequest::listOfMaps)) - .setter(setter(Builder::listOfMaps)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ListOfMaps").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField.> builder(MarshallingType.MAP) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("member").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder() - .location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()) - .build()).build()).build()).build(); - - private static final SdkField> LIST_OF_STRUCTS_FIELD = SdkField - .> builder(MarshallingType.LIST) - .memberName("ListOfStructs") - .getter(getter(AllTypesRequest::listOfStructs)) - .setter(setter(Builder::listOfStructs)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ListOfStructs").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder(MarshallingType.SDK_POJO) - .constructor(SimpleStruct::builder) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("member").build()).build()).build()).build(); - - private static final SdkField>> LIST_OF_MAP_OF_ENUM_TO_STRING_FIELD = SdkField - .>> builder(MarshallingType.LIST) - .memberName("ListOfMapOfEnumToString") - .getter(getter(AllTypesRequest::listOfMapOfEnumToStringAsStrings)) - .setter(setter(Builder::listOfMapOfEnumToStringWithStrings)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ListOfMapOfEnumToString").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField.> builder(MarshallingType.MAP) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("member").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder() - .location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()) - .build()).build()).build()).build(); - - private static final SdkField>> MAP_OF_STRING_TO_INTEGER_LIST_FIELD = SdkField - .>> builder(MarshallingType.MAP) - .memberName("MapOfStringToIntegerList") - .getter(getter(AllTypesRequest::mapOfStringToIntegerList)) - .setter(setter(Builder::mapOfStringToIntegerList)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MapOfStringToIntegerList").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField.> builder(MarshallingType.LIST) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder(MarshallingType.INTEGER) - .traits(LocationTrait.builder() - .location(MarshallLocation.PAYLOAD) - .locationName("member").build()).build()) - .build()).build()).build()).build(); - - private static final SdkField> MAP_OF_STRING_TO_STRING_FIELD = SdkField - .> builder(MarshallingType.MAP) - .memberName("MapOfStringToString") - .getter(getter(AllTypesRequest::mapOfStringToString)) - .setter(setter(Builder::mapOfStringToString)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MapOfStringToString").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()).build()).build(); - - private static final SdkField> MAP_OF_STRING_TO_SIMPLE_STRUCT_FIELD = SdkField - .> builder(MarshallingType.MAP) - .memberName("MapOfStringToSimpleStruct") - .getter(getter(AllTypesRequest::mapOfStringToSimpleStruct)) - .setter(setter(Builder::mapOfStringToSimpleStruct)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MapOfStringToSimpleStruct").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.SDK_POJO) - .constructor(SimpleStruct::builder) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()).build()).build(); - - private static final SdkField> MAP_OF_ENUM_TO_ENUM_FIELD = SdkField - .> builder(MarshallingType.MAP) - .memberName("MapOfEnumToEnum") - .getter(getter(AllTypesRequest::mapOfEnumToEnumAsStrings)) - .setter(setter(Builder::mapOfEnumToEnumWithStrings)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MapOfEnumToEnum").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()).build()).build(); - - private static final SdkField> MAP_OF_ENUM_TO_STRING_FIELD = SdkField - .> builder(MarshallingType.MAP) - .memberName("MapOfEnumToString") - .getter(getter(AllTypesRequest::mapOfEnumToStringAsStrings)) - .setter(setter(Builder::mapOfEnumToStringWithStrings)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MapOfEnumToString").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()).build()).build(); - - private static final SdkField> MAP_OF_STRING_TO_ENUM_FIELD = SdkField - .> builder(MarshallingType.MAP) - .memberName("MapOfStringToEnum") - .getter(getter(AllTypesRequest::mapOfStringToEnumAsStrings)) - .setter(setter(Builder::mapOfStringToEnumWithStrings)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MapOfStringToEnum").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()).build()).build(); - - private static final SdkField> MAP_OF_ENUM_TO_SIMPLE_STRUCT_FIELD = SdkField - .> builder(MarshallingType.MAP) - .memberName("MapOfEnumToSimpleStruct") - .getter(getter(AllTypesRequest::mapOfEnumToSimpleStructAsStrings)) - .setter(setter(Builder::mapOfEnumToSimpleStructWithStrings)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MapOfEnumToSimpleStruct").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.SDK_POJO) - .constructor(SimpleStruct::builder) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()).build()).build(); - - private static final SdkField>> MAP_OF_ENUM_TO_LIST_OF_ENUMS_FIELD = SdkField - .>> builder(MarshallingType.MAP) - .memberName("MapOfEnumToListOfEnums") - .getter(getter(AllTypesRequest::mapOfEnumToListOfEnumsAsStrings)) - .setter(setter(Builder::mapOfEnumToListOfEnumsWithStrings)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MapOfEnumToListOfEnums").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField.> builder(MarshallingType.LIST) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder() - .location(MarshallLocation.PAYLOAD) - .locationName("member").build()).build()) - .build()).build()).build()).build(); - - private static final SdkField>> MAP_OF_ENUM_TO_MAP_OF_STRING_TO_ENUM_FIELD = SdkField - .>> builder(MarshallingType.MAP) - .memberName("MapOfEnumToMapOfStringToEnum") - .getter(getter(AllTypesRequest::mapOfEnumToMapOfStringToEnumAsStrings)) - .setter(setter(Builder::mapOfEnumToMapOfStringToEnumWithStrings)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MapOfEnumToMapOfStringToEnum") - .build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField.> builder(MarshallingType.MAP) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder() - .location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()) - .build()).build()).build()).build(); - - private static final SdkField TIMESTAMP_MEMBER_FIELD = SdkField. builder(MarshallingType.INSTANT) - .memberName("TimestampMember").getter(getter(AllTypesRequest::timestampMember)) - .setter(setter(Builder::timestampMember)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("TimestampMember").build()).build(); - - private static final SdkField STRUCT_WITH_NESTED_TIMESTAMP_MEMBER_FIELD = SdkField - . builder(MarshallingType.SDK_POJO) - .memberName("StructWithNestedTimestampMember") - .getter(getter(AllTypesRequest::structWithNestedTimestampMember)) - .setter(setter(Builder::structWithNestedTimestampMember)) - .constructor(StructWithTimestamp::builder) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("StructWithNestedTimestampMember") - .build()).build(); - - private static final SdkField BLOB_ARG_FIELD = SdkField. builder(MarshallingType.SDK_BYTES) - .memberName("BlobArg").getter(getter(AllTypesRequest::blobArg)).setter(setter(Builder::blobArg)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("BlobArg").build()).build(); - - private static final SdkField STRUCT_WITH_NESTED_BLOB_FIELD = SdkField - . builder(MarshallingType.SDK_POJO).memberName("StructWithNestedBlob") - .getter(getter(AllTypesRequest::structWithNestedBlob)).setter(setter(Builder::structWithNestedBlob)) - .constructor(StructWithNestedBlobType::builder) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("StructWithNestedBlob").build()) - .build(); - - private static final SdkField> BLOB_MAP_FIELD = SdkField - .> builder(MarshallingType.MAP) - .memberName("BlobMap") - .getter(getter(AllTypesRequest::blobMap)) - .setter(setter(Builder::blobMap)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("BlobMap").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.SDK_BYTES) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()).build()).build(); - - private static final SdkField> LIST_OF_BLOBS_FIELD = SdkField - .> builder(MarshallingType.LIST) - .memberName("ListOfBlobs") - .getter(getter(AllTypesRequest::listOfBlobs)) - .setter(setter(Builder::listOfBlobs)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ListOfBlobs").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder(MarshallingType.SDK_BYTES) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("member").build()).build()).build()).build(); - - private static final SdkField RECURSIVE_STRUCT_FIELD = SdkField - . builder(MarshallingType.SDK_POJO).memberName("RecursiveStruct") - .getter(getter(AllTypesRequest::recursiveStruct)).setter(setter(Builder::recursiveStruct)) - .constructor(RecursiveStructType::builder) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("RecursiveStruct").build()).build(); - - private static final SdkField POLYMORPHIC_TYPE_WITH_SUB_TYPES_FIELD = SdkField - . builder(MarshallingType.SDK_POJO) - .memberName("PolymorphicTypeWithSubTypes") - .getter(getter(AllTypesRequest::polymorphicTypeWithSubTypes)) - .setter(setter(Builder::polymorphicTypeWithSubTypes)) - .constructor(BaseType::builder) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("PolymorphicTypeWithSubTypes") - .build()).build(); - - private static final SdkField POLYMORPHIC_TYPE_WITHOUT_SUB_TYPES_FIELD = SdkField - . builder(MarshallingType.SDK_POJO) - .memberName("PolymorphicTypeWithoutSubTypes") - .getter(getter(AllTypesRequest::polymorphicTypeWithoutSubTypes)) - .setter(setter(Builder::polymorphicTypeWithoutSubTypes)) - .constructor(SubTypeOne::builder) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("PolymorphicTypeWithoutSubTypes") - .build()).build(); - - private static final SdkField ENUM_TYPE_FIELD = SdkField. builder(MarshallingType.STRING) - .memberName("EnumType").getter(getter(AllTypesRequest::enumTypeAsString)).setter(setter(Builder::enumType)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("EnumType").build()).build(); - - private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(STRING_MEMBER_FIELD, - INTEGER_MEMBER_FIELD, BOOLEAN_MEMBER_FIELD, FLOAT_MEMBER_FIELD, DOUBLE_MEMBER_FIELD, LONG_MEMBER_FIELD, - SIMPLE_LIST_FIELD, LIST_OF_ENUMS_FIELD, LIST_OF_MAPS_FIELD, LIST_OF_STRUCTS_FIELD, - LIST_OF_MAP_OF_ENUM_TO_STRING_FIELD, MAP_OF_STRING_TO_INTEGER_LIST_FIELD, MAP_OF_STRING_TO_STRING_FIELD, - MAP_OF_STRING_TO_SIMPLE_STRUCT_FIELD, MAP_OF_ENUM_TO_ENUM_FIELD, MAP_OF_ENUM_TO_STRING_FIELD, - MAP_OF_STRING_TO_ENUM_FIELD, MAP_OF_ENUM_TO_SIMPLE_STRUCT_FIELD, MAP_OF_ENUM_TO_LIST_OF_ENUMS_FIELD, - MAP_OF_ENUM_TO_MAP_OF_STRING_TO_ENUM_FIELD, TIMESTAMP_MEMBER_FIELD, STRUCT_WITH_NESTED_TIMESTAMP_MEMBER_FIELD, - BLOB_ARG_FIELD, STRUCT_WITH_NESTED_BLOB_FIELD, BLOB_MAP_FIELD, LIST_OF_BLOBS_FIELD, RECURSIVE_STRUCT_FIELD, - POLYMORPHIC_TYPE_WITH_SUB_TYPES_FIELD, POLYMORPHIC_TYPE_WITHOUT_SUB_TYPES_FIELD, ENUM_TYPE_FIELD)); - - private final String stringMember; - - private final Integer integerMember; - - private final Boolean booleanMember; - - private final Float floatMember; - - private final Double doubleMember; - - private final Long longMember; - - private final List simpleList; - - private final List listOfEnums; - - private final List> listOfMaps; - - private final List listOfStructs; - - private final List> listOfMapOfEnumToString; - - private final Map> mapOfStringToIntegerList; - - private final Map mapOfStringToString; - - private final Map mapOfStringToSimpleStruct; - - private final Map mapOfEnumToEnum; - - private final Map mapOfEnumToString; - - private final Map mapOfStringToEnum; - - private final Map mapOfEnumToSimpleStruct; - - private final Map> mapOfEnumToListOfEnums; - - private final Map> mapOfEnumToMapOfStringToEnum; - - private final Instant timestampMember; - - private final StructWithTimestamp structWithNestedTimestampMember; - - private final SdkBytes blobArg; - - private final StructWithNestedBlobType structWithNestedBlob; - - private final Map blobMap; - - private final List listOfBlobs; - - private final RecursiveStructType recursiveStruct; - - private final BaseType polymorphicTypeWithSubTypes; - - private final SubTypeOne polymorphicTypeWithoutSubTypes; - - private final String enumType; - - private AllTypesRequest(BuilderImpl builder) { - super(builder); - this.stringMember = builder.stringMember; - this.integerMember = builder.integerMember; - this.booleanMember = builder.booleanMember; - this.floatMember = builder.floatMember; - this.doubleMember = builder.doubleMember; - this.longMember = builder.longMember; - this.simpleList = builder.simpleList; - this.listOfEnums = builder.listOfEnums; - this.listOfMaps = builder.listOfMaps; - this.listOfStructs = builder.listOfStructs; - this.listOfMapOfEnumToString = builder.listOfMapOfEnumToString; - this.mapOfStringToIntegerList = builder.mapOfStringToIntegerList; - this.mapOfStringToString = builder.mapOfStringToString; - this.mapOfStringToSimpleStruct = builder.mapOfStringToSimpleStruct; - this.mapOfEnumToEnum = builder.mapOfEnumToEnum; - this.mapOfEnumToString = builder.mapOfEnumToString; - this.mapOfStringToEnum = builder.mapOfStringToEnum; - this.mapOfEnumToSimpleStruct = builder.mapOfEnumToSimpleStruct; - this.mapOfEnumToListOfEnums = builder.mapOfEnumToListOfEnums; - this.mapOfEnumToMapOfStringToEnum = builder.mapOfEnumToMapOfStringToEnum; - this.timestampMember = builder.timestampMember; - this.structWithNestedTimestampMember = builder.structWithNestedTimestampMember; - this.blobArg = builder.blobArg; - this.structWithNestedBlob = builder.structWithNestedBlob; - this.blobMap = builder.blobMap; - this.listOfBlobs = builder.listOfBlobs; - this.recursiveStruct = builder.recursiveStruct; - this.polymorphicTypeWithSubTypes = builder.polymorphicTypeWithSubTypes; - this.polymorphicTypeWithoutSubTypes = builder.polymorphicTypeWithoutSubTypes; - this.enumType = builder.enumType; - } - - /** - * Returns the value of the StringMember property for this object. - * - * @return The value of the StringMember property for this object. - */ - public String stringMember() { - return stringMember; - } - - /** - * Returns the value of the IntegerMember property for this object. - * - * @return The value of the IntegerMember property for this object. - */ - public Integer integerMember() { - return integerMember; - } - - /** - * Returns the value of the BooleanMember property for this object. - * - * @return The value of the BooleanMember property for this object. - */ - public Boolean booleanMember() { - return booleanMember; - } - - /** - * Returns the value of the FloatMember property for this object. - * - * @return The value of the FloatMember property for this object. - */ - public Float floatMember() { - return floatMember; - } - - /** - * Returns the value of the DoubleMember property for this object. - * - * @return The value of the DoubleMember property for this object. - */ - public Double doubleMember() { - return doubleMember; - } - - /** - * Returns the value of the LongMember property for this object. - * - * @return The value of the LongMember property for this object. - */ - public Long longMember() { - return longMember; - } - - /** - * Returns true if the SimpleList property was specified by the sender (it may be empty), or false if the sender did - * not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service. - */ - public boolean hasSimpleList() { - return simpleList != null && !(simpleList instanceof SdkAutoConstructList); - } - - /** - * Returns the value of the SimpleList property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasSimpleList()} to see if a value was sent in this field. - *

- * - * @return The value of the SimpleList property for this object. - */ - public List simpleList() { - return simpleList; - } - - /** - * Returns the value of the ListOfEnums property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasListOfEnums()} to see if a value was sent in this field. - *

- * - * @return The value of the ListOfEnums property for this object. - */ - public List listOfEnums() { - return ListOfEnumsCopier.copyStringToEnum(listOfEnums); - } - - /** - * Returns true if the ListOfEnums property was specified by the sender (it may be empty), or false if the sender - * did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service. - */ - public boolean hasListOfEnums() { - return listOfEnums != null && !(listOfEnums instanceof SdkAutoConstructList); - } - - /** - * Returns the value of the ListOfEnums property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasListOfEnums()} to see if a value was sent in this field. - *

- * - * @return The value of the ListOfEnums property for this object. - */ - public List listOfEnumsAsStrings() { - return listOfEnums; - } - - /** - * Returns true if the ListOfMaps property was specified by the sender (it may be empty), or false if the sender did - * not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service. - */ - public boolean hasListOfMaps() { - return listOfMaps != null && !(listOfMaps instanceof SdkAutoConstructList); - } - - /** - * Returns the value of the ListOfMaps property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasListOfMaps()} to see if a value was sent in this field. - *

- * - * @return The value of the ListOfMaps property for this object. - */ - public List> listOfMaps() { - return listOfMaps; - } - - /** - * Returns true if the ListOfStructs property was specified by the sender (it may be empty), or false if the sender - * did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service. - */ - public boolean hasListOfStructs() { - return listOfStructs != null && !(listOfStructs instanceof SdkAutoConstructList); - } - - /** - * Returns the value of the ListOfStructs property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasListOfStructs()} to see if a value was sent in this field. - *

- * - * @return The value of the ListOfStructs property for this object. - */ - public List listOfStructs() { - return listOfStructs; - } - - /** - * Returns the value of the ListOfMapOfEnumToString property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasListOfMapOfEnumToString()} to see if a value was sent in this field. - *

- * - * @return The value of the ListOfMapOfEnumToString property for this object. - */ - public List> listOfMapOfEnumToString() { - return ListOfMapOfEnumToStringCopier.copyStringToEnum(listOfMapOfEnumToString); - } - - /** - * Returns true if the ListOfMapOfEnumToString property was specified by the sender (it may be empty), or false if - * the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS - * service. - */ - public boolean hasListOfMapOfEnumToString() { - return listOfMapOfEnumToString != null && !(listOfMapOfEnumToString instanceof SdkAutoConstructList); - } - - /** - * Returns the value of the ListOfMapOfEnumToString property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasListOfMapOfEnumToString()} to see if a value was sent in this field. - *

- * - * @return The value of the ListOfMapOfEnumToString property for this object. - */ - public List> listOfMapOfEnumToStringAsStrings() { - return listOfMapOfEnumToString; - } - - /** - * Returns true if the MapOfStringToIntegerList property was specified by the sender (it may be empty), or false if - * the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS - * service. - */ - public boolean hasMapOfStringToIntegerList() { - return mapOfStringToIntegerList != null && !(mapOfStringToIntegerList instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the MapOfStringToIntegerList property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfStringToIntegerList()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfStringToIntegerList property for this object. - */ - public Map> mapOfStringToIntegerList() { - return mapOfStringToIntegerList; - } - - /** - * Returns true if the MapOfStringToString property was specified by the sender (it may be empty), or false if the - * sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS - * service. - */ - public boolean hasMapOfStringToString() { - return mapOfStringToString != null && !(mapOfStringToString instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the MapOfStringToString property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfStringToString()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfStringToString property for this object. - */ - public Map mapOfStringToString() { - return mapOfStringToString; - } - - /** - * Returns true if the MapOfStringToSimpleStruct property was specified by the sender (it may be empty), or false if - * the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS - * service. - */ - public boolean hasMapOfStringToSimpleStruct() { - return mapOfStringToSimpleStruct != null && !(mapOfStringToSimpleStruct instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the MapOfStringToSimpleStruct property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfStringToSimpleStruct()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfStringToSimpleStruct property for this object. - */ - public Map mapOfStringToSimpleStruct() { - return mapOfStringToSimpleStruct; - } - - /** - * Returns the value of the MapOfEnumToEnum property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfEnumToEnum()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfEnumToEnum property for this object. - */ - public Map mapOfEnumToEnum() { - return MapOfEnumToEnumCopier.copyStringToEnum(mapOfEnumToEnum); - } - - /** - * Returns true if the MapOfEnumToEnum property was specified by the sender (it may be empty), or false if the - * sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS - * service. - */ - public boolean hasMapOfEnumToEnum() { - return mapOfEnumToEnum != null && !(mapOfEnumToEnum instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the MapOfEnumToEnum property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfEnumToEnum()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfEnumToEnum property for this object. - */ - public Map mapOfEnumToEnumAsStrings() { - return mapOfEnumToEnum; - } - - /** - * Returns the value of the MapOfEnumToString property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfEnumToString()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfEnumToString property for this object. - */ - public Map mapOfEnumToString() { - return MapOfEnumToStringCopier.copyStringToEnum(mapOfEnumToString); - } - - /** - * Returns true if the MapOfEnumToString property was specified by the sender (it may be empty), or false if the - * sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS - * service. - */ - public boolean hasMapOfEnumToString() { - return mapOfEnumToString != null && !(mapOfEnumToString instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the MapOfEnumToString property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfEnumToString()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfEnumToString property for this object. - */ - public Map mapOfEnumToStringAsStrings() { - return mapOfEnumToString; - } - - /** - * Returns the value of the MapOfStringToEnum property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfStringToEnum()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfStringToEnum property for this object. - */ - public Map mapOfStringToEnum() { - return MapOfStringToEnumCopier.copyStringToEnum(mapOfStringToEnum); - } - - /** - * Returns true if the MapOfStringToEnum property was specified by the sender (it may be empty), or false if the - * sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS - * service. - */ - public boolean hasMapOfStringToEnum() { - return mapOfStringToEnum != null && !(mapOfStringToEnum instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the MapOfStringToEnum property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfStringToEnum()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfStringToEnum property for this object. - */ - public Map mapOfStringToEnumAsStrings() { - return mapOfStringToEnum; - } - - /** - * Returns the value of the MapOfEnumToSimpleStruct property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfEnumToSimpleStruct()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfEnumToSimpleStruct property for this object. - */ - public Map mapOfEnumToSimpleStruct() { - return MapOfEnumToSimpleStructCopier.copyStringToEnum(mapOfEnumToSimpleStruct); - } - - /** - * Returns true if the MapOfEnumToSimpleStruct property was specified by the sender (it may be empty), or false if - * the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS - * service. - */ - public boolean hasMapOfEnumToSimpleStruct() { - return mapOfEnumToSimpleStruct != null && !(mapOfEnumToSimpleStruct instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the MapOfEnumToSimpleStruct property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfEnumToSimpleStruct()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfEnumToSimpleStruct property for this object. - */ - public Map mapOfEnumToSimpleStructAsStrings() { - return mapOfEnumToSimpleStruct; - } - - /** - * Returns the value of the MapOfEnumToListOfEnums property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfEnumToListOfEnums()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfEnumToListOfEnums property for this object. - */ - public Map> mapOfEnumToListOfEnums() { - return MapOfEnumToListOfEnumsCopier.copyStringToEnum(mapOfEnumToListOfEnums); - } - - /** - * Returns true if the MapOfEnumToListOfEnums property was specified by the sender (it may be empty), or false if - * the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS - * service. - */ - public boolean hasMapOfEnumToListOfEnums() { - return mapOfEnumToListOfEnums != null && !(mapOfEnumToListOfEnums instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the MapOfEnumToListOfEnums property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfEnumToListOfEnums()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfEnumToListOfEnums property for this object. - */ - public Map> mapOfEnumToListOfEnumsAsStrings() { - return mapOfEnumToListOfEnums; - } - - /** - * Returns the value of the MapOfEnumToMapOfStringToEnum property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfEnumToMapOfStringToEnum()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfEnumToMapOfStringToEnum property for this object. - */ - public Map> mapOfEnumToMapOfStringToEnum() { - return MapOfEnumToMapOfStringToEnumCopier.copyStringToEnum(mapOfEnumToMapOfStringToEnum); - } - - /** - * Returns true if the MapOfEnumToMapOfStringToEnum property was specified by the sender (it may be empty), or false - * if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the - * AWS service. - */ - public boolean hasMapOfEnumToMapOfStringToEnum() { - return mapOfEnumToMapOfStringToEnum != null && !(mapOfEnumToMapOfStringToEnum instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the MapOfEnumToMapOfStringToEnum property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfEnumToMapOfStringToEnum()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfEnumToMapOfStringToEnum property for this object. - */ - public Map> mapOfEnumToMapOfStringToEnumAsStrings() { - return mapOfEnumToMapOfStringToEnum; - } - - /** - * Returns the value of the TimestampMember property for this object. - * - * @return The value of the TimestampMember property for this object. - */ - public Instant timestampMember() { - return timestampMember; - } - - /** - * Returns the value of the StructWithNestedTimestampMember property for this object. - * - * @return The value of the StructWithNestedTimestampMember property for this object. - */ - public StructWithTimestamp structWithNestedTimestampMember() { - return structWithNestedTimestampMember; - } - - /** - * Returns the value of the BlobArg property for this object. - * - * @return The value of the BlobArg property for this object. - */ - public SdkBytes blobArg() { - return blobArg; - } - - /** - * Returns the value of the StructWithNestedBlob property for this object. - * - * @return The value of the StructWithNestedBlob property for this object. - */ - public StructWithNestedBlobType structWithNestedBlob() { - return structWithNestedBlob; - } - - /** - * Returns true if the BlobMap property was specified by the sender (it may be empty), or false if the sender did - * not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service. - */ - public boolean hasBlobMap() { - return blobMap != null && !(blobMap instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the BlobMap property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasBlobMap()} to see if a value was sent in this field. - *

- * - * @return The value of the BlobMap property for this object. - */ - public Map blobMap() { - return blobMap; - } - - /** - * Returns true if the ListOfBlobs property was specified by the sender (it may be empty), or false if the sender - * did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service. - */ - public boolean hasListOfBlobs() { - return listOfBlobs != null && !(listOfBlobs instanceof SdkAutoConstructList); - } - - /** - * Returns the value of the ListOfBlobs property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasListOfBlobs()} to see if a value was sent in this field. - *

- * - * @return The value of the ListOfBlobs property for this object. - */ - public List listOfBlobs() { - return listOfBlobs; - } - - /** - * Returns the value of the RecursiveStruct property for this object. - * - * @return The value of the RecursiveStruct property for this object. - */ - public RecursiveStructType recursiveStruct() { - return recursiveStruct; - } - - /** - * Returns the value of the PolymorphicTypeWithSubTypes property for this object. - * - * @return The value of the PolymorphicTypeWithSubTypes property for this object. - */ - public BaseType polymorphicTypeWithSubTypes() { - return polymorphicTypeWithSubTypes; - } - - /** - * Returns the value of the PolymorphicTypeWithoutSubTypes property for this object. - * - * @return The value of the PolymorphicTypeWithoutSubTypes property for this object. - */ - public SubTypeOne polymorphicTypeWithoutSubTypes() { - return polymorphicTypeWithoutSubTypes; - } - - /** - * Returns the value of the EnumType property for this object. - *

- * If the service returns an enum value that is not available in the current SDK version, {@link #enumType} will - * return {@link EnumType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from - * {@link #enumTypeAsString}. - *

- * - * @return The value of the EnumType property for this object. - * @see EnumType - */ - public EnumType enumType() { - return EnumType.fromValue(enumType); - } - - /** - * Returns the value of the EnumType property for this object. - *

- * If the service returns an enum value that is not available in the current SDK version, {@link #enumType} will - * return {@link EnumType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from - * {@link #enumTypeAsString}. - *

- * - * @return The value of the EnumType property for this object. - * @see EnumType - */ - public String enumTypeAsString() { - return enumType; - } - - @Override - public Builder toBuilder() { - return new BuilderImpl(this); - } - - public static Builder builder() { - return new BuilderImpl(); - } - - public static Class serializableBuilderClass() { - return BuilderImpl.class; - } - - @Override - public int hashCode() { - int hashCode = 1; - hashCode = 31 * hashCode + super.hashCode(); - hashCode = 31 * hashCode + Objects.hashCode(stringMember()); - hashCode = 31 * hashCode + Objects.hashCode(integerMember()); - hashCode = 31 * hashCode + Objects.hashCode(booleanMember()); - hashCode = 31 * hashCode + Objects.hashCode(floatMember()); - hashCode = 31 * hashCode + Objects.hashCode(doubleMember()); - hashCode = 31 * hashCode + Objects.hashCode(longMember()); - hashCode = 31 * hashCode + Objects.hashCode(simpleList()); - hashCode = 31 * hashCode + Objects.hashCode(listOfEnumsAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(listOfMaps()); - hashCode = 31 * hashCode + Objects.hashCode(listOfStructs()); - hashCode = 31 * hashCode + Objects.hashCode(listOfMapOfEnumToStringAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfStringToIntegerList()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfStringToString()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfStringToSimpleStruct()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfEnumToEnumAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfEnumToStringAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfStringToEnumAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfEnumToSimpleStructAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfEnumToListOfEnumsAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfEnumToMapOfStringToEnumAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(timestampMember()); - hashCode = 31 * hashCode + Objects.hashCode(structWithNestedTimestampMember()); - hashCode = 31 * hashCode + Objects.hashCode(blobArg()); - hashCode = 31 * hashCode + Objects.hashCode(structWithNestedBlob()); - hashCode = 31 * hashCode + Objects.hashCode(blobMap()); - hashCode = 31 * hashCode + Objects.hashCode(listOfBlobs()); - hashCode = 31 * hashCode + Objects.hashCode(recursiveStruct()); - hashCode = 31 * hashCode + Objects.hashCode(polymorphicTypeWithSubTypes()); - hashCode = 31 * hashCode + Objects.hashCode(polymorphicTypeWithoutSubTypes()); - hashCode = 31 * hashCode + Objects.hashCode(enumTypeAsString()); - return hashCode; - } - - @Override - public boolean equals(Object obj) { - return super.equals(obj) && equalsBySdkFields(obj); - } - - @Override - public boolean equalsBySdkFields(Object obj) { - if (this == obj) { - return true; - } - if (obj == null) { - return false; - } - if (!(obj instanceof AllTypesRequest)) { - return false; - } - AllTypesRequest other = (AllTypesRequest) obj; - return Objects.equals(stringMember(), other.stringMember()) && Objects.equals(integerMember(), other.integerMember()) - && Objects.equals(booleanMember(), other.booleanMember()) && Objects.equals(floatMember(), other.floatMember()) - && Objects.equals(doubleMember(), other.doubleMember()) && Objects.equals(longMember(), other.longMember()) - && Objects.equals(simpleList(), other.simpleList()) - && Objects.equals(listOfEnumsAsStrings(), other.listOfEnumsAsStrings()) - && Objects.equals(listOfMaps(), other.listOfMaps()) && Objects.equals(listOfStructs(), other.listOfStructs()) - && Objects.equals(listOfMapOfEnumToStringAsStrings(), other.listOfMapOfEnumToStringAsStrings()) - && Objects.equals(mapOfStringToIntegerList(), other.mapOfStringToIntegerList()) - && Objects.equals(mapOfStringToString(), other.mapOfStringToString()) - && Objects.equals(mapOfStringToSimpleStruct(), other.mapOfStringToSimpleStruct()) - && Objects.equals(mapOfEnumToEnumAsStrings(), other.mapOfEnumToEnumAsStrings()) - && Objects.equals(mapOfEnumToStringAsStrings(), other.mapOfEnumToStringAsStrings()) - && Objects.equals(mapOfStringToEnumAsStrings(), other.mapOfStringToEnumAsStrings()) - && Objects.equals(mapOfEnumToSimpleStructAsStrings(), other.mapOfEnumToSimpleStructAsStrings()) - && Objects.equals(mapOfEnumToListOfEnumsAsStrings(), other.mapOfEnumToListOfEnumsAsStrings()) - && Objects.equals(mapOfEnumToMapOfStringToEnumAsStrings(), other.mapOfEnumToMapOfStringToEnumAsStrings()) - && Objects.equals(timestampMember(), other.timestampMember()) - && Objects.equals(structWithNestedTimestampMember(), other.structWithNestedTimestampMember()) - && Objects.equals(blobArg(), other.blobArg()) - && Objects.equals(structWithNestedBlob(), other.structWithNestedBlob()) - && Objects.equals(blobMap(), other.blobMap()) && Objects.equals(listOfBlobs(), other.listOfBlobs()) - && Objects.equals(recursiveStruct(), other.recursiveStruct()) - && Objects.equals(polymorphicTypeWithSubTypes(), other.polymorphicTypeWithSubTypes()) - && Objects.equals(polymorphicTypeWithoutSubTypes(), other.polymorphicTypeWithoutSubTypes()) - && Objects.equals(enumTypeAsString(), other.enumTypeAsString()); - } - - /** - * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be - * redacted from this string using a placeholder value. - */ - @Override - public String toString() { - return ToString.builder("AllTypesRequest").add("StringMember", stringMember()).add("IntegerMember", integerMember()) - .add("BooleanMember", booleanMember()).add("FloatMember", floatMember()).add("DoubleMember", doubleMember()) - .add("LongMember", longMember()).add("SimpleList", simpleList()).add("ListOfEnums", listOfEnumsAsStrings()) - .add("ListOfMaps", listOfMaps()).add("ListOfStructs", listOfStructs()) - .add("ListOfMapOfEnumToString", listOfMapOfEnumToStringAsStrings()) - .add("MapOfStringToIntegerList", mapOfStringToIntegerList()).add("MapOfStringToString", mapOfStringToString()) - .add("MapOfStringToSimpleStruct", mapOfStringToSimpleStruct()).add("MapOfEnumToEnum", mapOfEnumToEnumAsStrings()) - .add("MapOfEnumToString", mapOfEnumToStringAsStrings()).add("MapOfStringToEnum", mapOfStringToEnumAsStrings()) - .add("MapOfEnumToSimpleStruct", mapOfEnumToSimpleStructAsStrings()) - .add("MapOfEnumToListOfEnums", mapOfEnumToListOfEnumsAsStrings()) - .add("MapOfEnumToMapOfStringToEnum", mapOfEnumToMapOfStringToEnumAsStrings()) - .add("TimestampMember", timestampMember()) - .add("StructWithNestedTimestampMember", structWithNestedTimestampMember()).add("BlobArg", blobArg()) - .add("StructWithNestedBlob", structWithNestedBlob()).add("BlobMap", blobMap()).add("ListOfBlobs", listOfBlobs()) - .add("RecursiveStruct", recursiveStruct()).add("PolymorphicTypeWithSubTypes", polymorphicTypeWithSubTypes()) - .add("PolymorphicTypeWithoutSubTypes", polymorphicTypeWithoutSubTypes()).add("EnumType", enumTypeAsString()) - .build(); - } - - public Optional getValueForField(String fieldName, Class clazz) { - switch (fieldName) { - case "StringMember": - return Optional.ofNullable(clazz.cast(stringMember())); - case "IntegerMember": - return Optional.ofNullable(clazz.cast(integerMember())); - case "BooleanMember": - return Optional.ofNullable(clazz.cast(booleanMember())); - case "FloatMember": - return Optional.ofNullable(clazz.cast(floatMember())); - case "DoubleMember": - return Optional.ofNullable(clazz.cast(doubleMember())); - case "LongMember": - return Optional.ofNullable(clazz.cast(longMember())); - case "SimpleList": - return Optional.ofNullable(clazz.cast(simpleList())); - case "ListOfEnums": - return Optional.ofNullable(clazz.cast(listOfEnumsAsStrings())); - case "ListOfMaps": - return Optional.ofNullable(clazz.cast(listOfMaps())); - case "ListOfStructs": - return Optional.ofNullable(clazz.cast(listOfStructs())); - case "ListOfMapOfEnumToString": - return Optional.ofNullable(clazz.cast(listOfMapOfEnumToStringAsStrings())); - case "MapOfStringToIntegerList": - return Optional.ofNullable(clazz.cast(mapOfStringToIntegerList())); - case "MapOfStringToString": - return Optional.ofNullable(clazz.cast(mapOfStringToString())); - case "MapOfStringToSimpleStruct": - return Optional.ofNullable(clazz.cast(mapOfStringToSimpleStruct())); - case "MapOfEnumToEnum": - return Optional.ofNullable(clazz.cast(mapOfEnumToEnumAsStrings())); - case "MapOfEnumToString": - return Optional.ofNullable(clazz.cast(mapOfEnumToStringAsStrings())); - case "MapOfStringToEnum": - return Optional.ofNullable(clazz.cast(mapOfStringToEnumAsStrings())); - case "MapOfEnumToSimpleStruct": - return Optional.ofNullable(clazz.cast(mapOfEnumToSimpleStructAsStrings())); - case "MapOfEnumToListOfEnums": - return Optional.ofNullable(clazz.cast(mapOfEnumToListOfEnumsAsStrings())); - case "MapOfEnumToMapOfStringToEnum": - return Optional.ofNullable(clazz.cast(mapOfEnumToMapOfStringToEnumAsStrings())); - case "TimestampMember": - return Optional.ofNullable(clazz.cast(timestampMember())); - case "StructWithNestedTimestampMember": - return Optional.ofNullable(clazz.cast(structWithNestedTimestampMember())); - case "BlobArg": - return Optional.ofNullable(clazz.cast(blobArg())); - case "StructWithNestedBlob": - return Optional.ofNullable(clazz.cast(structWithNestedBlob())); - case "BlobMap": - return Optional.ofNullable(clazz.cast(blobMap())); - case "ListOfBlobs": - return Optional.ofNullable(clazz.cast(listOfBlobs())); - case "RecursiveStruct": - return Optional.ofNullable(clazz.cast(recursiveStruct())); - case "PolymorphicTypeWithSubTypes": - return Optional.ofNullable(clazz.cast(polymorphicTypeWithSubTypes())); - case "PolymorphicTypeWithoutSubTypes": - return Optional.ofNullable(clazz.cast(polymorphicTypeWithoutSubTypes())); - case "EnumType": - return Optional.ofNullable(clazz.cast(enumTypeAsString())); - default: - return Optional.empty(); - } - } - - @Override - public List> sdkFields() { - return SDK_FIELDS; - } - - private static Function getter(Function g) { - return obj -> g.apply((AllTypesRequest) obj); - } - - private static BiConsumer setter(BiConsumer s) { - return (obj, val) -> s.accept((Builder) obj, val); - } - - public interface Builder extends JsonProtocolTestsRequest.Builder, SdkPojo, CopyableBuilder { - /** - * Sets the value of the StringMember property for this object. - * - * @param stringMember - * The new value for the StringMember property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder stringMember(String stringMember); - - /** - * Sets the value of the IntegerMember property for this object. - * - * @param integerMember - * The new value for the IntegerMember property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder integerMember(Integer integerMember); - - /** - * Sets the value of the BooleanMember property for this object. - * - * @param booleanMember - * The new value for the BooleanMember property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder booleanMember(Boolean booleanMember); - - /** - * Sets the value of the FloatMember property for this object. - * - * @param floatMember - * The new value for the FloatMember property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder floatMember(Float floatMember); - - /** - * Sets the value of the DoubleMember property for this object. - * - * @param doubleMember - * The new value for the DoubleMember property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder doubleMember(Double doubleMember); - - /** - * Sets the value of the LongMember property for this object. - * - * @param longMember - * The new value for the LongMember property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder longMember(Long longMember); - - /** - * Sets the value of the SimpleList property for this object. - * - * @param simpleList - * The new value for the SimpleList property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder simpleList(Collection simpleList); - - /** - * Sets the value of the SimpleList property for this object. - * - * @param simpleList - * The new value for the SimpleList property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder simpleList(String... simpleList); - - /** - * Sets the value of the ListOfEnums property for this object. - * - * @param listOfEnums - * The new value for the ListOfEnums property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfEnumsWithStrings(Collection listOfEnums); - - /** - * Sets the value of the ListOfEnums property for this object. - * - * @param listOfEnums - * The new value for the ListOfEnums property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfEnumsWithStrings(String... listOfEnums); - - /** - * Sets the value of the ListOfEnums property for this object. - * - * @param listOfEnums - * The new value for the ListOfEnums property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfEnums(Collection listOfEnums); - - /** - * Sets the value of the ListOfEnums property for this object. - * - * @param listOfEnums - * The new value for the ListOfEnums property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfEnums(EnumType... listOfEnums); - - /** - * Sets the value of the ListOfMaps property for this object. - * - * @param listOfMaps - * The new value for the ListOfMaps property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfMaps(Collection> listOfMaps); - - /** - * Sets the value of the ListOfMaps property for this object. - * - * @param listOfMaps - * The new value for the ListOfMaps property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfMaps(Map... listOfMaps); - - /** - * Sets the value of the ListOfStructs property for this object. - * - * @param listOfStructs - * The new value for the ListOfStructs property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfStructs(Collection listOfStructs); - - /** - * Sets the value of the ListOfStructs property for this object. - * - * @param listOfStructs - * The new value for the ListOfStructs property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfStructs(SimpleStruct... listOfStructs); - - /** - * Sets the value of the ListOfStructs property for this object. - * - * This is a convenience that creates an instance of the {@link List.Builder} avoiding the need to - * create one manually via {@link List#builder()}. - * - * When the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its - * result is passed to {@link #listOfStructs(List)}. - * - * @param listOfStructs - * a consumer that will call methods on {@link List.Builder} - * @return Returns a reference to this object so that method calls can be chained together. - * @see #listOfStructs(List) - */ - Builder listOfStructs(Consumer... listOfStructs); - - /** - * Sets the value of the ListOfMapOfEnumToString property for this object. - * - * @param listOfMapOfEnumToString - * The new value for the ListOfMapOfEnumToString property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfMapOfEnumToStringWithStrings(Collection> listOfMapOfEnumToString); - - /** - * Sets the value of the ListOfMapOfEnumToString property for this object. - * - * @param listOfMapOfEnumToString - * The new value for the ListOfMapOfEnumToString property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfMapOfEnumToStringWithStrings(Map... listOfMapOfEnumToString); - - /** - * Sets the value of the MapOfStringToIntegerList property for this object. - * - * @param mapOfStringToIntegerList - * The new value for the MapOfStringToIntegerList property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfStringToIntegerList(Map> mapOfStringToIntegerList); - - /** - * Sets the value of the MapOfStringToString property for this object. - * - * @param mapOfStringToString - * The new value for the MapOfStringToString property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfStringToString(Map mapOfStringToString); - - /** - * Sets the value of the MapOfStringToSimpleStruct property for this object. - * - * @param mapOfStringToSimpleStruct - * The new value for the MapOfStringToSimpleStruct property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfStringToSimpleStruct(Map mapOfStringToSimpleStruct); - - /** - * Sets the value of the MapOfEnumToEnum property for this object. - * - * @param mapOfEnumToEnum - * The new value for the MapOfEnumToEnum property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfEnumToEnumWithStrings(Map mapOfEnumToEnum); - - /** - * Sets the value of the MapOfEnumToEnum property for this object. - * - * @param mapOfEnumToEnum - * The new value for the MapOfEnumToEnum property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfEnumToEnum(Map mapOfEnumToEnum); - - /** - * Sets the value of the MapOfEnumToString property for this object. - * - * @param mapOfEnumToString - * The new value for the MapOfEnumToString property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfEnumToStringWithStrings(Map mapOfEnumToString); - - /** - * Sets the value of the MapOfEnumToString property for this object. - * - * @param mapOfEnumToString - * The new value for the MapOfEnumToString property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfEnumToString(Map mapOfEnumToString); - - /** - * Sets the value of the MapOfStringToEnum property for this object. - * - * @param mapOfStringToEnum - * The new value for the MapOfStringToEnum property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfStringToEnumWithStrings(Map mapOfStringToEnum); - - /** - * Sets the value of the MapOfStringToEnum property for this object. - * - * @param mapOfStringToEnum - * The new value for the MapOfStringToEnum property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfStringToEnum(Map mapOfStringToEnum); - - /** - * Sets the value of the MapOfEnumToSimpleStruct property for this object. - * - * @param mapOfEnumToSimpleStruct - * The new value for the MapOfEnumToSimpleStruct property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfEnumToSimpleStructWithStrings(Map mapOfEnumToSimpleStruct); - - /** - * Sets the value of the MapOfEnumToSimpleStruct property for this object. - * - * @param mapOfEnumToSimpleStruct - * The new value for the MapOfEnumToSimpleStruct property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfEnumToSimpleStruct(Map mapOfEnumToSimpleStruct); - - /** - * Sets the value of the MapOfEnumToListOfEnums property for this object. - * - * @param mapOfEnumToListOfEnums - * The new value for the MapOfEnumToListOfEnums property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfEnumToListOfEnumsWithStrings(Map> mapOfEnumToListOfEnums); - - /** - * Sets the value of the MapOfEnumToListOfEnums property for this object. - * - * @param mapOfEnumToListOfEnums - * The new value for the MapOfEnumToListOfEnums property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfEnumToListOfEnums(Map> mapOfEnumToListOfEnums); - - /** - * Sets the value of the MapOfEnumToMapOfStringToEnum property for this object. - * - * @param mapOfEnumToMapOfStringToEnum - * The new value for the MapOfEnumToMapOfStringToEnum property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfEnumToMapOfStringToEnumWithStrings(Map> mapOfEnumToMapOfStringToEnum); - - /** - * Sets the value of the MapOfEnumToMapOfStringToEnum property for this object. - * - * @param mapOfEnumToMapOfStringToEnum - * The new value for the MapOfEnumToMapOfStringToEnum property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfEnumToMapOfStringToEnum(Map> mapOfEnumToMapOfStringToEnum); - - /** - * Sets the value of the TimestampMember property for this object. - * - * @param timestampMember - * The new value for the TimestampMember property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder timestampMember(Instant timestampMember); - - /** - * Sets the value of the StructWithNestedTimestampMember property for this object. - * - * @param structWithNestedTimestampMember - * The new value for the StructWithNestedTimestampMember property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder structWithNestedTimestampMember(StructWithTimestamp structWithNestedTimestampMember); - - /** - * Sets the value of the StructWithNestedTimestampMember property for this object. - * - * This is a convenience that creates an instance of the {@link StructWithTimestamp.Builder} avoiding the need - * to create one manually via {@link StructWithTimestamp#builder()}. - * - * When the {@link Consumer} completes, {@link StructWithTimestamp.Builder#build()} is called immediately and - * its result is passed to {@link #structWithNestedTimestampMember(StructWithTimestamp)}. - * - * @param structWithNestedTimestampMember - * a consumer that will call methods on {@link StructWithTimestamp.Builder} - * @return Returns a reference to this object so that method calls can be chained together. - * @see #structWithNestedTimestampMember(StructWithTimestamp) - */ - default Builder structWithNestedTimestampMember(Consumer structWithNestedTimestampMember) { - return structWithNestedTimestampMember(StructWithTimestamp.builder().applyMutation(structWithNestedTimestampMember) - .build()); - } - - /** - * Sets the value of the BlobArg property for this object. - * - * @param blobArg - * The new value for the BlobArg property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder blobArg(SdkBytes blobArg); - - /** - * Sets the value of the StructWithNestedBlob property for this object. - * - * @param structWithNestedBlob - * The new value for the StructWithNestedBlob property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder structWithNestedBlob(StructWithNestedBlobType structWithNestedBlob); - - /** - * Sets the value of the StructWithNestedBlob property for this object. - * - * This is a convenience that creates an instance of the {@link StructWithNestedBlobType.Builder} avoiding the - * need to create one manually via {@link StructWithNestedBlobType#builder()}. - * - * When the {@link Consumer} completes, {@link StructWithNestedBlobType.Builder#build()} is called immediately - * and its result is passed to {@link #structWithNestedBlob(StructWithNestedBlobType)}. - * - * @param structWithNestedBlob - * a consumer that will call methods on {@link StructWithNestedBlobType.Builder} - * @return Returns a reference to this object so that method calls can be chained together. - * @see #structWithNestedBlob(StructWithNestedBlobType) - */ - default Builder structWithNestedBlob(Consumer structWithNestedBlob) { - return structWithNestedBlob(StructWithNestedBlobType.builder().applyMutation(structWithNestedBlob).build()); - } - - /** - * Sets the value of the BlobMap property for this object. - * - * @param blobMap - * The new value for the BlobMap property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder blobMap(Map blobMap); - - /** - * Sets the value of the ListOfBlobs property for this object. - * - * @param listOfBlobs - * The new value for the ListOfBlobs property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfBlobs(Collection listOfBlobs); - - /** - * Sets the value of the ListOfBlobs property for this object. - * - * @param listOfBlobs - * The new value for the ListOfBlobs property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfBlobs(SdkBytes... listOfBlobs); - - /** - * Sets the value of the RecursiveStruct property for this object. - * - * @param recursiveStruct - * The new value for the RecursiveStruct property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder recursiveStruct(RecursiveStructType recursiveStruct); - - /** - * Sets the value of the RecursiveStruct property for this object. - * - * This is a convenience that creates an instance of the {@link RecursiveStructType.Builder} avoiding the need - * to create one manually via {@link RecursiveStructType#builder()}. - * - * When the {@link Consumer} completes, {@link RecursiveStructType.Builder#build()} is called immediately and - * its result is passed to {@link #recursiveStruct(RecursiveStructType)}. - * - * @param recursiveStruct - * a consumer that will call methods on {@link RecursiveStructType.Builder} - * @return Returns a reference to this object so that method calls can be chained together. - * @see #recursiveStruct(RecursiveStructType) - */ - default Builder recursiveStruct(Consumer recursiveStruct) { - return recursiveStruct(RecursiveStructType.builder().applyMutation(recursiveStruct).build()); - } - - /** - * Sets the value of the PolymorphicTypeWithSubTypes property for this object. - * - * @param polymorphicTypeWithSubTypes - * The new value for the PolymorphicTypeWithSubTypes property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder polymorphicTypeWithSubTypes(BaseType polymorphicTypeWithSubTypes); - - /** - * Sets the value of the PolymorphicTypeWithSubTypes property for this object. - * - * This is a convenience that creates an instance of the {@link BaseType.Builder} avoiding the need to create - * one manually via {@link BaseType#builder()}. - * - * When the {@link Consumer} completes, {@link BaseType.Builder#build()} is called immediately and its result is - * passed to {@link #polymorphicTypeWithSubTypes(BaseType)}. - * - * @param polymorphicTypeWithSubTypes - * a consumer that will call methods on {@link BaseType.Builder} - * @return Returns a reference to this object so that method calls can be chained together. - * @see #polymorphicTypeWithSubTypes(BaseType) - */ - default Builder polymorphicTypeWithSubTypes(Consumer polymorphicTypeWithSubTypes) { - return polymorphicTypeWithSubTypes(BaseType.builder().applyMutation(polymorphicTypeWithSubTypes).build()); - } - - /** - * Sets the value of the PolymorphicTypeWithoutSubTypes property for this object. - * - * @param polymorphicTypeWithoutSubTypes - * The new value for the PolymorphicTypeWithoutSubTypes property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder polymorphicTypeWithoutSubTypes(SubTypeOne polymorphicTypeWithoutSubTypes); - - /** - * Sets the value of the PolymorphicTypeWithoutSubTypes property for this object. - * - * This is a convenience that creates an instance of the {@link SubTypeOne.Builder} avoiding the need to create - * one manually via {@link SubTypeOne#builder()}. - * - * When the {@link Consumer} completes, {@link SubTypeOne.Builder#build()} is called immediately and its result - * is passed to {@link #polymorphicTypeWithoutSubTypes(SubTypeOne)}. - * - * @param polymorphicTypeWithoutSubTypes - * a consumer that will call methods on {@link SubTypeOne.Builder} - * @return Returns a reference to this object so that method calls can be chained together. - * @see #polymorphicTypeWithoutSubTypes(SubTypeOne) - */ - default Builder polymorphicTypeWithoutSubTypes(Consumer polymorphicTypeWithoutSubTypes) { - return polymorphicTypeWithoutSubTypes(SubTypeOne.builder().applyMutation(polymorphicTypeWithoutSubTypes).build()); - } - - /** - * Sets the value of the EnumType property for this object. - * - * @param enumType - * The new value for the EnumType property for this object. - * @see EnumType - * @return Returns a reference to this object so that method calls can be chained together. - * @see EnumType - */ - Builder enumType(String enumType); - - /** - * Sets the value of the EnumType property for this object. - * - * @param enumType - * The new value for the EnumType property for this object. - * @see EnumType - * @return Returns a reference to this object so that method calls can be chained together. - * @see EnumType - */ - Builder enumType(EnumType enumType); - - @Override - Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration); - - @Override - Builder overrideConfiguration(Consumer builderConsumer); - } - - static final class BuilderImpl extends JsonProtocolTestsRequest.BuilderImpl implements Builder { - private String stringMember; - - private Integer integerMember; - - private Boolean booleanMember; - - private Float floatMember; - - private Double doubleMember; - - private Long longMember; - - private List simpleList; - - private List listOfEnums; - - private List> listOfMaps; - - private List listOfStructs; - - private List> listOfMapOfEnumToString; - - private Map> mapOfStringToIntegerList; - - private Map mapOfStringToString; - - private Map mapOfStringToSimpleStruct; - - private Map mapOfEnumToEnum; - - private Map mapOfEnumToString; - - private Map mapOfStringToEnum; - - private Map mapOfEnumToSimpleStruct; - - private Map> mapOfEnumToListOfEnums; - - private Map> mapOfEnumToMapOfStringToEnum; - - private Instant timestampMember; - - private StructWithTimestamp structWithNestedTimestampMember; - - private SdkBytes blobArg; - - private StructWithNestedBlobType structWithNestedBlob; - - private Map blobMap; - - private List listOfBlobs; - - private RecursiveStructType recursiveStruct; - - private BaseType polymorphicTypeWithSubTypes; - - private SubTypeOne polymorphicTypeWithoutSubTypes; - - private String enumType; - - private BuilderImpl() { - } - - private BuilderImpl(AllTypesRequest model) { - super(model); - stringMember(model.stringMember); - integerMember(model.integerMember); - booleanMember(model.booleanMember); - floatMember(model.floatMember); - doubleMember(model.doubleMember); - longMember(model.longMember); - simpleList(model.simpleList); - listOfEnumsWithStrings(model.listOfEnums); - listOfMaps(model.listOfMaps); - listOfStructs(model.listOfStructs); - listOfMapOfEnumToStringWithStrings(model.listOfMapOfEnumToString); - mapOfStringToIntegerList(model.mapOfStringToIntegerList); - mapOfStringToString(model.mapOfStringToString); - mapOfStringToSimpleStruct(model.mapOfStringToSimpleStruct); - mapOfEnumToEnumWithStrings(model.mapOfEnumToEnum); - mapOfEnumToStringWithStrings(model.mapOfEnumToString); - mapOfStringToEnumWithStrings(model.mapOfStringToEnum); - mapOfEnumToSimpleStructWithStrings(model.mapOfEnumToSimpleStruct); - mapOfEnumToListOfEnumsWithStrings(model.mapOfEnumToListOfEnums); - mapOfEnumToMapOfStringToEnumWithStrings(model.mapOfEnumToMapOfStringToEnum); - timestampMember(model.timestampMember); - structWithNestedTimestampMember(model.structWithNestedTimestampMember); - blobArg(model.blobArg); - structWithNestedBlob(model.structWithNestedBlob); - blobMap(model.blobMap); - listOfBlobs(model.listOfBlobs); - recursiveStruct(model.recursiveStruct); - polymorphicTypeWithSubTypes(model.polymorphicTypeWithSubTypes); - polymorphicTypeWithoutSubTypes(model.polymorphicTypeWithoutSubTypes); - enumType(model.enumType); - } - - public final String getStringMember() { - return stringMember; - } - - @Override - public final Builder stringMember(String stringMember) { - this.stringMember = stringMember; - return this; - } - - public final void setStringMember(String stringMember) { - this.stringMember = stringMember; - } - - public final Integer getIntegerMember() { - return integerMember; - } - - @Override - public final Builder integerMember(Integer integerMember) { - this.integerMember = integerMember; - return this; - } - - public final void setIntegerMember(Integer integerMember) { - this.integerMember = integerMember; - } - - public final Boolean getBooleanMember() { - return booleanMember; - } - - @Override - public final Builder booleanMember(Boolean booleanMember) { - this.booleanMember = booleanMember; - return this; - } - - public final void setBooleanMember(Boolean booleanMember) { - this.booleanMember = booleanMember; - } - - public final Float getFloatMember() { - return floatMember; - } - - @Override - public final Builder floatMember(Float floatMember) { - this.floatMember = floatMember; - return this; - } - - public final void setFloatMember(Float floatMember) { - this.floatMember = floatMember; - } - - public final Double getDoubleMember() { - return doubleMember; - } - - @Override - public final Builder doubleMember(Double doubleMember) { - this.doubleMember = doubleMember; - return this; - } - - public final void setDoubleMember(Double doubleMember) { - this.doubleMember = doubleMember; - } - - public final Long getLongMember() { - return longMember; - } - - @Override - public final Builder longMember(Long longMember) { - this.longMember = longMember; - return this; - } - - public final void setLongMember(Long longMember) { - this.longMember = longMember; - } - - public final Collection getSimpleList() { - return simpleList; - } - - @Override - public final Builder simpleList(Collection simpleList) { - this.simpleList = ListOfStringsCopier.copy(simpleList); - return this; - } - - @Override - @SafeVarargs - public final Builder simpleList(String... simpleList) { - simpleList(Arrays.asList(simpleList)); - return this; - } - - public final void setSimpleList(Collection simpleList) { - this.simpleList = ListOfStringsCopier.copy(simpleList); - } - - public final Collection getListOfEnums() { - return listOfEnums; - } - - @Override - public final Builder listOfEnumsWithStrings(Collection listOfEnums) { - this.listOfEnums = ListOfEnumsCopier.copy(listOfEnums); - return this; - } - - @Override - @SafeVarargs - public final Builder listOfEnumsWithStrings(String... listOfEnums) { - listOfEnumsWithStrings(Arrays.asList(listOfEnums)); - return this; - } - - @Override - public final Builder listOfEnums(Collection listOfEnums) { - this.listOfEnums = ListOfEnumsCopier.copyEnumToString(listOfEnums); - return this; - } - - @Override - @SafeVarargs - public final Builder listOfEnums(EnumType... listOfEnums) { - listOfEnums(Arrays.asList(listOfEnums)); - return this; - } - - public final void setListOfEnums(Collection listOfEnums) { - this.listOfEnums = ListOfEnumsCopier.copy(listOfEnums); - } - - public final Collection> getListOfMaps() { - return listOfMaps; - } - - @Override - public final Builder listOfMaps(Collection> listOfMaps) { - this.listOfMaps = ListOfMapStringToStringCopier.copy(listOfMaps); - return this; - } - - @Override - @SafeVarargs - public final Builder listOfMaps(Map... listOfMaps) { - listOfMaps(Arrays.asList(listOfMaps)); - return this; - } - - public final void setListOfMaps(Collection> listOfMaps) { - this.listOfMaps = ListOfMapStringToStringCopier.copy(listOfMaps); - } - - public final Collection getListOfStructs() { - return listOfStructs != null ? listOfStructs.stream().map(SimpleStruct::toBuilder).collect(Collectors.toList()) - : null; - } - - @Override - public final Builder listOfStructs(Collection listOfStructs) { - this.listOfStructs = ListOfSimpleStructsCopier.copy(listOfStructs); - return this; - } - - @Override - @SafeVarargs - public final Builder listOfStructs(SimpleStruct... listOfStructs) { - listOfStructs(Arrays.asList(listOfStructs)); - return this; - } - - @Override - @SafeVarargs - public final Builder listOfStructs(Consumer... listOfStructs) { - listOfStructs(Stream.of(listOfStructs).map(c -> SimpleStruct.builder().applyMutation(c).build()) - .collect(Collectors.toList())); - return this; - } - - public final void setListOfStructs(Collection listOfStructs) { - this.listOfStructs = ListOfSimpleStructsCopier.copyFromBuilder(listOfStructs); - } - - public final Collection> getListOfMapOfEnumToString() { - return listOfMapOfEnumToString; - } - - @Override - public final Builder listOfMapOfEnumToStringWithStrings(Collection> listOfMapOfEnumToString) { - this.listOfMapOfEnumToString = ListOfMapOfEnumToStringCopier.copy(listOfMapOfEnumToString); - return this; - } - - @Override - @SafeVarargs - public final Builder listOfMapOfEnumToStringWithStrings(Map... listOfMapOfEnumToString) { - listOfMapOfEnumToStringWithStrings(Arrays.asList(listOfMapOfEnumToString)); - return this; - } - - public final void setListOfMapOfEnumToString(Collection> listOfMapOfEnumToString) { - this.listOfMapOfEnumToString = ListOfMapOfEnumToStringCopier.copy(listOfMapOfEnumToString); - } - - public final Map> getMapOfStringToIntegerList() { - return mapOfStringToIntegerList; - } - - @Override - public final Builder mapOfStringToIntegerList(Map> mapOfStringToIntegerList) { - this.mapOfStringToIntegerList = MapOfStringToIntegerListCopier.copy(mapOfStringToIntegerList); - return this; - } - - public final void setMapOfStringToIntegerList(Map> mapOfStringToIntegerList) { - this.mapOfStringToIntegerList = MapOfStringToIntegerListCopier.copy(mapOfStringToIntegerList); - } - - public final Map getMapOfStringToString() { - return mapOfStringToString; - } - - @Override - public final Builder mapOfStringToString(Map mapOfStringToString) { - this.mapOfStringToString = MapOfStringToStringCopier.copy(mapOfStringToString); - return this; - } - - public final void setMapOfStringToString(Map mapOfStringToString) { - this.mapOfStringToString = MapOfStringToStringCopier.copy(mapOfStringToString); - } - - public final Map getMapOfStringToSimpleStruct() { - return mapOfStringToSimpleStruct != null ? CollectionUtils.mapValues(mapOfStringToSimpleStruct, - SimpleStruct::toBuilder) : null; - } - - @Override - public final Builder mapOfStringToSimpleStruct(Map mapOfStringToSimpleStruct) { - this.mapOfStringToSimpleStruct = MapOfStringToSimpleStructCopier.copy(mapOfStringToSimpleStruct); - return this; - } - - public final void setMapOfStringToSimpleStruct(Map mapOfStringToSimpleStruct) { - this.mapOfStringToSimpleStruct = MapOfStringToSimpleStructCopier.copyFromBuilder(mapOfStringToSimpleStruct); - } - - public final Map getMapOfEnumToEnum() { - return mapOfEnumToEnum; - } - - @Override - public final Builder mapOfEnumToEnumWithStrings(Map mapOfEnumToEnum) { - this.mapOfEnumToEnum = MapOfEnumToEnumCopier.copy(mapOfEnumToEnum); - return this; - } - - @Override - public final Builder mapOfEnumToEnum(Map mapOfEnumToEnum) { - this.mapOfEnumToEnum = MapOfEnumToEnumCopier.copyEnumToString(mapOfEnumToEnum); - return this; - } - - public final void setMapOfEnumToEnum(Map mapOfEnumToEnum) { - this.mapOfEnumToEnum = MapOfEnumToEnumCopier.copy(mapOfEnumToEnum); - } - - public final Map getMapOfEnumToString() { - return mapOfEnumToString; - } - - @Override - public final Builder mapOfEnumToStringWithStrings(Map mapOfEnumToString) { - this.mapOfEnumToString = MapOfEnumToStringCopier.copy(mapOfEnumToString); - return this; - } - - @Override - public final Builder mapOfEnumToString(Map mapOfEnumToString) { - this.mapOfEnumToString = MapOfEnumToStringCopier.copyEnumToString(mapOfEnumToString); - return this; - } - - public final void setMapOfEnumToString(Map mapOfEnumToString) { - this.mapOfEnumToString = MapOfEnumToStringCopier.copy(mapOfEnumToString); - } - - public final Map getMapOfStringToEnum() { - return mapOfStringToEnum; - } - - @Override - public final Builder mapOfStringToEnumWithStrings(Map mapOfStringToEnum) { - this.mapOfStringToEnum = MapOfStringToEnumCopier.copy(mapOfStringToEnum); - return this; - } - - @Override - public final Builder mapOfStringToEnum(Map mapOfStringToEnum) { - this.mapOfStringToEnum = MapOfStringToEnumCopier.copyEnumToString(mapOfStringToEnum); - return this; - } - - public final void setMapOfStringToEnum(Map mapOfStringToEnum) { - this.mapOfStringToEnum = MapOfStringToEnumCopier.copy(mapOfStringToEnum); - } - - public final Map getMapOfEnumToSimpleStruct() { - return mapOfEnumToSimpleStruct != null ? CollectionUtils.mapValues(mapOfEnumToSimpleStruct, SimpleStruct::toBuilder) - : null; - } - - @Override - public final Builder mapOfEnumToSimpleStructWithStrings(Map mapOfEnumToSimpleStruct) { - this.mapOfEnumToSimpleStruct = MapOfEnumToSimpleStructCopier.copy(mapOfEnumToSimpleStruct); - return this; - } - - @Override - public final Builder mapOfEnumToSimpleStruct(Map mapOfEnumToSimpleStruct) { - this.mapOfEnumToSimpleStruct = MapOfEnumToSimpleStructCopier.copyEnumToString(mapOfEnumToSimpleStruct); - return this; - } - - public final void setMapOfEnumToSimpleStruct(Map mapOfEnumToSimpleStruct) { - this.mapOfEnumToSimpleStruct = MapOfEnumToSimpleStructCopier.copyFromBuilder(mapOfEnumToSimpleStruct); - } - - public final Map> getMapOfEnumToListOfEnums() { - return mapOfEnumToListOfEnums; - } - - @Override - public final Builder mapOfEnumToListOfEnumsWithStrings(Map> mapOfEnumToListOfEnums) { - this.mapOfEnumToListOfEnums = MapOfEnumToListOfEnumsCopier.copy(mapOfEnumToListOfEnums); - return this; - } - - @Override - public final Builder mapOfEnumToListOfEnums(Map> mapOfEnumToListOfEnums) { - this.mapOfEnumToListOfEnums = MapOfEnumToListOfEnumsCopier.copyEnumToString(mapOfEnumToListOfEnums); - return this; - } - - public final void setMapOfEnumToListOfEnums(Map> mapOfEnumToListOfEnums) { - this.mapOfEnumToListOfEnums = MapOfEnumToListOfEnumsCopier.copy(mapOfEnumToListOfEnums); - } - - public final Map> getMapOfEnumToMapOfStringToEnum() { - return mapOfEnumToMapOfStringToEnum; - } - - @Override - public final Builder mapOfEnumToMapOfStringToEnumWithStrings(Map> mapOfEnumToMapOfStringToEnum) { - this.mapOfEnumToMapOfStringToEnum = MapOfEnumToMapOfStringToEnumCopier.copy(mapOfEnumToMapOfStringToEnum); - return this; - } - - @Override - public final Builder mapOfEnumToMapOfStringToEnum(Map> mapOfEnumToMapOfStringToEnum) { - this.mapOfEnumToMapOfStringToEnum = MapOfEnumToMapOfStringToEnumCopier.copyEnumToString(mapOfEnumToMapOfStringToEnum); - return this; - } - - public final void setMapOfEnumToMapOfStringToEnum(Map> mapOfEnumToMapOfStringToEnum) { - this.mapOfEnumToMapOfStringToEnum = MapOfEnumToMapOfStringToEnumCopier.copy(mapOfEnumToMapOfStringToEnum); - } - - public final Instant getTimestampMember() { - return timestampMember; - } - - @Override - public final Builder timestampMember(Instant timestampMember) { - this.timestampMember = timestampMember; - return this; - } - - public final void setTimestampMember(Instant timestampMember) { - this.timestampMember = timestampMember; - } - - public final StructWithTimestamp.Builder getStructWithNestedTimestampMember() { - return structWithNestedTimestampMember != null ? structWithNestedTimestampMember.toBuilder() : null; - } - - @Override - public final Builder structWithNestedTimestampMember(StructWithTimestamp structWithNestedTimestampMember) { - this.structWithNestedTimestampMember = structWithNestedTimestampMember; - return this; - } - - public final void setStructWithNestedTimestampMember(StructWithTimestamp.BuilderImpl structWithNestedTimestampMember) { - this.structWithNestedTimestampMember = structWithNestedTimestampMember != null ? structWithNestedTimestampMember - .build() : null; - } - - public final ByteBuffer getBlobArg() { - return blobArg == null ? null : blobArg.asByteBuffer(); - } - - @Override - public final Builder blobArg(SdkBytes blobArg) { - this.blobArg = StandardMemberCopier.copy(blobArg); - return this; - } - - public final void setBlobArg(ByteBuffer blobArg) { - blobArg(blobArg == null ? null : SdkBytes.fromByteBuffer(blobArg)); - } - - public final StructWithNestedBlobType.Builder getStructWithNestedBlob() { - return structWithNestedBlob != null ? structWithNestedBlob.toBuilder() : null; - } - - @Override - public final Builder structWithNestedBlob(StructWithNestedBlobType structWithNestedBlob) { - this.structWithNestedBlob = structWithNestedBlob; - return this; - } - - public final void setStructWithNestedBlob(StructWithNestedBlobType.BuilderImpl structWithNestedBlob) { - this.structWithNestedBlob = structWithNestedBlob != null ? structWithNestedBlob.build() : null; - } - - public final Map getBlobMap() { - return blobMap == null ? null : blobMap.entrySet().stream() - .collect(Collectors.toMap(e -> e.getKey(), e -> e.getValue().asByteBuffer())); - } - - @Override - public final Builder blobMap(Map blobMap) { - this.blobMap = BlobMapTypeCopier.copy(blobMap); - return this; - } - - public final void setBlobMap(Map blobMap) { - blobMap(blobMap == null ? null : blobMap.entrySet().stream() - .collect(Collectors.toMap(e -> e.getKey(), e -> SdkBytes.fromByteBuffer(e.getValue())))); - } - - public final List getListOfBlobs() { - return listOfBlobs == null ? null : listOfBlobs.stream().map(SdkBytes::asByteBuffer).collect(Collectors.toList()); - } - - @Override - public final Builder listOfBlobs(Collection listOfBlobs) { - this.listOfBlobs = ListOfBlobsTypeCopier.copy(listOfBlobs); - return this; - } - - @Override - @SafeVarargs - public final Builder listOfBlobs(SdkBytes... listOfBlobs) { - listOfBlobs(Arrays.asList(listOfBlobs)); - return this; - } - - public final void setListOfBlobs(Collection listOfBlobs) { - listOfBlobs(listOfBlobs == null ? null : listOfBlobs.stream().map(SdkBytes::fromByteBuffer) - .collect(Collectors.toList())); - } - - public final RecursiveStructType.Builder getRecursiveStruct() { - return recursiveStruct != null ? recursiveStruct.toBuilder() : null; - } - - @Override - public final Builder recursiveStruct(RecursiveStructType recursiveStruct) { - this.recursiveStruct = recursiveStruct; - return this; - } - - public final void setRecursiveStruct(RecursiveStructType.BuilderImpl recursiveStruct) { - this.recursiveStruct = recursiveStruct != null ? recursiveStruct.build() : null; - } - - public final BaseType.Builder getPolymorphicTypeWithSubTypes() { - return polymorphicTypeWithSubTypes != null ? polymorphicTypeWithSubTypes.toBuilder() : null; - } - - @Override - public final Builder polymorphicTypeWithSubTypes(BaseType polymorphicTypeWithSubTypes) { - this.polymorphicTypeWithSubTypes = polymorphicTypeWithSubTypes; - return this; - } - - public final void setPolymorphicTypeWithSubTypes(BaseType.BuilderImpl polymorphicTypeWithSubTypes) { - this.polymorphicTypeWithSubTypes = polymorphicTypeWithSubTypes != null ? polymorphicTypeWithSubTypes.build() : null; - } - - public final SubTypeOne.Builder getPolymorphicTypeWithoutSubTypes() { - return polymorphicTypeWithoutSubTypes != null ? polymorphicTypeWithoutSubTypes.toBuilder() : null; - } - - @Override - public final Builder polymorphicTypeWithoutSubTypes(SubTypeOne polymorphicTypeWithoutSubTypes) { - this.polymorphicTypeWithoutSubTypes = polymorphicTypeWithoutSubTypes; - return this; - } - - public final void setPolymorphicTypeWithoutSubTypes(SubTypeOne.BuilderImpl polymorphicTypeWithoutSubTypes) { - this.polymorphicTypeWithoutSubTypes = polymorphicTypeWithoutSubTypes != null ? polymorphicTypeWithoutSubTypes.build() - : null; - } - - public final String getEnumType() { - return enumType; - } - - @Override - public final Builder enumType(String enumType) { - this.enumType = enumType; - return this; - } - - @Override - public final Builder enumType(EnumType enumType) { - this.enumType(enumType == null ? null : enumType.toString()); - return this; - } - - public final void setEnumType(String enumType) { - this.enumType = enumType; - } - - @Override - public Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) { - super.overrideConfiguration(overrideConfiguration); - return this; - } - - @Override - public Builder overrideConfiguration(Consumer builderConsumer) { - super.overrideConfiguration(builderConsumer); - return this; - } - - @Override - public AllTypesRequest build() { - return new AllTypesRequest(this); - } - - @Override - public List> sdkFields() { - return SDK_FIELDS; - } - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/alltypesresponse.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/alltypesresponse.java deleted file mode 100644 index 93909a712a61..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/alltypesresponse.java +++ /dev/null @@ -1,2496 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import java.nio.ByteBuffer; -import java.time.Instant; -import java.util.Arrays; -import java.util.Collection; -import java.util.Collections; -import java.util.List; -import java.util.Map; -import java.util.Objects; -import java.util.Optional; -import java.util.function.BiConsumer; -import java.util.function.Consumer; -import java.util.function.Function; -import java.util.stream.Collectors; -import java.util.stream.Stream; -import software.amazon.awssdk.annotations.Generated; -import software.amazon.awssdk.core.SdkBytes; -import software.amazon.awssdk.core.SdkField; -import software.amazon.awssdk.core.SdkPojo; -import software.amazon.awssdk.core.adapter.StandardMemberCopier; -import software.amazon.awssdk.core.protocol.MarshallLocation; -import software.amazon.awssdk.core.protocol.MarshallingType; -import software.amazon.awssdk.core.traits.ListTrait; -import software.amazon.awssdk.core.traits.LocationTrait; -import software.amazon.awssdk.core.traits.MapTrait; -import software.amazon.awssdk.core.util.SdkAutoConstructList; -import software.amazon.awssdk.core.util.SdkAutoConstructMap; -import software.amazon.awssdk.utils.CollectionUtils; -import software.amazon.awssdk.utils.ToString; -import software.amazon.awssdk.utils.builder.CopyableBuilder; -import software.amazon.awssdk.utils.builder.ToCopyableBuilder; - -/** - */ -@Generated("software.amazon.awssdk:codegen") -public final class AllTypesResponse extends JsonProtocolTestsResponse implements - ToCopyableBuilder { - private static final SdkField STRING_MEMBER_FIELD = SdkField. builder(MarshallingType.STRING) - .memberName("StringMember").getter(getter(AllTypesResponse::stringMember)).setter(setter(Builder::stringMember)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("StringMember").build()).build(); - - private static final SdkField INTEGER_MEMBER_FIELD = SdkField. builder(MarshallingType.INTEGER) - .memberName("IntegerMember").getter(getter(AllTypesResponse::integerMember)).setter(setter(Builder::integerMember)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("IntegerMember").build()).build(); - - private static final SdkField BOOLEAN_MEMBER_FIELD = SdkField. builder(MarshallingType.BOOLEAN) - .memberName("BooleanMember").getter(getter(AllTypesResponse::booleanMember)).setter(setter(Builder::booleanMember)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("BooleanMember").build()).build(); - - private static final SdkField FLOAT_MEMBER_FIELD = SdkField. builder(MarshallingType.FLOAT) - .memberName("FloatMember").getter(getter(AllTypesResponse::floatMember)).setter(setter(Builder::floatMember)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("FloatMember").build()).build(); - - private static final SdkField DOUBLE_MEMBER_FIELD = SdkField. builder(MarshallingType.DOUBLE) - .memberName("DoubleMember").getter(getter(AllTypesResponse::doubleMember)).setter(setter(Builder::doubleMember)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("DoubleMember").build()).build(); - - private static final SdkField LONG_MEMBER_FIELD = SdkField. builder(MarshallingType.LONG) - .memberName("LongMember").getter(getter(AllTypesResponse::longMember)).setter(setter(Builder::longMember)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("LongMember").build()).build(); - - private static final SdkField> SIMPLE_LIST_FIELD = SdkField - .> builder(MarshallingType.LIST) - .memberName("SimpleList") - .getter(getter(AllTypesResponse::simpleList)) - .setter(setter(Builder::simpleList)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("SimpleList").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("member").build()).build()).build()).build(); - - private static final SdkField> LIST_OF_ENUMS_FIELD = SdkField - .> builder(MarshallingType.LIST) - .memberName("ListOfEnums") - .getter(getter(AllTypesResponse::listOfEnumsAsStrings)) - .setter(setter(Builder::listOfEnumsWithStrings)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ListOfEnums").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("member").build()).build()).build()).build(); - - private static final SdkField>> LIST_OF_MAPS_FIELD = SdkField - .>> builder(MarshallingType.LIST) - .memberName("ListOfMaps") - .getter(getter(AllTypesResponse::listOfMaps)) - .setter(setter(Builder::listOfMaps)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ListOfMaps").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField.> builder(MarshallingType.MAP) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("member").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder() - .location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()) - .build()).build()).build()).build(); - - private static final SdkField> LIST_OF_STRUCTS_FIELD = SdkField - .> builder(MarshallingType.LIST) - .memberName("ListOfStructs") - .getter(getter(AllTypesResponse::listOfStructs)) - .setter(setter(Builder::listOfStructs)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ListOfStructs").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder(MarshallingType.SDK_POJO) - .constructor(SimpleStruct::builder) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("member").build()).build()).build()).build(); - - private static final SdkField>> LIST_OF_MAP_OF_ENUM_TO_STRING_FIELD = SdkField - .>> builder(MarshallingType.LIST) - .memberName("ListOfMapOfEnumToString") - .getter(getter(AllTypesResponse::listOfMapOfEnumToStringAsStrings)) - .setter(setter(Builder::listOfMapOfEnumToStringWithStrings)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ListOfMapOfEnumToString").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField.> builder(MarshallingType.MAP) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("member").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder() - .location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()) - .build()).build()).build()).build(); - - private static final SdkField>> MAP_OF_STRING_TO_INTEGER_LIST_FIELD = SdkField - .>> builder(MarshallingType.MAP) - .memberName("MapOfStringToIntegerList") - .getter(getter(AllTypesResponse::mapOfStringToIntegerList)) - .setter(setter(Builder::mapOfStringToIntegerList)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MapOfStringToIntegerList").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField.> builder(MarshallingType.LIST) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder(MarshallingType.INTEGER) - .traits(LocationTrait.builder() - .location(MarshallLocation.PAYLOAD) - .locationName("member").build()).build()) - .build()).build()).build()).build(); - - private static final SdkField> MAP_OF_STRING_TO_STRING_FIELD = SdkField - .> builder(MarshallingType.MAP) - .memberName("MapOfStringToString") - .getter(getter(AllTypesResponse::mapOfStringToString)) - .setter(setter(Builder::mapOfStringToString)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MapOfStringToString").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()).build()).build(); - - private static final SdkField> MAP_OF_STRING_TO_SIMPLE_STRUCT_FIELD = SdkField - .> builder(MarshallingType.MAP) - .memberName("MapOfStringToSimpleStruct") - .getter(getter(AllTypesResponse::mapOfStringToSimpleStruct)) - .setter(setter(Builder::mapOfStringToSimpleStruct)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MapOfStringToSimpleStruct").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.SDK_POJO) - .constructor(SimpleStruct::builder) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()).build()).build(); - - private static final SdkField> MAP_OF_ENUM_TO_ENUM_FIELD = SdkField - .> builder(MarshallingType.MAP) - .memberName("MapOfEnumToEnum") - .getter(getter(AllTypesResponse::mapOfEnumToEnumAsStrings)) - .setter(setter(Builder::mapOfEnumToEnumWithStrings)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MapOfEnumToEnum").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()).build()).build(); - - private static final SdkField> MAP_OF_ENUM_TO_STRING_FIELD = SdkField - .> builder(MarshallingType.MAP) - .memberName("MapOfEnumToString") - .getter(getter(AllTypesResponse::mapOfEnumToStringAsStrings)) - .setter(setter(Builder::mapOfEnumToStringWithStrings)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MapOfEnumToString").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()).build()).build(); - - private static final SdkField> MAP_OF_STRING_TO_ENUM_FIELD = SdkField - .> builder(MarshallingType.MAP) - .memberName("MapOfStringToEnum") - .getter(getter(AllTypesResponse::mapOfStringToEnumAsStrings)) - .setter(setter(Builder::mapOfStringToEnumWithStrings)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MapOfStringToEnum").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()).build()).build(); - - private static final SdkField> MAP_OF_ENUM_TO_SIMPLE_STRUCT_FIELD = SdkField - .> builder(MarshallingType.MAP) - .memberName("MapOfEnumToSimpleStruct") - .getter(getter(AllTypesResponse::mapOfEnumToSimpleStructAsStrings)) - .setter(setter(Builder::mapOfEnumToSimpleStructWithStrings)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MapOfEnumToSimpleStruct").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.SDK_POJO) - .constructor(SimpleStruct::builder) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()).build()).build(); - - private static final SdkField>> MAP_OF_ENUM_TO_LIST_OF_ENUMS_FIELD = SdkField - .>> builder(MarshallingType.MAP) - .memberName("MapOfEnumToListOfEnums") - .getter(getter(AllTypesResponse::mapOfEnumToListOfEnumsAsStrings)) - .setter(setter(Builder::mapOfEnumToListOfEnumsWithStrings)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MapOfEnumToListOfEnums").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField.> builder(MarshallingType.LIST) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder() - .location(MarshallLocation.PAYLOAD) - .locationName("member").build()).build()) - .build()).build()).build()).build(); - - private static final SdkField>> MAP_OF_ENUM_TO_MAP_OF_STRING_TO_ENUM_FIELD = SdkField - .>> builder(MarshallingType.MAP) - .memberName("MapOfEnumToMapOfStringToEnum") - .getter(getter(AllTypesResponse::mapOfEnumToMapOfStringToEnumAsStrings)) - .setter(setter(Builder::mapOfEnumToMapOfStringToEnumWithStrings)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MapOfEnumToMapOfStringToEnum") - .build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField.> builder(MarshallingType.MAP) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder() - .location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()) - .build()).build()).build()).build(); - - private static final SdkField TIMESTAMP_MEMBER_FIELD = SdkField. builder(MarshallingType.INSTANT) - .memberName("TimestampMember").getter(getter(AllTypesResponse::timestampMember)) - .setter(setter(Builder::timestampMember)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("TimestampMember").build()).build(); - - private static final SdkField STRUCT_WITH_NESTED_TIMESTAMP_MEMBER_FIELD = SdkField - . builder(MarshallingType.SDK_POJO) - .memberName("StructWithNestedTimestampMember") - .getter(getter(AllTypesResponse::structWithNestedTimestampMember)) - .setter(setter(Builder::structWithNestedTimestampMember)) - .constructor(StructWithTimestamp::builder) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("StructWithNestedTimestampMember") - .build()).build(); - - private static final SdkField BLOB_ARG_FIELD = SdkField. builder(MarshallingType.SDK_BYTES) - .memberName("BlobArg").getter(getter(AllTypesResponse::blobArg)).setter(setter(Builder::blobArg)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("BlobArg").build()).build(); - - private static final SdkField STRUCT_WITH_NESTED_BLOB_FIELD = SdkField - . builder(MarshallingType.SDK_POJO).memberName("StructWithNestedBlob") - .getter(getter(AllTypesResponse::structWithNestedBlob)).setter(setter(Builder::structWithNestedBlob)) - .constructor(StructWithNestedBlobType::builder) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("StructWithNestedBlob").build()) - .build(); - - private static final SdkField> BLOB_MAP_FIELD = SdkField - .> builder(MarshallingType.MAP) - .memberName("BlobMap") - .getter(getter(AllTypesResponse::blobMap)) - .setter(setter(Builder::blobMap)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("BlobMap").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.SDK_BYTES) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()).build()).build(); - - private static final SdkField> LIST_OF_BLOBS_FIELD = SdkField - .> builder(MarshallingType.LIST) - .memberName("ListOfBlobs") - .getter(getter(AllTypesResponse::listOfBlobs)) - .setter(setter(Builder::listOfBlobs)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ListOfBlobs").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder(MarshallingType.SDK_BYTES) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("member").build()).build()).build()).build(); - - private static final SdkField RECURSIVE_STRUCT_FIELD = SdkField - . builder(MarshallingType.SDK_POJO).memberName("RecursiveStruct") - .getter(getter(AllTypesResponse::recursiveStruct)).setter(setter(Builder::recursiveStruct)) - .constructor(RecursiveStructType::builder) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("RecursiveStruct").build()).build(); - - private static final SdkField POLYMORPHIC_TYPE_WITH_SUB_TYPES_FIELD = SdkField - . builder(MarshallingType.SDK_POJO) - .memberName("PolymorphicTypeWithSubTypes") - .getter(getter(AllTypesResponse::polymorphicTypeWithSubTypes)) - .setter(setter(Builder::polymorphicTypeWithSubTypes)) - .constructor(BaseType::builder) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("PolymorphicTypeWithSubTypes") - .build()).build(); - - private static final SdkField POLYMORPHIC_TYPE_WITHOUT_SUB_TYPES_FIELD = SdkField - . builder(MarshallingType.SDK_POJO) - .memberName("PolymorphicTypeWithoutSubTypes") - .getter(getter(AllTypesResponse::polymorphicTypeWithoutSubTypes)) - .setter(setter(Builder::polymorphicTypeWithoutSubTypes)) - .constructor(SubTypeOne::builder) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("PolymorphicTypeWithoutSubTypes") - .build()).build(); - - private static final SdkField ENUM_TYPE_FIELD = SdkField. builder(MarshallingType.STRING) - .memberName("EnumType").getter(getter(AllTypesResponse::enumTypeAsString)).setter(setter(Builder::enumType)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("EnumType").build()).build(); - - private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(STRING_MEMBER_FIELD, - INTEGER_MEMBER_FIELD, BOOLEAN_MEMBER_FIELD, FLOAT_MEMBER_FIELD, DOUBLE_MEMBER_FIELD, LONG_MEMBER_FIELD, - SIMPLE_LIST_FIELD, LIST_OF_ENUMS_FIELD, LIST_OF_MAPS_FIELD, LIST_OF_STRUCTS_FIELD, - LIST_OF_MAP_OF_ENUM_TO_STRING_FIELD, MAP_OF_STRING_TO_INTEGER_LIST_FIELD, MAP_OF_STRING_TO_STRING_FIELD, - MAP_OF_STRING_TO_SIMPLE_STRUCT_FIELD, MAP_OF_ENUM_TO_ENUM_FIELD, MAP_OF_ENUM_TO_STRING_FIELD, - MAP_OF_STRING_TO_ENUM_FIELD, MAP_OF_ENUM_TO_SIMPLE_STRUCT_FIELD, MAP_OF_ENUM_TO_LIST_OF_ENUMS_FIELD, - MAP_OF_ENUM_TO_MAP_OF_STRING_TO_ENUM_FIELD, TIMESTAMP_MEMBER_FIELD, STRUCT_WITH_NESTED_TIMESTAMP_MEMBER_FIELD, - BLOB_ARG_FIELD, STRUCT_WITH_NESTED_BLOB_FIELD, BLOB_MAP_FIELD, LIST_OF_BLOBS_FIELD, RECURSIVE_STRUCT_FIELD, - POLYMORPHIC_TYPE_WITH_SUB_TYPES_FIELD, POLYMORPHIC_TYPE_WITHOUT_SUB_TYPES_FIELD, ENUM_TYPE_FIELD)); - - private final String stringMember; - - private final Integer integerMember; - - private final Boolean booleanMember; - - private final Float floatMember; - - private final Double doubleMember; - - private final Long longMember; - - private final List simpleList; - - private final List listOfEnums; - - private final List> listOfMaps; - - private final List listOfStructs; - - private final List> listOfMapOfEnumToString; - - private final Map> mapOfStringToIntegerList; - - private final Map mapOfStringToString; - - private final Map mapOfStringToSimpleStruct; - - private final Map mapOfEnumToEnum; - - private final Map mapOfEnumToString; - - private final Map mapOfStringToEnum; - - private final Map mapOfEnumToSimpleStruct; - - private final Map> mapOfEnumToListOfEnums; - - private final Map> mapOfEnumToMapOfStringToEnum; - - private final Instant timestampMember; - - private final StructWithTimestamp structWithNestedTimestampMember; - - private final SdkBytes blobArg; - - private final StructWithNestedBlobType structWithNestedBlob; - - private final Map blobMap; - - private final List listOfBlobs; - - private final RecursiveStructType recursiveStruct; - - private final BaseType polymorphicTypeWithSubTypes; - - private final SubTypeOne polymorphicTypeWithoutSubTypes; - - private final String enumType; - - private AllTypesResponse(BuilderImpl builder) { - super(builder); - this.stringMember = builder.stringMember; - this.integerMember = builder.integerMember; - this.booleanMember = builder.booleanMember; - this.floatMember = builder.floatMember; - this.doubleMember = builder.doubleMember; - this.longMember = builder.longMember; - this.simpleList = builder.simpleList; - this.listOfEnums = builder.listOfEnums; - this.listOfMaps = builder.listOfMaps; - this.listOfStructs = builder.listOfStructs; - this.listOfMapOfEnumToString = builder.listOfMapOfEnumToString; - this.mapOfStringToIntegerList = builder.mapOfStringToIntegerList; - this.mapOfStringToString = builder.mapOfStringToString; - this.mapOfStringToSimpleStruct = builder.mapOfStringToSimpleStruct; - this.mapOfEnumToEnum = builder.mapOfEnumToEnum; - this.mapOfEnumToString = builder.mapOfEnumToString; - this.mapOfStringToEnum = builder.mapOfStringToEnum; - this.mapOfEnumToSimpleStruct = builder.mapOfEnumToSimpleStruct; - this.mapOfEnumToListOfEnums = builder.mapOfEnumToListOfEnums; - this.mapOfEnumToMapOfStringToEnum = builder.mapOfEnumToMapOfStringToEnum; - this.timestampMember = builder.timestampMember; - this.structWithNestedTimestampMember = builder.structWithNestedTimestampMember; - this.blobArg = builder.blobArg; - this.structWithNestedBlob = builder.structWithNestedBlob; - this.blobMap = builder.blobMap; - this.listOfBlobs = builder.listOfBlobs; - this.recursiveStruct = builder.recursiveStruct; - this.polymorphicTypeWithSubTypes = builder.polymorphicTypeWithSubTypes; - this.polymorphicTypeWithoutSubTypes = builder.polymorphicTypeWithoutSubTypes; - this.enumType = builder.enumType; - } - - /** - * Returns the value of the StringMember property for this object. - * - * @return The value of the StringMember property for this object. - */ - public String stringMember() { - return stringMember; - } - - /** - * Returns the value of the IntegerMember property for this object. - * - * @return The value of the IntegerMember property for this object. - */ - public Integer integerMember() { - return integerMember; - } - - /** - * Returns the value of the BooleanMember property for this object. - * - * @return The value of the BooleanMember property for this object. - */ - public Boolean booleanMember() { - return booleanMember; - } - - /** - * Returns the value of the FloatMember property for this object. - * - * @return The value of the FloatMember property for this object. - */ - public Float floatMember() { - return floatMember; - } - - /** - * Returns the value of the DoubleMember property for this object. - * - * @return The value of the DoubleMember property for this object. - */ - public Double doubleMember() { - return doubleMember; - } - - /** - * Returns the value of the LongMember property for this object. - * - * @return The value of the LongMember property for this object. - */ - public Long longMember() { - return longMember; - } - - /** - * Returns true if the SimpleList property was specified by the sender (it may be empty), or false if the sender did - * not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service. - */ - public boolean hasSimpleList() { - return simpleList != null && !(simpleList instanceof SdkAutoConstructList); - } - - /** - * Returns the value of the SimpleList property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasSimpleList()} to see if a value was sent in this field. - *

- * - * @return The value of the SimpleList property for this object. - */ - public List simpleList() { - return simpleList; - } - - /** - * Returns the value of the ListOfEnums property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasListOfEnums()} to see if a value was sent in this field. - *

- * - * @return The value of the ListOfEnums property for this object. - */ - public List listOfEnums() { - return ListOfEnumsCopier.copyStringToEnum(listOfEnums); - } - - /** - * Returns true if the ListOfEnums property was specified by the sender (it may be empty), or false if the sender - * did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service. - */ - public boolean hasListOfEnums() { - return listOfEnums != null && !(listOfEnums instanceof SdkAutoConstructList); - } - - /** - * Returns the value of the ListOfEnums property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasListOfEnums()} to see if a value was sent in this field. - *

- * - * @return The value of the ListOfEnums property for this object. - */ - public List listOfEnumsAsStrings() { - return listOfEnums; - } - - /** - * Returns true if the ListOfMaps property was specified by the sender (it may be empty), or false if the sender did - * not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service. - */ - public boolean hasListOfMaps() { - return listOfMaps != null && !(listOfMaps instanceof SdkAutoConstructList); - } - - /** - * Returns the value of the ListOfMaps property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasListOfMaps()} to see if a value was sent in this field. - *

- * - * @return The value of the ListOfMaps property for this object. - */ - public List> listOfMaps() { - return listOfMaps; - } - - /** - * Returns true if the ListOfStructs property was specified by the sender (it may be empty), or false if the sender - * did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service. - */ - public boolean hasListOfStructs() { - return listOfStructs != null && !(listOfStructs instanceof SdkAutoConstructList); - } - - /** - * Returns the value of the ListOfStructs property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasListOfStructs()} to see if a value was sent in this field. - *

- * - * @return The value of the ListOfStructs property for this object. - */ - public List listOfStructs() { - return listOfStructs; - } - - /** - * Returns the value of the ListOfMapOfEnumToString property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasListOfMapOfEnumToString()} to see if a value was sent in this field. - *

- * - * @return The value of the ListOfMapOfEnumToString property for this object. - */ - public List> listOfMapOfEnumToString() { - return ListOfMapOfEnumToStringCopier.copyStringToEnum(listOfMapOfEnumToString); - } - - /** - * Returns true if the ListOfMapOfEnumToString property was specified by the sender (it may be empty), or false if - * the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS - * service. - */ - public boolean hasListOfMapOfEnumToString() { - return listOfMapOfEnumToString != null && !(listOfMapOfEnumToString instanceof SdkAutoConstructList); - } - - /** - * Returns the value of the ListOfMapOfEnumToString property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasListOfMapOfEnumToString()} to see if a value was sent in this field. - *

- * - * @return The value of the ListOfMapOfEnumToString property for this object. - */ - public List> listOfMapOfEnumToStringAsStrings() { - return listOfMapOfEnumToString; - } - - /** - * Returns true if the MapOfStringToIntegerList property was specified by the sender (it may be empty), or false if - * the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS - * service. - */ - public boolean hasMapOfStringToIntegerList() { - return mapOfStringToIntegerList != null && !(mapOfStringToIntegerList instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the MapOfStringToIntegerList property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfStringToIntegerList()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfStringToIntegerList property for this object. - */ - public Map> mapOfStringToIntegerList() { - return mapOfStringToIntegerList; - } - - /** - * Returns true if the MapOfStringToString property was specified by the sender (it may be empty), or false if the - * sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS - * service. - */ - public boolean hasMapOfStringToString() { - return mapOfStringToString != null && !(mapOfStringToString instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the MapOfStringToString property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfStringToString()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfStringToString property for this object. - */ - public Map mapOfStringToString() { - return mapOfStringToString; - } - - /** - * Returns true if the MapOfStringToSimpleStruct property was specified by the sender (it may be empty), or false if - * the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS - * service. - */ - public boolean hasMapOfStringToSimpleStruct() { - return mapOfStringToSimpleStruct != null && !(mapOfStringToSimpleStruct instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the MapOfStringToSimpleStruct property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfStringToSimpleStruct()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfStringToSimpleStruct property for this object. - */ - public Map mapOfStringToSimpleStruct() { - return mapOfStringToSimpleStruct; - } - - /** - * Returns the value of the MapOfEnumToEnum property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfEnumToEnum()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfEnumToEnum property for this object. - */ - public Map mapOfEnumToEnum() { - return MapOfEnumToEnumCopier.copyStringToEnum(mapOfEnumToEnum); - } - - /** - * Returns true if the MapOfEnumToEnum property was specified by the sender (it may be empty), or false if the - * sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS - * service. - */ - public boolean hasMapOfEnumToEnum() { - return mapOfEnumToEnum != null && !(mapOfEnumToEnum instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the MapOfEnumToEnum property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfEnumToEnum()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfEnumToEnum property for this object. - */ - public Map mapOfEnumToEnumAsStrings() { - return mapOfEnumToEnum; - } - - /** - * Returns the value of the MapOfEnumToString property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfEnumToString()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfEnumToString property for this object. - */ - public Map mapOfEnumToString() { - return MapOfEnumToStringCopier.copyStringToEnum(mapOfEnumToString); - } - - /** - * Returns true if the MapOfEnumToString property was specified by the sender (it may be empty), or false if the - * sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS - * service. - */ - public boolean hasMapOfEnumToString() { - return mapOfEnumToString != null && !(mapOfEnumToString instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the MapOfEnumToString property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfEnumToString()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfEnumToString property for this object. - */ - public Map mapOfEnumToStringAsStrings() { - return mapOfEnumToString; - } - - /** - * Returns the value of the MapOfStringToEnum property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfStringToEnum()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfStringToEnum property for this object. - */ - public Map mapOfStringToEnum() { - return MapOfStringToEnumCopier.copyStringToEnum(mapOfStringToEnum); - } - - /** - * Returns true if the MapOfStringToEnum property was specified by the sender (it may be empty), or false if the - * sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS - * service. - */ - public boolean hasMapOfStringToEnum() { - return mapOfStringToEnum != null && !(mapOfStringToEnum instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the MapOfStringToEnum property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfStringToEnum()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfStringToEnum property for this object. - */ - public Map mapOfStringToEnumAsStrings() { - return mapOfStringToEnum; - } - - /** - * Returns the value of the MapOfEnumToSimpleStruct property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfEnumToSimpleStruct()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfEnumToSimpleStruct property for this object. - */ - public Map mapOfEnumToSimpleStruct() { - return MapOfEnumToSimpleStructCopier.copyStringToEnum(mapOfEnumToSimpleStruct); - } - - /** - * Returns true if the MapOfEnumToSimpleStruct property was specified by the sender (it may be empty), or false if - * the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS - * service. - */ - public boolean hasMapOfEnumToSimpleStruct() { - return mapOfEnumToSimpleStruct != null && !(mapOfEnumToSimpleStruct instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the MapOfEnumToSimpleStruct property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfEnumToSimpleStruct()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfEnumToSimpleStruct property for this object. - */ - public Map mapOfEnumToSimpleStructAsStrings() { - return mapOfEnumToSimpleStruct; - } - - /** - * Returns the value of the MapOfEnumToListOfEnums property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfEnumToListOfEnums()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfEnumToListOfEnums property for this object. - */ - public Map> mapOfEnumToListOfEnums() { - return MapOfEnumToListOfEnumsCopier.copyStringToEnum(mapOfEnumToListOfEnums); - } - - /** - * Returns true if the MapOfEnumToListOfEnums property was specified by the sender (it may be empty), or false if - * the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS - * service. - */ - public boolean hasMapOfEnumToListOfEnums() { - return mapOfEnumToListOfEnums != null && !(mapOfEnumToListOfEnums instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the MapOfEnumToListOfEnums property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfEnumToListOfEnums()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfEnumToListOfEnums property for this object. - */ - public Map> mapOfEnumToListOfEnumsAsStrings() { - return mapOfEnumToListOfEnums; - } - - /** - * Returns the value of the MapOfEnumToMapOfStringToEnum property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfEnumToMapOfStringToEnum()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfEnumToMapOfStringToEnum property for this object. - */ - public Map> mapOfEnumToMapOfStringToEnum() { - return MapOfEnumToMapOfStringToEnumCopier.copyStringToEnum(mapOfEnumToMapOfStringToEnum); - } - - /** - * Returns true if the MapOfEnumToMapOfStringToEnum property was specified by the sender (it may be empty), or false - * if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the - * AWS service. - */ - public boolean hasMapOfEnumToMapOfStringToEnum() { - return mapOfEnumToMapOfStringToEnum != null && !(mapOfEnumToMapOfStringToEnum instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the MapOfEnumToMapOfStringToEnum property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfEnumToMapOfStringToEnum()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfEnumToMapOfStringToEnum property for this object. - */ - public Map> mapOfEnumToMapOfStringToEnumAsStrings() { - return mapOfEnumToMapOfStringToEnum; - } - - /** - * Returns the value of the TimestampMember property for this object. - * - * @return The value of the TimestampMember property for this object. - */ - public Instant timestampMember() { - return timestampMember; - } - - /** - * Returns the value of the StructWithNestedTimestampMember property for this object. - * - * @return The value of the StructWithNestedTimestampMember property for this object. - */ - public StructWithTimestamp structWithNestedTimestampMember() { - return structWithNestedTimestampMember; - } - - /** - * Returns the value of the BlobArg property for this object. - * - * @return The value of the BlobArg property for this object. - */ - public SdkBytes blobArg() { - return blobArg; - } - - /** - * Returns the value of the StructWithNestedBlob property for this object. - * - * @return The value of the StructWithNestedBlob property for this object. - */ - public StructWithNestedBlobType structWithNestedBlob() { - return structWithNestedBlob; - } - - /** - * Returns true if the BlobMap property was specified by the sender (it may be empty), or false if the sender did - * not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service. - */ - public boolean hasBlobMap() { - return blobMap != null && !(blobMap instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the BlobMap property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasBlobMap()} to see if a value was sent in this field. - *

- * - * @return The value of the BlobMap property for this object. - */ - public Map blobMap() { - return blobMap; - } - - /** - * Returns true if the ListOfBlobs property was specified by the sender (it may be empty), or false if the sender - * did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service. - */ - public boolean hasListOfBlobs() { - return listOfBlobs != null && !(listOfBlobs instanceof SdkAutoConstructList); - } - - /** - * Returns the value of the ListOfBlobs property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasListOfBlobs()} to see if a value was sent in this field. - *

- * - * @return The value of the ListOfBlobs property for this object. - */ - public List listOfBlobs() { - return listOfBlobs; - } - - /** - * Returns the value of the RecursiveStruct property for this object. - * - * @return The value of the RecursiveStruct property for this object. - */ - public RecursiveStructType recursiveStruct() { - return recursiveStruct; - } - - /** - * Returns the value of the PolymorphicTypeWithSubTypes property for this object. - * - * @return The value of the PolymorphicTypeWithSubTypes property for this object. - */ - public BaseType polymorphicTypeWithSubTypes() { - return polymorphicTypeWithSubTypes; - } - - /** - * Returns the value of the PolymorphicTypeWithoutSubTypes property for this object. - * - * @return The value of the PolymorphicTypeWithoutSubTypes property for this object. - */ - public SubTypeOne polymorphicTypeWithoutSubTypes() { - return polymorphicTypeWithoutSubTypes; - } - - /** - * Returns the value of the EnumType property for this object. - *

- * If the service returns an enum value that is not available in the current SDK version, {@link #enumType} will - * return {@link EnumType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from - * {@link #enumTypeAsString}. - *

- * - * @return The value of the EnumType property for this object. - * @see EnumType - */ - public EnumType enumType() { - return EnumType.fromValue(enumType); - } - - /** - * Returns the value of the EnumType property for this object. - *

- * If the service returns an enum value that is not available in the current SDK version, {@link #enumType} will - * return {@link EnumType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from - * {@link #enumTypeAsString}. - *

- * - * @return The value of the EnumType property for this object. - * @see EnumType - */ - public String enumTypeAsString() { - return enumType; - } - - @Override - public Builder toBuilder() { - return new BuilderImpl(this); - } - - public static Builder builder() { - return new BuilderImpl(); - } - - public static Class serializableBuilderClass() { - return BuilderImpl.class; - } - - @Override - public int hashCode() { - int hashCode = 1; - hashCode = 31 * hashCode + super.hashCode(); - hashCode = 31 * hashCode + Objects.hashCode(stringMember()); - hashCode = 31 * hashCode + Objects.hashCode(integerMember()); - hashCode = 31 * hashCode + Objects.hashCode(booleanMember()); - hashCode = 31 * hashCode + Objects.hashCode(floatMember()); - hashCode = 31 * hashCode + Objects.hashCode(doubleMember()); - hashCode = 31 * hashCode + Objects.hashCode(longMember()); - hashCode = 31 * hashCode + Objects.hashCode(simpleList()); - hashCode = 31 * hashCode + Objects.hashCode(listOfEnumsAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(listOfMaps()); - hashCode = 31 * hashCode + Objects.hashCode(listOfStructs()); - hashCode = 31 * hashCode + Objects.hashCode(listOfMapOfEnumToStringAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfStringToIntegerList()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfStringToString()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfStringToSimpleStruct()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfEnumToEnumAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfEnumToStringAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfStringToEnumAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfEnumToSimpleStructAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfEnumToListOfEnumsAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfEnumToMapOfStringToEnumAsStrings()); - hashCode = 31 * hashCode + Objects.hashCode(timestampMember()); - hashCode = 31 * hashCode + Objects.hashCode(structWithNestedTimestampMember()); - hashCode = 31 * hashCode + Objects.hashCode(blobArg()); - hashCode = 31 * hashCode + Objects.hashCode(structWithNestedBlob()); - hashCode = 31 * hashCode + Objects.hashCode(blobMap()); - hashCode = 31 * hashCode + Objects.hashCode(listOfBlobs()); - hashCode = 31 * hashCode + Objects.hashCode(recursiveStruct()); - hashCode = 31 * hashCode + Objects.hashCode(polymorphicTypeWithSubTypes()); - hashCode = 31 * hashCode + Objects.hashCode(polymorphicTypeWithoutSubTypes()); - hashCode = 31 * hashCode + Objects.hashCode(enumTypeAsString()); - return hashCode; - } - - @Override - public boolean equals(Object obj) { - return super.equals(obj) && equalsBySdkFields(obj); - } - - @Override - public boolean equalsBySdkFields(Object obj) { - if (this == obj) { - return true; - } - if (obj == null) { - return false; - } - if (!(obj instanceof AllTypesResponse)) { - return false; - } - AllTypesResponse other = (AllTypesResponse) obj; - return Objects.equals(stringMember(), other.stringMember()) && Objects.equals(integerMember(), other.integerMember()) - && Objects.equals(booleanMember(), other.booleanMember()) && Objects.equals(floatMember(), other.floatMember()) - && Objects.equals(doubleMember(), other.doubleMember()) && Objects.equals(longMember(), other.longMember()) - && Objects.equals(simpleList(), other.simpleList()) - && Objects.equals(listOfEnumsAsStrings(), other.listOfEnumsAsStrings()) - && Objects.equals(listOfMaps(), other.listOfMaps()) && Objects.equals(listOfStructs(), other.listOfStructs()) - && Objects.equals(listOfMapOfEnumToStringAsStrings(), other.listOfMapOfEnumToStringAsStrings()) - && Objects.equals(mapOfStringToIntegerList(), other.mapOfStringToIntegerList()) - && Objects.equals(mapOfStringToString(), other.mapOfStringToString()) - && Objects.equals(mapOfStringToSimpleStruct(), other.mapOfStringToSimpleStruct()) - && Objects.equals(mapOfEnumToEnumAsStrings(), other.mapOfEnumToEnumAsStrings()) - && Objects.equals(mapOfEnumToStringAsStrings(), other.mapOfEnumToStringAsStrings()) - && Objects.equals(mapOfStringToEnumAsStrings(), other.mapOfStringToEnumAsStrings()) - && Objects.equals(mapOfEnumToSimpleStructAsStrings(), other.mapOfEnumToSimpleStructAsStrings()) - && Objects.equals(mapOfEnumToListOfEnumsAsStrings(), other.mapOfEnumToListOfEnumsAsStrings()) - && Objects.equals(mapOfEnumToMapOfStringToEnumAsStrings(), other.mapOfEnumToMapOfStringToEnumAsStrings()) - && Objects.equals(timestampMember(), other.timestampMember()) - && Objects.equals(structWithNestedTimestampMember(), other.structWithNestedTimestampMember()) - && Objects.equals(blobArg(), other.blobArg()) - && Objects.equals(structWithNestedBlob(), other.structWithNestedBlob()) - && Objects.equals(blobMap(), other.blobMap()) && Objects.equals(listOfBlobs(), other.listOfBlobs()) - && Objects.equals(recursiveStruct(), other.recursiveStruct()) - && Objects.equals(polymorphicTypeWithSubTypes(), other.polymorphicTypeWithSubTypes()) - && Objects.equals(polymorphicTypeWithoutSubTypes(), other.polymorphicTypeWithoutSubTypes()) - && Objects.equals(enumTypeAsString(), other.enumTypeAsString()); - } - - /** - * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be - * redacted from this string using a placeholder value. - */ - @Override - public String toString() { - return ToString.builder("AllTypesResponse").add("StringMember", stringMember()).add("IntegerMember", integerMember()) - .add("BooleanMember", booleanMember()).add("FloatMember", floatMember()).add("DoubleMember", doubleMember()) - .add("LongMember", longMember()).add("SimpleList", simpleList()).add("ListOfEnums", listOfEnumsAsStrings()) - .add("ListOfMaps", listOfMaps()).add("ListOfStructs", listOfStructs()) - .add("ListOfMapOfEnumToString", listOfMapOfEnumToStringAsStrings()) - .add("MapOfStringToIntegerList", mapOfStringToIntegerList()).add("MapOfStringToString", mapOfStringToString()) - .add("MapOfStringToSimpleStruct", mapOfStringToSimpleStruct()).add("MapOfEnumToEnum", mapOfEnumToEnumAsStrings()) - .add("MapOfEnumToString", mapOfEnumToStringAsStrings()).add("MapOfStringToEnum", mapOfStringToEnumAsStrings()) - .add("MapOfEnumToSimpleStruct", mapOfEnumToSimpleStructAsStrings()) - .add("MapOfEnumToListOfEnums", mapOfEnumToListOfEnumsAsStrings()) - .add("MapOfEnumToMapOfStringToEnum", mapOfEnumToMapOfStringToEnumAsStrings()) - .add("TimestampMember", timestampMember()) - .add("StructWithNestedTimestampMember", structWithNestedTimestampMember()).add("BlobArg", blobArg()) - .add("StructWithNestedBlob", structWithNestedBlob()).add("BlobMap", blobMap()).add("ListOfBlobs", listOfBlobs()) - .add("RecursiveStruct", recursiveStruct()).add("PolymorphicTypeWithSubTypes", polymorphicTypeWithSubTypes()) - .add("PolymorphicTypeWithoutSubTypes", polymorphicTypeWithoutSubTypes()).add("EnumType", enumTypeAsString()) - .build(); - } - - public Optional getValueForField(String fieldName, Class clazz) { - switch (fieldName) { - case "StringMember": - return Optional.ofNullable(clazz.cast(stringMember())); - case "IntegerMember": - return Optional.ofNullable(clazz.cast(integerMember())); - case "BooleanMember": - return Optional.ofNullable(clazz.cast(booleanMember())); - case "FloatMember": - return Optional.ofNullable(clazz.cast(floatMember())); - case "DoubleMember": - return Optional.ofNullable(clazz.cast(doubleMember())); - case "LongMember": - return Optional.ofNullable(clazz.cast(longMember())); - case "SimpleList": - return Optional.ofNullable(clazz.cast(simpleList())); - case "ListOfEnums": - return Optional.ofNullable(clazz.cast(listOfEnumsAsStrings())); - case "ListOfMaps": - return Optional.ofNullable(clazz.cast(listOfMaps())); - case "ListOfStructs": - return Optional.ofNullable(clazz.cast(listOfStructs())); - case "ListOfMapOfEnumToString": - return Optional.ofNullable(clazz.cast(listOfMapOfEnumToStringAsStrings())); - case "MapOfStringToIntegerList": - return Optional.ofNullable(clazz.cast(mapOfStringToIntegerList())); - case "MapOfStringToString": - return Optional.ofNullable(clazz.cast(mapOfStringToString())); - case "MapOfStringToSimpleStruct": - return Optional.ofNullable(clazz.cast(mapOfStringToSimpleStruct())); - case "MapOfEnumToEnum": - return Optional.ofNullable(clazz.cast(mapOfEnumToEnumAsStrings())); - case "MapOfEnumToString": - return Optional.ofNullable(clazz.cast(mapOfEnumToStringAsStrings())); - case "MapOfStringToEnum": - return Optional.ofNullable(clazz.cast(mapOfStringToEnumAsStrings())); - case "MapOfEnumToSimpleStruct": - return Optional.ofNullable(clazz.cast(mapOfEnumToSimpleStructAsStrings())); - case "MapOfEnumToListOfEnums": - return Optional.ofNullable(clazz.cast(mapOfEnumToListOfEnumsAsStrings())); - case "MapOfEnumToMapOfStringToEnum": - return Optional.ofNullable(clazz.cast(mapOfEnumToMapOfStringToEnumAsStrings())); - case "TimestampMember": - return Optional.ofNullable(clazz.cast(timestampMember())); - case "StructWithNestedTimestampMember": - return Optional.ofNullable(clazz.cast(structWithNestedTimestampMember())); - case "BlobArg": - return Optional.ofNullable(clazz.cast(blobArg())); - case "StructWithNestedBlob": - return Optional.ofNullable(clazz.cast(structWithNestedBlob())); - case "BlobMap": - return Optional.ofNullable(clazz.cast(blobMap())); - case "ListOfBlobs": - return Optional.ofNullable(clazz.cast(listOfBlobs())); - case "RecursiveStruct": - return Optional.ofNullable(clazz.cast(recursiveStruct())); - case "PolymorphicTypeWithSubTypes": - return Optional.ofNullable(clazz.cast(polymorphicTypeWithSubTypes())); - case "PolymorphicTypeWithoutSubTypes": - return Optional.ofNullable(clazz.cast(polymorphicTypeWithoutSubTypes())); - case "EnumType": - return Optional.ofNullable(clazz.cast(enumTypeAsString())); - default: - return Optional.empty(); - } - } - - @Override - public List> sdkFields() { - return SDK_FIELDS; - } - - private static Function getter(Function g) { - return obj -> g.apply((AllTypesResponse) obj); - } - - private static BiConsumer setter(BiConsumer s) { - return (obj, val) -> s.accept((Builder) obj, val); - } - - public interface Builder extends JsonProtocolTestsResponse.Builder, SdkPojo, CopyableBuilder { - /** - * Sets the value of the StringMember property for this object. - * - * @param stringMember - * The new value for the StringMember property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder stringMember(String stringMember); - - /** - * Sets the value of the IntegerMember property for this object. - * - * @param integerMember - * The new value for the IntegerMember property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder integerMember(Integer integerMember); - - /** - * Sets the value of the BooleanMember property for this object. - * - * @param booleanMember - * The new value for the BooleanMember property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder booleanMember(Boolean booleanMember); - - /** - * Sets the value of the FloatMember property for this object. - * - * @param floatMember - * The new value for the FloatMember property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder floatMember(Float floatMember); - - /** - * Sets the value of the DoubleMember property for this object. - * - * @param doubleMember - * The new value for the DoubleMember property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder doubleMember(Double doubleMember); - - /** - * Sets the value of the LongMember property for this object. - * - * @param longMember - * The new value for the LongMember property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder longMember(Long longMember); - - /** - * Sets the value of the SimpleList property for this object. - * - * @param simpleList - * The new value for the SimpleList property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder simpleList(Collection simpleList); - - /** - * Sets the value of the SimpleList property for this object. - * - * @param simpleList - * The new value for the SimpleList property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder simpleList(String... simpleList); - - /** - * Sets the value of the ListOfEnums property for this object. - * - * @param listOfEnums - * The new value for the ListOfEnums property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfEnumsWithStrings(Collection listOfEnums); - - /** - * Sets the value of the ListOfEnums property for this object. - * - * @param listOfEnums - * The new value for the ListOfEnums property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfEnumsWithStrings(String... listOfEnums); - - /** - * Sets the value of the ListOfEnums property for this object. - * - * @param listOfEnums - * The new value for the ListOfEnums property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfEnums(Collection listOfEnums); - - /** - * Sets the value of the ListOfEnums property for this object. - * - * @param listOfEnums - * The new value for the ListOfEnums property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfEnums(EnumType... listOfEnums); - - /** - * Sets the value of the ListOfMaps property for this object. - * - * @param listOfMaps - * The new value for the ListOfMaps property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfMaps(Collection> listOfMaps); - - /** - * Sets the value of the ListOfMaps property for this object. - * - * @param listOfMaps - * The new value for the ListOfMaps property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfMaps(Map... listOfMaps); - - /** - * Sets the value of the ListOfStructs property for this object. - * - * @param listOfStructs - * The new value for the ListOfStructs property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfStructs(Collection listOfStructs); - - /** - * Sets the value of the ListOfStructs property for this object. - * - * @param listOfStructs - * The new value for the ListOfStructs property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfStructs(SimpleStruct... listOfStructs); - - /** - * Sets the value of the ListOfStructs property for this object. - * - * This is a convenience that creates an instance of the {@link List.Builder} avoiding the need to - * create one manually via {@link List#builder()}. - * - * When the {@link Consumer} completes, {@link List.Builder#build()} is called immediately and its - * result is passed to {@link #listOfStructs(List)}. - * - * @param listOfStructs - * a consumer that will call methods on {@link List.Builder} - * @return Returns a reference to this object so that method calls can be chained together. - * @see #listOfStructs(List) - */ - Builder listOfStructs(Consumer... listOfStructs); - - /** - * Sets the value of the ListOfMapOfEnumToString property for this object. - * - * @param listOfMapOfEnumToString - * The new value for the ListOfMapOfEnumToString property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfMapOfEnumToStringWithStrings(Collection> listOfMapOfEnumToString); - - /** - * Sets the value of the ListOfMapOfEnumToString property for this object. - * - * @param listOfMapOfEnumToString - * The new value for the ListOfMapOfEnumToString property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfMapOfEnumToStringWithStrings(Map... listOfMapOfEnumToString); - - /** - * Sets the value of the MapOfStringToIntegerList property for this object. - * - * @param mapOfStringToIntegerList - * The new value for the MapOfStringToIntegerList property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfStringToIntegerList(Map> mapOfStringToIntegerList); - - /** - * Sets the value of the MapOfStringToString property for this object. - * - * @param mapOfStringToString - * The new value for the MapOfStringToString property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfStringToString(Map mapOfStringToString); - - /** - * Sets the value of the MapOfStringToSimpleStruct property for this object. - * - * @param mapOfStringToSimpleStruct - * The new value for the MapOfStringToSimpleStruct property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfStringToSimpleStruct(Map mapOfStringToSimpleStruct); - - /** - * Sets the value of the MapOfEnumToEnum property for this object. - * - * @param mapOfEnumToEnum - * The new value for the MapOfEnumToEnum property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfEnumToEnumWithStrings(Map mapOfEnumToEnum); - - /** - * Sets the value of the MapOfEnumToEnum property for this object. - * - * @param mapOfEnumToEnum - * The new value for the MapOfEnumToEnum property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfEnumToEnum(Map mapOfEnumToEnum); - - /** - * Sets the value of the MapOfEnumToString property for this object. - * - * @param mapOfEnumToString - * The new value for the MapOfEnumToString property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfEnumToStringWithStrings(Map mapOfEnumToString); - - /** - * Sets the value of the MapOfEnumToString property for this object. - * - * @param mapOfEnumToString - * The new value for the MapOfEnumToString property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfEnumToString(Map mapOfEnumToString); - - /** - * Sets the value of the MapOfStringToEnum property for this object. - * - * @param mapOfStringToEnum - * The new value for the MapOfStringToEnum property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfStringToEnumWithStrings(Map mapOfStringToEnum); - - /** - * Sets the value of the MapOfStringToEnum property for this object. - * - * @param mapOfStringToEnum - * The new value for the MapOfStringToEnum property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfStringToEnum(Map mapOfStringToEnum); - - /** - * Sets the value of the MapOfEnumToSimpleStruct property for this object. - * - * @param mapOfEnumToSimpleStruct - * The new value for the MapOfEnumToSimpleStruct property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfEnumToSimpleStructWithStrings(Map mapOfEnumToSimpleStruct); - - /** - * Sets the value of the MapOfEnumToSimpleStruct property for this object. - * - * @param mapOfEnumToSimpleStruct - * The new value for the MapOfEnumToSimpleStruct property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfEnumToSimpleStruct(Map mapOfEnumToSimpleStruct); - - /** - * Sets the value of the MapOfEnumToListOfEnums property for this object. - * - * @param mapOfEnumToListOfEnums - * The new value for the MapOfEnumToListOfEnums property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfEnumToListOfEnumsWithStrings(Map> mapOfEnumToListOfEnums); - - /** - * Sets the value of the MapOfEnumToListOfEnums property for this object. - * - * @param mapOfEnumToListOfEnums - * The new value for the MapOfEnumToListOfEnums property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfEnumToListOfEnums(Map> mapOfEnumToListOfEnums); - - /** - * Sets the value of the MapOfEnumToMapOfStringToEnum property for this object. - * - * @param mapOfEnumToMapOfStringToEnum - * The new value for the MapOfEnumToMapOfStringToEnum property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfEnumToMapOfStringToEnumWithStrings(Map> mapOfEnumToMapOfStringToEnum); - - /** - * Sets the value of the MapOfEnumToMapOfStringToEnum property for this object. - * - * @param mapOfEnumToMapOfStringToEnum - * The new value for the MapOfEnumToMapOfStringToEnum property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfEnumToMapOfStringToEnum(Map> mapOfEnumToMapOfStringToEnum); - - /** - * Sets the value of the TimestampMember property for this object. - * - * @param timestampMember - * The new value for the TimestampMember property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder timestampMember(Instant timestampMember); - - /** - * Sets the value of the StructWithNestedTimestampMember property for this object. - * - * @param structWithNestedTimestampMember - * The new value for the StructWithNestedTimestampMember property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder structWithNestedTimestampMember(StructWithTimestamp structWithNestedTimestampMember); - - /** - * Sets the value of the StructWithNestedTimestampMember property for this object. - * - * This is a convenience that creates an instance of the {@link StructWithTimestamp.Builder} avoiding the need - * to create one manually via {@link StructWithTimestamp#builder()}. - * - * When the {@link Consumer} completes, {@link StructWithTimestamp.Builder#build()} is called immediately and - * its result is passed to {@link #structWithNestedTimestampMember(StructWithTimestamp)}. - * - * @param structWithNestedTimestampMember - * a consumer that will call methods on {@link StructWithTimestamp.Builder} - * @return Returns a reference to this object so that method calls can be chained together. - * @see #structWithNestedTimestampMember(StructWithTimestamp) - */ - default Builder structWithNestedTimestampMember(Consumer structWithNestedTimestampMember) { - return structWithNestedTimestampMember(StructWithTimestamp.builder().applyMutation(structWithNestedTimestampMember) - .build()); - } - - /** - * Sets the value of the BlobArg property for this object. - * - * @param blobArg - * The new value for the BlobArg property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder blobArg(SdkBytes blobArg); - - /** - * Sets the value of the StructWithNestedBlob property for this object. - * - * @param structWithNestedBlob - * The new value for the StructWithNestedBlob property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder structWithNestedBlob(StructWithNestedBlobType structWithNestedBlob); - - /** - * Sets the value of the StructWithNestedBlob property for this object. - * - * This is a convenience that creates an instance of the {@link StructWithNestedBlobType.Builder} avoiding the - * need to create one manually via {@link StructWithNestedBlobType#builder()}. - * - * When the {@link Consumer} completes, {@link StructWithNestedBlobType.Builder#build()} is called immediately - * and its result is passed to {@link #structWithNestedBlob(StructWithNestedBlobType)}. - * - * @param structWithNestedBlob - * a consumer that will call methods on {@link StructWithNestedBlobType.Builder} - * @return Returns a reference to this object so that method calls can be chained together. - * @see #structWithNestedBlob(StructWithNestedBlobType) - */ - default Builder structWithNestedBlob(Consumer structWithNestedBlob) { - return structWithNestedBlob(StructWithNestedBlobType.builder().applyMutation(structWithNestedBlob).build()); - } - - /** - * Sets the value of the BlobMap property for this object. - * - * @param blobMap - * The new value for the BlobMap property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder blobMap(Map blobMap); - - /** - * Sets the value of the ListOfBlobs property for this object. - * - * @param listOfBlobs - * The new value for the ListOfBlobs property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfBlobs(Collection listOfBlobs); - - /** - * Sets the value of the ListOfBlobs property for this object. - * - * @param listOfBlobs - * The new value for the ListOfBlobs property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfBlobs(SdkBytes... listOfBlobs); - - /** - * Sets the value of the RecursiveStruct property for this object. - * - * @param recursiveStruct - * The new value for the RecursiveStruct property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder recursiveStruct(RecursiveStructType recursiveStruct); - - /** - * Sets the value of the RecursiveStruct property for this object. - * - * This is a convenience that creates an instance of the {@link RecursiveStructType.Builder} avoiding the need - * to create one manually via {@link RecursiveStructType#builder()}. - * - * When the {@link Consumer} completes, {@link RecursiveStructType.Builder#build()} is called immediately and - * its result is passed to {@link #recursiveStruct(RecursiveStructType)}. - * - * @param recursiveStruct - * a consumer that will call methods on {@link RecursiveStructType.Builder} - * @return Returns a reference to this object so that method calls can be chained together. - * @see #recursiveStruct(RecursiveStructType) - */ - default Builder recursiveStruct(Consumer recursiveStruct) { - return recursiveStruct(RecursiveStructType.builder().applyMutation(recursiveStruct).build()); - } - - /** - * Sets the value of the PolymorphicTypeWithSubTypes property for this object. - * - * @param polymorphicTypeWithSubTypes - * The new value for the PolymorphicTypeWithSubTypes property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder polymorphicTypeWithSubTypes(BaseType polymorphicTypeWithSubTypes); - - /** - * Sets the value of the PolymorphicTypeWithSubTypes property for this object. - * - * This is a convenience that creates an instance of the {@link BaseType.Builder} avoiding the need to create - * one manually via {@link BaseType#builder()}. - * - * When the {@link Consumer} completes, {@link BaseType.Builder#build()} is called immediately and its result is - * passed to {@link #polymorphicTypeWithSubTypes(BaseType)}. - * - * @param polymorphicTypeWithSubTypes - * a consumer that will call methods on {@link BaseType.Builder} - * @return Returns a reference to this object so that method calls can be chained together. - * @see #polymorphicTypeWithSubTypes(BaseType) - */ - default Builder polymorphicTypeWithSubTypes(Consumer polymorphicTypeWithSubTypes) { - return polymorphicTypeWithSubTypes(BaseType.builder().applyMutation(polymorphicTypeWithSubTypes).build()); - } - - /** - * Sets the value of the PolymorphicTypeWithoutSubTypes property for this object. - * - * @param polymorphicTypeWithoutSubTypes - * The new value for the PolymorphicTypeWithoutSubTypes property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder polymorphicTypeWithoutSubTypes(SubTypeOne polymorphicTypeWithoutSubTypes); - - /** - * Sets the value of the PolymorphicTypeWithoutSubTypes property for this object. - * - * This is a convenience that creates an instance of the {@link SubTypeOne.Builder} avoiding the need to create - * one manually via {@link SubTypeOne#builder()}. - * - * When the {@link Consumer} completes, {@link SubTypeOne.Builder#build()} is called immediately and its result - * is passed to {@link #polymorphicTypeWithoutSubTypes(SubTypeOne)}. - * - * @param polymorphicTypeWithoutSubTypes - * a consumer that will call methods on {@link SubTypeOne.Builder} - * @return Returns a reference to this object so that method calls can be chained together. - * @see #polymorphicTypeWithoutSubTypes(SubTypeOne) - */ - default Builder polymorphicTypeWithoutSubTypes(Consumer polymorphicTypeWithoutSubTypes) { - return polymorphicTypeWithoutSubTypes(SubTypeOne.builder().applyMutation(polymorphicTypeWithoutSubTypes).build()); - } - - /** - * Sets the value of the EnumType property for this object. - * - * @param enumType - * The new value for the EnumType property for this object. - * @see EnumType - * @return Returns a reference to this object so that method calls can be chained together. - * @see EnumType - */ - Builder enumType(String enumType); - - /** - * Sets the value of the EnumType property for this object. - * - * @param enumType - * The new value for the EnumType property for this object. - * @see EnumType - * @return Returns a reference to this object so that method calls can be chained together. - * @see EnumType - */ - Builder enumType(EnumType enumType); - } - - static final class BuilderImpl extends JsonProtocolTestsResponse.BuilderImpl implements Builder { - private String stringMember; - - private Integer integerMember; - - private Boolean booleanMember; - - private Float floatMember; - - private Double doubleMember; - - private Long longMember; - - private List simpleList; - - private List listOfEnums; - - private List> listOfMaps; - - private List listOfStructs; - - private List> listOfMapOfEnumToString; - - private Map> mapOfStringToIntegerList; - - private Map mapOfStringToString; - - private Map mapOfStringToSimpleStruct; - - private Map mapOfEnumToEnum; - - private Map mapOfEnumToString; - - private Map mapOfStringToEnum; - - private Map mapOfEnumToSimpleStruct; - - private Map> mapOfEnumToListOfEnums; - - private Map> mapOfEnumToMapOfStringToEnum; - - private Instant timestampMember; - - private StructWithTimestamp structWithNestedTimestampMember; - - private SdkBytes blobArg; - - private StructWithNestedBlobType structWithNestedBlob; - - private Map blobMap; - - private List listOfBlobs; - - private RecursiveStructType recursiveStruct; - - private BaseType polymorphicTypeWithSubTypes; - - private SubTypeOne polymorphicTypeWithoutSubTypes; - - private String enumType; - - private BuilderImpl() { - } - - private BuilderImpl(AllTypesResponse model) { - super(model); - stringMember(model.stringMember); - integerMember(model.integerMember); - booleanMember(model.booleanMember); - floatMember(model.floatMember); - doubleMember(model.doubleMember); - longMember(model.longMember); - simpleList(model.simpleList); - listOfEnumsWithStrings(model.listOfEnums); - listOfMaps(model.listOfMaps); - listOfStructs(model.listOfStructs); - listOfMapOfEnumToStringWithStrings(model.listOfMapOfEnumToString); - mapOfStringToIntegerList(model.mapOfStringToIntegerList); - mapOfStringToString(model.mapOfStringToString); - mapOfStringToSimpleStruct(model.mapOfStringToSimpleStruct); - mapOfEnumToEnumWithStrings(model.mapOfEnumToEnum); - mapOfEnumToStringWithStrings(model.mapOfEnumToString); - mapOfStringToEnumWithStrings(model.mapOfStringToEnum); - mapOfEnumToSimpleStructWithStrings(model.mapOfEnumToSimpleStruct); - mapOfEnumToListOfEnumsWithStrings(model.mapOfEnumToListOfEnums); - mapOfEnumToMapOfStringToEnumWithStrings(model.mapOfEnumToMapOfStringToEnum); - timestampMember(model.timestampMember); - structWithNestedTimestampMember(model.structWithNestedTimestampMember); - blobArg(model.blobArg); - structWithNestedBlob(model.structWithNestedBlob); - blobMap(model.blobMap); - listOfBlobs(model.listOfBlobs); - recursiveStruct(model.recursiveStruct); - polymorphicTypeWithSubTypes(model.polymorphicTypeWithSubTypes); - polymorphicTypeWithoutSubTypes(model.polymorphicTypeWithoutSubTypes); - enumType(model.enumType); - } - - public final String getStringMember() { - return stringMember; - } - - @Override - public final Builder stringMember(String stringMember) { - this.stringMember = stringMember; - return this; - } - - public final void setStringMember(String stringMember) { - this.stringMember = stringMember; - } - - public final Integer getIntegerMember() { - return integerMember; - } - - @Override - public final Builder integerMember(Integer integerMember) { - this.integerMember = integerMember; - return this; - } - - public final void setIntegerMember(Integer integerMember) { - this.integerMember = integerMember; - } - - public final Boolean getBooleanMember() { - return booleanMember; - } - - @Override - public final Builder booleanMember(Boolean booleanMember) { - this.booleanMember = booleanMember; - return this; - } - - public final void setBooleanMember(Boolean booleanMember) { - this.booleanMember = booleanMember; - } - - public final Float getFloatMember() { - return floatMember; - } - - @Override - public final Builder floatMember(Float floatMember) { - this.floatMember = floatMember; - return this; - } - - public final void setFloatMember(Float floatMember) { - this.floatMember = floatMember; - } - - public final Double getDoubleMember() { - return doubleMember; - } - - @Override - public final Builder doubleMember(Double doubleMember) { - this.doubleMember = doubleMember; - return this; - } - - public final void setDoubleMember(Double doubleMember) { - this.doubleMember = doubleMember; - } - - public final Long getLongMember() { - return longMember; - } - - @Override - public final Builder longMember(Long longMember) { - this.longMember = longMember; - return this; - } - - public final void setLongMember(Long longMember) { - this.longMember = longMember; - } - - public final Collection getSimpleList() { - return simpleList; - } - - @Override - public final Builder simpleList(Collection simpleList) { - this.simpleList = ListOfStringsCopier.copy(simpleList); - return this; - } - - @Override - @SafeVarargs - public final Builder simpleList(String... simpleList) { - simpleList(Arrays.asList(simpleList)); - return this; - } - - public final void setSimpleList(Collection simpleList) { - this.simpleList = ListOfStringsCopier.copy(simpleList); - } - - public final Collection getListOfEnums() { - return listOfEnums; - } - - @Override - public final Builder listOfEnumsWithStrings(Collection listOfEnums) { - this.listOfEnums = ListOfEnumsCopier.copy(listOfEnums); - return this; - } - - @Override - @SafeVarargs - public final Builder listOfEnumsWithStrings(String... listOfEnums) { - listOfEnumsWithStrings(Arrays.asList(listOfEnums)); - return this; - } - - @Override - public final Builder listOfEnums(Collection listOfEnums) { - this.listOfEnums = ListOfEnumsCopier.copyEnumToString(listOfEnums); - return this; - } - - @Override - @SafeVarargs - public final Builder listOfEnums(EnumType... listOfEnums) { - listOfEnums(Arrays.asList(listOfEnums)); - return this; - } - - public final void setListOfEnums(Collection listOfEnums) { - this.listOfEnums = ListOfEnumsCopier.copy(listOfEnums); - } - - public final Collection> getListOfMaps() { - return listOfMaps; - } - - @Override - public final Builder listOfMaps(Collection> listOfMaps) { - this.listOfMaps = ListOfMapStringToStringCopier.copy(listOfMaps); - return this; - } - - @Override - @SafeVarargs - public final Builder listOfMaps(Map... listOfMaps) { - listOfMaps(Arrays.asList(listOfMaps)); - return this; - } - - public final void setListOfMaps(Collection> listOfMaps) { - this.listOfMaps = ListOfMapStringToStringCopier.copy(listOfMaps); - } - - public final Collection getListOfStructs() { - return listOfStructs != null ? listOfStructs.stream().map(SimpleStruct::toBuilder).collect(Collectors.toList()) - : null; - } - - @Override - public final Builder listOfStructs(Collection listOfStructs) { - this.listOfStructs = ListOfSimpleStructsCopier.copy(listOfStructs); - return this; - } - - @Override - @SafeVarargs - public final Builder listOfStructs(SimpleStruct... listOfStructs) { - listOfStructs(Arrays.asList(listOfStructs)); - return this; - } - - @Override - @SafeVarargs - public final Builder listOfStructs(Consumer... listOfStructs) { - listOfStructs(Stream.of(listOfStructs).map(c -> SimpleStruct.builder().applyMutation(c).build()) - .collect(Collectors.toList())); - return this; - } - - public final void setListOfStructs(Collection listOfStructs) { - this.listOfStructs = ListOfSimpleStructsCopier.copyFromBuilder(listOfStructs); - } - - public final Collection> getListOfMapOfEnumToString() { - return listOfMapOfEnumToString; - } - - @Override - public final Builder listOfMapOfEnumToStringWithStrings(Collection> listOfMapOfEnumToString) { - this.listOfMapOfEnumToString = ListOfMapOfEnumToStringCopier.copy(listOfMapOfEnumToString); - return this; - } - - @Override - @SafeVarargs - public final Builder listOfMapOfEnumToStringWithStrings(Map... listOfMapOfEnumToString) { - listOfMapOfEnumToStringWithStrings(Arrays.asList(listOfMapOfEnumToString)); - return this; - } - - public final void setListOfMapOfEnumToString(Collection> listOfMapOfEnumToString) { - this.listOfMapOfEnumToString = ListOfMapOfEnumToStringCopier.copy(listOfMapOfEnumToString); - } - - public final Map> getMapOfStringToIntegerList() { - return mapOfStringToIntegerList; - } - - @Override - public final Builder mapOfStringToIntegerList(Map> mapOfStringToIntegerList) { - this.mapOfStringToIntegerList = MapOfStringToIntegerListCopier.copy(mapOfStringToIntegerList); - return this; - } - - public final void setMapOfStringToIntegerList(Map> mapOfStringToIntegerList) { - this.mapOfStringToIntegerList = MapOfStringToIntegerListCopier.copy(mapOfStringToIntegerList); - } - - public final Map getMapOfStringToString() { - return mapOfStringToString; - } - - @Override - public final Builder mapOfStringToString(Map mapOfStringToString) { - this.mapOfStringToString = MapOfStringToStringCopier.copy(mapOfStringToString); - return this; - } - - public final void setMapOfStringToString(Map mapOfStringToString) { - this.mapOfStringToString = MapOfStringToStringCopier.copy(mapOfStringToString); - } - - public final Map getMapOfStringToSimpleStruct() { - return mapOfStringToSimpleStruct != null ? CollectionUtils.mapValues(mapOfStringToSimpleStruct, - SimpleStruct::toBuilder) : null; - } - - @Override - public final Builder mapOfStringToSimpleStruct(Map mapOfStringToSimpleStruct) { - this.mapOfStringToSimpleStruct = MapOfStringToSimpleStructCopier.copy(mapOfStringToSimpleStruct); - return this; - } - - public final void setMapOfStringToSimpleStruct(Map mapOfStringToSimpleStruct) { - this.mapOfStringToSimpleStruct = MapOfStringToSimpleStructCopier.copyFromBuilder(mapOfStringToSimpleStruct); - } - - public final Map getMapOfEnumToEnum() { - return mapOfEnumToEnum; - } - - @Override - public final Builder mapOfEnumToEnumWithStrings(Map mapOfEnumToEnum) { - this.mapOfEnumToEnum = MapOfEnumToEnumCopier.copy(mapOfEnumToEnum); - return this; - } - - @Override - public final Builder mapOfEnumToEnum(Map mapOfEnumToEnum) { - this.mapOfEnumToEnum = MapOfEnumToEnumCopier.copyEnumToString(mapOfEnumToEnum); - return this; - } - - public final void setMapOfEnumToEnum(Map mapOfEnumToEnum) { - this.mapOfEnumToEnum = MapOfEnumToEnumCopier.copy(mapOfEnumToEnum); - } - - public final Map getMapOfEnumToString() { - return mapOfEnumToString; - } - - @Override - public final Builder mapOfEnumToStringWithStrings(Map mapOfEnumToString) { - this.mapOfEnumToString = MapOfEnumToStringCopier.copy(mapOfEnumToString); - return this; - } - - @Override - public final Builder mapOfEnumToString(Map mapOfEnumToString) { - this.mapOfEnumToString = MapOfEnumToStringCopier.copyEnumToString(mapOfEnumToString); - return this; - } - - public final void setMapOfEnumToString(Map mapOfEnumToString) { - this.mapOfEnumToString = MapOfEnumToStringCopier.copy(mapOfEnumToString); - } - - public final Map getMapOfStringToEnum() { - return mapOfStringToEnum; - } - - @Override - public final Builder mapOfStringToEnumWithStrings(Map mapOfStringToEnum) { - this.mapOfStringToEnum = MapOfStringToEnumCopier.copy(mapOfStringToEnum); - return this; - } - - @Override - public final Builder mapOfStringToEnum(Map mapOfStringToEnum) { - this.mapOfStringToEnum = MapOfStringToEnumCopier.copyEnumToString(mapOfStringToEnum); - return this; - } - - public final void setMapOfStringToEnum(Map mapOfStringToEnum) { - this.mapOfStringToEnum = MapOfStringToEnumCopier.copy(mapOfStringToEnum); - } - - public final Map getMapOfEnumToSimpleStruct() { - return mapOfEnumToSimpleStruct != null ? CollectionUtils.mapValues(mapOfEnumToSimpleStruct, SimpleStruct::toBuilder) - : null; - } - - @Override - public final Builder mapOfEnumToSimpleStructWithStrings(Map mapOfEnumToSimpleStruct) { - this.mapOfEnumToSimpleStruct = MapOfEnumToSimpleStructCopier.copy(mapOfEnumToSimpleStruct); - return this; - } - - @Override - public final Builder mapOfEnumToSimpleStruct(Map mapOfEnumToSimpleStruct) { - this.mapOfEnumToSimpleStruct = MapOfEnumToSimpleStructCopier.copyEnumToString(mapOfEnumToSimpleStruct); - return this; - } - - public final void setMapOfEnumToSimpleStruct(Map mapOfEnumToSimpleStruct) { - this.mapOfEnumToSimpleStruct = MapOfEnumToSimpleStructCopier.copyFromBuilder(mapOfEnumToSimpleStruct); - } - - public final Map> getMapOfEnumToListOfEnums() { - return mapOfEnumToListOfEnums; - } - - @Override - public final Builder mapOfEnumToListOfEnumsWithStrings(Map> mapOfEnumToListOfEnums) { - this.mapOfEnumToListOfEnums = MapOfEnumToListOfEnumsCopier.copy(mapOfEnumToListOfEnums); - return this; - } - - @Override - public final Builder mapOfEnumToListOfEnums(Map> mapOfEnumToListOfEnums) { - this.mapOfEnumToListOfEnums = MapOfEnumToListOfEnumsCopier.copyEnumToString(mapOfEnumToListOfEnums); - return this; - } - - public final void setMapOfEnumToListOfEnums(Map> mapOfEnumToListOfEnums) { - this.mapOfEnumToListOfEnums = MapOfEnumToListOfEnumsCopier.copy(mapOfEnumToListOfEnums); - } - - public final Map> getMapOfEnumToMapOfStringToEnum() { - return mapOfEnumToMapOfStringToEnum; - } - - @Override - public final Builder mapOfEnumToMapOfStringToEnumWithStrings(Map> mapOfEnumToMapOfStringToEnum) { - this.mapOfEnumToMapOfStringToEnum = MapOfEnumToMapOfStringToEnumCopier.copy(mapOfEnumToMapOfStringToEnum); - return this; - } - - @Override - public final Builder mapOfEnumToMapOfStringToEnum(Map> mapOfEnumToMapOfStringToEnum) { - this.mapOfEnumToMapOfStringToEnum = MapOfEnumToMapOfStringToEnumCopier.copyEnumToString(mapOfEnumToMapOfStringToEnum); - return this; - } - - public final void setMapOfEnumToMapOfStringToEnum(Map> mapOfEnumToMapOfStringToEnum) { - this.mapOfEnumToMapOfStringToEnum = MapOfEnumToMapOfStringToEnumCopier.copy(mapOfEnumToMapOfStringToEnum); - } - - public final Instant getTimestampMember() { - return timestampMember; - } - - @Override - public final Builder timestampMember(Instant timestampMember) { - this.timestampMember = timestampMember; - return this; - } - - public final void setTimestampMember(Instant timestampMember) { - this.timestampMember = timestampMember; - } - - public final StructWithTimestamp.Builder getStructWithNestedTimestampMember() { - return structWithNestedTimestampMember != null ? structWithNestedTimestampMember.toBuilder() : null; - } - - @Override - public final Builder structWithNestedTimestampMember(StructWithTimestamp structWithNestedTimestampMember) { - this.structWithNestedTimestampMember = structWithNestedTimestampMember; - return this; - } - - public final void setStructWithNestedTimestampMember(StructWithTimestamp.BuilderImpl structWithNestedTimestampMember) { - this.structWithNestedTimestampMember = structWithNestedTimestampMember != null ? structWithNestedTimestampMember - .build() : null; - } - - public final ByteBuffer getBlobArg() { - return blobArg == null ? null : blobArg.asByteBuffer(); - } - - @Override - public final Builder blobArg(SdkBytes blobArg) { - this.blobArg = StandardMemberCopier.copy(blobArg); - return this; - } - - public final void setBlobArg(ByteBuffer blobArg) { - blobArg(blobArg == null ? null : SdkBytes.fromByteBuffer(blobArg)); - } - - public final StructWithNestedBlobType.Builder getStructWithNestedBlob() { - return structWithNestedBlob != null ? structWithNestedBlob.toBuilder() : null; - } - - @Override - public final Builder structWithNestedBlob(StructWithNestedBlobType structWithNestedBlob) { - this.structWithNestedBlob = structWithNestedBlob; - return this; - } - - public final void setStructWithNestedBlob(StructWithNestedBlobType.BuilderImpl structWithNestedBlob) { - this.structWithNestedBlob = structWithNestedBlob != null ? structWithNestedBlob.build() : null; - } - - public final Map getBlobMap() { - return blobMap == null ? null : blobMap.entrySet().stream() - .collect(Collectors.toMap(e -> e.getKey(), e -> e.getValue().asByteBuffer())); - } - - @Override - public final Builder blobMap(Map blobMap) { - this.blobMap = BlobMapTypeCopier.copy(blobMap); - return this; - } - - public final void setBlobMap(Map blobMap) { - blobMap(blobMap == null ? null : blobMap.entrySet().stream() - .collect(Collectors.toMap(e -> e.getKey(), e -> SdkBytes.fromByteBuffer(e.getValue())))); - } - - public final List getListOfBlobs() { - return listOfBlobs == null ? null : listOfBlobs.stream().map(SdkBytes::asByteBuffer).collect(Collectors.toList()); - } - - @Override - public final Builder listOfBlobs(Collection listOfBlobs) { - this.listOfBlobs = ListOfBlobsTypeCopier.copy(listOfBlobs); - return this; - } - - @Override - @SafeVarargs - public final Builder listOfBlobs(SdkBytes... listOfBlobs) { - listOfBlobs(Arrays.asList(listOfBlobs)); - return this; - } - - public final void setListOfBlobs(Collection listOfBlobs) { - listOfBlobs(listOfBlobs == null ? null : listOfBlobs.stream().map(SdkBytes::fromByteBuffer) - .collect(Collectors.toList())); - } - - public final RecursiveStructType.Builder getRecursiveStruct() { - return recursiveStruct != null ? recursiveStruct.toBuilder() : null; - } - - @Override - public final Builder recursiveStruct(RecursiveStructType recursiveStruct) { - this.recursiveStruct = recursiveStruct; - return this; - } - - public final void setRecursiveStruct(RecursiveStructType.BuilderImpl recursiveStruct) { - this.recursiveStruct = recursiveStruct != null ? recursiveStruct.build() : null; - } - - public final BaseType.Builder getPolymorphicTypeWithSubTypes() { - return polymorphicTypeWithSubTypes != null ? polymorphicTypeWithSubTypes.toBuilder() : null; - } - - @Override - public final Builder polymorphicTypeWithSubTypes(BaseType polymorphicTypeWithSubTypes) { - this.polymorphicTypeWithSubTypes = polymorphicTypeWithSubTypes; - return this; - } - - public final void setPolymorphicTypeWithSubTypes(BaseType.BuilderImpl polymorphicTypeWithSubTypes) { - this.polymorphicTypeWithSubTypes = polymorphicTypeWithSubTypes != null ? polymorphicTypeWithSubTypes.build() : null; - } - - public final SubTypeOne.Builder getPolymorphicTypeWithoutSubTypes() { - return polymorphicTypeWithoutSubTypes != null ? polymorphicTypeWithoutSubTypes.toBuilder() : null; - } - - @Override - public final Builder polymorphicTypeWithoutSubTypes(SubTypeOne polymorphicTypeWithoutSubTypes) { - this.polymorphicTypeWithoutSubTypes = polymorphicTypeWithoutSubTypes; - return this; - } - - public final void setPolymorphicTypeWithoutSubTypes(SubTypeOne.BuilderImpl polymorphicTypeWithoutSubTypes) { - this.polymorphicTypeWithoutSubTypes = polymorphicTypeWithoutSubTypes != null ? polymorphicTypeWithoutSubTypes.build() - : null; - } - - public final String getEnumType() { - return enumType; - } - - @Override - public final Builder enumType(String enumType) { - this.enumType = enumType; - return this; - } - - @Override - public final Builder enumType(EnumType enumType) { - this.enumType(enumType == null ? null : enumType.toString()); - return this; - } - - public final void setEnumType(String enumType) { - this.enumType = enumType; - } - - @Override - public AllTypesResponse build() { - return new AllTypesResponse(this); - } - - @Override - public List> sdkFields() { - return SDK_FIELDS; - } - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/blobmaptypecopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/blobmaptypecopier.java deleted file mode 100644 index 19b9e1f761ee..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/blobmaptypecopier.java +++ /dev/null @@ -1,22 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import static java.util.stream.Collectors.toMap; - -import java.util.Collections; -import java.util.HashMap; -import java.util.Map; -import software.amazon.awssdk.annotations.Generated; -import software.amazon.awssdk.core.SdkBytes; -import software.amazon.awssdk.core.adapter.StandardMemberCopier; - -@Generated("software.amazon.awssdk:codegen") -final class BlobMapTypeCopier { - static Map copy(Map blobMapTypeParam) { - if (blobMapTypeParam == null) { - return null; - } - Map blobMapTypeParamCopy = blobMapTypeParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> m.put(e.getKey(), StandardMemberCopier.copy(e.getValue())), HashMap::putAll); - return Collections.unmodifiableMap(blobMapTypeParamCopy); - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/existencechecknamingrequest.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/existencechecknamingrequest.java deleted file mode 100644 index 4bbedec53335..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/existencechecknamingrequest.java +++ /dev/null @@ -1,458 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import java.util.Arrays; -import java.util.Collection; -import java.util.Collections; -import java.util.List; -import java.util.Map; -import java.util.Objects; -import java.util.Optional; -import java.util.function.BiConsumer; -import java.util.function.Consumer; -import java.util.function.Function; -import software.amazon.awssdk.annotations.Generated; -import software.amazon.awssdk.awscore.AwsRequestOverrideConfiguration; -import software.amazon.awssdk.core.SdkField; -import software.amazon.awssdk.core.SdkPojo; -import software.amazon.awssdk.core.protocol.MarshallLocation; -import software.amazon.awssdk.core.protocol.MarshallingType; -import software.amazon.awssdk.core.traits.ListTrait; -import software.amazon.awssdk.core.traits.LocationTrait; -import software.amazon.awssdk.core.traits.MapTrait; -import software.amazon.awssdk.core.util.SdkAutoConstructList; -import software.amazon.awssdk.core.util.SdkAutoConstructMap; -import software.amazon.awssdk.utils.ToString; -import software.amazon.awssdk.utils.builder.CopyableBuilder; -import software.amazon.awssdk.utils.builder.ToCopyableBuilder; - -/** - */ -@Generated("software.amazon.awssdk:codegen") -public final class ExistenceCheckNamingRequest extends JsonProtocolTestsRequest implements - ToCopyableBuilder { - private static final SdkField> BUILD_FIELD = SdkField - .> builder(MarshallingType.LIST) - .memberName("Build") - .getter(getter(ExistenceCheckNamingRequest::build)) - .setter(setter(Builder::build)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Build").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("member").build()).build()).build()).build(); - - private static final SdkField> SUPER_FIELD = SdkField - .> builder(MarshallingType.LIST) - .memberName("super") - .getter(getter(ExistenceCheckNamingRequest::superValue)) - .setter(setter(Builder::superValue)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("super").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("member").build()).build()).build()).build(); - - private static final SdkField> TO_STRING_FIELD = SdkField - .> builder(MarshallingType.MAP) - .memberName("toString") - .getter(getter(ExistenceCheckNamingRequest::toStringValue)) - .setter(setter(Builder::toStringValue)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("toString").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()).build()).build(); - - private static final SdkField> EQUALS_FIELD = SdkField - .> builder(MarshallingType.MAP) - .memberName("equals") - .getter(getter(ExistenceCheckNamingRequest::equalsValue)) - .setter(setter(Builder::equalsValue)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("equals").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()).build()).build(); - - private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(BUILD_FIELD, SUPER_FIELD, - TO_STRING_FIELD, EQUALS_FIELD)); - - private final List build; - - private final List superValue; - - private final Map toStringValue; - - private final Map equalsValue; - - private ExistenceCheckNamingRequest(BuilderImpl builder) { - super(builder); - this.build = builder.build; - this.superValue = builder.superValue; - this.toStringValue = builder.toStringValue; - this.equalsValue = builder.equalsValue; - } - - /** - * Returns true if the Build property was specified by the sender (it may be empty), or false if the sender did not - * specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service. - */ - public boolean hasBuild() { - return build != null && !(build instanceof SdkAutoConstructList); - } - - /** - * Returns the value of the Build property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasBuild()} to see if a value was sent in this field. - *

- * - * @return The value of the Build property for this object. - */ - public List build() { - return build; - } - - /** - * Returns true if the Super property was specified by the sender (it may be empty), or false if the sender did not - * specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service. - */ - public boolean hasSuperValue() { - return superValue != null && !(superValue instanceof SdkAutoConstructList); - } - - /** - * Returns the value of the Super property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasSuperValue()} to see if a value was sent in this field. - *

- * - * @return The value of the Super property for this object. - */ - public List superValue() { - return superValue; - } - - /** - * Returns true if the ToString property was specified by the sender (it may be empty), or false if the sender did - * not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service. - */ - public boolean hasToStringValue() { - return toStringValue != null && !(toStringValue instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the ToString property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasToStringValue()} to see if a value was sent in this field. - *

- * - * @return The value of the ToString property for this object. - */ - public Map toStringValue() { - return toStringValue; - } - - /** - * Returns true if the Equals property was specified by the sender (it may be empty), or false if the sender did not - * specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service. - */ - public boolean hasEqualsValue() { - return equalsValue != null && !(equalsValue instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the Equals property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasEqualsValue()} to see if a value was sent in this field. - *

- * - * @return The value of the Equals property for this object. - */ - public Map equalsValue() { - return equalsValue; - } - - @Override - public Builder toBuilder() { - return new BuilderImpl(this); - } - - public static Builder builder() { - return new BuilderImpl(); - } - - public static Class serializableBuilderClass() { - return BuilderImpl.class; - } - - @Override - public int hashCode() { - int hashCode = 1; - hashCode = 31 * hashCode + super.hashCode(); - hashCode = 31 * hashCode + Objects.hashCode(build()); - hashCode = 31 * hashCode + Objects.hashCode(superValue()); - hashCode = 31 * hashCode + Objects.hashCode(toStringValue()); - hashCode = 31 * hashCode + Objects.hashCode(equalsValue()); - return hashCode; - } - - @Override - public boolean equals(Object obj) { - return super.equals(obj) && equalsBySdkFields(obj); - } - - @Override - public boolean equalsBySdkFields(Object obj) { - if (this == obj) { - return true; - } - if (obj == null) { - return false; - } - if (!(obj instanceof ExistenceCheckNamingRequest)) { - return false; - } - ExistenceCheckNamingRequest other = (ExistenceCheckNamingRequest) obj; - return Objects.equals(build(), other.build()) && Objects.equals(superValue(), other.superValue()) - && Objects.equals(toStringValue(), other.toStringValue()) && Objects.equals(equalsValue(), other.equalsValue()); - } - - /** - * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be - * redacted from this string using a placeholder value. - */ - @Override - public String toString() { - return ToString.builder("ExistenceCheckNamingRequest").add("Build", build()).add("Super", superValue()) - .add("ToString", toStringValue()).add("Equals", equalsValue()).build(); - } - - public Optional getValueForField(String fieldName, Class clazz) { - switch (fieldName) { - case "Build": - return Optional.ofNullable(clazz.cast(build())); - case "super": - return Optional.ofNullable(clazz.cast(superValue())); - case "toString": - return Optional.ofNullable(clazz.cast(toStringValue())); - case "equals": - return Optional.ofNullable(clazz.cast(equalsValue())); - default: - return Optional.empty(); - } - } - - @Override - public List> sdkFields() { - return SDK_FIELDS; - } - - private static Function getter(Function g) { - return obj -> g.apply((ExistenceCheckNamingRequest) obj); - } - - private static BiConsumer setter(BiConsumer s) { - return (obj, val) -> s.accept((Builder) obj, val); - } - - public interface Builder extends JsonProtocolTestsRequest.Builder, SdkPojo, - CopyableBuilder { - /** - * Sets the value of the Build property for this object. - * - * @param build - * The new value for the Build property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder build(Collection build); - - /** - * Sets the value of the Build property for this object. - * - * @param build - * The new value for the Build property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder build(String... build); - - /** - * Sets the value of the Super property for this object. - * - * @param superValue - * The new value for the Super property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder superValue(Collection superValue); - - /** - * Sets the value of the Super property for this object. - * - * @param superValue - * The new value for the Super property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder superValue(String... superValue); - - /** - * Sets the value of the ToString property for this object. - * - * @param toStringValue - * The new value for the ToString property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder toStringValue(Map toStringValue); - - /** - * Sets the value of the Equals property for this object. - * - * @param equalsValue - * The new value for the Equals property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder equalsValue(Map equalsValue); - - @Override - Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration); - - @Override - Builder overrideConfiguration(Consumer builderConsumer); - } - - static final class BuilderImpl extends JsonProtocolTestsRequest.BuilderImpl implements Builder { - private List build; - - private List superValue; - - private Map toStringValue; - - private Map equalsValue; - - private BuilderImpl() { - } - - private BuilderImpl(ExistenceCheckNamingRequest model) { - super(model); - build(model.build); - superValue(model.superValue); - toStringValue(model.toStringValue); - equalsValue(model.equalsValue); - } - - public final Collection getBuild() { - return build; - } - - @Override - public final Builder build(Collection build) { - this.build = ListOfStringsCopier.copy(build); - return this; - } - - @Override - @SafeVarargs - public final Builder build(String... build) { - build(Arrays.asList(build)); - return this; - } - - public final void setBuild(Collection build) { - this.build = ListOfStringsCopier.copy(build); - } - - public final Collection getSuperValue() { - return superValue; - } - - @Override - public final Builder superValue(Collection superValue) { - this.superValue = ListOfStringsCopier.copy(superValue); - return this; - } - - @Override - @SafeVarargs - public final Builder superValue(String... superValue) { - superValue(Arrays.asList(superValue)); - return this; - } - - public final void setSuperValue(Collection superValue) { - this.superValue = ListOfStringsCopier.copy(superValue); - } - - public final Map getToStringValue() { - return toStringValue; - } - - @Override - public final Builder toStringValue(Map toStringValue) { - this.toStringValue = MapOfStringToStringCopier.copy(toStringValue); - return this; - } - - public final void setToStringValue(Map toStringValue) { - this.toStringValue = MapOfStringToStringCopier.copy(toStringValue); - } - - public final Map getEqualsValue() { - return equalsValue; - } - - @Override - public final Builder equalsValue(Map equalsValue) { - this.equalsValue = MapOfStringToStringCopier.copy(equalsValue); - return this; - } - - public final void setEqualsValue(Map equalsValue) { - this.equalsValue = MapOfStringToStringCopier.copy(equalsValue); - } - - @Override - public Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) { - super.overrideConfiguration(overrideConfiguration); - return this; - } - - @Override - public Builder overrideConfiguration(Consumer builderConsumer) { - super.overrideConfiguration(builderConsumer); - return this; - } - - @Override - public ExistenceCheckNamingRequest build() { - return new ExistenceCheckNamingRequest(this); - } - - @Override - public List> sdkFields() { - return SDK_FIELDS; - } - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/existencechecknamingresponse.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/existencechecknamingresponse.java deleted file mode 100644 index 281f0bb67c9e..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/existencechecknamingresponse.java +++ /dev/null @@ -1,438 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import java.util.Arrays; -import java.util.Collection; -import java.util.Collections; -import java.util.List; -import java.util.Map; -import java.util.Objects; -import java.util.Optional; -import java.util.function.BiConsumer; -import java.util.function.Function; -import software.amazon.awssdk.annotations.Generated; -import software.amazon.awssdk.core.SdkField; -import software.amazon.awssdk.core.SdkPojo; -import software.amazon.awssdk.core.protocol.MarshallLocation; -import software.amazon.awssdk.core.protocol.MarshallingType; -import software.amazon.awssdk.core.traits.ListTrait; -import software.amazon.awssdk.core.traits.LocationTrait; -import software.amazon.awssdk.core.traits.MapTrait; -import software.amazon.awssdk.core.util.SdkAutoConstructList; -import software.amazon.awssdk.core.util.SdkAutoConstructMap; -import software.amazon.awssdk.utils.ToString; -import software.amazon.awssdk.utils.builder.CopyableBuilder; -import software.amazon.awssdk.utils.builder.ToCopyableBuilder; - -/** - */ -@Generated("software.amazon.awssdk:codegen") -public final class ExistenceCheckNamingResponse extends JsonProtocolTestsResponse implements - ToCopyableBuilder { - private static final SdkField> BUILD_FIELD = SdkField - .> builder(MarshallingType.LIST) - .memberName("Build") - .getter(getter(ExistenceCheckNamingResponse::build)) - .setter(setter(Builder::build)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Build").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("member").build()).build()).build()).build(); - - private static final SdkField> SUPER_FIELD = SdkField - .> builder(MarshallingType.LIST) - .memberName("super") - .getter(getter(ExistenceCheckNamingResponse::superValue)) - .setter(setter(Builder::superValue)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("super").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("member").build()).build()).build()).build(); - - private static final SdkField> TO_STRING_FIELD = SdkField - .> builder(MarshallingType.MAP) - .memberName("toString") - .getter(getter(ExistenceCheckNamingResponse::toStringValue)) - .setter(setter(Builder::toStringValue)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("toString").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()).build()).build(); - - private static final SdkField> EQUALS_FIELD = SdkField - .> builder(MarshallingType.MAP) - .memberName("equals") - .getter(getter(ExistenceCheckNamingResponse::equalsValue)) - .setter(setter(Builder::equalsValue)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("equals").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()).build()).build(); - - private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(BUILD_FIELD, SUPER_FIELD, - TO_STRING_FIELD, EQUALS_FIELD)); - - private final List build; - - private final List superValue; - - private final Map toStringValue; - - private final Map equalsValue; - - private ExistenceCheckNamingResponse(BuilderImpl builder) { - super(builder); - this.build = builder.build; - this.superValue = builder.superValue; - this.toStringValue = builder.toStringValue; - this.equalsValue = builder.equalsValue; - } - - /** - * Returns true if the Build property was specified by the sender (it may be empty), or false if the sender did not - * specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service. - */ - public boolean hasBuild() { - return build != null && !(build instanceof SdkAutoConstructList); - } - - /** - * Returns the value of the Build property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasBuild()} to see if a value was sent in this field. - *

- * - * @return The value of the Build property for this object. - */ - public List build() { - return build; - } - - /** - * Returns true if the Super property was specified by the sender (it may be empty), or false if the sender did not - * specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service. - */ - public boolean hasSuperValue() { - return superValue != null && !(superValue instanceof SdkAutoConstructList); - } - - /** - * Returns the value of the Super property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasSuperValue()} to see if a value was sent in this field. - *

- * - * @return The value of the Super property for this object. - */ - public List superValue() { - return superValue; - } - - /** - * Returns true if the ToString property was specified by the sender (it may be empty), or false if the sender did - * not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service. - */ - public boolean hasToStringValue() { - return toStringValue != null && !(toStringValue instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the ToString property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasToStringValue()} to see if a value was sent in this field. - *

- * - * @return The value of the ToString property for this object. - */ - public Map toStringValue() { - return toStringValue; - } - - /** - * Returns true if the Equals property was specified by the sender (it may be empty), or false if the sender did not - * specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service. - */ - public boolean hasEqualsValue() { - return equalsValue != null && !(equalsValue instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the Equals property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasEqualsValue()} to see if a value was sent in this field. - *

- * - * @return The value of the Equals property for this object. - */ - public Map equalsValue() { - return equalsValue; - } - - @Override - public Builder toBuilder() { - return new BuilderImpl(this); - } - - public static Builder builder() { - return new BuilderImpl(); - } - - public static Class serializableBuilderClass() { - return BuilderImpl.class; - } - - @Override - public int hashCode() { - int hashCode = 1; - hashCode = 31 * hashCode + super.hashCode(); - hashCode = 31 * hashCode + Objects.hashCode(build()); - hashCode = 31 * hashCode + Objects.hashCode(superValue()); - hashCode = 31 * hashCode + Objects.hashCode(toStringValue()); - hashCode = 31 * hashCode + Objects.hashCode(equalsValue()); - return hashCode; - } - - @Override - public boolean equals(Object obj) { - return super.equals(obj) && equalsBySdkFields(obj); - } - - @Override - public boolean equalsBySdkFields(Object obj) { - if (this == obj) { - return true; - } - if (obj == null) { - return false; - } - if (!(obj instanceof ExistenceCheckNamingResponse)) { - return false; - } - ExistenceCheckNamingResponse other = (ExistenceCheckNamingResponse) obj; - return Objects.equals(build(), other.build()) && Objects.equals(superValue(), other.superValue()) - && Objects.equals(toStringValue(), other.toStringValue()) && Objects.equals(equalsValue(), other.equalsValue()); - } - - /** - * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be - * redacted from this string using a placeholder value. - */ - @Override - public String toString() { - return ToString.builder("ExistenceCheckNamingResponse").add("Build", build()).add("Super", superValue()) - .add("ToString", toStringValue()).add("Equals", equalsValue()).build(); - } - - public Optional getValueForField(String fieldName, Class clazz) { - switch (fieldName) { - case "Build": - return Optional.ofNullable(clazz.cast(build())); - case "super": - return Optional.ofNullable(clazz.cast(superValue())); - case "toString": - return Optional.ofNullable(clazz.cast(toStringValue())); - case "equals": - return Optional.ofNullable(clazz.cast(equalsValue())); - default: - return Optional.empty(); - } - } - - @Override - public List> sdkFields() { - return SDK_FIELDS; - } - - private static Function getter(Function g) { - return obj -> g.apply((ExistenceCheckNamingResponse) obj); - } - - private static BiConsumer setter(BiConsumer s) { - return (obj, val) -> s.accept((Builder) obj, val); - } - - public interface Builder extends JsonProtocolTestsResponse.Builder, SdkPojo, - CopyableBuilder { - /** - * Sets the value of the Build property for this object. - * - * @param build - * The new value for the Build property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder build(Collection build); - - /** - * Sets the value of the Build property for this object. - * - * @param build - * The new value for the Build property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder build(String... build); - - /** - * Sets the value of the Super property for this object. - * - * @param superValue - * The new value for the Super property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder superValue(Collection superValue); - - /** - * Sets the value of the Super property for this object. - * - * @param superValue - * The new value for the Super property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder superValue(String... superValue); - - /** - * Sets the value of the ToString property for this object. - * - * @param toStringValue - * The new value for the ToString property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder toStringValue(Map toStringValue); - - /** - * Sets the value of the Equals property for this object. - * - * @param equalsValue - * The new value for the Equals property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder equalsValue(Map equalsValue); - } - - static final class BuilderImpl extends JsonProtocolTestsResponse.BuilderImpl implements Builder { - private List build; - - private List superValue; - - private Map toStringValue; - - private Map equalsValue; - - private BuilderImpl() { - } - - private BuilderImpl(ExistenceCheckNamingResponse model) { - super(model); - build(model.build); - superValue(model.superValue); - toStringValue(model.toStringValue); - equalsValue(model.equalsValue); - } - - public final Collection getBuild() { - return build; - } - - @Override - public final Builder build(Collection build) { - this.build = ListOfStringsCopier.copy(build); - return this; - } - - @Override - @SafeVarargs - public final Builder build(String... build) { - build(Arrays.asList(build)); - return this; - } - - public final void setBuild(Collection build) { - this.build = ListOfStringsCopier.copy(build); - } - - public final Collection getSuperValue() { - return superValue; - } - - @Override - public final Builder superValue(Collection superValue) { - this.superValue = ListOfStringsCopier.copy(superValue); - return this; - } - - @Override - @SafeVarargs - public final Builder superValue(String... superValue) { - superValue(Arrays.asList(superValue)); - return this; - } - - public final void setSuperValue(Collection superValue) { - this.superValue = ListOfStringsCopier.copy(superValue); - } - - public final Map getToStringValue() { - return toStringValue; - } - - @Override - public final Builder toStringValue(Map toStringValue) { - this.toStringValue = MapOfStringToStringCopier.copy(toStringValue); - return this; - } - - public final void setToStringValue(Map toStringValue) { - this.toStringValue = MapOfStringToStringCopier.copy(toStringValue); - } - - public final Map getEqualsValue() { - return equalsValue; - } - - @Override - public final Builder equalsValue(Map equalsValue) { - this.equalsValue = MapOfStringToStringCopier.copy(equalsValue); - return this; - } - - public final void setEqualsValue(Map equalsValue) { - this.equalsValue = MapOfStringToStringCopier.copy(equalsValue); - } - - @Override - public ExistenceCheckNamingResponse build() { - return new ExistenceCheckNamingResponse(this); - } - - @Override - public List> sdkFields() { - return SDK_FIELDS; - } - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofblobstypecopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofblobstypecopier.java deleted file mode 100644 index 4ccf4939b5cb..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofblobstypecopier.java +++ /dev/null @@ -1,21 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import static java.util.stream.Collectors.toList; - -import java.util.Collection; -import java.util.Collections; -import java.util.List; -import software.amazon.awssdk.annotations.Generated; -import software.amazon.awssdk.core.SdkBytes; -import software.amazon.awssdk.core.adapter.StandardMemberCopier; - -@Generated("software.amazon.awssdk:codegen") -final class ListOfBlobsTypeCopier { - static List copy(Collection listOfBlobsTypeParam) { - if (listOfBlobsTypeParam == null) { - return null; - } - List listOfBlobsTypeParamCopy = listOfBlobsTypeParam.stream().map(StandardMemberCopier::copy).collect(toList()); - return Collections.unmodifiableList(listOfBlobsTypeParamCopy); - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofenumscopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofenumscopier.java deleted file mode 100644 index 6a5ca6a8c850..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofenumscopier.java +++ /dev/null @@ -1,37 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import static java.util.stream.Collectors.toList; - -import java.util.ArrayList; -import java.util.Collection; -import java.util.Collections; -import java.util.List; -import software.amazon.awssdk.annotations.Generated; - -@Generated("software.amazon.awssdk:codegen") -final class ListOfEnumsCopier { - static List copy(Collection listOfEnumsParam) { - if (listOfEnumsParam == null) { - return null; - } - List listOfEnumsParamCopy = new ArrayList<>(listOfEnumsParam); - return Collections.unmodifiableList(listOfEnumsParamCopy); - } - - static List copyEnumToString(Collection listOfEnumsParam) { - if (listOfEnumsParam == null) { - return null; - } - List listOfEnumsParamCopy = listOfEnumsParam.stream().map(Object::toString).collect(toList()); - return Collections.unmodifiableList(listOfEnumsParamCopy); - } - - static List copyStringToEnum(Collection listOfEnumsParam) { - if (listOfEnumsParam == null) { - return null; - } - List listOfEnumsParamCopy = listOfEnumsParam.stream().map(EnumType::fromValue).collect(toList()); - return Collections.unmodifiableList(listOfEnumsParamCopy); - } -} - diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofintegerscopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofintegerscopier.java deleted file mode 100644 index 06a2c992b875..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofintegerscopier.java +++ /dev/null @@ -1,20 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import static java.util.stream.Collectors.toList; - -import java.util.ArrayList; -import java.util.Collection; -import java.util.Collections; -import java.util.List; -import software.amazon.awssdk.annotations.Generated; - -@Generated("software.amazon.awssdk:codegen") -final class ListOfIntegersCopier { - static List copy(Collection listOfIntegersParam) { - if (listOfIntegersParam == null) { - return null; - } - List listOfIntegersParamCopy = new ArrayList<>(listOfIntegersParam); - return Collections.unmodifiableList(listOfIntegersParamCopy); - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listoflistoflistofstringscopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listoflistoflistofstringscopier.java deleted file mode 100644 index 268277c2175a..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listoflistoflistofstringscopier.java +++ /dev/null @@ -1,21 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import static java.util.stream.Collectors.toList; - -import java.util.Collection; -import java.util.Collections; -import java.util.List; -import software.amazon.awssdk.annotations.Generated; - -@Generated("software.amazon.awssdk:codegen") -final class ListOfListOfListOfStringsCopier { - static List>> copy( - Collection>> listOfListOfListOfStringsParam) { - if (listOfListOfListOfStringsParam == null) { - return null; - } - List>> listOfListOfListOfStringsParamCopy = listOfListOfListOfStringsParam.stream() - .map(ListOfListOfStringsCopier::copy).collect(toList()); - return Collections.unmodifiableList(listOfListOfListOfStringsParamCopy); - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listoflistofstringscopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listoflistofstringscopier.java deleted file mode 100644 index 71b7e35950ae..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listoflistofstringscopier.java +++ /dev/null @@ -1,20 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import static java.util.stream.Collectors.toList; - -import java.util.Collection; -import java.util.Collections; -import java.util.List; -import software.amazon.awssdk.annotations.Generated; - -@Generated("software.amazon.awssdk:codegen") -final class ListOfListOfStringsCopier { - static List> copy(Collection> listOfListOfStringsParam) { - if (listOfListOfStringsParam == null) { - return null; - } - List> listOfListOfStringsParamCopy = listOfListOfStringsParam.stream().map(ListOfStringsCopier::copy) - .collect(toList()); - return Collections.unmodifiableList(listOfListOfStringsParamCopy); - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofmapofenumtostringcopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofmapofenumtostringcopier.java deleted file mode 100644 index 4f7c7788c248..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofmapofenumtostringcopier.java +++ /dev/null @@ -1,39 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import static java.util.stream.Collectors.toList; - -import java.util.Collection; -import java.util.Collections; -import java.util.List; -import java.util.Map; -import software.amazon.awssdk.annotations.Generated; - -@Generated("software.amazon.awssdk:codegen") -final class ListOfMapOfEnumToStringCopier { - static List> copy(Collection> listOfMapOfEnumToStringParam) { - if (listOfMapOfEnumToStringParam == null) { - return null; - } - List> listOfMapOfEnumToStringParamCopy = listOfMapOfEnumToStringParam.stream() - .map(MapOfEnumToStringCopier::copy).collect(toList()); - return Collections.unmodifiableList(listOfMapOfEnumToStringParamCopy); - } - - static List> copyEnumToString(Collection> listOfMapOfEnumToStringParam) { - if (listOfMapOfEnumToStringParam == null) { - return null; - } - List> listOfMapOfEnumToStringParamCopy = listOfMapOfEnumToStringParam.stream() - .map(MapOfEnumToStringCopier::copyEnumToString).collect(toList()); - return Collections.unmodifiableList(listOfMapOfEnumToStringParamCopy); - } - - static List> copyStringToEnum(Collection> listOfMapOfEnumToStringParam) { - if (listOfMapOfEnumToStringParam == null) { - return null; - } - List> listOfMapOfEnumToStringParamCopy = listOfMapOfEnumToStringParam.stream() - .map(MapOfEnumToStringCopier::copyStringToEnum).collect(toList()); - return Collections.unmodifiableList(listOfMapOfEnumToStringParamCopy); - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofmapstringtostringcopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofmapstringtostringcopier.java deleted file mode 100644 index 4a90d8ebbe9b..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofmapstringtostringcopier.java +++ /dev/null @@ -1,21 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import static java.util.stream.Collectors.toList; - -import java.util.Collection; -import java.util.Collections; -import java.util.List; -import java.util.Map; -import software.amazon.awssdk.annotations.Generated; - -@Generated("software.amazon.awssdk:codegen") -final class ListOfMapStringToStringCopier { - static List> copy(Collection> listOfMapStringToStringParam) { - if (listOfMapStringToStringParam == null) { - return null; - } - List> listOfMapStringToStringParamCopy = listOfMapStringToStringParam.stream() - .map(MapOfStringToStringCopier::copy).collect(toList()); - return Collections.unmodifiableList(listOfMapStringToStringParamCopy); - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofsimplestructscopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofsimplestructscopier.java deleted file mode 100644 index 240ff1412446..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofsimplestructscopier.java +++ /dev/null @@ -1,27 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import static java.util.stream.Collectors.toList; - -import java.util.ArrayList; -import java.util.Collection; -import java.util.Collections; -import java.util.List; -import software.amazon.awssdk.annotations.Generated; - -@Generated("software.amazon.awssdk:codegen") -final class ListOfSimpleStructsCopier { - static List copy(Collection listOfSimpleStructsParam) { - if (listOfSimpleStructsParam == null) { - return null; - } - List listOfSimpleStructsParamCopy = new ArrayList<>(listOfSimpleStructsParam); - return Collections.unmodifiableList(listOfSimpleStructsParamCopy); - } - - static List copyFromBuilder(Collection listOfSimpleStructsParam) { - if (listOfSimpleStructsParam == null) { - return null; - } - return copy(listOfSimpleStructsParam.stream().map(SimpleStruct.Builder::build).collect(toList())); - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofstringscopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofstringscopier.java deleted file mode 100644 index ec92ae9d8f9c..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/listofstringscopier.java +++ /dev/null @@ -1,20 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import static java.util.stream.Collectors.toList; - -import java.util.ArrayList; -import java.util.Collection; -import java.util.Collections; -import java.util.List; -import software.amazon.awssdk.annotations.Generated; - -@Generated("software.amazon.awssdk:codegen") -final class ListOfStringsCopier { - static List copy(Collection listOfStringsParam) { - if (listOfStringsParam == null) { - return null; - } - List listOfStringsParamCopy = new ArrayList<>(listOfStringsParam); - return Collections.unmodifiableList(listOfStringsParamCopy); - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofenumtoenumcopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofenumtoenumcopier.java deleted file mode 100644 index 0595551ebd33..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofenumtoenumcopier.java +++ /dev/null @@ -1,43 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import static java.util.stream.Collectors.toMap; - -import java.util.Collections; -import java.util.HashMap; -import java.util.Map; -import software.amazon.awssdk.annotations.Generated; - -@Generated("software.amazon.awssdk:codegen") -final class MapOfEnumToEnumCopier { - static Map copy(Map mapOfEnumToEnumParam) { - if (mapOfEnumToEnumParam == null) { - return null; - } - Map mapOfEnumToEnumParamCopy = mapOfEnumToEnumParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> m.put(e.getKey(), e.getValue()), HashMap::putAll); - return Collections.unmodifiableMap(mapOfEnumToEnumParamCopy); - } - - static Map copyEnumToString(Map mapOfEnumToEnumParam) { - if (mapOfEnumToEnumParam == null) { - return null; - } - Map mapOfEnumToEnumParamCopy = mapOfEnumToEnumParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> m.put(e.getKey().toString(), e.getValue().toString()), HashMap::putAll); - return Collections.unmodifiableMap(mapOfEnumToEnumParamCopy); - } - - static Map copyStringToEnum(Map mapOfEnumToEnumParam) { - if (mapOfEnumToEnumParam == null) { - return null; - } - Map mapOfEnumToEnumParamCopy = mapOfEnumToEnumParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> { - EnumType keyAsEnum = EnumType.fromValue(e.getKey()); - if (keyAsEnum != EnumType.UNKNOWN_TO_SDK_VERSION) { - m.put(keyAsEnum, EnumType.fromValue(e.getValue())); - } - }, HashMap::putAll); - return Collections.unmodifiableMap(mapOfEnumToEnumParamCopy); - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofenumtolistofenumscopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofenumtolistofenumscopier.java deleted file mode 100644 index fbf4e7ab92ed..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofenumtolistofenumscopier.java +++ /dev/null @@ -1,48 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import static java.util.stream.Collectors.toMap; - -import java.util.Collection; -import java.util.Collections; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import software.amazon.awssdk.annotations.Generated; - -@Generated("software.amazon.awssdk:codegen") -final class MapOfEnumToListOfEnumsCopier { - static Map> copy(Map> mapOfEnumToListOfEnumsParam) { - if (mapOfEnumToListOfEnumsParam == null) { - return null; - } - Map> mapOfEnumToListOfEnumsParamCopy = mapOfEnumToListOfEnumsParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> m.put(e.getKey(), ListOfEnumsCopier.copy(e.getValue())), HashMap::putAll); - return Collections.unmodifiableMap(mapOfEnumToListOfEnumsParamCopy); - } - - static Map> copyEnumToString(Map> mapOfEnumToListOfEnumsParam) { - if (mapOfEnumToListOfEnumsParam == null) { - return null; - } - Map> mapOfEnumToListOfEnumsParamCopy = mapOfEnumToListOfEnumsParam - .entrySet() - .stream() - .collect(HashMap::new, (m, e) -> m.put(e.getKey().toString(), ListOfEnumsCopier.copyEnumToString(e.getValue())), - HashMap::putAll); - return Collections.unmodifiableMap(mapOfEnumToListOfEnumsParamCopy); - } - - static Map> copyStringToEnum(Map> mapOfEnumToListOfEnumsParam) { - if (mapOfEnumToListOfEnumsParam == null) { - return null; - } - Map> mapOfEnumToListOfEnumsParamCopy = mapOfEnumToListOfEnumsParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> { - EnumType keyAsEnum = EnumType.fromValue(e.getKey()); - if (keyAsEnum != EnumType.UNKNOWN_TO_SDK_VERSION) { - m.put(keyAsEnum, ListOfEnumsCopier.copyStringToEnum(e.getValue())); - } - }, HashMap::putAll); - return Collections.unmodifiableMap(mapOfEnumToListOfEnumsParamCopy); - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofenumtomapofstringtoenumcopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofenumtomapofstringtoenumcopier.java deleted file mode 100644 index 758a7d09642f..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofenumtomapofstringtoenumcopier.java +++ /dev/null @@ -1,50 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import static java.util.stream.Collectors.toMap; - -import java.util.Collections; -import java.util.HashMap; -import java.util.Map; -import software.amazon.awssdk.annotations.Generated; - -@Generated("software.amazon.awssdk:codegen") -final class MapOfEnumToMapOfStringToEnumCopier { - static Map> copy(Map> mapOfEnumToMapOfStringToEnumParam) { - if (mapOfEnumToMapOfStringToEnumParam == null) { - return null; - } - Map> mapOfEnumToMapOfStringToEnumParamCopy = mapOfEnumToMapOfStringToEnumParam.entrySet() - .stream() - .collect(HashMap::new, (m, e) -> m.put(e.getKey(), MapOfStringToEnumCopier.copy(e.getValue())), HashMap::putAll); - return Collections.unmodifiableMap(mapOfEnumToMapOfStringToEnumParamCopy); - } - - static Map> copyEnumToString( - Map> mapOfEnumToMapOfStringToEnumParam) { - if (mapOfEnumToMapOfStringToEnumParam == null) { - return null; - } - Map> mapOfEnumToMapOfStringToEnumParamCopy = mapOfEnumToMapOfStringToEnumParam - .entrySet() - .stream() - .collect(HashMap::new, - (m, e) -> m.put(e.getKey().toString(), MapOfStringToEnumCopier.copyEnumToString(e.getValue())), - HashMap::putAll); - return Collections.unmodifiableMap(mapOfEnumToMapOfStringToEnumParamCopy); - } - - static Map> copyStringToEnum( - Map> mapOfEnumToMapOfStringToEnumParam) { - if (mapOfEnumToMapOfStringToEnumParam == null) { - return null; - } - Map> mapOfEnumToMapOfStringToEnumParamCopy = mapOfEnumToMapOfStringToEnumParam.entrySet() - .stream().collect(HashMap::new, (m, e) -> { - EnumType keyAsEnum = EnumType.fromValue(e.getKey()); - if (keyAsEnum != EnumType.UNKNOWN_TO_SDK_VERSION) { - m.put(keyAsEnum, MapOfStringToEnumCopier.copyStringToEnum(e.getValue())); - } - }, HashMap::putAll); - return Collections.unmodifiableMap(mapOfEnumToMapOfStringToEnumParamCopy); - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofenumtosimplestructcopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofenumtosimplestructcopier.java deleted file mode 100644 index 48adc125e350..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofenumtosimplestructcopier.java +++ /dev/null @@ -1,50 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import static java.util.stream.Collectors.toMap; - -import java.util.Collections; -import java.util.HashMap; -import java.util.Map; -import software.amazon.awssdk.annotations.Generated; - -@Generated("software.amazon.awssdk:codegen") -final class MapOfEnumToSimpleStructCopier { - static Map copy(Map mapOfEnumToSimpleStructParam) { - if (mapOfEnumToSimpleStructParam == null) { - return null; - } - Map mapOfEnumToSimpleStructParamCopy = mapOfEnumToSimpleStructParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> m.put(e.getKey(), e.getValue()), HashMap::putAll); - return Collections.unmodifiableMap(mapOfEnumToSimpleStructParamCopy); - } - - static Map copyFromBuilder(Map mapOfEnumToSimpleStructParam) { - if (mapOfEnumToSimpleStructParam == null) { - return null; - } - return copy(mapOfEnumToSimpleStructParam.entrySet().stream().collect(toMap(Map.Entry::getKey, e -> e.getValue().build()))); - } - - static Map copyEnumToString(Map mapOfEnumToSimpleStructParam) { - if (mapOfEnumToSimpleStructParam == null) { - return null; - } - Map mapOfEnumToSimpleStructParamCopy = mapOfEnumToSimpleStructParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> m.put(e.getKey().toString(), e.getValue()), HashMap::putAll); - return Collections.unmodifiableMap(mapOfEnumToSimpleStructParamCopy); - } - - static Map copyStringToEnum(Map mapOfEnumToSimpleStructParam) { - if (mapOfEnumToSimpleStructParam == null) { - return null; - } - Map mapOfEnumToSimpleStructParamCopy = mapOfEnumToSimpleStructParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> { - EnumType keyAsEnum = EnumType.fromValue(e.getKey()); - if (keyAsEnum != EnumType.UNKNOWN_TO_SDK_VERSION) { - m.put(keyAsEnum, e.getValue()); - } - }, HashMap::putAll); - return Collections.unmodifiableMap(mapOfEnumToSimpleStructParamCopy); - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofenumtostringcopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofenumtostringcopier.java deleted file mode 100644 index bac86cc0f106..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofenumtostringcopier.java +++ /dev/null @@ -1,43 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import static java.util.stream.Collectors.toMap; - -import java.util.Collections; -import java.util.HashMap; -import java.util.Map; -import software.amazon.awssdk.annotations.Generated; - -@Generated("software.amazon.awssdk:codegen") -final class MapOfEnumToStringCopier { - static Map copy(Map mapOfEnumToStringParam) { - if (mapOfEnumToStringParam == null) { - return null; - } - Map mapOfEnumToStringParamCopy = mapOfEnumToStringParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> m.put(e.getKey(), e.getValue()), HashMap::putAll); - return Collections.unmodifiableMap(mapOfEnumToStringParamCopy); - } - - static Map copyEnumToString(Map mapOfEnumToStringParam) { - if (mapOfEnumToStringParam == null) { - return null; - } - Map mapOfEnumToStringParamCopy = mapOfEnumToStringParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> m.put(e.getKey().toString(), e.getValue()), HashMap::putAll); - return Collections.unmodifiableMap(mapOfEnumToStringParamCopy); - } - - static Map copyStringToEnum(Map mapOfEnumToStringParam) { - if (mapOfEnumToStringParam == null) { - return null; - } - Map mapOfEnumToStringParamCopy = mapOfEnumToStringParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> { - EnumType keyAsEnum = EnumType.fromValue(e.getKey()); - if (keyAsEnum != EnumType.UNKNOWN_TO_SDK_VERSION) { - m.put(keyAsEnum, e.getValue()); - } - }, HashMap::putAll); - return Collections.unmodifiableMap(mapOfEnumToStringParamCopy); - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofstringtoenumcopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofstringtoenumcopier.java deleted file mode 100644 index 47931c3d813a..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofstringtoenumcopier.java +++ /dev/null @@ -1,39 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import static java.util.stream.Collectors.toMap; - -import java.util.Collections; -import java.util.HashMap; -import java.util.Map; -import software.amazon.awssdk.annotations.Generated; - -@Generated("software.amazon.awssdk:codegen") -final class MapOfStringToEnumCopier { - static Map copy(Map mapOfStringToEnumParam) { - if (mapOfStringToEnumParam == null) { - return null; - } - Map mapOfStringToEnumParamCopy = mapOfStringToEnumParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> m.put(e.getKey(), e.getValue()), HashMap::putAll); - return Collections.unmodifiableMap(mapOfStringToEnumParamCopy); - } - - static Map copyEnumToString(Map mapOfStringToEnumParam) { - if (mapOfStringToEnumParam == null) { - return null; - } - Map mapOfStringToEnumParamCopy = mapOfStringToEnumParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> m.put(e.getKey(), e.getValue().toString()), HashMap::putAll); - return Collections.unmodifiableMap(mapOfStringToEnumParamCopy); - } - - static Map copyStringToEnum(Map mapOfStringToEnumParam) { - if (mapOfStringToEnumParam == null) { - return null; - } - Map mapOfStringToEnumParamCopy = mapOfStringToEnumParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> m.put(e.getKey(), EnumType.fromValue(e.getValue())), HashMap::putAll); - return Collections.unmodifiableMap(mapOfStringToEnumParamCopy); - } -} - diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofstringtointegerlistcopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofstringtointegerlistcopier.java deleted file mode 100644 index da406a066cc5..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofstringtointegerlistcopier.java +++ /dev/null @@ -1,22 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import static java.util.stream.Collectors.toMap; - -import java.util.Collection; -import java.util.Collections; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import software.amazon.awssdk.annotations.Generated; - -@Generated("software.amazon.awssdk:codegen") -final class MapOfStringToIntegerListCopier { - static Map> copy(Map> mapOfStringToIntegerListParam) { - if (mapOfStringToIntegerListParam == null) { - return null; - } - Map> mapOfStringToIntegerListParamCopy = mapOfStringToIntegerListParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> m.put(e.getKey(), ListOfIntegersCopier.copy(e.getValue())), HashMap::putAll); - return Collections.unmodifiableMap(mapOfStringToIntegerListParamCopy); - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofstringtolistoflistofstringscopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofstringtolistoflistofstringscopier.java deleted file mode 100644 index 4ec13c103357..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofstringtolistoflistofstringscopier.java +++ /dev/null @@ -1,25 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import static java.util.stream.Collectors.toMap; - -import java.util.Collection; -import java.util.Collections; -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import software.amazon.awssdk.annotations.Generated; - -@Generated("software.amazon.awssdk:codegen") -final class MapOfStringToListOfListOfStringsCopier { - static Map>> copy( - Map>> mapOfStringToListOfListOfStringsParam) { - if (mapOfStringToListOfListOfStringsParam == null) { - return null; - } - Map>> mapOfStringToListOfListOfStringsParamCopy = mapOfStringToListOfListOfStringsParam - .entrySet() - .stream() - .collect(HashMap::new, (m, e) -> m.put(e.getKey(), ListOfListOfStringsCopier.copy(e.getValue())), HashMap::putAll); - return Collections.unmodifiableMap(mapOfStringToListOfListOfStringsParamCopy); - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofstringtosimplestructcopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofstringtosimplestructcopier.java deleted file mode 100644 index e476d5169819..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofstringtosimplestructcopier.java +++ /dev/null @@ -1,28 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import static java.util.stream.Collectors.toMap; - -import java.util.Collections; -import java.util.HashMap; -import java.util.Map; -import software.amazon.awssdk.annotations.Generated; - -@Generated("software.amazon.awssdk:codegen") -final class MapOfStringToSimpleStructCopier { - static Map copy(Map mapOfStringToSimpleStructParam) { - if (mapOfStringToSimpleStructParam == null) { - return null; - } - Map mapOfStringToSimpleStructParamCopy = mapOfStringToSimpleStructParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> m.put(e.getKey(), e.getValue()), HashMap::putAll); - return Collections.unmodifiableMap(mapOfStringToSimpleStructParamCopy); - } - - static Map copyFromBuilder(Map mapOfStringToSimpleStructParam) { - if (mapOfStringToSimpleStructParam == null) { - return null; - } - return copy(mapOfStringToSimpleStructParam.entrySet().stream() - .collect(toMap(Map.Entry::getKey, e -> e.getValue().build()))); - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofstringtostringcopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofstringtostringcopier.java deleted file mode 100644 index a0421da95fc8..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/mapofstringtostringcopier.java +++ /dev/null @@ -1,20 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import static java.util.stream.Collectors.toMap; - -import java.util.Collections; -import java.util.HashMap; -import java.util.Map; -import software.amazon.awssdk.annotations.Generated; - -@Generated("software.amazon.awssdk:codegen") -final class MapOfStringToStringCopier { - static Map copy(Map mapOfStringToStringParam) { - if (mapOfStringToStringParam == null) { - return null; - } - Map mapOfStringToStringParamCopy = mapOfStringToStringParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> m.put(e.getKey(), e.getValue()), HashMap::putAll); - return Collections.unmodifiableMap(mapOfStringToStringParamCopy); - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/nestedcontainersrequest.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/nestedcontainersrequest.java deleted file mode 100644 index ead55fbe0132..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/nestedcontainersrequest.java +++ /dev/null @@ -1,454 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import java.util.Arrays; -import java.util.Collection; -import java.util.Collections; -import java.util.List; -import java.util.Map; -import java.util.Objects; -import java.util.Optional; -import java.util.function.BiConsumer; -import java.util.function.Consumer; -import java.util.function.Function; -import software.amazon.awssdk.annotations.Generated; -import software.amazon.awssdk.awscore.AwsRequestOverrideConfiguration; -import software.amazon.awssdk.core.SdkField; -import software.amazon.awssdk.core.SdkPojo; -import software.amazon.awssdk.core.protocol.MarshallLocation; -import software.amazon.awssdk.core.protocol.MarshallingType; -import software.amazon.awssdk.core.traits.ListTrait; -import software.amazon.awssdk.core.traits.LocationTrait; -import software.amazon.awssdk.core.traits.MapTrait; -import software.amazon.awssdk.core.util.SdkAutoConstructList; -import software.amazon.awssdk.core.util.SdkAutoConstructMap; -import software.amazon.awssdk.utils.ToString; -import software.amazon.awssdk.utils.builder.CopyableBuilder; -import software.amazon.awssdk.utils.builder.ToCopyableBuilder; - -/** - */ -@Generated("software.amazon.awssdk:codegen") -public final class NestedContainersRequest extends JsonProtocolTestsRequest implements - ToCopyableBuilder { - private static final SdkField>> LIST_OF_LIST_OF_STRINGS_FIELD = SdkField - .>> builder(MarshallingType.LIST) - .memberName("ListOfListOfStrings") - .getter(getter(NestedContainersRequest::listOfListOfStrings)) - .setter(setter(Builder::listOfListOfStrings)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ListOfListOfStrings").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField.> builder(MarshallingType.LIST) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("member").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder() - .location(MarshallLocation.PAYLOAD) - .locationName("member").build()).build()) - .build()).build()).build()).build(); - - private static final SdkField>>> LIST_OF_LIST_OF_LIST_OF_STRINGS_FIELD = SdkField - .>>> builder(MarshallingType.LIST) - .memberName("ListOfListOfListOfStrings") - .getter(getter(NestedContainersRequest::listOfListOfListOfStrings)) - .setter(setter(Builder::listOfListOfListOfStrings)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ListOfListOfListOfStrings").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField.>> builder(MarshallingType.LIST) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("member").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField.> builder(MarshallingType.LIST) - .traits(LocationTrait.builder() - .location(MarshallLocation.PAYLOAD) - .locationName("member").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder( - MarshallingType.STRING) - .traits(LocationTrait - .builder() - .location( - MarshallLocation.PAYLOAD) - .locationName( - "member") - .build()) - .build()).build()) - .build()).build()).build()).build()).build(); - - private static final SdkField>>> MAP_OF_STRING_TO_LIST_OF_LIST_OF_STRINGS_FIELD = SdkField - .>>> builder(MarshallingType.MAP) - .memberName("MapOfStringToListOfListOfStrings") - .getter(getter(NestedContainersRequest::mapOfStringToListOfListOfStrings)) - .setter(setter(Builder::mapOfStringToListOfListOfStrings)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MapOfStringToListOfListOfStrings") - .build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField.>> builder(MarshallingType.LIST) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField.> builder(MarshallingType.LIST) - .traits(LocationTrait.builder() - .location(MarshallLocation.PAYLOAD) - .locationName("member").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder( - MarshallingType.STRING) - .traits(LocationTrait - .builder() - .location( - MarshallLocation.PAYLOAD) - .locationName( - "member") - .build()) - .build()).build()) - .build()).build()).build()).build()).build(); - - private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(LIST_OF_LIST_OF_STRINGS_FIELD, - LIST_OF_LIST_OF_LIST_OF_STRINGS_FIELD, MAP_OF_STRING_TO_LIST_OF_LIST_OF_STRINGS_FIELD)); - - private final List> listOfListOfStrings; - - private final List>> listOfListOfListOfStrings; - - private final Map>> mapOfStringToListOfListOfStrings; - - private NestedContainersRequest(BuilderImpl builder) { - super(builder); - this.listOfListOfStrings = builder.listOfListOfStrings; - this.listOfListOfListOfStrings = builder.listOfListOfListOfStrings; - this.mapOfStringToListOfListOfStrings = builder.mapOfStringToListOfListOfStrings; - } - - /** - * Returns true if the ListOfListOfStrings property was specified by the sender (it may be empty), or false if the - * sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS - * service. - */ - public boolean hasListOfListOfStrings() { - return listOfListOfStrings != null && !(listOfListOfStrings instanceof SdkAutoConstructList); - } - - /** - * Returns the value of the ListOfListOfStrings property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasListOfListOfStrings()} to see if a value was sent in this field. - *

- * - * @return The value of the ListOfListOfStrings property for this object. - */ - public List> listOfListOfStrings() { - return listOfListOfStrings; - } - - /** - * Returns true if the ListOfListOfListOfStrings property was specified by the sender (it may be empty), or false if - * the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS - * service. - */ - public boolean hasListOfListOfListOfStrings() { - return listOfListOfListOfStrings != null && !(listOfListOfListOfStrings instanceof SdkAutoConstructList); - } - - /** - * Returns the value of the ListOfListOfListOfStrings property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasListOfListOfListOfStrings()} to see if a value was sent in this field. - *

- * - * @return The value of the ListOfListOfListOfStrings property for this object. - */ - public List>> listOfListOfListOfStrings() { - return listOfListOfListOfStrings; - } - - /** - * Returns true if the MapOfStringToListOfListOfStrings property was specified by the sender (it may be empty), or - * false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender - * is the AWS service. - */ - public boolean hasMapOfStringToListOfListOfStrings() { - return mapOfStringToListOfListOfStrings != null && !(mapOfStringToListOfListOfStrings instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the MapOfStringToListOfListOfStrings property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfStringToListOfListOfStrings()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfStringToListOfListOfStrings property for this object. - */ - public Map>> mapOfStringToListOfListOfStrings() { - return mapOfStringToListOfListOfStrings; - } - - @Override - public Builder toBuilder() { - return new BuilderImpl(this); - } - - public static Builder builder() { - return new BuilderImpl(); - } - - public static Class serializableBuilderClass() { - return BuilderImpl.class; - } - - @Override - public int hashCode() { - int hashCode = 1; - hashCode = 31 * hashCode + super.hashCode(); - hashCode = 31 * hashCode + Objects.hashCode(listOfListOfStrings()); - hashCode = 31 * hashCode + Objects.hashCode(listOfListOfListOfStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfStringToListOfListOfStrings()); - return hashCode; - } - - @Override - public boolean equals(Object obj) { - return super.equals(obj) && equalsBySdkFields(obj); - } - - @Override - public boolean equalsBySdkFields(Object obj) { - if (this == obj) { - return true; - } - if (obj == null) { - return false; - } - if (!(obj instanceof NestedContainersRequest)) { - return false; - } - NestedContainersRequest other = (NestedContainersRequest) obj; - return Objects.equals(listOfListOfStrings(), other.listOfListOfStrings()) - && Objects.equals(listOfListOfListOfStrings(), other.listOfListOfListOfStrings()) - && Objects.equals(mapOfStringToListOfListOfStrings(), other.mapOfStringToListOfListOfStrings()); - } - - /** - * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be - * redacted from this string using a placeholder value. - */ - @Override - public String toString() { - return ToString.builder("NestedContainersRequest").add("ListOfListOfStrings", listOfListOfStrings()) - .add("ListOfListOfListOfStrings", listOfListOfListOfStrings()) - .add("MapOfStringToListOfListOfStrings", mapOfStringToListOfListOfStrings()).build(); - } - - public Optional getValueForField(String fieldName, Class clazz) { - switch (fieldName) { - case "ListOfListOfStrings": - return Optional.ofNullable(clazz.cast(listOfListOfStrings())); - case "ListOfListOfListOfStrings": - return Optional.ofNullable(clazz.cast(listOfListOfListOfStrings())); - case "MapOfStringToListOfListOfStrings": - return Optional.ofNullable(clazz.cast(mapOfStringToListOfListOfStrings())); - default: - return Optional.empty(); - } - } - - @Override - public List> sdkFields() { - return SDK_FIELDS; - } - - private static Function getter(Function g) { - return obj -> g.apply((NestedContainersRequest) obj); - } - - private static BiConsumer setter(BiConsumer s) { - return (obj, val) -> s.accept((Builder) obj, val); - } - - public interface Builder extends JsonProtocolTestsRequest.Builder, SdkPojo, CopyableBuilder { - /** - * Sets the value of the ListOfListOfStrings property for this object. - * - * @param listOfListOfStrings - * The new value for the ListOfListOfStrings property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfListOfStrings(Collection> listOfListOfStrings); - - /** - * Sets the value of the ListOfListOfStrings property for this object. - * - * @param listOfListOfStrings - * The new value for the ListOfListOfStrings property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfListOfStrings(Collection... listOfListOfStrings); - - /** - * Sets the value of the ListOfListOfListOfStrings property for this object. - * - * @param listOfListOfListOfStrings - * The new value for the ListOfListOfListOfStrings property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfListOfListOfStrings(Collection>> listOfListOfListOfStrings); - - /** - * Sets the value of the ListOfListOfListOfStrings property for this object. - * - * @param listOfListOfListOfStrings - * The new value for the ListOfListOfListOfStrings property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfListOfListOfStrings(Collection>... listOfListOfListOfStrings); - - /** - * Sets the value of the MapOfStringToListOfListOfStrings property for this object. - * - * @param mapOfStringToListOfListOfStrings - * The new value for the MapOfStringToListOfListOfStrings property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfStringToListOfListOfStrings( - Map>> mapOfStringToListOfListOfStrings); - - @Override - Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration); - - @Override - Builder overrideConfiguration(Consumer builderConsumer); - } - - static final class BuilderImpl extends JsonProtocolTestsRequest.BuilderImpl implements Builder { - private List> listOfListOfStrings; - - private List>> listOfListOfListOfStrings; - - private Map>> mapOfStringToListOfListOfStrings; - - private BuilderImpl() { - } - - private BuilderImpl(NestedContainersRequest model) { - super(model); - listOfListOfStrings(model.listOfListOfStrings); - listOfListOfListOfStrings(model.listOfListOfListOfStrings); - mapOfStringToListOfListOfStrings(model.mapOfStringToListOfListOfStrings); - } - - public final Collection> getListOfListOfStrings() { - return listOfListOfStrings; - } - - @Override - public final Builder listOfListOfStrings(Collection> listOfListOfStrings) { - this.listOfListOfStrings = ListOfListOfStringsCopier.copy(listOfListOfStrings); - return this; - } - - @Override - @SafeVarargs - public final Builder listOfListOfStrings(Collection... listOfListOfStrings) { - listOfListOfStrings(Arrays.asList(listOfListOfStrings)); - return this; - } - - public final void setListOfListOfStrings(Collection> listOfListOfStrings) { - this.listOfListOfStrings = ListOfListOfStringsCopier.copy(listOfListOfStrings); - } - - public final Collection>> getListOfListOfListOfStrings() { - return listOfListOfListOfStrings; - } - - @Override - public final Builder listOfListOfListOfStrings( - Collection>> listOfListOfListOfStrings) { - this.listOfListOfListOfStrings = ListOfListOfListOfStringsCopier.copy(listOfListOfListOfStrings); - return this; - } - - @Override - @SafeVarargs - public final Builder listOfListOfListOfStrings(Collection>... listOfListOfListOfStrings) { - listOfListOfListOfStrings(Arrays.asList(listOfListOfListOfStrings)); - return this; - } - - public final void setListOfListOfListOfStrings( - Collection>> listOfListOfListOfStrings) { - this.listOfListOfListOfStrings = ListOfListOfListOfStringsCopier.copy(listOfListOfListOfStrings); - } - - public final Map>> getMapOfStringToListOfListOfStrings() { - return mapOfStringToListOfListOfStrings; - } - - @Override - public final Builder mapOfStringToListOfListOfStrings( - Map>> mapOfStringToListOfListOfStrings) { - this.mapOfStringToListOfListOfStrings = MapOfStringToListOfListOfStringsCopier.copy(mapOfStringToListOfListOfStrings); - return this; - } - - public final void setMapOfStringToListOfListOfStrings( - Map>> mapOfStringToListOfListOfStrings) { - this.mapOfStringToListOfListOfStrings = MapOfStringToListOfListOfStringsCopier.copy(mapOfStringToListOfListOfStrings); - } - - @Override - public Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) { - super.overrideConfiguration(overrideConfiguration); - return this; - } - - @Override - public Builder overrideConfiguration(Consumer builderConsumer) { - super.overrideConfiguration(builderConsumer); - return this; - } - - @Override - public NestedContainersRequest build() { - return new NestedContainersRequest(this); - } - - @Override - public List> sdkFields() { - return SDK_FIELDS; - } - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/nestedcontainersresponse.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/nestedcontainersresponse.java deleted file mode 100644 index fa60945dad58..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/nestedcontainersresponse.java +++ /dev/null @@ -1,435 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import java.util.Arrays; -import java.util.Collection; -import java.util.Collections; -import java.util.List; -import java.util.Map; -import java.util.Objects; -import java.util.Optional; -import java.util.function.BiConsumer; -import java.util.function.Function; -import software.amazon.awssdk.annotations.Generated; -import software.amazon.awssdk.core.SdkField; -import software.amazon.awssdk.core.SdkPojo; -import software.amazon.awssdk.core.protocol.MarshallLocation; -import software.amazon.awssdk.core.protocol.MarshallingType; -import software.amazon.awssdk.core.traits.ListTrait; -import software.amazon.awssdk.core.traits.LocationTrait; -import software.amazon.awssdk.core.traits.MapTrait; -import software.amazon.awssdk.core.util.SdkAutoConstructList; -import software.amazon.awssdk.core.util.SdkAutoConstructMap; -import software.amazon.awssdk.utils.ToString; -import software.amazon.awssdk.utils.builder.CopyableBuilder; -import software.amazon.awssdk.utils.builder.ToCopyableBuilder; - -/** - */ -@Generated("software.amazon.awssdk:codegen") -public final class NestedContainersResponse extends JsonProtocolTestsResponse implements - ToCopyableBuilder { - private static final SdkField>> LIST_OF_LIST_OF_STRINGS_FIELD = SdkField - .>> builder(MarshallingType.LIST) - .memberName("ListOfListOfStrings") - .getter(getter(NestedContainersResponse::listOfListOfStrings)) - .setter(setter(Builder::listOfListOfStrings)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ListOfListOfStrings").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField.> builder(MarshallingType.LIST) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("member").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder(MarshallingType.STRING) - .traits(LocationTrait.builder() - .location(MarshallLocation.PAYLOAD) - .locationName("member").build()).build()) - .build()).build()).build()).build(); - - private static final SdkField>>> LIST_OF_LIST_OF_LIST_OF_STRINGS_FIELD = SdkField - .>>> builder(MarshallingType.LIST) - .memberName("ListOfListOfListOfStrings") - .getter(getter(NestedContainersResponse::listOfListOfListOfStrings)) - .setter(setter(Builder::listOfListOfListOfStrings)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ListOfListOfListOfStrings").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField.>> builder(MarshallingType.LIST) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("member").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField.> builder(MarshallingType.LIST) - .traits(LocationTrait.builder() - .location(MarshallLocation.PAYLOAD) - .locationName("member").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder( - MarshallingType.STRING) - .traits(LocationTrait - .builder() - .location( - MarshallLocation.PAYLOAD) - .locationName( - "member") - .build()) - .build()).build()) - .build()).build()).build()).build()).build(); - - private static final SdkField>>> MAP_OF_STRING_TO_LIST_OF_LIST_OF_STRINGS_FIELD = SdkField - .>>> builder(MarshallingType.MAP) - .memberName("MapOfStringToListOfListOfStrings") - .getter(getter(NestedContainersResponse::mapOfStringToListOfListOfStrings)) - .setter(setter(Builder::mapOfStringToListOfListOfStrings)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MapOfStringToListOfListOfStrings") - .build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField.>> builder(MarshallingType.LIST) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField.> builder(MarshallingType.LIST) - .traits(LocationTrait.builder() - .location(MarshallLocation.PAYLOAD) - .locationName("member").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder( - MarshallingType.STRING) - .traits(LocationTrait - .builder() - .location( - MarshallLocation.PAYLOAD) - .locationName( - "member") - .build()) - .build()).build()) - .build()).build()).build()).build()).build(); - - private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(LIST_OF_LIST_OF_STRINGS_FIELD, - LIST_OF_LIST_OF_LIST_OF_STRINGS_FIELD, MAP_OF_STRING_TO_LIST_OF_LIST_OF_STRINGS_FIELD)); - - private final List> listOfListOfStrings; - - private final List>> listOfListOfListOfStrings; - - private final Map>> mapOfStringToListOfListOfStrings; - - private NestedContainersResponse(BuilderImpl builder) { - super(builder); - this.listOfListOfStrings = builder.listOfListOfStrings; - this.listOfListOfListOfStrings = builder.listOfListOfListOfStrings; - this.mapOfStringToListOfListOfStrings = builder.mapOfStringToListOfListOfStrings; - } - - /** - * Returns true if the ListOfListOfStrings property was specified by the sender (it may be empty), or false if the - * sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS - * service. - */ - public boolean hasListOfListOfStrings() { - return listOfListOfStrings != null && !(listOfListOfStrings instanceof SdkAutoConstructList); - } - - /** - * Returns the value of the ListOfListOfStrings property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasListOfListOfStrings()} to see if a value was sent in this field. - *

- * - * @return The value of the ListOfListOfStrings property for this object. - */ - public List> listOfListOfStrings() { - return listOfListOfStrings; - } - - /** - * Returns true if the ListOfListOfListOfStrings property was specified by the sender (it may be empty), or false if - * the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS - * service. - */ - public boolean hasListOfListOfListOfStrings() { - return listOfListOfListOfStrings != null && !(listOfListOfListOfStrings instanceof SdkAutoConstructList); - } - - /** - * Returns the value of the ListOfListOfListOfStrings property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasListOfListOfListOfStrings()} to see if a value was sent in this field. - *

- * - * @return The value of the ListOfListOfListOfStrings property for this object. - */ - public List>> listOfListOfListOfStrings() { - return listOfListOfListOfStrings; - } - - /** - * Returns true if the MapOfStringToListOfListOfStrings property was specified by the sender (it may be empty), or - * false if the sender did not specify the value (it will be empty). For responses returned by the SDK, the sender - * is the AWS service. - */ - public boolean hasMapOfStringToListOfListOfStrings() { - return mapOfStringToListOfListOfStrings != null && !(mapOfStringToListOfListOfStrings instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the MapOfStringToListOfListOfStrings property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasMapOfStringToListOfListOfStrings()} to see if a value was sent in this field. - *

- * - * @return The value of the MapOfStringToListOfListOfStrings property for this object. - */ - public Map>> mapOfStringToListOfListOfStrings() { - return mapOfStringToListOfListOfStrings; - } - - @Override - public Builder toBuilder() { - return new BuilderImpl(this); - } - - public static Builder builder() { - return new BuilderImpl(); - } - - public static Class serializableBuilderClass() { - return BuilderImpl.class; - } - - @Override - public int hashCode() { - int hashCode = 1; - hashCode = 31 * hashCode + super.hashCode(); - hashCode = 31 * hashCode + Objects.hashCode(listOfListOfStrings()); - hashCode = 31 * hashCode + Objects.hashCode(listOfListOfListOfStrings()); - hashCode = 31 * hashCode + Objects.hashCode(mapOfStringToListOfListOfStrings()); - return hashCode; - } - - @Override - public boolean equals(Object obj) { - return super.equals(obj) && equalsBySdkFields(obj); - } - - @Override - public boolean equalsBySdkFields(Object obj) { - if (this == obj) { - return true; - } - if (obj == null) { - return false; - } - if (!(obj instanceof NestedContainersResponse)) { - return false; - } - NestedContainersResponse other = (NestedContainersResponse) obj; - return Objects.equals(listOfListOfStrings(), other.listOfListOfStrings()) - && Objects.equals(listOfListOfListOfStrings(), other.listOfListOfListOfStrings()) - && Objects.equals(mapOfStringToListOfListOfStrings(), other.mapOfStringToListOfListOfStrings()); - } - - /** - * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be - * redacted from this string using a placeholder value. - */ - @Override - public String toString() { - return ToString.builder("NestedContainersResponse").add("ListOfListOfStrings", listOfListOfStrings()) - .add("ListOfListOfListOfStrings", listOfListOfListOfStrings()) - .add("MapOfStringToListOfListOfStrings", mapOfStringToListOfListOfStrings()).build(); - } - - public Optional getValueForField(String fieldName, Class clazz) { - switch (fieldName) { - case "ListOfListOfStrings": - return Optional.ofNullable(clazz.cast(listOfListOfStrings())); - case "ListOfListOfListOfStrings": - return Optional.ofNullable(clazz.cast(listOfListOfListOfStrings())); - case "MapOfStringToListOfListOfStrings": - return Optional.ofNullable(clazz.cast(mapOfStringToListOfListOfStrings())); - default: - return Optional.empty(); - } - } - - @Override - public List> sdkFields() { - return SDK_FIELDS; - } - - private static Function getter(Function g) { - return obj -> g.apply((NestedContainersResponse) obj); - } - - private static BiConsumer setter(BiConsumer s) { - return (obj, val) -> s.accept((Builder) obj, val); - } - - public interface Builder extends JsonProtocolTestsResponse.Builder, SdkPojo, - CopyableBuilder { - /** - * Sets the value of the ListOfListOfStrings property for this object. - * - * @param listOfListOfStrings - * The new value for the ListOfListOfStrings property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfListOfStrings(Collection> listOfListOfStrings); - - /** - * Sets the value of the ListOfListOfStrings property for this object. - * - * @param listOfListOfStrings - * The new value for the ListOfListOfStrings property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfListOfStrings(Collection... listOfListOfStrings); - - /** - * Sets the value of the ListOfListOfListOfStrings property for this object. - * - * @param listOfListOfListOfStrings - * The new value for the ListOfListOfListOfStrings property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfListOfListOfStrings(Collection>> listOfListOfListOfStrings); - - /** - * Sets the value of the ListOfListOfListOfStrings property for this object. - * - * @param listOfListOfListOfStrings - * The new value for the ListOfListOfListOfStrings property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder listOfListOfListOfStrings(Collection>... listOfListOfListOfStrings); - - /** - * Sets the value of the MapOfStringToListOfListOfStrings property for this object. - * - * @param mapOfStringToListOfListOfStrings - * The new value for the MapOfStringToListOfListOfStrings property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder mapOfStringToListOfListOfStrings( - Map>> mapOfStringToListOfListOfStrings); - } - - static final class BuilderImpl extends JsonProtocolTestsResponse.BuilderImpl implements Builder { - private List> listOfListOfStrings; - - private List>> listOfListOfListOfStrings; - - private Map>> mapOfStringToListOfListOfStrings; - - private BuilderImpl() { - } - - private BuilderImpl(NestedContainersResponse model) { - super(model); - listOfListOfStrings(model.listOfListOfStrings); - listOfListOfListOfStrings(model.listOfListOfListOfStrings); - mapOfStringToListOfListOfStrings(model.mapOfStringToListOfListOfStrings); - } - - public final Collection> getListOfListOfStrings() { - return listOfListOfStrings; - } - - @Override - public final Builder listOfListOfStrings(Collection> listOfListOfStrings) { - this.listOfListOfStrings = ListOfListOfStringsCopier.copy(listOfListOfStrings); - return this; - } - - @Override - @SafeVarargs - public final Builder listOfListOfStrings(Collection... listOfListOfStrings) { - listOfListOfStrings(Arrays.asList(listOfListOfStrings)); - return this; - } - - public final void setListOfListOfStrings(Collection> listOfListOfStrings) { - this.listOfListOfStrings = ListOfListOfStringsCopier.copy(listOfListOfStrings); - } - - public final Collection>> getListOfListOfListOfStrings() { - return listOfListOfListOfStrings; - } - - @Override - public final Builder listOfListOfListOfStrings( - Collection>> listOfListOfListOfStrings) { - this.listOfListOfListOfStrings = ListOfListOfListOfStringsCopier.copy(listOfListOfListOfStrings); - return this; - } - - @Override - @SafeVarargs - public final Builder listOfListOfListOfStrings(Collection>... listOfListOfListOfStrings) { - listOfListOfListOfStrings(Arrays.asList(listOfListOfListOfStrings)); - return this; - } - - public final void setListOfListOfListOfStrings( - Collection>> listOfListOfListOfStrings) { - this.listOfListOfListOfStrings = ListOfListOfListOfStringsCopier.copy(listOfListOfListOfStrings); - } - - public final Map>> getMapOfStringToListOfListOfStrings() { - return mapOfStringToListOfListOfStrings; - } - - @Override - public final Builder mapOfStringToListOfListOfStrings( - Map>> mapOfStringToListOfListOfStrings) { - this.mapOfStringToListOfListOfStrings = MapOfStringToListOfListOfStringsCopier.copy(mapOfStringToListOfListOfStrings); - return this; - } - - public final void setMapOfStringToListOfListOfStrings( - Map>> mapOfStringToListOfListOfStrings) { - this.mapOfStringToListOfListOfStrings = MapOfStringToListOfListOfStringsCopier.copy(mapOfStringToListOfListOfStrings); - } - - @Override - public NestedContainersResponse build() { - return new NestedContainersResponse(this); - } - - @Override - public List> sdkFields() { - return SDK_FIELDS; - } - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/recursivelisttypecopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/recursivelisttypecopier.java deleted file mode 100644 index ad2eaaadc9a1..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/recursivelisttypecopier.java +++ /dev/null @@ -1,27 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import static java.util.stream.Collectors.toList; - -import java.util.ArrayList; -import java.util.Collection; -import java.util.Collections; -import java.util.List; -import software.amazon.awssdk.annotations.Generated; - -@Generated("software.amazon.awssdk:codegen") -final class RecursiveListTypeCopier { - static List copy(Collection recursiveListTypeParam) { - if (recursiveListTypeParam == null) { - return null; - } - List recursiveListTypeParamCopy = new ArrayList<>(recursiveListTypeParam); - return Collections.unmodifiableList(recursiveListTypeParamCopy); - } - - static List copyFromBuilder(Collection recursiveListTypeParam) { - if (recursiveListTypeParam == null) { - return null; - } - return copy(recursiveListTypeParam.stream().map(RecursiveStructType.Builder::build).collect(toList())); - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/recursivemaptypecopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/recursivemaptypecopier.java deleted file mode 100644 index 8e4790ede443..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/recursivemaptypecopier.java +++ /dev/null @@ -1,28 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import static java.util.stream.Collectors.toMap; - -import java.util.Collections; -import java.util.HashMap; -import java.util.Map; -import software.amazon.awssdk.annotations.Generated; - -@Generated("software.amazon.awssdk:codegen") -final class RecursiveMapTypeCopier { - static Map copy(Map recursiveMapTypeParam) { - if (recursiveMapTypeParam == null) { - return null; - } - Map recursiveMapTypeParamCopy = recursiveMapTypeParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> m.put(e.getKey(), e.getValue()), HashMap::putAll); - return Collections.unmodifiableMap(recursiveMapTypeParamCopy); - } - - static Map copyFromBuilder( - Map recursiveMapTypeParam) { - if (recursiveMapTypeParam == null) { - return null; - } - return copy(recursiveMapTypeParam.entrySet().stream().collect(toMap(Map.Entry::getKey, e -> e.getValue().build()))); - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/recursivestructtype.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/recursivestructtype.java deleted file mode 100644 index 5d80c893f48f..000000000000 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/nonautoconstructcontainers/recursivestructtype.java +++ /dev/null @@ -1,424 +0,0 @@ -package software.amazon.awssdk.services.jsonprotocoltests.model; - -import java.io.Serializable; -import java.util.Arrays; -import java.util.Collection; -import java.util.Collections; -import java.util.List; -import java.util.Map; -import java.util.Objects; -import java.util.Optional; -import java.util.function.BiConsumer; -import java.util.function.Consumer; -import java.util.function.Function; -import java.util.stream.Collectors; -import java.util.stream.Stream; -import software.amazon.awssdk.annotations.Generated; -import software.amazon.awssdk.core.SdkField; -import software.amazon.awssdk.core.SdkPojo; -import software.amazon.awssdk.core.protocol.MarshallLocation; -import software.amazon.awssdk.core.protocol.MarshallingType; -import software.amazon.awssdk.core.traits.ListTrait; -import software.amazon.awssdk.core.traits.LocationTrait; -import software.amazon.awssdk.core.traits.MapTrait; -import software.amazon.awssdk.core.util.SdkAutoConstructList; -import software.amazon.awssdk.core.util.SdkAutoConstructMap; -import software.amazon.awssdk.utils.CollectionUtils; -import software.amazon.awssdk.utils.ToString; -import software.amazon.awssdk.utils.builder.CopyableBuilder; -import software.amazon.awssdk.utils.builder.ToCopyableBuilder; - -/** - */ -@Generated("software.amazon.awssdk:codegen") -public final class RecursiveStructType implements SdkPojo, Serializable, - ToCopyableBuilder { - private static final SdkField NO_RECURSE_FIELD = SdkField. builder(MarshallingType.STRING) - .memberName("NoRecurse").getter(getter(RecursiveStructType::noRecurse)).setter(setter(Builder::noRecurse)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("NoRecurse").build()).build(); - - private static final SdkField RECURSIVE_STRUCT_FIELD = SdkField - . builder(MarshallingType.SDK_POJO).memberName("RecursiveStruct") - .getter(getter(RecursiveStructType::recursiveStruct)).setter(setter(Builder::recursiveStruct)) - .constructor(RecursiveStructType::builder) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("RecursiveStruct").build()).build(); - - private static final SdkField> RECURSIVE_LIST_FIELD = SdkField - .> builder(MarshallingType.LIST) - .memberName("RecursiveList") - .getter(getter(RecursiveStructType::recursiveList)) - .setter(setter(Builder::recursiveList)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("RecursiveList").build(), - ListTrait - .builder() - .memberLocationName(null) - .memberFieldInfo( - SdkField. builder(MarshallingType.SDK_POJO) - .constructor(RecursiveStructType::builder) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("member").build()).build()).build()).build(); - - private static final SdkField> RECURSIVE_MAP_FIELD = SdkField - .> builder(MarshallingType.MAP) - .memberName("RecursiveMap") - .getter(getter(RecursiveStructType::recursiveMap)) - .setter(setter(Builder::recursiveMap)) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("RecursiveMap").build(), - MapTrait.builder() - .keyLocationName("key") - .valueLocationName("value") - .valueFieldInfo( - SdkField. builder(MarshallingType.SDK_POJO) - .constructor(RecursiveStructType::builder) - .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) - .locationName("value").build()).build()).build()).build(); - - private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(NO_RECURSE_FIELD, - RECURSIVE_STRUCT_FIELD, RECURSIVE_LIST_FIELD, RECURSIVE_MAP_FIELD)); - - private static final long serialVersionUID = 1L; - - private final String noRecurse; - - private final RecursiveStructType recursiveStruct; - - private final List recursiveList; - - private final Map recursiveMap; - - private RecursiveStructType(BuilderImpl builder) { - this.noRecurse = builder.noRecurse; - this.recursiveStruct = builder.recursiveStruct; - this.recursiveList = builder.recursiveList; - this.recursiveMap = builder.recursiveMap; - } - - /** - * Returns the value of the NoRecurse property for this object. - * - * @return The value of the NoRecurse property for this object. - */ - public String noRecurse() { - return noRecurse; - } - - /** - * Returns the value of the RecursiveStruct property for this object. - * - * @return The value of the RecursiveStruct property for this object. - */ - public RecursiveStructType recursiveStruct() { - return recursiveStruct; - } - - /** - * Returns true if the RecursiveList property was specified by the sender (it may be empty), or false if the sender - * did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service. - */ - public boolean hasRecursiveList() { - return recursiveList != null && !(recursiveList instanceof SdkAutoConstructList); - } - - /** - * Returns the value of the RecursiveList property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasRecursiveList()} to see if a value was sent in this field. - *

- * - * @return The value of the RecursiveList property for this object. - */ - public List recursiveList() { - return recursiveList; - } - - /** - * Returns true if the RecursiveMap property was specified by the sender (it may be empty), or false if the sender - * did not specify the value (it will be empty). For responses returned by the SDK, the sender is the AWS service. - */ - public boolean hasRecursiveMap() { - return recursiveMap != null && !(recursiveMap instanceof SdkAutoConstructMap); - } - - /** - * Returns the value of the RecursiveMap property for this object. - *

- * Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. - *

- *

- * You can use {@link #hasRecursiveMap()} to see if a value was sent in this field. - *

- * - * @return The value of the RecursiveMap property for this object. - */ - public Map recursiveMap() { - return recursiveMap; - } - - @Override - public Builder toBuilder() { - return new BuilderImpl(this); - } - - public static Builder builder() { - return new BuilderImpl(); - } - - public static Class serializableBuilderClass() { - return BuilderImpl.class; - } - - @Override - public int hashCode() { - int hashCode = 1; - hashCode = 31 * hashCode + Objects.hashCode(noRecurse()); - hashCode = 31 * hashCode + Objects.hashCode(recursiveStruct()); - hashCode = 31 * hashCode + Objects.hashCode(recursiveList()); - hashCode = 31 * hashCode + Objects.hashCode(recursiveMap()); - return hashCode; - } - - @Override - public boolean equals(Object obj) { - return equalsBySdkFields(obj); - } - - @Override - public boolean equalsBySdkFields(Object obj) { - if (this == obj) { - return true; - } - if (obj == null) { - return false; - } - if (!(obj instanceof RecursiveStructType)) { - return false; - } - RecursiveStructType other = (RecursiveStructType) obj; - return Objects.equals(noRecurse(), other.noRecurse()) && Objects.equals(recursiveStruct(), other.recursiveStruct()) - && Objects.equals(recursiveList(), other.recursiveList()) && Objects.equals(recursiveMap(), other.recursiveMap()); - } - - /** - * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be - * redacted from this string using a placeholder value. - */ - @Override - public String toString() { - return ToString.builder("RecursiveStructType").add("NoRecurse", noRecurse()).add("RecursiveStruct", recursiveStruct()) - .add("RecursiveList", recursiveList()).add("RecursiveMap", recursiveMap()).build(); - } - - public Optional getValueForField(String fieldName, Class clazz) { - switch (fieldName) { - case "NoRecurse": - return Optional.ofNullable(clazz.cast(noRecurse())); - case "RecursiveStruct": - return Optional.ofNullable(clazz.cast(recursiveStruct())); - case "RecursiveList": - return Optional.ofNullable(clazz.cast(recursiveList())); - case "RecursiveMap": - return Optional.ofNullable(clazz.cast(recursiveMap())); - default: - return Optional.empty(); - } - } - - @Override - public List> sdkFields() { - return SDK_FIELDS; - } - - private static Function getter(Function g) { - return obj -> g.apply((RecursiveStructType) obj); - } - - private static BiConsumer setter(BiConsumer s) { - return (obj, val) -> s.accept((Builder) obj, val); - } - - public interface Builder extends SdkPojo, CopyableBuilder { - /** - * Sets the value of the NoRecurse property for this object. - * - * @param noRecurse - * The new value for the NoRecurse property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder noRecurse(String noRecurse); - - /** - * Sets the value of the RecursiveStruct property for this object. - * - * @param recursiveStruct - * The new value for the RecursiveStruct property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder recursiveStruct(RecursiveStructType recursiveStruct); - - /** - * Sets the value of the RecursiveStruct property for this object. - * - * This is a convenience that creates an instance of the {@link RecursiveStructType.Builder} avoiding the need - * to create one manually via {@link RecursiveStructType#builder()}. - * - * When the {@link Consumer} completes, {@link RecursiveStructType.Builder#build()} is called immediately and - * its result is passed to {@link #recursiveStruct(RecursiveStructType)}. - * - * @param recursiveStruct - * a consumer that will call methods on {@link RecursiveStructType.Builder} - * @return Returns a reference to this object so that method calls can be chained together. - * @see #recursiveStruct(RecursiveStructType) - */ - default Builder recursiveStruct(Consumer recursiveStruct) { - return recursiveStruct(RecursiveStructType.builder().applyMutation(recursiveStruct).build()); - } - - /** - * Sets the value of the RecursiveList property for this object. - * - * @param recursiveList - * The new value for the RecursiveList property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder recursiveList(Collection recursiveList); - - /** - * Sets the value of the RecursiveList property for this object. - * - * @param recursiveList - * The new value for the RecursiveList property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder recursiveList(RecursiveStructType... recursiveList); - - /** - * Sets the value of the RecursiveList property for this object. - * - * This is a convenience that creates an instance of the {@link List.Builder} avoiding the - * need to create one manually via {@link List#builder()}. - * - * When the {@link Consumer} completes, {@link List.Builder#build()} is called immediately - * and its result is passed to {@link #recursiveList(List)}. - * - * @param recursiveList - * a consumer that will call methods on {@link List.Builder} - * @return Returns a reference to this object so that method calls can be chained together. - * @see #recursiveList(List) - */ - Builder recursiveList(Consumer... recursiveList); - - /** - * Sets the value of the RecursiveMap property for this object. - * - * @param recursiveMap - * The new value for the RecursiveMap property for this object. - * @return Returns a reference to this object so that method calls can be chained together. - */ - Builder recursiveMap(Map recursiveMap); - } - - static final class BuilderImpl implements Builder { - private String noRecurse; - - private RecursiveStructType recursiveStruct; - - private List recursiveList; - - private Map recursiveMap; - - private BuilderImpl() { - } - - private BuilderImpl(RecursiveStructType model) { - noRecurse(model.noRecurse); - recursiveStruct(model.recursiveStruct); - recursiveList(model.recursiveList); - recursiveMap(model.recursiveMap); - } - - public final String getNoRecurse() { - return noRecurse; - } - - @Override - public final Builder noRecurse(String noRecurse) { - this.noRecurse = noRecurse; - return this; - } - - public final void setNoRecurse(String noRecurse) { - this.noRecurse = noRecurse; - } - - public final Builder getRecursiveStruct() { - return recursiveStruct != null ? recursiveStruct.toBuilder() : null; - } - - @Override - public final Builder recursiveStruct(RecursiveStructType recursiveStruct) { - this.recursiveStruct = recursiveStruct; - return this; - } - - public final void setRecursiveStruct(BuilderImpl recursiveStruct) { - this.recursiveStruct = recursiveStruct != null ? recursiveStruct.build() : null; - } - - public final Collection getRecursiveList() { - return recursiveList != null ? recursiveList.stream().map(RecursiveStructType::toBuilder) - .collect(Collectors.toList()) : null; - } - - @Override - public final Builder recursiveList(Collection recursiveList) { - this.recursiveList = RecursiveListTypeCopier.copy(recursiveList); - return this; - } - - @Override - @SafeVarargs - public final Builder recursiveList(RecursiveStructType... recursiveList) { - recursiveList(Arrays.asList(recursiveList)); - return this; - } - - @Override - @SafeVarargs - public final Builder recursiveList(Consumer... recursiveList) { - recursiveList(Stream.of(recursiveList).map(c -> RecursiveStructType.builder().applyMutation(c).build()) - .collect(Collectors.toList())); - return this; - } - - public final void setRecursiveList(Collection recursiveList) { - this.recursiveList = RecursiveListTypeCopier.copyFromBuilder(recursiveList); - } - - public final Map getRecursiveMap() { - return recursiveMap != null ? CollectionUtils.mapValues(recursiveMap, RecursiveStructType::toBuilder) : null; - } - - @Override - public final Builder recursiveMap(Map recursiveMap) { - this.recursiveMap = RecursiveMapTypeCopier.copy(recursiveMap); - return this; - } - - public final void setRecursiveMap(Map recursiveMap) { - this.recursiveMap = RecursiveMapTypeCopier.copyFromBuilder(recursiveMap); - } - - @Override - public RecursiveStructType build() { - return new RecursiveStructType(this); - } - - @Override - public List> sdkFields() { - return SDK_FIELDS; - } - } -} diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/recursivelisttypecopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/recursivelisttypecopier.java index 64fb00074196..3495ef987ec3 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/recursivelisttypecopier.java +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/recursivelisttypecopier.java @@ -21,8 +21,8 @@ static List copy(Collection recursiveL } static List copyFromBuilder(Collection recursiveListTypeParam) { - if (recursiveListTypeParam == null) { - return null; + if (recursiveListTypeParam == null || recursiveListTypeParam instanceof DefaultSdkAutoConstructList) { + return DefaultSdkAutoConstructList.getInstance(); } return copy(recursiveListTypeParam.stream().map(RecursiveStructType.Builder::build).collect(toList())); } diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/recursivemaptypecopier.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/recursivemaptypecopier.java index cb449e16eb90..9e3a968aee42 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/recursivemaptypecopier.java +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/recursivemaptypecopier.java @@ -16,14 +16,14 @@ static Map copy(Map re return DefaultSdkAutoConstructMap.getInstance(); } Map recursiveMapTypeParamCopy = recursiveMapTypeParam.entrySet().stream() - .collect(HashMap::new, (m, e) -> m.put(e.getKey(), e.getValue()), HashMap::putAll); + .collect(HashMap::new, (m, e) -> m.put(e.getKey(), e.getValue()), HashMap::putAll); return Collections.unmodifiableMap(recursiveMapTypeParamCopy); } static Map copyFromBuilder( Map recursiveMapTypeParam) { - if (recursiveMapTypeParam == null) { - return null; + if (recursiveMapTypeParam == null || recursiveMapTypeParam instanceof DefaultSdkAutoConstructMap) { + return DefaultSdkAutoConstructMap.getInstance(); } return copy(recursiveMapTypeParam.entrySet().stream().collect(toMap(Map.Entry::getKey, e -> e.getValue().build()))); } diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/recursivestructtype.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/recursivestructtype.java index 3f01382d1962..5b89523b1e41 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/recursivestructtype.java +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/recursivestructtype.java @@ -177,8 +177,8 @@ public int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + Objects.hashCode(noRecurse()); hashCode = 31 * hashCode + Objects.hashCode(recursiveStruct()); - hashCode = 31 * hashCode + Objects.hashCode(recursiveList()); - hashCode = 31 * hashCode + Objects.hashCode(recursiveMap()); + hashCode = 31 * hashCode + Objects.hashCode(hasRecursiveList() ? recursiveList() : null); + hashCode = 31 * hashCode + Objects.hashCode(hasRecursiveMap() ? recursiveMap() : null); return hashCode; } @@ -200,7 +200,8 @@ public boolean equalsBySdkFields(Object obj) { } RecursiveStructType other = (RecursiveStructType) obj; return Objects.equals(noRecurse(), other.noRecurse()) && Objects.equals(recursiveStruct(), other.recursiveStruct()) - && Objects.equals(recursiveList(), other.recursiveList()) && Objects.equals(recursiveMap(), other.recursiveMap()); + && hasRecursiveList() == other.hasRecursiveList() && Objects.equals(recursiveList(), other.recursiveList()) + && hasRecursiveMap() == other.hasRecursiveMap() && Objects.equals(recursiveMap(), other.recursiveMap()); } /** @@ -210,7 +211,8 @@ public boolean equalsBySdkFields(Object obj) { @Override public String toString() { return ToString.builder("RecursiveStructType").add("NoRecurse", noRecurse()).add("RecursiveStruct", recursiveStruct()) - .add("RecursiveList", recursiveList()).add("RecursiveMap", recursiveMap()).build(); + .add("RecursiveList", hasRecursiveList() ? recursiveList() : null) + .add("RecursiveMap", hasRecursiveMap() ? recursiveMap() : null).build(); } public Optional getValueForField(String fieldName, Class clazz) { @@ -370,6 +372,9 @@ public final void setRecursiveStruct(BuilderImpl recursiveStruct) { } public final Collection getRecursiveList() { + if (recursiveList instanceof SdkAutoConstructList) { + return null; + } return recursiveList != null ? recursiveList.stream().map(RecursiveStructType::toBuilder) .collect(Collectors.toList()) : null; } @@ -400,6 +405,9 @@ public final void setRecursiveList(Collection recursiveList) { } public final Map getRecursiveMap() { + if (recursiveMap instanceof SdkAutoConstructMap) { + return null; + } return recursiveMap != null ? CollectionUtils.mapValues(recursiveMap, RecursiveStructType::toBuilder) : null; } diff --git a/test/codegen-generated-classes-test/src/main/resources/codegen-resources/autoconstructedlists/customization.config b/test/codegen-generated-classes-test/src/main/resources/codegen-resources/autoconstructedlists/customization.config deleted file mode 100644 index 53b007a003d5..000000000000 --- a/test/codegen-generated-classes-test/src/main/resources/codegen-resources/autoconstructedlists/customization.config +++ /dev/null @@ -1,8 +0,0 @@ -{ - "blacklistedSimpleMethods" : [ - "allTypes", - "nestedContainers", - "operationWithNoInputOrOutput" - ], - "useAutoConstructList": true -} \ No newline at end of file diff --git a/test/codegen-generated-classes-test/src/main/resources/codegen-resources/autoconstructedlists/service-2.json b/test/codegen-generated-classes-test/src/main/resources/codegen-resources/autoconstructedlists/service-2.json deleted file mode 100644 index 6bda6e0c936f..000000000000 --- a/test/codegen-generated-classes-test/src/main/resources/codegen-resources/autoconstructedlists/service-2.json +++ /dev/null @@ -1,268 +0,0 @@ -{ - "version":"2.0", - "metadata":{ - "apiVersion":"2016-03-11", - "endpointPrefix":"autoconstructlists", - "jsonVersion":"1.1", - "protocol":"json", - "serviceAbbreviation":"AmazonCodeGenerationJsonRpcCustomized", - "serviceFullName":"Amazon Code Generation Json Rpc Customized", - "serviceId":"AmazonCodeGenerationJsonRpcCustomized", - "signatureVersion":"v4", - "targetPrefix":"AmazonCodeGenerationJsonRpcCustomized", - "timestampFormat":"unixTimestamp" - }, - "operations":{ - "AllTypes":{ - "name":"AllTypes", - "http":{ - "method":"POST", - "requestUri":"/" - }, - "input":{"shape":"AllTypesStructure"}, - "output":{"shape":"AllTypesStructure"}, - "errors":[ - {"shape":"EmptyModeledException"} - ] - }, - "NestedContainers":{ - "name":"NestedContainers", - "http":{ - "method":"POST", - "requestUri":"/" - }, - "input":{"shape":"NestedContainersStructure"}, - "output":{"shape":"NestedContainersStructure"} - }, - "OperationWithNoInputOrOutput":{ - "name":"OperationWithNoInputOrOutput", - "http":{ - "method":"POST", - "requestUri":"/" - } - }, - "StreamingInputOperation":{ - "name":"StreamingInputOperation", - "http":{ - "method":"POST", - "requestUri":"/2016-03-11/streamingInputOperation" - }, - "input":{"shape":"StructureWithStreamingMember"} - }, - "StreamingOutputOperation":{ - "name":"StreamingOutputOperation", - "http":{ - "method":"POST", - "requestUri":"/2016-03-11/streamingOutputOperation" - }, - "output":{"shape":"StructureWithStreamingMember"} - } - }, - "shapes":{ - "AllTypesStructure":{ - "type":"structure", - "members":{ - "StringMember":{"shape":"String"}, - "IntegerMember":{"shape":"Integer"}, - "BooleanMember":{"shape":"Boolean"}, - "FloatMember":{"shape":"Float"}, - "DoubleMember":{"shape":"Double"}, - "LongMember":{"shape":"Long"}, - "SimpleList":{"shape":"ListOfStrings"}, - "ListOfEnums":{"shape":"ListOfEnums"}, - "ListOfMaps":{"shape":"ListOfMapStringToString"}, - "ListOfStructs":{"shape":"ListOfSimpleStructs"}, - "MapOfStringToIntegerList":{"shape":"MapOfStringToIntegerList"}, - "MapOfStringToString":{"shape":"MapOfStringToString"}, - "MapOfStringToSimpleStruct":{"shape":"MapOfStringToSimpleStruct"}, - "MapOfEnumToEnum":{"shape":"MapOfEnumToEnum"}, - "MapOfEnumToString":{"shape":"MapOfEnumToString"}, - "MapOfStringToEnum":{"shape":"MapOfStringToEnum"}, - "MapOfEnumToSimpleStruct":{"shape":"MapOfEnumToSimpleStruct"}, - "TimestampMember":{"shape":"Timestamp"}, - "StructWithNestedTimestampMember":{"shape":"StructWithTimestamp"}, - "BlobArg":{"shape":"BlobType"}, - "StructWithNestedBlob":{"shape":"StructWithNestedBlobType"}, - "BlobMap":{"shape":"BlobMapType"}, - "ListOfBlobs":{"shape":"ListOfBlobsType"}, - "RecursiveStruct":{"shape":"RecursiveStructType"}, - "PolymorphicTypeWithSubTypes":{"shape":"BaseType"}, - "PolymorphicTypeWithoutSubTypes":{"shape":"SubTypeOne"}, - "EnumType":{"shape":"EnumType"} - } - }, - "BaseType":{ - "type":"structure", - "members":{ - "BaseMember":{"shape":"String"} - } - }, - "BlobMapType":{ - "type":"map", - "key":{"shape":"String"}, - "value":{"shape":"BlobType"} - }, - "BlobType":{"type":"blob"}, - "Boolean":{"type":"boolean"}, - "Double":{"type":"double"}, - "EmptyModeledException":{ - "type":"structure", - "members":{ - }, - "exception":true - }, - "Float":{"type":"float"}, - "IdempotentOperationStructure":{ - "type":"structure", - "members":{ - "IdempotencyToken":{ - "shape":"String", - "idempotencyToken":true - } - } - }, - "Integer":{"type":"integer"}, - "ListOfBlobsType":{ - "type":"list", - "member":{"shape":"BlobType"} - }, - "ListOfIntegers":{ - "type":"list", - "member":{"shape":"Integer"} - }, - "ListOfListOfListOfStrings":{ - "type":"list", - "member":{"shape":"ListOfListOfStrings"} - }, - "ListOfListOfStrings":{ - "type":"list", - "member":{"shape":"ListOfStrings"} - }, - "ListOfMapStringToString":{ - "type":"list", - "member":{"shape":"MapOfStringToString"} - }, - "ListOfSimpleStructs":{ - "type":"list", - "member":{"shape":"SimpleStruct"} - }, - "ListOfStrings":{ - "type":"list", - "member":{"shape":"String"} - }, - "ListOfEnums":{ - "type":"list", - "member":{"shape":"EnumType"} - }, - "Long":{"type":"long"}, - "MapOfStringToIntegerList":{ - "type":"map", - "key":{"shape":"String"}, - "value":{"shape":"ListOfIntegers"} - }, - "MapOfStringToListOfListOfStrings":{ - "type":"map", - "key":{"shape":"String"}, - "value":{"shape":"ListOfListOfStrings"} - }, - "MapOfStringToSimpleStruct":{ - "type":"map", - "key":{"shape":"String"}, - "value":{"shape":"SimpleStruct"} - }, - "MapOfStringToString":{ - "type":"map", - "key":{"shape":"String"}, - "value":{"shape":"String"} - }, - "MapOfEnumToEnum":{ - "type":"map", - "key":{"shape":"EnumType"}, - "value":{"shape":"EnumType"} - }, - "MapOfEnumToString":{ - "type":"map", - "key":{"shape":"EnumType"}, - "value":{"shape":"String"} - }, - "MapOfStringToEnum":{ - "type":"map", - "key":{"shape":"String"}, - "value":{"shape":"EnumType"} - }, - "MapOfEnumToSimpleStruct":{ - "type":"map", - "key":{"shape":"EnumType"}, - "value":{"shape":"SimpleStruct"} - }, - "NestedContainersStructure":{ - "type":"structure", - "members":{ - "ListOfListOfStrings":{"shape":"ListOfListOfStrings"}, - "ListOfListOfListOfStrings":{"shape":"ListOfListOfListOfStrings"}, - "MapOfStringToListOfListOfStrings":{"shape":"MapOfStringToListOfListOfStrings"} - } - }, - "RecursiveListType":{ - "type":"list", - "member":{"shape":"RecursiveStructType"} - }, - "RecursiveMapType":{ - "type":"map", - "key":{"shape":"String"}, - "value":{"shape":"RecursiveStructType"} - }, - "RecursiveStructType":{ - "type":"structure", - "members":{ - "NoRecurse":{"shape":"String"}, - "RecursiveStruct":{"shape":"RecursiveStructType"}, - "RecursiveList":{"shape":"RecursiveListType"}, - "RecursiveMap":{"shape":"RecursiveMapType"} - } - }, - "SimpleStruct":{ - "type":"structure", - "members":{ - "StringMember":{"shape":"String"} - } - }, - "StreamType":{ - "type":"blob", - "streaming":true - }, - "String":{"type":"string"}, - "StructWithNestedBlobType":{ - "type":"structure", - "members":{ - "NestedBlob":{"shape":"BlobType"} - } - }, - "StructWithTimestamp":{ - "type":"structure", - "members":{ - "NestedTimestamp":{"shape":"Timestamp"} - } - }, - "StructureWithStreamingMember":{ - "type":"structure", - "members":{ - "StreamingMember":{"shape":"StreamType"} - }, - "payload":"StreamingMember" - }, - "SubTypeOne":{ - "type":"structure", - "members":{ - "SubTypeOneMember":{"shape":"String"} - } - }, - "EnumType": { - "type":"string", - "enum": [ - "EnumValue1", "EnumValue2" - ] - }, - "Timestamp":{"type":"timestamp"} - } -} diff --git a/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/codegenerationjsonrpccustomized/model/GetValueForFieldTest.java b/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/protocolrestjson/model/GetValueForFieldTest.java similarity index 94% rename from test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/codegenerationjsonrpccustomized/model/GetValueForFieldTest.java rename to test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/protocolrestjson/model/GetValueForFieldTest.java index 17a4f033d290..33275739d2e2 100644 --- a/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/codegenerationjsonrpccustomized/model/GetValueForFieldTest.java +++ b/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/protocolrestjson/model/GetValueForFieldTest.java @@ -13,7 +13,7 @@ * permissions and limitations under the License. */ -package software.amazon.awssdk.services.codegenerationjsonrpccustomized.model; +package software.amazon.awssdk.services.protocolrestjson.model; import static org.hamcrest.Matchers.equalTo; import static org.hamcrest.Matchers.is; diff --git a/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/codegenerationjsonrpccustomized/model/ListCopierTest.java b/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/protocolrestjson/model/ListCopierTest.java similarity index 94% rename from test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/codegenerationjsonrpccustomized/model/ListCopierTest.java rename to test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/protocolrestjson/model/ListCopierTest.java index 0e66060e0824..feaf6793d43f 100644 --- a/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/codegenerationjsonrpccustomized/model/ListCopierTest.java +++ b/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/protocolrestjson/model/ListCopierTest.java @@ -13,7 +13,7 @@ * permissions and limitations under the License. */ -package software.amazon.awssdk.services.codegenerationjsonrpccustomized.model; +package software.amazon.awssdk.services.protocolrestjson.model; import static org.assertj.core.api.Assertions.assertThat; diff --git a/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/codegenerationjsonrpccustomized/model/MapCopierTest.java b/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/protocolrestjson/model/MapCopierTest.java similarity index 93% rename from test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/codegenerationjsonrpccustomized/model/MapCopierTest.java rename to test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/protocolrestjson/model/MapCopierTest.java index 21b49b13fe87..98102618dad9 100644 --- a/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/codegenerationjsonrpccustomized/model/MapCopierTest.java +++ b/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/protocolrestjson/model/MapCopierTest.java @@ -13,8 +13,9 @@ * permissions and limitations under the License. */ -package software.amazon.awssdk.services.codegenerationjsonrpccustomized.model; +package software.amazon.awssdk.services.protocolrestjson.model; +import org.assertj.core.api.Assertions; import org.junit.Test; import software.amazon.awssdk.core.util.DefaultSdkAutoConstructMap; import software.amazon.awssdk.core.util.SdkAutoConstructMap; @@ -69,7 +70,7 @@ public void unknownEnumKeyNotAddedToCopiedMap() { Map mapOfEnumToEnum = new HashMap<>(); mapOfEnumToEnum.put("foo", "bar"); Map copy = MapOfEnumToEnumCopier.copyStringToEnum(mapOfEnumToEnum); - assertThat(copy).isEmpty(); + Assertions.assertThat(copy).isEmpty(); } @Test @@ -77,6 +78,6 @@ public void knownEnumKeyAddedToCopiedMap() { Map mapOfEnumToEnum = new HashMap<>(); mapOfEnumToEnum.put(EnumType.ENUM_VALUE1.toString(), "bar"); Map copy = MapOfEnumToEnumCopier.copyStringToEnum(mapOfEnumToEnum); - assertThat(copy).hasSize(1); + Assertions.assertThat(copy).hasSize(1); } } diff --git a/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/codegenerationjsonrpccustomized/model/ModelBuilderListMemberTest.java b/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/protocolrestjson/model/ModelBuilderListMemberTest.java similarity index 96% rename from test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/codegenerationjsonrpccustomized/model/ModelBuilderListMemberTest.java rename to test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/protocolrestjson/model/ModelBuilderListMemberTest.java index 333f60f71ff5..64281a760651 100644 --- a/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/codegenerationjsonrpccustomized/model/ModelBuilderListMemberTest.java +++ b/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/protocolrestjson/model/ModelBuilderListMemberTest.java @@ -13,7 +13,7 @@ * permissions and limitations under the License. */ -package software.amazon.awssdk.services.codegenerationjsonrpccustomized.model; +package software.amazon.awssdk.services.protocolrestjson.model; import static org.assertj.core.api.Assertions.assertThat; diff --git a/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/codegenerationjsonrpccustomized/model/ModelBuilderMapMemberTest.java b/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/protocolrestjson/model/ModelBuilderMapMemberTest.java similarity index 96% rename from test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/codegenerationjsonrpccustomized/model/ModelBuilderMapMemberTest.java rename to test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/protocolrestjson/model/ModelBuilderMapMemberTest.java index 232e1ec3b9b5..7a91e323e39c 100644 --- a/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/codegenerationjsonrpccustomized/model/ModelBuilderMapMemberTest.java +++ b/test/codegen-generated-classes-test/src/test/java/software/amazon/awssdk/services/protocolrestjson/model/ModelBuilderMapMemberTest.java @@ -13,7 +13,7 @@ * permissions and limitations under the License. */ -package software.amazon.awssdk.services.codegenerationjsonrpccustomized.model; +package software.amazon.awssdk.services.protocolrestjson.model; import org.junit.Test; import software.amazon.awssdk.core.util.SdkAutoConstructMap; diff --git a/test/protocol-tests/src/main/resources/codegen-resources/query/customization.config b/test/protocol-tests/src/main/resources/codegen-resources/query/customization.config index 8fde3b55e355..aa386944c5d6 100644 --- a/test/protocol-tests/src/main/resources/codegen-resources/query/customization.config +++ b/test/protocol-tests/src/main/resources/codegen-resources/query/customization.config @@ -10,7 +10,5 @@ "queryParamWithoutValue", "idempotentOperation", "queryTypes" - ], - // The tests expect non auto construct lists - "useAutoConstructList": false + ] } From c311f02c1aaf96286332570b50423a0e07f4524c Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 28 Oct 2020 18:09:06 +0000 Subject: [PATCH 082/339] Amazon Elastic Compute Cloud Update: AWS Nitro Enclaves general availability. Added support to RunInstances for creating enclave-enabled EC2 instances. New APIs to associate an ACM certificate with an IAM role, for enclave consumption. --- ...ure-AmazonElasticComputeCloud-0d9947c.json | 6 + .../codegen-resources/service-2.json | 220 +++++++++++++++++- 2 files changed, 224 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-0d9947c.json diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-0d9947c.json b/.changes/next-release/feature-AmazonElasticComputeCloud-0d9947c.json new file mode 100644 index 000000000000..20a92523a2f6 --- /dev/null +++ b/.changes/next-release/feature-AmazonElasticComputeCloud-0d9947c.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "AWS Nitro Enclaves general availability. Added support to RunInstances for creating enclave-enabled EC2 instances. New APIs to associate an ACM certificate with an IAM role, for enclave consumption." +} diff --git a/services/ec2/src/main/resources/codegen-resources/service-2.json b/services/ec2/src/main/resources/codegen-resources/service-2.json index 4290d00a7fa8..2ade6cc8763f 100755 --- a/services/ec2/src/main/resources/codegen-resources/service-2.json +++ b/services/ec2/src/main/resources/codegen-resources/service-2.json @@ -151,6 +151,16 @@ "input":{"shape":"AssociateDhcpOptionsRequest"}, "documentation":"

Associates a set of DHCP options (that you've previously created) with the specified VPC, or associates no DHCP options with the VPC.

After you associate the options with the VPC, any existing instances and all new instances that you launch in that VPC use the options. You don't need to restart or relaunch the instances. They automatically pick up the changes within a few hours, depending on how frequently the instance renews its DHCP lease. You can explicitly renew the lease using the operating system on the instance.

For more information, see DHCP Options Sets in the Amazon Virtual Private Cloud User Guide.

" }, + "AssociateEnclaveCertificateIamRole":{ + "name":"AssociateEnclaveCertificateIamRole", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"AssociateEnclaveCertificateIamRoleRequest"}, + "output":{"shape":"AssociateEnclaveCertificateIamRoleResult"}, + "documentation":"

Associates an AWS Identity and Access Management (IAM) role with an AWS Certificate Manager (ACM) certificate. This enables the certificate to be used by the ACM for Nitro Enclaves application inside an enclave. For more information, see AWS Certificate Manager for Nitro Enclaves in the Amazon Elastic Compute Cloud User Guide.

When the IAM role is associated with the ACM certificate, places the certificate, certificate chain, and encrypted private key in an Amazon S3 bucket that only the associated IAM role can access. The private key of the certificate is encrypted with an AWS-managed KMS key that has an attached attestation-based key policy.

To enable the IAM role to access the Amazon S3 object, you must grant it permission to call s3:GetObject on the Amazon S3 bucket returned by the command. To enable the IAM role to access the AWS KMS key, you must grant it permission to call kms:Decrypt on AWS KMS key returned by the command. For more information, see Grant the role permission to access the certificate and encryption key in the Amazon Elastic Compute Cloud User Guide.

" + }, "AssociateIamInstanceProfile":{ "name":"AssociateIamInstanceProfile", "http":{ @@ -2777,6 +2787,16 @@ "output":{"shape":"DisassociateClientVpnTargetNetworkResult"}, "documentation":"

Disassociates a target network from the specified Client VPN endpoint. When you disassociate the last target network from a Client VPN, the following happens:

  • The route that was automatically added for the VPC is deleted

  • All active client connections are terminated

  • New client connections are disallowed

  • The Client VPN endpoint's status changes to pending-associate

" }, + "DisassociateEnclaveCertificateIamRole":{ + "name":"DisassociateEnclaveCertificateIamRole", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DisassociateEnclaveCertificateIamRoleRequest"}, + "output":{"shape":"DisassociateEnclaveCertificateIamRoleResult"}, + "documentation":"

Disassociates an IAM role from an AWS Certificate Manager (ACM) certificate. Disassociating an IAM role from an ACM certificate removes the Amazon S3 object that contains the certificate, certificate chain, and encrypted private key from the Amazon S3 bucket. It also revokes the IAM role's permission to use the AWS Key Management Service (KMS) key used to encrypt the private key. This effectively revokes the role's permission to use the certificate.

" + }, "DisassociateIamInstanceProfile":{ "name":"DisassociateIamInstanceProfile", "http":{ @@ -2944,6 +2964,16 @@ "output":{"shape":"ExportTransitGatewayRoutesResult"}, "documentation":"

Exports routes from the specified transit gateway route table to the specified S3 bucket. By default, all routes are exported. Alternatively, you can filter by CIDR range.

The routes are saved to the specified bucket in a JSON file. For more information, see Export Route Tables to Amazon S3 in Transit Gateways.

" }, + "GetAssociatedEnclaveCertificateIamRoles":{ + "name":"GetAssociatedEnclaveCertificateIamRoles", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetAssociatedEnclaveCertificateIamRolesRequest"}, + "output":{"shape":"GetAssociatedEnclaveCertificateIamRolesResult"}, + "documentation":"

Returns the IAM roles that are associated with the specified AWS Certificate Manager (ACM) certificate. It also returns the name of the Amazon S3 bucket and the Amazon S3 object key where the certificate, certificate chain, and encrypted private key bundle are stored, and the ARN of the AWS Key Management Service (KMS) key that's used to encrypt the private key.

" + }, "GetAssociatedIpv6PoolCidrs":{ "name":"GetAssociatedIpv6PoolCidrs", "http":{ @@ -4981,6 +5011,43 @@ } } }, + "AssociateEnclaveCertificateIamRoleRequest":{ + "type":"structure", + "members":{ + "CertificateArn":{ + "shape":"ResourceArn", + "documentation":"

The ARN of the ACM certificate with which to associate the IAM role.

" + }, + "RoleArn":{ + "shape":"ResourceArn", + "documentation":"

The ARN of the IAM role to associate with the ACM certificate. You can associate up to 16 IAM roles with an ACM certificate.

" + }, + "DryRun":{ + "shape":"Boolean", + "documentation":"

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

" + } + } + }, + "AssociateEnclaveCertificateIamRoleResult":{ + "type":"structure", + "members":{ + "CertificateS3BucketName":{ + "shape":"String", + "documentation":"

The name of the Amazon S3 bucket to which the certificate was uploaded.

", + "locationName":"certificateS3BucketName" + }, + "CertificateS3ObjectKey":{ + "shape":"String", + "documentation":"

The Amazon S3 object key where the certificate, certificate chain, and encrypted private key bundle are stored. The object key is formatted as follows: certificate_arn/role_arn.

", + "locationName":"certificateS3ObjectKey" + }, + "EncryptionKmsKeyId":{ + "shape":"String", + "documentation":"

The ID of the AWS Key Management Service (KMS) key used to encrypt the private key of the certificate.

", + "locationName":"encryptionKmsKeyId" + } + } + }, "AssociateIamInstanceProfileRequest":{ "type":"structure", "required":[ @@ -5200,6 +5267,39 @@ "type":"string", "enum":["vpc"] }, + "AssociatedRole":{ + "type":"structure", + "members":{ + "AssociatedRoleArn":{ + "shape":"ResourceArn", + "documentation":"

The ARN of the associated IAM role.

", + "locationName":"associatedRoleArn" + }, + "CertificateS3BucketName":{ + "shape":"String", + "documentation":"

The name of the Amazon S3 bucket in which the Amazon S3 object is stored.

", + "locationName":"certificateS3BucketName" + }, + "CertificateS3ObjectKey":{ + "shape":"String", + "documentation":"

The key of the Amazon S3 object ey where the certificate, certificate chain, and encrypted private key bundle is stored. The object key is formated as follows: certificate_arn/role_arn.

", + "locationName":"certificateS3ObjectKey" + }, + "EncryptionKmsKeyId":{ + "shape":"String", + "documentation":"

The ID of the KMS key used to encrypt the private key.

", + "locationName":"encryptionKmsKeyId" + } + }, + "documentation":"

Information about the associated IAM roles.

" + }, + "AssociatedRolesList":{ + "type":"list", + "member":{ + "shape":"AssociatedRole", + "locationName":"item" + } + }, "AssociatedTargetNetwork":{ "type":"structure", "members":{ @@ -17634,6 +17734,33 @@ } } }, + "DisassociateEnclaveCertificateIamRoleRequest":{ + "type":"structure", + "members":{ + "CertificateArn":{ + "shape":"ResourceArn", + "documentation":"

The ARN of the ACM certificate from which to disassociate the IAM role.

" + }, + "RoleArn":{ + "shape":"ResourceArn", + "documentation":"

The ARN of the IAM role to disassociate.

" + }, + "DryRun":{ + "shape":"Boolean", + "documentation":"

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

" + } + } + }, + "DisassociateEnclaveCertificateIamRoleResult":{ + "type":"structure", + "members":{ + "Return":{ + "shape":"Boolean", + "documentation":"

Returns true if the request succeeds; otherwise, it returns an error.

", + "locationName":"return" + } + } + }, "DisassociateIamInstanceProfileRequest":{ "type":"structure", "required":["AssociationId"], @@ -18711,6 +18838,27 @@ } } }, + "EnclaveOptions":{ + "type":"structure", + "members":{ + "Enabled":{ + "shape":"Boolean", + "documentation":"

If this parameter is set to true, the instance is enabled for AWS Nitro Enclaves; otherwise, it is not enabled for AWS Nitro Enclaves.

", + "locationName":"enabled" + } + }, + "documentation":"

Indicates whether the instance is enabled for AWS Nitro Enclaves.

" + }, + "EnclaveOptionsRequest":{ + "type":"structure", + "members":{ + "Enabled":{ + "shape":"Boolean", + "documentation":"

To enable the instance for AWS Nitro Enclaves, set this parameter to true.

" + } + }, + "documentation":"

Indicates whether the instance is enabled for AWS Nitro Enclaves. For more information, see AWS Nitro Enclaves in the Amazon Elastic Compute Cloud User Guide.

" + }, "EndDateType":{ "type":"string", "enum":[ @@ -19960,6 +20108,29 @@ "type":"string", "enum":["ipsec.1"] }, + "GetAssociatedEnclaveCertificateIamRolesRequest":{ + "type":"structure", + "members":{ + "CertificateArn":{ + "shape":"ResourceArn", + "documentation":"

The ARN of the ACM certificate for which to view the associated IAM roles, encryption keys, and Amazon S3 object information.

" + }, + "DryRun":{ + "shape":"Boolean", + "documentation":"

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

" + } + } + }, + "GetAssociatedEnclaveCertificateIamRolesResult":{ + "type":"structure", + "members":{ + "AssociatedRoles":{ + "shape":"AssociatedRolesList", + "documentation":"

Information about the associated IAM roles.

", + "locationName":"associatedRoleSet" + } + } + }, "GetAssociatedIpv6PoolCidrsRequest":{ "type":"structure", "required":["PoolId"], @@ -22691,6 +22862,11 @@ "shape":"InstanceMetadataOptionsResponse", "documentation":"

The metadata options for the instance.

", "locationName":"metadataOptions" + }, + "EnclaveOptions":{ + "shape":"EnclaveOptions", + "documentation":"

Indicates whether the instance is enabled for AWS Nitro Enclaves.

", + "locationName":"enclaveOptions" } }, "documentation":"

Describes an instance.

" @@ -22718,6 +22894,11 @@ "documentation":"

Indicates whether enhanced networking with ENA is enabled.

", "locationName":"enaSupport" }, + "EnclaveOptions":{ + "shape":"EnclaveOptions", + "documentation":"

To enable the instance for AWS Nitro Enclaves, set this parameter to true; otherwise, set it to false.

", + "locationName":"enclaveOptions" + }, "EbsOptimized":{ "shape":"AttributeBooleanValue", "documentation":"

Indicates whether the instance is optimized for Amazon EBS I/O.

", @@ -22792,7 +22973,8 @@ "groupSet", "ebsOptimized", "sriovNetSupport", - "enaSupport" + "enaSupport", + "enclaveOptions" ] }, "InstanceBlockDeviceMapping":{ @@ -25051,6 +25233,27 @@ "locationName":"item" } }, + "LaunchTemplateEnclaveOptions":{ + "type":"structure", + "members":{ + "Enabled":{ + "shape":"Boolean", + "documentation":"

If this parameter is set to true, the instance is enabled for AWS Nitro Enclaves; otherwise, it is not enabled for AWS Nitro Enclaves.

", + "locationName":"enabled" + } + }, + "documentation":"

Indicates whether the instance is enabled for AWS Nitro Enclaves.

" + }, + "LaunchTemplateEnclaveOptionsRequest":{ + "type":"structure", + "members":{ + "Enabled":{ + "shape":"Boolean", + "documentation":"

To enable the instance for AWS Nitro Enclaves, set this parameter to true.

" + } + }, + "documentation":"

Indicates whether the instance is enabled for AWS Nitro Enclaves. For more information, see AWS Nitro Enclaves in the Amazon Elastic Compute Cloud User Guide.

" + }, "LaunchTemplateErrorCode":{ "type":"string", "enum":[ @@ -31352,6 +31555,10 @@ "MetadataOptions":{ "shape":"LaunchTemplateInstanceMetadataOptionsRequest", "documentation":"

The metadata options for the instance. For more information, see Instance Metadata and User Data in the Amazon Elastic Compute Cloud User Guide.

" + }, + "EnclaveOptions":{ + "shape":"LaunchTemplateEnclaveOptionsRequest", + "documentation":"

Indicates whether the instance is enabled for AWS Nitro Enclaves. For more information, see AWS Nitro Enclaves in the Amazon Elastic Compute Cloud User Guide.

You can't enable AWS Nitro Enclaves and hibernation on the same instance. For more information about AWS Nitro Enclaves requirements, see AWS Nitro Enclaves in the Amazon Elastic Compute Cloud User Guide.

" } }, "documentation":"

The information to include in the launch template.

" @@ -32475,6 +32682,11 @@ "shape":"LaunchTemplateInstanceMetadataOptions", "documentation":"

The metadata options for the instance. For more information, see Instance Metadata and User Data in the Amazon Elastic Compute Cloud User Guide.

", "locationName":"metadataOptions" + }, + "EnclaveOptions":{ + "shape":"LaunchTemplateEnclaveOptions", + "documentation":"

Indicates whether the instance is enabled for AWS Nitro Enclaves.

", + "locationName":"enclaveOptions" } }, "documentation":"

The information for a launch template.

" @@ -33136,7 +33348,7 @@ }, "HibernationOptions":{ "shape":"HibernationOptionsRequest", - "documentation":"

Indicates whether an instance is enabled for hibernation. For more information, see Hibernate your instance in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

Indicates whether an instance is enabled for hibernation. For more information, see Hibernate your instance in the Amazon Elastic Compute Cloud User Guide.

You can't enable hibernation and AWS Nitro Enclaves on the same instance.

" }, "LicenseSpecifications":{ "shape":"LicenseSpecificationListRequest", @@ -33146,6 +33358,10 @@ "MetadataOptions":{ "shape":"InstanceMetadataOptionsRequest", "documentation":"

The metadata options for the instance. For more information, see Instance metadata and user data.

" + }, + "EnclaveOptions":{ + "shape":"EnclaveOptionsRequest", + "documentation":"

Indicates whether the instance is enabled for AWS Nitro Enclaves. For more information, see AWS Nitro Enclaves in the Amazon Elastic Compute Cloud User Guide.

You can't enable AWS Nitro Enclaves and hibernation on the same instance. For more information about AWS Nitro Enclaves requirements, see AWS Nitro Enclaves in the Amazon Elastic Compute Cloud User Guide.

" } } }, From 6170683e1729429ce2ba556e1dc017cd976af549 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 28 Oct 2020 18:09:17 +0000 Subject: [PATCH 083/339] AWS IoT Update: This release adds support for GG-Managed Job Namespace --- .../next-release/feature-AWSIoT-e77a605.json | 6 +++ .../codegen-resources/service-2.json | 53 ++++++++++++++++++- 2 files changed, 57 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AWSIoT-e77a605.json diff --git a/.changes/next-release/feature-AWSIoT-e77a605.json b/.changes/next-release/feature-AWSIoT-e77a605.json new file mode 100644 index 000000000000..49699af4134c --- /dev/null +++ b/.changes/next-release/feature-AWSIoT-e77a605.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS IoT", + "contributor": "", + "description": "This release adds support for GG-Managed Job Namespace" +} diff --git a/services/iot/src/main/resources/codegen-resources/service-2.json b/services/iot/src/main/resources/codegen-resources/service-2.json index 31325322331f..9d7cdff4ab0c 100644 --- a/services/iot/src/main/resources/codegen-resources/service-2.json +++ b/services/iot/src/main/resources/codegen-resources/service-2.json @@ -4082,6 +4082,12 @@ "comment":{ "shape":"Comment", "documentation":"

An optional comment string describing why the job was associated with the targets.

" + }, + "namespaceId":{ + "shape":"NamespaceId", + "documentation":"

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, AWS IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

", + "location":"querystring", + "locationName":"namespaceId" } } }, @@ -6042,6 +6048,10 @@ "tags":{ "shape":"TagList", "documentation":"

Metadata which can be used to manage the job.

" + }, + "namespaceId":{ + "shape":"NamespaceId", + "documentation":"

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, AWS IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

" } } }, @@ -7076,6 +7086,12 @@ "documentation":"

(Optional) When true, you can delete a job execution which is \"IN_PROGRESS\". Otherwise, you can only delete a job execution which is in a terminal state (\"SUCCEEDED\", \"FAILED\", \"REJECTED\", \"REMOVED\" or \"CANCELED\") or an exception will occur. The default is false.

Deleting a job execution which is \"IN_PROGRESS\", will cause the device to be unable to access job information or update the job execution status. Use caution and ensure that the device is able to recover to a valid state.

", "location":"querystring", "locationName":"force" + }, + "namespaceId":{ + "shape":"NamespaceId", + "documentation":"

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, AWS IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

", + "location":"querystring", + "locationName":"namespaceId" } } }, @@ -7094,6 +7110,12 @@ "documentation":"

(Optional) When true, you can delete a job which is \"IN_PROGRESS\". Otherwise, you can only delete a job which is in a terminal state (\"COMPLETED\" or \"CANCELED\") or an exception will occur. The default is false.

Deleting a job which is \"IN_PROGRESS\", will cause a device which is executing the job to be unable to access job information or update the job execution status. Use caution and ensure that each device executing a job which is deleted is able to recover to a valid state.

", "location":"querystring", "locationName":"force" + }, + "namespaceId":{ + "shape":"NamespaceId", + "documentation":"

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, AWS IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

", + "location":"querystring", + "locationName":"namespaceId" } } }, @@ -8597,9 +8619,8 @@ }, "DetailsValue":{ "type":"string", - "max":1024, "min":1, - "pattern":"[^\\p{C}]*+" + "pattern":"[^\\p{C}]+" }, "DeviceCertificateUpdateAction":{ "type":"string", @@ -9886,6 +9907,10 @@ "timeoutConfig":{ "shape":"TimeoutConfig", "documentation":"

Specifies the amount of time each device has to finish its execution of the job. A timer is started when the job execution status is set to IN_PROGRESS. If the job execution status is not set to another terminal state before the timer expires, it will be automatically set to TIMED_OUT.

" + }, + "namespaceId":{ + "shape":"NamespaceId", + "documentation":"

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, AWS IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

" } }, "documentation":"

The Job object contains details about a job.

" @@ -10939,6 +10964,12 @@ "location":"querystring", "locationName":"status" }, + "namespaceId":{ + "shape":"NamespaceId", + "documentation":"

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, AWS IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

", + "location":"querystring", + "locationName":"namespaceId" + }, "maxResults":{ "shape":"LaserMaxResults", "documentation":"

The maximum number of results to be returned per request.

", @@ -11004,6 +11035,12 @@ "documentation":"

A filter that limits the returned jobs to those for the specified group.

", "location":"querystring", "locationName":"thingGroupId" + }, + "namespaceId":{ + "shape":"NamespaceId", + "documentation":"

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, AWS IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

", + "location":"querystring", + "locationName":"namespaceId" } } }, @@ -12512,6 +12549,12 @@ "max":65535, "min":1 }, + "NamespaceId":{ + "type":"string", + "max":64, + "min":1, + "pattern":"[a-zA-Z0-9_-]+" + }, "NextToken":{"type":"string"}, "NonCompliantChecksCount":{"type":"integer"}, "NonCompliantResource":{ @@ -15943,6 +15986,12 @@ "timeoutConfig":{ "shape":"TimeoutConfig", "documentation":"

Specifies the amount of time each device has to finish its execution of the job. The timer is started when the job execution status is set to IN_PROGRESS. If the job execution status is not set to another terminal state before the time expires, it will be automatically set to TIMED_OUT.

" + }, + "namespaceId":{ + "shape":"NamespaceId", + "documentation":"

The namespace used to indicate that a job is a customer-managed job.

When you specify a value for this parameter, AWS IoT Core sends jobs notifications to MQTT topics that contain the value in the following format.

$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/

The namespaceId feature is in public preview.

", + "location":"querystring", + "locationName":"namespaceId" } } }, From 1b2c07e6ffe8525966455f3af9c56da65b21c619 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 28 Oct 2020 18:09:37 +0000 Subject: [PATCH 084/339] Amazon WorkMail Update: Documentation update for Amazon WorkMail --- .changes/next-release/feature-AmazonWorkMail-25f372c.json | 6 ++++++ .../src/main/resources/codegen-resources/service-2.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AmazonWorkMail-25f372c.json diff --git a/.changes/next-release/feature-AmazonWorkMail-25f372c.json b/.changes/next-release/feature-AmazonWorkMail-25f372c.json new file mode 100644 index 000000000000..004560d28665 --- /dev/null +++ b/.changes/next-release/feature-AmazonWorkMail-25f372c.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon WorkMail", + "contributor": "", + "description": "Documentation update for Amazon WorkMail" +} diff --git a/services/workmail/src/main/resources/codegen-resources/service-2.json b/services/workmail/src/main/resources/codegen-resources/service-2.json index 4714df2382e0..affbfdcbdfe0 100644 --- a/services/workmail/src/main/resources/codegen-resources/service-2.json +++ b/services/workmail/src/main/resources/codegen-resources/service-2.json @@ -1230,7 +1230,7 @@ }, "Name":{ "shape":"UserName", - "documentation":"

The name for the new user. Simple AD or AD Connector user names have a maximum length of 20. All others have a maximum length of 64.

" + "documentation":"

The name for the new user. WorkMail directory user names have a maximum length of 64. All others have a maximum length of 20.

" }, "DisplayName":{ "shape":"String", From 447c12e4acf83a0da3d661380058dc7468f3779b Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 28 Oct 2020 18:10:39 +0000 Subject: [PATCH 085/339] Updated endpoints.json. --- .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json | 6 ++++++ .../amazon/awssdk/regions/internal/region/endpoints.json | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json new file mode 100644 index 000000000000..ae3f84993e9e --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." +} diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json index 62f011400bb9..dc6d7d824639 100644 --- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json +++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json @@ -5237,6 +5237,12 @@ "eu-west-3" : { }, "me-south-1" : { }, "sa-east-1" : { }, + "servicediscovery-fips" : { + "credentialScope" : { + "region" : "ca-central-1" + }, + "hostname" : "servicediscovery-fips.ca-central-1.amazonaws.com" + }, "us-east-1" : { }, "us-east-2" : { }, "us-west-1" : { }, From effb59f3ae089848e242463915d63d5861740fa8 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 28 Oct 2020 18:11:09 +0000 Subject: [PATCH 086/339] Release 2.15.17. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.17.json | 42 +++++++++++++++++++ .../bugfix-AWSSDKforJavav2-0e7afb0.json | 5 --- .../bugfix-AWSSDKforJavav2-267da1c.json | 5 --- .../next-release/feature-AWSIoT-e77a605.json | 6 --- .../feature-AWSSDKforJavav2-bedacd4.json | 6 --- ...ure-AmazonElasticComputeCloud-0d9947c.json | 6 --- .../feature-AmazonWorkMail-25f372c.json | 6 --- CHANGELOG.md | 21 ++++++++++ README.md | 8 ++-- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- .../serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 289 files changed, 347 insertions(+), 318 deletions(-) create mode 100644 .changes/2.15.17.json delete mode 100644 .changes/next-release/bugfix-AWSSDKforJavav2-0e7afb0.json delete mode 100644 .changes/next-release/bugfix-AWSSDKforJavav2-267da1c.json delete mode 100644 .changes/next-release/feature-AWSIoT-e77a605.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json delete mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-0d9947c.json delete mode 100644 .changes/next-release/feature-AmazonWorkMail-25f372c.json diff --git a/.changes/2.15.17.json b/.changes/2.15.17.json new file mode 100644 index 000000000000..bd993a2fa2ee --- /dev/null +++ b/.changes/2.15.17.json @@ -0,0 +1,42 @@ +{ + "version": "2.15.17", + "date": "2020-10-28", + "entries": [ + { + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." + }, + { + "type": "feature", + "category": "AWS IoT", + "contributor": "", + "description": "This release adds support for GG-Managed Job Namespace" + }, + { + "type": "feature", + "category": "Amazon WorkMail", + "contributor": "", + "description": "Documentation update for Amazon WorkMail" + }, + { + "type": "bugfix", + "category": "AWS SDK for Java v2", + "contributor": null, + "description": "Fixed an issue where marshalling of a modeled object was not honoring the has* method on a list/map." + }, + { + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "AWS Nitro Enclaves general availability. Added support to RunInstances for creating enclave-enabled EC2 instances. New APIs to associate an ACM certificate with an IAM role, for enclave consumption." + }, + { + "type": "bugfix", + "category": "AWS SDK for Java v2", + "contributor": null, + "description": "Fixed an issue where the toString/equals/hashCode on a modeled object were not honoring the has* methods for lists and maps." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/bugfix-AWSSDKforJavav2-0e7afb0.json b/.changes/next-release/bugfix-AWSSDKforJavav2-0e7afb0.json deleted file mode 100644 index 63821bdc44f2..000000000000 --- a/.changes/next-release/bugfix-AWSSDKforJavav2-0e7afb0.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "bugfix", - "category": "AWS SDK for Java v2", - "description": "Fixed an issue where the toString/equals/hashCode on a modeled object were not honoring the has* methods for lists and maps." -} diff --git a/.changes/next-release/bugfix-AWSSDKforJavav2-267da1c.json b/.changes/next-release/bugfix-AWSSDKforJavav2-267da1c.json deleted file mode 100644 index 80820e7966a2..000000000000 --- a/.changes/next-release/bugfix-AWSSDKforJavav2-267da1c.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "bugfix", - "category": "AWS SDK for Java v2", - "description": "Fixed an issue where marshalling of a modeled object was not honoring the has* method on a list/map." -} diff --git a/.changes/next-release/feature-AWSIoT-e77a605.json b/.changes/next-release/feature-AWSIoT-e77a605.json deleted file mode 100644 index 49699af4134c..000000000000 --- a/.changes/next-release/feature-AWSIoT-e77a605.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS IoT", - "contributor": "", - "description": "This release adds support for GG-Managed Job Namespace" -} diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json deleted file mode 100644 index ae3f84993e9e..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS SDK for Java v2", - "contributor": "", - "description": "Updated service endpoint metadata." -} diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-0d9947c.json b/.changes/next-release/feature-AmazonElasticComputeCloud-0d9947c.json deleted file mode 100644 index 20a92523a2f6..000000000000 --- a/.changes/next-release/feature-AmazonElasticComputeCloud-0d9947c.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Elastic Compute Cloud", - "contributor": "", - "description": "AWS Nitro Enclaves general availability. Added support to RunInstances for creating enclave-enabled EC2 instances. New APIs to associate an ACM certificate with an IAM role, for enclave consumption." -} diff --git a/.changes/next-release/feature-AmazonWorkMail-25f372c.json b/.changes/next-release/feature-AmazonWorkMail-25f372c.json deleted file mode 100644 index 004560d28665..000000000000 --- a/.changes/next-release/feature-AmazonWorkMail-25f372c.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon WorkMail", - "contributor": "", - "description": "Documentation update for Amazon WorkMail" -} diff --git a/CHANGELOG.md b/CHANGELOG.md index 4eee97e3ac05..62358bb8f184 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +# __2.15.17__ __2020-10-28__ +## __AWS IoT__ + - ### Features + - This release adds support for GG-Managed Job Namespace + +## __AWS SDK for Java v2__ + - ### Features + - Updated service endpoint metadata. + + - ### Bugfixes + - Fixed an issue where marshalling of a modeled object was not honoring the has* method on a list/map. + - Fixed an issue where the toString/equals/hashCode on a modeled object were not honoring the has* methods for lists and maps. + +## __Amazon Elastic Compute Cloud__ + - ### Features + - AWS Nitro Enclaves general availability. Added support to RunInstances for creating enclave-enabled EC2 instances. New APIs to associate an ACM certificate with an IAM role, for enclave consumption. + +## __Amazon WorkMail__ + - ### Features + - Documentation update for Amazon WorkMail + # __2.15.16__ __2020-10-27__ ## __AWS Glue__ - ### Features diff --git a/README.md b/README.md index e35f4729efbb..087deb1ce506 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.16 + 2.15.17 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.16 + 2.15.17 software.amazon.awssdk s3 - 2.15.16 + 2.15.17 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.16 + 2.15.17 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 1daa6e34e730..13bef5e7c590 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index c04f1f6e6171..c3ca805ad709 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index d1bcefd2420c..47d2c191360f 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.15.17-SNAPSHOT + 2.15.17 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index adc58e6918c8..372ef694e9d4 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index cc2ae372069f..5b7c5602af59 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.17-SNAPSHOT + 2.15.17 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 3ac9212602c4..0340967b2978 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.17-SNAPSHOT + 2.15.17 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index c3135b6c4bdf..6c5975e76ea4 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.15.17-SNAPSHOT + 2.15.17 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index a6fdcddf7595..ab44ca33ba8e 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.17-SNAPSHOT + 2.15.17 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index b08e2768006d..393c01b459ab 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.15.17-SNAPSHOT + 2.15.17 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 422c55d0a6db..8d4f275fe997 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.17-SNAPSHOT + 2.15.17 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 0daef6d50357..6c0e6b4dc129 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 376cf7f7bbb8..ec95f41e4d00 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 40fc0b3265f5..ffa8e4fd53c6 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.17-SNAPSHOT + 2.15.17 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index b382a6be06d2..9823c7a76ce5 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.17-SNAPSHOT + 2.15.17 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 7a8877150576..9956b8a10bbd 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 413c08d8337e..679d30837a29 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index f3900e0644d0..84f1954e954f 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.17-SNAPSHOT + 2.15.17 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index bef539b44c78..621306ccd391 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.15.17-SNAPSHOT + 2.15.17 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 296c6146c506..f275962f79de 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index b7b7877b2966..3bf12fb63864 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.15.17-SNAPSHOT + 2.15.17 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 0a075024bb64..4883e1e3edcd 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.15.17-SNAPSHOT + 2.15.17 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index d36d3cf1e723..96404ad3acbe 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.15.17-SNAPSHOT + 2.15.17 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 39a68b427347..04a6732c29c4 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 0bf8dc9a6e77..002df5312c0f 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 4cf55e8c353c..666731e5a89b 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.17-SNAPSHOT + 2.15.17 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 5e87d286f8f8..10d21363573a 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.17-SNAPSHOT + 2.15.17 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index d6b1a8df07bc..2449989bf4fd 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.15.17-SNAPSHOT + 2.15.17 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 1a350123a9d1..498bc8bac909 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.15.17-SNAPSHOT + 2.15.17 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 2023726699e2..437adabbcdc2 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.15.17-SNAPSHOT + 2.15.17 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 286db177f6db..44208a3ea433 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.15.17-SNAPSHOT + 2.15.17 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 6c2053bfd9a8..1df7cb1b70e3 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 9496be8422e0..7670a954fe8c 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.15.17-SNAPSHOT + 2.15.17 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 8192503c38c6..363299889b07 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.15.17-SNAPSHOT + 2.15.17 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 3f39bc2bafa3..4c0629cee048 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.17-SNAPSHOT + 2.15.17 metric-publishers diff --git a/pom.xml b/pom.xml index 6fdecbc3b34c..12c58cbea1d6 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.17-SNAPSHOT + 2.15.17 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 43a10e35eb8e..d792b02ac142 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.17-SNAPSHOT + 2.15.17 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 3311f30c3883..50876af1f020 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.15.17-SNAPSHOT + 2.15.17 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 25b1de9062cf..5a54162f0db1 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.17-SNAPSHOT + 2.15.17 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index a23230aca41a..b6a0c2d2bbd2 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 01b16482364f..9010116e6b9c 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 5fd742a63f34..56e82845406a 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index df84b5edf79e..a64915b8a61a 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index a819f4a741be..39052f0a8c48 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 145e38fe972d..5fc958046f49 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 8934408dec47..3d02864afced 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index e0b3361076b4..9b34077bac0e 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index b46dad13d5a1..d76dcde5eb4d 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 9173c95b4e8b..9e8060903c30 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index b0e677a71c68..61f8dfd94c98 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 368f48a73487..642543a671c1 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 15ef5e4ddaf3..d3517c237f2f 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 66bbcfa9260e..a46182a53477 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index b1f9f426e2db..42d696df4d62 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index df17940428b5..c12626f86771 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 7f1f2b5b7954..14ec725b3d2b 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index be21e4cb72e1..c1ed314b7155 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 2ca82d3da2b2..b65f7c828448 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 20be502db108..59515db580e0 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 740e754993fc..03b5b75b0601 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 7ba14846e131..4469a6e923d2 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 218f4a7a11b1..6a00fe47edf0 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index e133ea3bc32c..ebe03f620ea6 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 3d49dae29284..ffd8bc6931f4 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 438f87106689..2089acb8a740 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 47e05d851307..0c6a52a57ebe 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 2044d088cdaa..82868c35b4c2 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index cc8cb6169589..4e9fada4db1d 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 9354cef6cbf9..43a0e9a36fc0 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 932a8412b07e..d31ed4af2c28 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index fd4939a501d6..fb40f5a7557f 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index adc81302a18a..3b7c5aa7e465 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 34798179c15b..41b644b8e30c 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 2ec3d5b8343d..60f4bf445b80 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 79505438d3b9..ae62faa63a7b 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 93b184a2be87..ab6fcfd3c2cd 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index e141bb8b9044..9a04e027d38d 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index e1aa82cedc34..6dbdc636cbd8 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index fbaee3c75605..c74a727ab72a 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index e5ae1204b6bd..ea12f7fcf280 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 0e5f6daf47a2..4ceb8e018337 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index a93b1e03422a..4a0a2497a52b 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 83414cf724ae..dcd171a64a63 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 82b94a0fd923..832af218b410 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 972f1d15d730..546fcdbd8c5a 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index bd7d2e9f26a4..1c1de94f2e37 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 153570bad14a..b36ead6f1b4a 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 12f79d501a41..3a7ce00d553b 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 3e6f405199ed..032377d5f36b 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index a4978d2b4bed..a2481dbe39d5 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 34e28ac0c332..45c1ed3e0d9b 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index aa2a71ab047f..3d24ab62d266 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index a9220798706d..1d9d4f5c8681 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index b457bd5cde4c..030dfe4eeac2 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index bac6cf1e6860..be81dcfc0ea3 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index a32b42d04b02..47b63bfb7b97 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 7b3f6daf943c..fb2289c9defc 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index e60f9331ce74..cdd060aac3c1 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 4f45d4c81445..086ffc32b27e 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index bee72f92ca93..f8efe369bc6a 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 9176d1a158a5..afeb40d37722 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index c271697baf17..5dfe06f34368 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 1bf0b96af3d3..49931d6b4406 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index bc6fbe6a7f18..88b587d64de5 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index e7759910c962..d0c4f4ac32e0 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 95522ee4d4fd..e175c4b8e22e 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index b2519dd03c94..5e3e57b01c3d 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index ac50907ee503..b945765984bb 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 56274cefcd38..9d7a818a2824 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index dcd53e43740e..4a847dac89b6 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 13a8d1e477b8..1f4093c2b3f7 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 823982700bb5..d81f7df23e0c 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index c0197bbaa734..6f3694108ef8 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 20ea32fb854f..eddc0e201a2c 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index f44819ed3305..1a7107b81667 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index d53585142d8e..34fcee9440e3 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index e82207f33630..00b1cfccb2dc 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 07d7df294ffc..fa7349ea7b1f 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index f12571222f8d..f872c6f097e8 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index ee3b0fac8823..2c62a953c8af 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 238edc53a54a..768663706827 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index db92a8c55cc4..603091790950 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 7ab8647e4afd..126986e41069 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 1e6d6e1df855..996bc1765ce4 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index e22633712a32..d311f253e264 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index b80725bb8815..4e6310259677 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 506ea8e0692e..26350b103161 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 3d8d0e232d92..2597a4381a42 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 399a2ad78c78..6b53bc31e0be 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 3d2397ef8840..779e06f83b71 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 6752eff24755..f66276ad12fc 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index cdfcbe4b4d31..bb392520fff9 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 15fc812d06be..11304305e68b 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 2568025cade6..377426de7560 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 56b74671ca07..e077d2c28fea 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 6e93840cbcea..3a568d0689e8 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index d82b8f521f07..fd9419f72ded 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 53bce57b0251..2b42e615c695 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 23ee0c427fd8..dbf407c9ec78 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index c76eb779c1e8..c91d5ea42554 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 40325df89d77..6041c67683e1 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index fee55e393303..26a3543ac38f 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 3087b08e3c7a..0d0e0b990cc1 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 159d21d6d25b..6d0eddb33b02 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 636de1ba0f70..23ffd6f670b5 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index bdd4ff36e966..04d4f5a00abe 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 6e1bb6afb770..0532e0c691d0 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index fbb3cac6f814..50cf92c82a01 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index a4e027e34db1..7e353a5417bd 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 142ed0e7702b..f365bddb790c 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 11bfd55bf4b3..9f754175e78d 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 310b51178d49..45836c015e65 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 0f8e4dc2971d..57e839b07b2c 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 4be40d47a7fd..8673f8e18295 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index cbca222fda5f..4db6d03a8212 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 6bca9f23f259..03a7ff1f0fc8 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index a9e352527657..bc89f0437cb1 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index dab4367957f9..32055a6305fa 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index bb07881c2892..25897340e071 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 86c943e5303a..951a18f0dbdf 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index f0c95d3ffdc1..d7ca7c444141 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 4fa25fd0a143..5107ba0483f1 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 5b6daeb2e318..43fee973f7a3 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index e0e984ce0d90..45e49f57e11d 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index c06a209c2398..05fb9806037d 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 560a013b039c..dd21a998f309 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index fc3007b7cd5c..9949c29446d3 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 5502f8741e65..1e700b504be2 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 44c3f662b2b3..7e681e7ed756 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index fe6f19e72ed0..5c3921f60a66 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index dae8af811fb2..8cd9557a53cf 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index d03f5f37ad0e..d8f56a24ef11 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 62664f4c52bc..aba2fb255ce3 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index bd4f9b79896e..8f1eb771bd94 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 63b984786a50..bfb594d93973 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 20621dbf6530..b00de6d8bd74 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 8d7df5392ab1..f486cd927e4d 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 635b72742b38..18b2656e0b13 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index d363221eb588..4ef08ee9b52f 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index e5bd739c83da..8125721fe8f2 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 05cf058bff79..c49e282057d1 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 4e9399b2330e..766097c51e6a 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index ea06b2a956aa..f6dffc691911 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 71365f43af28..13a84a4b9527 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index af1fc0ead4be..28fd40ac286e 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index c6923809ffb3..2bd58371e740 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index afa093b8a55f..6e3742530183 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index d5e186cfe92a..ba493a8ec315 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index c2567eeb3abd..7c222395e587 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index a3605cd97a3a..ade459afe31e 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 270ec17d1d19..066088779da2 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index d41c17cd3066..5d3f7b2d0b47 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 34ddca270788..407ddb820349 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index b6bb2893c1db..fe5527fa2596 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 7bc6c9024f6d..e184a5edb963 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index d2665ca4962c..f1a98f0c23cd 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 0932b8a2f974..ad14cb13c2e7 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 5793963e71e5..14af5e409d1c 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index dee53bcaed17..ad8c58244dd5 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 69cfa90b152d..19b8c00a90ea 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 859cca41a153..b8f721d77474 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 59596e7596cc..f574ba4d9ef7 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 24702925ca0c..c76358dd4d49 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 3b443ae076bf..8aca04c23b7b 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 727b53b2c8d3..f07b82b25a6a 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 5eaa306e7ca4..0110f98301b0 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index db0829ff4342..4785473923d3 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.17-SNAPSHOT + 2.15.17 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 44c0d587fbd3..388a58963d58 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 974345288117..8e9292e57ed9 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 684c2a44a069..92e824b1a67b 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 6d93bc85285e..6364c01448bb 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 5b1b24666d50..48cd9d248884 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index a15f7228295b..02f0d3f0b190 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 4fe71b40c236..b817f86599c6 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 1f15544407a9..468efb7234ef 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 10d32eb98fdc..40bb80d252d8 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index d3b1e711b288..3326253716de 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 623d6716d616..ebca0ed48317 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index d30a42d346c9..8b39a500f406 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 929d4ea6cea6..60c4e861579e 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 7e881624dd42..fd518a841324 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index baf181b992bd..b035176884ac 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index abc039ac507f..3ca5fbcedbe8 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index f99fd79a63b2..7c1475699e91 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 675de6c6f3e0..90c70176147c 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 97a513027587..7192805404c1 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index b8ea97380a51..888eb1488400 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 9e96da548fd7..59560e79eebb 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 053b255aaa4c..88d5ca6420cb 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 836bf2db00f5..375d6316528a 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index e46fc1865502..7107a904251c 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index b39515486227..9b48eb087dab 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 7506ef03233a..78172f268a01 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 2374cf6fa5bc..31ec9a096770 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 940f016f08e3..75d1196736a4 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index ad9ccba04f5f..b3992a2bfe2e 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 19d0cfaf7c37..b9ff12be44b3 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 48a070d350b9..4e3fbda406f4 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 202f46684f62..5a9631ab8ebd 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index c17c2db5fe70..1ed0b20fd8f4 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 1dff0a11d683..d7dc3a3d4038 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index cf7a1ca0dc25..a69de6934a78 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 25ec0f68b572..b0da825fac59 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index e7132262dd8f..b0b65242895a 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index abd75c177056..95e4708f2707 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 919ada055390..1ac8d108e5e5 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 90de3bebc74b..cb14a68dde4d 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 3491a1594fd2..3dcba45a34ae 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index c89023c37fe5..64fc2264c749 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index c0cbafd4416d..18d987ff1dde 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 3a979fcfd596..994209f5a882 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 95b0320f2639..174ec1ca31db 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 76744a8367da..6c1b03b83474 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 19589fafb3c4..96f8ce0c2964 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 4a7c32d66d77..5e8af2960895 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index a7f7c003c1c8..7da303f6af2c 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 195e3bfe9ce5..47f2f10ff1b6 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 02edf0fa145d..609343dd4f12 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 18271aa6ef66..11172a7c3988 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 3508cd1baf66..7107d4c2c6c2 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index a5a2689957ba..58b23fb83173 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 9d9cb5b828fd..71ba83092f02 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index a91715387392..491846fb59f4 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 1af0fd9175ff..a67488681193 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 793b12fd452f..503e5457e6df 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index eaa4ca779398..aad7504f0c27 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index d5c0db62236e..9477f3ca2f6a 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index ab6ca16869c0..f4ee05a2d878 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 158d555c5025..ff5e33dbbffc 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 3cf465cd2a83..57f2aa7f855b 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17-SNAPSHOT + 2.15.17 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 5323159dffc1..b7b7ed08b530 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.15.17-SNAPSHOT + 2.15.17 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index ba37cb9c06b7..2726bd29be12 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.15.17-SNAPSHOT + 2.15.17 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 52e5f81bc15d..5660d53c82e9 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.15.17-SNAPSHOT + 2.15.17 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 7c271fd016fd..4c326fb9b3dd 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.15.17-SNAPSHOT + 2.15.17 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index f64194488b43..50899c1b8099 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.15.17-SNAPSHOT + 2.15.17 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 5d260747b198..82fb39e09079 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.17-SNAPSHOT + 2.15.17 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index ed63dbe48881..cb7f057b5d2a 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.15.17-SNAPSHOT + 2.15.17 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index d37546e29b6e..e454fa4fe42d 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.15.17-SNAPSHOT + 2.15.17 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index bdc00688d6a2..b229add681d8 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.15.17-SNAPSHOT + 2.15.17 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index ac05b45a39b5..95920cf40ddd 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.15.17-SNAPSHOT + 2.15.17 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index cfb879bcb209..c2c5ee6834f9 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.17-SNAPSHOT + 2.15.17 4.0.0 From 90a8b27cde91c526172fd4cdab9f8e1ae1ca7ed4 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 28 Oct 2020 18:36:54 +0000 Subject: [PATCH 087/339] Update to next snapshot version: 2.15.18-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 280 files changed, 280 insertions(+), 280 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 13bef5e7c590..3ddaa4808a78 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index c3ca805ad709..60199f631c74 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 47d2c191360f..ac4e06bb4b6e 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.15.17 + 2.15.18-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 372ef694e9d4..cc9582b5813b 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 5b7c5602af59..023e23c25b96 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.17 + 2.15.18-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 0340967b2978..a64e86656084 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.17 + 2.15.18-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 6c5975e76ea4..cce61ac82c27 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.15.17 + 2.15.18-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index ab44ca33ba8e..93f5c86c1eb2 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.17 + 2.15.18-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 393c01b459ab..4b81c1b0c430 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.15.17 + 2.15.18-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 8d4f275fe997..745dda933059 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.17 + 2.15.18-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 6c0e6b4dc129..314ed4079337 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index ec95f41e4d00..3f22abbeb6a1 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index ffa8e4fd53c6..4fbaa4898240 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.17 + 2.15.18-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 9823c7a76ce5..3ad6735bb8d3 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.17 + 2.15.18-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 9956b8a10bbd..86f740643226 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 679d30837a29..d4328638da0d 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 84f1954e954f..ddba1dfb689d 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.17 + 2.15.18-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 621306ccd391..4769e978c0d0 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.15.17 + 2.15.18-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index f275962f79de..c3e43c7fb545 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 3bf12fb63864..e97b058415d8 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.15.17 + 2.15.18-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 4883e1e3edcd..70b8b081cc4c 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.15.17 + 2.15.18-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 96404ad3acbe..64785930b6de 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.15.17 + 2.15.18-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 04a6732c29c4..ad91016d1eea 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 002df5312c0f..097f755f966f 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 666731e5a89b..4eee18f7769d 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.17 + 2.15.18-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 10d21363573a..e1ba8b31af55 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.17 + 2.15.18-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 2449989bf4fd..ded268541d2e 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.15.17 + 2.15.18-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index 498bc8bac909..bb104beaab80 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.15.17 + 2.15.18-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 437adabbcdc2..484db2f725a5 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.15.17 + 2.15.18-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 44208a3ea433..704f7e6625c8 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.15.17 + 2.15.18-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 1df7cb1b70e3..e5f33950aeb6 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 7670a954fe8c..5adf2c544696 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.15.17 + 2.15.18-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 363299889b07..cf6e963dabc7 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.15.17 + 2.15.18-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 4c0629cee048..ebaaf07d6192 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.17 + 2.15.18-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 12c58cbea1d6..e954275b4a6c 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.17 + 2.15.18-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index d792b02ac142..681b80943a45 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.17 + 2.15.18-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 50876af1f020..f038864a62e1 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.15.17 + 2.15.18-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 5a54162f0db1..908484969a77 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.17 + 2.15.18-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index b6a0c2d2bbd2..b1f26bb89628 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 9010116e6b9c..5f4ffd2540e8 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 56e82845406a..b22004cca1b9 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index a64915b8a61a..f69e28b1a9d2 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 39052f0a8c48..5194882ca2db 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 5fc958046f49..f186112f1bc0 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 3d02864afced..64171e61f175 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 9b34077bac0e..603d04bc6213 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index d76dcde5eb4d..3d9a72a7fee7 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 9e8060903c30..4a4b741c70e6 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 61f8dfd94c98..befae641b8c5 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 642543a671c1..1c9562a12e5c 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index d3517c237f2f..c0d27792a560 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index a46182a53477..74e0d142fa6f 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 42d696df4d62..0561f6c92ed8 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index c12626f86771..309bde8d0e33 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 14ec725b3d2b..82af0c4b1915 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index c1ed314b7155..9b10d83fd180 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index b65f7c828448..0ae150f2c316 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 59515db580e0..02b8654df2cc 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 03b5b75b0601..8380d5f89635 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 4469a6e923d2..730a4a47df5c 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 6a00fe47edf0..4f94bf172ba0 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index ebe03f620ea6..d0a252201008 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index ffd8bc6931f4..4ccfea330f7c 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 2089acb8a740..aea020d9a96d 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 0c6a52a57ebe..76e5d34d11d2 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 82868c35b4c2..1f71be779a29 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 4e9fada4db1d..d1c902477287 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 43a0e9a36fc0..11ab28798ae5 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index d31ed4af2c28..49343fe6e71d 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index fb40f5a7557f..62ac4098d4bc 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 3b7c5aa7e465..1688026d481a 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 41b644b8e30c..e730f1e78fb7 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 60f4bf445b80..bc70bd66740b 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index ae62faa63a7b..8c7a80dd0074 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index ab6fcfd3c2cd..e08c98f26ef3 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 9a04e027d38d..8ce536a94b2c 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 6dbdc636cbd8..42605bd281c4 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index c74a727ab72a..7305c44bec52 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index ea12f7fcf280..0e2bdaf78da8 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 4ceb8e018337..888a607f3833 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 4a0a2497a52b..58235b7f658f 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index dcd171a64a63..25aaa5d8d46b 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 832af218b410..a5475f4433b1 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 546fcdbd8c5a..313abd01f2d8 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 1c1de94f2e37..2f4f3f64c0ea 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index b36ead6f1b4a..e6124fa11c9b 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 3a7ce00d553b..6ce02beccbf8 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 032377d5f36b..0b710fd63e5c 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index a2481dbe39d5..dc8315bdb4d7 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 45c1ed3e0d9b..9b28772a03fe 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 3d24ab62d266..6bc3a3756ca1 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 1d9d4f5c8681..40ad08514fd8 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 030dfe4eeac2..5db04aefb87f 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index be81dcfc0ea3..d553b613344b 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 47b63bfb7b97..a47c3c573b8d 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index fb2289c9defc..faafca36dd37 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index cdd060aac3c1..e57b2ae28202 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 086ffc32b27e..ea8d02bfc212 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index f8efe369bc6a..04d57fad21c8 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index afeb40d37722..9ec31b7470b3 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 5dfe06f34368..ef5c70397ad6 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 49931d6b4406..a30df6fa18fe 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 88b587d64de5..21bc51a667f2 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index d0c4f4ac32e0..fa1b5cf6d644 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index e175c4b8e22e..48e35e3593a1 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 5e3e57b01c3d..8f43abaff16e 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index b945765984bb..e00f14490ce6 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 9d7a818a2824..f6fd0abf8058 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 4a847dac89b6..a7379e5474bc 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 1f4093c2b3f7..69a7af4288a2 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index d81f7df23e0c..7a23745db71a 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 6f3694108ef8..772c414aa0ea 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index eddc0e201a2c..d2960af3dcb3 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 1a7107b81667..ddde0b881f4b 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 34fcee9440e3..75328ac4dfd0 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 00b1cfccb2dc..534bef25acc4 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index fa7349ea7b1f..7afc143dd690 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index f872c6f097e8..fd97f57ea59f 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 2c62a953c8af..b2ae3852d718 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 768663706827..d0745fb92d81 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 603091790950..8aec177d5113 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 126986e41069..cf09ccbd9f79 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 996bc1765ce4..6dac704f57e6 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index d311f253e264..c2813de14182 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 4e6310259677..1aaccd6cfca3 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 26350b103161..d49e78a2527d 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 2597a4381a42..a34bb2118e3f 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 6b53bc31e0be..f6a8875298b9 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 779e06f83b71..88e1c490389b 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index f66276ad12fc..a3b00d6e120f 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index bb392520fff9..2149f01f1e4b 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 11304305e68b..0488fc3f2daa 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 377426de7560..da6be1f6dcd1 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index e077d2c28fea..e2a9820ce063 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 3a568d0689e8..20be8ab859ee 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index fd9419f72ded..60ba8d754e3b 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 2b42e615c695..3eae4a2b9202 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index dbf407c9ec78..0118fc2a465c 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index c91d5ea42554..5af2b8b946f4 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 6041c67683e1..55dc2b3a14d3 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 26a3543ac38f..a926f24473d4 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 0d0e0b990cc1..7e8ba2ece30b 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 6d0eddb33b02..4b719ef6eb8b 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 23ffd6f670b5..f041d18ee488 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 04d4f5a00abe..388c74a12350 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 0532e0c691d0..0a100fd890bb 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 50cf92c82a01..27c9ce5f63c5 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 7e353a5417bd..697112c34207 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index f365bddb790c..e827a13303ba 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 9f754175e78d..eeb5e9b6c44b 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 45836c015e65..2eddb8ca08b5 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 57e839b07b2c..1aecf002d790 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 8673f8e18295..4ad3f3fba25f 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 4db6d03a8212..79b5cd0e6572 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 03a7ff1f0fc8..4c7fed6fb280 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index bc89f0437cb1..6764b6acc15f 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 32055a6305fa..a6d54eb3c125 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 25897340e071..b28cc90c6b2a 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 951a18f0dbdf..de54f3702d2f 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index d7ca7c444141..cb4b7df60602 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 5107ba0483f1..840a75b43282 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 43fee973f7a3..819fb22ba73f 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 45e49f57e11d..d891ed144224 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 05fb9806037d..c0a3534b97fa 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index dd21a998f309..9dd0775e9f64 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 9949c29446d3..8adfbe54a28e 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 1e700b504be2..9f0dc46fa746 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 7e681e7ed756..16e4eb553aaf 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 5c3921f60a66..f2631ddd2752 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 8cd9557a53cf..4be7bd847b80 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index d8f56a24ef11..4d785bad15f9 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index aba2fb255ce3..acd9f75a4f05 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 8f1eb771bd94..163c19cb727f 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index bfb594d93973..104762db312f 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index b00de6d8bd74..413b90779c78 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index f486cd927e4d..5bb2edacdf16 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 18b2656e0b13..187868bba34a 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 4ef08ee9b52f..ac43d275afad 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 8125721fe8f2..8dec527e8262 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index c49e282057d1..7fb996429bdb 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 766097c51e6a..28915003911a 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index f6dffc691911..af13f145253b 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 13a84a4b9527..93cb42e3a035 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 28fd40ac286e..52cbfe1fcaf7 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 2bd58371e740..e34eb925a33d 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 6e3742530183..dfbe8b0175bc 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index ba493a8ec315..7e0798a7dea5 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 7c222395e587..eeea42ed9ae5 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index ade459afe31e..91fd4255f7f4 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 066088779da2..304e5453cb25 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 5d3f7b2d0b47..9d785f8f4842 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 407ddb820349..0b6d271e6975 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index fe5527fa2596..dce02356c42f 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index e184a5edb963..8d607382e22c 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index f1a98f0c23cd..d1383a85d940 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index ad14cb13c2e7..19401c9e8970 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 14af5e409d1c..2cf5838738dd 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index ad8c58244dd5..2778e880700e 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 19b8c00a90ea..18d184309cb4 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index b8f721d77474..9f45bc82d02e 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index f574ba4d9ef7..a50708453088 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index c76358dd4d49..cd9296855293 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 8aca04c23b7b..a1b0dde28ffd 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index f07b82b25a6a..9b8b9a8e26e3 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 0110f98301b0..e56426262429 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 4785473923d3..c1ff4bbbfd14 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.17 + 2.15.18-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 388a58963d58..8f0a0f59ce89 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 8e9292e57ed9..15e62fd104c3 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 92e824b1a67b..23f4563e450f 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 6364c01448bb..754ed2403edd 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 48cd9d248884..5ab409fd4555 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 02f0d3f0b190..cc034c31c294 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index b817f86599c6..645151fb3079 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 468efb7234ef..15225afe8900 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 40bb80d252d8..1fde1ca52016 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 3326253716de..6b467dc370bf 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index ebca0ed48317..96ba9dbda1c2 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 8b39a500f406..8a40625eebdf 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 60c4e861579e..4fd568e82e8c 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index fd518a841324..06ad3987df6c 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index b035176884ac..d82d1a30487f 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 3ca5fbcedbe8..5b6103a9c017 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 7c1475699e91..0c9d58769620 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 90c70176147c..a67c18c81d6f 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 7192805404c1..369446250411 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 888eb1488400..ed490f63e24e 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 59560e79eebb..72d147536d7d 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 88d5ca6420cb..850583d053fa 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 375d6316528a..05502eeb5d6e 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 7107a904251c..479c596de29f 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 9b48eb087dab..8c4219748411 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 78172f268a01..fbdc5535a611 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 31ec9a096770..ccf9ae80049c 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 75d1196736a4..ebc6ed0fde30 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index b3992a2bfe2e..0a9db8a1c2cf 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index b9ff12be44b3..3224cdbe71c3 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 4e3fbda406f4..51c578113533 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 5a9631ab8ebd..63e2dfb4f853 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 1ed0b20fd8f4..9b1db56d3f1e 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index d7dc3a3d4038..86de31fb6106 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index a69de6934a78..a96c15eea0f0 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index b0da825fac59..b437331e35cd 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index b0b65242895a..ab24b685b1a0 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 95e4708f2707..b0f3b519feae 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 1ac8d108e5e5..6e7cd6bfb76a 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index cb14a68dde4d..3c3ed01f22bb 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 3dcba45a34ae..d6667f77b001 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 64fc2264c749..b843235f94ae 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 18d987ff1dde..3607dc857d69 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 994209f5a882..54d543d07a18 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 174ec1ca31db..ebafc633c0d1 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 6c1b03b83474..b38786babb0a 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 96f8ce0c2964..e537315849c9 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 5e8af2960895..0d51781f1c49 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 7da303f6af2c..1ef65b58f0ad 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 47f2f10ff1b6..1b2d2a60a23e 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 609343dd4f12..2fe34c29849f 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 11172a7c3988..38d01c208a2b 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 7107d4c2c6c2..3a42d04198b8 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 58b23fb83173..e6183d8581d7 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 71ba83092f02..ec4ba94f67a0 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 491846fb59f4..e2e673f0e2c2 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index a67488681193..66c9c8cc4ee3 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 503e5457e6df..a2ecd64c785d 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index aad7504f0c27..9c563518bcd2 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 9477f3ca2f6a..d55380669c56 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index f4ee05a2d878..638866aa00c3 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index ff5e33dbbffc..4b380c0d3a7a 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 57f2aa7f855b..7e0e155f0084 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.17 + 2.15.18-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index b7b7ed08b530..0ad186e7e6f2 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.15.17 + 2.15.18-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 2726bd29be12..2ba4afaf5b1b 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.15.17 + 2.15.18-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 5660d53c82e9..07a2e1723370 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.15.17 + 2.15.18-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 4c326fb9b3dd..5d1134118431 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.15.17 + 2.15.18-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 50899c1b8099..605d1378a93c 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.15.17 + 2.15.18-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 82fb39e09079..6e469db37511 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.17 + 2.15.18-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index cb7f057b5d2a..905fb56e968d 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.15.17 + 2.15.18-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index e454fa4fe42d..e59542e59783 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.15.17 + 2.15.18-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index b229add681d8..fa0e2c54c415 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.15.17 + 2.15.18-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 95920cf40ddd..5ce4739495c0 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.15.17 + 2.15.18-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index c2c5ee6834f9..3104112d3864 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.17 + 2.15.18-SNAPSHOT 4.0.0 From 5fb3bb60a314d531f7c4d8ad8da37d7ba3d47617 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 29 Oct 2020 18:22:56 +0000 Subject: [PATCH 088/339] Amazon API Gateway Update: Support disabling the default execute-api endpoint for REST APIs. --- .../feature-AmazonAPIGateway-3b9624f.json | 6 +++ .../codegen-resources/service-2.json | 38 +++++++++++-------- 2 files changed, 29 insertions(+), 15 deletions(-) create mode 100644 .changes/next-release/feature-AmazonAPIGateway-3b9624f.json diff --git a/.changes/next-release/feature-AmazonAPIGateway-3b9624f.json b/.changes/next-release/feature-AmazonAPIGateway-3b9624f.json new file mode 100644 index 000000000000..142ccb50b763 --- /dev/null +++ b/.changes/next-release/feature-AmazonAPIGateway-3b9624f.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon API Gateway", + "contributor": "", + "description": "Support disabling the default execute-api endpoint for REST APIs." +} diff --git a/services/apigateway/src/main/resources/codegen-resources/service-2.json b/services/apigateway/src/main/resources/codegen-resources/service-2.json index 5f8f2f2d73eb..04b5dd539a41 100755 --- a/services/apigateway/src/main/resources/codegen-resources/service-2.json +++ b/services/apigateway/src/main/resources/codegen-resources/service-2.json @@ -2145,7 +2145,7 @@ }, "providerARNs":{ "shape":"ListOfARNs", - "documentation":"

A list of the Amazon Cognito user pool ARNs for the COGNITO_USER_POOLS authorizer. Each element is of this format: arn:aws:cognito-idp:{region}:{account_id}:userpool/{user_pool_id}. For a TOKEN or REQUEST authorizer, this is not defined.

" + "documentation":"

A list of the Amazon Cognito user pool ARNs for the COGNITO_USER_POOLS authorizer. Each element is of this format: arn:aws:cognito-idp:{region}:{account_id}:userpool/{user_pool_id}. For a TOKEN or REQUEST authorizer, this is not defined.

" }, "authType":{ "shape":"String", @@ -2410,7 +2410,7 @@ }, "providerARNs":{ "shape":"ListOfARNs", - "documentation":"

A list of the Amazon Cognito user pool ARNs for the COGNITO_USER_POOLS authorizer. Each element is of this format: arn:aws:cognito-idp:{region}:{account_id}:userpool/{user_pool_id}. For a TOKEN or REQUEST authorizer, this is not defined.

" + "documentation":"

A list of the Amazon Cognito user pool ARNs for the COGNITO_USER_POOLS authorizer. Each element is of this format: arn:aws:cognito-idp:{region}:{account_id}:userpool/{user_pool_id}. For a TOKEN or REQUEST authorizer, this is not defined.

" }, "authType":{ "shape":"String", @@ -2603,7 +2603,7 @@ }, "endpointConfiguration":{ "shape":"EndpointConfiguration", - "documentation":"

The endpoint configuration of this DomainName showing the endpoint types of the domain name.

" + "documentation":"

The endpoint configuration of this DomainName showing the endpoint types of the domain name.

" }, "tags":{ "shape":"MapOfStringToString", @@ -2732,11 +2732,11 @@ }, "apiKeySource":{ "shape":"ApiKeySourceType", - "documentation":"

The source of the API key for metering requests according to a usage plan. Valid values are:

  • HEADER to read the API key from the X-API-Key header of a request.
  • AUTHORIZER to read the API key from the UsageIdentifierKey from a custom authorizer.

" + "documentation":"

The source of the API key for metering requests according to a usage plan. Valid values are:

  • HEADER to read the API key from the X-API-Key header of a request.
  • AUTHORIZER to read the API key from the UsageIdentifierKey from a custom authorizer.

" }, "endpointConfiguration":{ "shape":"EndpointConfiguration", - "documentation":"

The endpoint configuration of this RestApi showing the endpoint types of the API.

" + "documentation":"

The endpoint configuration of this RestApi showing the endpoint types of the API.

" }, "policy":{ "shape":"String", @@ -2745,6 +2745,10 @@ "tags":{ "shape":"MapOfStringToString", "documentation":"

The key-value map of strings. The valid character set is [a-zA-Z+-=._:/]. The tag key can be up to 128 characters and must not start with aws:. The tag value can be up to 256 characters.

" + }, + "disableExecuteApiEndpoint":{ + "shape":"Boolean", + "documentation":"

Specifies whether clients can invoke your API by using the default execute-api endpoint. By default, clients can invoke your API with the default https://{api_id}.execute-api.{region}.amazonaws.com endpoint. To require that clients use a custom domain name to invoke your API, disable the default endpoint.

" } }, "documentation":"

The POST Request to add a new RestApi resource to your collection.

" @@ -3557,7 +3561,7 @@ }, "endpointConfiguration":{ "shape":"EndpointConfiguration", - "documentation":"

The endpoint configuration of this DomainName showing the endpoint types of the domain name.

" + "documentation":"

The endpoint configuration of this DomainName showing the endpoint types of the domain name.

" }, "domainNameStatus":{ "shape":"DomainNameStatus", @@ -3717,7 +3721,7 @@ "documentation":"

A Boolean flag to indicate whether this GatewayResponse is the default gateway response (true) or not (false). A default gateway response is one generated by API Gateway without any customization by an API developer.

" } }, - "documentation":"

A gateway response of a given response type and status code, with optional response parameters and mapping templates.

For more information about valid gateway response types, see Gateway Response Types Supported by API Gateway

Example: Get a Gateway Response of a given response type

Request

This example shows how to get a gateway response of the MISSING_AUTHENTICATION_TOKEN type.

GET /restapis/o81lxisefl/gatewayresponses/MISSING_AUTHENTICATION_TOKEN HTTP/1.1 Host: beta-apigateway.us-east-1.amazonaws.com Content-Type: application/json X-Amz-Date: 20170503T202516Z Authorization: AWS4-HMAC-SHA256 Credential={access-key-id}/20170503/us-east-1/apigateway/aws4_request, SignedHeaders=content-type;host;x-amz-date, Signature=1b52460e3159c1a26cff29093855d50ea141c1c5b937528fecaf60f51129697a Cache-Control: no-cache Postman-Token: 3b2a1ce9-c848-2e26-2e2f-9c2caefbed45 

The response type is specified as a URL path.

Response

The successful operation returns the 200 OK status code and a payload similar to the following:

{ \"_links\": { \"curies\": { \"href\": \"http://docs.aws.amazon.com/apigateway/latest/developerguide/restapi-gatewayresponse-{rel}.html\", \"name\": \"gatewayresponse\", \"templated\": true }, \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/MISSING_AUTHENTICATION_TOKEN\" }, \"gatewayresponse:delete\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/MISSING_AUTHENTICATION_TOKEN\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/MISSING_AUTHENTICATION_TOKEN\" } }, \"defaultResponse\": false, \"responseParameters\": { \"gatewayresponse.header.x-request-path\": \"method.request.path.petId\", \"gatewayresponse.header.Access-Control-Allow-Origin\": \"'a.b.c'\", \"gatewayresponse.header.x-request-query\": \"method.request.querystring.q\", \"gatewayresponse.header.x-request-header\": \"method.request.header.Accept\" }, \"responseTemplates\": { \"application/json\": \"{\\n \\\"message\\\": $context.error.messageString,\\n \\\"type\\\": \\\"$context.error.responseType\\\",\\n \\\"stage\\\": \\\"$context.stage\\\",\\n \\\"resourcePath\\\": \\\"$context.resourcePath\\\",\\n \\\"stageVariables.a\\\": \\\"$stageVariables.a\\\",\\n \\\"statusCode\\\": \\\"'404'\\\"\\n}\" }, \"responseType\": \"MISSING_AUTHENTICATION_TOKEN\", \"statusCode\": \"404\" }

" + "documentation":"

A gateway response of a given response type and status code, with optional response parameters and mapping templates.

For more information about valid gateway response types, see Gateway Response Types Supported by API Gateway

Example: Get a Gateway Response of a given response type

Request

This example shows how to get a gateway response of the MISSING_AUTHENTICATION_TOKEN type.

GET /restapis/o81lxisefl/gatewayresponses/MISSING_AUTHENTICATION_TOKEN HTTP/1.1 Host: beta-apigateway.us-east-1.amazonaws.com Content-Type: application/json X-Amz-Date: 20170503T202516Z Authorization: AWS4-HMAC-SHA256 Credential={access-key-id}/20170503/us-east-1/apigateway/aws4_request, SignedHeaders=content-type;host;x-amz-date, Signature=1b52460e3159c1a26cff29093855d50ea141c1c5b937528fecaf60f51129697a Cache-Control: no-cache Postman-Token: 3b2a1ce9-c848-2e26-2e2f-9c2caefbed45 

The response type is specified as a URL path.

Response

The successful operation returns the 200 OK status code and a payload similar to the following:

{ \"_links\": { \"curies\": { \"href\": \"http://docs.aws.amazon.com/apigateway/latest/developerguide/restapi-gatewayresponse-{rel}.html\", \"name\": \"gatewayresponse\", \"templated\": true }, \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/MISSING_AUTHENTICATION_TOKEN\" }, \"gatewayresponse:delete\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/MISSING_AUTHENTICATION_TOKEN\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/MISSING_AUTHENTICATION_TOKEN\" } }, \"defaultResponse\": false, \"responseParameters\": { \"gatewayresponse.header.x-request-path\": \"method.request.path.petId\", \"gatewayresponse.header.Access-Control-Allow-Origin\": \"'a.b.c'\", \"gatewayresponse.header.x-request-query\": \"method.request.querystring.q\", \"gatewayresponse.header.x-request-header\": \"method.request.header.Accept\" }, \"responseTemplates\": { \"application/json\": \"{\\n \\\"message\\\": $context.error.messageString,\\n \\\"type\\\": \\\"$context.error.responseType\\\",\\n \\\"stage\\\": \\\"$context.stage\\\",\\n \\\"resourcePath\\\": \\\"$context.resourcePath\\\",\\n \\\"stageVariables.a\\\": \\\"$stageVariables.a\\\",\\n \\\"statusCode\\\": \\\"'404'\\\"\\n}\" }, \"responseType\": \"MISSING_AUTHENTICATION_TOKEN\", \"statusCode\": \"404\" }

" }, "GatewayResponseType":{ "type":"string", @@ -3754,7 +3758,7 @@ "locationName":"item" } }, - "documentation":"

The collection of the GatewayResponse instances of a RestApi as a responseType-to-GatewayResponse object map of key-value pairs. As such, pagination is not supported for querying this collection.

For more information about valid gateway response types, see Gateway Response Types Supported by API Gateway

Example: Get the collection of gateway responses of an API

Request

This example request shows how to retrieve the GatewayResponses collection from an API.

GET /restapis/o81lxisefl/gatewayresponses HTTP/1.1 Host: beta-apigateway.us-east-1.amazonaws.com Content-Type: application/json X-Amz-Date: 20170503T220604Z Authorization: AWS4-HMAC-SHA256 Credential={access-key-id}/20170503/us-east-1/apigateway/aws4_request, SignedHeaders=content-type;host;x-amz-date, Signature=59b42fe54a76a5de8adf2c67baa6d39206f8e9ad49a1d77ccc6a5da3103a398a Cache-Control: no-cache Postman-Token: 5637af27-dc29-fc5c-9dfe-0645d52cb515 

Response

The successful operation returns the 200 OK status code and a payload similar to the following:

{ \"_links\": { \"curies\": { \"href\": \"http://docs.aws.amazon.com/apigateway/latest/developerguide/restapi-gatewayresponse-{rel}.html\", \"name\": \"gatewayresponse\", \"templated\": true }, \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses\" }, \"first\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses\" }, \"gatewayresponse:by-type\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"item\": [ { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INTEGRATION_FAILURE\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/RESOURCE_NOT_FOUND\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/REQUEST_TOO_LARGE\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/THROTTLED\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/UNSUPPORTED_MEDIA_TYPE\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/AUTHORIZER_CONFIGURATION_ERROR\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/DEFAULT_5XX\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/DEFAULT_4XX\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/BAD_REQUEST_PARAMETERS\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/BAD_REQUEST_BODY\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/EXPIRED_TOKEN\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/ACCESS_DENIED\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INVALID_API_KEY\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/UNAUTHORIZED\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/API_CONFIGURATION_ERROR\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/QUOTA_EXCEEDED\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INTEGRATION_TIMEOUT\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/MISSING_AUTHENTICATION_TOKEN\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INVALID_SIGNATURE\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/AUTHORIZER_FAILURE\" } ] }, \"_embedded\": { \"item\": [ { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INTEGRATION_FAILURE\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INTEGRATION_FAILURE\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"INTEGRATION_FAILURE\", \"statusCode\": \"504\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/RESOURCE_NOT_FOUND\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/RESOURCE_NOT_FOUND\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"RESOURCE_NOT_FOUND\", \"statusCode\": \"404\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/REQUEST_TOO_LARGE\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/REQUEST_TOO_LARGE\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"REQUEST_TOO_LARGE\", \"statusCode\": \"413\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/THROTTLED\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/THROTTLED\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"THROTTLED\", \"statusCode\": \"429\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/UNSUPPORTED_MEDIA_TYPE\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/UNSUPPORTED_MEDIA_TYPE\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"UNSUPPORTED_MEDIA_TYPE\", \"statusCode\": \"415\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/AUTHORIZER_CONFIGURATION_ERROR\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/AUTHORIZER_CONFIGURATION_ERROR\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"AUTHORIZER_CONFIGURATION_ERROR\", \"statusCode\": \"500\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/DEFAULT_5XX\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/DEFAULT_5XX\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"DEFAULT_5XX\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/DEFAULT_4XX\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/DEFAULT_4XX\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"DEFAULT_4XX\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/BAD_REQUEST_PARAMETERS\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/BAD_REQUEST_PARAMETERS\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"BAD_REQUEST_PARAMETERS\", \"statusCode\": \"400\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/BAD_REQUEST_BODY\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/BAD_REQUEST_BODY\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"BAD_REQUEST_BODY\", \"statusCode\": \"400\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/EXPIRED_TOKEN\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/EXPIRED_TOKEN\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"EXPIRED_TOKEN\", \"statusCode\": \"403\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/ACCESS_DENIED\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/ACCESS_DENIED\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"ACCESS_DENIED\", \"statusCode\": \"403\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INVALID_API_KEY\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INVALID_API_KEY\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"INVALID_API_KEY\", \"statusCode\": \"403\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/UNAUTHORIZED\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/UNAUTHORIZED\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"UNAUTHORIZED\", \"statusCode\": \"401\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/API_CONFIGURATION_ERROR\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/API_CONFIGURATION_ERROR\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"API_CONFIGURATION_ERROR\", \"statusCode\": \"500\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/QUOTA_EXCEEDED\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/QUOTA_EXCEEDED\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"QUOTA_EXCEEDED\", \"statusCode\": \"429\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INTEGRATION_TIMEOUT\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INTEGRATION_TIMEOUT\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"INTEGRATION_TIMEOUT\", \"statusCode\": \"504\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/MISSING_AUTHENTICATION_TOKEN\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/MISSING_AUTHENTICATION_TOKEN\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"MISSING_AUTHENTICATION_TOKEN\", \"statusCode\": \"403\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INVALID_SIGNATURE\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INVALID_SIGNATURE\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"INVALID_SIGNATURE\", \"statusCode\": \"403\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/AUTHORIZER_FAILURE\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/AUTHORIZER_FAILURE\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"AUTHORIZER_FAILURE\", \"statusCode\": \"500\" } ] } }

" + "documentation":"

The collection of the GatewayResponse instances of a RestApi as a responseType-to-GatewayResponse object map of key-value pairs. As such, pagination is not supported for querying this collection.

For more information about valid gateway response types, see Gateway Response Types Supported by API Gateway

Example: Get the collection of gateway responses of an API

Request

This example request shows how to retrieve the GatewayResponses collection from an API.

GET /restapis/o81lxisefl/gatewayresponses HTTP/1.1 Host: beta-apigateway.us-east-1.amazonaws.com Content-Type: application/json X-Amz-Date: 20170503T220604Z Authorization: AWS4-HMAC-SHA256 Credential={access-key-id}/20170503/us-east-1/apigateway/aws4_request, SignedHeaders=content-type;host;x-amz-date, Signature=59b42fe54a76a5de8adf2c67baa6d39206f8e9ad49a1d77ccc6a5da3103a398a Cache-Control: no-cache Postman-Token: 5637af27-dc29-fc5c-9dfe-0645d52cb515 

Response

The successful operation returns the 200 OK status code and a payload similar to the following:

{ \"_links\": { \"curies\": { \"href\": \"http://docs.aws.amazon.com/apigateway/latest/developerguide/restapi-gatewayresponse-{rel}.html\", \"name\": \"gatewayresponse\", \"templated\": true }, \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses\" }, \"first\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses\" }, \"gatewayresponse:by-type\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"item\": [ { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INTEGRATION_FAILURE\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/RESOURCE_NOT_FOUND\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/REQUEST_TOO_LARGE\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/THROTTLED\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/UNSUPPORTED_MEDIA_TYPE\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/AUTHORIZER_CONFIGURATION_ERROR\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/DEFAULT_5XX\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/DEFAULT_4XX\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/BAD_REQUEST_PARAMETERS\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/BAD_REQUEST_BODY\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/EXPIRED_TOKEN\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/ACCESS_DENIED\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INVALID_API_KEY\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/UNAUTHORIZED\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/API_CONFIGURATION_ERROR\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/QUOTA_EXCEEDED\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INTEGRATION_TIMEOUT\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/MISSING_AUTHENTICATION_TOKEN\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INVALID_SIGNATURE\" }, { \"href\": \"/restapis/o81lxisefl/gatewayresponses/AUTHORIZER_FAILURE\" } ] }, \"_embedded\": { \"item\": [ { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INTEGRATION_FAILURE\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INTEGRATION_FAILURE\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"INTEGRATION_FAILURE\", \"statusCode\": \"504\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/RESOURCE_NOT_FOUND\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/RESOURCE_NOT_FOUND\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"RESOURCE_NOT_FOUND\", \"statusCode\": \"404\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/REQUEST_TOO_LARGE\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/REQUEST_TOO_LARGE\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"REQUEST_TOO_LARGE\", \"statusCode\": \"413\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/THROTTLED\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/THROTTLED\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"THROTTLED\", \"statusCode\": \"429\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/UNSUPPORTED_MEDIA_TYPE\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/UNSUPPORTED_MEDIA_TYPE\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"UNSUPPORTED_MEDIA_TYPE\", \"statusCode\": \"415\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/AUTHORIZER_CONFIGURATION_ERROR\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/AUTHORIZER_CONFIGURATION_ERROR\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"AUTHORIZER_CONFIGURATION_ERROR\", \"statusCode\": \"500\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/DEFAULT_5XX\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/DEFAULT_5XX\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"DEFAULT_5XX\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/DEFAULT_4XX\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/DEFAULT_4XX\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"DEFAULT_4XX\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/BAD_REQUEST_PARAMETERS\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/BAD_REQUEST_PARAMETERS\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"BAD_REQUEST_PARAMETERS\", \"statusCode\": \"400\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/BAD_REQUEST_BODY\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/BAD_REQUEST_BODY\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"BAD_REQUEST_BODY\", \"statusCode\": \"400\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/EXPIRED_TOKEN\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/EXPIRED_TOKEN\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"EXPIRED_TOKEN\", \"statusCode\": \"403\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/ACCESS_DENIED\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/ACCESS_DENIED\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"ACCESS_DENIED\", \"statusCode\": \"403\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INVALID_API_KEY\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INVALID_API_KEY\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"INVALID_API_KEY\", \"statusCode\": \"403\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/UNAUTHORIZED\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/UNAUTHORIZED\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"UNAUTHORIZED\", \"statusCode\": \"401\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/API_CONFIGURATION_ERROR\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/API_CONFIGURATION_ERROR\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"API_CONFIGURATION_ERROR\", \"statusCode\": \"500\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/QUOTA_EXCEEDED\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/QUOTA_EXCEEDED\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"QUOTA_EXCEEDED\", \"statusCode\": \"429\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INTEGRATION_TIMEOUT\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INTEGRATION_TIMEOUT\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"INTEGRATION_TIMEOUT\", \"statusCode\": \"504\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/MISSING_AUTHENTICATION_TOKEN\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/MISSING_AUTHENTICATION_TOKEN\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"MISSING_AUTHENTICATION_TOKEN\", \"statusCode\": \"403\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INVALID_SIGNATURE\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/INVALID_SIGNATURE\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"INVALID_SIGNATURE\", \"statusCode\": \"403\" }, { \"_links\": { \"self\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/AUTHORIZER_FAILURE\" }, \"gatewayresponse:put\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/{response_type}\", \"templated\": true }, \"gatewayresponse:update\": { \"href\": \"/restapis/o81lxisefl/gatewayresponses/AUTHORIZER_FAILURE\" } }, \"defaultResponse\": true, \"responseParameters\": {}, \"responseTemplates\": { \"application/json\": \"{\\\"message\\\":$context.error.messageString}\" }, \"responseType\": \"AUTHORIZER_FAILURE\", \"statusCode\": \"500\" } ] } }

" }, "GenerateClientCertificateRequest":{ "type":"structure", @@ -4983,7 +4987,7 @@ }, "uri":{ "shape":"String", - "documentation":"

Specifies Uniform Resource Identifier (URI) of the integration endpoint.

  • For HTTP or HTTP_PROXY integrations, the URI must be a fully formed, encoded HTTP(S) URL according to the RFC-3986 specification, for either standard integration, where connectionType is not VPC_LINK, or private integration, where connectionType is VPC_LINK. For a private HTTP integration, the URI is not used for routing.

  • For AWS or AWS_PROXY integrations, the URI is of the form arn:aws:apigateway:{region}:{subdomain.service|service}:path|action/{service_api}. Here, {Region} is the API Gateway region (e.g., us-east-1); {service} is the name of the integrated AWS service (e.g., s3); and {subdomain} is a designated subdomain supported by certain AWS service for fast host-name lookup. action can be used for an AWS service action-based API, using an Action={name}&{p1}={v1}&p2={v2}... query string. The ensuing {service_api} refers to a supported action {name} plus any required input parameters. Alternatively, path can be used for an AWS service path-based API. The ensuing service_api refers to the path to an AWS service resource, including the region of the integrated AWS service, if applicable. For example, for integration with the S3 API of GetObject, the uri can be either arn:aws:apigateway:us-west-2:s3:action/GetObject&Bucket={bucket}&Key={key} or arn:aws:apigateway:us-west-2:s3:path/{bucket}/{key}

" + "documentation":"

Specifies Uniform Resource Identifier (URI) of the integration endpoint.

  • For HTTP or HTTP_PROXY integrations, the URI must be a fully formed, encoded HTTP(S) URL according to the RFC-3986 specification, for either standard integration, where connectionType is not VPC_LINK, or private integration, where connectionType is VPC_LINK. For a private HTTP integration, the URI is not used for routing.

  • For AWS or AWS_PROXY integrations, the URI is of the form arn:aws:apigateway:{region}:{subdomain.service|service}:path|action/{service_api}. Here, {Region} is the API Gateway region (e.g., us-east-1); {service} is the name of the integrated AWS service (e.g., s3); and {subdomain} is a designated subdomain supported by certain AWS service for fast host-name lookup. action can be used for an AWS service action-based API, using an Action={name}&{p1}={v1}&p2={v2}... query string. The ensuing {service_api} refers to a supported action {name} plus any required input parameters. Alternatively, path can be used for an AWS service path-based API. The ensuing service_api refers to the path to an AWS service resource, including the region of the integrated AWS service, if applicable. For example, for integration with the S3 API of GetObject, the uri can be either arn:aws:apigateway:us-west-2:s3:action/GetObject&Bucket={bucket}&Key={key} or arn:aws:apigateway:us-west-2:s3:path/{bucket}/{key}

" }, "connectionType":{ "shape":"ConnectionType", @@ -5574,7 +5578,7 @@ }, "uri":{ "shape":"String", - "documentation":"

Specifies Uniform Resource Identifier (URI) of the integration endpoint.

  • For HTTP or HTTP_PROXY integrations, the URI must be a fully formed, encoded HTTP(S) URL according to the RFC-3986 specification, for either standard integration, where connectionType is not VPC_LINK, or private integration, where connectionType is VPC_LINK. For a private HTTP integration, the URI is not used for routing.

  • For AWS or AWS_PROXY integrations, the URI is of the form arn:aws:apigateway:{region}:{subdomain.service|service}:path|action/{service_api}. Here, {Region} is the API Gateway region (e.g., us-east-1); {service} is the name of the integrated AWS service (e.g., s3); and {subdomain} is a designated subdomain supported by certain AWS service for fast host-name lookup. action can be used for an AWS service action-based API, using an Action={name}&{p1}={v1}&p2={v2}... query string. The ensuing {service_api} refers to a supported action {name} plus any required input parameters. Alternatively, path can be used for an AWS service path-based API. The ensuing service_api refers to the path to an AWS service resource, including the region of the integrated AWS service, if applicable. For example, for integration with the S3 API of GetObject, the uri can be either arn:aws:apigateway:us-west-2:s3:action/GetObject&Bucket={bucket}&Key={key} or arn:aws:apigateway:us-west-2:s3:path/{bucket}/{key}

" + "documentation":"

Specifies Uniform Resource Identifier (URI) of the integration endpoint.

  • For HTTP or HTTP_PROXY integrations, the URI must be a fully formed, encoded HTTP(S) URL according to the RFC-3986 specification, for either standard integration, where connectionType is not VPC_LINK, or private integration, where connectionType is VPC_LINK. For a private HTTP integration, the URI is not used for routing.

  • For AWS or AWS_PROXY integrations, the URI is of the form arn:aws:apigateway:{region}:{subdomain.service|service}:path|action/{service_api}. Here, {Region} is the API Gateway region (e.g., us-east-1); {service} is the name of the integrated AWS service (e.g., s3); and {subdomain} is a designated subdomain supported by certain AWS service for fast host-name lookup. action can be used for an AWS service action-based API, using an Action={name}&{p1}={v1}&p2={v2}... query string. The ensuing {service_api} refers to a supported action {name} plus any required input parameters. Alternatively, path can be used for an AWS service path-based API. The ensuing service_api refers to the path to an AWS service resource, including the region of the integrated AWS service, if applicable. For example, for integration with the S3 API of GetObject, the uri can be either arn:aws:apigateway:us-west-2:s3:action/GetObject&Bucket={bucket}&Key={key} or arn:aws:apigateway:us-west-2:s3:path/{bucket}/{key}

" }, "connectionType":{ "shape":"ConnectionType", @@ -5958,19 +5962,23 @@ }, "apiKeySource":{ "shape":"ApiKeySourceType", - "documentation":"

The source of the API key for metering requests according to a usage plan. Valid values are:

  • HEADER to read the API key from the X-API-Key header of a request.
  • AUTHORIZER to read the API key from the UsageIdentifierKey from a custom authorizer.

" + "documentation":"

The source of the API key for metering requests according to a usage plan. Valid values are:

  • HEADER to read the API key from the X-API-Key header of a request.
  • AUTHORIZER to read the API key from the UsageIdentifierKey from a custom authorizer.

" }, "endpointConfiguration":{ "shape":"EndpointConfiguration", - "documentation":"

The endpoint configuration of this RestApi showing the endpoint types of the API.

" + "documentation":"

The endpoint configuration of this RestApi showing the endpoint types of the API.

" }, "policy":{ "shape":"String", - "documentation":"A stringified JSON policy document that applies to this RestApi regardless of the caller and Method configuration." + "documentation":"

A stringified JSON policy document that applies to this RestApi regardless of the caller and Method configuration.

" }, "tags":{ "shape":"MapOfStringToString", "documentation":"

The collection of tags. Each tag element is associated with a given resource.

" + }, + "disableExecuteApiEndpoint":{ + "shape":"Boolean", + "documentation":"

Specifies whether clients can invoke your API by using the default execute-api endpoint. By default, clients can invoke your API with the default https://{api_id}.execute-api.{region}.amazonaws.com endpoint. To require that clients use a custom domain name to invoke your API, disable the default endpoint.

" } }, "documentation":"

Represents a REST API.

" @@ -7146,7 +7154,7 @@ }, "status":{ "shape":"VpcLinkStatus", - "documentation":"

The status of the VPC link. The valid values are AVAILABLE, PENDING, DELETING, or FAILED. Deploying an API will wait if the status is PENDING and will fail if the status is DELETING.

" + "documentation":"

The status of the VPC link. The valid values are AVAILABLE, PENDING, DELETING, or FAILED. Deploying an API will wait if the status is PENDING and will fail if the status is DELETING.

" }, "statusMessage":{ "shape":"String", @@ -7157,7 +7165,7 @@ "documentation":"

The collection of tags. Each tag element is associated with a given resource.

" } }, - "documentation":"

An API Gateway VPC link for a RestApi to access resources in an Amazon Virtual Private Cloud (VPC).

To enable access to a resource in an Amazon Virtual Private Cloud through Amazon API Gateway, you, as an API developer, create a VpcLink resource targeted for one or more network load balancers of the VPC and then integrate an API method with a private integration that uses the VpcLink. The private integration has an integration type of HTTP or HTTP_PROXY and has a connection type of VPC_LINK. The integration uses the connectionId property to identify the VpcLink used.

" + "documentation":"

An API Gateway VPC link for a RestApi to access resources in an Amazon Virtual Private Cloud (VPC).

To enable access to a resource in an Amazon Virtual Private Cloud through Amazon API Gateway, you, as an API developer, create a VpcLink resource targeted for one or more network load balancers of the VPC and then integrate an API method with a private integration that uses the VpcLink. The private integration has an integration type of HTTP or HTTP_PROXY and has a connection type of VPC_LINK. The integration uses the connectionId property to identify the VpcLink used.

" }, "VpcLinkStatus":{ "type":"string", From 6c974b0f161ad7206195b069447a22fd0d567fed Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 29 Oct 2020 18:22:59 +0000 Subject: [PATCH 089/339] Elastic Load Balancing Update: Application Load Balancer (ALB) now supports the gRPC protocol-version. With this release, customers can use ALB to route and load balance gRPC traffic between gRPC enabled clients and microservices. --- .../feature-ElasticLoadBalancing-f672fa2.json | 6 +++ .../codegen-resources/service-2.json | 49 ++++++++++++------- 2 files changed, 37 insertions(+), 18 deletions(-) create mode 100644 .changes/next-release/feature-ElasticLoadBalancing-f672fa2.json diff --git a/.changes/next-release/feature-ElasticLoadBalancing-f672fa2.json b/.changes/next-release/feature-ElasticLoadBalancing-f672fa2.json new file mode 100644 index 000000000000..fe1ba3f953ee --- /dev/null +++ b/.changes/next-release/feature-ElasticLoadBalancing-f672fa2.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Elastic Load Balancing", + "contributor": "", + "description": "Application Load Balancer (ALB) now supports the gRPC protocol-version. With this release, customers can use ALB to route and load balance gRPC traffic between gRPC enabled clients and microservices." +} diff --git a/services/elasticloadbalancingv2/src/main/resources/codegen-resources/service-2.json b/services/elasticloadbalancingv2/src/main/resources/codegen-resources/service-2.json index c3002376470e..8666639c743a 100644 --- a/services/elasticloadbalancingv2/src/main/resources/codegen-resources/service-2.json +++ b/services/elasticloadbalancingv2/src/main/resources/codegen-resources/service-2.json @@ -1079,7 +1079,7 @@ }, "DefaultActions":{ "shape":"Actions", - "documentation":"

The actions for the default rule. The rule must include one forward action or one or more fixed-response actions.

If the action type is forward, you specify one or more target groups. The protocol of the target group must be HTTP or HTTPS for an Application Load Balancer. The protocol of the target group must be TCP, TLS, UDP, or TCP_UDP for a Network Load Balancer.

[HTTPS listeners] If the action type is authenticate-oidc, you authenticate users through an identity provider that is OpenID Connect (OIDC) compliant.

[HTTPS listeners] If the action type is authenticate-cognito, you authenticate users through the user pools supported by Amazon Cognito.

[Application Load Balancer] If the action type is redirect, you redirect specified client requests from one URL to another.

[Application Load Balancer] If the action type is fixed-response, you drop specified client requests and return a custom HTTP response.

" + "documentation":"

The actions for the default rule.

" }, "AlpnPolicy":{ "shape":"AlpnPolicyName", @@ -1166,7 +1166,7 @@ }, "Conditions":{ "shape":"RuleConditionList", - "documentation":"

The conditions. Each rule can optionally include up to one of each of the following conditions: http-request-method, host-header, path-pattern, and source-ip. Each rule can also optionally include one or more of each of the following conditions: http-header and query-string.

" + "documentation":"

The conditions.

" }, "Priority":{ "shape":"RulePriority", @@ -1174,7 +1174,7 @@ }, "Actions":{ "shape":"Actions", - "documentation":"

The actions. Each rule must include exactly one of the following types of actions: forward, fixed-response, or redirect, and it must be the last action to be performed.

If the action type is forward, you specify one or more target groups. The protocol of the target group must be HTTP or HTTPS for an Application Load Balancer. The protocol of the target group must be TCP, TLS, UDP, or TCP_UDP for a Network Load Balancer.

[HTTPS listeners] If the action type is authenticate-oidc, you authenticate users through an identity provider that is OpenID Connect (OIDC) compliant.

[HTTPS listeners] If the action type is authenticate-cognito, you authenticate users through the user pools supported by Amazon Cognito.

[Application Load Balancer] If the action type is redirect, you redirect specified client requests from one URL to another.

[Application Load Balancer] If the action type is fixed-response, you drop specified client requests and return a custom HTTP response.

" + "documentation":"

The actions.

" }, "Tags":{ "shape":"TagList", @@ -1203,6 +1203,10 @@ "shape":"ProtocolEnum", "documentation":"

The protocol to use for routing traffic to the targets. For Application Load Balancers, the supported protocols are HTTP and HTTPS. For Network Load Balancers, the supported protocols are TCP, TLS, UDP, or TCP_UDP. A TCP_UDP listener must be associated with a TCP_UDP target group. If the target is a Lambda function, this parameter does not apply.

" }, + "ProtocolVersion":{ + "shape":"ProtocolVersion", + "documentation":"

[HTTP/HTTPS protocol] The protocol version. Specify GRPC to send requests to targets using gRPC. Specify HTTP2 to send requests to targets using HTTP/2. The default is HTTP1, which sends requests to targets using HTTP/1.1.

" + }, "Port":{ "shape":"Port", "documentation":"

The port on which the targets receive traffic. This port is used unless you specify a port override when registering the target. If the target is a Lambda function, this parameter does not apply.

" @@ -1225,7 +1229,7 @@ }, "HealthCheckPath":{ "shape":"Path", - "documentation":"

[HTTP/HTTPS health checks] The ping path that is the destination on the targets for health checks. The default is /.

" + "documentation":"

[HTTP/HTTPS health checks] The destination for health checks on the targets.

[HTTP1 or HTTP2 protocol version] The ping path. The default is /.

[GRPC protocol version] The path of a custom health check method with the format /package.service/method. The default is /AWS.ALB/healthcheck.

" }, "HealthCheckIntervalSeconds":{ "shape":"HealthCheckIntervalSeconds", @@ -1245,7 +1249,7 @@ }, "Matcher":{ "shape":"Matcher", - "documentation":"

[HTTP/HTTPS health checks] The HTTP codes to use when checking for a successful response from a target.

" + "documentation":"

[HTTP/HTTPS health checks] The HTTP or gRPC codes to use when checking for a successful response from a target.

" }, "TargetType":{ "shape":"TargetTypeEnum", @@ -1759,6 +1763,7 @@ }, "documentation":"

Information about a forward action.

" }, + "GrpcCode":{"type":"string"}, "HealthCheckEnabled":{"type":"boolean"}, "HealthCheckIntervalSeconds":{ "type":"integer", @@ -2171,14 +2176,17 @@ "Marker":{"type":"string"}, "Matcher":{ "type":"structure", - "required":["HttpCode"], "members":{ "HttpCode":{ "shape":"HttpCode", - "documentation":"

The HTTP codes.

For Application Load Balancers, you can specify values between 200 and 499, and the default value is 200. You can specify multiple values (for example, \"200,202\") or a range of values (for example, \"200-299\").

For Network Load Balancers, this is 200–399.

" + "documentation":"

For Application Load Balancers, you can specify values between 200 and 499, and the default value is 200. You can specify multiple values (for example, \"200,202\") or a range of values (for example, \"200-299\").

For Network Load Balancers, this is \"200–399\".

" + }, + "GrpcCode":{ + "shape":"GrpcCode", + "documentation":"

You can specify values between 0 and 99. You can specify multiple values (for example, \"0,1\") or a range of values (for example, \"0-5\"). The default value is 12.

" } }, - "documentation":"

Information to use when checking for a successful response from a target.

" + "documentation":"

The codes to use when checking for a successful response from a target. If the protocol version is gRPC, these are gRPC codes. Otherwise, these are HTTP codes.

" }, "Max":{"type":"string"}, "ModifyListenerInput":{ @@ -2207,7 +2215,7 @@ }, "DefaultActions":{ "shape":"Actions", - "documentation":"

The actions for the default rule. The rule must include one forward action or one or more fixed-response actions.

If the action type is forward, you specify one or more target groups. The protocol of the target group must be HTTP or HTTPS for an Application Load Balancer. The protocol of the target group must be TCP, TLS, UDP, or TCP_UDP for a Network Load Balancer.

[HTTPS listeners] If the action type is authenticate-oidc, you authenticate users through an identity provider that is OpenID Connect (OIDC) compliant.

[HTTPS listeners] If the action type is authenticate-cognito, you authenticate users through the user pools supported by Amazon Cognito.

[Application Load Balancer] If the action type is redirect, you redirect specified client requests from one URL to another.

[Application Load Balancer] If the action type is fixed-response, you drop specified client requests and return a custom HTTP response.

" + "documentation":"

The actions for the default rule.

" }, "AlpnPolicy":{ "shape":"AlpnPolicyName", @@ -2260,11 +2268,11 @@ }, "Conditions":{ "shape":"RuleConditionList", - "documentation":"

The conditions. Each rule can include zero or one of the following conditions: http-request-method, host-header, path-pattern, and source-ip, and zero or more of the following conditions: http-header and query-string.

" + "documentation":"

The conditions.

" }, "Actions":{ "shape":"Actions", - "documentation":"

The actions. Each rule must include exactly one of the following types of actions: forward, fixed-response, or redirect, and it must be the last action to be performed.

If the action type is forward, you specify one or more target groups. The protocol of the target group must be HTTP or HTTPS for an Application Load Balancer. The protocol of the target group must be TCP, TLS, UDP, or TCP_UDP for a Network Load Balancer.

[HTTPS listeners] If the action type is authenticate-oidc, you authenticate users through an identity provider that is OpenID Connect (OIDC) compliant.

[HTTPS listeners] If the action type is authenticate-cognito, you authenticate users through the user pools supported by Amazon Cognito.

[Application Load Balancer] If the action type is redirect, you redirect specified client requests from one URL to another.

[Application Load Balancer] If the action type is fixed-response, you drop specified client requests and return a custom HTTP response.

" + "documentation":"

The actions.

" } } }, @@ -2321,7 +2329,7 @@ }, "HealthCheckPath":{ "shape":"Path", - "documentation":"

[HTTP/HTTPS health checks] The ping path that is the destination for the health check request.

" + "documentation":"

[HTTP/HTTPS health checks] The destination for health checks on the targets.

[HTTP1 or HTTP2 protocol version] The ping path. The default is /.

[GRPC protocol version] The path of a custom health check method with the format /package.service/method. The default is /AWS.ALB/healthcheck.

" }, "HealthCheckEnabled":{ "shape":"HealthCheckEnabled", @@ -2329,7 +2337,7 @@ }, "HealthCheckIntervalSeconds":{ "shape":"HealthCheckIntervalSeconds", - "documentation":"

The approximate amount of time, in seconds, between health checks of an individual target. For Application Load Balancers, the range is 5 to 300 seconds. For Network Load Balancers, the supported values are 10 or 30 seconds.

With Network Load Balancers, you can't modify this setting.

" + "documentation":"

The approximate amount of time, in seconds, between health checks of an individual target. For HTTP and HTTPS health checks, the range is 5 to 300 seconds. For TPC health checks, the supported values are 10 or 30 seconds.

With Network Load Balancers, you can't modify this setting.

" }, "HealthCheckTimeoutSeconds":{ "shape":"HealthCheckTimeoutSeconds", @@ -2341,11 +2349,11 @@ }, "UnhealthyThresholdCount":{ "shape":"HealthCheckThresholdCount", - "documentation":"

The number of consecutive health check failures required before considering the target unhealthy. For Network Load Balancers, this value must be the same as the healthy threshold count.

" + "documentation":"

The number of consecutive health check failures required before considering the target unhealthy. For target groups with a protocol of TCP or TLS, this value must be the same as the healthy threshold count.

" }, "Matcher":{ "shape":"Matcher", - "documentation":"

[HTTP/HTTPS health checks] The HTTP codes to use when checking for a successful response from a target. The possible values are from 200 to 499. You can specify multiple values (for example, \"200,202\") or a range of values (for example, \"200-299\"). The default is 200.

With Network Load Balancers, you can't modify this setting.

" + "documentation":"

[HTTP/HTTPS health checks] The HTTP or gRPC codes to use when checking for a successful response from a target.

With Network Load Balancers, you can't modify this setting.

" } } }, @@ -2421,6 +2429,7 @@ "TCP_UDP" ] }, + "ProtocolVersion":{"type":"string"}, "QueryStringConditionConfig":{ "type":"structure", "members":{ @@ -2520,7 +2529,7 @@ }, "Targets":{ "shape":"TargetDescriptions", - "documentation":"

The targets.

To register a target by instance ID, specify the instance ID. To register a target by IP address, specify the IP address. To register a Lambda function, specify the ARN of the Lambda function.

" + "documentation":"

The targets.

" } } }, @@ -3031,11 +3040,11 @@ }, "HealthCheckPath":{ "shape":"Path", - "documentation":"

The destination for the health check request.

" + "documentation":"

The destination for health checks on the targets.

" }, "Matcher":{ "shape":"Matcher", - "documentation":"

The HTTP codes to use when checking for a successful response from a target.

" + "documentation":"

The HTTP or gRPC codes to use when checking for a successful response from a target.

" }, "LoadBalancerArns":{ "shape":"LoadBalancerArns", @@ -3044,6 +3053,10 @@ "TargetType":{ "shape":"TargetTypeEnum", "documentation":"

The type of target that you must specify when registering targets with this target group. The possible values are instance (targets are specified by instance ID) or ip (targets are specified by IP address).

" + }, + "ProtocolVersion":{ + "shape":"ProtocolVersion", + "documentation":"

[HTTP/HTTPS protocol] The protocol version. The possible values are GRPC, HTTP1, and HTTP2.

" } }, "documentation":"

Information about a target group.

" From fb8085390fe8fdd0455b0b83d5d3ae728e00b086 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 29 Oct 2020 18:22:57 +0000 Subject: [PATCH 090/339] CodeArtifact Update: Add support for tagging of CodeArtifact domain and repository resources. --- .../feature-CodeArtifact-e4644b7.json | 6 + .../codegen-resources/service-2.json | 188 +++++++++++++++++- 2 files changed, 185 insertions(+), 9 deletions(-) create mode 100644 .changes/next-release/feature-CodeArtifact-e4644b7.json diff --git a/.changes/next-release/feature-CodeArtifact-e4644b7.json b/.changes/next-release/feature-CodeArtifact-e4644b7.json new file mode 100644 index 000000000000..e0726c11114a --- /dev/null +++ b/.changes/next-release/feature-CodeArtifact-e4644b7.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "CodeArtifact", + "contributor": "", + "description": "Add support for tagging of CodeArtifact domain and repository resources." +} diff --git a/services/codeartifact/src/main/resources/codegen-resources/service-2.json b/services/codeartifact/src/main/resources/codegen-resources/service-2.json index 1504f3b5e14e..2b7ae7c9af93 100644 --- a/services/codeartifact/src/main/resources/codegen-resources/service-2.json +++ b/services/codeartifact/src/main/resources/codegen-resources/service-2.json @@ -100,7 +100,6 @@ {"shape":"AccessDeniedException"}, {"shape":"ConflictException"}, {"shape":"InternalServerException"}, - {"shape":"ResourceNotFoundException"}, {"shape":"ThrottlingException"}, {"shape":"ValidationException"} ], @@ -265,7 +264,7 @@ {"shape":"ThrottlingException"}, {"shape":"ValidationException"} ], - "documentation":"

Deletes the assets in package versions and sets the package versions' status to Disposed. A disposed package version cannot be restored in your repository because its assets are deleted.

To view all disposed package versions in a repository, use ListackageVersions and set the status parameter to Disposed.

To view information about a disposed package version, use ListPackageVersions and set the status parameter to Disposed.

" + "documentation":"

Deletes the assets in package versions and sets the package versions' status to Disposed. A disposed package version cannot be restored in your repository because its assets are deleted.

To view all disposed package versions in a repository, use ListPackageVersions and set the status parameter to Disposed.

To view information about a disposed package version, use DescribePackageVersion ..

" }, "GetAuthorizationToken":{ "name":"GetAuthorizationToken", @@ -282,7 +281,7 @@ {"shape":"ThrottlingException"}, {"shape":"ValidationException"} ], - "documentation":"

Generates a temporary authentication token for accessing repositories in the domain. This API requires the codeartifact:GetAuthorizationToken and sts:GetServiceBearerToken permissions.

CodeArtifact authorization tokens are valid for a period of 12 hours when created with the login command. You can call login periodically to refresh the token. When you create an authorization token with the GetAuthorizationToken API, you can set a custom authorization period, up to a maximum of 12 hours, with the durationSeconds parameter.

The authorization period begins after login or GetAuthorizationToken is called. If login or GetAuthorizationToken is called while assuming a role, the token lifetime is independent of the maximum session duration of the role. For example, if you call sts assume-role and specify a session duration of 15 minutes, then generate a CodeArtifact authorization token, the token will be valid for the full authorization period even though this is longer than the 15-minute session duration.

See Using IAM Roles for more information on controlling session duration.

" + "documentation":"

Generates a temporary authorization token for accessing repositories in the domain. This API requires the codeartifact:GetAuthorizationToken and sts:GetServiceBearerToken permissions. For more information about authorization tokens, see AWS CodeArtifact authentication and tokens.

CodeArtifact authorization tokens are valid for a period of 12 hours when created with the login command. You can call login periodically to refresh the token. When you create an authorization token with the GetAuthorizationToken API, you can set a custom authorization period, up to a maximum of 12 hours, with the durationSeconds parameter.

The authorization period begins after login or GetAuthorizationToken is called. If login or GetAuthorizationToken is called while assuming a role, the token lifetime is independent of the maximum session duration of the role. For example, if you call sts assume-role and specify a session duration of 15 minutes, then generate a CodeArtifact authorization token, the token will be valid for the full authorization period even though this is longer than the 15-minute session duration.

See Using IAM Roles for more information on controlling session duration.

" }, "GetDomainPermissionsPolicy":{ "name":"GetDomainPermissionsPolicy", @@ -314,7 +313,8 @@ {"shape":"InternalServerException"}, {"shape":"ResourceNotFoundException"}, {"shape":"ThrottlingException"}, - {"shape":"ValidationException"} + {"shape":"ValidationException"}, + {"shape":"ConflictException"} ], "documentation":"

Returns an asset (or file) that is in a package. For example, for a Maven package version, use GetPackageVersionAsset to download a JAR file, a POM file, or any other assets in the package version.

" }, @@ -486,6 +486,22 @@ ], "documentation":"

Returns a list of RepositorySummary objects. Each RepositorySummary contains information about a repository in the specified domain and that matches the input parameters.

" }, + "ListTagsForResource":{ + "name":"ListTagsForResource", + "http":{ + "method":"POST", + "requestUri":"/v1/tags" + }, + "input":{"shape":"ListTagsForResourceRequest"}, + "output":{"shape":"ListTagsForResourceResult"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Gets information about AWS tags for a specified Amazon Resource Name (ARN) in AWS CodeArtifact.

" + }, "PutDomainPermissionsPolicy":{ "name":"PutDomainPermissionsPolicy", "http":{ @@ -503,7 +519,7 @@ {"shape":"ThrottlingException"}, {"shape":"ValidationException"} ], - "documentation":"

Sets a resource policy on a domain that specifies permissions to access it.

" + "documentation":"

Sets a resource policy on a domain that specifies permissions to access it.

When you call PutDomainPermissionsPolicy, the resource policy on the domain is ignored when evaluting permissions. This ensures that the owner of a domain cannot lock themselves out of the domain, which would prevent them from being able to update the resource policy.

" }, "PutRepositoryPermissionsPolicy":{ "name":"PutRepositoryPermissionsPolicy", @@ -522,7 +538,40 @@ {"shape":"ThrottlingException"}, {"shape":"ValidationException"} ], - "documentation":"

Sets the resource policy on a repository that specifies permissions to access it.

" + "documentation":"

Sets the resource policy on a repository that specifies permissions to access it.

When you call PutRepositoryPermissionsPolicy, the resource policy on the repository is ignored when evaluting permissions. This ensures that the owner of a repository cannot lock themselves out of the repository, which would prevent them from being able to update the resource policy.

" + }, + "TagResource":{ + "name":"TagResource", + "http":{ + "method":"POST", + "requestUri":"/v1/tag" + }, + "input":{"shape":"TagResourceRequest"}, + "output":{"shape":"TagResourceResult"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ServiceQuotaExceededException"}, + {"shape":"ThrottlingException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Adds or updates tags for a resource in AWS CodeArtifact.

" + }, + "UntagResource":{ + "name":"UntagResource", + "http":{ + "method":"POST", + "requestUri":"/v1/untag" + }, + "input":{"shape":"UntagResourceRequest"}, + "output":{"shape":"UntagResourceResult"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Removes tags from a resource in AWS CodeArtifact.

" }, "UpdatePackageVersionsStatus":{ "name":"UpdatePackageVersionsStatus", @@ -581,7 +630,7 @@ }, "Arn":{ "type":"string", - "max":2048, + "max":1011, "min":1, "pattern":"\\S+" }, @@ -786,6 +835,10 @@ "encryptionKey":{ "shape":"Arn", "documentation":"

The encryption key for the domain. This is used to encrypt content stored in a domain. An encryption key can be a key ID, a key Amazon Resource Name (ARN), a key alias, or a key alias ARN. To specify an encryptionKey, your IAM role must have kms:DescribeKey and kms:CreateGrant permissions on the encryption key that is used. For more information, see DescribeKey in the AWS Key Management Service API Reference and AWS KMS API Permissions Reference in the AWS Key Management Service Developer Guide.

CodeArtifact supports only symmetric CMKs. Do not associate an asymmetric CMK with your domain. For more information, see Using symmetric and asymmetric keys in the AWS Key Management Service Developer Guide.

" + }, + "tags":{ + "shape":"TagList", + "documentation":"

One or more tag key-value pairs for the domain.

" } } }, @@ -830,6 +883,10 @@ "upstreams":{ "shape":"UpstreamRepositoryList", "documentation":"

A list of upstream repositories to associate with the repository. The order of the upstream repositories in the list determines their priority order when AWS CodeArtifact looks for a requested package version. For more information, see Working with upstream repositories.

" + }, + "tags":{ + "shape":"TagList", + "documentation":"

One or more tag key-value pairs for the repository.

" } } }, @@ -1328,6 +1385,10 @@ "assetSizeBytes":{ "shape":"Long", "documentation":"

The total size of all assets in the domain.

" + }, + "s3BucketArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the Amazon S3 bucket that is used to store package assets in the domain.

" } }, "documentation":"

Information about a domain. A domain is a container for repositories. When you create a domain, it is empty until you add one or more repositories.

" @@ -1406,7 +1467,7 @@ }, "durationSeconds":{ "shape":"AuthorizationTokenDurationSeconds", - "documentation":"

The time, in seconds, that the generated authorization token is valid.

", + "documentation":"

The time, in seconds, that the generated authorization token is valid. Valid values are 0 and any number between 900 (15 minutes) and 43200 (12 hours). A value of 0 will set the expiration of the authorization token to the same expiration of the user's role's temporary credentials.

", "location":"querystring", "locationName":"duration" } @@ -2263,6 +2324,27 @@ } } }, + "ListTagsForResourceRequest":{ + "type":"structure", + "required":["resourceArn"], + "members":{ + "resourceArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the resource to get tags for.

", + "location":"querystring", + "locationName":"resourceArn" + } + } + }, + "ListTagsForResourceResult":{ + "type":"structure", + "members":{ + "tags":{ + "shape":"TagList", + "documentation":"

A list of tag key and value pairs associated with the specified resource.

" + } + } + }, "Long":{"type":"long"}, "LongOptional":{"type":"long"}, "PackageDependency":{ @@ -2765,6 +2847,70 @@ "key":{"shape":"PackageVersion"}, "value":{"shape":"SuccessfulPackageVersionInfo"} }, + "Tag":{ + "type":"structure", + "required":[ + "key", + "value" + ], + "members":{ + "key":{ + "shape":"TagKey", + "documentation":"

The tag's key.

" + }, + "value":{ + "shape":"TagValue", + "documentation":"

The tag's value.

" + } + }, + "documentation":"

A tag is a key-value pair that can be used to manage, search for, or filter resources in AWS CodeArtifact.

" + }, + "TagKey":{ + "type":"string", + "max":128, + "min":1 + }, + "TagKeyList":{ + "type":"list", + "member":{"shape":"TagKey"}, + "max":200, + "min":0 + }, + "TagList":{ + "type":"list", + "member":{"shape":"Tag"}, + "max":200, + "min":0 + }, + "TagResourceRequest":{ + "type":"structure", + "required":[ + "resourceArn", + "tags" + ], + "members":{ + "resourceArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the resource to which you want to add or update tags.

", + "location":"querystring", + "locationName":"resourceArn" + }, + "tags":{ + "shape":"TagList", + "documentation":"

The tags you want to modify or add to the resource.

" + } + } + }, + "TagResourceResult":{ + "type":"structure", + "members":{ + } + }, + "TagValue":{ + "type":"string", + "max":256, + "min":0 + }, "ThrottlingException":{ "type":"structure", "required":["message"], @@ -2782,6 +2928,30 @@ "exception":true }, "Timestamp":{"type":"timestamp"}, + "UntagResourceRequest":{ + "type":"structure", + "required":[ + "resourceArn", + "tagKeys" + ], + "members":{ + "resourceArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the resource to which you want to remove tags.

", + "location":"querystring", + "locationName":"resourceArn" + }, + "tagKeys":{ + "shape":"TagKeyList", + "documentation":"

The tag key for each tag that you want to remove from the resource.

" + } + } + }, + "UntagResourceResult":{ + "type":"structure", + "members":{ + } + }, "UpdatePackageVersionsStatusRequest":{ "type":"structure", "required":[ @@ -2958,5 +3128,5 @@ ] } }, - "documentation":"

AWS CodeArtifact is a fully managed artifact repository compatible with language-native package managers and build tools such as npm, Apache Maven, and pip. You can use CodeArtifact to share packages with development teams and pull packages. Packages can be pulled from both public and CodeArtifact repositories. You can also create an upstream relationship between a CodeArtifact repository and another repository, which effectively merges their contents from the point of view of a package manager client.

AWS CodeArtifact Components

Use the information in this guide to help you work with the following CodeArtifact components:

  • Repository: A CodeArtifact repository contains a set of package versions, each of which maps to a set of assets, or files. Repositories are polyglot, so a single repository can contain packages of any supported type. Each repository exposes endpoints for fetching and publishing packages using tools like the npm CLI, the Maven CLI ( mvn ), and pip . You can create up to 100 repositories per AWS account.

  • Domain: Repositories are aggregated into a higher-level entity known as a domain. All package assets and metadata are stored in the domain, but are consumed through repositories. A given package asset, such as a Maven JAR file, is stored once per domain, no matter how many repositories it's present in. All of the assets and metadata in a domain are encrypted with the same customer master key (CMK) stored in AWS Key Management Service (AWS KMS).

    Each repository is a member of a single domain and can't be moved to a different domain.

    The domain allows organizational policy to be applied across multiple repositories, such as which accounts can access repositories in the domain, and which public repositories can be used as sources of packages.

    Although an organization can have multiple domains, we recommend a single production domain that contains all published artifacts so that teams can find and share packages across their organization.

  • Package: A package is a bundle of software and the metadata required to resolve dependencies and install the software. CodeArtifact supports npm, PyPI, and Maven package formats.

    In CodeArtifact, a package consists of:

    • A name (for example, webpack is the name of a popular npm package)

    • An optional namespace (for example, @types in @types/node)

    • A set of versions (for example, 1.0.0, 1.0.1, 1.0.2, etc.)

    • Package-level metadata (for example, npm tags)

  • Package version: A version of a package, such as @types/node 12.6.9. The version number format and semantics vary for different package formats. For example, npm package versions must conform to the Semantic Versioning specification. In CodeArtifact, a package version consists of the version identifier, metadata at the package version level, and a set of assets.

  • Upstream repository: One repository is upstream of another when the package versions in it can be accessed from the repository endpoint of the downstream repository, effectively merging the contents of the two repositories from the point of view of a client. CodeArtifact allows creating an upstream relationship between two repositories.

  • Asset: An individual file stored in CodeArtifact associated with a package version, such as an npm .tgz file or Maven POM and JAR files.

CodeArtifact supports these operations:

  • AssociateExternalConnection: Adds an existing external connection to a repository.

  • CopyPackageVersions: Copies package versions from one repository to another repository in the same domain.

  • CreateDomain: Creates a domain

  • CreateRepository: Creates a CodeArtifact repository in a domain.

  • DeleteDomain: Deletes a domain. You cannot delete a domain that contains repositories.

  • DeleteDomainPermissionsPolicy: Deletes the resource policy that is set on a domain.

  • DeletePackageVersions: Deletes versions of a package. After a package has been deleted, it can be republished, but its assets and metadata cannot be restored because they have been permanently removed from storage.

  • DeleteRepository: Deletes a repository.

  • DeleteRepositoryPermissionsPolicy: Deletes the resource policy that is set on a repository.

  • DescribeDomain: Returns a DomainDescription object that contains information about the requested domain.

  • DescribePackageVersion: Returns a PackageVersionDescription object that contains details about a package version.

  • DescribeRepository: Returns a RepositoryDescription object that contains detailed information about the requested repository.

  • DisposePackageVersions: Disposes versions of a package. A package version with the status Disposed cannot be restored because they have been permanently removed from storage.

  • DisassociateExternalConnection: Removes an existing external connection from a repository.

  • GetAuthorizationToken: Generates a temporary authorization token for accessing repositories in the domain. The token expires the authorization period has passed. The default authorization period is 12 hours and can be customized to any length with a maximum of 12 hours.

  • GetDomainPermissionsPolicy: Returns the policy of a resource that is attached to the specified domain.

  • GetPackageVersionAsset: Returns the contents of an asset that is in a package version.

  • GetPackageVersionReadme: Gets the readme file or descriptive text for a package version.

  • GetRepositoryEndpoint: Returns the endpoint of a repository for a specific package format. A repository has one endpoint for each package format:

    • npm

    • pypi

    • maven

  • GetRepositoryPermissionsPolicy: Returns the resource policy that is set on a repository.

  • ListDomains: Returns a list of DomainSummary objects. Each returned DomainSummary object contains information about a domain.

  • ListPackages: Lists the packages in a repository.

  • ListPackageVersionAssets: Lists the assets for a given package version.

  • ListPackageVersionDependencies: Returns a list of the direct dependencies for a package version.

  • ListPackageVersions: Returns a list of package versions for a specified package in a repository.

  • ListRepositories: Returns a list of repositories owned by the AWS account that called this method.

  • ListRepositoriesInDomain: Returns a list of the repositories in a domain.

  • PutDomainPermissionsPolicy: Attaches a resource policy to a domain.

  • PutRepositoryPermissionsPolicy: Sets the resource policy on a repository that specifies permissions to access it.

  • UpdatePackageVersionsStatus: Updates the status of one or more versions of a package.

  • UpdateRepository: Updates the properties of a repository.

" + "documentation":"

AWS CodeArtifact is a fully managed artifact repository compatible with language-native package managers and build tools such as npm, Apache Maven, and pip. You can use CodeArtifact to share packages with development teams and pull packages. Packages can be pulled from both public and CodeArtifact repositories. You can also create an upstream relationship between a CodeArtifact repository and another repository, which effectively merges their contents from the point of view of a package manager client.

AWS CodeArtifact Components

Use the information in this guide to help you work with the following CodeArtifact components:

  • Repository: A CodeArtifact repository contains a set of package versions, each of which maps to a set of assets, or files. Repositories are polyglot, so a single repository can contain packages of any supported type. Each repository exposes endpoints for fetching and publishing packages using tools like the npm CLI, the Maven CLI ( mvn ), and pip .

  • Domain: Repositories are aggregated into a higher-level entity known as a domain. All package assets and metadata are stored in the domain, but are consumed through repositories. A given package asset, such as a Maven JAR file, is stored once per domain, no matter how many repositories it's present in. All of the assets and metadata in a domain are encrypted with the same customer master key (CMK) stored in AWS Key Management Service (AWS KMS).

    Each repository is a member of a single domain and can't be moved to a different domain.

    The domain allows organizational policy to be applied across multiple repositories, such as which accounts can access repositories in the domain, and which public repositories can be used as sources of packages.

    Although an organization can have multiple domains, we recommend a single production domain that contains all published artifacts so that teams can find and share packages across their organization.

  • Package: A package is a bundle of software and the metadata required to resolve dependencies and install the software. CodeArtifact supports npm, PyPI, and Maven package formats.

    In CodeArtifact, a package consists of:

    • A name (for example, webpack is the name of a popular npm package)

    • An optional namespace (for example, @types in @types/node)

    • A set of versions (for example, 1.0.0, 1.0.1, 1.0.2, etc.)

    • Package-level metadata (for example, npm tags)

  • Package version: A version of a package, such as @types/node 12.6.9. The version number format and semantics vary for different package formats. For example, npm package versions must conform to the Semantic Versioning specification. In CodeArtifact, a package version consists of the version identifier, metadata at the package version level, and a set of assets.

  • Upstream repository: One repository is upstream of another when the package versions in it can be accessed from the repository endpoint of the downstream repository, effectively merging the contents of the two repositories from the point of view of a client. CodeArtifact allows creating an upstream relationship between two repositories.

  • Asset: An individual file stored in CodeArtifact associated with a package version, such as an npm .tgz file or Maven POM and JAR files.

CodeArtifact supports these operations:

  • AssociateExternalConnection: Adds an existing external connection to a repository.

  • CopyPackageVersions: Copies package versions from one repository to another repository in the same domain.

  • CreateDomain: Creates a domain

  • CreateRepository: Creates a CodeArtifact repository in a domain.

  • DeleteDomain: Deletes a domain. You cannot delete a domain that contains repositories.

  • DeleteDomainPermissionsPolicy: Deletes the resource policy that is set on a domain.

  • DeletePackageVersions: Deletes versions of a package. After a package has been deleted, it can be republished, but its assets and metadata cannot be restored because they have been permanently removed from storage.

  • DeleteRepository: Deletes a repository.

  • DeleteRepositoryPermissionsPolicy: Deletes the resource policy that is set on a repository.

  • DescribeDomain: Returns a DomainDescription object that contains information about the requested domain.

  • DescribePackageVersion: Returns a PackageVersionDescription object that contains details about a package version.

  • DescribeRepository: Returns a RepositoryDescription object that contains detailed information about the requested repository.

  • DisposePackageVersions: Disposes versions of a package. A package version with the status Disposed cannot be restored because they have been permanently removed from storage.

  • DisassociateExternalConnection: Removes an existing external connection from a repository.

  • GetAuthorizationToken: Generates a temporary authorization token for accessing repositories in the domain. The token expires the authorization period has passed. The default authorization period is 12 hours and can be customized to any length with a maximum of 12 hours.

  • GetDomainPermissionsPolicy: Returns the policy of a resource that is attached to the specified domain.

  • GetPackageVersionAsset: Returns the contents of an asset that is in a package version.

  • GetPackageVersionReadme: Gets the readme file or descriptive text for a package version.

  • GetRepositoryEndpoint: Returns the endpoint of a repository for a specific package format. A repository has one endpoint for each package format:

    • npm

    • pypi

    • maven

  • GetRepositoryPermissionsPolicy: Returns the resource policy that is set on a repository.

  • ListDomains: Returns a list of DomainSummary objects. Each returned DomainSummary object contains information about a domain.

  • ListPackages: Lists the packages in a repository.

  • ListPackageVersionAssets: Lists the assets for a given package version.

  • ListPackageVersionDependencies: Returns a list of the direct dependencies for a package version.

  • ListPackageVersions: Returns a list of package versions for a specified package in a repository.

  • ListRepositories: Returns a list of repositories owned by the AWS account that called this method.

  • ListRepositoriesInDomain: Returns a list of the repositories in a domain.

  • PutDomainPermissionsPolicy: Attaches a resource policy to a domain.

  • PutRepositoryPermissionsPolicy: Sets the resource policy on a repository that specifies permissions to access it.

  • UpdatePackageVersionsStatus: Updates the status of one or more versions of a package.

  • UpdateRepository: Updates the properties of a repository.

" } From a75a8410054b25752e20369f48805e7becb9107f Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 29 Oct 2020 18:23:04 +0000 Subject: [PATCH 091/339] AWS Storage Gateway Update: Adding support for access based enumeration on SMB file shares, file share visibility on SMB file shares, and file upload notifications for all file shares --- .../feature-AWSStorageGateway-1308059.json | 6 ++ .../codegen-resources/service-2.json | 84 ++++++++++++++++++- 2 files changed, 88 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AWSStorageGateway-1308059.json diff --git a/.changes/next-release/feature-AWSStorageGateway-1308059.json b/.changes/next-release/feature-AWSStorageGateway-1308059.json new file mode 100644 index 000000000000..8626ca3017c9 --- /dev/null +++ b/.changes/next-release/feature-AWSStorageGateway-1308059.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Storage Gateway", + "contributor": "", + "description": "Adding support for access based enumeration on SMB file shares, file share visibility on SMB file shares, and file upload notifications for all file shares" +} diff --git a/services/storagegateway/src/main/resources/codegen-resources/service-2.json b/services/storagegateway/src/main/resources/codegen-resources/service-2.json index 8468f4f927dd..24663ef93b4d 100644 --- a/services/storagegateway/src/main/resources/codegen-resources/service-2.json +++ b/services/storagegateway/src/main/resources/codegen-resources/service-2.json @@ -1090,7 +1090,7 @@ {"shape":"InvalidGatewayRequestException"}, {"shape":"InternalServerError"} ], - "documentation":"

Updates a Network File System (NFS) file share. This operation is only supported in the file gateway type.

To leave a file share field unchanged, set the corresponding input field to null.

Updates the following file share setting:

  • Default storage class for your S3 bucket

  • Metadata defaults for your S3 bucket

  • Allowed NFS clients for your file share

  • Squash settings

  • Write status of your file share

To leave a file share field unchanged, set the corresponding input field to null. This operation is only supported in file gateways.

" + "documentation":"

Updates a Network File System (NFS) file share. This operation is only supported in the file gateway type.

To leave a file share field unchanged, set the corresponding input field to null.

Updates the following file share settings:

  • Default storage class for your S3 bucket

  • Metadata defaults for your S3 bucket

  • Allowed NFS clients for your file share

  • Squash settings

  • Write status of your file share

" }, "UpdateSMBFileShare":{ "name":"UpdateSMBFileShare", @@ -1104,7 +1104,21 @@ {"shape":"InvalidGatewayRequestException"}, {"shape":"InternalServerError"} ], - "documentation":"

Updates a Server Message Block (SMB) file share.

To leave a file share field unchanged, set the corresponding input field to null. This operation is only supported for file gateways.

File gateways require AWS Security Token Service (AWS STS) to be activated to enable you to create a file share. Make sure that AWS STS is activated in the AWS Region you are creating your file gateway in. If AWS STS is not activated in this AWS Region, activate it. For information about how to activate AWS STS, see Activating and deactivating AWS STS in an AWS Region in the AWS Identity and Access Management User Guide.

File gateways don't support creating hard or symbolic links on a file share.

" + "documentation":"

Updates a Server Message Block (SMB) file share. This operation is only supported for file gateways.

To leave a file share field unchanged, set the corresponding input field to null.

File gateways require AWS Security Token Service (AWS STS) to be activated to enable you to create a file share. Make sure that AWS STS is activated in the AWS Region you are creating your file gateway in. If AWS STS is not activated in this AWS Region, activate it. For information about how to activate AWS STS, see Activating and deactivating AWS STS in an AWS Region in the AWS Identity and Access Management User Guide.

File gateways don't support creating hard or symbolic links on a file share.

" + }, + "UpdateSMBFileShareVisibility":{ + "name":"UpdateSMBFileShareVisibility", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateSMBFileShareVisibilityInput"}, + "output":{"shape":"UpdateSMBFileShareVisibilityOutput"}, + "errors":[ + {"shape":"InvalidGatewayRequestException"}, + {"shape":"InternalServerError"} + ], + "documentation":"

Controls whether the shares on a gateway are visible in a net view or browse list.

" }, "UpdateSMBSecurityStrategy":{ "name":"UpdateSMBSecurityStrategy", @@ -1774,6 +1788,10 @@ "CacheAttributes":{ "shape":"CacheAttributes", "documentation":"

Refresh cache information.

" + }, + "NotificationPolicy":{ + "shape":"NotificationPolicy", + "documentation":"

The notification policy of the file share.

" } }, "documentation":"

CreateNFSFileShareInput

" @@ -1845,6 +1863,10 @@ "shape":"Boolean", "documentation":"

Set this value to true to enable access control list (ACL) on the SMB file share. Set it to false to map file and directory permissions to the POSIX permissions.

For more information, see Using Microsoft Windows ACLs to control access to an SMB file share in the AWS Storage Gateway User Guide.

Valid Values: true | false

" }, + "AccessBasedEnumeration":{ + "shape":"Boolean", + "documentation":"

The files and folders on this share will only be visible to users with read access.

" + }, "AdminUserList":{ "shape":"FileShareUserList", "documentation":"

A list of users or groups in the Active Directory that will be granted administrator privileges on the file share. These users can do all file operations as the super-user. Acceptable formats include: DOMAIN\\User1, user1, @group1, and @DOMAIN\\group1.

Use this option very carefully, because any user in this list can do anything they like on the file share, regardless of file permissions.

" @@ -1880,6 +1902,10 @@ "CacheAttributes":{ "shape":"CacheAttributes", "documentation":"

Refresh cache information.

" + }, + "NotificationPolicy":{ + "shape":"NotificationPolicy", + "documentation":"

The notification policy of the file share.

" } }, "documentation":"

CreateSMBFileShareInput

" @@ -2733,6 +2759,10 @@ "SMBSecurityStrategy":{ "shape":"SMBSecurityStrategy", "documentation":"

The type of security strategy that was specified for file gateway.

  • ClientSpecified: If you use this option, requests are established based on what is negotiated by the client. This option is recommended when you want to maximize compatibility across different clients in your environment.

  • MandatorySigning: If you use this option, file gateway only allows connections from SMBv2 or SMBv3 clients that have signing enabled. This option works with SMB clients on Microsoft Windows Vista, Windows Server 2008 or newer.

  • MandatoryEncryption: If you use this option, file gateway only allows connections from SMBv3 clients that have encryption enabled. This option is highly recommended for environments that handle sensitive data. This option works with SMB clients on Microsoft Windows 8, Windows Server 2012 or newer.

" + }, + "FileSharesVisible":{ + "shape":"Boolean", + "documentation":"

The shares on this gateway appear when listing shares.

" } } }, @@ -3871,6 +3901,10 @@ "CacheAttributes":{ "shape":"CacheAttributes", "documentation":"

Refresh cache information.

" + }, + "NotificationPolicy":{ + "shape":"NotificationPolicy", + "documentation":"

The notification policy of the file share.

" } }, "documentation":"

The Unix file permissions and ownership information assigned, by default, to native S3 objects when file gateway discovers them in S3 buckets. This operation is only supported in file gateways.

" @@ -3912,6 +3946,12 @@ "max":2048, "min":1 }, + "NotificationPolicy":{ + "type":"string", + "max":100, + "min":2, + "pattern":"^\\{[\\w\\s:\\{\\}\\[\\]\"]*}$" + }, "NotifyWhenUploadedInput":{ "type":"structure", "required":["FileShareARN"], @@ -4224,6 +4264,10 @@ "shape":"Boolean", "documentation":"

If this value is set to true, it indicates that access control list (ACL) is enabled on the SMB file share. If it is set to false, it indicates that file and directory permissions are mapped to the POSIX permission.

For more information, see Using Microsoft Windows ACLs to control access to an SMB file share in the AWS Storage Gateway User Guide.

" }, + "AccessBasedEnumeration":{ + "shape":"Boolean", + "documentation":"

Indicates whether AccessBasedEnumeration is enabled.

" + }, "AdminUserList":{ "shape":"FileShareUserList", "documentation":"

A list of users or groups in the Active Directory that have administrator rights to the file share. A group must be prefixed with the @ character. Acceptable formats include: DOMAIN\\User1, user1, @group1, and @DOMAIN\\group1. Can only be set if Authentication is set to ActiveDirectory.

" @@ -4256,6 +4300,10 @@ "CacheAttributes":{ "shape":"CacheAttributes", "documentation":"

Refresh cache information.

" + }, + "NotificationPolicy":{ + "shape":"NotificationPolicy", + "documentation":"

The notification policy of the file share.

" } }, "documentation":"

The Windows file permissions and ownership information assigned, by default, to native S3 objects when file gateway discovers them in S3 buckets. This operation is only supported for file gateways.

" @@ -4985,6 +5033,10 @@ "CacheAttributes":{ "shape":"CacheAttributes", "documentation":"

Refresh cache information.

" + }, + "NotificationPolicy":{ + "shape":"NotificationPolicy", + "documentation":"

The notification policy of the file share.

" } }, "documentation":"

UpdateNFSFileShareInput

" @@ -5039,6 +5091,10 @@ "shape":"Boolean", "documentation":"

Set this value to true to enable access control list (ACL) on the SMB file share. Set it to false to map file and directory permissions to the POSIX permissions.

For more information, see Using Microsoft Windows ACLs to control access to an SMB file share in the AWS Storage Gateway User Guide.

Valid Values: true | false

" }, + "AccessBasedEnumeration":{ + "shape":"Boolean", + "documentation":"

The files and folders on this share will only be visible to users with read access.

" + }, "AdminUserList":{ "shape":"FileShareUserList", "documentation":"

A list of users or groups in the Active Directory that have administrator rights to the file share. A group must be prefixed with the @ character. Acceptable formats include: DOMAIN\\User1, user1, @group1, and @DOMAIN\\group1. Can only be set if Authentication is set to ActiveDirectory.

" @@ -5066,6 +5122,10 @@ "CacheAttributes":{ "shape":"CacheAttributes", "documentation":"

Refresh cache information.

" + }, + "NotificationPolicy":{ + "shape":"NotificationPolicy", + "documentation":"

The notification policy of the file share.

" } }, "documentation":"

UpdateSMBFileShareInput

" @@ -5080,6 +5140,26 @@ }, "documentation":"

UpdateSMBFileShareOutput

" }, + "UpdateSMBFileShareVisibilityInput":{ + "type":"structure", + "required":[ + "GatewayARN", + "FileSharesVisible" + ], + "members":{ + "GatewayARN":{"shape":"GatewayARN"}, + "FileSharesVisible":{ + "shape":"Boolean", + "documentation":"

The shares on this gateway appear when listing shares.

" + } + } + }, + "UpdateSMBFileShareVisibilityOutput":{ + "type":"structure", + "members":{ + "GatewayARN":{"shape":"GatewayARN"} + } + }, "UpdateSMBSecurityStrategyInput":{ "type":"structure", "required":[ From 2f2f5c10ea1839803b3e70b77cb044d49d1cd2cc Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 29 Oct 2020 18:23:04 +0000 Subject: [PATCH 092/339] Amazon Elastic Compute Cloud Update: Support for Appliance mode on Transit Gateway that simplifies deployment of stateful network appliances. Added support for AWS Client VPN Self-Service Portal. --- ...ure-AmazonElasticComputeCloud-eac2907.json | 6 +++ .../codegen-resources/service-2.json | 53 ++++++++++++++++++- 2 files changed, 57 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-eac2907.json diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-eac2907.json b/.changes/next-release/feature-AmazonElasticComputeCloud-eac2907.json new file mode 100644 index 000000000000..b6bed8a6026c --- /dev/null +++ b/.changes/next-release/feature-AmazonElasticComputeCloud-eac2907.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "Support for Appliance mode on Transit Gateway that simplifies deployment of stateful network appliances. Added support for AWS Client VPN Self-Service Portal." +} diff --git a/services/ec2/src/main/resources/codegen-resources/service-2.json b/services/ec2/src/main/resources/codegen-resources/service-2.json index 2ade6cc8763f..1826f87171cf 100755 --- a/services/ec2/src/main/resources/codegen-resources/service-2.json +++ b/services/ec2/src/main/resources/codegen-resources/service-2.json @@ -4745,6 +4745,13 @@ "off" ] }, + "ApplianceModeSupportValue":{ + "type":"string", + "enum":[ + "enable", + "disable" + ] + }, "ApplySecurityGroupsToClientVpnTargetNetworkRequest":{ "type":"structure", "required":[ @@ -6981,7 +6988,7 @@ "locationName":"federatedAuthentication" } }, - "documentation":"

Describes the authentication methods used by a Client VPN endpoint. For more information, see Authentication in the AWS Client VPN Administrator Guide.

" + "documentation":"

Describes the authentication methods used by a Client VPN endpoint. For more information, see Authentication in the AWS Client VPN Administrator Guide.

" }, "ClientVpnAuthenticationList":{ "type":"list", @@ -7251,6 +7258,11 @@ "shape":"VpcId", "documentation":"

The ID of the VPC.

", "locationName":"vpcId" + }, + "SelfServicePortalUrl":{ + "shape":"String", + "documentation":"

The URL of the self-service portal.

", + "locationName":"selfServicePortalUrl" } }, "documentation":"

Describes a Client VPN endpoint.

" @@ -8040,6 +8052,10 @@ "VpcId":{ "shape":"VpcId", "documentation":"

The ID of the VPC to associate with the Client VPN endpoint. If no security group IDs are specified in the request, the default security group for the VPC is applied.

" + }, + "SelfServicePortal":{ + "shape":"SelfServicePortal", + "documentation":"

Specify whether to enable the self-service portal for the Client VPN endpoint.

Default Value: enabled

" } } }, @@ -10061,6 +10077,10 @@ "Ipv6Support":{ "shape":"Ipv6SupportValue", "documentation":"

Enable or disable IPv6 support. The default is enable.

" + }, + "ApplianceModeSupport":{ + "shape":"ApplianceModeSupportValue", + "documentation":"

Enable or disable support for appliance mode. If enabled, a traffic flow between a source and destination uses the same Availability Zone for the VPC attachment for the lifetime of that flow. The default is disable.

" } }, "documentation":"

Describes the options for a VPC attachment.

" @@ -19388,9 +19408,14 @@ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the IAM SAML identity provider.

", "locationName":"samlProviderArn" + }, + "SelfServiceSamlProviderArn":{ + "shape":"String", + "documentation":"

The Amazon Resource Name (ARN) of the IAM SAML identity provider for the self-service portal.

", + "locationName":"selfServiceSamlProviderArn" } }, - "documentation":"

Describes the IAM SAML identity provider used for federated authentication.

" + "documentation":"

Describes the IAM SAML identity providers used for federated authentication.

" }, "FederatedAuthenticationRequest":{ "type":"structure", @@ -19398,6 +19423,10 @@ "SAMLProviderArn":{ "shape":"String", "documentation":"

The Amazon Resource Name (ARN) of the IAM SAML identity provider.

" + }, + "SelfServiceSAMLProviderArn":{ + "shape":"String", + "documentation":"

The Amazon Resource Name (ARN) of the IAM SAML identity provider for the self-service portal.

" } }, "documentation":"

The IAM SAML identity provider used for federated authentication.

" @@ -26710,6 +26739,10 @@ "VpcId":{ "shape":"VpcId", "documentation":"

The ID of the VPC to associate with the Client VPN endpoint.

" + }, + "SelfServicePortal":{ + "shape":"SelfServicePortal", + "documentation":"

Specify whether to enable the self-service portal for the Client VPN endpoint.

" } } }, @@ -27836,6 +27869,10 @@ "Ipv6Support":{ "shape":"Ipv6SupportValue", "documentation":"

Enable or disable IPv6 support. The default is enable.

" + }, + "ApplianceModeSupport":{ + "shape":"ApplianceModeSupportValue", + "documentation":"

Enable or disable support for appliance mode. If enabled, a traffic flow between a source and destination uses the same Availability Zone for the VPC attachment for the lifetime of that flow. The default is disable.

" } }, "documentation":"

Describes the options for a VPC attachment.

" @@ -34174,6 +34211,13 @@ "locationName":"SecurityGroup" } }, + "SelfServicePortal":{ + "type":"string", + "enum":[ + "enabled", + "disabled" + ] + }, "SendDiagnosticInterruptRequest":{ "type":"structure", "required":["InstanceId"], @@ -37700,6 +37744,11 @@ "shape":"Ipv6SupportValue", "documentation":"

Indicates whether IPv6 support is disabled.

", "locationName":"ipv6Support" + }, + "ApplianceModeSupport":{ + "shape":"ApplianceModeSupportValue", + "documentation":"

Indicates whether appliance mode support is enabled.

", + "locationName":"applianceModeSupport" } }, "documentation":"

Describes the VPC attachment options.

" From a3c63d6308a685a4a20003e279c3db776478975f Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 29 Oct 2020 18:23:01 +0000 Subject: [PATCH 093/339] Amazon Simple Email Service Update: This release enables customers to manage their own contact lists and end-user subscription preferences. --- ...ture-AmazonSimpleEmailService-4e7fb92.json | 6 + .../codegen-resources/paginators-1.json | 10 + .../codegen-resources/service-2.json | 698 +++++++++++++++++- 3 files changed, 710 insertions(+), 4 deletions(-) create mode 100644 .changes/next-release/feature-AmazonSimpleEmailService-4e7fb92.json diff --git a/.changes/next-release/feature-AmazonSimpleEmailService-4e7fb92.json b/.changes/next-release/feature-AmazonSimpleEmailService-4e7fb92.json new file mode 100644 index 000000000000..c27f1fd27d4e --- /dev/null +++ b/.changes/next-release/feature-AmazonSimpleEmailService-4e7fb92.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Simple Email Service", + "contributor": "", + "description": "This release enables customers to manage their own contact lists and end-user subscription preferences." +} diff --git a/services/sesv2/src/main/resources/codegen-resources/paginators-1.json b/services/sesv2/src/main/resources/codegen-resources/paginators-1.json index 6acdcfdb4384..3d39be48f44a 100644 --- a/services/sesv2/src/main/resources/codegen-resources/paginators-1.json +++ b/services/sesv2/src/main/resources/codegen-resources/paginators-1.json @@ -10,6 +10,16 @@ "output_token": "NextToken", "limit_key": "PageSize" }, + "ListContactLists": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "PageSize" + }, + "ListContacts": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "PageSize" + }, "ListCustomVerificationEmailTemplates": { "input_token": "NextToken", "output_token": "NextToken", diff --git a/services/sesv2/src/main/resources/codegen-resources/service-2.json b/services/sesv2/src/main/resources/codegen-resources/service-2.json index 216e43cf4cc4..f165ed3bb91b 100644 --- a/services/sesv2/src/main/resources/codegen-resources/service-2.json +++ b/services/sesv2/src/main/resources/codegen-resources/service-2.json @@ -48,6 +48,38 @@ ], "documentation":"

Create an event destination. Events include message sends, deliveries, opens, clicks, bounces, and complaints. Event destinations are places that you can send information about these events to. For example, you can send event data to Amazon SNS to receive notifications when you receive bounces or complaints, or you can use Amazon Kinesis Data Firehose to stream data to Amazon S3 for long-term storage.

A single configuration set can include more than one event destination.

" }, + "CreateContact":{ + "name":"CreateContact", + "http":{ + "method":"POST", + "requestUri":"/v2/email/contact-lists/{ContactListName}/contacts" + }, + "input":{"shape":"CreateContactRequest"}, + "output":{"shape":"CreateContactResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"NotFoundException"}, + {"shape":"AlreadyExistsException"} + ], + "documentation":"

Creates a contact, which is an end-user who is receiving the email, and adds them to a contact list.

" + }, + "CreateContactList":{ + "name":"CreateContactList", + "http":{ + "method":"POST", + "requestUri":"/v2/email/contact-lists" + }, + "input":{"shape":"CreateContactListRequest"}, + "output":{"shape":"CreateContactListResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"AlreadyExistsException"}, + {"shape":"LimitExceededException"} + ], + "documentation":"

Creates a contact list.

" + }, "CreateCustomVerificationEmailTemplate":{ "name":"CreateCustomVerificationEmailTemplate", "http":{ @@ -199,6 +231,37 @@ ], "documentation":"

Delete an event destination.

Events include message sends, deliveries, opens, clicks, bounces, and complaints. Event destinations are places that you can send information about these events to. For example, you can send event data to Amazon SNS to receive notifications when you receive bounces or complaints, or you can use Amazon Kinesis Data Firehose to stream data to Amazon S3 for long-term storage.

" }, + "DeleteContact":{ + "name":"DeleteContact", + "http":{ + "method":"DELETE", + "requestUri":"/v2/email/contact-lists/{ContactListName}/contacts/{EmailAddress}" + }, + "input":{"shape":"DeleteContactRequest"}, + "output":{"shape":"DeleteContactResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"NotFoundException"} + ], + "documentation":"

Removes a contact from a contact list.

" + }, + "DeleteContactList":{ + "name":"DeleteContactList", + "http":{ + "method":"DELETE", + "requestUri":"/v2/email/contact-lists/{ContactListName}" + }, + "input":{"shape":"DeleteContactListRequest"}, + "output":{"shape":"DeleteContactListResponse"}, + "errors":[ + {"shape":"TooManyRequestsException"}, + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"ConcurrentModificationException"} + ], + "documentation":"

Deletes a contact list and all of the contacts on that list.

" + }, "DeleteCustomVerificationEmailTemplate":{ "name":"DeleteCustomVerificationEmailTemplate", "http":{ @@ -350,6 +413,36 @@ ], "documentation":"

Retrieve a list of event destinations that are associated with a configuration set.

Events include message sends, deliveries, opens, clicks, bounces, and complaints. Event destinations are places that you can send information about these events to. For example, you can send event data to Amazon SNS to receive notifications when you receive bounces or complaints, or you can use Amazon Kinesis Data Firehose to stream data to Amazon S3 for long-term storage.

" }, + "GetContact":{ + "name":"GetContact", + "http":{ + "method":"GET", + "requestUri":"/v2/email/contact-lists/{ContactListName}/contacts/{EmailAddress}" + }, + "input":{"shape":"GetContactRequest"}, + "output":{"shape":"GetContactResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"NotFoundException"} + ], + "documentation":"

Returns a contact from a contact list.

" + }, + "GetContactList":{ + "name":"GetContactList", + "http":{ + "method":"GET", + "requestUri":"/v2/email/contact-lists/{ContactListName}" + }, + "input":{"shape":"GetContactListRequest"}, + "output":{"shape":"GetContactListResponse"}, + "errors":[ + {"shape":"TooManyRequestsException"}, + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"} + ], + "documentation":"

Returns contact list metadata. It does not return any information about the contacts present in the list.

" + }, "GetCustomVerificationEmailTemplate":{ "name":"GetCustomVerificationEmailTemplate", "http":{ @@ -544,6 +637,35 @@ ], "documentation":"

List all of the configuration sets associated with your account in the current region.

Configuration sets are groups of rules that you can apply to the emails you send. You apply a configuration set to an email by including a reference to the configuration set in the headers of the email. When you apply a configuration set to an email, all of the rules in that configuration set are applied to the email.

" }, + "ListContactLists":{ + "name":"ListContactLists", + "http":{ + "method":"GET", + "requestUri":"/v2/email/contact-lists" + }, + "input":{"shape":"ListContactListsRequest"}, + "output":{"shape":"ListContactListsResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"} + ], + "documentation":"

Lists all of the contact lists available.

" + }, + "ListContacts":{ + "name":"ListContacts", + "http":{ + "method":"GET", + "requestUri":"/v2/email/contact-lists/{ContactListName}/contacts" + }, + "input":{"shape":"ListContactsRequest"}, + "output":{"shape":"ListContactsResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"NotFoundException"} + ], + "documentation":"

Lists the contacts present in a specific contact list.

" + }, "ListCustomVerificationEmailTemplates":{ "name":"ListCustomVerificationEmailTemplates", "http":{ @@ -1048,6 +1170,38 @@ ], "documentation":"

Update the configuration of an event destination for a configuration set.

Events include message sends, deliveries, opens, clicks, bounces, and complaints. Event destinations are places that you can send information about these events to. For example, you can send event data to Amazon SNS to receive notifications when you receive bounces or complaints, or you can use Amazon Kinesis Data Firehose to stream data to Amazon S3 for long-term storage.

" }, + "UpdateContact":{ + "name":"UpdateContact", + "http":{ + "method":"PUT", + "requestUri":"/v2/email/contact-lists/{ContactListName}/contacts/{EmailAddress}" + }, + "input":{"shape":"UpdateContactRequest"}, + "output":{"shape":"UpdateContactResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"NotFoundException"}, + {"shape":"ConcurrentModificationException"} + ], + "documentation":"

Updates a contact's preferences for a list. It is not necessary to specify all existing topic preferences in the TopicPreferences object, just the ones that need updating.

" + }, + "UpdateContactList":{ + "name":"UpdateContactList", + "http":{ + "method":"PUT", + "requestUri":"/v2/email/contact-lists/{ContactListName}" + }, + "input":{"shape":"UpdateContactListRequest"}, + "output":{"shape":"UpdateContactListResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"NotFoundException"}, + {"shape":"ConcurrentModificationException"} + ], + "documentation":"

Updates contact list metadata. This operation does a complete replacement.

" + }, "UpdateCustomVerificationEmailTemplate":{ "name":"UpdateCustomVerificationEmailTemplate", "http":{ @@ -1156,6 +1310,7 @@ "exception":true }, "AmazonResourceName":{"type":"string"}, + "AttributesData":{"type":"string"}, "BadRequestException":{ "type":"structure", "members":{ @@ -1366,6 +1521,32 @@ "error":{"httpStatusCode":409}, "exception":true }, + "Contact":{ + "type":"structure", + "members":{ + "EmailAddress":{ + "shape":"EmailAddress", + "documentation":"

The contact's email address.

" + }, + "TopicPreferences":{ + "shape":"TopicPreferenceList", + "documentation":"

The contact's preference for being opted-in to or opted-out of a topic.

" + }, + "TopicDefaultPreferences":{ + "shape":"TopicPreferenceList", + "documentation":"

The default topic preferences applied to the contact.

" + }, + "UnsubscribeAll":{ + "shape":"UnsubscribeAll", + "documentation":"

A boolean value status noting if the contact is unsubscribed from all contact list topics.

" + }, + "LastUpdatedTimestamp":{ + "shape":"Timestamp", + "documentation":"

A timestamp noting the last time the contact's information was updated.

" + } + }, + "documentation":"

A contact is the end-user who is receiving the email.

" + }, "ContactLanguage":{ "type":"string", "enum":[ @@ -1373,6 +1554,46 @@ "JA" ] }, + "ContactList":{ + "type":"structure", + "members":{ + "ContactListName":{ + "shape":"ContactListName", + "documentation":"

The name of the contact list.

" + }, + "LastUpdatedTimestamp":{ + "shape":"Timestamp", + "documentation":"

A timestamp noting the last time the contact list was updated.

" + } + }, + "documentation":"

A list that contains contacts that have subscribed to a particular topic or topics.

" + }, + "ContactListDestination":{ + "type":"structure", + "required":[ + "ContactListName", + "ContactListImportAction" + ], + "members":{ + "ContactListName":{ + "shape":"ContactListName", + "documentation":"

The name of the contact list.

" + }, + "ContactListImportAction":{ + "shape":"ContactListImportAction", + "documentation":"

>The type of action that you want to perform on the addresses. Acceptable values:

  • PUT: add the addresses to the contact list. If the record already exists, it will override it with the new value.

  • DELETE: remove the addresses from the contact list.

" + } + }, + "documentation":"

An object that contains details about the action of a contact list.

" + }, + "ContactListImportAction":{ + "type":"string", + "enum":[ + "DELETE", + "PUT" + ] + }, + "ContactListName":{"type":"string"}, "Content":{ "type":"structure", "required":["Data"], @@ -1457,6 +1678,69 @@ }, "documentation":"

An HTTP 200 response if the request succeeds, or an error message if the request fails.

" }, + "CreateContactListRequest":{ + "type":"structure", + "required":["ContactListName"], + "members":{ + "ContactListName":{ + "shape":"ContactListName", + "documentation":"

The name of the contact list.

" + }, + "Topics":{ + "shape":"Topics", + "documentation":"

An interest group, theme, or label within a list. A contact list can have multiple topics.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

A description of what the contact list is about.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

The tags associated with a contact list.

" + } + } + }, + "CreateContactListResponse":{ + "type":"structure", + "members":{ + } + }, + "CreateContactRequest":{ + "type":"structure", + "required":[ + "ContactListName", + "EmailAddress" + ], + "members":{ + "ContactListName":{ + "shape":"ContactListName", + "documentation":"

The name of the contact list to which the contact should be added.

", + "location":"uri", + "locationName":"ContactListName" + }, + "EmailAddress":{ + "shape":"EmailAddress", + "documentation":"

The contact's email address.

" + }, + "TopicPreferences":{ + "shape":"TopicPreferenceList", + "documentation":"

The contact's preferences for being opted-in to or opted-out of topics.

" + }, + "UnsubscribeAll":{ + "shape":"UnsubscribeAll", + "documentation":"

A boolean value status noting if the contact is unsubscribed from all contact list topics.

" + }, + "AttributesData":{ + "shape":"AttributesData", + "documentation":"

The attribute data attached to a contact.

" + } + } + }, + "CreateContactResponse":{ + "type":"structure", + "members":{ + } + }, "CreateCustomVerificationEmailTemplateRequest":{ "type":"structure", "required":[ @@ -1836,6 +2120,49 @@ }, "documentation":"

An HTTP 200 response if the request succeeds, or an error message if the request fails.

" }, + "DeleteContactListRequest":{ + "type":"structure", + "required":["ContactListName"], + "members":{ + "ContactListName":{ + "shape":"ContactListName", + "documentation":"

The name of the contact list.

", + "location":"uri", + "locationName":"ContactListName" + } + } + }, + "DeleteContactListResponse":{ + "type":"structure", + "members":{ + } + }, + "DeleteContactRequest":{ + "type":"structure", + "required":[ + "ContactListName", + "EmailAddress" + ], + "members":{ + "ContactListName":{ + "shape":"ContactListName", + "documentation":"

The name of the contact list from which the contact should be removed.

", + "location":"uri", + "locationName":"ContactListName" + }, + "EmailAddress":{ + "shape":"EmailAddress", + "documentation":"

The contact's email address.

", + "location":"uri", + "locationName":"EmailAddress" + } + } + }, + "DeleteContactResponse":{ + "type":"structure", + "members":{ + } + }, "DeleteCustomVerificationEmailTemplateRequest":{ "type":"structure", "required":["TemplateName"], @@ -2028,6 +2355,7 @@ }, "documentation":"

Used to associate a configuration set with a dedicated IP pool.

" }, + "Description":{"type":"string"}, "Destination":{ "type":"structure", "members":{ @@ -2059,6 +2387,7 @@ "LINK_TAG" ] }, + "DisplayName":{"type":"string"}, "DkimAttributes":{ "type":"structure", "members":{ @@ -2421,7 +2750,8 @@ "OPEN", "CLICK", "RENDERING_FAILURE", - "DELIVERY_DELAY" + "DELIVERY_DELAY", + "SUBSCRIPTION" ] }, "EventTypes":{ @@ -2584,6 +2914,105 @@ }, "documentation":"

Information about a configuration set.

" }, + "GetContactListRequest":{ + "type":"structure", + "required":["ContactListName"], + "members":{ + "ContactListName":{ + "shape":"ContactListName", + "documentation":"

The name of the contact list.

", + "location":"uri", + "locationName":"ContactListName" + } + } + }, + "GetContactListResponse":{ + "type":"structure", + "members":{ + "ContactListName":{ + "shape":"ContactListName", + "documentation":"

The name of the contact list.

" + }, + "Topics":{ + "shape":"Topics", + "documentation":"

An interest group, theme, or label within a list. A contact list can have multiple topics.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

A description of what the contact list is about.

" + }, + "CreatedTimestamp":{ + "shape":"Timestamp", + "documentation":"

A timestamp noting when the contact list was created.

" + }, + "LastUpdatedTimestamp":{ + "shape":"Timestamp", + "documentation":"

A timestamp noting the last time the contact list was updated.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

The tags associated with a contact list.

" + } + } + }, + "GetContactRequest":{ + "type":"structure", + "required":[ + "ContactListName", + "EmailAddress" + ], + "members":{ + "ContactListName":{ + "shape":"ContactListName", + "documentation":"

The name of the contact list to which the contact belongs.

", + "location":"uri", + "locationName":"ContactListName" + }, + "EmailAddress":{ + "shape":"EmailAddress", + "documentation":"

The contact's email addres.

", + "location":"uri", + "locationName":"EmailAddress" + } + } + }, + "GetContactResponse":{ + "type":"structure", + "members":{ + "ContactListName":{ + "shape":"ContactListName", + "documentation":"

The name of the contact list to which the contact belongs.

" + }, + "EmailAddress":{ + "shape":"EmailAddress", + "documentation":"

The contact's email addres.

" + }, + "TopicPreferences":{ + "shape":"TopicPreferenceList", + "documentation":"

The contact's preference for being opted-in to or opted-out of a topic.>

" + }, + "TopicDefaultPreferences":{ + "shape":"TopicPreferenceList", + "documentation":"

The default topic preferences applied to the contact.

" + }, + "UnsubscribeAll":{ + "shape":"UnsubscribeAll", + "documentation":"

A boolean value status noting if the contact is unsubscribed from all contact list topics.

" + }, + "AttributesData":{ + "shape":"AttributesData", + "documentation":"

The attribute data attached to a contact.

" + }, + "CreatedTimestamp":{ + "shape":"Timestamp", + "documentation":"

A timestamp noting when the contact was created.

" + }, + "LastUpdatedTimestamp":{ + "shape":"Timestamp", + "documentation":"

A timestamp noting the last time the contact's information was updated.

" + } + } + }, "GetCustomVerificationEmailTemplateRequest":{ "type":"structure", "required":["TemplateName"], @@ -3072,11 +3501,14 @@ }, "ImportDestination":{ "type":"structure", - "required":["SuppressionListDestination"], "members":{ "SuppressionListDestination":{ "shape":"SuppressionListDestination", "documentation":"

An object that contains the action of the import job towards suppression list.

" + }, + "ContactListDestination":{ + "shape":"ContactListDestination", + "documentation":"

An object that contains the action of the import job towards a contact list.

" } }, "documentation":"

An object that contains details about the resource destination the import job is going to target.

" @@ -3084,7 +3516,10 @@ "ImportDestinationType":{ "type":"string", "documentation":"

The destination of the import job, which can be used to list import jobs that have a certain ImportDestinationType.

", - "enum":["SUPPRESSION_LIST"] + "enum":[ + "SUPPRESSION_LIST", + "CONTACT_LIST" + ] }, "ImportJobSummary":{ "type":"structure", @@ -3092,7 +3527,10 @@ "JobId":{"shape":"JobId"}, "ImportDestination":{"shape":"ImportDestination"}, "JobStatus":{"shape":"JobStatus"}, - "CreatedTimestamp":{"shape":"Timestamp"} + "CreatedTimestamp":{ + "shape":"Timestamp", + "documentation":"

The date and time when the import job was created.

" + } }, "documentation":"

A summary of the import job.

" }, @@ -3234,6 +3672,91 @@ }, "documentation":"

A list of configuration sets in your Amazon SES account in the current AWS Region.

" }, + "ListContactListsRequest":{ + "type":"structure", + "members":{ + "PageSize":{ + "shape":"MaxItems", + "documentation":"

Maximum number of contact lists to return at once. Use this parameter to paginate results. If additional contact lists exist beyond the specified limit, the NextToken element is sent in the response. Use the NextToken value in subsequent requests to retrieve additional lists.

", + "location":"querystring", + "locationName":"PageSize" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A string token indicating that there might be additional contact lists available to be listed. Use the token provided in the Response to use in the subsequent call to ListContactLists with the same parameters to retrieve the next page of contact lists.

", + "location":"querystring", + "locationName":"NextToken" + } + } + }, + "ListContactListsResponse":{ + "type":"structure", + "members":{ + "ContactLists":{ + "shape":"ListOfContactLists", + "documentation":"

The available contact lists.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A string token indicating that there might be additional contact lists available to be listed. Copy this token to a subsequent call to ListContactLists with the same parameters to retrieve the next page of contact lists.

" + } + } + }, + "ListContactsFilter":{ + "type":"structure", + "members":{ + "FilteredStatus":{ + "shape":"SubscriptionStatus", + "documentation":"

The status by which you are filtering: OPT_IN or OPT_OUT.

" + }, + "TopicFilter":{ + "shape":"TopicFilter", + "documentation":"

Used for filtering by a specific topic preference.

" + } + }, + "documentation":"

A filter that can be applied to a list of contacts.

" + }, + "ListContactsRequest":{ + "type":"structure", + "required":["ContactListName"], + "members":{ + "ContactListName":{ + "shape":"ContactListName", + "documentation":"

The name of the contact list.

", + "location":"uri", + "locationName":"ContactListName" + }, + "Filter":{ + "shape":"ListContactsFilter", + "documentation":"

A filter that can be applied to a list of contacts.

" + }, + "PageSize":{ + "shape":"MaxItems", + "documentation":"

The number of contacts that may be returned at once, which is dependent on if there are more or less contacts than the value of the PageSize. Use this parameter to paginate results. If additional contacts exist beyond the specified limit, the NextToken element is sent in the response. Use the NextToken value in subsequent requests to retrieve additional contacts.

", + "location":"querystring", + "locationName":"PageSize" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A string token indicating that there might be additional contacts available to be listed. Use the token provided in the Response to use in the subsequent call to ListContacts with the same parameters to retrieve the next page of contacts.

", + "location":"querystring", + "locationName":"NextToken" + } + } + }, + "ListContactsResponse":{ + "type":"structure", + "members":{ + "Contacts":{ + "shape":"ListOfContacts", + "documentation":"

The contacts present in a specific contact list.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A string token indicating that there might be additional contacts available to be listed. Copy this token to a subsequent call to ListContacts with the same parameters to retrieve the next page of contacts.

" + } + } + }, "ListCustomVerificationEmailTemplatesRequest":{ "type":"structure", "members":{ @@ -3487,6 +4010,29 @@ }, "documentation":"

An HTTP 200 response if the request succeeds, or an error message if the request fails.

" }, + "ListManagementOptions":{ + "type":"structure", + "required":["ContactListName"], + "members":{ + "ContactListName":{ + "shape":"ContactListName", + "documentation":"

The name of the contact list.

" + }, + "TopicName":{ + "shape":"TopicName", + "documentation":"

The name of the topic.

" + } + }, + "documentation":"

An object used to specify a list or topic to which an email belongs, which will be used when a contact chooses to unsubscribe.

" + }, + "ListOfContactLists":{ + "type":"list", + "member":{"shape":"ContactList"} + }, + "ListOfContacts":{ + "type":"list", + "member":{"shape":"Contact"} + }, "ListOfDedicatedIpPools":{ "type":"list", "member":{"shape":"PoolName"}, @@ -4419,6 +4965,10 @@ "ConfigurationSetName":{ "shape":"ConfigurationSetName", "documentation":"

The name of the configuration set that you want to use when sending the email.

" + }, + "ListManagementOptions":{ + "shape":"ListManagementOptions", + "documentation":"

An object used to specify a list or topic to which an email belongs, which will be used when a contact chooses to unsubscribe.

" } }, "documentation":"

Represents a request to send a single formatted email using Amazon SES. For more information, see the Amazon SES Developer Guide.

" @@ -4486,6 +5036,13 @@ "documentation":"

An object that defines an Amazon SNS destination for email events. You can use Amazon SNS to send notification when certain email events occur.

" }, "Subject":{"type":"string"}, + "SubscriptionStatus":{ + "type":"string", + "enum":[ + "OPT_IN", + "OPT_OUT" + ] + }, "SuccessRedirectionURL":{ "type":"string", "documentation":"

The URL that the recipient of the verification email is sent to if his or her address is successfully verified.

" @@ -4729,6 +5286,74 @@ "error":{"httpStatusCode":429}, "exception":true }, + "Topic":{ + "type":"structure", + "required":[ + "TopicName", + "DisplayName", + "DefaultSubscriptionStatus" + ], + "members":{ + "TopicName":{ + "shape":"TopicName", + "documentation":"

The name of the topic.

" + }, + "DisplayName":{ + "shape":"DisplayName", + "documentation":"

The name of the topic the contact will see.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

A description of what the topic is about, which the contact will see.

" + }, + "DefaultSubscriptionStatus":{ + "shape":"SubscriptionStatus", + "documentation":"

The default subscription status to be applied to a contact if the contact has not noted their preference for subscribing to a topic.

" + } + }, + "documentation":"

An interest group, theme, or label within a list. Lists can have multiple topics.

" + }, + "TopicFilter":{ + "type":"structure", + "members":{ + "TopicName":{ + "shape":"TopicName", + "documentation":"

The name of a topic on which you wish to apply the filter.

" + }, + "UseDefaultIfPreferenceUnavailable":{ + "shape":"UseDefaultIfPreferenceUnavailable", + "documentation":"

Notes that the default subscription status should be applied to a contact because the contact has not noted their preference for subscribing to a topic.

" + } + }, + "documentation":"

Used for filtering by a specific topic preference.

" + }, + "TopicName":{"type":"string"}, + "TopicPreference":{ + "type":"structure", + "required":[ + "TopicName", + "SubscriptionStatus" + ], + "members":{ + "TopicName":{ + "shape":"TopicName", + "documentation":"

The name of the topic.

" + }, + "SubscriptionStatus":{ + "shape":"SubscriptionStatus", + "documentation":"

The contact's subscription status to a topic which is either OPT_IN or OPT_OUT.

" + } + }, + "documentation":"

The contact's preference for being opted-in to or opted-out of a topic.

" + }, + "TopicPreferenceList":{ + "type":"list", + "member":{"shape":"TopicPreference"} + }, + "Topics":{ + "type":"list", + "member":{"shape":"Topic"} + }, "TrackingOptions":{ "type":"structure", "required":["CustomRedirectDomain"], @@ -4740,6 +5365,7 @@ }, "documentation":"

An object that defines the tracking options for a configuration set. When you use the Amazon SES API v2 to send an email, it contains an invisible image that's used to track when recipients open your email. If your email contains links, those links are changed slightly in order to track when recipients click them.

These images and links include references to a domain operated by AWS. You can optionally configure the Amazon SES to use a domain that you operate for these images and links.

" }, + "UnsubscribeAll":{"type":"boolean"}, "UntagResourceRequest":{ "type":"structure", "required":[ @@ -4799,6 +5425,69 @@ }, "documentation":"

An HTTP 200 response if the request succeeds, or an error message if the request fails.

" }, + "UpdateContactListRequest":{ + "type":"structure", + "required":["ContactListName"], + "members":{ + "ContactListName":{ + "shape":"ContactListName", + "documentation":"

The name of the contact list.

", + "location":"uri", + "locationName":"ContactListName" + }, + "Topics":{ + "shape":"Topics", + "documentation":"

An interest group, theme, or label within a list. A contact list can have multiple topics.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

A description of what the contact list is about.

" + } + } + }, + "UpdateContactListResponse":{ + "type":"structure", + "members":{ + } + }, + "UpdateContactRequest":{ + "type":"structure", + "required":[ + "ContactListName", + "EmailAddress" + ], + "members":{ + "ContactListName":{ + "shape":"ContactListName", + "documentation":"

The name of the contact list.

", + "location":"uri", + "locationName":"ContactListName" + }, + "EmailAddress":{ + "shape":"EmailAddress", + "documentation":"

The contact's email addres.

", + "location":"uri", + "locationName":"EmailAddress" + }, + "TopicPreferences":{ + "shape":"TopicPreferenceList", + "documentation":"

The contact's preference for being opted-in to or opted-out of a topic.

" + }, + "UnsubscribeAll":{ + "shape":"UnsubscribeAll", + "documentation":"

A boolean value status noting if the contact is unsubscribed from all contact list topics.

" + }, + "AttributesData":{ + "shape":"AttributesData", + "documentation":"

The attribute data attached to a contact.

" + } + } + }, + "UpdateContactResponse":{ + "type":"structure", + "members":{ + } + }, "UpdateCustomVerificationEmailTemplateRequest":{ "type":"structure", "required":[ @@ -4910,6 +5599,7 @@ "min":1, "sensitive":true }, + "UseDefaultIfPreferenceUnavailable":{"type":"boolean"}, "Volume":{ "type":"long", "documentation":"

An object that contains information about inbox placement volume.

" From bc87768eec3ad764ceac50feb4d45318290b0f04 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 29 Oct 2020 18:23:29 +0000 Subject: [PATCH 094/339] AWS Marketplace Commerce Analytics Update: Documentation updates for marketplacecommerceanalytics to specify four data sets which are deprecated. --- .../feature-AWSMarketplaceCommerceAnalytics-1b5eb00.json | 6 ++++++ .../src/main/resources/codegen-resources/service-2.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AWSMarketplaceCommerceAnalytics-1b5eb00.json diff --git a/.changes/next-release/feature-AWSMarketplaceCommerceAnalytics-1b5eb00.json b/.changes/next-release/feature-AWSMarketplaceCommerceAnalytics-1b5eb00.json new file mode 100644 index 000000000000..7b06f59b12f2 --- /dev/null +++ b/.changes/next-release/feature-AWSMarketplaceCommerceAnalytics-1b5eb00.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Marketplace Commerce Analytics", + "contributor": "", + "description": "Documentation updates for marketplacecommerceanalytics to specify four data sets which are deprecated." +} diff --git a/services/marketplacecommerceanalytics/src/main/resources/codegen-resources/service-2.json b/services/marketplacecommerceanalytics/src/main/resources/codegen-resources/service-2.json index 141550a1b623..034ca272926f 100644 --- a/services/marketplacecommerceanalytics/src/main/resources/codegen-resources/service-2.json +++ b/services/marketplacecommerceanalytics/src/main/resources/codegen-resources/service-2.json @@ -101,7 +101,7 @@ "members":{ "dataSetType":{ "shape":"DataSetType", - "documentation":"

The desired data set type.

  • customer_subscriber_hourly_monthly_subscriptions

    From 2017-09-15 to present: Available daily by 24:00 UTC.

  • customer_subscriber_annual_subscriptions

    From 2017-09-15 to present: Available daily by 24:00 UTC.

  • daily_business_usage_by_instance_type

    From 2017-09-15 to present: Available daily by 24:00 UTC.

  • daily_business_fees

    From 2017-09-15 to present: Available daily by 24:00 UTC.

  • daily_business_free_trial_conversions

    From 2017-09-15 to present: Available daily by 24:00 UTC.

  • daily_business_new_instances

    From 2017-09-15 to present: Available daily by 24:00 UTC.

  • daily_business_new_product_subscribers

    From 2017-09-15 to present: Available daily by 24:00 UTC.

  • daily_business_canceled_product_subscribers

    From 2017-09-15 to present: Available daily by 24:00 UTC.

  • monthly_revenue_billing_and_revenue_data

    From 2017-09-15 to present: Available monthly on the 15th day of the month by 24:00 UTC. Data includes metered transactions (e.g. hourly) from one month prior.

  • monthly_revenue_annual_subscriptions

    From 2017-09-15 to present: Available monthly on the 15th day of the month by 24:00 UTC. Data includes up-front software charges (e.g. annual) from one month prior.

  • monthly_revenue_field_demonstration_usage

    From 2018-03-15 to present: Available monthly on the 15th day of the month by 24:00 UTC.

  • monthly_revenue_flexible_payment_schedule

    From 2018-11-15 to present: Available monthly on the 15th day of the month by 24:00 UTC.

  • disbursed_amount_by_product

    From 2017-09-15 to present: Available every 30 days by 24:00 UTC.

  • disbursed_amount_by_instance_hours

    From 2017-09-15 to present: Available every 30 days by 24:00 UTC.

  • disbursed_amount_by_customer_geo

    From 2017-09-15 to present: Available every 30 days by 24:00 UTC.

  • disbursed_amount_by_age_of_uncollected_funds

    From 2017-09-15 to present: Available every 30 days by 24:00 UTC.

  • disbursed_amount_by_age_of_disbursed_funds

    From 2017-09-15 to present: Available every 30 days by 24:00 UTC.

  • disbursed_amount_by_age_of_past_due_funds

    From 2018-04-07 to present: Available every 30 days by 24:00 UTC.

  • disbursed_amount_by_uncollected_funds_breakdown

    From 2019-10-04 to present: Available every 30 days by 24:00 UTC.

  • sales_compensation_billed_revenue

    From 2017-09-15 to present: Available monthly on the 15th day of the month by 24:00 UTC. Data includes metered transactions (e.g. hourly) from one month prior, and up-front software charges (e.g. annual) from one month prior.

  • us_sales_and_use_tax_records

    From 2017-09-15 to present: Available monthly on the 15th day of the month by 24:00 UTC.

" + "documentation":"

The desired data set type.

  • customer_subscriber_hourly_monthly_subscriptions

    From 2017-09-15 to present: Available daily by 24:00 UTC.

  • customer_subscriber_annual_subscriptions

    From 2017-09-15 to present: Available daily by 24:00 UTC.

  • daily_business_usage_by_instance_type

    From 2017-09-15 to present: Available daily by 24:00 UTC.

  • daily_business_fees

    From 2017-09-15 to present: Available daily by 24:00 UTC.

  • daily_business_free_trial_conversions

    From 2017-09-15 to present: Available daily by 24:00 UTC.

  • daily_business_new_instances

    From 2017-09-15 to present: Available daily by 24:00 UTC.

  • daily_business_new_product_subscribers

    From 2017-09-15 to present: Available daily by 24:00 UTC.

  • daily_business_canceled_product_subscribers

    From 2017-09-15 to present: Available daily by 24:00 UTC.

  • monthly_revenue_billing_and_revenue_data

    From 2017-09-15 to present: Available monthly on the 15th day of the month by 24:00 UTC. Data includes metered transactions (e.g. hourly) from one month prior.

  • monthly_revenue_annual_subscriptions

    From 2017-09-15 to present: Available monthly on the 15th day of the month by 24:00 UTC. Data includes up-front software charges (e.g. annual) from one month prior.

  • monthly_revenue_field_demonstration_usage

    From 2018-03-15 to present: Available monthly on the 15th day of the month by 24:00 UTC.

  • monthly_revenue_flexible_payment_schedule

    From 2018-11-15 to present: Available monthly on the 15th day of the month by 24:00 UTC.

  • disbursed_amount_by_product

    From 2017-09-15 to present: Available every 30 days by 24:00 UTC.

  • disbursed_amount_by_instance_hours

    From 2017-09-15 to present: Available every 30 days by 24:00 UTC.

  • disbursed_amount_by_customer_geo

    From 2017-09-15 to present: Available every 30 days by 24:00 UTC.

  • disbursed_amount_by_age_of_uncollected_funds

    From 2017-09-15 to present: Available every 30 days by 24:00 UTC.

  • disbursed_amount_by_age_of_disbursed_funds

    From 2017-09-15 to present: Available every 30 days by 24:00 UTC.

  • disbursed_amount_by_age_of_past_due_funds

    From 2018-04-07 to present: Available every 30 days by 24:00 UTC.

  • disbursed_amount_by_uncollected_funds_breakdown

    From 2019-10-04 to present: Available every 30 days by 24:00 UTC.

  • sales_compensation_billed_revenue

    From 2017-09-15 to present: Available monthly on the 15th day of the month by 24:00 UTC. Data includes metered transactions (e.g. hourly) from one month prior, and up-front software charges (e.g. annual) from one month prior.

  • us_sales_and_use_tax_records

    From 2017-09-15 to present: Available monthly on the 15th day of the month by 24:00 UTC.

  • disbursed_amount_by_product_with_uncollected_funds

    This data set is deprecated. Download related reports from AMMP instead!

  • customer_profile_by_industry

    This data set is deprecated. Download related reports from AMMP instead!

  • customer_profile_by_revenue

    This data set is deprecated. Download related reports from AMMP instead!

  • customer_profile_by_geography

    This data set is deprecated. Download related reports from AMMP instead!

" }, "dataSetPublicationDate":{ "shape":"DataSetPublicationDate", From 2e4c759aa8c16bb55525acd08bc452272f3db5c6 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 29 Oct 2020 18:24:58 +0000 Subject: [PATCH 095/339] Release 2.15.18. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.18.json | 48 +++++++++++++++++++ ...SMarketplaceCommerceAnalytics-1b5eb00.json | 6 --- .../feature-AWSStorageGateway-1308059.json | 6 --- .../feature-AmazonAPIGateway-3b9624f.json | 6 --- ...ure-AmazonElasticComputeCloud-eac2907.json | 6 --- ...ture-AmazonSimpleEmailService-4e7fb92.json | 6 --- .../feature-CodeArtifact-e4644b7.json | 6 --- .../feature-ElasticLoadBalancing-f672fa2.json | 6 --- CHANGELOG.md | 29 +++++++++++ README.md | 8 ++-- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- .../serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 290 files changed, 361 insertions(+), 326 deletions(-) create mode 100644 .changes/2.15.18.json delete mode 100644 .changes/next-release/feature-AWSMarketplaceCommerceAnalytics-1b5eb00.json delete mode 100644 .changes/next-release/feature-AWSStorageGateway-1308059.json delete mode 100644 .changes/next-release/feature-AmazonAPIGateway-3b9624f.json delete mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-eac2907.json delete mode 100644 .changes/next-release/feature-AmazonSimpleEmailService-4e7fb92.json delete mode 100644 .changes/next-release/feature-CodeArtifact-e4644b7.json delete mode 100644 .changes/next-release/feature-ElasticLoadBalancing-f672fa2.json diff --git a/.changes/2.15.18.json b/.changes/2.15.18.json new file mode 100644 index 000000000000..8cbbc17e81db --- /dev/null +++ b/.changes/2.15.18.json @@ -0,0 +1,48 @@ +{ + "version": "2.15.18", + "date": "2020-10-29", + "entries": [ + { + "type": "feature", + "category": "AWS Marketplace Commerce Analytics", + "contributor": "", + "description": "Documentation updates for marketplacecommerceanalytics to specify four data sets which are deprecated." + }, + { + "type": "feature", + "category": "Amazon Simple Email Service", + "contributor": "", + "description": "This release enables customers to manage their own contact lists and end-user subscription preferences." + }, + { + "type": "feature", + "category": "Elastic Load Balancing", + "contributor": "", + "description": "Application Load Balancer (ALB) now supports the gRPC protocol-version. With this release, customers can use ALB to route and load balance gRPC traffic between gRPC enabled clients and microservices." + }, + { + "type": "feature", + "category": "AWS Storage Gateway", + "contributor": "", + "description": "Adding support for access based enumeration on SMB file shares, file share visibility on SMB file shares, and file upload notifications for all file shares" + }, + { + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "Support for Appliance mode on Transit Gateway that simplifies deployment of stateful network appliances. Added support for AWS Client VPN Self-Service Portal." + }, + { + "type": "feature", + "category": "Amazon API Gateway", + "contributor": "", + "description": "Support disabling the default execute-api endpoint for REST APIs." + }, + { + "type": "feature", + "category": "CodeArtifact", + "contributor": "", + "description": "Add support for tagging of CodeArtifact domain and repository resources." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSMarketplaceCommerceAnalytics-1b5eb00.json b/.changes/next-release/feature-AWSMarketplaceCommerceAnalytics-1b5eb00.json deleted file mode 100644 index 7b06f59b12f2..000000000000 --- a/.changes/next-release/feature-AWSMarketplaceCommerceAnalytics-1b5eb00.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Marketplace Commerce Analytics", - "contributor": "", - "description": "Documentation updates for marketplacecommerceanalytics to specify four data sets which are deprecated." -} diff --git a/.changes/next-release/feature-AWSStorageGateway-1308059.json b/.changes/next-release/feature-AWSStorageGateway-1308059.json deleted file mode 100644 index 8626ca3017c9..000000000000 --- a/.changes/next-release/feature-AWSStorageGateway-1308059.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Storage Gateway", - "contributor": "", - "description": "Adding support for access based enumeration on SMB file shares, file share visibility on SMB file shares, and file upload notifications for all file shares" -} diff --git a/.changes/next-release/feature-AmazonAPIGateway-3b9624f.json b/.changes/next-release/feature-AmazonAPIGateway-3b9624f.json deleted file mode 100644 index 142ccb50b763..000000000000 --- a/.changes/next-release/feature-AmazonAPIGateway-3b9624f.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon API Gateway", - "contributor": "", - "description": "Support disabling the default execute-api endpoint for REST APIs." -} diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-eac2907.json b/.changes/next-release/feature-AmazonElasticComputeCloud-eac2907.json deleted file mode 100644 index b6bed8a6026c..000000000000 --- a/.changes/next-release/feature-AmazonElasticComputeCloud-eac2907.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Elastic Compute Cloud", - "contributor": "", - "description": "Support for Appliance mode on Transit Gateway that simplifies deployment of stateful network appliances. Added support for AWS Client VPN Self-Service Portal." -} diff --git a/.changes/next-release/feature-AmazonSimpleEmailService-4e7fb92.json b/.changes/next-release/feature-AmazonSimpleEmailService-4e7fb92.json deleted file mode 100644 index c27f1fd27d4e..000000000000 --- a/.changes/next-release/feature-AmazonSimpleEmailService-4e7fb92.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Simple Email Service", - "contributor": "", - "description": "This release enables customers to manage their own contact lists and end-user subscription preferences." -} diff --git a/.changes/next-release/feature-CodeArtifact-e4644b7.json b/.changes/next-release/feature-CodeArtifact-e4644b7.json deleted file mode 100644 index e0726c11114a..000000000000 --- a/.changes/next-release/feature-CodeArtifact-e4644b7.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "CodeArtifact", - "contributor": "", - "description": "Add support for tagging of CodeArtifact domain and repository resources." -} diff --git a/.changes/next-release/feature-ElasticLoadBalancing-f672fa2.json b/.changes/next-release/feature-ElasticLoadBalancing-f672fa2.json deleted file mode 100644 index fe1ba3f953ee..000000000000 --- a/.changes/next-release/feature-ElasticLoadBalancing-f672fa2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Elastic Load Balancing", - "contributor": "", - "description": "Application Load Balancer (ALB) now supports the gRPC protocol-version. With this release, customers can use ALB to route and load balance gRPC traffic between gRPC enabled clients and microservices." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index 62358bb8f184..a68cb12f8bae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,32 @@ +# __2.15.18__ __2020-10-29__ +## __AWS Marketplace Commerce Analytics__ + - ### Features + - Documentation updates for marketplacecommerceanalytics to specify four data sets which are deprecated. + +## __AWS Storage Gateway__ + - ### Features + - Adding support for access based enumeration on SMB file shares, file share visibility on SMB file shares, and file upload notifications for all file shares + +## __Amazon API Gateway__ + - ### Features + - Support disabling the default execute-api endpoint for REST APIs. + +## __Amazon Elastic Compute Cloud__ + - ### Features + - Support for Appliance mode on Transit Gateway that simplifies deployment of stateful network appliances. Added support for AWS Client VPN Self-Service Portal. + +## __Amazon Simple Email Service__ + - ### Features + - This release enables customers to manage their own contact lists and end-user subscription preferences. + +## __CodeArtifact__ + - ### Features + - Add support for tagging of CodeArtifact domain and repository resources. + +## __Elastic Load Balancing__ + - ### Features + - Application Load Balancer (ALB) now supports the gRPC protocol-version. With this release, customers can use ALB to route and load balance gRPC traffic between gRPC enabled clients and microservices. + # __2.15.17__ __2020-10-28__ ## __AWS IoT__ - ### Features diff --git a/README.md b/README.md index 087deb1ce506..636f1c475e2d 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.17 + 2.15.18 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.17 + 2.15.18 software.amazon.awssdk s3 - 2.15.17 + 2.15.18 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.17 + 2.15.18 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 3ddaa4808a78..b7f3431b7024 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 60199f631c74..7629cfe4bde2 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index ac4e06bb4b6e..6ac0f5fa7bd9 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.15.18-SNAPSHOT + 2.15.18 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index cc9582b5813b..4bdcbeb2c85c 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 023e23c25b96..8f67ff32a4c7 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.18-SNAPSHOT + 2.15.18 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index a64e86656084..8001dbca975c 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.18-SNAPSHOT + 2.15.18 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index cce61ac82c27..37dda2847901 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.15.18-SNAPSHOT + 2.15.18 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 93f5c86c1eb2..5cf4b037658c 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.18-SNAPSHOT + 2.15.18 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 4b81c1b0c430..7547a53c067c 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.15.18-SNAPSHOT + 2.15.18 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 745dda933059..b97018fb95fd 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.18-SNAPSHOT + 2.15.18 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 314ed4079337..374938aff301 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 3f22abbeb6a1..4baaf8a97b99 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 4fbaa4898240..f4b3b5dbf461 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.18-SNAPSHOT + 2.15.18 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 3ad6735bb8d3..b5c1c6df9547 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.18-SNAPSHOT + 2.15.18 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 86f740643226..e4dfeb503485 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index d4328638da0d..0ab0f6193e0b 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index ddba1dfb689d..8129bb7818d2 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.18-SNAPSHOT + 2.15.18 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 4769e978c0d0..cc1928bd2aeb 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.15.18-SNAPSHOT + 2.15.18 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index c3e43c7fb545..cde7dca18e00 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index e97b058415d8..523559402fe9 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.15.18-SNAPSHOT + 2.15.18 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 70b8b081cc4c..bebeeb631502 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.15.18-SNAPSHOT + 2.15.18 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 64785930b6de..89fdb261c387 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.15.18-SNAPSHOT + 2.15.18 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index ad91016d1eea..f4581f8d288d 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 097f755f966f..9b834ecc5739 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 4eee18f7769d..d5c301dc0438 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.18-SNAPSHOT + 2.15.18 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index e1ba8b31af55..3837ab0c36d5 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.18-SNAPSHOT + 2.15.18 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index ded268541d2e..6d1937d181e1 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.15.18-SNAPSHOT + 2.15.18 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 bb104beaab80..42741e1dd573 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.15.18-SNAPSHOT + 2.15.18 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 484db2f725a5..93c762746661 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.15.18-SNAPSHOT + 2.15.18 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 704f7e6625c8..c459cb6be39f 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.15.18-SNAPSHOT + 2.15.18 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index e5f33950aeb6..ca516883b1fb 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 5adf2c544696..feff9ada6e65 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.15.18-SNAPSHOT + 2.15.18 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index cf6e963dabc7..71f325a1996c 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.15.18-SNAPSHOT + 2.15.18 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index ebaaf07d6192..cf65a1adf732 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.18-SNAPSHOT + 2.15.18 metric-publishers diff --git a/pom.xml b/pom.xml index e954275b4a6c..26e3c70fe1c2 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.18-SNAPSHOT + 2.15.18 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 681b80943a45..3b6f29e89970 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.18-SNAPSHOT + 2.15.18 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index f038864a62e1..b436b0acac19 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.15.18-SNAPSHOT + 2.15.18 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 908484969a77..1ef053d9fdc8 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.18-SNAPSHOT + 2.15.18 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index b1f26bb89628..d3e2e9aa5806 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 5f4ffd2540e8..b5ce4675a464 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index b22004cca1b9..41060eec6e4d 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index f69e28b1a9d2..39b6f0e9c701 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 5194882ca2db..24f2f5d6a275 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index f186112f1bc0..29e8bd09d594 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 64171e61f175..966fe6f75352 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 603d04bc6213..608e4074af1b 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 3d9a72a7fee7..2ec150f78d1b 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 4a4b741c70e6..98145c27d67a 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index befae641b8c5..d44115421eb6 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 1c9562a12e5c..f419f2a76b3b 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index c0d27792a560..30ff08cc7e90 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 74e0d142fa6f..8fe9d8b46137 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 0561f6c92ed8..607b58722a12 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 309bde8d0e33..62438f2b121b 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 82af0c4b1915..8ed4c0636bc4 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 9b10d83fd180..4569043f6fa6 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 0ae150f2c316..13919ba2f91a 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 02b8654df2cc..da59153fd81d 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 8380d5f89635..5ec9697ce2f7 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 730a4a47df5c..8e6c081dc3e4 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 4f94bf172ba0..74f600995c73 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index d0a252201008..25f7cbada53c 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 4ccfea330f7c..192b07d17709 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index aea020d9a96d..2215d1740471 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 76e5d34d11d2..a481ec494a08 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 1f71be779a29..39e064d050f7 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index d1c902477287..8335c4130b4c 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 11ab28798ae5..d65881786560 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 49343fe6e71d..1fbadb3a6f78 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 62ac4098d4bc..bc84ccd9f3d0 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 1688026d481a..76254bb50e03 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index e730f1e78fb7..cd6bfe8ec249 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index bc70bd66740b..37c90a531ab8 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 8c7a80dd0074..6d2b3ee6265e 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index e08c98f26ef3..33af5aaa6431 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 8ce536a94b2c..0cf3d464e004 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 42605bd281c4..bffc4a33e8ac 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 7305c44bec52..a7eab54b2d73 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 0e2bdaf78da8..088c02378c95 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 888a607f3833..9fc035d6ab8d 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 58235b7f658f..3bfebef3c727 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 25aaa5d8d46b..31b1f9a20e23 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index a5475f4433b1..6db3355a5848 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 313abd01f2d8..d7faa2b4fceb 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 2f4f3f64c0ea..090642ea2c94 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index e6124fa11c9b..a416abc7c649 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 6ce02beccbf8..2f824457e759 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 0b710fd63e5c..b3217cffc20e 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index dc8315bdb4d7..d7a3a0a23489 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 9b28772a03fe..67bc22252253 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 6bc3a3756ca1..748ad489a1d0 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 40ad08514fd8..952ea35b7b20 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 5db04aefb87f..0e972db110e3 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index d553b613344b..d1b6c3fed4dd 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index a47c3c573b8d..cbee51c80dd2 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index faafca36dd37..a5da4986dca6 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index e57b2ae28202..52c6cdd010a5 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index ea8d02bfc212..805f23483f3f 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 04d57fad21c8..c35b6bfc437f 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 9ec31b7470b3..ee6af7817300 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index ef5c70397ad6..16a8339a4fd1 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index a30df6fa18fe..f463b2054926 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 21bc51a667f2..1d09f66d1bd9 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index fa1b5cf6d644..2358e781276f 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 48e35e3593a1..6e8ac0472ddd 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 8f43abaff16e..455fc8b63408 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index e00f14490ce6..61d5641e83c8 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index f6fd0abf8058..4fd0cc48fefe 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index a7379e5474bc..5960fac163fc 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 69a7af4288a2..954d65b720a6 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 7a23745db71a..0a16c9d7b667 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 772c414aa0ea..dd6d30c7becc 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index d2960af3dcb3..d563ed5077f2 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index ddde0b881f4b..cb3a38b9de7b 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 75328ac4dfd0..95bb528a8eb0 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 534bef25acc4..3e75d3f17411 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 7afc143dd690..8e5d42dcf174 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index fd97f57ea59f..3063bb038b25 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index b2ae3852d718..5b54a6dacba7 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index d0745fb92d81..49c885c801cf 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 8aec177d5113..254d8c664b5f 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index cf09ccbd9f79..e47e69514084 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 6dac704f57e6..eec507fdf91b 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index c2813de14182..4958b4822bfa 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 1aaccd6cfca3..7c0970a4a369 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index d49e78a2527d..5f61e3c4df1e 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index a34bb2118e3f..5dd906092e08 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index f6a8875298b9..a8e4d0780b3e 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 88e1c490389b..ceaedfae507b 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index a3b00d6e120f..b2c531f28282 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 2149f01f1e4b..52a5c9245a88 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 0488fc3f2daa..26c6e97ea8e8 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index da6be1f6dcd1..377c5c90a95b 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index e2a9820ce063..94a788d134f2 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 20be8ab859ee..647ac2aeef41 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 60ba8d754e3b..8684e4dddaae 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 3eae4a2b9202..47e0eb757306 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 0118fc2a465c..2172bf0e07ee 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 5af2b8b946f4..4e2ecf015cb4 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 55dc2b3a14d3..483f47f967a8 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index a926f24473d4..3ee737a3fcb2 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 7e8ba2ece30b..88ad31f8d82c 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 4b719ef6eb8b..b26d29a43f4e 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index f041d18ee488..449fdb5c2af3 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 388c74a12350..44fb290e638c 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 0a100fd890bb..39070b079bdf 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 27c9ce5f63c5..325e3dfc8446 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 697112c34207..4251d7555b7d 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index e827a13303ba..e26f3dfb5d93 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index eeb5e9b6c44b..b4106290288b 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 2eddb8ca08b5..b6519a680884 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 1aecf002d790..ae2ba4c87269 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 4ad3f3fba25f..4a46f90884f6 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 79b5cd0e6572..1f58376f6c18 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 4c7fed6fb280..f0547b06b666 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 6764b6acc15f..cfef033fe7a7 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index a6d54eb3c125..d46143c61853 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index b28cc90c6b2a..4e06256eaedb 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index de54f3702d2f..84dd11055a0b 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index cb4b7df60602..c4baa2d0114f 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 840a75b43282..d5a0f6fab62b 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 819fb22ba73f..7ac983084f26 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index d891ed144224..ad5b8024fb51 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index c0a3534b97fa..aa1994cf6ea7 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 9dd0775e9f64..447000c57506 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 8adfbe54a28e..65c51cc099c4 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 9f0dc46fa746..86d16a8ab70d 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 16e4eb553aaf..81da9cf344ea 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index f2631ddd2752..686c85b2d095 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 4be7bd847b80..714b1c88dbb6 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 4d785bad15f9..70fac104004f 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index acd9f75a4f05..5a54e86f1a25 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 163c19cb727f..5f29974d8269 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 104762db312f..ab71ee1d50a2 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 413b90779c78..bd92ebc8b23a 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 5bb2edacdf16..184dad5f016f 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 187868bba34a..6752dba8c414 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index ac43d275afad..eb0316d308b3 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 8dec527e8262..8074374805bb 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 7fb996429bdb..b3f33fd62fdb 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 28915003911a..1611367d2702 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index af13f145253b..4ded47a473d4 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 93cb42e3a035..4e401dd2f44c 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 52cbfe1fcaf7..152ab474864c 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index e34eb925a33d..207245eb9717 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index dfbe8b0175bc..00b6f12b5367 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 7e0798a7dea5..ce2e9cde8d8c 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index eeea42ed9ae5..2914b851f1d0 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 91fd4255f7f4..e92c5bf21855 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 304e5453cb25..2b0737ce5338 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 9d785f8f4842..eda2bc41fdc2 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 0b6d271e6975..d02bf514bbda 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index dce02356c42f..24a5723b2e93 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 8d607382e22c..bf9afc6bad88 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index d1383a85d940..1d1ba5965aa7 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 19401c9e8970..f54dd8c3f527 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 2cf5838738dd..722ce701b5d0 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 2778e880700e..2d63c29f11c2 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 18d184309cb4..5f06569de6c2 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 9f45bc82d02e..a628d5be561a 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index a50708453088..85e88c3378b2 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index cd9296855293..72aef8a0215c 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index a1b0dde28ffd..506b4ef3a5f8 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 9b8b9a8e26e3..88091522c8a9 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index e56426262429..503fec9ebcbb 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index c1ff4bbbfd14..316d3efa9130 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.18-SNAPSHOT + 2.15.18 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 8f0a0f59ce89..d86d731694d9 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 15e62fd104c3..aeac22a9dc6b 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 23f4563e450f..03d19d2c2815 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 754ed2403edd..02702baeb7f3 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 5ab409fd4555..41d00451578c 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index cc034c31c294..7b870fbbfe4f 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 645151fb3079..525714c445e6 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 15225afe8900..86a40bf2f125 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 1fde1ca52016..ee3d3412bd2d 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 6b467dc370bf..6482634921f6 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 96ba9dbda1c2..73d98475a3a4 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 8a40625eebdf..bad57974219a 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 4fd568e82e8c..60a353cc225c 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 06ad3987df6c..5a2e128635db 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index d82d1a30487f..ec1af14f17c6 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 5b6103a9c017..ca7bec9e2cbb 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 0c9d58769620..b1e2aaecfb67 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index a67c18c81d6f..85d7e05c0774 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 369446250411..0e0b68103210 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index ed490f63e24e..33bb78e7eedb 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 72d147536d7d..18791ce42220 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 850583d053fa..2afbd6b76da8 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 05502eeb5d6e..9758416dfddd 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 479c596de29f..851d47dbfa7e 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 8c4219748411..4b057b6a5cb6 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index fbdc5535a611..1496c7be4288 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index ccf9ae80049c..db30f72f5f87 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index ebc6ed0fde30..4cb623cb5fd9 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 0a9db8a1c2cf..448ec743586f 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 3224cdbe71c3..4bc08b5e31aa 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 51c578113533..b9b8ed677c40 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 63e2dfb4f853..98ede9abc5f1 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 9b1db56d3f1e..974d98af4f86 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 86de31fb6106..45683bbd6b81 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index a96c15eea0f0..327864e46e6a 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index b437331e35cd..979ff0d32dcb 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index ab24b685b1a0..74075a87c709 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index b0f3b519feae..77e91ce7b33e 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 6e7cd6bfb76a..b3982a37ff3b 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 3c3ed01f22bb..1169f072935f 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index d6667f77b001..82a3c55ebca5 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index b843235f94ae..6482f63c3271 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 3607dc857d69..cdc6802bfa66 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 54d543d07a18..52168b17a2fd 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index ebafc633c0d1..3375d0ab3ded 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index b38786babb0a..73c05992abd4 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index e537315849c9..c6e6e056d40b 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 0d51781f1c49..9559d5922661 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 1ef65b58f0ad..0852253b2f7e 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 1b2d2a60a23e..f129d3b1ddc2 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 2fe34c29849f..398b325fe239 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 38d01c208a2b..6f91cbd0f054 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 3a42d04198b8..61f78103a35a 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index e6183d8581d7..a1966dbccbce 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index ec4ba94f67a0..27084d769362 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index e2e673f0e2c2..202737b2a8f0 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 66c9c8cc4ee3..f095d7955f0b 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index a2ecd64c785d..f5cc59e7049d 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 9c563518bcd2..5bccebf6dc32 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index d55380669c56..1c7b6b0fe311 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 638866aa00c3..5ac0bedc23c6 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 4b380c0d3a7a..ac837f5f5afb 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 7e0e155f0084..8e90a39db70a 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18-SNAPSHOT + 2.15.18 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 0ad186e7e6f2..aa79e9bc13e0 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.15.18-SNAPSHOT + 2.15.18 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 2ba4afaf5b1b..92bea5f3459c 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.15.18-SNAPSHOT + 2.15.18 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 07a2e1723370..19a17a277e33 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.15.18-SNAPSHOT + 2.15.18 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 5d1134118431..03b3f16fcd45 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.15.18-SNAPSHOT + 2.15.18 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 605d1378a93c..b09c9b6b6db8 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.15.18-SNAPSHOT + 2.15.18 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 6e469db37511..ae2c8df125cd 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.18-SNAPSHOT + 2.15.18 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 905fb56e968d..0278abaf636d 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.15.18-SNAPSHOT + 2.15.18 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index e59542e59783..6545ea00cb30 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.15.18-SNAPSHOT + 2.15.18 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index fa0e2c54c415..4e78f03739b4 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.15.18-SNAPSHOT + 2.15.18 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 5ce4739495c0..036413ea1b80 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.15.18-SNAPSHOT + 2.15.18 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 3104112d3864..358cd43010fa 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.18-SNAPSHOT + 2.15.18 4.0.0 From c66f0a5549e087c0a646c53c434cd718f087509e Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 29 Oct 2020 19:27:42 +0000 Subject: [PATCH 096/339] Update to next snapshot version: 2.15.19-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 280 files changed, 280 insertions(+), 280 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index b7f3431b7024..a3152ce12791 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 7629cfe4bde2..bd1e65f693a2 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 6ac0f5fa7bd9..ed49567ab0f2 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.15.18 + 2.15.19-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 4bdcbeb2c85c..a16e1b523e2b 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 8f67ff32a4c7..760596b46db8 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.18 + 2.15.19-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 8001dbca975c..14f67fed272d 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.18 + 2.15.19-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 37dda2847901..ea8ece6a1724 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.15.18 + 2.15.19-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 5cf4b037658c..8661d604c8a1 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.18 + 2.15.19-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 7547a53c067c..db8d4e7bbe5f 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.15.18 + 2.15.19-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index b97018fb95fd..7de5ff545e24 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.18 + 2.15.19-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 374938aff301..e1c4f6d95527 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 4baaf8a97b99..841e4bc3085f 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index f4b3b5dbf461..b1e32ae5dafd 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.18 + 2.15.19-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index b5c1c6df9547..92203e356823 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.18 + 2.15.19-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index e4dfeb503485..396e0024f352 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 0ab0f6193e0b..c8535fc44c4c 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 8129bb7818d2..59d478be51a3 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.18 + 2.15.19-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index cc1928bd2aeb..c206a72ac4d1 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.15.18 + 2.15.19-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index cde7dca18e00..c9d51a7cc9f7 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 523559402fe9..a0f332f7303a 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.15.18 + 2.15.19-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index bebeeb631502..d97f5b6490db 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.15.18 + 2.15.19-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 89fdb261c387..6a87660a4e3d 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.15.18 + 2.15.19-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index f4581f8d288d..ea02a0d26c15 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 9b834ecc5739..f71b7e0f1aba 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index d5c301dc0438..be53979d7fdd 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.18 + 2.15.19-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 3837ab0c36d5..b6df7abecbbf 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.18 + 2.15.19-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 6d1937d181e1..d2b8f4c16f43 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.15.18 + 2.15.19-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index 42741e1dd573..0ee443df8cc5 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.15.18 + 2.15.19-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 93c762746661..0c98d2965973 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.15.18 + 2.15.19-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index c459cb6be39f..8413481fd959 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.15.18 + 2.15.19-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index ca516883b1fb..730a0de6a66e 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index feff9ada6e65..d8956a8a4e33 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.15.18 + 2.15.19-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 71f325a1996c..67db8f1c15ca 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.15.18 + 2.15.19-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index cf65a1adf732..f04d95de893e 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.18 + 2.15.19-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 26e3c70fe1c2..ec9670269314 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.18 + 2.15.19-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 3b6f29e89970..9b83bbd500fd 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.18 + 2.15.19-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index b436b0acac19..ecadce1ef369 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.15.18 + 2.15.19-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 1ef053d9fdc8..b8ef15b39ade 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.18 + 2.15.19-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index d3e2e9aa5806..bace4779b003 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index b5ce4675a464..f73b4c74e15a 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 41060eec6e4d..695ec9bc73a4 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 39b6f0e9c701..57906e908a5a 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 24f2f5d6a275..92940d3a6a41 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 29e8bd09d594..59ee68e57b2b 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 966fe6f75352..6c17e5a1ee65 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 608e4074af1b..956d39c620b3 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 2ec150f78d1b..e43dad7b73dd 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 98145c27d67a..24a0cf8530f3 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index d44115421eb6..785ccd02e0ef 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index f419f2a76b3b..8c3b99257c3f 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 30ff08cc7e90..530dc2142142 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 8fe9d8b46137..bfbfe8351e65 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 607b58722a12..3d817985b473 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 62438f2b121b..ee795c9bfe11 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 8ed4c0636bc4..30c4f65fbd98 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 4569043f6fa6..9a15a10e1449 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 13919ba2f91a..0b471a1b6221 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index da59153fd81d..d0772c68d98c 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 5ec9697ce2f7..f0e05835f8e2 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 8e6c081dc3e4..8214512de290 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 74f600995c73..6c0113e26298 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 25f7cbada53c..c760ca3c4550 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 192b07d17709..6ec97dd3e4bc 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 2215d1740471..c5b579c0afa9 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index a481ec494a08..11aa4eeb1b71 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 39e064d050f7..d4ed64f82137 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 8335c4130b4c..9833d9bb2dad 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index d65881786560..1201b2043dc5 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 1fbadb3a6f78..ba20cf9037ab 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index bc84ccd9f3d0..eb7488e99f8b 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 76254bb50e03..f026ca0e6f69 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index cd6bfe8ec249..2999903fc2b7 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 37c90a531ab8..bc12f94c7195 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 6d2b3ee6265e..3e56d0108869 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 33af5aaa6431..29157e361256 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 0cf3d464e004..b1a17e45ef65 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index bffc4a33e8ac..80d2a69d8dc1 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index a7eab54b2d73..8ed7231c8395 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 088c02378c95..cc5d608fa62e 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 9fc035d6ab8d..8410ae7b3f7b 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 3bfebef3c727..f4a0d33a318d 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 31b1f9a20e23..c2cf49baf9c9 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 6db3355a5848..ecae94a57247 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index d7faa2b4fceb..8fa219642977 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 090642ea2c94..4d9a80803515 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index a416abc7c649..4e743cc56b99 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 2f824457e759..708bac5ee1c9 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index b3217cffc20e..90404d4092a2 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index d7a3a0a23489..76080fdfcf0b 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 67bc22252253..95282e0a8354 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 748ad489a1d0..b89d6e2d16ca 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 952ea35b7b20..2947fc40dd5a 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 0e972db110e3..7667350381c8 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index d1b6c3fed4dd..b0fb534c17e0 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index cbee51c80dd2..5406e222a7b3 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index a5da4986dca6..206e97a4fc7c 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 52c6cdd010a5..c29aac4d1877 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 805f23483f3f..3e0781d27f73 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index c35b6bfc437f..6a73cb617005 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index ee6af7817300..1f26c7fcb59d 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 16a8339a4fd1..6edf98b94a6a 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index f463b2054926..caf2c20e39ab 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 1d09f66d1bd9..555ab84c4a30 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 2358e781276f..2c28afe07f25 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 6e8ac0472ddd..cf62860b9ffd 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 455fc8b63408..faa15c362529 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 61d5641e83c8..6b46136e3959 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 4fd0cc48fefe..f588584dc661 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 5960fac163fc..3a7cc26cc64e 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 954d65b720a6..9c3c55e8c41f 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 0a16c9d7b667..2de32b8281bd 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index dd6d30c7becc..14968490af58 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index d563ed5077f2..1a94729e1d37 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index cb3a38b9de7b..d96bb6af1909 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 95bb528a8eb0..023b55ce3f36 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 3e75d3f17411..484ead2c8ab9 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 8e5d42dcf174..a50441a38525 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 3063bb038b25..c9daf137a94f 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 5b54a6dacba7..41e6fcf54b8b 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 49c885c801cf..da8644ad1435 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 254d8c664b5f..1db55ed6c0d7 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index e47e69514084..179b1a8c35ba 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index eec507fdf91b..5bc43e8c1413 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 4958b4822bfa..7b2fad05bded 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 7c0970a4a369..34c8dab30613 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 5f61e3c4df1e..d9a0e1f863a4 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 5dd906092e08..982177d850c5 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index a8e4d0780b3e..845d0e968613 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index ceaedfae507b..767e2e52a1e9 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index b2c531f28282..936cb7f0f1b1 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 52a5c9245a88..2b14f2f86b69 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 26c6e97ea8e8..e5d3488c4189 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 377c5c90a95b..d45ffa104ccb 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 94a788d134f2..0be1c4b264d0 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 647ac2aeef41..002ca81acce9 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 8684e4dddaae..31413f167362 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 47e0eb757306..864c58cdd048 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 2172bf0e07ee..7cd87099d90c 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 4e2ecf015cb4..7bfced6bfaa9 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 483f47f967a8..962da1b54b06 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 3ee737a3fcb2..d4e80fcf216c 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 88ad31f8d82c..1419baeeb20d 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index b26d29a43f4e..9d820c58a320 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 449fdb5c2af3..8ea4c37ca1dd 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 44fb290e638c..81c0aed7078a 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 39070b079bdf..4ae2cdb8cc75 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 325e3dfc8446..6a7a8c502e1a 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 4251d7555b7d..02d41d9ac016 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index e26f3dfb5d93..8fc289912528 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index b4106290288b..86fb8dd3ba81 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index b6519a680884..75937d650392 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index ae2ba4c87269..2aa091b7bbba 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 4a46f90884f6..88d624006651 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 1f58376f6c18..1a6dd24ea1de 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index f0547b06b666..a029b7e4a66c 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index cfef033fe7a7..121a5b1628f8 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index d46143c61853..2e98a2dfc038 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 4e06256eaedb..d7b4d822c1d3 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 84dd11055a0b..4f6a9d1bca4f 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index c4baa2d0114f..6cb78e116ece 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index d5a0f6fab62b..51d65a6ab5a5 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 7ac983084f26..63e7775f8fd2 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index ad5b8024fb51..7a58663372bd 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index aa1994cf6ea7..7eab64f07ea3 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 447000c57506..1b9f8c250fed 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 65c51cc099c4..3e1fbda485f2 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 86d16a8ab70d..87926db187e0 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 81da9cf344ea..82c8b7cda901 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 686c85b2d095..a8b1711b7067 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 714b1c88dbb6..f99a40818e27 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 70fac104004f..9e9e30957273 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 5a54e86f1a25..eff8cecf669c 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 5f29974d8269..0e587bc2c96b 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index ab71ee1d50a2..0c882a9fd073 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index bd92ebc8b23a..ee956a50244d 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 184dad5f016f..24e1cf3a105c 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 6752dba8c414..bdbef61dc9b8 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index eb0316d308b3..73cf40dd9104 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 8074374805bb..b7fde1fcb63b 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index b3f33fd62fdb..64dc1f6b9b15 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 1611367d2702..a719cb910ffb 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 4ded47a473d4..bf3961a1eff8 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 4e401dd2f44c..7c62e674b685 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 152ab474864c..91e5786859ff 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 207245eb9717..a1c94ca26b47 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 00b6f12b5367..5514d27cef52 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index ce2e9cde8d8c..de55eb1186e6 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 2914b851f1d0..798c3e61fac8 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index e92c5bf21855..6035c702d84b 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 2b0737ce5338..e3b4354b588a 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index eda2bc41fdc2..475096018db9 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index d02bf514bbda..9645f3f5ab39 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 24a5723b2e93..d96d2036db39 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index bf9afc6bad88..a1b2d31a241e 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 1d1ba5965aa7..4395329bcd2b 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index f54dd8c3f527..070fce5f4c48 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 722ce701b5d0..7151a394f806 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 2d63c29f11c2..9a266605d1fb 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 5f06569de6c2..f7370981adaf 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index a628d5be561a..0a3a7ae38d6b 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 85e88c3378b2..cf015f891e9e 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 72aef8a0215c..22df39ca7ac2 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 506b4ef3a5f8..4e1de7ff05cd 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 88091522c8a9..e1021c071972 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 503fec9ebcbb..5723bf72cf0c 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 316d3efa9130..ff2450c56b75 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.18 + 2.15.19-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index d86d731694d9..3f55d6224dc0 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index aeac22a9dc6b..9f80b6edb9d9 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 03d19d2c2815..f244101d9f8e 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 02702baeb7f3..041a67a30f35 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 41d00451578c..7de44d704cc5 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 7b870fbbfe4f..09cfaa4c4d05 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 525714c445e6..c2d109085f1f 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 86a40bf2f125..628d2ddc1d2e 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index ee3d3412bd2d..7e8ccb0e8429 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 6482634921f6..32cb280a5759 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 73d98475a3a4..3328e96776f8 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index bad57974219a..aa4fb5ed2252 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 60a353cc225c..eed44695b830 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 5a2e128635db..f8cb9708e24f 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index ec1af14f17c6..f464d32f51cf 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index ca7bec9e2cbb..448b1c785b3b 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index b1e2aaecfb67..9e579c4c7cc3 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 85d7e05c0774..a137fd042302 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 0e0b68103210..0c72f259bd4c 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 33bb78e7eedb..13e0e56edc74 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 18791ce42220..dceef3b9ddb2 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 2afbd6b76da8..ccf4c6c7d3af 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 9758416dfddd..0c871b01e15c 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 851d47dbfa7e..7ce9b7b344c5 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 4b057b6a5cb6..11ff70314fb2 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 1496c7be4288..83356a02078f 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index db30f72f5f87..0e2b9b54c164 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 4cb623cb5fd9..4dc916ac2c69 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 448ec743586f..22d980a1adb2 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 4bc08b5e31aa..bb1b2f9cb82b 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index b9b8ed677c40..8dc3f67d728b 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 98ede9abc5f1..8b18e2354e8f 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 974d98af4f86..641305a651af 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 45683bbd6b81..50e3b1e6a185 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 327864e46e6a..3844d406080c 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 979ff0d32dcb..fb0b94a79a82 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 74075a87c709..1e7de4804006 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 77e91ce7b33e..92cd7bad962f 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index b3982a37ff3b..feec8e8a5e18 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 1169f072935f..9e2d6fabc447 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 82a3c55ebca5..86be6ca0344e 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 6482f63c3271..c096fafe3d95 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index cdc6802bfa66..e69b8350cb1c 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 52168b17a2fd..39824fc5bb2c 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 3375d0ab3ded..6a546736265a 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 73c05992abd4..694c08991ca9 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index c6e6e056d40b..5b0cb1144298 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 9559d5922661..e5ce7c161150 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 0852253b2f7e..27810dd30fe8 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index f129d3b1ddc2..48d89133bdf0 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 398b325fe239..d9923a761867 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 6f91cbd0f054..405c887ec53a 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 61f78103a35a..f38be2460404 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index a1966dbccbce..6607fd0a9499 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 27084d769362..6adfa165952f 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 202737b2a8f0..4c1aa7a36f1e 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index f095d7955f0b..1de5e4b9ddb7 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index f5cc59e7049d..e885e6c39673 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 5bccebf6dc32..f572d35bffee 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 1c7b6b0fe311..0098cb86749a 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 5ac0bedc23c6..9eccae77a27a 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index ac837f5f5afb..92b7c622fd0d 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 8e90a39db70a..8ae9066b4799 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.18 + 2.15.19-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index aa79e9bc13e0..bf05b3cbae87 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.15.18 + 2.15.19-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 92bea5f3459c..82b18815c302 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.15.18 + 2.15.19-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 19a17a277e33..d4d8d4ed054f 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.15.18 + 2.15.19-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 03b3f16fcd45..6952f6544a48 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.15.18 + 2.15.19-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index b09c9b6b6db8..ca5663fce4bd 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.15.18 + 2.15.19-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index ae2c8df125cd..08aca7b5fae0 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.18 + 2.15.19-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 0278abaf636d..939c03455dcc 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.15.18 + 2.15.19-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 6545ea00cb30..3f30ac5b4643 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.15.18 + 2.15.19-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 4e78f03739b4..c4ea7eb0e770 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.15.18 + 2.15.19-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 036413ea1b80..7c6b653bef57 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.15.18 + 2.15.19-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 358cd43010fa..419dd0c4936a 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.18 + 2.15.19-SNAPSHOT 4.0.0 From 870eb5057a03e95ff70cd0d6bef91c1541ae4233 Mon Sep 17 00:00:00 2001 From: John Viegas Date: Sun, 25 Oct 2020 23:26:17 -0700 Subject: [PATCH 097/339] BugFix for PR #2044 S3AsyncClient FilteringSubscriber and LimitingSubscriber Timeouts on get --- .../bugfix-AWSSDKforJavav2-d01cf23.json | 6 + .../java/utils/EmptySubscriptionTest.java | 55 ++++++ .../test/java/utils/SdkSubscriberTest.java | 160 ++++++++++++++++++ .../utils/async/FilteringSubscriber.java | 2 +- .../utils/async/LimitingSubscriber.java | 19 ++- .../internal/async/EmptySubscription.java | 63 +++++++ 6 files changed, 298 insertions(+), 7 deletions(-) create mode 100644 .changes/next-release/bugfix-AWSSDKforJavav2-d01cf23.json create mode 100644 core/sdk-core/src/test/java/utils/EmptySubscriptionTest.java create mode 100644 core/sdk-core/src/test/java/utils/SdkSubscriberTest.java create mode 100644 utils/src/main/java/software/amazon/awssdk/utils/internal/async/EmptySubscription.java diff --git a/.changes/next-release/bugfix-AWSSDKforJavav2-d01cf23.json b/.changes/next-release/bugfix-AWSSDKforJavav2-d01cf23.json new file mode 100644 index 000000000000..9062b9a61468 --- /dev/null +++ b/.changes/next-release/bugfix-AWSSDKforJavav2-d01cf23.json @@ -0,0 +1,6 @@ +{ + "category": "AWS SDK for Java v2", + "contributor": "", + "type": "bugfix", + "description": "Fixing FilteringSubscriber and LimitingSubscriber to complete when subscribing criteria is completed." +} diff --git a/core/sdk-core/src/test/java/utils/EmptySubscriptionTest.java b/core/sdk-core/src/test/java/utils/EmptySubscriptionTest.java new file mode 100644 index 000000000000..f2c9ef74030a --- /dev/null +++ b/core/sdk-core/src/test/java/utils/EmptySubscriptionTest.java @@ -0,0 +1,55 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package utils; + +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.Mock; +import org.mockito.runners.MockitoJUnitRunner; +import org.reactivestreams.Subscriber; +import software.amazon.awssdk.utils.internal.async.EmptySubscription; + +import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException; +import static org.mockito.Mockito.never; +import static org.mockito.Mockito.verify; + +@RunWith(MockitoJUnitRunner.class) +public class EmptySubscriptionTest { + + @Mock + private Subscriber mockSubscriber; + + @Test + public void emptySubscription_with_invalid_request() { + EmptySubscription emptySubscription = new EmptySubscription(mockSubscriber); + assertThatIllegalArgumentException().isThrownBy(() -> emptySubscription.request(-1)); + } + + @Test + public void emptySubscription_with_normal_execution() { + EmptySubscription emptySubscription = new EmptySubscription(mockSubscriber); + emptySubscription.request(1); + verify(mockSubscriber).onComplete(); + } + + @Test + public void emptySubscription_when_terminated_externally() { + EmptySubscription emptySubscription = new EmptySubscription(mockSubscriber); + emptySubscription.cancel(); + emptySubscription.request(1); + verify(mockSubscriber, never()).onComplete(); + } +} diff --git a/core/sdk-core/src/test/java/utils/SdkSubscriberTest.java b/core/sdk-core/src/test/java/utils/SdkSubscriberTest.java new file mode 100644 index 000000000000..34fb7f415cb3 --- /dev/null +++ b/core/sdk-core/src/test/java/utils/SdkSubscriberTest.java @@ -0,0 +1,160 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package utils; + +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.Mock; +import org.mockito.Mockito; +import org.mockito.runners.MockitoJUnitRunner; +import org.reactivestreams.Subscriber; +import software.amazon.awssdk.core.pagination.async.AsyncPageFetcher; +import software.amazon.awssdk.core.pagination.async.PaginatedItemsPublisher; +import software.amazon.awssdk.utils.async.LimitingSubscriber; +import software.amazon.awssdk.utils.internal.async.EmptySubscription; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Iterator; +import java.util.List; +import java.util.concurrent.CompletableFuture; +import java.util.concurrent.ExecutionException; +import java.util.concurrent.ExecutorService; +import java.util.concurrent.Executors; +import java.util.concurrent.TimeUnit; +import java.util.concurrent.TimeoutException; +import java.util.function.Function; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.mockito.Matchers.anyObject; +import static org.mockito.Mockito.*; + +@RunWith(MockitoJUnitRunner.class) +public class SdkSubscriberTest { + + public static final Function> SAMPLE_ITERATOR = response -> Arrays.asList(1, 2, 3, 4, 5, 6).listIterator(); + public static final Function> EMPTY_ITERATOR = response -> new ArrayList().listIterator(); + @Mock + AsyncPageFetcher asyncPageFetcher; + PaginatedItemsPublisher itemsPublisher; + + @Mock + Subscriber mockSubscriber; + + @Before + public void setUp() { + doReturn(CompletableFuture.completedFuture(1)) + .when(asyncPageFetcher).nextPage(null); + doReturn(false) + .when(asyncPageFetcher).hasNextPage(anyObject()); + } + + @Test + public void limitingSubscriber_with_different_limits() throws InterruptedException, ExecutionException, TimeoutException { + itemsPublisher = PaginatedItemsPublisher.builder().nextPageFetcher(asyncPageFetcher) + .iteratorFunction(SAMPLE_ITERATOR).isLastPage(false).build(); + + final List belowLimit = new ArrayList<>(); + itemsPublisher.limit(3).subscribe(e -> belowLimit.add(e)).get(5, TimeUnit.SECONDS); + assertThat(belowLimit).isEqualTo(Arrays.asList(1, 2, 3)); + + final List beyondLimit = new ArrayList<>(); + itemsPublisher.limit(33).subscribe(e -> beyondLimit.add(e)).get(5, TimeUnit.SECONDS); + assertThat(beyondLimit).isEqualTo(Arrays.asList(1, 2, 3, 4, 5, 6)); + + final List zeroLimit = new ArrayList<>(); + itemsPublisher.limit(0).subscribe(e -> zeroLimit.add(e)).get(5, TimeUnit.SECONDS); + assertThat(zeroLimit).isEqualTo(Arrays.asList()); + } + + @Test + public void filteringSubscriber_with_different_filters() throws InterruptedException, ExecutionException, TimeoutException { + itemsPublisher = PaginatedItemsPublisher.builder().nextPageFetcher(asyncPageFetcher) + .iteratorFunction(SAMPLE_ITERATOR).isLastPage(false).build(); + + final List filteredSomeList = new ArrayList<>(); + itemsPublisher.filter(i -> i % 2 == 0).subscribe(e -> filteredSomeList.add(e)).get(5, TimeUnit.SECONDS); + assertThat(filteredSomeList).isEqualTo(Arrays.asList(2, 4, 6)); + + final List filteredAllList = new ArrayList<>(); + itemsPublisher.filter(i -> i % 10 == 0).subscribe(e -> filteredAllList.add(e)).get(5, TimeUnit.SECONDS); + assertThat(filteredAllList).isEqualTo(Arrays.asList()); + + final List filteredNone = new ArrayList<>(); + itemsPublisher.filter(i -> i % 1 == 0).subscribe(e -> filteredNone.add(e)).get(5, TimeUnit.SECONDS); + assertThat(filteredNone).isEqualTo(Arrays.asList(1, 2, 3, 4, 5, 6)); + + } + + @Test + public void limit_and_filter_subscriber_chained_with_different_conditions() throws InterruptedException, ExecutionException, TimeoutException { + itemsPublisher = PaginatedItemsPublisher.builder().nextPageFetcher(asyncPageFetcher) + .iteratorFunction(SAMPLE_ITERATOR).isLastPage(false).build(); + + final List belowLimitWithFiltering = new ArrayList<>(); + itemsPublisher.limit(4).filter(i -> i % 2 == 0).subscribe(e -> belowLimitWithFiltering.add(e)).get(5, TimeUnit.SECONDS); + assertThat(belowLimitWithFiltering).isEqualTo(Arrays.asList(2, 4)); + + final List beyondLimitWithAllFiltering = new ArrayList<>(); + itemsPublisher.limit(33).filter(i -> i % 10 == 0).subscribe(e -> beyondLimitWithAllFiltering.add(e)).get(5, TimeUnit.SECONDS); + assertThat(beyondLimitWithAllFiltering).isEqualTo(Arrays.asList()); + + final List zeroLimitAndNoFilter = new ArrayList<>(); + itemsPublisher.limit(0).filter(i -> i % 1 == 0).subscribe(e -> zeroLimitAndNoFilter.add(e)).get(5, TimeUnit.SECONDS); + assertThat(zeroLimitAndNoFilter).isEqualTo(Arrays.asList()); + + final List filteringbelowLimitWith = new ArrayList<>(); + itemsPublisher.filter(i -> i % 2 == 0).limit(2).subscribe(e -> filteringbelowLimitWith.add(e)).get(5, TimeUnit.SECONDS); + assertThat(filteringbelowLimitWith).isEqualTo(Arrays.asList(2, 4)); + + final List filteringAndOutsideLimit = new ArrayList<>(); + itemsPublisher.filter(i -> i % 10 == 0).limit(33).subscribe(e -> filteringAndOutsideLimit.add(e)).get(5, TimeUnit.SECONDS); + assertThat(filteringAndOutsideLimit).isEqualTo(Arrays.asList()); + } + + @Test + public void limit__subscriber_with_empty_input_and_zero_limit() throws InterruptedException, ExecutionException, TimeoutException { + itemsPublisher = PaginatedItemsPublisher.builder().nextPageFetcher(asyncPageFetcher) + .iteratorFunction(EMPTY_ITERATOR).isLastPage(false).build(); + + final List zeroLimit = new ArrayList<>(); + itemsPublisher.limit(0).subscribe(e -> zeroLimit.add(e)).get(5, TimeUnit.SECONDS); + assertThat(zeroLimit).isEqualTo(Arrays.asList()); + + final List nonZeroLimit = new ArrayList<>(); + itemsPublisher.limit(10).subscribe(e -> nonZeroLimit.add(e)).get(5, TimeUnit.SECONDS); + assertThat(zeroLimit).isEqualTo(Arrays.asList()); + } + + + @Test + public void limiting_subscriber_with_multiple_thread_publishers() throws InterruptedException { + final int limitFactor = 5; + LimitingSubscriber limitingSubscriber = new LimitingSubscriber<>(mockSubscriber, limitFactor); + limitingSubscriber.onSubscribe(new EmptySubscription(mockSubscriber)); + final ExecutorService executorService = Executors.newFixedThreadPool(10); + for (int i = 0; i < 10; i++) { + final Integer integer = Integer.valueOf(i); + executorService.submit(() -> limitingSubscriber.onNext(new Integer(integer))); + } + executorService.awaitTermination(300, TimeUnit.MILLISECONDS); + Mockito.verify(mockSubscriber, times(limitFactor)).onNext(anyInt()); + Mockito.verify(mockSubscriber).onComplete(); + Mockito.verify(mockSubscriber).onSubscribe(anyObject()); + Mockito.verify(mockSubscriber, never()).onError(anyObject()); + } +} diff --git a/utils/src/main/java/software/amazon/awssdk/utils/async/FilteringSubscriber.java b/utils/src/main/java/software/amazon/awssdk/utils/async/FilteringSubscriber.java index d054ab632e51..c93f16870919 100644 --- a/utils/src/main/java/software/amazon/awssdk/utils/async/FilteringSubscriber.java +++ b/utils/src/main/java/software/amazon/awssdk/utils/async/FilteringSubscriber.java @@ -34,8 +34,8 @@ public FilteringSubscriber(Subscriber sourceSubscriber, Predicate @Override public void onSubscribe(Subscription subscription) { - super.onSubscribe(subscription); this.subscription = subscription; + super.onSubscribe(subscription); } @Override diff --git a/utils/src/main/java/software/amazon/awssdk/utils/async/LimitingSubscriber.java b/utils/src/main/java/software/amazon/awssdk/utils/async/LimitingSubscriber.java index f83e1f7a9fb2..ee0460d2a97b 100644 --- a/utils/src/main/java/software/amazon/awssdk/utils/async/LimitingSubscriber.java +++ b/utils/src/main/java/software/amazon/awssdk/utils/async/LimitingSubscriber.java @@ -19,6 +19,7 @@ import org.reactivestreams.Subscriber; import org.reactivestreams.Subscription; import software.amazon.awssdk.annotations.SdkProtectedApi; +import software.amazon.awssdk.utils.internal.async.EmptySubscription; @SdkProtectedApi public class LimitingSubscriber extends DelegatingSubscriber { @@ -35,19 +36,25 @@ public LimitingSubscriber(Subscriber subscriber, int limit) { @Override public void onSubscribe(Subscription subscription) { - super.onSubscribe(subscription); this.subscription = subscription; + if (limit == 0) { + subscription.cancel(); + super.onSubscribe(new EmptySubscription(super.subscriber)); + } else { + super.onSubscribe(subscription); + } } @Override public void onNext(T t) { + int deliveredItems = delivered.incrementAndGet(); // We may get more events even after cancelling so we ignore them. - if (delivered.get() < limit) { + if (deliveredItems <= limit) { subscriber.onNext(t); - } - // If we've met the limit then we can cancel the subscription - if (delivered.incrementAndGet() >= limit) { - subscription.cancel(); + if (deliveredItems == limit) { + subscription.cancel(); + subscriber.onComplete(); + } } } } diff --git a/utils/src/main/java/software/amazon/awssdk/utils/internal/async/EmptySubscription.java b/utils/src/main/java/software/amazon/awssdk/utils/internal/async/EmptySubscription.java new file mode 100644 index 000000000000..4bac84d8702b --- /dev/null +++ b/utils/src/main/java/software/amazon/awssdk/utils/internal/async/EmptySubscription.java @@ -0,0 +1,63 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.utils.internal.async; + +import java.util.concurrent.atomic.AtomicBoolean; +import org.reactivestreams.Subscriber; +import org.reactivestreams.Subscription; +import software.amazon.awssdk.annotations.SdkInternalApi; + +/** + * A NoOp implementation of {@link Subscription} interface. + * + * This subscription calls {@link Subscriber#onComplete()} on first request for data and then terminates the subscription. + */ +@SdkInternalApi +public final class EmptySubscription implements Subscription { + + private final AtomicBoolean isTerminated = new AtomicBoolean(false); + private final Subscriber subscriber; + + public EmptySubscription(Subscriber subscriber) { + this.subscriber = subscriber; + } + + @Override + public void request(long n) { + if (isTerminated()) { + return; + } + if (n <= 0) { + throw new IllegalArgumentException("Non-positive request signals are illegal"); + } + if (terminate()) { + subscriber.onComplete(); + } + } + + @Override + public void cancel() { + terminate(); + } + + private boolean terminate() { + return isTerminated.compareAndSet(false, true); + } + + private boolean isTerminated() { + return isTerminated.get(); + } +} From 78439be134da561a454762861e4613446aaae9ef Mon Sep 17 00:00:00 2001 From: Steven Aerts Date: Fri, 30 Oct 2020 16:14:21 +0100 Subject: [PATCH 098/339] Add metrics-spi to bom --- bom/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bom/pom.xml b/bom/pom.xml index 760596b46db8..c2bd44587462 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -1298,6 +1298,11 @@ s3outposts ${awsjavasdk.version} + + software.amazon.awssdk + metrics-spi + ${awsjavasdk.version} + From f8ff5129cab4f92cbb5353942cb29133f63b0280 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 30 Oct 2020 18:03:35 +0000 Subject: [PATCH 099/339] Amazon Simple Notification Service Update: Documentation updates for Amazon SNS --- ...ture-AmazonSimpleNotificationService-2ecd376.json | 6 ++++++ .../main/resources/codegen-resources/service-2.json | 12 ++++++------ 2 files changed, 12 insertions(+), 6 deletions(-) create mode 100644 .changes/next-release/feature-AmazonSimpleNotificationService-2ecd376.json diff --git a/.changes/next-release/feature-AmazonSimpleNotificationService-2ecd376.json b/.changes/next-release/feature-AmazonSimpleNotificationService-2ecd376.json new file mode 100644 index 000000000000..cd4c55e8776a --- /dev/null +++ b/.changes/next-release/feature-AmazonSimpleNotificationService-2ecd376.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Simple Notification Service", + "contributor": "", + "description": "Documentation updates for Amazon SNS" +} diff --git a/services/sns/src/main/resources/codegen-resources/service-2.json b/services/sns/src/main/resources/codegen-resources/service-2.json index d9c48dc8c4e6..febd979fc53d 100755 --- a/services/sns/src/main/resources/codegen-resources/service-2.json +++ b/services/sns/src/main/resources/codegen-resources/service-2.json @@ -511,7 +511,7 @@ {"shape":"InternalErrorException"}, {"shape":"AuthorizationErrorException"} ], - "documentation":"

Use this request to set the default settings for sending SMS messages and receiving daily SMS usage reports.

You can override some of these settings for a single message when you use the Publish action with the MessageAttributes.entry.N parameter. For more information, see Sending an SMS Message in the Amazon SNS Developer Guide.

" + "documentation":"

Use this request to set the default settings for sending SMS messages and receiving daily SMS usage reports.

You can override some of these settings for a single message when you use the Publish action with the MessageAttributes.entry.N parameter. For more information, see Publishing to a mobile phone in the Amazon SNS Developer Guide.

" }, "SetSubscriptionAttributes":{ "name":"SetSubscriptionAttributes", @@ -824,7 +824,7 @@ }, "Attributes":{ "shape":"TopicAttributesMap", - "documentation":"

A map of attributes with their corresponding values.

The following lists the names, descriptions, and values of the special request parameters that the CreateTopic action uses:

  • DeliveryPolicy – The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints.

  • DisplayName – The display name to use for a topic with SMS subscriptions.

  • FifoTopic – Set to true to create a FIFO topic.

  • Policy – The policy that defines who can access your topic. By default, only the topic owner can publish or subscribe to the topic.

The following attribute applies only to server-side-encryption:

  • KmsMasterKeyId – The ID of an AWS-managed customer master key (CMK) for Amazon SNS or a custom CMK. For more information, see Key Terms. For more examples, see KeyId in the AWS Key Management Service API Reference.

The following attribute applies only to FIFO topics:

  • ContentBasedDeduplication – Enables content-based deduplication. Amazon SNS uses a SHA-256 hash to generate the MessageDeduplicationId using the body of the message (but not the attributes of the message).

  • When ContentBasedDeduplication is in effect, messages with identical content sent within the deduplication interval are treated as duplicates and only one copy of the message is delivered.

  • If the queue has ContentBasedDeduplication set, your MessageDeduplicationId overrides the generated one.

" + "documentation":"

A map of attributes with their corresponding values.

The following lists the names, descriptions, and values of the special request parameters that the CreateTopic action uses:

  • DeliveryPolicy – The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints.

  • DisplayName – The display name to use for a topic with SMS subscriptions.

  • FifoTopic – Set to true to create a FIFO topic.

  • Policy – The policy that defines who can access your topic. By default, only the topic owner can publish or subscribe to the topic.

The following attribute applies only to server-side-encryption:

  • KmsMasterKeyId – The ID of an AWS-managed customer master key (CMK) for Amazon SNS or a custom CMK. For more information, see Key Terms. For more examples, see KeyId in the AWS Key Management Service API Reference.

The following attributes apply only to FIFO topics:

  • FifoTopic – When this is set to true, a FIFO topic is created.

  • ContentBasedDeduplication – Enables content-based deduplication for FIFO topics.

    • By default, ContentBasedDeduplication is set to false. If you create a FIFO topic and this attribute is false, you must specify a value for the MessageDeduplicationId parameter for the Publish action.

    • When you set ContentBasedDeduplication to true, Amazon SNS uses a SHA-256 hash to generate the MessageDeduplicationId using the body of the message (but not the attributes of the message).

      (Optional) To override the generated value, you can specify a value for the the MessageDeduplicationId parameter for the Publish action.

" }, "Tags":{ "shape":"TagList", @@ -1021,7 +1021,7 @@ "members":{ "Attributes":{ "shape":"TopicAttributesMap", - "documentation":"

A map of the topic's attributes. Attributes in this map include the following:

  • DeliveryPolicy – The JSON serialization of the topic's delivery policy.

  • DisplayName – The human-readable name used in the From field for notifications to email and email-json endpoints.

  • Owner – The AWS account ID of the topic's owner.

  • Policy – The JSON serialization of the topic's access control policy.

  • SubscriptionsConfirmed – The number of confirmed subscriptions for the topic.

  • SubscriptionsDeleted – The number of deleted subscriptions for the topic.

  • SubscriptionsPending – The number of subscriptions pending confirmation for the topic.

  • TopicArn – The topic's ARN.

  • EffectiveDeliveryPolicy – The JSON serialization of the effective delivery policy, taking system defaults into account.

The following attribute applies only to server-side-encryption:

  • KmsMasterKeyId - The ID of an AWS-managed customer master key (CMK) for Amazon SNS or a custom CMK. For more information, see Key Terms. For more examples, see KeyId in the AWS Key Management Service API Reference.

" + "documentation":"

A map of the topic's attributes. Attributes in this map include the following:

  • DeliveryPolicy – The JSON serialization of the topic's delivery policy.

  • DisplayName – The human-readable name used in the From field for notifications to email and email-json endpoints.

  • Owner – The AWS account ID of the topic's owner.

  • Policy – The JSON serialization of the topic's access control policy.

  • SubscriptionsConfirmed – The number of confirmed subscriptions for the topic.

  • SubscriptionsDeleted – The number of deleted subscriptions for the topic.

  • SubscriptionsPending – The number of subscriptions pending confirmation for the topic.

  • TopicArn – The topic's ARN.

  • EffectiveDeliveryPolicy – The JSON serialization of the effective delivery policy, taking system defaults into account.

The following attribute applies only to server-side-encryption:

  • KmsMasterKeyId - The ID of an AWS-managed customer master key (CMK) for Amazon SNS or a custom CMK. For more information, see Key Terms. For more examples, see KeyId in the AWS Key Management Service API Reference.

The following attributes apply only to FIFO topics:

  • FifoTopic – When this is set to true, a FIFO topic is created.

  • ContentBasedDeduplication – Enables content-based deduplication for FIFO topics.

    • By default, ContentBasedDeduplication is set to false. If you create a FIFO topic and this attribute is false, you must specify a value for the MessageDeduplicationId parameter for the Publish action.

    • When you set ContentBasedDeduplication to true, Amazon SNS uses a SHA-256 hash to generate the MessageDeduplicationId using the body of the message (but not the attributes of the message).

      (Optional) To override the generated value, you can specify a value for the the MessageDeduplicationId parameter for the Publish action.

" } }, "documentation":"

Response for GetTopicAttributes action.

" @@ -1376,7 +1376,7 @@ "documentation":"

Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.

" } }, - "documentation":"

The user-specified message attribute value. For string data types, the value attribute has the same restrictions on the content as the message body. For more information, see Publish.

Name, type, and value must not be empty or null. In addition, the message body should not be empty or null. All parts of the message attribute, including name, type, and value, are included in the message size restriction, which is currently 256 KB (262,144 bytes). For more information, see Using Amazon SNS Message Attributes.

" + "documentation":"

The user-specified message attribute value. For string data types, the value attribute has the same restrictions on the content as the message body. For more information, see Publish.

Name, type, and value must not be empty or null. In addition, the message body should not be empty or null. All parts of the message attribute, including name, type, and value, are included in the message size restriction, which is currently 256 KB (262,144 bytes). For more information, see Amazon SNS message attributes and Publishing to a mobile phone in the Amazon SNS Developer Guide.

" }, "NotFoundException":{ "type":"structure", @@ -1619,7 +1619,7 @@ }, "AttributeName":{ "shape":"attributeName", - "documentation":"

A map of attributes with their corresponding values.

The following lists the names, descriptions, and values of the special request parameters that the SetTopicAttributes action uses:

  • DeliveryPolicy – The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints.

  • DisplayName – The display name to use for a topic with SMS subscriptions.

  • Policy – The policy that defines who can access your topic. By default, only the topic owner can publish or subscribe to the topic.

The following attribute applies only to server-side-encryption:

  • KmsMasterKeyId – The ID of an AWS-managed customer master key (CMK) for Amazon SNS or a custom CMK. For more information, see Key Terms. For more examples, see KeyId in the AWS Key Management Service API Reference.

The following attribute applies only to FIFO topics:

  • ContentBasedDeduplication – Enables content-based deduplication. Amazon SNS uses a SHA-256 hash to generate the MessageDeduplicationId using the body of the message (but not the attributes of the message).

  • When ContentBasedDeduplication is in effect, messages with identical content sent within the deduplication interval are treated as duplicates and only one copy of the message is delivered.

  • If the queue has ContentBasedDeduplication set, your MessageDeduplicationId overrides the generated one.

" + "documentation":"

A map of attributes with their corresponding values.

The following lists the names, descriptions, and values of the special request parameters that the SetTopicAttributes action uses:

  • DeliveryPolicy – The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints.

  • DisplayName – The display name to use for a topic with SMS subscriptions.

  • Policy – The policy that defines who can access your topic. By default, only the topic owner can publish or subscribe to the topic.

The following attribute applies only to server-side-encryption:

  • KmsMasterKeyId – The ID of an AWS-managed customer master key (CMK) for Amazon SNS or a custom CMK. For more information, see Key Terms. For more examples, see KeyId in the AWS Key Management Service API Reference.

The following attribute applies only to FIFO topics:

  • ContentBasedDeduplication – Enables content-based deduplication for FIFO topics.

    • By default, ContentBasedDeduplication is set to false. If you create a FIFO topic and this attribute is false, you must specify a value for the MessageDeduplicationId parameter for the Publish action.

    • When you set ContentBasedDeduplication to true, Amazon SNS uses a SHA-256 hash to generate the MessageDeduplicationId using the body of the message (but not the attributes of the message).

      (Optional) To override the generated value, you can specify a value for the the MessageDeduplicationId parameter for the Publish action.

" }, "AttributeValue":{ "shape":"attributeValue", @@ -1667,7 +1667,7 @@ }, "ReturnSubscriptionArn":{ "shape":"boolean", - "documentation":"

Sets whether the response from the Subscribe request includes the subscription ARN, even if the subscription is not yet confirmed.

  • If you set this parameter to true, the response includes the ARN in all cases, even if the subscription is not yet confirmed. In addition to the ARN for confirmed subscriptions, the response also includes the pending subscription ARN value for subscriptions that aren't yet confirmed. A subscription becomes confirmed when the subscriber calls the ConfirmSubscription action with a confirmation token.

The default value is false.

" + "documentation":"

Sets whether the response from the Subscribe request includes the subscription ARN, even if the subscription is not yet confirmed.

If you set this parameter to true, the response includes the ARN in all cases, even if the subscription is not yet confirmed. In addition to the ARN for confirmed subscriptions, the response also includes the pending subscription ARN value for subscriptions that aren't yet confirmed. A subscription becomes confirmed when the subscriber calls the ConfirmSubscription action with a confirmation token.

The default value is false.

" } }, "documentation":"

Input for Subscribe action.

" From dd4ed3d3e83971af47e91f95148561981ead1fa0 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 30 Oct 2020 18:03:38 +0000 Subject: [PATCH 100/339] Braket Update: This release supports tagging for Amazon Braket quantum-task resources. It also supports tag-based access control for quantum-task APIs. --- .../next-release/feature-Braket-9a1d986.json | 6 + .../codegen-resources/service-2.json | 213 +++++++++++++++--- 2 files changed, 183 insertions(+), 36 deletions(-) create mode 100644 .changes/next-release/feature-Braket-9a1d986.json diff --git a/.changes/next-release/feature-Braket-9a1d986.json b/.changes/next-release/feature-Braket-9a1d986.json new file mode 100644 index 000000000000..70f74a6fe9bb --- /dev/null +++ b/.changes/next-release/feature-Braket-9a1d986.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Braket", + "contributor": "", + "description": "This release supports tagging for Amazon Braket quantum-task resources. It also supports tag-based access control for quantum-task APIs." +} diff --git a/services/braket/src/main/resources/codegen-resources/service-2.json b/services/braket/src/main/resources/codegen-resources/service-2.json index cc5534c0f7f7..4f5b0c78b3af 100644 --- a/services/braket/src/main/resources/codegen-resources/service-2.json +++ b/services/braket/src/main/resources/codegen-resources/service-2.json @@ -87,6 +87,22 @@ ], "documentation":"

Retrieves the specified quantum task.

" }, + "ListTagsForResource":{ + "name":"ListTagsForResource", + "http":{ + "method":"GET", + "requestUri":"/tags/{resourceArn}", + "responseCode":200 + }, + "input":{"shape":"ListTagsForResourceRequest"}, + "output":{"shape":"ListTagsForResourceResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Shows the tags associated with this resource.

" + }, "SearchDevices":{ "name":"SearchDevices", "http":{ @@ -120,6 +136,39 @@ {"shape":"ValidationException"} ], "documentation":"

Searches for tasks that match the specified filter values.

" + }, + "TagResource":{ + "name":"TagResource", + "http":{ + "method":"POST", + "requestUri":"/tags/{resourceArn}", + "responseCode":200 + }, + "input":{"shape":"TagResourceRequest"}, + "output":{"shape":"TagResourceResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Add a tag to the specified resource.

" + }, + "UntagResource":{ + "name":"UntagResource", + "http":{ + "method":"DELETE", + "requestUri":"/tags/{resourceArn}", + "responseCode":200 + }, + "input":{"shape":"UntagResourceRequest"}, + "output":{"shape":"UntagResourceResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Remove tags from a resource.

", + "idempotent":true } }, "shapes":{ @@ -175,8 +224,8 @@ "CancellationStatus":{ "type":"string", "enum":[ - "CANCELLED", - "CANCELLING" + "CANCELLING", + "CANCELLED" ] }, "ConflictException":{ @@ -217,40 +266,44 @@ "documentation":"

The ARN of the device to run the task on.

" }, "deviceParameters":{ - "shape":"CreateQuantumTaskRequestdeviceParametersJsonValue", + "shape":"CreateQuantumTaskRequestDeviceParametersString", "documentation":"

The parameters for the device to run the task on.

", "jsonvalue":true }, "outputS3Bucket":{ - "shape":"CreateQuantumTaskRequestoutputS3BucketString", + "shape":"CreateQuantumTaskRequestOutputS3BucketString", "documentation":"

The S3 bucket to store task result files in.

" }, "outputS3KeyPrefix":{ - "shape":"CreateQuantumTaskRequestoutputS3KeyPrefixString", + "shape":"CreateQuantumTaskRequestOutputS3KeyPrefixString", "documentation":"

The key prefix for the location in the S3 bucket to store task results in.

" }, "shots":{ - "shape":"CreateQuantumTaskRequestshotsLong", + "shape":"CreateQuantumTaskRequestShotsLong", "documentation":"

The number of shots to use for the task.

" + }, + "tags":{ + "shape":"TagsMap", + "documentation":"

Tags to be added to the quantum task you're creating.

" } } }, - "CreateQuantumTaskRequestdeviceParametersJsonValue":{ + "CreateQuantumTaskRequestDeviceParametersString":{ "type":"string", "max":2048, "min":1 }, - "CreateQuantumTaskRequestoutputS3BucketString":{ + "CreateQuantumTaskRequestOutputS3BucketString":{ "type":"string", "max":63, "min":3 }, - "CreateQuantumTaskRequestoutputS3KeyPrefixString":{ + "CreateQuantumTaskRequestOutputS3KeyPrefixString":{ "type":"string", "max":1024, "min":1 }, - "CreateQuantumTaskRequestshotsLong":{ + "CreateQuantumTaskRequestShotsLong":{ "type":"long", "box":true, "min":0 @@ -285,8 +338,8 @@ "DeviceStatus":{ "type":"string", "enum":[ - "OFFLINE", - "ONLINE" + "ONLINE", + "OFFLINE" ] }, "DeviceSummary":{ @@ -448,6 +501,10 @@ "status":{ "shape":"QuantumTaskStatus", "documentation":"

The status of the task.

" + }, + "tags":{ + "shape":"TagsMap", + "documentation":"

The tags that belong to this task.

" } } }, @@ -456,12 +513,33 @@ "members":{ "message":{"shape":"String"} }, - "documentation":"

The request processing has failed because of an unknown error, exception or failure.

", + "documentation":"

The request processing has failed because of an unknown error, exception, or failure.

", "error":{"httpStatusCode":500}, "exception":true, "fault":true }, "JsonValue":{"type":"string"}, + "ListTagsForResourceRequest":{ + "type":"structure", + "required":["resourceArn"], + "members":{ + "resourceArn":{ + "shape":"String", + "documentation":"

Specify the resourceArn for the resource whose tags to display.

", + "location":"uri", + "locationName":"resourceArn" + } + } + }, + "ListTagsForResourceResponse":{ + "type":"structure", + "members":{ + "tags":{ + "shape":"TagsMap", + "documentation":"

Displays the key, value pairs of tags associated with this resource.

" + } + } + }, "Long":{ "type":"long", "box":true @@ -474,13 +552,13 @@ "QuantumTaskStatus":{ "type":"string", "enum":[ - "CANCELLED", - "CANCELLING", - "COMPLETED", "CREATED", - "FAILED", "QUEUED", - "RUNNING" + "RUNNING", + "COMPLETED", + "FAILED", + "CANCELLING", + "CANCELLED" ] }, "QuantumTaskSummary":{ @@ -526,6 +604,10 @@ "status":{ "shape":"QuantumTaskStatus", "documentation":"

The status of the task.

" + }, + "tags":{ + "shape":"TagsMap", + "documentation":"

Displays the key, value pairs of tags associated with this quantum task.

" } }, "documentation":"

Includes information about a quantum task.

" @@ -554,22 +636,22 @@ ], "members":{ "name":{ - "shape":"SearchDevicesFilternameString", + "shape":"SearchDevicesFilterNameString", "documentation":"

The name to use to filter results.

" }, "values":{ - "shape":"SearchDevicesFiltervaluesString256List", + "shape":"SearchDevicesFilterValuesList", "documentation":"

The values to use to filter results.

" } }, "documentation":"

The filter to use for searching devices.

" }, - "SearchDevicesFilternameString":{ + "SearchDevicesFilterNameString":{ "type":"string", "max":64, "min":1 }, - "SearchDevicesFiltervaluesString256List":{ + "SearchDevicesFilterValuesList":{ "type":"list", "member":{"shape":"String256"}, "max":10, @@ -580,11 +662,11 @@ "required":["filters"], "members":{ "filters":{ - "shape":"SearchDevicesRequestfiltersSearchDevicesFilterList", + "shape":"SearchDevicesRequestFiltersList", "documentation":"

The filter values to use to search for a device.

" }, "maxResults":{ - "shape":"SearchDevicesRequestmaxResultsInteger", + "shape":"SearchDevicesRequestMaxResultsInteger", "documentation":"

The maximum number of results to return in the response.

" }, "nextToken":{ @@ -593,13 +675,13 @@ } } }, - "SearchDevicesRequestfiltersSearchDevicesFilterList":{ + "SearchDevicesRequestFiltersList":{ "type":"list", "member":{"shape":"SearchDevicesFilter"}, "max":10, "min":0 }, - "SearchDevicesRequestmaxResultsInteger":{ + "SearchDevicesRequestMaxResultsInteger":{ "type":"integer", "box":true, "max":100, @@ -636,7 +718,7 @@ "documentation":"

An operator to use in the filter.

" }, "values":{ - "shape":"SearchQuantumTasksFiltervaluesString256List", + "shape":"SearchQuantumTasksFilterValuesList", "documentation":"

The values to use for the filter.

" } }, @@ -645,15 +727,15 @@ "SearchQuantumTasksFilterOperator":{ "type":"string", "enum":[ - "BETWEEN", + "LT", + "LTE", "EQUAL", "GT", "GTE", - "LT", - "LTE" + "BETWEEN" ] }, - "SearchQuantumTasksFiltervaluesString256List":{ + "SearchQuantumTasksFilterValuesList":{ "type":"list", "member":{"shape":"String256"}, "max":10, @@ -664,11 +746,11 @@ "required":["filters"], "members":{ "filters":{ - "shape":"SearchQuantumTasksRequestfiltersSearchQuantumTasksFilterList", + "shape":"SearchQuantumTasksRequestFiltersList", "documentation":"

Array of SearchQuantumTasksFilter objects.

" }, "maxResults":{ - "shape":"SearchQuantumTasksRequestmaxResultsInteger", + "shape":"SearchQuantumTasksRequestMaxResultsInteger", "documentation":"

Maximum number of results to return in the response.

" }, "nextToken":{ @@ -677,13 +759,13 @@ } } }, - "SearchQuantumTasksRequestfiltersSearchQuantumTasksFilterList":{ + "SearchQuantumTasksRequestFiltersList":{ "type":"list", "member":{"shape":"SearchQuantumTasksFilter"}, "max":10, "min":0 }, - "SearchQuantumTasksRequestmaxResultsInteger":{ + "SearchQuantumTasksRequestMaxResultsInteger":{ "type":"integer", "box":true, "max":100, @@ -708,7 +790,7 @@ "members":{ "message":{"shape":"String"} }, - "documentation":"

The request failed because a service quota is met.

", + "documentation":"

The request failed because a service quota is exceeded.

", "error":{ "httpStatusCode":402, "senderFault":true @@ -730,6 +812,39 @@ "type":"timestamp", "timestampFormat":"iso8601" }, + "TagKeys":{ + "type":"list", + "member":{"shape":"String"} + }, + "TagResourceRequest":{ + "type":"structure", + "required":[ + "resourceArn", + "tags" + ], + "members":{ + "resourceArn":{ + "shape":"String", + "documentation":"

Specify the resourceArn of the resource to which a tag will be added.

", + "location":"uri", + "locationName":"resourceArn" + }, + "tags":{ + "shape":"TagsMap", + "documentation":"

Specify the tags to add to the resource.

" + } + } + }, + "TagResourceResponse":{ + "type":"structure", + "members":{ + } + }, + "TagsMap":{ + "type":"map", + "key":{"shape":"String"}, + "value":{"shape":"String"} + }, "ThrottlingException":{ "type":"structure", "members":{ @@ -742,6 +857,32 @@ }, "exception":true }, + "UntagResourceRequest":{ + "type":"structure", + "required":[ + "resourceArn", + "tagKeys" + ], + "members":{ + "resourceArn":{ + "shape":"String", + "documentation":"

Specify the resourceArn for the resource from which to remove the tags.

", + "location":"uri", + "locationName":"resourceArn" + }, + "tagKeys":{ + "shape":"TagKeys", + "documentation":"

pecify the keys for the tags to remove from the resource.

", + "location":"querystring", + "locationName":"tagKeys" + } + } + }, + "UntagResourceResponse":{ + "type":"structure", + "members":{ + } + }, "ValidationException":{ "type":"structure", "members":{ From 95709db44644af8e495625f7e521d1f34685293f Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 30 Oct 2020 18:03:38 +0000 Subject: [PATCH 101/339] Amazon Macie 2 Update: This release of the Amazon Macie API adds an eqExactMatch operator for filtering findings. With this operator you can increase the precision of your finding filters and suppression rules. --- .changes/next-release/feature-AmazonMacie2-7a1165b.json | 6 ++++++ .../src/main/resources/codegen-resources/service-2.json | 5 +++++ 2 files changed, 11 insertions(+) create mode 100644 .changes/next-release/feature-AmazonMacie2-7a1165b.json diff --git a/.changes/next-release/feature-AmazonMacie2-7a1165b.json b/.changes/next-release/feature-AmazonMacie2-7a1165b.json new file mode 100644 index 000000000000..961c3383dbcc --- /dev/null +++ b/.changes/next-release/feature-AmazonMacie2-7a1165b.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Macie 2", + "contributor": "", + "description": "This release of the Amazon Macie API adds an eqExactMatch operator for filtering findings. With this operator you can increase the precision of your finding filters and suppression rules." +} diff --git a/services/macie2/src/main/resources/codegen-resources/service-2.json b/services/macie2/src/main/resources/codegen-resources/service-2.json index 3afd3aab822f..82db5685358b 100644 --- a/services/macie2/src/main/resources/codegen-resources/service-2.json +++ b/services/macie2/src/main/resources/codegen-resources/service-2.json @@ -3285,6 +3285,11 @@ "locationName": "eq", "documentation": "

An equal to condition to apply to a specified property value for findings.

" }, + "eqExactMatch": { + "shape": "__listOf__string", + "locationName": "eqExactMatch", + "documentation": "

A condition that requires an array field on a finding to exactly match the specified property values. You can use this operator with the following properties:

  • customDataIdentifiers.detections.arn

  • customDataIdentifiers.detections.name

  • resourcesAffected.s3Bucket.tags.key

  • resourcesAffected.s3Bucket.tags.value

  • resourcesAffected.s3Object.tags.key

  • resourcesAffected.s3Object.tags.value

  • sensitiveData.category

  • sensitiveData.detections.type

" + }, "gt": { "shape": "__long", "locationName": "gt", From 83b71361916f86f98c88c4967ad9d9962b385af5 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 30 Oct 2020 18:03:39 +0000 Subject: [PATCH 102/339] EC2 Image Builder Update: This feature increases the number of accounts that can be added to the Launch permissions within an Image Builder Distribution configuration. --- .../feature-EC2ImageBuilder-c86b08e.json | 6 +++ .../codegen-resources/service-2.json | 47 ++++++++++--------- 2 files changed, 32 insertions(+), 21 deletions(-) create mode 100644 .changes/next-release/feature-EC2ImageBuilder-c86b08e.json diff --git a/.changes/next-release/feature-EC2ImageBuilder-c86b08e.json b/.changes/next-release/feature-EC2ImageBuilder-c86b08e.json new file mode 100644 index 000000000000..46ade46b578e --- /dev/null +++ b/.changes/next-release/feature-EC2ImageBuilder-c86b08e.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "EC2 Image Builder", + "contributor": "", + "description": "This feature increases the number of accounts that can be added to the Launch permissions within an Image Builder Distribution configuration." +} diff --git a/services/imagebuilder/src/main/resources/codegen-resources/service-2.json b/services/imagebuilder/src/main/resources/codegen-resources/service-2.json index 4ba72b173d63..0df5d37db0d0 100644 --- a/services/imagebuilder/src/main/resources/codegen-resources/service-2.json +++ b/services/imagebuilder/src/main/resources/codegen-resources/service-2.json @@ -833,7 +833,7 @@ "AccountList":{ "type":"list", "member":{"shape":"AccountId"}, - "max":50, + "max":1536, "min":1 }, "Ami":{ @@ -853,7 +853,7 @@ }, "description":{ "shape":"NonEmptyString", - "documentation":"

The description of the EC2 AMI.

" + "documentation":"

The description of the EC2 AMI. Minimum and maximum length are in characters.

" }, "state":{"shape":"ImageState"}, "accountId":{ @@ -872,7 +872,7 @@ }, "description":{ "shape":"NonEmptyString", - "documentation":"

The description of the distribution configuration.

" + "documentation":"

The description of the distribution configuration. Minimum and maximum length are in characters.

" }, "targetAccountIds":{ "shape":"AccountList", @@ -2868,7 +2868,7 @@ "box":true }, "nextToken":{ - "shape":"NonEmptyString", + "shape":"PaginationToken", "documentation":"

A token to specify where to start paginating. This is the NextToken from a previously truncated response.

" } } @@ -2885,7 +2885,7 @@ "documentation":"

The list of component summaries for the specified semantic version.

" }, "nextToken":{ - "shape":"NonEmptyString", + "shape":"PaginationToken", "documentation":"

The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Use this token with the next request to retrieve additional objects.

" } } @@ -2907,7 +2907,7 @@ "box":true }, "nextToken":{ - "shape":"NonEmptyString", + "shape":"PaginationToken", "documentation":"

A token to specify where to start paginating. This is the NextToken from a previously truncated response.

" } } @@ -2924,7 +2924,7 @@ "documentation":"

The list of component semantic versions.

" }, "nextToken":{ - "shape":"NonEmptyString", + "shape":"PaginationToken", "documentation":"

The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Use this token with the next request to retrieve additional objects.

" } } @@ -2942,7 +2942,7 @@ "box":true }, "nextToken":{ - "shape":"NonEmptyString", + "shape":"PaginationToken", "documentation":"

A token to specify where to start paginating. This is the NextToken from a previously truncated response.

" } } @@ -2959,7 +2959,7 @@ "documentation":"

The list of distributions.

" }, "nextToken":{ - "shape":"NonEmptyString", + "shape":"PaginationToken", "documentation":"

The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Use this token with the next request to retrieve additional objects.

" } } @@ -2982,7 +2982,7 @@ "box":true }, "nextToken":{ - "shape":"NonEmptyString", + "shape":"PaginationToken", "documentation":"

A token to specify where to start paginating. This is the NextToken from a previously truncated response.

" } } @@ -2999,7 +2999,7 @@ "documentation":"

The list of image build versions.

" }, "nextToken":{ - "shape":"NonEmptyString", + "shape":"PaginationToken", "documentation":"

The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Use this token with the next request to retrieve additional objects.

" } } @@ -3022,7 +3022,7 @@ "box":true }, "nextToken":{ - "shape":"NonEmptyString", + "shape":"PaginationToken", "documentation":"

A token to specify where to start paginating. This is the NextToken from a previously truncated response.

" } } @@ -3039,7 +3039,7 @@ "documentation":"

The list of images built by this pipeline.

" }, "nextToken":{ - "shape":"NonEmptyString", + "shape":"PaginationToken", "documentation":"

The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Use this token with the next request to retrieve additional objects.

" } } @@ -3057,7 +3057,7 @@ "box":true }, "nextToken":{ - "shape":"NonEmptyString", + "shape":"PaginationToken", "documentation":"

A token to specify where to start paginating. This is the NextToken from a previously truncated response.

" } } @@ -3074,7 +3074,7 @@ "documentation":"

The list of image pipelines.

" }, "nextToken":{ - "shape":"NonEmptyString", + "shape":"PaginationToken", "documentation":"

The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Use this token with the next request to retrieve additional objects.

" } } @@ -3096,7 +3096,7 @@ "box":true }, "nextToken":{ - "shape":"NonEmptyString", + "shape":"PaginationToken", "documentation":"

A token to specify where to start paginating. This is the NextToken from a previously truncated response.

" } } @@ -3113,7 +3113,7 @@ "documentation":"

The list of image pipelines.

" }, "nextToken":{ - "shape":"NonEmptyString", + "shape":"PaginationToken", "documentation":"

The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Use this token with the next request to retrieve additional objects.

" } } @@ -3135,7 +3135,7 @@ "box":true }, "nextToken":{ - "shape":"NonEmptyString", + "shape":"PaginationToken", "documentation":"

A token to specify where to start paginating. This is the NextToken from a previously truncated response.

" } } @@ -3152,7 +3152,7 @@ "documentation":"

The list of image semantic versions.

" }, "nextToken":{ - "shape":"NonEmptyString", + "shape":"PaginationToken", "documentation":"

The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Use this token with the next request to retrieve additional objects.

" } } @@ -3170,7 +3170,7 @@ "box":true }, "nextToken":{ - "shape":"NonEmptyString", + "shape":"PaginationToken", "documentation":"

A token to specify where to start paginating. This is the NextToken from a previously truncated response.

" } } @@ -3187,7 +3187,7 @@ "documentation":"

The list of infrastructure configurations.

" }, "nextToken":{ - "shape":"NonEmptyString", + "shape":"PaginationToken", "documentation":"

The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Use this token with the next request to retrieve additional objects.

" } } @@ -3257,6 +3257,11 @@ "Amazon" ] }, + "PaginationToken":{ + "type":"string", + "max":65535, + "min":1 + }, "PipelineExecutionStartCondition":{ "type":"string", "enum":[ From 59414729413cab896bc31b75a32a6b1789db0641 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 30 Oct 2020 18:03:47 +0000 Subject: [PATCH 103/339] AWS Elemental MediaLive Update: Support for HLS discontinuity tags in the child manifests. Support for incomplete segment behavior in the media output. Support for automatic input failover condition settings. --- ...feature-AWSElementalMediaLive-691923e.json | 6 ++ .../codegen-resources/service-2.json | 81 +++++++++++++++++++ 2 files changed, 87 insertions(+) create mode 100644 .changes/next-release/feature-AWSElementalMediaLive-691923e.json diff --git a/.changes/next-release/feature-AWSElementalMediaLive-691923e.json b/.changes/next-release/feature-AWSElementalMediaLive-691923e.json new file mode 100644 index 000000000000..891d32f9102d --- /dev/null +++ b/.changes/next-release/feature-AWSElementalMediaLive-691923e.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Elemental MediaLive", + "contributor": "", + "description": "Support for HLS discontinuity tags in the child manifests. Support for incomplete segment behavior in the media output. Support for automatic input failover condition settings." +} diff --git a/services/medialive/src/main/resources/codegen-resources/service-2.json b/services/medialive/src/main/resources/codegen-resources/service-2.json index 7c89eda4ef0e..ec7af59f8d7e 100644 --- a/services/medialive/src/main/resources/codegen-resources/service-2.json +++ b/services/medialive/src/main/resources/codegen-resources/service-2.json @@ -3243,6 +3243,16 @@ "AutomaticInputFailoverSettings": { "type": "structure", "members": { + "ErrorClearTimeMsec": { + "shape": "__integerMin1", + "locationName": "errorClearTimeMsec", + "documentation": "This clear time defines the requirement a recovered input must meet to be considered healthy. The input must have no failover conditions for this length of time. Enter a time in milliseconds. This value is particularly important if the input_preference for the failover pair is set to PRIMARY_INPUT_PREFERRED, because after this time, MediaLive will switch back to the primary input." + }, + "FailoverConditions": { + "shape": "__listOfFailoverCondition", + "locationName": "failoverConditions", + "documentation": "A list of failover conditions. If any of these conditions occur, MediaLive will perform a failover to the other input." + }, "InputPreference": { "shape": "InputPreference", "locationName": "inputPreference", @@ -6660,6 +6670,28 @@ "TimecodeConfig" ] }, + "FailoverCondition": { + "type": "structure", + "members": { + "FailoverConditionSettings": { + "shape": "FailoverConditionSettings", + "locationName": "failoverConditionSettings", + "documentation": "Failover condition type-specific settings." + } + }, + "documentation": "Failover Condition settings. There can be multiple failover conditions inside AutomaticInputFailoverSettings." + }, + "FailoverConditionSettings": { + "type": "structure", + "members": { + "InputLossSettings": { + "shape": "InputLossFailoverSettings", + "locationName": "inputLossSettings", + "documentation": "MediaLive will perform a failover if content is not detected in this input for the specified period." + } + }, + "documentation": "Settings for one failover condition." + }, "FeatureActivations": { "type": "structure", "members": { @@ -7849,6 +7881,14 @@ "SUBDIRECTORY_PER_STREAM" ] }, + "HlsDiscontinuityTags": { + "type": "string", + "documentation": "Hls Discontinuity Tags", + "enum": [ + "INSERT", + "NEVER_INSERT" + ] + }, "HlsEncryptionType": { "type": "string", "documentation": "Hls Encryption Type", @@ -7920,6 +7960,11 @@ "locationName": "directoryStructure", "documentation": "Place segments in subdirectories." }, + "DiscontinuityTags": { + "shape": "HlsDiscontinuityTags", + "locationName": "discontinuityTags", + "documentation": "Specifies whether to insert EXT-X-DISCONTINUITY tags in the HLS child manifests for this output group.\nTypically, choose Insert because these tags are required in the manifest (according to the HLS specification) and serve an important purpose.\nChoose Never Insert only if the downstream system is doing real-time failover (without using the MediaLive automatic failover feature) and only if that downstream system has advised you to exclude the tags." + }, "EncryptionType": { "shape": "HlsEncryptionType", "locationName": "encryptionType", @@ -7940,6 +7985,11 @@ "locationName": "iFrameOnlyPlaylists", "documentation": "DISABLED: Do not create an I-frame-only manifest, but do create the master and media manifests (according to the Output Selection field).\n\nSTANDARD: Create an I-frame-only manifest for each output that contains video, as well as the other manifests (according to the Output Selection field). The I-frame manifest contains a #EXT-X-I-FRAMES-ONLY tag to indicate it is I-frame only, and one or more #EXT-X-BYTERANGE entries identifying the I-frame position. For example, #EXT-X-BYTERANGE:160364@1461888\"" }, + "IncompleteSegmentBehavior": { + "shape": "HlsIncompleteSegmentBehavior", + "locationName": "incompleteSegmentBehavior", + "documentation": "Specifies whether to include the final (incomplete) segment in the media output when the pipeline stops producing output because of a channel stop, a channel pause or a loss of input to the pipeline.\nAuto means that MediaLive decides whether to include the final segment, depending on the channel class and the types of output groups.\nSuppress means to never include the incomplete segment. We recommend you choose Auto and let MediaLive control the behavior." + }, "IndexNSegments": { "shape": "__integerMin3", "locationName": "indexNSegments", @@ -8096,6 +8146,14 @@ "ENABLED" ] }, + "HlsIncompleteSegmentBehavior": { + "type": "string", + "documentation": "Hls Incomplete Segment Behavior", + "enum": [ + "AUTO", + "SUPPRESS" + ] + }, "HlsInputSettings": { "type": "structure", "members": { @@ -9010,6 +9068,17 @@ }, "documentation": "Input Loss Behavior" }, + "InputLossFailoverSettings": { + "type": "structure", + "members": { + "InputLossThresholdMsec": { + "shape": "__integerMin100", + "locationName": "inputLossThresholdMsec", + "documentation": "The amount of time (in milliseconds) that no input is detected. After that time, an input failover will occur." + } + }, + "documentation": "MediaLive will perform a failover if content is not detected in this input for the specified period." + }, "InputLossImageType": { "type": "string", "documentation": "Input Loss Image Type", @@ -14544,6 +14613,11 @@ "min": 1, "documentation": "Placeholder documentation for __integerMin1" }, + "__integerMin100": { + "type": "integer", + "min": 100, + "documentation": "Placeholder documentation for __integerMin100" + }, "__integerMin1000": { "type": "integer", "min": 1000, @@ -14792,6 +14866,13 @@ }, "documentation": "Placeholder documentation for __listOfChannelSummary" }, + "__listOfFailoverCondition": { + "type": "list", + "member": { + "shape": "FailoverCondition" + }, + "documentation": "Placeholder documentation for __listOfFailoverCondition" + }, "__listOfHlsAdMarkers": { "type": "list", "member": { From d7e259018069fb3d0ad99e4828048b9bd5508525 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 30 Oct 2020 18:03:38 +0000 Subject: [PATCH 104/339] Amazon ElastiCache Update: Documentation updates for AWS ElastiCache --- .../feature-AmazonElastiCache-537591a.json | 6 +++ .../codegen-resources/service-2.json | 42 +++++++++---------- 2 files changed, 27 insertions(+), 21 deletions(-) create mode 100644 .changes/next-release/feature-AmazonElastiCache-537591a.json diff --git a/.changes/next-release/feature-AmazonElastiCache-537591a.json b/.changes/next-release/feature-AmazonElastiCache-537591a.json new file mode 100644 index 000000000000..7a8074dd0194 --- /dev/null +++ b/.changes/next-release/feature-AmazonElastiCache-537591a.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon ElastiCache", + "contributor": "", + "description": "Documentation updates for AWS ElastiCache" +} diff --git a/services/elasticache/src/main/resources/codegen-resources/service-2.json b/services/elasticache/src/main/resources/codegen-resources/service-2.json index cc9118328ab5..25232a8c8819 100644 --- a/services/elasticache/src/main/resources/codegen-resources/service-2.json +++ b/services/elasticache/src/main/resources/codegen-resources/service-2.json @@ -307,7 +307,7 @@ {"shape":"InvalidParameterValueException"}, {"shape":"InvalidParameterCombinationException"} ], - "documentation":"

For Redis engine version 6.04 onwards: Creates a Redis user. For more information, see Using Role Based Access Control (RBAC).

" + "documentation":"

For Redis engine version 6.x onwards: Creates a Redis user. For more information, see Using Role Based Access Control (RBAC).

" }, "CreateUserGroup":{ "name":"CreateUserGroup", @@ -328,7 +328,7 @@ {"shape":"UserGroupQuotaExceededFault"}, {"shape":"InvalidParameterValueException"} ], - "documentation":"

For Redis engine version 6.04 onwards: Creates a Redis user group. For more information, see Using Role Based Access Control (RBAC)

" + "documentation":"

For Redis engine version 6.x onwards: Creates a Redis user group. For more information, see Using Role Based Access Control (RBAC)

" }, "DecreaseNodeGroupsInGlobalReplicationGroup":{ "name":"DecreaseNodeGroupsInGlobalReplicationGroup", @@ -1288,7 +1288,7 @@ {"shape":"InvalidParameterValueException"}, {"shape":"InvalidParameterCombinationException"} ], - "documentation":"

Represents the input of a TestFailover operation which test automatic failover on a specified node group (called shard in the console) in a replication group (called cluster in the console).

Note the following

  • A customer can use this operation to test automatic failover on up to 5 shards (called node groups in the ElastiCache API and AWS CLI) in any rolling 24-hour period.

  • If calling this operation on shards in different clusters (called replication groups in the API and CLI), the calls can be made concurrently.

  • If calling this operation multiple times on different shards in the same Redis (cluster mode enabled) replication group, the first node replacement must complete before a subsequent call can be made.

  • To determine whether the node replacement is complete you can check Events using the Amazon ElastiCache console, the AWS CLI, or the ElastiCache API. Look for the following automatic failover related events, listed here in order of occurrance:

    1. Replication group message: Test Failover API called for node group <node-group-id>

    2. Cache cluster message: Failover from master node <primary-node-id> to replica node <node-id> completed

    3. Replication group message: Failover from master node <primary-node-id> to replica node <node-id> completed

    4. Cache cluster message: Recovering cache nodes <node-id>

    5. Cache cluster message: Finished recovery for cache nodes <node-id>

    For more information see:

Also see, Testing Multi-AZ in the ElastiCache User Guide.

" + "documentation":"

Represents the input of a TestFailover operation which test automatic failover on a specified node group (called shard in the console) in a replication group (called cluster in the console).

Note the following

  • A customer can use this operation to test automatic failover on up to 5 shards (called node groups in the ElastiCache API and AWS CLI) in any rolling 24-hour period.

  • If calling this operation on shards in different clusters (called replication groups in the API and CLI), the calls can be made concurrently.

  • If calling this operation multiple times on different shards in the same Redis (cluster mode enabled) replication group, the first node replacement must complete before a subsequent call can be made.

  • To determine whether the node replacement is complete you can check Events using the Amazon ElastiCache console, the AWS CLI, or the ElastiCache API. Look for the following automatic failover related events, listed here in order of occurrance:

    1. Replication group message: Test Failover API called for node group <node-group-id>

    2. Cache cluster message: Failover from primary node <primary-node-id> to replica node <node-id> completed

    3. Replication group message: Failover from primary node <primary-node-id> to replica node <node-id> completed

    4. Cache cluster message: Recovering cache nodes <node-id>

    5. Cache cluster message: Finished recovery for cache nodes <node-id>

    For more information see:

Also see, Testing Multi-AZ in the ElastiCache User Guide.

" } }, "shapes":{ @@ -1525,7 +1525,7 @@ }, "CacheNodeType":{ "shape":"String", - "documentation":"

The name of the compute and memory capacity node type for the cluster.

The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

  • General purpose:

    • Current generation:

      M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge

      M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge

      T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium

      T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium

    • Previous generation: (not recommended)

      T1 node types: cache.t1.micro

      M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge

      M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

  • Compute optimized:

    • Previous generation: (not recommended)

      C1 node types: cache.c1.xlarge

  • Memory optimized:

    • Current generation:

      R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge

      R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge

    • Previous generation: (not recommended)

      M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge

      R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

Additional node type info

  • All current generation instance types are created in Amazon VPC by default.

  • Redis append-only files (AOF) are not supported for T1 or T2 instances.

  • Redis Multi-AZ with automatic failover is not supported on T1 instances.

  • Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.

" + "documentation":"

The name of the compute and memory capacity node type for the cluster.

The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

  • General purpose:

    • Current generation:

      M6g node types (available only for Redis engine version 5.0.6 onward and for Memcached engine version 1.5.16 onward).

      cache.m6g.large, cache.m6g.xlarge, cache.m6g.2xlarge, cache.m6g.4xlarge, cache.m6g.8xlarge, cache.m6g.12xlarge, cache.m6g.16xlarge

      At this time, M6g node types are available in the following regions: us-east-1, us-west-2, us-east-2, eu-central-1, eu-west-1 and ap-northeast-1.

      M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge

      M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge

      T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium

      T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium

    • Previous generation: (not recommended)

      T1 node types: cache.t1.micro

      M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge

      M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

  • Compute optimized:

    • Previous generation: (not recommended)

      C1 node types: cache.c1.xlarge

  • Memory optimized:

    • Current generation:

      R6g node types (available only for Redis engine version 5.0.6 onward and for Memcached engine version 1.5.16 onward).

      cache.r6g.large, cache.r6g.xlarge, cache.r6g.2xlarge, cache.r6g.4xlarge, cache.r6g.8xlarge, cache.r6g.12xlarge, cache.r6g.16xlarge

      At this time, R6g node types are available in the following regions: us-east-1, us-west-2, us-east-2, eu-central-1, eu-west-1 and ap-northeast-1.

      R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge

      R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge

    • Previous generation: (not recommended)

      M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge

      R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

Additional node type info

  • All current generation instance types are created in Amazon VPC by default.

  • Redis append-only files (AOF) are not supported for T1 or T2 instances.

  • Redis Multi-AZ with automatic failover is not supported on T1 instances.

  • Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.

" }, "Engine":{ "shape":"String", @@ -1687,7 +1687,7 @@ }, "CacheParameterGroupFamily":{ "shape":"String", - "documentation":"

The name of the cache parameter group family associated with this cache engine.

Valid values are: memcached1.4 | memcached1.5 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 |

" + "documentation":"

The name of the cache parameter group family associated with this cache engine.

Valid values are: memcached1.4 | memcached1.5 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.0 |

" }, "CacheEngineDescription":{ "shape":"String", @@ -1757,7 +1757,7 @@ "documentation":"

The customer outpost ARN of the cache node.

" } }, - "documentation":"

Represents an individual cache node within a cluster. Each cache node runs its own instance of the cluster's protocol-compliant caching software - either Memcached or Redis.

The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

  • General purpose:

    • Current generation:

      M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge

      M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge

      T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium

      T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium

    • Previous generation: (not recommended)

      T1 node types: cache.t1.micro

      M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge

      M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

  • Compute optimized:

    • Previous generation: (not recommended)

      C1 node types: cache.c1.xlarge

  • Memory optimized:

    • Current generation:

      R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge

      R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge

    • Previous generation: (not recommended)

      M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge

      R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

Additional node type info

  • All current generation instance types are created in Amazon VPC by default.

  • Redis append-only files (AOF) are not supported for T1 or T2 instances.

  • Redis Multi-AZ with automatic failover is not supported on T1 instances.

  • Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.

" + "documentation":"

Represents an individual cache node within a cluster. Each cache node runs its own instance of the cluster's protocol-compliant caching software - either Memcached or Redis.

The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

  • General purpose:

    • Current generation:

      M6g node types (available only for Redis engine version 5.0.6 onward and for Memcached engine version 1.5.16 onward).

      cache.m6g.large, cache.m6g.xlarge, cache.m6g.2xlarge, cache.m6g.4xlarge, cache.m6g.8xlarge, cache.m6g.12xlarge, cache.m6g.16xlarge

      At this time, M6g node types are available in the following regions: us-east-1, us-west-2, us-east-2, eu-central-1, eu-west-1 and ap-northeast-1.

      M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge

      M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge

      T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium

      T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium

    • Previous generation: (not recommended)

      T1 node types: cache.t1.micro

      M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge

      M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

  • Compute optimized:

    • Previous generation: (not recommended)

      C1 node types: cache.c1.xlarge

  • Memory optimized:

    • Current generation:

      R6g node types (available only for Redis engine version 5.0.6 onward and for Memcached engine version 1.5.16 onward).

      cache.r6g.large, cache.r6g.xlarge, cache.r6g.2xlarge, cache.r6g.4xlarge, cache.r6g.8xlarge, cache.r6g.12xlarge, cache.r6g.16xlarge

      At this time, R6g node types are available in the following regions: us-east-1, us-west-2, us-east-2, eu-central-1, eu-west-1 and ap-northeast-1.

      R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge

      R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge

    • Previous generation: (not recommended)

      M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge

      R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

Additional node type info

  • All current generation instance types are created in Amazon VPC by default.

  • Redis append-only files (AOF) are not supported for T1 or T2 instances.

  • Redis Multi-AZ with automatic failover is not supported on T1 instances.

  • Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.

" }, "CacheNodeIdsList":{ "type":"list", @@ -1897,7 +1897,7 @@ }, "CacheParameterGroupFamily":{ "shape":"String", - "documentation":"

The name of the cache parameter group family that this cache parameter group is compatible with.

Valid values are: memcached1.4 | memcached1.5 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 |

" + "documentation":"

The name of the cache parameter group family that this cache parameter group is compatible with.

Valid values are: memcached1.4 | memcached1.5 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.0 |

" }, "Description":{ "shape":"String", @@ -2327,7 +2327,7 @@ }, "TargetBucket":{ "shape":"String", - "documentation":"

The Amazon S3 bucket to which the snapshot is exported. This parameter is used only when exporting a snapshot for external access.

When using this parameter to export a snapshot, be sure Amazon ElastiCache has the needed permissions to this S3 bucket. For more information, see Step 2: Grant ElastiCache Access to Your Amazon S3 Bucket in the Amazon ElastiCache User Guide.

For more information, see Exporting a Snapshot in the Amazon ElastiCache User Guide.

" + "documentation":"

The Amazon S3 bucket to which the snapshot is exported. This parameter is used only when exporting a snapshot for external access.

When using this parameter to export a snapshot, be sure Amazon ElastiCache has the needed permissions to this S3 bucket. For more information, see Step 2: Grant ElastiCache Access to Your Amazon S3 Bucket in the Amazon ElastiCache User Guide.

For more information, see Exporting a Snapshot in the Amazon ElastiCache User Guide.

" }, "KmsKeyId":{ "shape":"String", @@ -2372,7 +2372,7 @@ }, "CacheNodeType":{ "shape":"String", - "documentation":"

The compute and memory capacity of the nodes in the node group (shard).

The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

  • General purpose:

    • Current generation:

      M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge

      M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge

      T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium

      T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium

    • Previous generation: (not recommended)

      T1 node types: cache.t1.micro

      M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge

      M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

  • Compute optimized:

    • Previous generation: (not recommended)

      C1 node types: cache.c1.xlarge

  • Memory optimized:

    • Current generation:

      R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge

      R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge

    • Previous generation: (not recommended)

      M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge

      R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

Additional node type info

  • All current generation instance types are created in Amazon VPC by default.

  • Redis append-only files (AOF) are not supported for T1 or T2 instances.

  • Redis Multi-AZ with automatic failover is not supported on T1 instances.

  • Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.

" + "documentation":"

The compute and memory capacity of the nodes in the node group (shard).

The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

  • General purpose:

    • Current generation:

      M6g node types (available only for Redis engine version 5.0.6 onward and for Memcached engine version 1.5.16 onward).

      cache.m6g.large, cache.m6g.xlarge, cache.m6g.2xlarge, cache.m6g.4xlarge, cache.m6g.8xlarge, cache.m6g.12xlarge, cache.m6g.16xlarge

      At this time, M6g node types are available in the following regions: us-east-1, us-west-2, us-east-2, eu-central-1, eu-west-1 and ap-northeast-1.

      M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge

      M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge

      T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium

      T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium

    • Previous generation: (not recommended)

      T1 node types: cache.t1.micro

      M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge

      M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

  • Compute optimized:

    • Previous generation: (not recommended)

      C1 node types: cache.c1.xlarge

  • Memory optimized:

    • Current generation:

      R6g node types (available only for Redis engine version 5.0.6 onward and for Memcached engine version 1.5.16 onward).

      cache.r6g.large, cache.r6g.xlarge, cache.r6g.2xlarge, cache.r6g.4xlarge, cache.r6g.8xlarge, cache.r6g.12xlarge, cache.r6g.16xlarge

      At this time, R6g node types are available in the following regions: us-east-1, us-west-2, us-east-2, eu-central-1, eu-west-1 and ap-northeast-1.

      R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge

      R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge

    • Previous generation: (not recommended)

      M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge

      R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

Additional node type info

  • All current generation instance types are created in Amazon VPC by default.

  • Redis append-only files (AOF) are not supported for T1 or T2 instances.

  • Redis Multi-AZ with automatic failover is not supported on T1 instances.

  • Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.

" }, "Engine":{ "shape":"String", @@ -2473,7 +2473,7 @@ }, "CacheParameterGroupFamily":{ "shape":"String", - "documentation":"

The name of the cache parameter group family that the cache parameter group can be used with.

Valid values are: memcached1.4 | memcached1.5 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 |

" + "documentation":"

The name of the cache parameter group family that the cache parameter group can be used with.

Valid values are: memcached1.4 | memcached1.5 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.0 |

" }, "Description":{ "shape":"String", @@ -2621,7 +2621,7 @@ }, "CacheNodeType":{ "shape":"String", - "documentation":"

The compute and memory capacity of the nodes in the node group (shard).

The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

  • General purpose:

    • Current generation:

      M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge

      M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge

      T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium

      T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium

    • Previous generation: (not recommended)

      T1 node types: cache.t1.micro

      M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge

      M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

  • Compute optimized:

    • Previous generation: (not recommended)

      C1 node types: cache.c1.xlarge

  • Memory optimized:

    • Current generation:

      R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge

      R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge

    • Previous generation: (not recommended)

      M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge

      R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

Additional node type info

  • All current generation instance types are created in Amazon VPC by default.

  • Redis append-only files (AOF) are not supported for T1 or T2 instances.

  • Redis Multi-AZ with automatic failover is not supported on T1 instances.

  • Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.

" + "documentation":"

The compute and memory capacity of the nodes in the node group (shard).

The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

  • General purpose:

    • Current generation:

      M6g node types (available only for Redis engine version 5.0.6 onward and for Memcached engine version 1.5.16 onward).

      cache.m6g.large, cache.m6g.xlarge, cache.m6g.2xlarge, cache.m6g.4xlarge, cache.m6g.8xlarge, cache.m6g.12xlarge, cache.m6g.16xlarge

      At this time, M6g node types are available in the following regions: us-east-1, us-west-2, us-east-2, eu-central-1, eu-west-1 and ap-northeast-1.

      M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge

      M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge

      T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium

      T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium

    • Previous generation: (not recommended)

      T1 node types: cache.t1.micro

      M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge

      M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

  • Compute optimized:

    • Previous generation: (not recommended)

      C1 node types: cache.c1.xlarge

  • Memory optimized:

    • Current generation:

      R6g node types (available only for Redis engine version 5.0.6 onward and for Memcached engine version 1.5.16 onward).

      cache.r6g.large, cache.r6g.xlarge, cache.r6g.2xlarge, cache.r6g.4xlarge, cache.r6g.8xlarge, cache.r6g.12xlarge, cache.r6g.16xlarge

      At this time, R6g node types are available in the following regions: us-east-1, us-west-2, us-east-2, eu-central-1, eu-west-1 and ap-northeast-1.

      R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge

      R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge

    • Previous generation: (not recommended)

      M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge

      R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

Additional node type info

  • All current generation instance types are created in Amazon VPC by default.

  • Redis append-only files (AOF) are not supported for T1 or T2 instances.

  • Redis Multi-AZ with automatic failover is not supported on T1 instances.

  • Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.

" }, "Engine":{ "shape":"String", @@ -3088,7 +3088,7 @@ }, "CacheParameterGroupFamily":{ "shape":"String", - "documentation":"

The name of a specific cache parameter group family to return details for.

Valid values are: memcached1.4 | memcached1.5 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 |

Constraints:

  • Must be 1 to 255 alphanumeric characters

  • First character must be a letter

  • Cannot end with a hyphen or contain two consecutive hyphens

" + "documentation":"

The name of a specific cache parameter group family to return details for.

Valid values are: memcached1.4 | memcached1.5 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.0 |

Constraints:

  • Must be 1 to 255 alphanumeric characters

  • First character must be a letter

  • Cannot end with a hyphen or contain two consecutive hyphens

" }, "MaxRecords":{ "shape":"IntegerOptional", @@ -3188,7 +3188,7 @@ "members":{ "CacheParameterGroupFamily":{ "shape":"String", - "documentation":"

The name of the cache parameter group family.

Valid values are: memcached1.4 | memcached1.5 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 |

" + "documentation":"

The name of the cache parameter group family.

Valid values are: memcached1.4 | memcached1.5 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.0 |

" }, "MaxRecords":{ "shape":"IntegerOptional", @@ -3306,7 +3306,7 @@ }, "CacheNodeType":{ "shape":"String", - "documentation":"

The cache node type filter value. Use this parameter to show only those reservations matching the specified cache node type.

The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

  • General purpose:

    • Current generation:

      M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge

      M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge

      T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium

      T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium

    • Previous generation: (not recommended)

      T1 node types: cache.t1.micro

      M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge

      M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

  • Compute optimized:

    • Previous generation: (not recommended)

      C1 node types: cache.c1.xlarge

  • Memory optimized:

    • Current generation:

      R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge

      R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge

    • Previous generation: (not recommended)

      M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge

      R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

Additional node type info

  • All current generation instance types are created in Amazon VPC by default.

  • Redis append-only files (AOF) are not supported for T1 or T2 instances.

  • Redis Multi-AZ with automatic failover is not supported on T1 instances.

  • Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.

" + "documentation":"

The cache node type filter value. Use this parameter to show only those reservations matching the specified cache node type.

The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

  • General purpose:

    • Current generation:

      M6g node types (available only for Redis engine version 5.0.6 onward and for Memcached engine version 1.5.16 onward).

      cache.m6g.large, cache.m6g.xlarge, cache.m6g.2xlarge, cache.m6g.4xlarge, cache.m6g.8xlarge, cache.m6g.12xlarge, cache.m6g.16xlarge

      At this time, M6g node types are available in the following regions: us-east-1, us-west-2, us-east-2, eu-central-1, eu-west-1 and ap-northeast-1.

      M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge

      M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge

      T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium

      T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium

    • Previous generation: (not recommended)

      T1 node types: cache.t1.micro

      M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge

      M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

  • Compute optimized:

    • Previous generation: (not recommended)

      C1 node types: cache.c1.xlarge

  • Memory optimized:

    • Current generation:

      R6g node types (available only for Redis engine version 5.0.6 onward and for Memcached engine version 1.5.16 onward).

      cache.r6g.large, cache.r6g.xlarge, cache.r6g.2xlarge, cache.r6g.4xlarge, cache.r6g.8xlarge, cache.r6g.12xlarge, cache.r6g.16xlarge

      At this time, R6g node types are available in the following regions: us-east-1, us-west-2, us-east-2, eu-central-1, eu-west-1 and ap-northeast-1.

      R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge

      R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge

    • Previous generation: (not recommended)

      M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge

      R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

Additional node type info

  • All current generation instance types are created in Amazon VPC by default.

  • Redis append-only files (AOF) are not supported for T1 or T2 instances.

  • Redis Multi-AZ with automatic failover is not supported on T1 instances.

  • Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.

" }, "Duration":{ "shape":"String", @@ -3318,7 +3318,7 @@ }, "OfferingType":{ "shape":"String", - "documentation":"

The offering type filter value. Use this parameter to show only the available offerings matching the specified offering type.

Valid values: \"Light Utilization\"|\"Medium Utilization\"|\"Heavy Utilization\"

" + "documentation":"

The offering type filter value. Use this parameter to show only the available offerings matching the specified offering type.

Valid values: \"Light Utilization\"|\"Medium Utilization\"|\"Heavy Utilization\"|\"All Upfront\"|\"Partial Upfront\"| \"No Upfront\"

" }, "MaxRecords":{ "shape":"IntegerOptional", @@ -3340,7 +3340,7 @@ }, "CacheNodeType":{ "shape":"String", - "documentation":"

The cache node type filter value. Use this parameter to show only the available offerings matching the specified cache node type.

The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

  • General purpose:

    • Current generation:

      M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge

      M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge

      T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium

      T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium

    • Previous generation: (not recommended)

      T1 node types: cache.t1.micro

      M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge

      M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

  • Compute optimized:

    • Previous generation: (not recommended)

      C1 node types: cache.c1.xlarge

  • Memory optimized:

    • Current generation:

      R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge

      R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge

    • Previous generation: (not recommended)

      M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge

      R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

Additional node type info

  • All current generation instance types are created in Amazon VPC by default.

  • Redis append-only files (AOF) are not supported for T1 or T2 instances.

  • Redis Multi-AZ with automatic failover is not supported on T1 instances.

  • Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.

" + "documentation":"

The cache node type filter value. Use this parameter to show only the available offerings matching the specified cache node type.

The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

  • General purpose:

    • Current generation:

      M6g node types (available only for Redis engine version 5.0.6 onward and for Memcached engine version 1.5.16 onward).

      cache.m6g.large, cache.m6g.xlarge, cache.m6g.2xlarge, cache.m6g.4xlarge, cache.m6g.8xlarge, cache.m6g.12xlarge, cache.m6g.16xlarge

      At this time, M6g node types are available in the following regions: us-east-1, us-west-2, us-east-2, eu-central-1, eu-west-1 and ap-northeast-1.

      M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge

      M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge

      T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium

      T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium

    • Previous generation: (not recommended)

      T1 node types: cache.t1.micro

      M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge

      M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

  • Compute optimized:

    • Previous generation: (not recommended)

      C1 node types: cache.c1.xlarge

  • Memory optimized:

    • Current generation:

      R6g node types (available only for Redis engine version 5.0.6 onward and for Memcached engine version 1.5.16 onward).

      cache.r6g.large, cache.r6g.xlarge, cache.r6g.2xlarge, cache.r6g.4xlarge, cache.r6g.8xlarge, cache.r6g.12xlarge, cache.r6g.16xlarge

      At this time, R6g node types are available in the following regions: us-east-1, us-west-2, us-east-2, eu-central-1, eu-west-1 and ap-northeast-1.

      R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge

      R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge

    • Previous generation: (not recommended)

      M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge

      R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

Additional node type info

  • All current generation instance types are created in Amazon VPC by default.

  • Redis append-only files (AOF) are not supported for T1 or T2 instances.

  • Redis Multi-AZ with automatic failover is not supported on T1 instances.

  • Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.

" }, "Duration":{ "shape":"String", @@ -3632,7 +3632,7 @@ "members":{ "CacheParameterGroupFamily":{ "shape":"String", - "documentation":"

Specifies the name of the cache parameter group family to which the engine default parameters apply.

Valid values are: memcached1.4 | memcached1.5 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 |

" + "documentation":"

Specifies the name of the cache parameter group family to which the engine default parameters apply.

Valid values are: memcached1.4 | memcached1.5 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.0 |

" }, "Marker":{ "shape":"String", @@ -3813,7 +3813,7 @@ }, "EngineVersion":{ "shape":"String", - "documentation":"

The Elasticache Redis engine version. For preview, it is Redis version 5.0.5 only.

" + "documentation":"

The Elasticache Redis engine version.

" }, "Members":{ "shape":"GlobalReplicationGroupMemberList", @@ -5457,7 +5457,7 @@ }, "CacheNodeType":{ "shape":"String", - "documentation":"

The cache node type for the reserved cache nodes.

The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

  • General purpose:

    • Current generation:

      M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge

      M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge

      T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium

      T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium

    • Previous generation: (not recommended)

      T1 node types: cache.t1.micro

      M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge

      M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

  • Compute optimized:

    • Previous generation: (not recommended)

      C1 node types: cache.c1.xlarge

  • Memory optimized:

    • Current generation:

      R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge

      R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge

    • Previous generation: (not recommended)

      M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge

      R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

Additional node type info

  • All current generation instance types are created in Amazon VPC by default.

  • Redis append-only files (AOF) are not supported for T1 or T2 instances.

  • Redis Multi-AZ with automatic failover is not supported on T1 instances.

  • Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.

" + "documentation":"

The cache node type for the reserved cache nodes.

The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

  • General purpose:

    • Current generation:

      M6g node types (available only for Redis engine version 5.0.6 onward and for Memcached engine version 1.5.16 onward).

      cache.m6g.large, cache.m6g.xlarge, cache.m6g.2xlarge, cache.m6g.4xlarge, cache.m6g.8xlarge, cache.m6g.12xlarge, cache.m6g.16xlarge

      At this time, M6g node types are available in the following regions: us-east-1, us-west-2, us-east-2, eu-central-1, eu-west-1 and ap-northeast-1.

      M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge

      M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge

      T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium

      T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium

    • Previous generation: (not recommended)

      T1 node types: cache.t1.micro

      M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge

      M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

  • Compute optimized:

    • Previous generation: (not recommended)

      C1 node types: cache.c1.xlarge

  • Memory optimized:

    • Current generation:

      R6g node types (available only for Redis engine version 5.0.6 onward and for Memcached engine version 1.5.16 onward).

      cache.r6g.large, cache.r6g.xlarge, cache.r6g.2xlarge, cache.r6g.4xlarge, cache.r6g.8xlarge, cache.r6g.12xlarge, cache.r6g.16xlarge

      At this time, R6g node types are available in the following regions: us-east-1, us-west-2, us-east-2, eu-central-1, eu-west-1 and ap-northeast-1.

      R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge

      R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge

    • Previous generation: (not recommended)

      M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge

      R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

Additional node type info

  • All current generation instance types are created in Amazon VPC by default.

  • Redis append-only files (AOF) are not supported for T1 or T2 instances.

  • Redis Multi-AZ with automatic failover is not supported on T1 instances.

  • Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.

" }, "StartTime":{ "shape":"TStamp", @@ -5569,7 +5569,7 @@ }, "CacheNodeType":{ "shape":"String", - "documentation":"

The cache node type for the reserved cache node.

The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

  • General purpose:

    • Current generation:

      M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge

      M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge

      T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium

      T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium

    • Previous generation: (not recommended)

      T1 node types: cache.t1.micro

      M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge

      M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

  • Compute optimized:

    • Previous generation: (not recommended)

      C1 node types: cache.c1.xlarge

  • Memory optimized:

    • Current generation:

      R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge

      R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge

    • Previous generation: (not recommended)

      M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge

      R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

Additional node type info

  • All current generation instance types are created in Amazon VPC by default.

  • Redis append-only files (AOF) are not supported for T1 or T2 instances.

  • Redis Multi-AZ with automatic failover is not supported on T1 instances.

  • Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.

" + "documentation":"

The cache node type for the reserved cache node.

The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

  • General purpose:

    • Current generation:

      M6g node types (available only for Redis engine version 5.0.6 onward and for Memcached engine version 1.5.16 onward).

      cache.m6g.large, cache.m6g.xlarge, cache.m6g.2xlarge, cache.m6g.4xlarge, cache.m6g.8xlarge, cache.m6g.12xlarge, cache.m6g.16xlarge

      At this time, M6g node types are available in the following regions: us-east-1, us-west-2, us-east-2, eu-central-1, eu-west-1 and ap-northeast-1.

      M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge

      M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge

      T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium

      T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium

    • Previous generation: (not recommended)

      T1 node types: cache.t1.micro

      M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge

      M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

  • Compute optimized:

    • Previous generation: (not recommended)

      C1 node types: cache.c1.xlarge

  • Memory optimized:

    • Current generation:

      R6g node types (available only for Redis engine version 5.0.6 onward and for Memcached engine version 1.5.16 onward).

      cache.r6g.large, cache.r6g.xlarge, cache.r6g.2xlarge, cache.r6g.4xlarge, cache.r6g.8xlarge, cache.r6g.12xlarge, cache.r6g.16xlarge

      At this time, R6g node types are available in the following regions: us-east-1, us-west-2, us-east-2, eu-central-1, eu-west-1 and ap-northeast-1.

      R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge

      R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge

    • Previous generation: (not recommended)

      M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge

      R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

Additional node type info

  • All current generation instance types are created in Amazon VPC by default.

  • Redis append-only files (AOF) are not supported for T1 or T2 instances.

  • Redis Multi-AZ with automatic failover is not supported on T1 instances.

  • Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.

" }, "Duration":{ "shape":"Integer", @@ -5907,7 +5907,7 @@ }, "CacheNodeType":{ "shape":"String", - "documentation":"

The name of the compute and memory capacity node type for the source cluster.

The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

  • General purpose:

    • Current generation:

      M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge

      M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge

      T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium

      T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium

    • Previous generation: (not recommended)

      T1 node types: cache.t1.micro

      M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge

      M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

  • Compute optimized:

    • Previous generation: (not recommended)

      C1 node types: cache.c1.xlarge

  • Memory optimized:

    • Current generation:

      R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge

      R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge

    • Previous generation: (not recommended)

      M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge

      R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

Additional node type info

  • All current generation instance types are created in Amazon VPC by default.

  • Redis append-only files (AOF) are not supported for T1 or T2 instances.

  • Redis Multi-AZ with automatic failover is not supported on T1 instances.

  • Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.

" + "documentation":"

The name of the compute and memory capacity node type for the source cluster.

The following node types are supported by ElastiCache. Generally speaking, the current generation types provide more memory and computational power at lower cost when compared to their equivalent previous generation counterparts.

  • General purpose:

    • Current generation:

      M6g node types (available only for Redis engine version 5.0.6 onward and for Memcached engine version 1.5.16 onward).

      cache.m6g.large, cache.m6g.xlarge, cache.m6g.2xlarge, cache.m6g.4xlarge, cache.m6g.8xlarge, cache.m6g.12xlarge, cache.m6g.16xlarge

      At this time, M6g node types are available in the following regions: us-east-1, us-west-2, us-east-2, eu-central-1, eu-west-1 and ap-northeast-1.

      M5 node types: cache.m5.large, cache.m5.xlarge, cache.m5.2xlarge, cache.m5.4xlarge, cache.m5.12xlarge, cache.m5.24xlarge

      M4 node types: cache.m4.large, cache.m4.xlarge, cache.m4.2xlarge, cache.m4.4xlarge, cache.m4.10xlarge

      T3 node types: cache.t3.micro, cache.t3.small, cache.t3.medium

      T2 node types: cache.t2.micro, cache.t2.small, cache.t2.medium

    • Previous generation: (not recommended)

      T1 node types: cache.t1.micro

      M1 node types: cache.m1.small, cache.m1.medium, cache.m1.large, cache.m1.xlarge

      M3 node types: cache.m3.medium, cache.m3.large, cache.m3.xlarge, cache.m3.2xlarge

  • Compute optimized:

    • Previous generation: (not recommended)

      C1 node types: cache.c1.xlarge

  • Memory optimized:

    • Current generation:

      R6g node types (available only for Redis engine version 5.0.6 onward and for Memcached engine version 1.5.16 onward).

      cache.r6g.large, cache.r6g.xlarge, cache.r6g.2xlarge, cache.r6g.4xlarge, cache.r6g.8xlarge, cache.r6g.12xlarge, cache.r6g.16xlarge

      At this time, R6g node types are available in the following regions: us-east-1, us-west-2, us-east-2, eu-central-1, eu-west-1 and ap-northeast-1.

      R5 node types: cache.r5.large, cache.r5.xlarge, cache.r5.2xlarge, cache.r5.4xlarge, cache.r5.12xlarge, cache.r5.24xlarge

      R4 node types: cache.r4.large, cache.r4.xlarge, cache.r4.2xlarge, cache.r4.4xlarge, cache.r4.8xlarge, cache.r4.16xlarge

    • Previous generation: (not recommended)

      M2 node types: cache.m2.xlarge, cache.m2.2xlarge, cache.m2.4xlarge

      R3 node types: cache.r3.large, cache.r3.xlarge, cache.r3.2xlarge, cache.r3.4xlarge, cache.r3.8xlarge

Additional node type info

  • All current generation instance types are created in Amazon VPC by default.

  • Redis append-only files (AOF) are not supported for T1 or T2 instances.

  • Redis Multi-AZ with automatic failover is not supported on T1 instances.

  • Redis configuration variables appendonly and appendfsync are not supported on Redis version 2.8.22 and later.

" }, "Engine":{ "shape":"String", From bf0452dde7a428ef0764c45f05d9d673a8a14dc0 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 30 Oct 2020 18:03:45 +0000 Subject: [PATCH 105/339] AWS Database Migration Service Update: Adding DocDbSettings to support DocumentDB as a source. --- ...e-AWSDatabaseMigrationService-5f63eed.json | 6 +++ .../codegen-resources/service-2.json | 54 +++++++++++++++++-- 2 files changed, 57 insertions(+), 3 deletions(-) create mode 100644 .changes/next-release/feature-AWSDatabaseMigrationService-5f63eed.json diff --git a/.changes/next-release/feature-AWSDatabaseMigrationService-5f63eed.json b/.changes/next-release/feature-AWSDatabaseMigrationService-5f63eed.json new file mode 100644 index 000000000000..4bb645f37990 --- /dev/null +++ b/.changes/next-release/feature-AWSDatabaseMigrationService-5f63eed.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Database Migration Service", + "contributor": "", + "description": "Adding DocDbSettings to support DocumentDB as a source." +} diff --git a/services/databasemigration/src/main/resources/codegen-resources/service-2.json b/services/databasemigration/src/main/resources/codegen-resources/service-2.json index 06f60b03a597..5e6a541c209b 100644 --- a/services/databasemigration/src/main/resources/codegen-resources/service-2.json +++ b/services/databasemigration/src/main/resources/codegen-resources/service-2.json @@ -1160,7 +1160,8 @@ "ResourceIdentifier":{ "shape":"String", "documentation":"

A friendly name for the resource identifier at the end of the EndpointArn response parameter that is returned in the created Endpoint object. The value for this parameter can have up to 31 characters. It can contain only ASCII letters, digits, and hyphen ('-'). Also, it can't end with a hyphen or contain two consecutive hyphens, and can only begin with a letter, such as Example-App-ARN1. For example, this value might result in the EndpointArn value arn:aws:dms:eu-west-1:012345678901:rep:Example-App-ARN1. If you don't specify a ResourceIdentifier value, AWS DMS generates a default identifier value for the end of EndpointArn.

" - } + }, + "DocDbSettings":{"shape":"DocDbSettings"} }, "documentation":"

" }, @@ -2337,6 +2338,48 @@ }, "documentation":"

The settings in JSON format for the DMS Transfer type source endpoint.

" }, + "DocDbSettings":{ + "type":"structure", + "members":{ + "Username":{ + "shape":"String", + "documentation":"

The user name you use to access the DocumentDB source endpoint.

" + }, + "Password":{ + "shape":"SecretString", + "documentation":"

The password for the user account you use to access the DocumentDB source endpoint.

" + }, + "ServerName":{ + "shape":"String", + "documentation":"

The name of the server on the DocumentDB source endpoint.

" + }, + "Port":{ + "shape":"IntegerOptional", + "documentation":"

The port value for the DocumentDB source endpoint.

" + }, + "DatabaseName":{ + "shape":"String", + "documentation":"

The database name on the DocumentDB source endpoint.

" + }, + "NestingLevel":{ + "shape":"NestingLevelValue", + "documentation":"

Specifies either document or table mode.

Default value is \"none\". Specify \"none\" to use document mode. Specify \"one\" to use table mode.

" + }, + "ExtractDocId":{ + "shape":"BooleanOptional", + "documentation":"

Specifies the document ID. Use this setting when NestingLevel is set to \"none\".

Default value is \"false\".

" + }, + "DocsToInvestigate":{ + "shape":"IntegerOptional", + "documentation":"

Indicates the number of documents to preview to determine the document organization. Use this setting when NestingLevel is set to \"one\".

Must be a positive value greater than 0. Default value is 1000.

" + }, + "KmsKeyId":{ + "shape":"String", + "documentation":"

The AWS KMS key identifier that is used to encrypt the content on the replication instance. If you don't specify a value for the KmsKeyId parameter, then AWS DMS uses your default encryption key. AWS KMS creates the default encryption key for your AWS account. Your AWS account has a different default encryption key for each AWS Region.

" + } + }, + "documentation":"

Provides information that defines a DocumentDB endpoint.

" + }, "DynamoDbSettings":{ "type":"structure", "required":["ServiceAccessRoleArn"], @@ -2519,7 +2562,8 @@ "IBMDb2Settings":{ "shape":"IBMDb2Settings", "documentation":"

The settings for the IBM Db2 LUW source endpoint. For more information, see the IBMDb2Settings structure.

" - } + }, + "DocDbSettings":{"shape":"DocDbSettings"} }, "documentation":"

Describes an endpoint of a database instance in response to operations such as the following:

  • CreateEndpoint

  • DescribeEndpoint

  • DescribeEndpointTypes

  • ModifyEndpoint

" }, @@ -3126,6 +3170,10 @@ "IBMDb2Settings":{ "shape":"IBMDb2Settings", "documentation":"

Settings in JSON format for the source IBM Db2 LUW endpoint. For information about other available settings, see Extra connection attributes when using Db2 LUW as a source for AWS DMS in the AWS Database Migration Service User Guide.

" + }, + "DocDbSettings":{ + "shape":"DocDbSettings", + "documentation":"

Settings in JSON format for the source DocumentDB endpoint. For more information about the available settings, see the configuration properties section in Using DocumentDB as a Target for AWS Database Migration Service in the AWS Database Migration Service User Guide.

" } }, "documentation":"

" @@ -4641,7 +4689,7 @@ }, "DatePartitionEnabled":{ "shape":"BooleanOptional", - "documentation":"

When set to true, this parameter partitions S3 bucket folders based on transaction commit dates. The default value is false. For more information about date-based folder partitoning, see Using date-based folder partitioning

" + "documentation":"

When set to true, this parameter partitions S3 bucket folders based on transaction commit dates. The default value is false. For more information about date-based folder partitoning, see Using date-based folder partitioning.

" }, "DatePartitionSequence":{ "shape":"DatePartitionSequenceValue", From 53627999e8b3cd3cfafd0e4f1942fb974304761a Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 30 Oct 2020 18:05:28 +0000 Subject: [PATCH 106/339] Release 2.15.19. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.19.json | 54 +++++++++++++++++++ .../bugfix-AWSSDKforJavav2-d01cf23.json | 6 --- ...e-AWSDatabaseMigrationService-5f63eed.json | 6 --- ...feature-AWSElementalMediaLive-691923e.json | 6 --- .../feature-AmazonElastiCache-537591a.json | 6 --- .../feature-AmazonMacie2-7a1165b.json | 6 --- ...azonSimpleNotificationService-2ecd376.json | 6 --- .../next-release/feature-Braket-9a1d986.json | 6 --- .../feature-EC2ImageBuilder-c86b08e.json | 6 --- CHANGELOG.md | 33 ++++++++++++ README.md | 8 +-- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- .../serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 291 files changed, 371 insertions(+), 332 deletions(-) create mode 100644 .changes/2.15.19.json delete mode 100644 .changes/next-release/bugfix-AWSSDKforJavav2-d01cf23.json delete mode 100644 .changes/next-release/feature-AWSDatabaseMigrationService-5f63eed.json delete mode 100644 .changes/next-release/feature-AWSElementalMediaLive-691923e.json delete mode 100644 .changes/next-release/feature-AmazonElastiCache-537591a.json delete mode 100644 .changes/next-release/feature-AmazonMacie2-7a1165b.json delete mode 100644 .changes/next-release/feature-AmazonSimpleNotificationService-2ecd376.json delete mode 100644 .changes/next-release/feature-Braket-9a1d986.json delete mode 100644 .changes/next-release/feature-EC2ImageBuilder-c86b08e.json diff --git a/.changes/2.15.19.json b/.changes/2.15.19.json new file mode 100644 index 000000000000..16c9e44bb4c6 --- /dev/null +++ b/.changes/2.15.19.json @@ -0,0 +1,54 @@ +{ + "version": "2.15.19", + "date": "2020-10-30", + "entries": [ + { + "type": "feature", + "category": "Braket", + "contributor": "", + "description": "This release supports tagging for Amazon Braket quantum-task resources. It also supports tag-based access control for quantum-task APIs." + }, + { + "type": "bugfix", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Fixing FilteringSubscriber and LimitingSubscriber to complete when subscribing criteria is completed." + }, + { + "type": "feature", + "category": "AWS Database Migration Service", + "contributor": "", + "description": "Adding DocDbSettings to support DocumentDB as a source." + }, + { + "type": "feature", + "category": "EC2 Image Builder", + "contributor": "", + "description": "This feature increases the number of accounts that can be added to the Launch permissions within an Image Builder Distribution configuration." + }, + { + "type": "feature", + "category": "Amazon ElastiCache", + "contributor": "", + "description": "Documentation updates for AWS ElastiCache" + }, + { + "type": "feature", + "category": "Amazon Simple Notification Service", + "contributor": "", + "description": "Documentation updates for Amazon SNS" + }, + { + "type": "feature", + "category": "Amazon Macie 2", + "contributor": "", + "description": "This release of the Amazon Macie API adds an eqExactMatch operator for filtering findings. With this operator you can increase the precision of your finding filters and suppression rules." + }, + { + "type": "feature", + "category": "AWS Elemental MediaLive", + "contributor": "", + "description": "Support for HLS discontinuity tags in the child manifests. Support for incomplete segment behavior in the media output. Support for automatic input failover condition settings." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/bugfix-AWSSDKforJavav2-d01cf23.json b/.changes/next-release/bugfix-AWSSDKforJavav2-d01cf23.json deleted file mode 100644 index 9062b9a61468..000000000000 --- a/.changes/next-release/bugfix-AWSSDKforJavav2-d01cf23.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "category": "AWS SDK for Java v2", - "contributor": "", - "type": "bugfix", - "description": "Fixing FilteringSubscriber and LimitingSubscriber to complete when subscribing criteria is completed." -} diff --git a/.changes/next-release/feature-AWSDatabaseMigrationService-5f63eed.json b/.changes/next-release/feature-AWSDatabaseMigrationService-5f63eed.json deleted file mode 100644 index 4bb645f37990..000000000000 --- a/.changes/next-release/feature-AWSDatabaseMigrationService-5f63eed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Database Migration Service", - "contributor": "", - "description": "Adding DocDbSettings to support DocumentDB as a source." -} diff --git a/.changes/next-release/feature-AWSElementalMediaLive-691923e.json b/.changes/next-release/feature-AWSElementalMediaLive-691923e.json deleted file mode 100644 index 891d32f9102d..000000000000 --- a/.changes/next-release/feature-AWSElementalMediaLive-691923e.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Elemental MediaLive", - "contributor": "", - "description": "Support for HLS discontinuity tags in the child manifests. Support for incomplete segment behavior in the media output. Support for automatic input failover condition settings." -} diff --git a/.changes/next-release/feature-AmazonElastiCache-537591a.json b/.changes/next-release/feature-AmazonElastiCache-537591a.json deleted file mode 100644 index 7a8074dd0194..000000000000 --- a/.changes/next-release/feature-AmazonElastiCache-537591a.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon ElastiCache", - "contributor": "", - "description": "Documentation updates for AWS ElastiCache" -} diff --git a/.changes/next-release/feature-AmazonMacie2-7a1165b.json b/.changes/next-release/feature-AmazonMacie2-7a1165b.json deleted file mode 100644 index 961c3383dbcc..000000000000 --- a/.changes/next-release/feature-AmazonMacie2-7a1165b.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Macie 2", - "contributor": "", - "description": "This release of the Amazon Macie API adds an eqExactMatch operator for filtering findings. With this operator you can increase the precision of your finding filters and suppression rules." -} diff --git a/.changes/next-release/feature-AmazonSimpleNotificationService-2ecd376.json b/.changes/next-release/feature-AmazonSimpleNotificationService-2ecd376.json deleted file mode 100644 index cd4c55e8776a..000000000000 --- a/.changes/next-release/feature-AmazonSimpleNotificationService-2ecd376.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Simple Notification Service", - "contributor": "", - "description": "Documentation updates for Amazon SNS" -} diff --git a/.changes/next-release/feature-Braket-9a1d986.json b/.changes/next-release/feature-Braket-9a1d986.json deleted file mode 100644 index 70f74a6fe9bb..000000000000 --- a/.changes/next-release/feature-Braket-9a1d986.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Braket", - "contributor": "", - "description": "This release supports tagging for Amazon Braket quantum-task resources. It also supports tag-based access control for quantum-task APIs." -} diff --git a/.changes/next-release/feature-EC2ImageBuilder-c86b08e.json b/.changes/next-release/feature-EC2ImageBuilder-c86b08e.json deleted file mode 100644 index 46ade46b578e..000000000000 --- a/.changes/next-release/feature-EC2ImageBuilder-c86b08e.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "EC2 Image Builder", - "contributor": "", - "description": "This feature increases the number of accounts that can be added to the Launch permissions within an Image Builder Distribution configuration." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index a68cb12f8bae..5cdbc2057805 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,36 @@ +# __2.15.19__ __2020-10-30__ +## __AWS Database Migration Service__ + - ### Features + - Adding DocDbSettings to support DocumentDB as a source. + +## __AWS Elemental MediaLive__ + - ### Features + - Support for HLS discontinuity tags in the child manifests. Support for incomplete segment behavior in the media output. Support for automatic input failover condition settings. + +## __AWS SDK for Java v2__ + - ### Bugfixes + - Fixing FilteringSubscriber and LimitingSubscriber to complete when subscribing criteria is completed. + +## __Amazon ElastiCache__ + - ### Features + - Documentation updates for AWS ElastiCache + +## __Amazon Macie 2__ + - ### Features + - This release of the Amazon Macie API adds an eqExactMatch operator for filtering findings. With this operator you can increase the precision of your finding filters and suppression rules. + +## __Amazon Simple Notification Service__ + - ### Features + - Documentation updates for Amazon SNS + +## __Braket__ + - ### Features + - This release supports tagging for Amazon Braket quantum-task resources. It also supports tag-based access control for quantum-task APIs. + +## __EC2 Image Builder__ + - ### Features + - This feature increases the number of accounts that can be added to the Launch permissions within an Image Builder Distribution configuration. + # __2.15.18__ __2020-10-29__ ## __AWS Marketplace Commerce Analytics__ - ### Features diff --git a/README.md b/README.md index 636f1c475e2d..2976f43dd18b 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.18 + 2.15.19 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.18 + 2.15.19 software.amazon.awssdk s3 - 2.15.18 + 2.15.19 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.18 + 2.15.19 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index a3152ce12791..088e311b02f1 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index bd1e65f693a2..4fa9b7f6fc11 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index ed49567ab0f2..c9adaf0ee6f1 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.15.19-SNAPSHOT + 2.15.19 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index a16e1b523e2b..27317b03b481 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index c2bd44587462..0f652c5a2e0e 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.19-SNAPSHOT + 2.15.19 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 14f67fed272d..85edc436efd8 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.19-SNAPSHOT + 2.15.19 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index ea8ece6a1724..83cab8f1478e 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.15.19-SNAPSHOT + 2.15.19 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 8661d604c8a1..4a7159101d7d 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.19-SNAPSHOT + 2.15.19 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index db8d4e7bbe5f..2ee3d2b6c840 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.15.19-SNAPSHOT + 2.15.19 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 7de5ff545e24..2952b13de7b1 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.19-SNAPSHOT + 2.15.19 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index e1c4f6d95527..081e1b67a7d3 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 841e4bc3085f..edaa8f22579e 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index b1e32ae5dafd..8bb9b21e84c9 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.19-SNAPSHOT + 2.15.19 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 92203e356823..690d0e0a5c4f 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.19-SNAPSHOT + 2.15.19 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 396e0024f352..351b5f938561 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index c8535fc44c4c..2d3b61269d95 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 59d478be51a3..47f36d53db48 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.19-SNAPSHOT + 2.15.19 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index c206a72ac4d1..00f46b8d0839 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.15.19-SNAPSHOT + 2.15.19 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index c9d51a7cc9f7..1cd29a445e83 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index a0f332f7303a..0da4f6f25c6a 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.15.19-SNAPSHOT + 2.15.19 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index d97f5b6490db..659e6b61ebfc 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.15.19-SNAPSHOT + 2.15.19 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 6a87660a4e3d..57ce7f0c9491 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.15.19-SNAPSHOT + 2.15.19 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index ea02a0d26c15..9da18e4b6193 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index f71b7e0f1aba..77d69321f206 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index be53979d7fdd..455d4034bd6f 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.19-SNAPSHOT + 2.15.19 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index b6df7abecbbf..27481a58d861 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.19-SNAPSHOT + 2.15.19 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index d2b8f4c16f43..ab4819ce91ed 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.15.19-SNAPSHOT + 2.15.19 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 0ee443df8cc5..cb894d3e9857 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.15.19-SNAPSHOT + 2.15.19 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 0c98d2965973..86500b2cd9e0 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.15.19-SNAPSHOT + 2.15.19 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 8413481fd959..2743189df93e 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.15.19-SNAPSHOT + 2.15.19 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 730a0de6a66e..af7870875249 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index d8956a8a4e33..d89749d915e2 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.15.19-SNAPSHOT + 2.15.19 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 67db8f1c15ca..8d0911127c0e 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.15.19-SNAPSHOT + 2.15.19 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index f04d95de893e..f2384b10ec7c 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.19-SNAPSHOT + 2.15.19 metric-publishers diff --git a/pom.xml b/pom.xml index ec9670269314..550669ffa266 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.19-SNAPSHOT + 2.15.19 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 9b83bbd500fd..0f2536efde44 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.19-SNAPSHOT + 2.15.19 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index ecadce1ef369..e4996de7a9de 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.15.19-SNAPSHOT + 2.15.19 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index b8ef15b39ade..3da050dbebdc 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.19-SNAPSHOT + 2.15.19 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index bace4779b003..b8758b7143cc 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index f73b4c74e15a..caa1caf998a5 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 695ec9bc73a4..886f0291e2dd 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 57906e908a5a..fb2556b8aade 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 92940d3a6a41..1c21721be2e6 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 59ee68e57b2b..f1482e46c51e 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 6c17e5a1ee65..3372cb377433 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 956d39c620b3..e1290998f81d 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index e43dad7b73dd..3f831746fa3c 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 24a0cf8530f3..fce9058bb6d3 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 785ccd02e0ef..ff16abfcacc8 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 8c3b99257c3f..76a3dbf96944 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 530dc2142142..4cc2303ef15e 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index bfbfe8351e65..2ab83c89058f 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 3d817985b473..521cf09b05da 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index ee795c9bfe11..a5c24dc9bd24 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 30c4f65fbd98..eb75682cf390 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 9a15a10e1449..9f81ac8c67c1 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 0b471a1b6221..e9531f5b4f45 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index d0772c68d98c..eb2d2126a0de 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index f0e05835f8e2..c8971527ea58 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 8214512de290..098e301ecd43 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 6c0113e26298..3f226c80015c 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index c760ca3c4550..c8766c1566a7 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 6ec97dd3e4bc..389677c2205e 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index c5b579c0afa9..c73345cb0539 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 11aa4eeb1b71..0de641008c8d 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index d4ed64f82137..e4fa9995d443 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 9833d9bb2dad..4a7157624de0 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 1201b2043dc5..2cbb0b670c1a 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index ba20cf9037ab..d8cb4eb0cd16 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index eb7488e99f8b..f14725732f7e 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index f026ca0e6f69..bc9c21e8fc13 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 2999903fc2b7..f5d60c451a09 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index bc12f94c7195..8a11a50f6c47 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 3e56d0108869..e813f1b77dd5 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 29157e361256..deae34d316b2 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index b1a17e45ef65..e781cba3aba0 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 80d2a69d8dc1..b4b2b43194f3 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 8ed7231c8395..61fd98ac80e2 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index cc5d608fa62e..ff40347b985e 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 8410ae7b3f7b..c9227bb56dfd 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index f4a0d33a318d..5bc17b0eb617 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index c2cf49baf9c9..4e9e1f8d0336 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index ecae94a57247..0a97e19fd98d 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 8fa219642977..313a0f85cb10 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 4d9a80803515..4e65d6f2ffce 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 4e743cc56b99..12efa1e068cf 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 708bac5ee1c9..c0a6a023d5e4 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 90404d4092a2..bec0c4bf3df0 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 76080fdfcf0b..b8f9f801800b 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 95282e0a8354..66d9376e6f45 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index b89d6e2d16ca..988c16308fab 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 2947fc40dd5a..60677aa6514d 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 7667350381c8..b4a1d05a2fb3 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index b0fb534c17e0..8d0c0b026747 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 5406e222a7b3..70fde172f06c 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 206e97a4fc7c..a262b278fb2c 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index c29aac4d1877..718f016a30af 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 3e0781d27f73..bc9e1b955727 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 6a73cb617005..5df17eeac7d5 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 1f26c7fcb59d..13871f76f094 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 6edf98b94a6a..965e462a3863 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index caf2c20e39ab..52149a877beb 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 555ab84c4a30..b6a3e3944c9a 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 2c28afe07f25..c127d9db194d 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index cf62860b9ffd..6df1a7bc197c 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index faa15c362529..73e802a7dc8b 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 6b46136e3959..3bb8362f5a8c 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index f588584dc661..60a9b0e62e70 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 3a7cc26cc64e..36ecba821dec 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 9c3c55e8c41f..9620932714ac 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 2de32b8281bd..0741ddf08711 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 14968490af58..f3a6f1e1e882 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 1a94729e1d37..df4d7ab1c5e7 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index d96bb6af1909..e5cd43daaeb7 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 023b55ce3f36..34c0d9d7c770 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 484ead2c8ab9..0c38af01db54 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index a50441a38525..4603ee7c254f 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index c9daf137a94f..7031aae95048 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 41e6fcf54b8b..b09afb41b029 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index da8644ad1435..e8cb85159e57 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 1db55ed6c0d7..0f5c17b1c9c9 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 179b1a8c35ba..88c9e989e046 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 5bc43e8c1413..e5465e45a68a 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 7b2fad05bded..919cfb744262 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 34c8dab30613..470289f17ca8 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index d9a0e1f863a4..f199bae91d08 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 982177d850c5..13993138f6b9 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 845d0e968613..80533c93af4b 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 767e2e52a1e9..ffed31be05f6 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 936cb7f0f1b1..c284ad69a955 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 2b14f2f86b69..48629f48c1c9 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index e5d3488c4189..8a2c75f9bcb7 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index d45ffa104ccb..af610fe2af9b 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 0be1c4b264d0..2183b986efaf 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 002ca81acce9..557fa1ef8543 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 31413f167362..5ec78c4b551a 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 864c58cdd048..ed71eea513cc 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 7cd87099d90c..2afd22da23bb 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 7bfced6bfaa9..123262694ee4 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 962da1b54b06..ef8f86751101 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index d4e80fcf216c..eab902ce1d66 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 1419baeeb20d..2d7401a45a1d 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 9d820c58a320..548050fc5f30 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 8ea4c37ca1dd..838e98fc9a8f 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 81c0aed7078a..68e3c34cd236 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 4ae2cdb8cc75..64736c7d123c 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 6a7a8c502e1a..4fbdb65b46ee 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 02d41d9ac016..1c960c8e4a9d 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 8fc289912528..75259ef3cc2a 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 86fb8dd3ba81..fed863407252 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 75937d650392..0cd5f108965e 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 2aa091b7bbba..1d7b125a5469 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 88d624006651..90ec25f743d0 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 1a6dd24ea1de..b942dfa38e72 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index a029b7e4a66c..859ea2f1dc9c 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 121a5b1628f8..6259f1ceb52f 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 2e98a2dfc038..b3a2c503d37a 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index d7b4d822c1d3..593bcc31a5f0 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 4f6a9d1bca4f..0472f05199a7 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 6cb78e116ece..e19d2a2a435a 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 51d65a6ab5a5..15f1171a78df 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 63e7775f8fd2..072098579b9e 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 7a58663372bd..5673f39383b1 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 7eab64f07ea3..e65ebae27fce 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 1b9f8c250fed..549f7d605fe5 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 3e1fbda485f2..02a685aeaa4c 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 87926db187e0..707d60e6abda 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 82c8b7cda901..8b721faa6b56 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index a8b1711b7067..c0480d1e99bc 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index f99a40818e27..540f68318912 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 9e9e30957273..9641d437d7c4 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index eff8cecf669c..bd584f3a81e8 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 0e587bc2c96b..817c3a7e7db8 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 0c882a9fd073..d3d6f0c5d61a 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index ee956a50244d..6e9c1f0863e1 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 24e1cf3a105c..e9e7e1d0fcf2 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index bdbef61dc9b8..96dac4fd7b51 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 73cf40dd9104..6bf71546632a 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index b7fde1fcb63b..4d6dda986962 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 64dc1f6b9b15..5c19f40fa36a 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index a719cb910ffb..1244fd87a2cf 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index bf3961a1eff8..38cee0ca60d8 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 7c62e674b685..82f509038b19 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 91e5786859ff..e803bcda1c41 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index a1c94ca26b47..8404e882d8f2 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 5514d27cef52..031fd764c2cd 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index de55eb1186e6..7825212ec1f0 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 798c3e61fac8..290e6d65fda8 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 6035c702d84b..c12ed931bf46 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index e3b4354b588a..d3a1fdd4741b 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 475096018db9..204349e66afa 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 9645f3f5ab39..4303de215ab1 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index d96d2036db39..1057af5b2d33 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index a1b2d31a241e..785f21c484a7 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 4395329bcd2b..08d39049ff9d 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 070fce5f4c48..8b043017eb25 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 7151a394f806..5fe4df7e96a3 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 9a266605d1fb..d75c54638d07 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index f7370981adaf..0505364f0731 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 0a3a7ae38d6b..7c843e3db2fa 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index cf015f891e9e..489651f201f5 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 22df39ca7ac2..6590df619fa6 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 4e1de7ff05cd..f7a87caf9ef1 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index e1021c071972..036b98bd6d37 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 5723bf72cf0c..9f6f9ed5a67f 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index ff2450c56b75..457810aeb10e 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.19-SNAPSHOT + 2.15.19 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 3f55d6224dc0..c8763d7be294 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 9f80b6edb9d9..74085b53bbd5 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index f244101d9f8e..ab4017135888 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 041a67a30f35..07a50481cb1e 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 7de44d704cc5..6833edafd281 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 09cfaa4c4d05..5a999964eb14 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index c2d109085f1f..e596c8f59236 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 628d2ddc1d2e..1f482b0a6666 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 7e8ccb0e8429..045ccfe81cd7 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 32cb280a5759..9c05f9a05b01 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 3328e96776f8..b46e58ffbca9 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index aa4fb5ed2252..16c64a88fbda 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index eed44695b830..206cb123f751 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index f8cb9708e24f..103d36bc1070 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index f464d32f51cf..18de08ab8158 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 448b1c785b3b..ec0c7d169653 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 9e579c4c7cc3..2010ec80d86b 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index a137fd042302..94a68270ec44 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 0c72f259bd4c..0b95704b286c 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 13e0e56edc74..d70fe461bf6a 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index dceef3b9ddb2..10aa1d18aff4 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index ccf4c6c7d3af..bf73c15aef15 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 0c871b01e15c..10aec866a007 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 7ce9b7b344c5..4e941fb1f003 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 11ff70314fb2..7905f1767d5a 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 83356a02078f..0b17b635dace 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 0e2b9b54c164..6aec6068cfc0 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 4dc916ac2c69..3a51042f7ecb 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 22d980a1adb2..9168a791e548 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index bb1b2f9cb82b..acb8d1caa663 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 8dc3f67d728b..7a3ef86a033b 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 8b18e2354e8f..1cef18dbeaf4 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 641305a651af..8f2170917189 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 50e3b1e6a185..38cddf70709e 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 3844d406080c..c4867fcce9ef 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index fb0b94a79a82..c03c792c09f9 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 1e7de4804006..2efb3d949d2c 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 92cd7bad962f..3de1b44d3a91 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index feec8e8a5e18..b80a115f562b 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 9e2d6fabc447..f9f671235312 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 86be6ca0344e..5f82d23815c6 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index c096fafe3d95..23963c083789 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index e69b8350cb1c..9356772cb538 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 39824fc5bb2c..181720f5fb48 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 6a546736265a..f4de46696ae0 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 694c08991ca9..5944d4115b25 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 5b0cb1144298..b0065cfb27eb 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index e5ce7c161150..ed9cdd728bd5 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 27810dd30fe8..2126978dd511 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 48d89133bdf0..e9d3f86edf4a 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index d9923a761867..59fdf3045992 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 405c887ec53a..3dd4cf4a2be2 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index f38be2460404..eace70574517 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 6607fd0a9499..c5d9d25113d9 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 6adfa165952f..346d268e4139 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 4c1aa7a36f1e..2583dca084a8 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 1de5e4b9ddb7..035ddd975611 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index e885e6c39673..56cb7ec9e430 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index f572d35bffee..4506ae863d26 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 0098cb86749a..fdc7970f5a76 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 9eccae77a27a..54b0b51e7698 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 92b7c622fd0d..9dc1afbc3f75 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 8ae9066b4799..64a9c933e6bf 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19-SNAPSHOT + 2.15.19 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index bf05b3cbae87..6e8f16d53138 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.15.19-SNAPSHOT + 2.15.19 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 82b18815c302..a24e54680abe 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.15.19-SNAPSHOT + 2.15.19 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index d4d8d4ed054f..aa351fdb321b 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.15.19-SNAPSHOT + 2.15.19 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 6952f6544a48..89d573d6d875 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.15.19-SNAPSHOT + 2.15.19 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index ca5663fce4bd..c0ff03aae9df 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.15.19-SNAPSHOT + 2.15.19 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 08aca7b5fae0..209c1b57e197 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.19-SNAPSHOT + 2.15.19 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 939c03455dcc..3774f18ee61c 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.15.19-SNAPSHOT + 2.15.19 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 3f30ac5b4643..36a9ea8b3cea 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.15.19-SNAPSHOT + 2.15.19 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index c4ea7eb0e770..7f45fc62f993 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.15.19-SNAPSHOT + 2.15.19 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 7c6b653bef57..171e5f36f0af 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.15.19-SNAPSHOT + 2.15.19 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 419dd0c4936a..6395e2ea6055 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.19-SNAPSHOT + 2.15.19 4.0.0 From 19a6879015a4946aa9360f79553ba3b487b58129 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 30 Oct 2020 18:30:38 +0000 Subject: [PATCH 107/339] Update to next snapshot version: 2.15.20-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 280 files changed, 280 insertions(+), 280 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 088e311b02f1..68579e279852 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 4fa9b7f6fc11..9edc7058fd1b 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index c9adaf0ee6f1..42187128e9a0 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.15.19 + 2.15.20-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 27317b03b481..c0abff4110ff 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 0f652c5a2e0e..76ba78009cf1 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.19 + 2.15.20-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 85edc436efd8..cbcb79ba9adb 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.19 + 2.15.20-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 83cab8f1478e..f468c1859770 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.15.19 + 2.15.20-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 4a7159101d7d..cc319af36a40 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.19 + 2.15.20-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 2ee3d2b6c840..03aa23c1ae21 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.15.19 + 2.15.20-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 2952b13de7b1..38ea464a3ffd 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.19 + 2.15.20-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 081e1b67a7d3..e17dabc9ad9f 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index edaa8f22579e..c349268f51c9 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 8bb9b21e84c9..b6c8d67e5fef 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.19 + 2.15.20-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 690d0e0a5c4f..81fa93985125 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.19 + 2.15.20-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 351b5f938561..7699b4fd60ba 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 2d3b61269d95..3c0d04537295 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 47f36d53db48..3e52af619253 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.19 + 2.15.20-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 00f46b8d0839..4494d792bbb9 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.15.19 + 2.15.20-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 1cd29a445e83..10df71d84176 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 0da4f6f25c6a..d4c3302c6dfb 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.15.19 + 2.15.20-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 659e6b61ebfc..f48b601fe940 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.15.19 + 2.15.20-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 57ce7f0c9491..3b9cf7e06d63 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.15.19 + 2.15.20-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 9da18e4b6193..8040c9ec6fcc 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 77d69321f206..67bc01ccab4e 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 455d4034bd6f..796e2a6b4bfb 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.19 + 2.15.20-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 27481a58d861..97e5b4c47f1a 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.19 + 2.15.20-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index ab4819ce91ed..796003da9ece 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.15.19 + 2.15.20-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index cb894d3e9857..0ee76ebb006b 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.15.19 + 2.15.20-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 86500b2cd9e0..15e4f6de9961 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.15.19 + 2.15.20-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 2743189df93e..b01a5f5dea52 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.15.19 + 2.15.20-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index af7870875249..5658cc0fbfa7 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index d89749d915e2..572837a30c35 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.15.19 + 2.15.20-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 8d0911127c0e..cba05c0a6c4f 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.15.19 + 2.15.20-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index f2384b10ec7c..29477f478f34 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.19 + 2.15.20-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 550669ffa266..1443b40c77f9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.19 + 2.15.20-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 0f2536efde44..0eb534c5496d 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.19 + 2.15.20-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index e4996de7a9de..0398f0f8b4f3 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.15.19 + 2.15.20-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 3da050dbebdc..25d952b45510 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.19 + 2.15.20-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index b8758b7143cc..0d256f64850c 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index caa1caf998a5..2099c341b312 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 886f0291e2dd..2d8b8d3d908f 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index fb2556b8aade..9e76559fd436 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 1c21721be2e6..923382eabf43 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index f1482e46c51e..ac27b9957102 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 3372cb377433..fb587c82e757 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index e1290998f81d..17f2d2459438 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 3f831746fa3c..0a3bba1b7511 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index fce9058bb6d3..a21a3d6bc3bf 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index ff16abfcacc8..2237737af9f5 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 76a3dbf96944..3c7ac6edeb89 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 4cc2303ef15e..90f6f4c48ed2 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 2ab83c89058f..8bb976c2285b 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 521cf09b05da..7bd58a02d803 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index a5c24dc9bd24..a9413be15b7b 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index eb75682cf390..7f2c86cc6d20 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 9f81ac8c67c1..9eeca2616763 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index e9531f5b4f45..71e92314aae0 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index eb2d2126a0de..d5a8d4a021e8 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index c8971527ea58..e03c052eaad1 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 098e301ecd43..e692cf9b4b47 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 3f226c80015c..db15b37c5740 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index c8766c1566a7..cb5dd45ec29a 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 389677c2205e..1a8a2964fc6e 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index c73345cb0539..b3416b14d285 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 0de641008c8d..f6faaf247c2e 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index e4fa9995d443..7e1dc0a682d4 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 4a7157624de0..73a1ad3d8ae1 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 2cbb0b670c1a..a8854be48c42 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index d8cb4eb0cd16..19f6063bf1f9 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index f14725732f7e..ae0ebb5fe984 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index bc9c21e8fc13..a4288bbcf89e 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index f5d60c451a09..89c464d882d6 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 8a11a50f6c47..69d62d59a563 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index e813f1b77dd5..1e0dfce43a7b 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index deae34d316b2..a14e2e0a1b15 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index e781cba3aba0..3a5868702771 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index b4b2b43194f3..9bcf8d9124c0 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 61fd98ac80e2..e0fb7fdb4309 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index ff40347b985e..e731795c69ca 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index c9227bb56dfd..02c3a2140677 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 5bc17b0eb617..a3d2bbe12575 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 4e9e1f8d0336..cc44e894e726 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 0a97e19fd98d..6e2944eba0aa 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 313a0f85cb10..05876652c4b6 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 4e65d6f2ffce..9d6b7fceb70c 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 12efa1e068cf..7cb6513e1060 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index c0a6a023d5e4..671ccefe9789 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index bec0c4bf3df0..ffa065f6050c 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index b8f9f801800b..bef781886c2d 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 66d9376e6f45..06c509e5fc43 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 988c16308fab..08395d6f1556 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 60677aa6514d..b9c1738eb206 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index b4a1d05a2fb3..1c8b7e41763e 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 8d0c0b026747..761b2056ae7e 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 70fde172f06c..dc2eef0f43f3 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index a262b278fb2c..96b4fa016591 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 718f016a30af..b572fb258447 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index bc9e1b955727..7b897232c3d1 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 5df17eeac7d5..d1a2a0c69978 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 13871f76f094..86139e945a23 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 965e462a3863..cde352bfc3a7 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 52149a877beb..1dce988b92ef 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index b6a3e3944c9a..ae5b7040582e 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index c127d9db194d..4a32a131db1d 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 6df1a7bc197c..836ebbacb332 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 73e802a7dc8b..7844d6b3316b 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 3bb8362f5a8c..01dfba9c5140 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 60a9b0e62e70..ff55b44a78fd 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 36ecba821dec..7dbc902e01a9 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 9620932714ac..3fce97ec289b 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 0741ddf08711..a0e515169294 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index f3a6f1e1e882..1f9bc068bfba 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index df4d7ab1c5e7..74c22c65ba4d 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index e5cd43daaeb7..dce779648f7d 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 34c0d9d7c770..a2a3cf07465c 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 0c38af01db54..2bcee7b2a964 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 4603ee7c254f..53b0bb1db635 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 7031aae95048..8238285e8010 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index b09afb41b029..533ae5403eee 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index e8cb85159e57..e5ff624b13cf 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 0f5c17b1c9c9..013ec6599534 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 88c9e989e046..b9f5b5275b43 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index e5465e45a68a..f51663dc8a66 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 919cfb744262..f0fa13787fac 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 470289f17ca8..4ecfc3803c67 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index f199bae91d08..e6dd236df3cc 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 13993138f6b9..879ac3c84d01 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 80533c93af4b..d90bdce86bc3 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index ffed31be05f6..fea83f0b9ce0 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index c284ad69a955..65a0791c052b 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 48629f48c1c9..954f84d1639c 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 8a2c75f9bcb7..1f9debc66591 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index af610fe2af9b..f81b27524ab1 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 2183b986efaf..63b549f47962 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 557fa1ef8543..833274b25a85 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 5ec78c4b551a..2e939124c714 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index ed71eea513cc..add8ee938c7e 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 2afd22da23bb..466783fa3f27 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 123262694ee4..e2891255b352 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index ef8f86751101..9e1b95f39bec 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index eab902ce1d66..e63cff47deff 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 2d7401a45a1d..077f16a05615 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 548050fc5f30..8c58024983c7 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 838e98fc9a8f..8059bc82434f 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 68e3c34cd236..0a3089eb1c7e 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 64736c7d123c..439fac59ce9d 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 4fbdb65b46ee..7fbc1269cb04 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 1c960c8e4a9d..9340ffb33a33 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 75259ef3cc2a..4b08657fa578 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index fed863407252..7ab55dd0be46 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 0cd5f108965e..22b8a3ab5bfe 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 1d7b125a5469..b0d1f283ba83 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 90ec25f743d0..372c4bd67772 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index b942dfa38e72..198a6e641233 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 859ea2f1dc9c..35cf15271dea 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 6259f1ceb52f..ee895bfa1725 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index b3a2c503d37a..8f648a1be646 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 593bcc31a5f0..76f15df03a38 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 0472f05199a7..1906c2cc423a 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index e19d2a2a435a..e8c90eb13432 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 15f1171a78df..5b58a0a997db 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 072098579b9e..42cca4b6e852 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 5673f39383b1..61be439a388b 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index e65ebae27fce..40c305f85829 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 549f7d605fe5..748de8b52edb 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 02a685aeaa4c..c5fa969fb1b6 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 707d60e6abda..5dc2db70911b 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 8b721faa6b56..d4402c1008e4 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index c0480d1e99bc..5d19cf24831e 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 540f68318912..11ee44ac731a 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 9641d437d7c4..bd5554e4fe38 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index bd584f3a81e8..37a92ce861fc 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 817c3a7e7db8..0ba2ccdbaf88 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index d3d6f0c5d61a..8ed942456cc8 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 6e9c1f0863e1..903b26f01777 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index e9e7e1d0fcf2..ff10dd541578 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 96dac4fd7b51..c34725441a37 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 6bf71546632a..200835bd47ed 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 4d6dda986962..79fd94c2be93 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 5c19f40fa36a..9172e8c8e971 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 1244fd87a2cf..71153e0618d4 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 38cee0ca60d8..e19364c8efbe 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 82f509038b19..d02bfdc7af2b 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index e803bcda1c41..f6c4a0d70ffd 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 8404e882d8f2..d9ac3cf58fd3 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 031fd764c2cd..08ecd9d46a84 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 7825212ec1f0..9142055deda1 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 290e6d65fda8..17a6e842aec7 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index c12ed931bf46..0fbf94a1e045 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index d3a1fdd4741b..1f16375c7fc5 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 204349e66afa..ac606e0bb19a 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 4303de215ab1..5346eee3f0c6 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 1057af5b2d33..ff57cea58ec9 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 785f21c484a7..bb35b0c70c67 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 08d39049ff9d..e3d0f24b1ac5 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 8b043017eb25..e79375d85c5c 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 5fe4df7e96a3..23397f9e84a9 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index d75c54638d07..42e109de245f 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 0505364f0731..d6489b761c8a 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 7c843e3db2fa..5ffd202829b9 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 489651f201f5..da65b425ac38 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 6590df619fa6..f94c27221d7c 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index f7a87caf9ef1..a7ca2caa4f57 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 036b98bd6d37..23e43f58b1ad 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 9f6f9ed5a67f..d46e187e1261 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 457810aeb10e..1a4e311d6a6e 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.19 + 2.15.20-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index c8763d7be294..83c089260d9e 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 74085b53bbd5..126211799295 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index ab4017135888..3cec24386aaf 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 07a50481cb1e..c590877f55f7 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 6833edafd281..612209d8d1e5 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 5a999964eb14..e8b9121c83da 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index e596c8f59236..e15759583711 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 1f482b0a6666..b53655517078 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 045ccfe81cd7..fd466fac005a 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 9c05f9a05b01..fcc2c8bd5b72 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index b46e58ffbca9..e04e20fb2e9a 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 16c64a88fbda..44a55b7b6ed7 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 206cb123f751..ef8fda248e3c 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 103d36bc1070..f40431e7cc9c 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 18de08ab8158..76e3e15d2a31 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index ec0c7d169653..41ec8a3fd3d6 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 2010ec80d86b..fb6f3c4441a9 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 94a68270ec44..ff5a1836012d 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 0b95704b286c..a7452de7adc6 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index d70fe461bf6a..596204a499ae 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 10aa1d18aff4..f8a848842506 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index bf73c15aef15..1b680ab28263 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 10aec866a007..d19801f94ac0 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 4e941fb1f003..32ce1fc2e4d2 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 7905f1767d5a..d671b7dfa7c9 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 0b17b635dace..62565f40b4b4 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 6aec6068cfc0..958b90ef57ef 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 3a51042f7ecb..aef4f2295331 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 9168a791e548..55ffbc1249ad 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index acb8d1caa663..54d98142cb1f 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 7a3ef86a033b..2607c3a89bf7 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 1cef18dbeaf4..ece902ff4a29 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 8f2170917189..d1b54fb889c7 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 38cddf70709e..14b551cd1218 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index c4867fcce9ef..7e8512937dbc 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index c03c792c09f9..8f8261ade3a0 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 2efb3d949d2c..a7c0e2136047 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 3de1b44d3a91..d5e29acab3af 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index b80a115f562b..f0f73da2dd05 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index f9f671235312..94a6313c4c1a 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 5f82d23815c6..5e79f8cd07da 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 23963c083789..6d633bc1e3d3 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 9356772cb538..d03ed66f1060 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 181720f5fb48..2a0f995850d2 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index f4de46696ae0..31052f11859f 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 5944d4115b25..fad656f0d3c0 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index b0065cfb27eb..6d8cac44d556 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index ed9cdd728bd5..92dc267fcf08 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 2126978dd511..ff903c7c62d5 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index e9d3f86edf4a..271e769099e8 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 59fdf3045992..ce122dbc7119 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 3dd4cf4a2be2..fc09ab05e414 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index eace70574517..43ea07362215 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index c5d9d25113d9..698dfd8bf004 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 346d268e4139..8945eea072ab 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 2583dca084a8..23518873dae5 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 035ddd975611..920bd8a6ce12 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 56cb7ec9e430..fc990795056d 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 4506ae863d26..5c71d7e558c9 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index fdc7970f5a76..37ec2bc6b3e6 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 54b0b51e7698..318d076133bd 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 9dc1afbc3f75..42d02b01ecc5 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 64a9c933e6bf..958f426d23c5 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.19 + 2.15.20-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 6e8f16d53138..ebe1bbcaf120 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.15.19 + 2.15.20-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index a24e54680abe..54a33791fc59 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.15.19 + 2.15.20-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index aa351fdb321b..6a81a4a61614 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.15.19 + 2.15.20-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 89d573d6d875..0282a9ab7413 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.15.19 + 2.15.20-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index c0ff03aae9df..14a2f0333e7a 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.15.19 + 2.15.20-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 209c1b57e197..489f94630542 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.19 + 2.15.20-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 3774f18ee61c..59144c95e23d 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.15.19 + 2.15.20-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 36a9ea8b3cea..941b24c3ba9b 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.15.19 + 2.15.20-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 7f45fc62f993..c4da4b52252e 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.15.19 + 2.15.20-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 171e5f36f0af..4d703052ed7e 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.15.19 + 2.15.20-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 6395e2ea6055..0b1b45f57844 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.19 + 2.15.20-SNAPSHOT 4.0.0 From 35c5f89ae29b3e5bbf3ab711c1b7b7024b76bd97 Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Tue, 27 Oct 2020 16:41:02 -0700 Subject: [PATCH 108/339] Added a customization to allow underscores in shape names. 1. Throw an exception if an invalid shape name is used instead of trying to transform it. This should be backwards-compatible, because our transformation is currently broken. 2. Throw an exception if a customer-visible identifier contains underscores. Added customizations to rename any existing shapes that violate this rule. 3. Add validation to the code generator to verify that certain names will actually compile. This provides a more useful error message when services contain invalid identifiers. 4. Deprecate SsoOidc's "error_description" getters for ones with idiomatic names. --- .../deprecation-AWSSSOOIDC-07f569c.json | 6 + .../feature-AWSSDKforJavav2-a2cc0b1.json | 6 + .../amazon/awssdk/codegen/AddModelShapes.java | 2 +- .../amazon/awssdk/codegen/AddShapes.java | 3 +- .../codegen/IntermediateModelBuilder.java | 2 + .../awssdk/codegen/internal/TypeUtils.java | 2 +- .../customization/CustomizationConfig.java | 19 +++ .../UnderscoresInNameBehavior.java | 26 ++++ .../model/intermediate/IntermediateModel.java | 7 +- .../model/intermediate/MemberModel.java | 16 --- .../awssdk/codegen/model/service/Shape.java | 1 - .../codegen/naming/DefaultNamingStrategy.java | 77 ++++++++++- .../awssdk/codegen/naming/NamingStrategy.java | 8 +- .../naming/DefaultNamingStrategyTest.java | 100 ++++++++------ .../poet/client/c2j/json/service-2.json | 2 +- .../poet/client/test-async-client-class.java | 4 +- .../codegen/poet/model/alltypesrequest.java | 74 ++++++++++- .../codegen/poet/model/alltypesresponse.java | 74 ++++++++++- .../codegen/poet/model/customization.config | 3 +- .../customization.config | 3 +- .../awssdk/codegen/poet/model/service-2.json | 8 +- .../poet/model/underscore_name_type.java | 103 +++++++++++++++ .../codegen-resources/customization.config | 7 +- .../codegen-resources/customization.config | 6 + .../codegen-resources/customization.config | 6 +- .../codegen-resources/customization.config | 125 ++++++++++++++++++ 26 files changed, 601 insertions(+), 89 deletions(-) create mode 100644 .changes/next-release/deprecation-AWSSSOOIDC-07f569c.json create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-a2cc0b1.json create mode 100644 codegen/src/main/java/software/amazon/awssdk/codegen/model/config/customization/UnderscoresInNameBehavior.java create mode 100644 codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/underscore_name_type.java create mode 100644 services/mediapackagevod/src/main/resources/codegen-resources/customization.config create mode 100644 services/ssooidc/src/main/resources/codegen-resources/customization.config diff --git a/.changes/next-release/deprecation-AWSSSOOIDC-07f569c.json b/.changes/next-release/deprecation-AWSSSOOIDC-07f569c.json new file mode 100644 index 000000000000..e25cf8c19865 --- /dev/null +++ b/.changes/next-release/deprecation-AWSSSOOIDC-07f569c.json @@ -0,0 +1,6 @@ +{ + "type": "deprecation", + "category": "AWS SSO OIDC", + "contributor": "", + "description": "Renamed/deprecated 'error_description' fields in exceptions in favor of 'errorDescription'." +} diff --git a/.changes/next-release/feature-AWSSDKforJavav2-a2cc0b1.json b/.changes/next-release/feature-AWSSDKforJavav2-a2cc0b1.json new file mode 100644 index 000000000000..3a370f33cfa4 --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-a2cc0b1.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Added code generation validation that customer-visible identifiers are idiomatic (do not contain underscores). Services with underscores in their models can use rename customizations to fix these issues, or apply the 'underscoresInNameBehavior = ALLOW' customization." +} diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/AddModelShapes.java b/codegen/src/main/java/software/amazon/awssdk/codegen/AddModelShapes.java index 92664189df4b..8a2492c3d003 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/AddModelShapes.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/AddModelShapes.java @@ -53,7 +53,7 @@ private Map constructModelShapes(Set shapesToSkip) { ShapeType shapeType = getModelShapeType(shape); if (shapeType != null) { - String javaClassName = getNamingStrategy().getJavaClassName(shapeName); + String javaClassName = getNamingStrategy().getShapeClassName(shapeName); if (shapesToSkip.contains(javaClassName)) { continue; } diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/AddShapes.java b/codegen/src/main/java/software/amazon/awssdk/codegen/AddShapes.java index 678198a22f2f..f5da83363eac 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/AddShapes.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/AddShapes.java @@ -159,7 +159,6 @@ private MemberModel generateMemberModel(String c2jMemberName, Member c2jMemberDe variableType + " type."); } - MemberModel memberModel = new MemberModel(); memberModel.withC2jName(c2jMemberName) @@ -443,7 +442,7 @@ private void fillContainerTypeMemberMetadata(Map c2jShapes, mapValueModel)); } else if (memberC2jShape.getEnumValues() != null) { // enum values - memberModel.withEnumType(getNamingStrategy().getJavaClassName(memberC2jShapeName)); + memberModel.withEnumType(getNamingStrategy().getShapeClassName(memberC2jShapeName)); } } diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/IntermediateModelBuilder.java b/codegen/src/main/java/software/amazon/awssdk/codegen/IntermediateModelBuilder.java index 48f6b07da926..e722b421fe92 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/IntermediateModelBuilder.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/IntermediateModelBuilder.java @@ -157,6 +157,8 @@ public IntermediateModel build() { setSimpleMethods(trimmedModel); + namingStrategy.validateCustomerVisibleNaming(trimmedModel); + return trimmedModel; } diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/internal/TypeUtils.java b/codegen/src/main/java/software/amazon/awssdk/codegen/internal/TypeUtils.java index 1d6b554bd99e..ccbb8a39338f 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/internal/TypeUtils.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/internal/TypeUtils.java @@ -133,7 +133,7 @@ public String getJavaDataType(Map shapes, String shapeName, String shapeType = shape.getType(); if (Structure.getName().equals(shapeType)) { - return namingStrategy.getJavaClassName(shapeName); + return namingStrategy.getShapeClassName(shapeName); } else if (List.getName().equals(shapeType)) { String listContainerType = DATA_TYPE_MAPPINGS.get(TypeKey.LIST_INTERFACE); return listContainerType + "<" + diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/model/config/customization/CustomizationConfig.java b/codegen/src/main/java/software/amazon/awssdk/codegen/model/config/customization/CustomizationConfig.java index 2654b00dc6ce..d9c83d4a26dc 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/model/config/customization/CustomizationConfig.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/model/config/customization/CustomizationConfig.java @@ -165,6 +165,7 @@ public class CustomizationConfig { * Arnable fields used in s3 control */ private Map s3ArnableFields; + /** * Allow a customer to set an endpoint override AND bypass endpoint discovery on their client even when endpoint discovery * enabled is true and endpoint discovery is required for an operation. This customization should almost never be "true" @@ -172,6 +173,11 @@ public class CustomizationConfig { */ private boolean allowEndpointOverrideForEndpointDiscoveryRequiredOperations = false; + /** + * How the code generator should behave when it encounters shapes with underscores in the name. + */ + private UnderscoresInNameBehavior underscoresInNameBehavior; + private CustomizationConfig() { } @@ -434,4 +440,17 @@ public void setAllowEndpointOverrideForEndpointDiscoveryRequiredOperations( this.allowEndpointOverrideForEndpointDiscoveryRequiredOperations = allowEndpointOverrideForEndpointDiscoveryRequiredOperations; } + + public UnderscoresInNameBehavior getUnderscoresInNameBehavior() { + return underscoresInNameBehavior; + } + + public void setUnderscoresInNameBehavior(UnderscoresInNameBehavior behavior) { + this.underscoresInNameBehavior = behavior; + } + + public CustomizationConfig withUnderscoresInShapeNameBehavior(UnderscoresInNameBehavior behavior) { + this.underscoresInNameBehavior = behavior; + return this; + } } diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/model/config/customization/UnderscoresInNameBehavior.java b/codegen/src/main/java/software/amazon/awssdk/codegen/model/config/customization/UnderscoresInNameBehavior.java new file mode 100644 index 000000000000..428ae41babae --- /dev/null +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/model/config/customization/UnderscoresInNameBehavior.java @@ -0,0 +1,26 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.codegen.model.config.customization; + +/** + * Valid values for the {@link CustomizationConfig#setUnderscoresInNameBehavior} customization. + */ +public enum UnderscoresInNameBehavior { + /** + * Allow the underscores in names, and generating shapes with names that are non-idiomatic to the language. + */ + ALLOW +} diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/IntermediateModel.java b/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/IntermediateModel.java index ebc2ad242586..4948ac406dae 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/IntermediateModel.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/IntermediateModel.java @@ -20,6 +20,7 @@ import java.io.InputStream; import java.io.UncheckedIOException; import java.util.Collections; +import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Optional; @@ -57,9 +58,11 @@ public final class IntermediateModel { } public IntermediateModel() { + this.operations = new HashMap<>(); + this.shapes = new HashMap<>(); this.endpointOperation = Optional.empty(); - this.paginators = Collections.emptyMap(); - this.waiters = Collections.emptyMap(); + this.paginators = new HashMap<>(); + this.waiters = new HashMap<>(); this.namingStrategy = null; } diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/MemberModel.java b/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/MemberModel.java index f4ccd26fbd5d..a82127f17509 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/MemberModel.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/model/intermediate/MemberModel.java @@ -220,22 +220,6 @@ public MemberModel withBeanStyleSetterMethodName(String beanStyleSetterName) { return this; } - // TODO: Remove when all marshallers switch over to new style - public String getSetterMethodName() { - return getBeanStyleSetterMethodName(); - } - - // TODO: Remove when all marshallers switch over to new style - public void setSetterMethodName(String setterMethodName) { - setBeanStyleGetterMethodName(setterMethodName); - } - - // TODO: Remove when all marshallers switch over to new style - public MemberModel withSetterMethodName(String setterMethodName) { - setSetterMethodName(setterMethodName); - return this; - } - public String getFluentSetterMethodName() { return fluentSetterMethodName; } diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/model/service/Shape.java b/codegen/src/main/java/software/amazon/awssdk/codegen/model/service/Shape.java index c615d66fe57c..70971f8ad5a2 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/model/service/Shape.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/model/service/Shape.java @@ -20,7 +20,6 @@ import java.util.Map; public class Shape { - private String type; private Map members = Collections.emptyMap(); diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/naming/DefaultNamingStrategy.java b/codegen/src/main/java/software/amazon/awssdk/codegen/naming/DefaultNamingStrategy.java index 33a20dc9c237..0a996a7fbdf2 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/naming/DefaultNamingStrategy.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/naming/DefaultNamingStrategy.java @@ -32,15 +32,20 @@ import java.util.Objects; import java.util.Optional; import java.util.Set; +import java.util.regex.Pattern; import java.util.stream.Stream; import software.amazon.awssdk.codegen.internal.Constant; import software.amazon.awssdk.codegen.internal.Utils; import software.amazon.awssdk.codegen.model.config.customization.CustomizationConfig; +import software.amazon.awssdk.codegen.model.config.customization.UnderscoresInNameBehavior; +import software.amazon.awssdk.codegen.model.intermediate.IntermediateModel; import software.amazon.awssdk.codegen.model.intermediate.MemberModel; +import software.amazon.awssdk.codegen.model.intermediate.Metadata; import software.amazon.awssdk.codegen.model.service.ServiceModel; import software.amazon.awssdk.codegen.model.service.Shape; import software.amazon.awssdk.utils.Logger; import software.amazon.awssdk.utils.StringUtils; +import software.amazon.awssdk.utils.Validate; /** * Default implementation of naming strategy respecting. @@ -49,6 +54,9 @@ public class DefaultNamingStrategy implements NamingStrategy { private static final Logger log = Logger.loggerFor(DefaultNamingStrategy.class); + private static final Pattern VALID_IDENTIFIER_NAME = + Pattern.compile("\\p{javaJavaIdentifierStart}\\p{javaJavaIdentifierPart}*"); + private static final String COLLISION_DISAMBIGUATION_PREFIX = "Default"; private static final Set RESERVED_KEYWORDS; @@ -96,7 +104,7 @@ public class DefaultNamingStrategy implements NamingStrategy { public DefaultNamingStrategy(ServiceModel serviceModel, CustomizationConfig customizationConfig) { this.serviceModel = serviceModel; - this.customizationConfig = customizationConfig; + this.customizationConfig = customizationConfig == null ? CustomizationConfig.create() : customizationConfig; } private static boolean isJavaKeyword(String word) { @@ -178,7 +186,6 @@ public String getSmokeTestPackageName(String serviceName) { * if provided or service name with the shared service name. */ private String concatServiceNameIfShareModel(String serviceName) { - if (customizationConfig.getShareModelConfig() != null) { return customizationConfig.getShareModelConfig().getShareModelWith() + "." + Optional.ofNullable(customizationConfig.getShareModelConfig().getPackageName()).orElse(serviceName); @@ -268,11 +275,8 @@ public String getEnumValueName(String enumValue) { } @Override - public String getJavaClassName(String shapeName) { - return Arrays.stream(shapeName.split("[._-]|\\W")) - .filter(s -> !StringUtils.isEmpty(s)) - .map(Utils::capitalize) - .collect(joining()); + public String getShapeClassName(String shapeName) { + return Utils.capitalize(shapeName); } @Override @@ -374,4 +378,63 @@ private boolean isDisallowedNameForShape(String name, Shape parentShape) { return RESERVED_STRUCTURE_METHOD_NAMES.contains(name); } } + + @Override + public void validateCustomerVisibleNaming(IntermediateModel trimmedModel) { + Metadata metadata = trimmedModel.getMetadata(); + validateCustomerVisibleName(metadata.getSyncInterface(), "metadata-derived interface name"); + validateCustomerVisibleName(metadata.getSyncBuilderInterface(), "metadata-derived builder interface name"); + validateCustomerVisibleName(metadata.getAsyncInterface(), "metadata-derived async interface name"); + validateCustomerVisibleName(metadata.getAsyncBuilderInterface(), "metadata-derived async builder interface name"); + validateCustomerVisibleName(metadata.getBaseBuilderInterface(), "metadata-derived builder interface name"); + validateCustomerVisibleName(metadata.getBaseExceptionName(), "metadata-derived exception name"); + validateCustomerVisibleName(metadata.getBaseRequestName(), "metadata-derived request name"); + validateCustomerVisibleName(metadata.getBaseResponseName(), "metadata-derived response name"); + + trimmedModel.getOperations().values().forEach(operation -> { + validateCustomerVisibleName(operation.getOperationName(), "operations"); + }); + + trimmedModel.getWaiters().forEach((name, waiter) -> { + validateCustomerVisibleName(name, "waiters"); + }); + + trimmedModel.getShapes().values().forEach(shape -> { + String shapeName = shape.getShapeName(); + validateCustomerVisibleName(shapeName, "shapes"); + shape.getMembers().forEach(member -> { + validateCustomerVisibleName(member.getFluentGetterMethodName(), shapeName + " shape"); + validateCustomerVisibleName(member.getFluentSetterMethodName(), shapeName + " shape"); + validateCustomerVisibleName(member.getFluentEnumGetterMethodName(), shapeName + " shape"); + validateCustomerVisibleName(member.getFluentEnumSetterMethodName(), shapeName + " shape"); + validateCustomerVisibleName(member.getExistenceCheckMethodName(), shapeName + " shape"); + validateCustomerVisibleName(member.getBeanStyleGetterMethodName(), shapeName + " shape"); + validateCustomerVisibleName(member.getBeanStyleSetterMethodName(), shapeName + " shape"); + validateCustomerVisibleName(member.getEnumType(), shapeName + " shape"); + }); + }); + } + + private void validateCustomerVisibleName(String name, String location) { + if (name == null) { + return; + } + + if (name.contains("_")) { + UnderscoresInNameBehavior behavior = customizationConfig.getUnderscoresInNameBehavior(); + + String supportedBehaviors = Arrays.toString(UnderscoresInNameBehavior.values()); + Validate.notNull(behavior, + "Encountered a name or identifier that the customer will see (%s in the %s) with an underscore. " + + "This isn't idiomatic in Java. Please either remove the underscores or apply the " + + "'underscoresInNameBehavior' customization for this service (Supported " + + "'underscoresInNameBehavior' values: %s).", name, location, supportedBehaviors); + Validate.isTrue(behavior == UnderscoresInNameBehavior.ALLOW, + "Unsupported underscoresInShapeNameBehavior: %s. Supported values: %s", behavior, supportedBehaviors); + } + + Validate.isTrue(VALID_IDENTIFIER_NAME.matcher(name).matches(), + "Encountered a name or identifier that is invalid within Java (%s in %s). Please remove invalid " + + "characters.", name, location); + } } diff --git a/codegen/src/main/java/software/amazon/awssdk/codegen/naming/NamingStrategy.java b/codegen/src/main/java/software/amazon/awssdk/codegen/naming/NamingStrategy.java index 3fa2e301ed22..d59a34df29b6 100644 --- a/codegen/src/main/java/software/amazon/awssdk/codegen/naming/NamingStrategy.java +++ b/codegen/src/main/java/software/amazon/awssdk/codegen/naming/NamingStrategy.java @@ -15,6 +15,7 @@ package software.amazon.awssdk.codegen.naming; +import software.amazon.awssdk.codegen.model.intermediate.IntermediateModel; import software.amazon.awssdk.codegen.model.intermediate.MemberModel; import software.amazon.awssdk.codegen.model.service.Shape; @@ -97,7 +98,7 @@ public interface NamingStrategy { * @param shapeName Name of structure used to derive Java class name. * @return Appropriate name to use for a Java class for an arbitrary (not a request, response, error) structure. */ - String getJavaClassName(String shapeName); + String getShapeClassName(String shapeName); /** * @param memberName Member name to name getter for. @@ -154,4 +155,9 @@ public interface NamingStrategy { * @return Name of an existence check method. */ String getExistenceCheckMethodName(String memberName, Shape parentShape); + + /** + * Verify the customer-visible naming in the provided intermediate model will compile and is idiomatic to Java. + */ + void validateCustomerVisibleNaming(IntermediateModel trimmedModel); } diff --git a/codegen/src/test/java/software/amazon/awssdk/codegen/naming/DefaultNamingStrategyTest.java b/codegen/src/test/java/software/amazon/awssdk/codegen/naming/DefaultNamingStrategyTest.java index 3dab8c8be357..d3da6d10a28e 100644 --- a/codegen/src/test/java/software/amazon/awssdk/codegen/naming/DefaultNamingStrategyTest.java +++ b/codegen/src/test/java/software/amazon/awssdk/codegen/naming/DefaultNamingStrategyTest.java @@ -15,7 +15,9 @@ package software.amazon.awssdk.codegen.naming; +import static java.util.Collections.singletonList; import static org.assertj.core.api.Assertions.assertThat; +import static org.assertj.core.api.Assertions.assertThatThrownBy; import static org.mockito.Matchers.any; import static org.mockito.Matchers.eq; import static org.mockito.Mockito.mock; @@ -24,15 +26,20 @@ import java.util.ArrayList; import java.util.Arrays; import java.util.Map; - +import java.util.function.Consumer; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mock; import org.mockito.runners.MockitoJUnitRunner; import software.amazon.awssdk.codegen.model.config.customization.CustomizationConfig; +import software.amazon.awssdk.codegen.model.config.customization.UnderscoresInNameBehavior; import software.amazon.awssdk.codegen.model.config.customization.ShareModelConfig; +import software.amazon.awssdk.codegen.model.intermediate.IntermediateModel; import software.amazon.awssdk.codegen.model.intermediate.MemberModel; +import software.amazon.awssdk.codegen.model.intermediate.Metadata; +import software.amazon.awssdk.codegen.model.intermediate.OperationModel; +import software.amazon.awssdk.codegen.model.intermediate.ShapeModel; import software.amazon.awssdk.codegen.model.service.Member; import software.amazon.awssdk.codegen.model.service.ServiceMetadata; import software.amazon.awssdk.codegen.model.service.ServiceModel; @@ -40,6 +47,7 @@ @RunWith(MockitoJUnitRunner.class) public class DefaultNamingStrategyTest { + private CustomizationConfig customizationConfig = CustomizationConfig.create(); private ServiceModel serviceModel = mock(ServiceModel.class); @@ -61,17 +69,10 @@ public class DefaultNamingStrategyTest { @Mock private ServiceMetadata serviceMetadata; - private DefaultNamingStrategy strat = new DefaultNamingStrategy(serviceModel, null); + private DefaultNamingStrategy strat = new DefaultNamingStrategy(serviceModel, customizationConfig); @Before public void setUp() { - - } - - @Test - public void canConvertStringsWithNonAlphasToClassNames() { - String anInvalidClassName = "a phrase-With_other.delimiters"; - assertThat(strat.getJavaClassName(anInvalidClassName)).isEqualTo("APhraseWithOtherDelimiters"); } @Test @@ -317,51 +318,64 @@ private void validateConversion(String input, String expectedOutput) { } @Test - public void getJavaClassName_ReturnsSanitizedName_ClassStartingWithUnderscore() { - NamingStrategy strategy = new DefaultNamingStrategy(null, null); - String javaClassName = strategy.getJavaClassName("_MyClass"); - assertThat(javaClassName).isEqualTo("MyClass"); + public void validateDisallowsUnderscoresWithCustomization() { + String invalidName = "foo_bar"; + verifyFailure(i -> i.getMetadata().setAsyncBuilderInterface(invalidName)); + verifyFailure(i -> i.getMetadata().setSyncBuilderInterface(invalidName)); + verifyFailure(i -> i.getMetadata().setAsyncInterface(invalidName)); + verifyFailure(i -> i.getMetadata().setSyncInterface(invalidName)); + verifyFailure(i -> i.getMetadata().setBaseBuilderInterface(invalidName)); + verifyFailure(i -> i.getMetadata().setBaseExceptionName(invalidName)); + verifyFailure(i -> i.getOperations().put(invalidName, opModel(o -> o.setOperationName(invalidName)))); + verifyFailure(i -> i.getWaiters().put(invalidName, null)); + verifyFailure(i -> i.getShapes().put(invalidName, shapeModel(s -> s.setShapeName(invalidName)))); + verifyFailure(i -> i.getShapes().put(invalidName, shapeWithMember(m -> m.setBeanStyleGetterMethodName(invalidName)))); + verifyFailure(i -> i.getShapes().put(invalidName, shapeWithMember(m -> m.setBeanStyleSetterMethodName(invalidName)))); + verifyFailure(i -> i.getShapes().put(invalidName, shapeWithMember(m -> m.setFluentEnumGetterMethodName(invalidName)))); + verifyFailure(i -> i.getShapes().put(invalidName, shapeWithMember(m -> m.setFluentEnumSetterMethodName(invalidName)))); + verifyFailure(i -> i.getShapes().put(invalidName, shapeWithMember(m -> m.setFluentGetterMethodName(invalidName)))); + verifyFailure(i -> i.getShapes().put(invalidName, shapeWithMember(m -> m.setFluentSetterMethodName(invalidName)))); + verifyFailure(i -> i.getShapes().put(invalidName, shapeWithMember(m -> m.setEnumType(invalidName)))); } @Test - public void getJavaClassName_ReturnsSanitizedName_ClassStartingWithDoubleUnderscore() { - NamingStrategy strategy = new DefaultNamingStrategy(null, null); - String javaClassName = strategy.getJavaClassName("__MyClass"); - assertThat(javaClassName).isEqualTo("MyClass"); - } + public void validateAllowsUnderscoresWithCustomization() { + CustomizationConfig customization = + CustomizationConfig.create() + .withUnderscoresInShapeNameBehavior(UnderscoresInNameBehavior.ALLOW); + NamingStrategy strategy = new DefaultNamingStrategy(serviceModel, customization); - @Test - public void getJavaClassName_ReturnsSanitizedName_ClassStartingWithDoublePeriods() { - NamingStrategy strategy = new DefaultNamingStrategy(null, null); - String javaClassName = strategy.getJavaClassName("..MyClass"); - assertThat(javaClassName).isEqualTo("MyClass"); + Metadata metadata = new Metadata(); + metadata.setAsyncBuilderInterface("foo_bar"); + + IntermediateModel model = new IntermediateModel(); + model.setMetadata(metadata); + + strategy.validateCustomerVisibleNaming(model); } - @Test - public void getJavaClassName_ReturnsSanitizedName_ClassStartingWithDoubleDashes() { - NamingStrategy strategy = new DefaultNamingStrategy(null, null); - String javaClassName = strategy.getJavaClassName("--MyClass"); - assertThat(javaClassName).isEqualTo("MyClass"); + private void verifyFailure(Consumer modelModifier) { + IntermediateModel model = new IntermediateModel(); + model.setMetadata(new Metadata()); + modelModifier.accept(model); + assertThatThrownBy(() -> strat.validateCustomerVisibleNaming(model)).isInstanceOf(RuntimeException.class); } - @Test - public void getJavaClassName_ReturnsSanitizedName_DoubleUnderscoresInClass() { - NamingStrategy strategy = new DefaultNamingStrategy(null, null); - String javaClassName = strategy.getJavaClassName("My__Class"); - assertThat(javaClassName).isEqualTo("MyClass"); + private OperationModel opModel(Consumer operationModifier) { + OperationModel model = new OperationModel(); + operationModifier.accept(model); + return model; } - @Test - public void getJavaClassName_ReturnsSanitizedName_DoublePeriodsInClass() { - NamingStrategy strategy = new DefaultNamingStrategy(null, null); - String javaClassName = strategy.getJavaClassName("My..Class"); - assertThat(javaClassName).isEqualTo("MyClass"); + private ShapeModel shapeModel(Consumer shapeModifier) { + ShapeModel model = new ShapeModel(); + shapeModifier.accept(model); + return model; } - @Test - public void getJavaClassName_ReturnsSanitizedName_DoubleDashesInClass() { - NamingStrategy strategy = new DefaultNamingStrategy(null, null); - String javaClassName = strategy.getJavaClassName("My--Class"); - assertThat(javaClassName).isEqualTo("MyClass"); + private ShapeModel shapeWithMember(Consumer memberModifier) { + MemberModel model = new MemberModel(); + memberModifier.accept(model); + return shapeModel(s -> s.setMembers(singletonList(model))); } } diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/c2j/json/service-2.json b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/c2j/json/service-2.json index 804601499ba8..bc7778da0ab1 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/c2j/json/service-2.json +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/c2j/json/service-2.json @@ -412,7 +412,7 @@ "EventOne": { "shape": "EventOne" }, - "event-two": { + "EventTheSecond": { "shape": "EventTwo" } }, diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-async-client-class.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-async-client-class.java index 17432165b749..ee125986e361 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-async-client-class.java +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/client/test-async-client-class.java @@ -305,7 +305,7 @@ public CompletableFuture eventStreamOperation(EventStreamOperationRequest HttpResponseHandler eventResponseHandler = protocolFactory.createResponseHandler( JsonOperationMetadata.builder().isPayloadJson(true).hasStreamingSuccessResponse(false).build(), EventStreamTaggedUnionPojoSupplier.builder().putSdkPojoSupplier("EventOne", EventOne::builder) - .putSdkPojoSupplier("event-two", EventTwo::builder) + .putSdkPojoSupplier("EventTheSecond", EventTwo::builder) .defaultSdkPojoSupplier(() -> new SdkPojoBuilder(EventStream.UNKNOWN)).build()); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, @@ -467,7 +467,7 @@ public CompletableFuture eventStreamOperationWithOnlyOutput( HttpResponseHandler eventResponseHandler = protocolFactory.createResponseHandler( JsonOperationMetadata.builder().isPayloadJson(true).hasStreamingSuccessResponse(false).build(), EventStreamTaggedUnionPojoSupplier.builder().putSdkPojoSupplier("EventOne", EventOne::builder) - .putSdkPojoSupplier("event-two", EventTwo::builder) + .putSdkPojoSupplier("EventTheSecond", EventTwo::builder) .defaultSdkPojoSupplier(() -> new SdkPojoBuilder(EventStream.UNKNOWN)).build()); HttpResponseHandler errorResponseHandler = createErrorResponseHandler(protocolFactory, diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/alltypesrequest.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/alltypesrequest.java index ec8f31570663..ae12bb7166a1 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/alltypesrequest.java +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/alltypesrequest.java @@ -389,6 +389,13 @@ SdkField. builder(MarshallingType.SDK_BYTES) .memberName("EnumType").getter(getter(AllTypesRequest::enumTypeAsString)).setter(setter(Builder::enumType)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("EnumType").build()).build(); + private static final SdkField UNDERSCORE_NAME_TYPE_FIELD = SdkField + . builder(MarshallingType.SDK_POJO).memberName("Underscore_Name_Type") + .getter(getter(AllTypesRequest::underscore_Name_Type)).setter(setter(Builder::underscore_Name_Type)) + .constructor(Underscore_Name_Type::builder) + .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Underscore_Name_Type").build()) + .build(); + private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(STRING_MEMBER_FIELD, INTEGER_MEMBER_FIELD, BOOLEAN_MEMBER_FIELD, FLOAT_MEMBER_FIELD, DOUBLE_MEMBER_FIELD, LONG_MEMBER_FIELD, SIMPLE_LIST_FIELD, LIST_OF_ENUMS_FIELD, LIST_OF_MAPS_FIELD, LIST_OF_STRUCTS_FIELD, @@ -397,7 +404,8 @@ SdkField. builder(MarshallingType.SDK_BYTES) MAP_OF_STRING_TO_ENUM_FIELD, MAP_OF_ENUM_TO_SIMPLE_STRUCT_FIELD, MAP_OF_ENUM_TO_LIST_OF_ENUMS_FIELD, MAP_OF_ENUM_TO_MAP_OF_STRING_TO_ENUM_FIELD, TIMESTAMP_MEMBER_FIELD, STRUCT_WITH_NESTED_TIMESTAMP_MEMBER_FIELD, BLOB_ARG_FIELD, STRUCT_WITH_NESTED_BLOB_FIELD, BLOB_MAP_FIELD, LIST_OF_BLOBS_FIELD, RECURSIVE_STRUCT_FIELD, - POLYMORPHIC_TYPE_WITH_SUB_TYPES_FIELD, POLYMORPHIC_TYPE_WITHOUT_SUB_TYPES_FIELD, ENUM_TYPE_FIELD)); + POLYMORPHIC_TYPE_WITH_SUB_TYPES_FIELD, POLYMORPHIC_TYPE_WITHOUT_SUB_TYPES_FIELD, ENUM_TYPE_FIELD, + UNDERSCORE_NAME_TYPE_FIELD)); private final String stringMember; @@ -459,6 +467,8 @@ SdkField. builder(MarshallingType.SDK_BYTES) private final String enumType; + private final Underscore_Name_Type underscore_Name_Type; + private AllTypesRequest(BuilderImpl builder) { super(builder); this.stringMember = builder.stringMember; @@ -491,6 +501,7 @@ private AllTypesRequest(BuilderImpl builder) { this.polymorphicTypeWithSubTypes = builder.polymorphicTypeWithSubTypes; this.polymorphicTypeWithoutSubTypes = builder.polymorphicTypeWithoutSubTypes; this.enumType = builder.enumType; + this.underscore_Name_Type = builder.underscore_Name_Type; } /** @@ -1138,6 +1149,15 @@ public String enumTypeAsString() { return enumType; } + /** + * Returns the value of the Underscore_Name_Type property for this object. + * + * @return The value of the Underscore_Name_Type property for this object. + */ + public Underscore_Name_Type underscore_Name_Type() { + return underscore_Name_Type; + } + @Override public Builder toBuilder() { return new BuilderImpl(this); @@ -1186,6 +1206,7 @@ public int hashCode() { hashCode = 31 * hashCode + Objects.hashCode(polymorphicTypeWithSubTypes()); hashCode = 31 * hashCode + Objects.hashCode(polymorphicTypeWithoutSubTypes()); hashCode = 31 * hashCode + Objects.hashCode(enumTypeAsString()); + hashCode = 31 * hashCode + Objects.hashCode(underscore_Name_Type()); return hashCode; } @@ -1243,7 +1264,8 @@ && hasMapOfEnumToMapOfStringToEnum() == other.hasMapOfEnumToMapOfStringToEnum() && Objects.equals(recursiveStruct(), other.recursiveStruct()) && Objects.equals(polymorphicTypeWithSubTypes(), other.polymorphicTypeWithSubTypes()) && Objects.equals(polymorphicTypeWithoutSubTypes(), other.polymorphicTypeWithoutSubTypes()) - && Objects.equals(enumTypeAsString(), other.enumTypeAsString()); + && Objects.equals(enumTypeAsString(), other.enumTypeAsString()) + && Objects.equals(underscore_Name_Type(), other.underscore_Name_Type()); } /** @@ -1281,7 +1303,7 @@ public String toString() { .add("ListOfBlobs", hasListOfBlobs() ? listOfBlobs() : null).add("RecursiveStruct", recursiveStruct()) .add("PolymorphicTypeWithSubTypes", polymorphicTypeWithSubTypes()) .add("PolymorphicTypeWithoutSubTypes", polymorphicTypeWithoutSubTypes()).add("EnumType", enumTypeAsString()) - .build(); + .add("Underscore_Name_Type", underscore_Name_Type()).build(); } public Optional getValueForField(String fieldName, Class clazz) { @@ -1346,6 +1368,8 @@ public Optional getValueForField(String fieldName, Class clazz) { return Optional.ofNullable(clazz.cast(polymorphicTypeWithoutSubTypes())); case "EnumType": return Optional.ofNullable(clazz.cast(enumTypeAsString())); + case "Underscore_Name_Type": + return Optional.ofNullable(clazz.cast(underscore_Name_Type())); default: return Optional.empty(); } @@ -1881,6 +1905,33 @@ default Builder polymorphicTypeWithoutSubTypes(Consumer poly */ Builder enumType(EnumType enumType); + /** + * Sets the value of the Underscore_Name_Type property for this object. + * + * @param underscore_Name_Type + * The new value for the Underscore_Name_Type property for this object. + * @return Returns a reference to this object so that method calls can be chained together. + */ + Builder underscore_Name_Type(Underscore_Name_Type underscore_Name_Type); + + /** + * Sets the value of the Underscore_Name_Type property for this object. + * + * This is a convenience that creates an instance of the {@link Underscore_Name_Type.Builder} avoiding the need + * to create one manually via {@link Underscore_Name_Type#builder()}. + * + * When the {@link Consumer} completes, {@link Underscore_Name_Type.Builder#build()} is called immediately and + * its result is passed to {@link #underscore_Name_Type(Underscore_Name_Type)}. + * + * @param underscore_Name_Type + * a consumer that will call methods on {@link Underscore_Name_Type.Builder} + * @return Returns a reference to this object so that method calls can be chained together. + * @see #underscore_Name_Type(Underscore_Name_Type) + */ + default Builder underscore_Name_Type(Consumer underscore_Name_Type) { + return underscore_Name_Type(Underscore_Name_Type.builder().applyMutation(underscore_Name_Type).build()); + } + @Override Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration); @@ -1949,6 +2000,8 @@ static final class BuilderImpl extends JsonProtocolTestsRequest.BuilderImpl impl private String enumType; + private Underscore_Name_Type underscore_Name_Type; + private BuilderImpl() { } @@ -1984,6 +2037,7 @@ private BuilderImpl(AllTypesRequest model) { polymorphicTypeWithSubTypes(model.polymorphicTypeWithSubTypes); polymorphicTypeWithoutSubTypes(model.polymorphicTypeWithoutSubTypes); enumType(model.enumType); + underscore_Name_Type(model.underscore_Name_Type); } public final String getStringMember() { @@ -2567,6 +2621,20 @@ public final void setEnumType(String enumType) { this.enumType = enumType; } + public final Underscore_Name_Type.Builder getUnderscore_Name_Type() { + return underscore_Name_Type != null ? underscore_Name_Type.toBuilder() : null; + } + + @Override + public final Builder underscore_Name_Type(Underscore_Name_Type underscore_Name_Type) { + this.underscore_Name_Type = underscore_Name_Type; + return this; + } + + public final void setUnderscore_Name_Type(Underscore_Name_Type.BuilderImpl underscore_Name_Type) { + this.underscore_Name_Type = underscore_Name_Type != null ? underscore_Name_Type.build() : null; + } + @Override public Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) { super.overrideConfiguration(overrideConfiguration); diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/alltypesresponse.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/alltypesresponse.java index 9be04b10308a..75e14ae6dc5f 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/alltypesresponse.java +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/alltypesresponse.java @@ -388,6 +388,13 @@ SdkField. builder(MarshallingType.SDK_BYTES) .memberName("EnumType").getter(getter(AllTypesResponse::enumTypeAsString)).setter(setter(Builder::enumType)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("EnumType").build()).build(); + private static final SdkField UNDERSCORE_NAME_TYPE_FIELD = SdkField + . builder(MarshallingType.SDK_POJO).memberName("Underscore_Name_Type") + .getter(getter(AllTypesResponse::underscore_Name_Type)).setter(setter(Builder::underscore_Name_Type)) + .constructor(Underscore_Name_Type::builder) + .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Underscore_Name_Type").build()) + .build(); + private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(STRING_MEMBER_FIELD, INTEGER_MEMBER_FIELD, BOOLEAN_MEMBER_FIELD, FLOAT_MEMBER_FIELD, DOUBLE_MEMBER_FIELD, LONG_MEMBER_FIELD, SIMPLE_LIST_FIELD, LIST_OF_ENUMS_FIELD, LIST_OF_MAPS_FIELD, LIST_OF_STRUCTS_FIELD, @@ -396,7 +403,8 @@ SdkField. builder(MarshallingType.SDK_BYTES) MAP_OF_STRING_TO_ENUM_FIELD, MAP_OF_ENUM_TO_SIMPLE_STRUCT_FIELD, MAP_OF_ENUM_TO_LIST_OF_ENUMS_FIELD, MAP_OF_ENUM_TO_MAP_OF_STRING_TO_ENUM_FIELD, TIMESTAMP_MEMBER_FIELD, STRUCT_WITH_NESTED_TIMESTAMP_MEMBER_FIELD, BLOB_ARG_FIELD, STRUCT_WITH_NESTED_BLOB_FIELD, BLOB_MAP_FIELD, LIST_OF_BLOBS_FIELD, RECURSIVE_STRUCT_FIELD, - POLYMORPHIC_TYPE_WITH_SUB_TYPES_FIELD, POLYMORPHIC_TYPE_WITHOUT_SUB_TYPES_FIELD, ENUM_TYPE_FIELD)); + POLYMORPHIC_TYPE_WITH_SUB_TYPES_FIELD, POLYMORPHIC_TYPE_WITHOUT_SUB_TYPES_FIELD, ENUM_TYPE_FIELD, + UNDERSCORE_NAME_TYPE_FIELD)); private final String stringMember; @@ -458,6 +466,8 @@ SdkField. builder(MarshallingType.SDK_BYTES) private final String enumType; + private final Underscore_Name_Type underscore_Name_Type; + private AllTypesResponse(BuilderImpl builder) { super(builder); this.stringMember = builder.stringMember; @@ -490,6 +500,7 @@ private AllTypesResponse(BuilderImpl builder) { this.polymorphicTypeWithSubTypes = builder.polymorphicTypeWithSubTypes; this.polymorphicTypeWithoutSubTypes = builder.polymorphicTypeWithoutSubTypes; this.enumType = builder.enumType; + this.underscore_Name_Type = builder.underscore_Name_Type; } /** @@ -1137,6 +1148,15 @@ public String enumTypeAsString() { return enumType; } + /** + * Returns the value of the Underscore_Name_Type property for this object. + * + * @return The value of the Underscore_Name_Type property for this object. + */ + public Underscore_Name_Type underscore_Name_Type() { + return underscore_Name_Type; + } + @Override public Builder toBuilder() { return new BuilderImpl(this); @@ -1185,6 +1205,7 @@ public int hashCode() { hashCode = 31 * hashCode + Objects.hashCode(polymorphicTypeWithSubTypes()); hashCode = 31 * hashCode + Objects.hashCode(polymorphicTypeWithoutSubTypes()); hashCode = 31 * hashCode + Objects.hashCode(enumTypeAsString()); + hashCode = 31 * hashCode + Objects.hashCode(underscore_Name_Type()); return hashCode; } @@ -1242,7 +1263,8 @@ && hasMapOfEnumToMapOfStringToEnum() == other.hasMapOfEnumToMapOfStringToEnum() && Objects.equals(recursiveStruct(), other.recursiveStruct()) && Objects.equals(polymorphicTypeWithSubTypes(), other.polymorphicTypeWithSubTypes()) && Objects.equals(polymorphicTypeWithoutSubTypes(), other.polymorphicTypeWithoutSubTypes()) - && Objects.equals(enumTypeAsString(), other.enumTypeAsString()); + && Objects.equals(enumTypeAsString(), other.enumTypeAsString()) + && Objects.equals(underscore_Name_Type(), other.underscore_Name_Type()); } /** @@ -1280,7 +1302,7 @@ public String toString() { .add("ListOfBlobs", hasListOfBlobs() ? listOfBlobs() : null).add("RecursiveStruct", recursiveStruct()) .add("PolymorphicTypeWithSubTypes", polymorphicTypeWithSubTypes()) .add("PolymorphicTypeWithoutSubTypes", polymorphicTypeWithoutSubTypes()).add("EnumType", enumTypeAsString()) - .build(); + .add("Underscore_Name_Type", underscore_Name_Type()).build(); } public Optional getValueForField(String fieldName, Class clazz) { @@ -1345,6 +1367,8 @@ public Optional getValueForField(String fieldName, Class clazz) { return Optional.ofNullable(clazz.cast(polymorphicTypeWithoutSubTypes())); case "EnumType": return Optional.ofNullable(clazz.cast(enumTypeAsString())); + case "Underscore_Name_Type": + return Optional.ofNullable(clazz.cast(underscore_Name_Type())); default: return Optional.empty(); } @@ -1879,6 +1903,33 @@ default Builder polymorphicTypeWithoutSubTypes(Consumer poly * @see EnumType */ Builder enumType(EnumType enumType); + + /** + * Sets the value of the Underscore_Name_Type property for this object. + * + * @param underscore_Name_Type + * The new value for the Underscore_Name_Type property for this object. + * @return Returns a reference to this object so that method calls can be chained together. + */ + Builder underscore_Name_Type(Underscore_Name_Type underscore_Name_Type); + + /** + * Sets the value of the Underscore_Name_Type property for this object. + * + * This is a convenience that creates an instance of the {@link Underscore_Name_Type.Builder} avoiding the need + * to create one manually via {@link Underscore_Name_Type#builder()}. + * + * When the {@link Consumer} completes, {@link Underscore_Name_Type.Builder#build()} is called immediately and + * its result is passed to {@link #underscore_Name_Type(Underscore_Name_Type)}. + * + * @param underscore_Name_Type + * a consumer that will call methods on {@link Underscore_Name_Type.Builder} + * @return Returns a reference to this object so that method calls can be chained together. + * @see #underscore_Name_Type(Underscore_Name_Type) + */ + default Builder underscore_Name_Type(Consumer underscore_Name_Type) { + return underscore_Name_Type(Underscore_Name_Type.builder().applyMutation(underscore_Name_Type).build()); + } } static final class BuilderImpl extends JsonProtocolTestsResponse.BuilderImpl implements Builder { @@ -1942,6 +1993,8 @@ static final class BuilderImpl extends JsonProtocolTestsResponse.BuilderImpl imp private String enumType; + private Underscore_Name_Type underscore_Name_Type; + private BuilderImpl() { } @@ -1977,6 +2030,7 @@ private BuilderImpl(AllTypesResponse model) { polymorphicTypeWithSubTypes(model.polymorphicTypeWithSubTypes); polymorphicTypeWithoutSubTypes(model.polymorphicTypeWithoutSubTypes); enumType(model.enumType); + underscore_Name_Type(model.underscore_Name_Type); } public final String getStringMember() { @@ -2560,6 +2614,20 @@ public final void setEnumType(String enumType) { this.enumType = enumType; } + public final Underscore_Name_Type.Builder getUnderscore_Name_Type() { + return underscore_Name_Type != null ? underscore_Name_Type.toBuilder() : null; + } + + @Override + public final Builder underscore_Name_Type(Underscore_Name_Type underscore_Name_Type) { + this.underscore_Name_Type = underscore_Name_Type; + return this; + } + + public final void setUnderscore_Name_Type(Underscore_Name_Type.BuilderImpl underscore_Name_Type) { + this.underscore_Name_Type = underscore_Name_Type != null ? underscore_Name_Type.build() : null; + } + @Override public AllTypesResponse build() { return new AllTypesResponse(this); diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/customization.config b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/customization.config index 089c236467d7..f03277692cc2 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/customization.config +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/customization.config @@ -19,5 +19,6 @@ } ] } - } + }, + "underscoresInNameBehavior": "ALLOW" } \ No newline at end of file diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/customresponsemetadata/customization.config b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/customresponsemetadata/customization.config index 47c797cac39f..d3b7f5d49d46 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/customresponsemetadata/customization.config +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/customresponsemetadata/customization.config @@ -9,5 +9,6 @@ "FOO_ID" : "x-foo-id", "BAR_ID" : "x-bar-id", "REQUEST_ID": "x-foobar-id" - } + }, + "underscoresInNameBehavior": "ALLOW" } \ No newline at end of file diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/service-2.json b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/service-2.json index b0e427ae9de6..932792273111 100644 --- a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/service-2.json +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/service-2.json @@ -137,7 +137,8 @@ "RecursiveStruct":{"shape":"RecursiveStructType"}, "PolymorphicTypeWithSubTypes":{"shape":"BaseType"}, "PolymorphicTypeWithoutSubTypes":{"shape":"SubTypeOne"}, - "EnumType":{"shape":"EnumType"} + "EnumType":{"shape":"EnumType"}, + "Underscore_Name_Type":{"shape":"Underscore_Name_Type"} } }, "BaseType":{ @@ -468,6 +469,9 @@ }, "event": true }, - "ImplicitPayloadMemberOne":{"type":"blob"} + "ImplicitPayloadMemberOne":{"type":"blob"}, + "Underscore_Name_Type": { + "type": "structure" + } } } diff --git a/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/underscore_name_type.java b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/underscore_name_type.java new file mode 100644 index 000000000000..af360b3d690a --- /dev/null +++ b/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/model/underscore_name_type.java @@ -0,0 +1,103 @@ +package software.amazon.awssdk.services.jsonprotocoltests.model; + +import java.io.Serializable; +import java.util.Arrays; +import java.util.Collections; +import java.util.List; +import java.util.Optional; +import software.amazon.awssdk.annotations.Generated; +import software.amazon.awssdk.core.SdkField; +import software.amazon.awssdk.core.SdkPojo; +import software.amazon.awssdk.utils.ToString; +import software.amazon.awssdk.utils.builder.CopyableBuilder; +import software.amazon.awssdk.utils.builder.ToCopyableBuilder; + +/** + */ +@Generated("software.amazon.awssdk:codegen") +public final class Underscore_Name_Type implements SdkPojo, Serializable, + ToCopyableBuilder { + private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList()); + + private static final long serialVersionUID = 1L; + + private Underscore_Name_Type(BuilderImpl builder) { + } + + @Override + public Builder toBuilder() { + return new BuilderImpl(this); + } + + public static Builder builder() { + return new BuilderImpl(); + } + + public static Class serializableBuilderClass() { + return BuilderImpl.class; + } + + @Override + public int hashCode() { + int hashCode = 1; + return hashCode; + } + + @Override + public boolean equals(Object obj) { + return equalsBySdkFields(obj); + } + + @Override + public boolean equalsBySdkFields(Object obj) { + if (this == obj) { + return true; + } + if (obj == null) { + return false; + } + if (!(obj instanceof Underscore_Name_Type)) { + return false; + } + return true; + } + + /** + * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be + * redacted from this string using a placeholder value. + */ + @Override + public String toString() { + return ToString.builder("Underscore_Name_Type").build(); + } + + public Optional getValueForField(String fieldName, Class clazz) { + return Optional.empty(); + } + + @Override + public List> sdkFields() { + return SDK_FIELDS; + } + + public interface Builder extends SdkPojo, CopyableBuilder { + } + + static final class BuilderImpl implements Builder { + private BuilderImpl() { + } + + private BuilderImpl(Underscore_Name_Type model) { + } + + @Override + public Underscore_Name_Type build() { + return new Underscore_Name_Type(this); + } + + @Override + public List> sdkFields() { + return SDK_FIELDS; + } + } +} diff --git a/services/mediapackage/src/main/resources/codegen-resources/customization.config b/services/mediapackage/src/main/resources/codegen-resources/customization.config index 80aeab17626a..ee587bd61c35 100644 --- a/services/mediapackage/src/main/resources/codegen-resources/customization.config +++ b/services/mediapackage/src/main/resources/codegen-resources/customization.config @@ -5,5 +5,10 @@ ], "deprecatedOperations": [ "RotateChannelCredentials" - ] + ], + "renameShapes": { + // Do not keep adding to this list. Require the service team to name enums like they're naming their shapes. + "__AdTriggersElement": "AdTriggersElement", + "__PeriodTriggersElement": "PeriodTriggersElement" + } } diff --git a/services/mediapackagevod/src/main/resources/codegen-resources/customization.config b/services/mediapackagevod/src/main/resources/codegen-resources/customization.config new file mode 100644 index 000000000000..3a8d27a41544 --- /dev/null +++ b/services/mediapackagevod/src/main/resources/codegen-resources/customization.config @@ -0,0 +1,6 @@ +{ + "renameShapes": { + // Do not keep adding to this list. Require the service team to name enums like they're naming their shapes. + "__PeriodTriggersElement": "PeriodTriggersElement" + } +} diff --git a/services/pinpoint/src/main/resources/codegen-resources/customization.config b/services/pinpoint/src/main/resources/codegen-resources/customization.config index 6abaf75b14b1..2c471c083b7f 100644 --- a/services/pinpoint/src/main/resources/codegen-resources/customization.config +++ b/services/pinpoint/src/main/resources/codegen-resources/customization.config @@ -1,3 +1,7 @@ { - "blacklistedSimpleMethods" : ["*"] + "blacklistedSimpleMethods" : ["*"], + "renameShapes": { + // Do not keep adding to this list. Require the service team to name enums like they're naming their shapes. + "__EndpointTypesElement": "EndpointTypesElement" + } } diff --git a/services/ssooidc/src/main/resources/codegen-resources/customization.config b/services/ssooidc/src/main/resources/codegen-resources/customization.config new file mode 100644 index 000000000000..919e7a0f70fc --- /dev/null +++ b/services/ssooidc/src/main/resources/codegen-resources/customization.config @@ -0,0 +1,125 @@ +{ + "shapeModifiers": { + // Do not keep adding to this list. Make the service team do the right thing across all SDKs. + "AccessDeniedException": { + "modify": [ + { + "error_description": { + "emitPropertyName": "errorDescription", + "existingNameDeprecated": true + } + } + ] + }, + "AuthorizationPendingException": { + "modify": [ + { + "error_description": { + "emitPropertyName": "errorDescription", + "existingNameDeprecated": true + } + } + ] + }, + "ExpiredTokenException": { + "modify": [ + { + "error_description": { + "emitPropertyName": "errorDescription", + "existingNameDeprecated": true + } + } + ] + }, + "InternalServerException": { + "modify": [ + { + "error_description": { + "emitPropertyName": "errorDescription", + "existingNameDeprecated": true + } + } + ] + }, + "InvalidClientException": { + "modify": [ + { + "error_description": { + "emitPropertyName": "errorDescription", + "existingNameDeprecated": true + } + } + ] + }, + "InvalidClientMetadataException": { + "modify": [ + { + "error_description": { + "emitPropertyName": "errorDescription", + "existingNameDeprecated": true + } + } + ] + }, + "InvalidGrantException": { + "modify": [ + { + "error_description": { + "emitPropertyName": "errorDescription", + "existingNameDeprecated": true + } + } + ] + }, + "InvalidRequestException": { + "modify": [ + { + "error_description": { + "emitPropertyName": "errorDescription", + "existingNameDeprecated": true + } + } + ] + }, + "InvalidScopeException": { + "modify": [ + { + "error_description": { + "emitPropertyName": "errorDescription", + "existingNameDeprecated": true + } + } + ] + }, + "SlowDownException": { + "modify": [ + { + "error_description": { + "emitPropertyName": "errorDescription", + "existingNameDeprecated": true + } + } + ] + }, + "UnauthorizedClientException": { + "modify": [ + { + "error_description": { + "emitPropertyName": "errorDescription", + "existingNameDeprecated": true + } + } + ] + }, + "UnsupportedGrantTypeException": { + "modify": [ + { + "error_description": { + "emitPropertyName": "errorDescription", + "existingNameDeprecated": true + } + } + ] + } + } +} \ No newline at end of file From 8e40275fdab369644a399110b66b055931da32c8 Mon Sep 17 00:00:00 2001 From: Ben Maizels Date: Mon, 26 Oct 2020 15:25:50 -0700 Subject: [PATCH 109/339] Fix for handling transormation error in async DynamoDb Enhanced Client operations that return an SdkPublisher --- ...fix-AWSDynamoDBEnhancedClient-f9d7822.json | 6 + .../bugfix-AWSSDKforJavav2-20589d0.json | 6 + .../awssdk/core/async/SdkPublisher.java | 9 +- .../awssdk/core/async/SdkPublishersTest.java | 85 ++++++++++++++- .../src/test/java/utils/FakeSdkPublisher.java | 54 +++++++++ .../FailedConversionAsyncTest.java | 103 ++++++++++++++++++ .../FailedConversionSyncTest.java | 99 +++++++++++++++++ .../LocalDynamoDbAsyncTestBase.java | 17 ++- .../functionaltests/models/FakeEnum.java | 21 ++++ .../models/FakeEnumRecord.java | 42 +++++++ .../models/FakeEnumShortened.java | 20 ++++ .../models/FakeEnumShortenedRecord.java | 42 +++++++ .../utils/internal/MappingSubscriber.java | 92 ++++++++++++++++ .../utils/internal/MappingSubscriberTest.java | 98 +++++++++++++++++ 14 files changed, 684 insertions(+), 10 deletions(-) create mode 100644 .changes/next-release/bugfix-AWSDynamoDBEnhancedClient-f9d7822.json create mode 100644 .changes/next-release/bugfix-AWSSDKforJavav2-20589d0.json create mode 100644 core/sdk-core/src/test/java/utils/FakeSdkPublisher.java create mode 100644 services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/FailedConversionAsyncTest.java create mode 100644 services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/FailedConversionSyncTest.java create mode 100644 services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/models/FakeEnum.java create mode 100644 services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/models/FakeEnumRecord.java create mode 100644 services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/models/FakeEnumShortened.java create mode 100644 services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/models/FakeEnumShortenedRecord.java create mode 100644 utils/src/main/java/software/amazon/awssdk/utils/internal/MappingSubscriber.java create mode 100644 utils/src/test/java/software/amazon/awssdk/utils/internal/MappingSubscriberTest.java diff --git a/.changes/next-release/bugfix-AWSDynamoDBEnhancedClient-f9d7822.json b/.changes/next-release/bugfix-AWSDynamoDBEnhancedClient-f9d7822.json new file mode 100644 index 000000000000..66ab39d638b9 --- /dev/null +++ b/.changes/next-release/bugfix-AWSDynamoDBEnhancedClient-f9d7822.json @@ -0,0 +1,6 @@ +{ + "type": "bugfix", + "category": "AWS DynamoDB Enhanced Client", + "contributor": "", + "description": "Publisher streams returned by async resources in the DynamoDB Enhanced Client now correctly handle mapping errors when they are encountered in the stream by calling onError on the subscriber and then implicitly cancelling the subscription. Previously the stream would just permanently hang and never complete." +} diff --git a/.changes/next-release/bugfix-AWSSDKforJavav2-20589d0.json b/.changes/next-release/bugfix-AWSSDKforJavav2-20589d0.json new file mode 100644 index 000000000000..28c4eacec213 --- /dev/null +++ b/.changes/next-release/bugfix-AWSSDKforJavav2-20589d0.json @@ -0,0 +1,6 @@ +{ + "type": "bugfix", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "The mapped publisher returned by SdkPublisher.map will now handle exceptions thrown by the mapping function by calling onError on its subscriber and then cancelling the subscription rather than throwing it back to the publishing process when it attempts to publish data." +} diff --git a/core/sdk-core/src/main/java/software/amazon/awssdk/core/async/SdkPublisher.java b/core/sdk-core/src/main/java/software/amazon/awssdk/core/async/SdkPublisher.java index d69e55ff568d..978fe7aa8389 100644 --- a/core/sdk-core/src/main/java/software/amazon/awssdk/core/async/SdkPublisher.java +++ b/core/sdk-core/src/main/java/software/amazon/awssdk/core/async/SdkPublisher.java @@ -24,11 +24,11 @@ import org.reactivestreams.Subscriber; import software.amazon.awssdk.annotations.SdkPublicApi; import software.amazon.awssdk.utils.async.BufferingSubscriber; -import software.amazon.awssdk.utils.async.DelegatingSubscriber; import software.amazon.awssdk.utils.async.FilteringSubscriber; import software.amazon.awssdk.utils.async.FlatteningSubscriber; import software.amazon.awssdk.utils.async.LimitingSubscriber; import software.amazon.awssdk.utils.async.SequentialSubscriber; +import software.amazon.awssdk.utils.internal.MappingSubscriber; /** * Interface that is implemented by the Async auto-paginated responses. @@ -79,12 +79,7 @@ default SdkPublisher filter(Predicate predicate) { * @return New publisher with events mapped according to the given function. */ default SdkPublisher map(Function mapper) { - return subscriber -> subscribe(new DelegatingSubscriber(subscriber) { - @Override - public void onNext(T t) { - subscriber.onNext(mapper.apply(t)); - } - }); + return subscriber -> subscribe(MappingSubscriber.create(subscriber, mapper)); } /** diff --git a/core/sdk-core/src/test/java/software/amazon/awssdk/core/async/SdkPublishersTest.java b/core/sdk-core/src/test/java/software/amazon/awssdk/core/async/SdkPublishersTest.java index 95d4d36bae09..b7c88409e4a7 100644 --- a/core/sdk-core/src/test/java/software/amazon/awssdk/core/async/SdkPublishersTest.java +++ b/core/sdk-core/src/test/java/software/amazon/awssdk/core/async/SdkPublishersTest.java @@ -26,9 +26,9 @@ import org.reactivestreams.Publisher; import org.reactivestreams.Subscriber; import org.reactivestreams.Subscription; - import software.amazon.awssdk.core.internal.async.SdkPublishers; import utils.FakePublisher; +import utils.FakeSdkPublisher; public class SdkPublishersTest { @Test @@ -45,6 +45,45 @@ public void envelopeWrappedPublisher() { assertThat(fakeSubscriber.recordedEvents()).containsExactly("prefix:content", ":suffix"); } + @Test + public void mapTransformsCorrectly() { + FakeSdkPublisher fakePublisher = new FakeSdkPublisher<>(); + FakeStringSubscriber fakeSubscriber = new FakeStringSubscriber(); + fakePublisher.map(String::toUpperCase).subscribe(fakeSubscriber); + + fakePublisher.publish("one"); + fakePublisher.publish("two"); + fakePublisher.complete(); + + assertThat(fakeSubscriber.recordedEvents()).containsExactly("ONE", "TWO"); + assertThat(fakeSubscriber.isComplete()).isTrue(); + assertThat(fakeSubscriber.isError()).isFalse(); + } + + @Test + public void mapHandlesError() { + FakeSdkPublisher fakePublisher = new FakeSdkPublisher<>(); + FakeStringSubscriber fakeSubscriber = new FakeStringSubscriber(); + RuntimeException exception = new IllegalArgumentException("Twos are not supported"); + + fakePublisher.map(s -> { + if ("two".equals(s)) { + throw exception; + } + + return s.toUpperCase(); + }).subscribe(fakeSubscriber); + + fakePublisher.publish("one"); + fakePublisher.publish("two"); + fakePublisher.publish("three"); + + assertThat(fakeSubscriber.recordedEvents()).containsExactly("ONE"); + assertThat(fakeSubscriber.isComplete()).isFalse(); + assertThat(fakeSubscriber.isError()).isTrue(); + assertThat(fakeSubscriber.recordedErrors()).containsExactly(exception); + } + private final static class FakeByteBufferSubscriber implements Subscriber { private final List recordedEvents = new ArrayList<>(); @@ -73,4 +112,48 @@ public List recordedEvents() { return this.recordedEvents; } } + + private final static class FakeStringSubscriber implements Subscriber { + private final List recordedEvents = new ArrayList<>(); + private final List recordedErrors = new ArrayList<>(); + private boolean isComplete = false; + private boolean isError = false; + + @Override + public void onSubscribe(Subscription s) { + s.request(1000); + } + + @Override + public void onNext(String s) { + recordedEvents.add(s); + } + + @Override + public void onError(Throwable t) { + recordedErrors.add(t); + this.isError = true; + } + + @Override + public void onComplete() { + this.isComplete = true; + } + + public List recordedEvents() { + return this.recordedEvents; + } + + public List recordedErrors() { + return this.recordedErrors; + } + + public boolean isComplete() { + return isComplete; + } + + public boolean isError() { + return isError; + } + } } \ No newline at end of file diff --git a/core/sdk-core/src/test/java/utils/FakeSdkPublisher.java b/core/sdk-core/src/test/java/utils/FakeSdkPublisher.java new file mode 100644 index 000000000000..2df31b0a1d15 --- /dev/null +++ b/core/sdk-core/src/test/java/utils/FakeSdkPublisher.java @@ -0,0 +1,54 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package utils; + +import org.reactivestreams.Subscriber; +import org.reactivestreams.Subscription; +import software.amazon.awssdk.core.async.SdkPublisher; + +public class FakeSdkPublisher implements SdkPublisher { + private Subscriber delegateSubscriber; + + @Override + public void subscribe(Subscriber subscriber) { + this.delegateSubscriber = subscriber; + this.delegateSubscriber.onSubscribe(new FakeSubscription()); + } + + public void publish(T str) { + this.delegateSubscriber.onNext(str); + } + + public void complete() { + this.delegateSubscriber.onComplete(); + } + + public void doThrow(Throwable t) { + this.delegateSubscriber.onError(t); + } + + private static final class FakeSubscription implements Subscription { + @Override + public void request(long n) { + + } + + @Override + public void cancel() { + + } + } +} diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/FailedConversionAsyncTest.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/FailedConversionAsyncTest.java new file mode 100644 index 000000000000..9cb864bc38aa --- /dev/null +++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/FailedConversionAsyncTest.java @@ -0,0 +1,103 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.enhanced.dynamodb.functionaltests; + +import java.util.Iterator; +import java.util.List; +import java.util.concurrent.CompletionException; +import org.junit.After; +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.ExpectedException; +import software.amazon.awssdk.enhanced.dynamodb.DynamoDbAsyncTable; +import software.amazon.awssdk.enhanced.dynamodb.DynamoDbEnhancedAsyncClient; +import software.amazon.awssdk.enhanced.dynamodb.Key; +import software.amazon.awssdk.enhanced.dynamodb.TableSchema; +import software.amazon.awssdk.enhanced.dynamodb.functionaltests.models.FakeEnum; +import software.amazon.awssdk.enhanced.dynamodb.functionaltests.models.FakeEnumRecord; +import software.amazon.awssdk.enhanced.dynamodb.functionaltests.models.FakeEnumShortened; +import software.amazon.awssdk.enhanced.dynamodb.functionaltests.models.FakeEnumShortenedRecord; +import software.amazon.awssdk.enhanced.dynamodb.model.Page; +import software.amazon.awssdk.services.dynamodb.model.DeleteTableRequest; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.assertj.core.api.Assertions.assertThatThrownBy; + +public class FailedConversionAsyncTest extends LocalDynamoDbAsyncTestBase { + private static final TableSchema TABLE_SCHEMA = TableSchema.fromClass(FakeEnumRecord.class); + private static final TableSchema SHORT_TABLE_SCHEMA = + TableSchema.fromClass(FakeEnumShortenedRecord.class); + + private final DynamoDbEnhancedAsyncClient enhancedClient = + DynamoDbEnhancedAsyncClient.builder() + .dynamoDbClient(getDynamoDbAsyncClient()) + .build(); + + private final DynamoDbAsyncTable mappedTable = + enhancedClient.table(getConcreteTableName("table-name"), TABLE_SCHEMA); + private final DynamoDbAsyncTable mappedShortTable = + enhancedClient.table(getConcreteTableName("table-name"), SHORT_TABLE_SCHEMA); + + @Rule + public ExpectedException exception = ExpectedException.none(); + + @Before + public void createTable() { + mappedTable.createTable(r -> r.provisionedThroughput(getDefaultProvisionedThroughput())).join(); + } + + @After + public void deleteTable() { + getDynamoDbAsyncClient().deleteTable(DeleteTableRequest.builder() + .tableName(getConcreteTableName("table-name")) + .build()).join(); + } + + @Test + public void exceptionOnRead() { + FakeEnumRecord record = new FakeEnumRecord(); + record.setId("123"); + record.setEnumAttribute(FakeEnum.TWO); + mappedTable.putItem(record).join(); + + assertThatThrownBy(() -> mappedShortTable.getItem(Key.builder().partitionValue("123").build()).join()) + .isInstanceOf(CompletionException.class) + .hasCauseInstanceOf(IllegalArgumentException.class) + .hasMessageContaining("TWO") + .hasMessageContaining("FakeEnumShortened"); + } + + @Test + public void iterableExceptionOnRead() { + FakeEnumRecord record = new FakeEnumRecord(); + record.setId("1"); + record.setEnumAttribute(FakeEnum.ONE); + mappedTable.putItem(record).join(); + record.setId("2"); + record.setEnumAttribute(FakeEnum.TWO); + mappedTable.putItem(record).join(); + + List> results = + drainPublisherToError(mappedShortTable.scan(r -> r.limit(1)), 1, IllegalArgumentException.class); + + assertThat(results).hasOnlyOneElementSatisfying( + page -> assertThat(page.items()).hasOnlyOneElementSatisfying(item -> { + assertThat(item.getId()).isEqualTo("1"); + assertThat(item.getEnumAttribute()).isEqualTo(FakeEnumShortened.ONE); + })); + } +} diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/FailedConversionSyncTest.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/FailedConversionSyncTest.java new file mode 100644 index 000000000000..db93471f8cba --- /dev/null +++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/FailedConversionSyncTest.java @@ -0,0 +1,99 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.enhanced.dynamodb.functionaltests; + +import java.util.Iterator; +import org.junit.After; +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import org.junit.rules.ExpectedException; +import software.amazon.awssdk.enhanced.dynamodb.DynamoDbEnhancedClient; +import software.amazon.awssdk.enhanced.dynamodb.DynamoDbTable; +import software.amazon.awssdk.enhanced.dynamodb.Key; +import software.amazon.awssdk.enhanced.dynamodb.TableSchema; +import software.amazon.awssdk.enhanced.dynamodb.functionaltests.models.FakeEnum; +import software.amazon.awssdk.enhanced.dynamodb.functionaltests.models.FakeEnumRecord; +import software.amazon.awssdk.enhanced.dynamodb.functionaltests.models.FakeEnumShortenedRecord; +import software.amazon.awssdk.enhanced.dynamodb.model.Page; +import software.amazon.awssdk.enhanced.dynamodb.model.PageIterable; +import software.amazon.awssdk.services.dynamodb.model.DeleteTableRequest; + +import static org.assertj.core.api.Assertions.assertThatThrownBy; + +public class FailedConversionSyncTest extends LocalDynamoDbSyncTestBase { + private static final TableSchema TABLE_SCHEMA = TableSchema.fromClass(FakeEnumRecord.class); + private static final TableSchema SHORT_TABLE_SCHEMA = + TableSchema.fromClass(FakeEnumShortenedRecord.class); + + private final DynamoDbEnhancedClient enhancedClient = DynamoDbEnhancedClient.builder() + .dynamoDbClient(getDynamoDbClient()) + .build(); + + private final DynamoDbTable mappedTable = + enhancedClient.table(getConcreteTableName("table-name"), TABLE_SCHEMA); + private final DynamoDbTable mappedShortTable = + enhancedClient.table(getConcreteTableName("table-name"), SHORT_TABLE_SCHEMA); + + @Rule + public ExpectedException exception = ExpectedException.none(); + + @Before + public void createTable() { + mappedTable.createTable(r -> r.provisionedThroughput(getDefaultProvisionedThroughput())); + } + + @After + public void deleteTable() { + getDynamoDbClient().deleteTable(DeleteTableRequest.builder() + .tableName(getConcreteTableName("table-name")) + .build()); + } + + @Test + public void exceptionOnRead() { + FakeEnumRecord record = new FakeEnumRecord(); + record.setId("123"); + record.setEnumAttribute(FakeEnum.TWO); + mappedTable.putItem(record); + + assertThatThrownBy(() -> mappedShortTable.getItem(Key.builder().partitionValue("123").build())) + .isInstanceOf(IllegalArgumentException.class) + .hasMessageContaining("TWO") + .hasMessageContaining("FakeEnumShortened"); + } + + @Test + public void iterableExceptionOnRead() { + FakeEnumRecord record = new FakeEnumRecord(); + record.setId("1"); + record.setEnumAttribute(FakeEnum.ONE); + mappedTable.putItem(record); + record.setId("2"); + record.setEnumAttribute(FakeEnum.TWO); + mappedTable.putItem(record); + + Iterator> results = mappedShortTable.scan(r -> r.limit(1)).iterator(); + + assertThatThrownBy(() -> { + // We can't guarantee the order they will be returned + results.next(); + results.next(); + }).isInstanceOf(IllegalArgumentException.class) + .hasMessageContaining("TWO") + .hasMessageContaining("FakeEnumShortened"); + } +} diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/LocalDynamoDbAsyncTestBase.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/LocalDynamoDbAsyncTestBase.java index 1c3135352520..1d25b1ee8329 100644 --- a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/LocalDynamoDbAsyncTestBase.java +++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/LocalDynamoDbAsyncTestBase.java @@ -16,8 +16,7 @@ package software.amazon.awssdk.enhanced.dynamodb.functionaltests; import static org.hamcrest.MatcherAssert.assertThat; -import static org.hamcrest.Matchers.is; -import static org.hamcrest.Matchers.nullValue; +import static org.hamcrest.Matchers.*; import java.util.List; import software.amazon.awssdk.core.async.SdkPublisher; @@ -41,4 +40,18 @@ public static List drainPublisher(SdkPublisher publisher, int expected return subscriber.bufferedItems(); } + + public static List drainPublisherToError(SdkPublisher publisher, + int expectedNumberOfResults, + Class expectedError) { + BufferingSubscriber subscriber = new BufferingSubscriber<>(); + publisher.subscribe(subscriber); + subscriber.waitForCompletion(1000L); + + assertThat(subscriber.isCompleted(), is(false)); + assertThat(subscriber.bufferedError(), instanceOf(expectedError)); + assertThat(subscriber.bufferedItems().size(), is(expectedNumberOfResults)); + + return subscriber.bufferedItems(); + } } diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/models/FakeEnum.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/models/FakeEnum.java new file mode 100644 index 000000000000..4e4f04efd0fe --- /dev/null +++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/models/FakeEnum.java @@ -0,0 +1,21 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.enhanced.dynamodb.functionaltests.models; + +public enum FakeEnum { + ONE, + TWO +} diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/models/FakeEnumRecord.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/models/FakeEnumRecord.java new file mode 100644 index 000000000000..35d632c78f24 --- /dev/null +++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/models/FakeEnumRecord.java @@ -0,0 +1,42 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.enhanced.dynamodb.functionaltests.models; + +import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbBean; +import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbPartitionKey; + +@DynamoDbBean +public class FakeEnumRecord { + private String id; + private FakeEnum enumAttribute; + + @DynamoDbPartitionKey + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public FakeEnum getEnumAttribute() { + return enumAttribute; + } + + public void setEnumAttribute(FakeEnum enumAttribute) { + this.enumAttribute = enumAttribute; + } +} diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/models/FakeEnumShortened.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/models/FakeEnumShortened.java new file mode 100644 index 000000000000..a44b95daa996 --- /dev/null +++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/models/FakeEnumShortened.java @@ -0,0 +1,20 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.enhanced.dynamodb.functionaltests.models; + +public enum FakeEnumShortened { + ONE, +} diff --git a/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/models/FakeEnumShortenedRecord.java b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/models/FakeEnumShortenedRecord.java new file mode 100644 index 000000000000..3a369f515090 --- /dev/null +++ b/services-custom/dynamodb-enhanced/src/test/java/software/amazon/awssdk/enhanced/dynamodb/functionaltests/models/FakeEnumShortenedRecord.java @@ -0,0 +1,42 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.enhanced.dynamodb.functionaltests.models; + +import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbBean; +import software.amazon.awssdk.enhanced.dynamodb.mapper.annotations.DynamoDbPartitionKey; + +@DynamoDbBean +public class FakeEnumShortenedRecord { + private String id; + private FakeEnumShortened enumAttribute; + + @DynamoDbPartitionKey + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } + + public FakeEnumShortened getEnumAttribute() { + return enumAttribute; + } + + public void setEnumAttribute(FakeEnumShortened enumAttribute) { + this.enumAttribute = enumAttribute; + } +} diff --git a/utils/src/main/java/software/amazon/awssdk/utils/internal/MappingSubscriber.java b/utils/src/main/java/software/amazon/awssdk/utils/internal/MappingSubscriber.java new file mode 100644 index 000000000000..cf44a3255d5a --- /dev/null +++ b/utils/src/main/java/software/amazon/awssdk/utils/internal/MappingSubscriber.java @@ -0,0 +1,92 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.utils.internal; + +import java.util.function.Function; +import org.reactivestreams.Subscriber; +import org.reactivestreams.Subscription; +import software.amazon.awssdk.annotations.SdkInternalApi; + +/** + * Maps a subscriber of one type to another type. If an exception is thrown by the mapping function itself, the error + * will be propagated to the downstream subscriber as if it had come from the publisher and then the subscription will + * be implicitly cancelled and no further events from the publisher will be passed along. + */ +@SdkInternalApi +public class MappingSubscriber implements Subscriber { + + private final Subscriber delegateSubscriber; + private final Function mapFunction; + private boolean isCancelled = false; + private Subscription subscription = null; + + private MappingSubscriber(Subscriber delegateSubscriber, + Function mapFunction) { + this.delegateSubscriber = delegateSubscriber; + this.mapFunction = mapFunction; + } + + public static MappingSubscriber create(Subscriber subscriber, + Function mapFunction) { + return new MappingSubscriber<>(subscriber, mapFunction); + } + + @Override + public void onSubscribe(Subscription subscription) { + this.subscription = subscription; + delegateSubscriber.onSubscribe(subscription); + } + + @Override + public void onError(Throwable throwable) { + if (!isCancelled) { + delegateSubscriber.onError(throwable); + } + } + + @Override + public void onComplete() { + if (!isCancelled) { + delegateSubscriber.onComplete(); + } + } + + @Override + public void onNext(T t) { + if (!isCancelled) { + try { + delegateSubscriber.onNext(mapFunction.apply(t)); + } catch (RuntimeException e) { + // If the map function throws an exception, the subscription should be cancelled as the publisher will + // otherwise not be aware it has happened and should have the opportunity to clean up resources. + cancelSubscriptions(); + delegateSubscriber.onError(e); + } + } + } + + private void cancelSubscriptions() { + this.isCancelled = true; + + if (this.subscription != null) { + try { + this.subscription.cancel(); + } catch (RuntimeException ignored) { + // ignore exceptions + } + } + } +} diff --git a/utils/src/test/java/software/amazon/awssdk/utils/internal/MappingSubscriberTest.java b/utils/src/test/java/software/amazon/awssdk/utils/internal/MappingSubscriberTest.java new file mode 100644 index 000000000000..b4f750352ce8 --- /dev/null +++ b/utils/src/test/java/software/amazon/awssdk/utils/internal/MappingSubscriberTest.java @@ -0,0 +1,98 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.utils.internal; + +import static org.mockito.Mockito.reset; +import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.verifyNoMoreInteractions; + +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.Mock; +import org.mockito.runners.MockitoJUnitRunner; +import org.reactivestreams.Subscriber; +import org.reactivestreams.Subscription; + +@RunWith(MockitoJUnitRunner.class) +public class MappingSubscriberTest { + @Mock + private Subscription mockSubscription; + + @Mock + private Subscriber mockSubscriber; + + @Test + public void verifyNormalFlow() { + MappingSubscriber mappingSubscriber = + MappingSubscriber.create(mockSubscriber, String::toUpperCase); + + mappingSubscriber.onSubscribe(mockSubscription); + verify(mockSubscriber).onSubscribe(mockSubscription); + verifyNoMoreInteractions(mockSubscriber); + + reset(mockSubscriber); + mappingSubscriber.onNext("one"); + verify(mockSubscriber).onNext("ONE"); + verifyNoMoreInteractions(mockSubscriber); + + reset(mockSubscriber); + mappingSubscriber.onNext("two"); + verify(mockSubscriber).onNext("TWO"); + verifyNoMoreInteractions(mockSubscriber); + + reset(mockSubscriber); + mappingSubscriber.onComplete(); + verify(mockSubscriber).onComplete(); + verifyNoMoreInteractions(mockSubscriber); + } + + @Test + public void verifyMappingExceptionFlow() { + RuntimeException exception = new IllegalArgumentException("Twos are not supported"); + + MappingSubscriber mappingSubscriber = + MappingSubscriber.create(mockSubscriber, s -> { + if ("two".equals(s)) { + throw exception; + } + + return s.toUpperCase(); + }); + + mappingSubscriber.onSubscribe(mockSubscription); + verify(mockSubscriber).onSubscribe(mockSubscription); + verifyNoMoreInteractions(mockSubscriber); + + reset(mockSubscriber); + mappingSubscriber.onNext("one"); + verify(mockSubscriber).onNext("ONE"); + verifyNoMoreInteractions(mockSubscriber); + + reset(mockSubscriber); + mappingSubscriber.onNext("two"); + verify(mockSubscriber).onError(exception); + verifyNoMoreInteractions(mockSubscriber); + verify(mockSubscription).cancel(); + + reset(mockSubscriber); + mappingSubscriber.onNext("three"); + verifyNoMoreInteractions(mockSubscriber); + + reset(mockSubscriber); + mappingSubscriber.onComplete(); + verifyNoMoreInteractions(mockSubscriber); + } +} \ No newline at end of file From 944c2f585e3a5e0efe3138769634a58d09ee0782 Mon Sep 17 00:00:00 2001 From: Adrian Nistor Date: Fri, 31 Jul 2020 17:43:14 +0000 Subject: [PATCH 110/339] Field eventsToDeliver is a LinkedList, i.e., not thread-safe. Accesses to field eventsToDeliver are protected by synchronization on itself, but not in 1 location. --- .changes/next-release/bugfix-AWSSDKforJavav2-685db17.json | 5 +++++ .../eventstream/EventStreamAsyncResponseTransformer.java | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/bugfix-AWSSDKforJavav2-685db17.json diff --git a/.changes/next-release/bugfix-AWSSDKforJavav2-685db17.json b/.changes/next-release/bugfix-AWSSDKforJavav2-685db17.json new file mode 100644 index 000000000000..6d7ec0af732b --- /dev/null +++ b/.changes/next-release/bugfix-AWSSDKforJavav2-685db17.json @@ -0,0 +1,5 @@ +{ + "type": "bugfix", + "category": "AWS SDK for Java v2", + "description": "Fixing race condition in EventStreamAsyncResponseTransformer. Field eventsToDeliver is a LinkedList, i.e., not thread-safe. Accesses to field eventsToDeliver are protected by synchronization on itself, but not in 1 location." +} diff --git a/core/aws-core/src/main/java/software/amazon/awssdk/awscore/eventstream/EventStreamAsyncResponseTransformer.java b/core/aws-core/src/main/java/software/amazon/awssdk/awscore/eventstream/EventStreamAsyncResponseTransformer.java index d8437707427e..4f4ec847504b 100644 --- a/core/aws-core/src/main/java/software/amazon/awssdk/awscore/eventstream/EventStreamAsyncResponseTransformer.java +++ b/core/aws-core/src/main/java/software/amazon/awssdk/awscore/eventstream/EventStreamAsyncResponseTransformer.java @@ -394,7 +394,9 @@ public void onError(Throwable throwable) { @Override public void onComplete() { // Add the special on complete event to signal drainEvents to complete the subscriber - eventsToDeliver.add(ON_COMPLETE_EVENT); + synchronized (eventsToDeliver) { + eventsToDeliver.add(ON_COMPLETE_EVENT); + } drainEventsIfNotAlready(); transformFuture.complete(null); } From c7c6225060119a61c1fe1dc9bc39cacdd6f46ce6 Mon Sep 17 00:00:00 2001 From: Zoe Wang Date: Sun, 1 Nov 2020 21:54:07 -0800 Subject: [PATCH 111/339] Upgrade Apache Http client version --- .changes/next-release/feature-AWSSDKforJavav2-04977cd.json | 6 ++++++ pom.xml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-04977cd.json diff --git a/.changes/next-release/feature-AWSSDKforJavav2-04977cd.json b/.changes/next-release/feature-AWSSDKforJavav2-04977cd.json new file mode 100644 index 000000000000..3a76ae4cf71a --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-04977cd.json @@ -0,0 +1,6 @@ +{ + "category": "AWS SDK for Java v2", + "contributor": "", + "type": "feature", + "description": "Upgrade `org.apache.httpcomponents:httpclient` version to `4.5.13`" +} diff --git a/pom.xml b/pom.xml index 1443b40c77f9..2aa5369c6554 100644 --- a/pom.xml +++ b/pom.xml @@ -152,7 +152,7 @@ 1.8.2 1.8 - 4.5.9 + 4.5.13 4.4.11 From d3a4033d3c56eda5509e6e98750d7704ee0ee7b9 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 2 Nov 2020 19:40:59 +0000 Subject: [PATCH 112/339] Amazon Elastic Compute Cloud Update: This release adds support for the following features: 1. P4d instances based on NVIDIA A100 GPUs. 2. NetworkCardIndex attribute to support multiple network cards. --- ...ure-AmazonElasticComputeCloud-2d1e173.json | 6 +++ .../codegen-resources/service-2.json | 41 +++++++++++++++++-- 2 files changed, 43 insertions(+), 4 deletions(-) create mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-2d1e173.json diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-2d1e173.json b/.changes/next-release/feature-AmazonElasticComputeCloud-2d1e173.json new file mode 100644 index 000000000000..0738260882b1 --- /dev/null +++ b/.changes/next-release/feature-AmazonElasticComputeCloud-2d1e173.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "This release adds support for the following features: 1. P4d instances based on NVIDIA A100 GPUs. 2. NetworkCardIndex attribute to support multiple network cards." +} diff --git a/services/ec2/src/main/resources/codegen-resources/service-2.json b/services/ec2/src/main/resources/codegen-resources/service-2.json index 1826f87171cf..b312f2bf7359 100755 --- a/services/ec2/src/main/resources/codegen-resources/service-2.json +++ b/services/ec2/src/main/resources/codegen-resources/service-2.json @@ -5454,6 +5454,10 @@ "shape":"NetworkInterfaceId", "documentation":"

The ID of the network interface.

", "locationName":"networkInterfaceId" + }, + "NetworkCardIndex":{ + "shape":"Integer", + "documentation":"

The index of the network card. Some instance types support multiple network cards. The primary network interface must be assigned to network card index 0. The default is network card index 0.

" } }, "documentation":"

Contains the parameters for AttachNetworkInterface.

" @@ -5465,6 +5469,11 @@ "shape":"String", "documentation":"

The ID of the network interface attachment.

", "locationName":"attachmentId" + }, + "NetworkCardIndex":{ + "shape":"Integer", + "documentation":"

The index of the network card.

", + "locationName":"networkCardIndex" } }, "documentation":"

Contains the output of AttachNetworkInterface.

" @@ -23517,6 +23526,11 @@ "shape":"AttachmentStatus", "documentation":"

The attachment state.

", "locationName":"status" + }, + "NetworkCardIndex":{ + "shape":"Integer", + "documentation":"

The index of the network card.

", + "locationName":"networkCardIndex" } }, "documentation":"

Describes a network interface attachment.

" @@ -23599,7 +23613,11 @@ }, "InterfaceType":{ "shape":"String", - "documentation":"

The type of network interface. To create an Elastic Fabric Adapter (EFA), specify efa. For more information, see Elastic Fabric Adapter in the Amazon Elastic Compute Cloud User Guide.

If you are not creating an EFA, specify interface or omit this parameter.

Valid values: interface | efa

" + "documentation":"

The type of network interface.

To create an Elastic Fabric Adapter (EFA), specify efa. For more information, see Elastic Fabric Adapter in the Amazon Elastic Compute Cloud User Guide.

If you are not creating an EFA, specify interface or omit this parameter.

Valid values: interface | efa

" + }, + "NetworkCardIndex":{ + "shape":"Integer", + "documentation":"

The index of the network card. Some instance types support multiple network cards. The primary network interface must be assigned to network card index 0. The default is network card index 0.

" } }, "documentation":"

Describes a network interface.

" @@ -24128,6 +24146,7 @@ "p3.8xlarge", "p3.16xlarge", "p3dn.24xlarge", + "p4d.24xlarge", "d2.xlarge", "d2.2xlarge", "d2.4xlarge", @@ -25281,7 +25300,7 @@ "documentation":"

To enable the instance for AWS Nitro Enclaves, set this parameter to true.

" } }, - "documentation":"

Indicates whether the instance is enabled for AWS Nitro Enclaves. For more information, see AWS Nitro Enclaves in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

Indicates whether the instance is enabled for AWS Nitro Enclaves. For more information, see What is AWS Nitro Enclaves? in the AWS Nitro Enclaves User Guide.

" }, "LaunchTemplateErrorCode":{ "type":"string", @@ -25520,6 +25539,11 @@ "shape":"SubnetId", "documentation":"

The ID of the subnet for the network interface.

", "locationName":"subnetId" + }, + "NetworkCardIndex":{ + "shape":"Integer", + "documentation":"

The index of the network card.

", + "locationName":"networkCardIndex" } }, "documentation":"

Describes a network interface.

" @@ -25590,6 +25614,10 @@ "SubnetId":{ "shape":"SubnetId", "documentation":"

The ID of the subnet for the network interface.

" + }, + "NetworkCardIndex":{ + "shape":"Integer", + "documentation":"

The index of the network card. Some instance types support multiple network cards. The primary network interface must be assigned to network card index 0. The default is network card index 0.

" } }, "documentation":"

The parameters for a network interface.

" @@ -28978,7 +29006,7 @@ }, "PublicIp":{ "shape":"String", - "documentation":"

The address of the Elastic IP address or Carrier IP address bound to the network interface.

", + "documentation":"

The address of the Elastic IP address bound to the network interface.

", "locationName":"publicIp" }, "CustomerOwnedIp":{ @@ -29017,6 +29045,11 @@ "documentation":"

The device index of the network interface attachment on the instance.

", "locationName":"deviceIndex" }, + "NetworkCardIndex":{ + "shape":"Integer", + "documentation":"

The index of the network card.

", + "locationName":"networkCardIndex" + }, "InstanceId":{ "shape":"String", "documentation":"

The ID of the instance.

", @@ -31595,7 +31628,7 @@ }, "EnclaveOptions":{ "shape":"LaunchTemplateEnclaveOptionsRequest", - "documentation":"

Indicates whether the instance is enabled for AWS Nitro Enclaves. For more information, see AWS Nitro Enclaves in the Amazon Elastic Compute Cloud User Guide.

You can't enable AWS Nitro Enclaves and hibernation on the same instance. For more information about AWS Nitro Enclaves requirements, see AWS Nitro Enclaves in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

Indicates whether the instance is enabled for AWS Nitro Enclaves. For more information, see What is AWS Nitro Enclaves? in the AWS Nitro Enclaves User Guide.

You can't enable AWS Nitro Enclaves and hibernation on the same instance.

" } }, "documentation":"

The information to include in the launch template.

" From 1ab9d878beb8df87cbb566854579c3776383de7d Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 2 Nov 2020 19:42:31 +0000 Subject: [PATCH 113/339] Release 2.15.20. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.20.json | 48 +++++++++++++++++++ ...fix-AWSDynamoDBEnhancedClient-f9d7822.json | 6 --- .../bugfix-AWSSDKforJavav2-20589d0.json | 6 --- .../bugfix-AWSSDKforJavav2-685db17.json | 5 -- .../deprecation-AWSSSOOIDC-07f569c.json | 6 --- .../feature-AWSSDKforJavav2-04977cd.json | 6 --- .../feature-AWSSDKforJavav2-a2cc0b1.json | 6 --- ...ure-AmazonElasticComputeCloud-2d1e173.json | 6 --- CHANGELOG.md | 22 +++++++++ README.md | 8 ++-- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- .../serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 290 files changed, 354 insertions(+), 325 deletions(-) create mode 100644 .changes/2.15.20.json delete mode 100644 .changes/next-release/bugfix-AWSDynamoDBEnhancedClient-f9d7822.json delete mode 100644 .changes/next-release/bugfix-AWSSDKforJavav2-20589d0.json delete mode 100644 .changes/next-release/bugfix-AWSSDKforJavav2-685db17.json delete mode 100644 .changes/next-release/deprecation-AWSSSOOIDC-07f569c.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-04977cd.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-a2cc0b1.json delete mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-2d1e173.json diff --git a/.changes/2.15.20.json b/.changes/2.15.20.json new file mode 100644 index 000000000000..01a97f5581b6 --- /dev/null +++ b/.changes/2.15.20.json @@ -0,0 +1,48 @@ +{ + "version": "2.15.20", + "date": "2020-11-02", + "entries": [ + { + "type": "bugfix", + "category": "AWS DynamoDB Enhanced Client", + "contributor": "", + "description": "Publisher streams returned by async resources in the DynamoDB Enhanced Client now correctly handle mapping errors when they are encountered in the stream by calling onError on the subscriber and then implicitly cancelling the subscription. Previously the stream would just permanently hang and never complete." + }, + { + "type": "deprecation", + "category": "AWS SSO OIDC", + "contributor": "", + "description": "Renamed/deprecated 'error_description' fields in exceptions in favor of 'errorDescription'." + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Added code generation validation that customer-visible identifiers are idiomatic (do not contain underscores). Services with underscores in their models can use rename customizations to fix these issues, or apply the 'underscoresInNameBehavior = ALLOW' customization." + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Upgrade `org.apache.httpcomponents:httpclient` version to `4.5.13`" + }, + { + "type": "bugfix", + "category": "AWS SDK for Java v2", + "contributor": null, + "description": "Fixing race condition in EventStreamAsyncResponseTransformer. Field eventsToDeliver is a LinkedList, i.e., not thread-safe. Accesses to field eventsToDeliver are protected by synchronization on itself, but not in 1 location." + }, + { + "type": "bugfix", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "The mapped publisher returned by SdkPublisher.map will now handle exceptions thrown by the mapping function by calling onError on its subscriber and then cancelling the subscription rather than throwing it back to the publishing process when it attempts to publish data." + }, + { + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "This release adds support for the following features: 1. P4d instances based on NVIDIA A100 GPUs. 2. NetworkCardIndex attribute to support multiple network cards." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/bugfix-AWSDynamoDBEnhancedClient-f9d7822.json b/.changes/next-release/bugfix-AWSDynamoDBEnhancedClient-f9d7822.json deleted file mode 100644 index 66ab39d638b9..000000000000 --- a/.changes/next-release/bugfix-AWSDynamoDBEnhancedClient-f9d7822.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "bugfix", - "category": "AWS DynamoDB Enhanced Client", - "contributor": "", - "description": "Publisher streams returned by async resources in the DynamoDB Enhanced Client now correctly handle mapping errors when they are encountered in the stream by calling onError on the subscriber and then implicitly cancelling the subscription. Previously the stream would just permanently hang and never complete." -} diff --git a/.changes/next-release/bugfix-AWSSDKforJavav2-20589d0.json b/.changes/next-release/bugfix-AWSSDKforJavav2-20589d0.json deleted file mode 100644 index 28c4eacec213..000000000000 --- a/.changes/next-release/bugfix-AWSSDKforJavav2-20589d0.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "bugfix", - "category": "AWS SDK for Java v2", - "contributor": "", - "description": "The mapped publisher returned by SdkPublisher.map will now handle exceptions thrown by the mapping function by calling onError on its subscriber and then cancelling the subscription rather than throwing it back to the publishing process when it attempts to publish data." -} diff --git a/.changes/next-release/bugfix-AWSSDKforJavav2-685db17.json b/.changes/next-release/bugfix-AWSSDKforJavav2-685db17.json deleted file mode 100644 index 6d7ec0af732b..000000000000 --- a/.changes/next-release/bugfix-AWSSDKforJavav2-685db17.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "type": "bugfix", - "category": "AWS SDK for Java v2", - "description": "Fixing race condition in EventStreamAsyncResponseTransformer. Field eventsToDeliver is a LinkedList, i.e., not thread-safe. Accesses to field eventsToDeliver are protected by synchronization on itself, but not in 1 location." -} diff --git a/.changes/next-release/deprecation-AWSSSOOIDC-07f569c.json b/.changes/next-release/deprecation-AWSSSOOIDC-07f569c.json deleted file mode 100644 index e25cf8c19865..000000000000 --- a/.changes/next-release/deprecation-AWSSSOOIDC-07f569c.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "deprecation", - "category": "AWS SSO OIDC", - "contributor": "", - "description": "Renamed/deprecated 'error_description' fields in exceptions in favor of 'errorDescription'." -} diff --git a/.changes/next-release/feature-AWSSDKforJavav2-04977cd.json b/.changes/next-release/feature-AWSSDKforJavav2-04977cd.json deleted file mode 100644 index 3a76ae4cf71a..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-04977cd.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "category": "AWS SDK for Java v2", - "contributor": "", - "type": "feature", - "description": "Upgrade `org.apache.httpcomponents:httpclient` version to `4.5.13`" -} diff --git a/.changes/next-release/feature-AWSSDKforJavav2-a2cc0b1.json b/.changes/next-release/feature-AWSSDKforJavav2-a2cc0b1.json deleted file mode 100644 index 3a370f33cfa4..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-a2cc0b1.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS SDK for Java v2", - "contributor": "", - "description": "Added code generation validation that customer-visible identifiers are idiomatic (do not contain underscores). Services with underscores in their models can use rename customizations to fix these issues, or apply the 'underscoresInNameBehavior = ALLOW' customization." -} diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-2d1e173.json b/.changes/next-release/feature-AmazonElasticComputeCloud-2d1e173.json deleted file mode 100644 index 0738260882b1..000000000000 --- a/.changes/next-release/feature-AmazonElasticComputeCloud-2d1e173.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Elastic Compute Cloud", - "contributor": "", - "description": "This release adds support for the following features: 1. P4d instances based on NVIDIA A100 GPUs. 2. NetworkCardIndex attribute to support multiple network cards." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index 5cdbc2057805..775c2875db38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,25 @@ +# __2.15.20__ __2020-11-02__ +## __AWS DynamoDB Enhanced Client__ + - ### Bugfixes + - Publisher streams returned by async resources in the DynamoDB Enhanced Client now correctly handle mapping errors when they are encountered in the stream by calling onError on the subscriber and then implicitly cancelling the subscription. Previously the stream would just permanently hang and never complete. + +## __AWS SDK for Java v2__ + - ### Features + - Added code generation validation that customer-visible identifiers are idiomatic (do not contain underscores). Services with underscores in their models can use rename customizations to fix these issues, or apply the 'underscoresInNameBehavior = ALLOW' customization. + - Upgrade `org.apache.httpcomponents:httpclient` version to `4.5.13` + + - ### Bugfixes + - Fixing race condition in EventStreamAsyncResponseTransformer. Field eventsToDeliver is a LinkedList, i.e., not thread-safe. Accesses to field eventsToDeliver are protected by synchronization on itself, but not in 1 location. + - The mapped publisher returned by SdkPublisher.map will now handle exceptions thrown by the mapping function by calling onError on its subscriber and then cancelling the subscription rather than throwing it back to the publishing process when it attempts to publish data. + +## __AWS SSO OIDC__ + - ### Deprecations + - Renamed/deprecated 'error_description' fields in exceptions in favor of 'errorDescription'. + +## __Amazon Elastic Compute Cloud__ + - ### Features + - This release adds support for the following features: 1. P4d instances based on NVIDIA A100 GPUs. 2. NetworkCardIndex attribute to support multiple network cards. + # __2.15.19__ __2020-10-30__ ## __AWS Database Migration Service__ - ### Features diff --git a/README.md b/README.md index 2976f43dd18b..c823486fd06e 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.19 + 2.15.20 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.19 + 2.15.20 software.amazon.awssdk s3 - 2.15.19 + 2.15.20 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.19 + 2.15.20 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 68579e279852..b9dcbfb7841f 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 9edc7058fd1b..592762b487d1 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 42187128e9a0..cfa905a94b10 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.15.20-SNAPSHOT + 2.15.20 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index c0abff4110ff..3b8116714a3d 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 76ba78009cf1..b176657449c9 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.20-SNAPSHOT + 2.15.20 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index cbcb79ba9adb..d926526ae669 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.20-SNAPSHOT + 2.15.20 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index f468c1859770..b35ca8985077 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.15.20-SNAPSHOT + 2.15.20 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index cc319af36a40..b146a904a94e 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.20-SNAPSHOT + 2.15.20 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 03aa23c1ae21..00f37f5cc191 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.15.20-SNAPSHOT + 2.15.20 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 38ea464a3ffd..141b919e170e 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.20-SNAPSHOT + 2.15.20 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index e17dabc9ad9f..dd9d0646abcb 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index c349268f51c9..242db54e19bd 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index b6c8d67e5fef..e38697954a6a 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.20-SNAPSHOT + 2.15.20 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 81fa93985125..2391ea4611d6 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.20-SNAPSHOT + 2.15.20 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 7699b4fd60ba..696a99e52314 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 3c0d04537295..8b0bd6d2ec99 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 3e52af619253..cda904c8dcde 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.20-SNAPSHOT + 2.15.20 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 4494d792bbb9..01f227431212 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.15.20-SNAPSHOT + 2.15.20 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 10df71d84176..8fecb43af4f5 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index d4c3302c6dfb..b858751469f9 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.15.20-SNAPSHOT + 2.15.20 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index f48b601fe940..ce04e045a70c 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.15.20-SNAPSHOT + 2.15.20 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 3b9cf7e06d63..17561fb7b847 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.15.20-SNAPSHOT + 2.15.20 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 8040c9ec6fcc..20185fd3d11b 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 67bc01ccab4e..c9b28a375ad9 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 796e2a6b4bfb..da3e473e83e2 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.20-SNAPSHOT + 2.15.20 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 97e5b4c47f1a..be12f2104ed4 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.20-SNAPSHOT + 2.15.20 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 796003da9ece..a501aa4de9e3 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.15.20-SNAPSHOT + 2.15.20 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 0ee76ebb006b..d72b4e540bc0 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.15.20-SNAPSHOT + 2.15.20 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 15e4f6de9961..8b6e6ac2210a 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.15.20-SNAPSHOT + 2.15.20 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index b01a5f5dea52..1c05dd412e2e 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.15.20-SNAPSHOT + 2.15.20 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 5658cc0fbfa7..3c01ecd6cf0a 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 572837a30c35..dc1676c0f0f0 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.15.20-SNAPSHOT + 2.15.20 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index cba05c0a6c4f..82d99cb2db8d 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.15.20-SNAPSHOT + 2.15.20 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 29477f478f34..c4805fa6ae46 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.20-SNAPSHOT + 2.15.20 metric-publishers diff --git a/pom.xml b/pom.xml index 2aa5369c6554..1b3a961c69d4 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.20-SNAPSHOT + 2.15.20 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 0eb534c5496d..9eb09acd4c71 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.20-SNAPSHOT + 2.15.20 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 0398f0f8b4f3..8c76825d08bd 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.15.20-SNAPSHOT + 2.15.20 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 25d952b45510..1fccd8f5792b 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.20-SNAPSHOT + 2.15.20 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 0d256f64850c..5d142a95579e 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 2099c341b312..2879c20ecb08 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 2d8b8d3d908f..1ee6339dfeb6 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 9e76559fd436..a6bde4100d24 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 923382eabf43..f985a5ea6781 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index ac27b9957102..bd2333c121a8 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index fb587c82e757..8a3ffacfa0e4 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 17f2d2459438..6c514828f9fb 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 0a3bba1b7511..9bf1aaa60061 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index a21a3d6bc3bf..a648274d9988 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 2237737af9f5..535ac4955aaa 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 3c7ac6edeb89..78c63e1b2814 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 90f6f4c48ed2..dd994f4ab198 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 8bb976c2285b..514ddc1c85f3 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 7bd58a02d803..0fdcfb6071e4 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index a9413be15b7b..4a0b29d20282 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 7f2c86cc6d20..6c86c344f2da 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 9eeca2616763..a309814d422c 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 71e92314aae0..205bd56199c9 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index d5a8d4a021e8..c4aa79100bee 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index e03c052eaad1..f84d180ca497 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index e692cf9b4b47..3efea25992cb 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index db15b37c5740..cb2e09bab48d 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index cb5dd45ec29a..0489ade9abff 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 1a8a2964fc6e..e79486f3f682 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index b3416b14d285..d2f0ac533a2a 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index f6faaf247c2e..f2fb9232f1c0 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 7e1dc0a682d4..7f6a95a5230c 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 73a1ad3d8ae1..84acb4842360 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index a8854be48c42..3032548eca48 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 19f6063bf1f9..4e4239aa2663 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index ae0ebb5fe984..678fe1c54d14 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index a4288bbcf89e..6e19a621809f 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 89c464d882d6..4c7e9f0c333f 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 69d62d59a563..a6b4982b13f0 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 1e0dfce43a7b..29b4804f2d1a 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index a14e2e0a1b15..cb65accba1a9 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 3a5868702771..da16eef90855 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 9bcf8d9124c0..56b0e17aecae 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index e0fb7fdb4309..8fdefaa50267 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index e731795c69ca..cedf12443ffb 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 02c3a2140677..e1a3c2fd63f8 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index a3d2bbe12575..e9f96c6f2b33 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index cc44e894e726..332e69580179 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 6e2944eba0aa..41002b25aa6b 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 05876652c4b6..f03b3b2b9dd0 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 9d6b7fceb70c..4e6f56c1d2f9 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 7cb6513e1060..cec58a343414 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 671ccefe9789..16303680ce92 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index ffa065f6050c..2411344ede26 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index bef781886c2d..7f13b4c53afd 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 06c509e5fc43..05e7c99750a6 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 08395d6f1556..5493a7cbe0f5 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index b9c1738eb206..c1b4e711b5ec 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 1c8b7e41763e..3b09176f7fda 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 761b2056ae7e..05ee78167000 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index dc2eef0f43f3..f7bd6dbc0f85 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 96b4fa016591..700d82315ea4 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index b572fb258447..e0fec127f773 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 7b897232c3d1..6dba4bd61391 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index d1a2a0c69978..df2237c59cfd 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 86139e945a23..44712fdc93bb 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index cde352bfc3a7..40daef6fa23c 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 1dce988b92ef..b7f6e3d37aab 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index ae5b7040582e..28fc8eec12be 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 4a32a131db1d..116284807bbf 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 836ebbacb332..a113135c1999 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 7844d6b3316b..014176f3db59 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 01dfba9c5140..d8ad793501f3 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index ff55b44a78fd..5d643941e8ca 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 7dbc902e01a9..6ecf9c128a1b 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 3fce97ec289b..2aac2d83e56e 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index a0e515169294..cfaf77af2cd5 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 1f9bc068bfba..87d9a5a30f5f 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 74c22c65ba4d..5c8cffac08db 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index dce779648f7d..6ef46c78e4d9 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index a2a3cf07465c..be3d66cbab15 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 2bcee7b2a964..5eeaa54c9b6f 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 53b0bb1db635..ea2b6e0d52a3 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 8238285e8010..fdec3dee93fe 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 533ae5403eee..570c30e89f85 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index e5ff624b13cf..a1cc779e3f2a 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 013ec6599534..2de1e24f3896 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index b9f5b5275b43..374b1f8b1365 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index f51663dc8a66..b63f1ff84c92 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index f0fa13787fac..1780dc701915 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 4ecfc3803c67..3021f3b4cfd2 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index e6dd236df3cc..54946e7e2948 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 879ac3c84d01..02a0486fa82d 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index d90bdce86bc3..52d385165268 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index fea83f0b9ce0..da9ee09ff6bb 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 65a0791c052b..cdb844087bae 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 954f84d1639c..36b4d1e49298 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 1f9debc66591..83b8141181b8 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index f81b27524ab1..f58d63a69208 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 63b549f47962..b0fe98004786 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 833274b25a85..761709985ac3 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 2e939124c714..ea8b64cb2368 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index add8ee938c7e..d663b8290930 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 466783fa3f27..2daec8c63839 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index e2891255b352..2aba53ea8de4 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 9e1b95f39bec..65f07e65e677 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index e63cff47deff..b925ecc2aa02 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 077f16a05615..b295789495f2 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 8c58024983c7..100a177e8ef2 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 8059bc82434f..f8742d5f2e56 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 0a3089eb1c7e..c559c7fd6188 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 439fac59ce9d..fa674f53fc1f 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 7fbc1269cb04..ea5a9775a375 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 9340ffb33a33..63d7357feaf6 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 4b08657fa578..8545946114dc 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 7ab55dd0be46..f1cc75f97839 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 22b8a3ab5bfe..58b472375ef0 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index b0d1f283ba83..c0df29cc8e50 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 372c4bd67772..f62a6ceeee3d 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 198a6e641233..73a6e601b1c7 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 35cf15271dea..6eeda2dd768a 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index ee895bfa1725..7ccdaacaf355 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 8f648a1be646..6a3f0cb21f5e 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 76f15df03a38..2898e5787538 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 1906c2cc423a..c9b5252fc3e2 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index e8c90eb13432..5227fcd79489 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 5b58a0a997db..74abd303f9dc 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 42cca4b6e852..123456639574 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 61be439a388b..a21d895d06a0 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 40c305f85829..3b645648398b 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 748de8b52edb..acb370bfa7b5 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index c5fa969fb1b6..7e8e83a6adad 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 5dc2db70911b..776afd676c90 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index d4402c1008e4..b9de9c997f61 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 5d19cf24831e..2d4022391d9d 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 11ee44ac731a..595cd85a0994 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index bd5554e4fe38..39f23fd02c6e 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 37a92ce861fc..f2f955aa5672 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 0ba2ccdbaf88..852a8b45cef1 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 8ed942456cc8..a98674d23af2 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 903b26f01777..6179e62ae8e7 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index ff10dd541578..1c96d5e241b7 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index c34725441a37..852db791b9bd 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 200835bd47ed..9ecfc888694b 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 79fd94c2be93..d4742bbe0dfd 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 9172e8c8e971..a78823608dc6 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 71153e0618d4..2334121d8de2 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index e19364c8efbe..ae27b3baf8bd 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index d02bfdc7af2b..1556cb6c3a2c 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index f6c4a0d70ffd..0a0fcd498877 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index d9ac3cf58fd3..5c7bc5daca9f 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 08ecd9d46a84..b3dc528c3327 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 9142055deda1..13bfb07af869 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 17a6e842aec7..ca5aca4c619c 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 0fbf94a1e045..fedf4808f8d7 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 1f16375c7fc5..17a3b258ba5a 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index ac606e0bb19a..1357907d44cf 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 5346eee3f0c6..4409805d34af 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index ff57cea58ec9..bf0fe9529fcb 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index bb35b0c70c67..1dc7f5122bae 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index e3d0f24b1ac5..7c582ed636b5 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index e79375d85c5c..843ae0443c18 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 23397f9e84a9..e16f4e631523 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 42e109de245f..f7b8da8111d4 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index d6489b761c8a..501851214201 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 5ffd202829b9..98f99de49f18 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index da65b425ac38..2553750c1d79 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index f94c27221d7c..9bc3229d7224 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index a7ca2caa4f57..7f8e7366bc87 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 23e43f58b1ad..c987043ca028 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index d46e187e1261..f06356bb475e 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 1a4e311d6a6e..b2df0c067f02 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.20-SNAPSHOT + 2.15.20 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 83c089260d9e..c79cc772d30f 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 126211799295..571b4caa9fd7 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 3cec24386aaf..998bd7b88685 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index c590877f55f7..97337c8d4ae3 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 612209d8d1e5..fdb22bad3b3c 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index e8b9121c83da..97c9d524a9f6 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index e15759583711..0486b7449557 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index b53655517078..d93b55c8b126 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index fd466fac005a..f7e1d5ef358f 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index fcc2c8bd5b72..122efaf3a771 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index e04e20fb2e9a..e117f4f31735 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 44a55b7b6ed7..3b27a01b6047 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index ef8fda248e3c..6385a1d3301d 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index f40431e7cc9c..b60580e754ba 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 76e3e15d2a31..dc63fa937847 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 41ec8a3fd3d6..d812f04eb9b0 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index fb6f3c4441a9..e41be1c31130 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index ff5a1836012d..b6895036a872 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index a7452de7adc6..ca51f35ae13b 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 596204a499ae..59f9cdcc7f76 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index f8a848842506..cd74e6ec78d5 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 1b680ab28263..81d2cdca8b7b 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index d19801f94ac0..9faa58b85a82 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 32ce1fc2e4d2..b506c35e411b 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index d671b7dfa7c9..50bdae48601d 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 62565f40b4b4..568613e0369b 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 958b90ef57ef..824d9046374d 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index aef4f2295331..b1714d9fc688 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 55ffbc1249ad..06531446ebb3 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 54d98142cb1f..667eea9b4042 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 2607c3a89bf7..a471887235c9 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index ece902ff4a29..318a000d5fdc 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index d1b54fb889c7..253608d606e1 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 14b551cd1218..6210b04efdcd 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 7e8512937dbc..b1d91a07e1d8 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 8f8261ade3a0..995cb74957f3 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index a7c0e2136047..2ba0cae7cbbf 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index d5e29acab3af..7319d503ecbf 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index f0f73da2dd05..d7d1876fea5d 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 94a6313c4c1a..7967c70b848d 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 5e79f8cd07da..2bbcda955aa3 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 6d633bc1e3d3..fa6586091d3a 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index d03ed66f1060..d28a5f72085e 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 2a0f995850d2..28781e8d5d0b 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 31052f11859f..f53b1c4d79ec 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index fad656f0d3c0..93f8eb738ad6 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 6d8cac44d556..35e028819613 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 92dc267fcf08..a9216983a45e 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index ff903c7c62d5..864b3589dcfd 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 271e769099e8..7ed41f157af2 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index ce122dbc7119..51850c6075d3 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index fc09ab05e414..622e58f8aff9 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 43ea07362215..126ea1823827 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 698dfd8bf004..c9e09424dada 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 8945eea072ab..0b2723457d8a 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 23518873dae5..cf6c50e143e5 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 920bd8a6ce12..8c60ca054a7c 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index fc990795056d..4e8960ca8fe3 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 5c71d7e558c9..76a307e8eb2a 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 37ec2bc6b3e6..d03cd445d03d 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 318d076133bd..07265959afe2 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 42d02b01ecc5..98b0b8236874 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 958f426d23c5..366665370dd7 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20-SNAPSHOT + 2.15.20 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index ebe1bbcaf120..0cc03d8ed381 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.15.20-SNAPSHOT + 2.15.20 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 54a33791fc59..802ec6a06a12 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.15.20-SNAPSHOT + 2.15.20 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 6a81a4a61614..33dc89b241ae 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.15.20-SNAPSHOT + 2.15.20 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 0282a9ab7413..84dc0179ab8e 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.15.20-SNAPSHOT + 2.15.20 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 14a2f0333e7a..93821e1a0810 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.15.20-SNAPSHOT + 2.15.20 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 489f94630542..76a65b20ace0 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.20-SNAPSHOT + 2.15.20 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 59144c95e23d..a6e7d7f4568f 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.15.20-SNAPSHOT + 2.15.20 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 941b24c3ba9b..71c10a2dce06 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.15.20-SNAPSHOT + 2.15.20 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index c4da4b52252e..821b4f5993fd 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.15.20-SNAPSHOT + 2.15.20 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 4d703052ed7e..9de5080dd9d8 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.15.20-SNAPSHOT + 2.15.20 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 0b1b45f57844..816228bd3dd3 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.20-SNAPSHOT + 2.15.20 4.0.0 From 4612407746eaa79ac5b7d531091a3dec687a8876 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 2 Nov 2020 20:07:50 +0000 Subject: [PATCH 114/339] Update to next snapshot version: 2.15.21-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 280 files changed, 280 insertions(+), 280 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index b9dcbfb7841f..4396535fd532 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 592762b487d1..96fdc8522c79 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index cfa905a94b10..e736bfcfdcb7 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.15.20 + 2.15.21-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 3b8116714a3d..cf4728733297 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index b176657449c9..104184cf83bf 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.20 + 2.15.21-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index d926526ae669..86629a3095ab 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.20 + 2.15.21-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index b35ca8985077..744f86649a18 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.15.20 + 2.15.21-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index b146a904a94e..976260541048 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.20 + 2.15.21-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 00f37f5cc191..38a009d430dd 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.15.20 + 2.15.21-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 141b919e170e..f7e5810711eb 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.20 + 2.15.21-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index dd9d0646abcb..358105759bc2 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 242db54e19bd..1be69efdf66c 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index e38697954a6a..d5ac751d589e 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.20 + 2.15.21-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 2391ea4611d6..3e1d14ec3041 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.20 + 2.15.21-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 696a99e52314..b7bbdad28b72 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 8b0bd6d2ec99..405bd0680a10 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index cda904c8dcde..bc610146e0a9 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.20 + 2.15.21-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 01f227431212..4378a40bfe8b 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.15.20 + 2.15.21-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 8fecb43af4f5..821441e61bff 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index b858751469f9..eec285622558 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.15.20 + 2.15.21-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index ce04e045a70c..1ad98fa578f4 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.15.20 + 2.15.21-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 17561fb7b847..f655e26650d1 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.15.20 + 2.15.21-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 20185fd3d11b..69075ffb78df 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index c9b28a375ad9..4afef757c199 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index da3e473e83e2..70fb6e8370de 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.20 + 2.15.21-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index be12f2104ed4..85c05013ec2c 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.20 + 2.15.21-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index a501aa4de9e3..70c3301df929 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.15.20 + 2.15.21-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index d72b4e540bc0..8b0afdb0bca1 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.15.20 + 2.15.21-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 8b6e6ac2210a..7badff1f89f6 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.15.20 + 2.15.21-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 1c05dd412e2e..e4a48b7fbd86 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.15.20 + 2.15.21-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 3c01ecd6cf0a..3eb139346be5 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index dc1676c0f0f0..4d6540627151 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.15.20 + 2.15.21-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 82d99cb2db8d..38b2dfa4ebad 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.15.20 + 2.15.21-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index c4805fa6ae46..818feeff9c64 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.20 + 2.15.21-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 1b3a961c69d4..65be81a5b23d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.20 + 2.15.21-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 9eb09acd4c71..cb9d0eb77206 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.20 + 2.15.21-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 8c76825d08bd..10c2e70002f0 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.15.20 + 2.15.21-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 1fccd8f5792b..33d4479e6fe3 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.20 + 2.15.21-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 5d142a95579e..755a3bce7573 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 2879c20ecb08..2fea6e83f263 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 1ee6339dfeb6..f81f3115f2e6 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index a6bde4100d24..390fb4e6a05f 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index f985a5ea6781..e2a40e331e38 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index bd2333c121a8..bbbc0db29ec2 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 8a3ffacfa0e4..b7129cbfca0a 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 6c514828f9fb..6ab4c5db81d3 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 9bf1aaa60061..f507df09db35 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index a648274d9988..6beb6c1cc349 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 535ac4955aaa..4b00d63dab4f 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 78c63e1b2814..0017d6c63901 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index dd994f4ab198..c89cb9475895 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 514ddc1c85f3..74461a73b4c4 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 0fdcfb6071e4..131f288ddec8 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 4a0b29d20282..00f4c4c97c31 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 6c86c344f2da..88f7255bbf7d 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index a309814d422c..8c0216b8f687 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 205bd56199c9..1cfe12fd632d 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index c4aa79100bee..115dffdc5084 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index f84d180ca497..169e06d31c06 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 3efea25992cb..114830746e2c 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index cb2e09bab48d..2fb453690131 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 0489ade9abff..4fafbde204ce 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index e79486f3f682..aa73aca923dd 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index d2f0ac533a2a..5693f7b99b50 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index f2fb9232f1c0..eff7764bbf84 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 7f6a95a5230c..07b7c01b0bbe 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 84acb4842360..0a345903f7df 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 3032548eca48..c16913adfa73 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 4e4239aa2663..b4552d0e498e 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 678fe1c54d14..ac7447120544 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 6e19a621809f..6c550d2e96d6 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 4c7e9f0c333f..cdbf6441a76d 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index a6b4982b13f0..208deede7a6d 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 29b4804f2d1a..2eaecaa9371c 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index cb65accba1a9..c59548cdeaa1 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index da16eef90855..62ec797ab1ba 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 56b0e17aecae..ed6cefbd30fe 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 8fdefaa50267..dded0a647d47 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index cedf12443ffb..1bd855f5f19c 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index e1a3c2fd63f8..0f780322d125 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index e9f96c6f2b33..349f40eebe72 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 332e69580179..461e8af034e1 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 41002b25aa6b..bd7782caafe2 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index f03b3b2b9dd0..2cd00cf337f0 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 4e6f56c1d2f9..e3de2544fd98 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index cec58a343414..f0dbba245c9b 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 16303680ce92..f073091a9bda 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 2411344ede26..8a1c9d9eff57 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 7f13b4c53afd..955e77f2a3ba 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 05e7c99750a6..b5e5b52cba3e 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 5493a7cbe0f5..cb2e46a69059 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index c1b4e711b5ec..70c4c2138fa7 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 3b09176f7fda..2462c20d39aa 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 05ee78167000..ffd45235ab4c 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index f7bd6dbc0f85..c61ab02f18dc 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 700d82315ea4..49c84db6af64 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index e0fec127f773..bc9e1d7a0aad 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 6dba4bd61391..66a67a99fb29 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index df2237c59cfd..bed58c7b4999 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 44712fdc93bb..7aa0de7c3d4a 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 40daef6fa23c..822deeb9f1bb 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index b7f6e3d37aab..35f0d9fbde14 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 28fc8eec12be..ba96ef5bbdab 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 116284807bbf..5123d3ee0627 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index a113135c1999..25a443e49140 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 014176f3db59..f75cabcd1580 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index d8ad793501f3..df1a30492b04 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 5d643941e8ca..586ff40281db 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 6ecf9c128a1b..f4519030d5a9 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 2aac2d83e56e..850fb0fc6c97 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index cfaf77af2cd5..96baf100c85b 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 87d9a5a30f5f..f12ab25821fa 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 5c8cffac08db..e611deee9dbf 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 6ef46c78e4d9..21bdf305dbd7 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index be3d66cbab15..363b30779869 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 5eeaa54c9b6f..60a2cafbb6f0 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index ea2b6e0d52a3..b3ecd35c6c64 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index fdec3dee93fe..34797a0318c9 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 570c30e89f85..767899928fc8 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index a1cc779e3f2a..dd1754f31aea 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 2de1e24f3896..13bec01303ee 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 374b1f8b1365..1321b1a7dd1b 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index b63f1ff84c92..894a2a7f4866 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 1780dc701915..c176989e222f 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 3021f3b4cfd2..fec5f980018c 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 54946e7e2948..0663b7c139f4 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 02a0486fa82d..1eb5a390b96d 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 52d385165268..6bd382a7f57a 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index da9ee09ff6bb..04d1d8e555da 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index cdb844087bae..e7815f0d178a 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 36b4d1e49298..94e7c4031af6 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 83b8141181b8..c24ff0a82b11 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index f58d63a69208..ad75a3c9fa48 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index b0fe98004786..ee0585cff541 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 761709985ac3..1e35d67373c6 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index ea8b64cb2368..99c5e564882a 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index d663b8290930..fb201353c9f7 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 2daec8c63839..662a6d2c8574 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 2aba53ea8de4..2be0339919da 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 65f07e65e677..efd0845bb54c 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index b925ecc2aa02..5db64852a13c 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index b295789495f2..afa1d4a524d4 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 100a177e8ef2..cc11139d1433 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index f8742d5f2e56..14ff01125f6c 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index c559c7fd6188..e27560500daa 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index fa674f53fc1f..c6ddcb63b618 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index ea5a9775a375..e488524f6c35 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 63d7357feaf6..c55a86efb030 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 8545946114dc..699b723d7d9a 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index f1cc75f97839..5e6745ab1605 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 58b472375ef0..40b2a6b8e410 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index c0df29cc8e50..8523792a4892 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index f62a6ceeee3d..fcda2fdc0187 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 73a6e601b1c7..0f94a9a89b5d 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 6eeda2dd768a..754cb953e7c0 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 7ccdaacaf355..13fa8c70b2b0 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 6a3f0cb21f5e..8a22694b1aa6 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 2898e5787538..435f39efb248 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index c9b5252fc3e2..548c53135447 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 5227fcd79489..a64f389b2ada 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 74abd303f9dc..ae2c4361d0c4 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 123456639574..f093374d0e55 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index a21d895d06a0..b53c856e9a8f 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 3b645648398b..6f976bbc3d93 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index acb370bfa7b5..a89f6901394b 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 7e8e83a6adad..f490f9f54cd5 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 776afd676c90..5cb627964608 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index b9de9c997f61..d9957a532ee5 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 2d4022391d9d..20106addceba 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 595cd85a0994..34dedc48e8a5 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 39f23fd02c6e..0c402731a38d 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index f2f955aa5672..5db6ee9a264b 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 852a8b45cef1..e3de3d0aef99 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index a98674d23af2..4de38566158a 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 6179e62ae8e7..52f17a4b4876 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 1c96d5e241b7..1297c1fa0855 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 852db791b9bd..924760489229 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 9ecfc888694b..2108a1107823 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index d4742bbe0dfd..8b4c2efa606d 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index a78823608dc6..d272fe9dc63f 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 2334121d8de2..a5d300fe0aea 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index ae27b3baf8bd..36d60def593e 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 1556cb6c3a2c..96ed993616b8 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 0a0fcd498877..668f552c9768 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 5c7bc5daca9f..3c35973de1fd 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index b3dc528c3327..ac394108eafd 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 13bfb07af869..97b8ee67b0ab 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index ca5aca4c619c..385c00112ca0 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index fedf4808f8d7..1530a5d49707 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 17a3b258ba5a..4430fd909157 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 1357907d44cf..39e622842bb5 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 4409805d34af..23b83ed130e5 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index bf0fe9529fcb..51dd69d98bc1 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 1dc7f5122bae..9861b9f76eda 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 7c582ed636b5..c3496ae7a6c1 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 843ae0443c18..4ddb7ae5f61d 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index e16f4e631523..448f8ad99bb1 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index f7b8da8111d4..9ddbacfc0eec 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 501851214201..9ed9f406fe78 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 98f99de49f18..122df7b628e8 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 2553750c1d79..c03320ae539e 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 9bc3229d7224..30a93c4b2ea2 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 7f8e7366bc87..e6f005d33c6b 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index c987043ca028..b549fe44bf9e 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index f06356bb475e..2010ffcbe480 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index b2df0c067f02..0b99460aebcd 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.20 + 2.15.21-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index c79cc772d30f..bf4853f43487 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 571b4caa9fd7..5c8d117b4c35 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 998bd7b88685..41b32aaae707 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 97337c8d4ae3..8797f00f9a1b 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index fdb22bad3b3c..b63b3a9f25c7 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 97c9d524a9f6..85bf90cb99dd 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 0486b7449557..4aea05db164f 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index d93b55c8b126..282efa52fa50 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index f7e1d5ef358f..51d27872a266 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 122efaf3a771..2d85cff89e40 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index e117f4f31735..8d814f9b2e55 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 3b27a01b6047..d4d1c6ee58b3 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 6385a1d3301d..80c6f4ff1ba0 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index b60580e754ba..4f99087a8cf2 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index dc63fa937847..8ca958924000 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index d812f04eb9b0..f2c7857c017d 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index e41be1c31130..495f4b8c59b7 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index b6895036a872..1638adf2bde4 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index ca51f35ae13b..1b6a6f39fbd6 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 59f9cdcc7f76..cfc09f3a025e 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index cd74e6ec78d5..0a334993a73d 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 81d2cdca8b7b..cd284e5bd295 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 9faa58b85a82..264497386e22 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index b506c35e411b..4052954c249c 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 50bdae48601d..d0a6655bb645 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 568613e0369b..a66f679063ed 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 824d9046374d..5a7153b85914 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index b1714d9fc688..a703f0d1caa9 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 06531446ebb3..67b35ebf0538 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 667eea9b4042..ff4a67f9c5cd 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index a471887235c9..cea34825ca44 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 318a000d5fdc..7d3d87bcd746 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 253608d606e1..0bcc96276106 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 6210b04efdcd..a349a9ef2ba9 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index b1d91a07e1d8..07ab46d64610 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 995cb74957f3..19df683fca11 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 2ba0cae7cbbf..f51991f878e5 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 7319d503ecbf..e562b7479ab2 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index d7d1876fea5d..1e3ee3348912 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 7967c70b848d..394be6a56a07 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 2bbcda955aa3..1dd32a891c68 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index fa6586091d3a..2a03e8a20c22 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index d28a5f72085e..c18a679a3837 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 28781e8d5d0b..cce89a4ac049 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index f53b1c4d79ec..2dc2f95ce13e 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 93f8eb738ad6..adbf959c76f1 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 35e028819613..85979dfa62a2 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index a9216983a45e..34a346596a65 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 864b3589dcfd..b48c93926bce 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 7ed41f157af2..e9d02ed4764b 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 51850c6075d3..ac3d479c8039 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 622e58f8aff9..bad22d51cdc6 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 126ea1823827..c744a23dfc24 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index c9e09424dada..7957a4d14bd2 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 0b2723457d8a..4dd1bc5eaf7d 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index cf6c50e143e5..5e7fabbb7d9b 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 8c60ca054a7c..d9f77e9f2d88 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 4e8960ca8fe3..efdbcc05c36c 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 76a307e8eb2a..ec2cacbc8f4b 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index d03cd445d03d..41cd9917bad2 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 07265959afe2..1532a79799eb 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 98b0b8236874..64f399397d8b 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 366665370dd7..6c5100bd2a6d 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.20 + 2.15.21-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 0cc03d8ed381..6e01ee42e9cb 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.15.20 + 2.15.21-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 802ec6a06a12..5e5a399f34df 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.15.20 + 2.15.21-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 33dc89b241ae..ba87a2b8b6f6 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.15.20 + 2.15.21-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 84dc0179ab8e..8cb45eab1a26 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.15.20 + 2.15.21-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 93821e1a0810..3c9368c93073 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.15.20 + 2.15.21-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 76a65b20ace0..adcb7f787c8e 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.20 + 2.15.21-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index a6e7d7f4568f..400d1576fc0b 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.15.20 + 2.15.21-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 71c10a2dce06..c5ad54a1f594 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.15.20 + 2.15.21-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 821b4f5993fd..d52707704ca5 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.15.20 + 2.15.21-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 9de5080dd9d8..1e5270b5068f 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.15.20 + 2.15.21-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 816228bd3dd3..14e31c30c381 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.20 + 2.15.21-SNAPSHOT 4.0.0 From f0e1416f156e56d9b052efb6c42bdb9487abca8f Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 4 Nov 2020 20:03:25 +0000 Subject: [PATCH 115/339] AWS X-Ray Update: Releasing new APIs GetInsightSummaries, GetInsightEvents, GetInsight, GetInsightImpactGraph and updating GetTimeSeriesServiceStatistics API for AWS X-Ray Insights feature --- .../next-release/feature-AWSXRay-5e37761.json | 6 + .../codegen-resources/paginators-1.json | 10 + .../codegen-resources/service-2.json | 496 ++++++++++++++++++ 3 files changed, 512 insertions(+) create mode 100644 .changes/next-release/feature-AWSXRay-5e37761.json diff --git a/.changes/next-release/feature-AWSXRay-5e37761.json b/.changes/next-release/feature-AWSXRay-5e37761.json new file mode 100644 index 000000000000..a12a7bc60714 --- /dev/null +++ b/.changes/next-release/feature-AWSXRay-5e37761.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS X-Ray", + "contributor": "", + "description": "Releasing new APIs GetInsightSummaries, GetInsightEvents, GetInsight, GetInsightImpactGraph and updating GetTimeSeriesServiceStatistics API for AWS X-Ray Insights feature" +} diff --git a/services/xray/src/main/resources/codegen-resources/paginators-1.json b/services/xray/src/main/resources/codegen-resources/paginators-1.json index 300279e7524b..5ffeb594d62f 100644 --- a/services/xray/src/main/resources/codegen-resources/paginators-1.json +++ b/services/xray/src/main/resources/codegen-resources/paginators-1.json @@ -10,6 +10,16 @@ "output_token": "NextToken", "result_key": "Groups" }, + "GetInsightEvents": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken" + }, + "GetInsightSummaries": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken" + }, "GetSamplingRules": { "input_token": "NextToken", "output_token": "NextToken", diff --git a/services/xray/src/main/resources/codegen-resources/service-2.json b/services/xray/src/main/resources/codegen-resources/service-2.json index b3bd6f2ccc4f..f5d91cf6479a 100644 --- a/services/xray/src/main/resources/codegen-resources/service-2.json +++ b/services/xray/src/main/resources/codegen-resources/service-2.json @@ -123,6 +123,62 @@ ], "documentation":"

Retrieves all active group details.

" }, + "GetInsight":{ + "name":"GetInsight", + "http":{ + "method":"POST", + "requestUri":"/Insight" + }, + "input":{"shape":"GetInsightRequest"}, + "output":{"shape":"GetInsightResult"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"ThrottledException"} + ], + "documentation":"

Retrieves the summary information of an insight. This includes impact to clients and root cause services, the top anomalous services, the category, the state of the insight, and the start and end time of the insight.

" + }, + "GetInsightEvents":{ + "name":"GetInsightEvents", + "http":{ + "method":"POST", + "requestUri":"/InsightEvents" + }, + "input":{"shape":"GetInsightEventsRequest"}, + "output":{"shape":"GetInsightEventsResult"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"ThrottledException"} + ], + "documentation":"

X-Ray reevaluates insights periodically until they're resolved, and records each intermediate state as an event. You can review an insight's events in the Impact Timeline on the Inspect page in the X-Ray console.

" + }, + "GetInsightImpactGraph":{ + "name":"GetInsightImpactGraph", + "http":{ + "method":"POST", + "requestUri":"/InsightImpactGraph" + }, + "input":{"shape":"GetInsightImpactGraphRequest"}, + "output":{"shape":"GetInsightImpactGraphResult"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"ThrottledException"} + ], + "documentation":"

Retrieves a service graph structure filtered by the specified insight. The service graph is limited to only structural information. For a complete service graph, use this API with the GetServiceGraph API.

" + }, + "GetInsightSummaries":{ + "name":"GetInsightSummaries", + "http":{ + "method":"POST", + "requestUri":"/InsightSummaries" + }, + "input":{"shape":"GetInsightSummariesRequest"}, + "output":{"shape":"GetInsightSummariesResult"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"ThrottledException"} + ], + "documentation":"

Retrieves the summaries of all insights in the specified group matching the provided filter values.

" + }, "GetSamplingRules":{ "name":"GetSamplingRules", "http":{ @@ -394,6 +450,17 @@ "key":{"shape":"AnnotationKey"}, "value":{"shape":"ValuesWithServiceIds"} }, + "AnomalousService":{ + "type":"structure", + "members":{ + "ServiceId":{"shape":"ServiceId"} + }, + "documentation":"

The service within the service graph that has anomalously high fault rates.

" + }, + "AnomalousServiceList":{ + "type":"list", + "member":{"shape":"AnomalousService"} + }, "AttributeKey":{ "type":"string", "max":32, @@ -785,6 +852,7 @@ }, "documentation":"

Information about requests that failed with a 4xx Client Error status code.

" }, + "EventSummaryText":{"type":"string"}, "FaultRootCause":{ "type":"structure", "members":{ @@ -879,6 +947,20 @@ "max":1, "min":0 }, + "ForecastStatistics":{ + "type":"structure", + "members":{ + "FaultCountHigh":{ + "shape":"NullableLong", + "documentation":"

The upper limit of fault counts for a service.

" + }, + "FaultCountLow":{ + "shape":"NullableLong", + "documentation":"

The lower limit of fault counts for a service.

" + } + }, + "documentation":"

The predicted high and low fault count. This is used to determine if a service has become anomalous and if an insight should be created.

" + }, "GetEncryptionConfigRequest":{ "type":"structure", "members":{ @@ -942,6 +1024,175 @@ } } }, + "GetInsightEventsMaxResults":{ + "type":"integer", + "max":50, + "min":1 + }, + "GetInsightEventsRequest":{ + "type":"structure", + "required":["InsightId"], + "members":{ + "InsightId":{ + "shape":"InsightId", + "documentation":"

The insight's unique identifier. Use the GetInsightSummaries action to retrieve an InsightId.

" + }, + "MaxResults":{ + "shape":"GetInsightEventsMaxResults", + "documentation":"

Used to retrieve at most the specified value of events.

" + }, + "NextToken":{ + "shape":"Token", + "documentation":"

Specify the pagination token returned by a previous request to retrieve the next page of events.

" + } + } + }, + "GetInsightEventsResult":{ + "type":"structure", + "members":{ + "InsightEvents":{ + "shape":"InsightEventList", + "documentation":"

A detailed description of the event. This includes the time of the event, client and root cause impact statistics, and the top anomalous service at the time of the event.

" + }, + "NextToken":{ + "shape":"Token", + "documentation":"

Use this token to retrieve the next page of insight events.

" + } + } + }, + "GetInsightImpactGraphRequest":{ + "type":"structure", + "required":[ + "InsightId", + "StartTime", + "EndTime" + ], + "members":{ + "InsightId":{ + "shape":"InsightId", + "documentation":"

The insight's unique identifier. Use the GetInsightSummaries action to retrieve an InsightId.

" + }, + "StartTime":{ + "shape":"Timestamp", + "documentation":"

The estimated start time of the insight, in Unix time seconds. The StartTime is inclusive of the value provided and can't be more than 30 days old.

" + }, + "EndTime":{ + "shape":"Timestamp", + "documentation":"

The estimated end time of the insight, in Unix time seconds. The EndTime is exclusive of the value provided. The time range between the start time and end time can't be more than six hours.

" + }, + "NextToken":{ + "shape":"Token", + "documentation":"

Specify the pagination token returned by a previous request to retrieve the next page of results.

" + } + } + }, + "GetInsightImpactGraphResult":{ + "type":"structure", + "members":{ + "InsightId":{ + "shape":"InsightId", + "documentation":"

The insight's unique identifier.

" + }, + "StartTime":{ + "shape":"Timestamp", + "documentation":"

The provided start time.

" + }, + "EndTime":{ + "shape":"Timestamp", + "documentation":"

The provided end time.

" + }, + "ServiceGraphStartTime":{ + "shape":"Timestamp", + "documentation":"

The time, in Unix seconds, at which the service graph started.

" + }, + "ServiceGraphEndTime":{ + "shape":"Timestamp", + "documentation":"

The time, in Unix seconds, at which the service graph ended.

" + }, + "Services":{ + "shape":"InsightImpactGraphServiceList", + "documentation":"

The AWS instrumented services related to the insight.

" + }, + "NextToken":{ + "shape":"Token", + "documentation":"

Pagination token.

" + } + } + }, + "GetInsightRequest":{ + "type":"structure", + "required":["InsightId"], + "members":{ + "InsightId":{ + "shape":"InsightId", + "documentation":"

The insight's unique identifier. Use the GetInsightSummaries action to retrieve an InsightId.

" + } + } + }, + "GetInsightResult":{ + "type":"structure", + "members":{ + "Insight":{ + "shape":"Insight", + "documentation":"

The summary information of an insight.

" + } + } + }, + "GetInsightSummariesMaxResults":{ + "type":"integer", + "max":100, + "min":1 + }, + "GetInsightSummariesRequest":{ + "type":"structure", + "required":[ + "StartTime", + "EndTime" + ], + "members":{ + "States":{ + "shape":"InsightStateList", + "documentation":"

The list of insight states.

" + }, + "GroupARN":{ + "shape":"GroupARN", + "documentation":"

The Amazon Resource Name (ARN) of the group. Required if the GroupName isn't provided.

" + }, + "GroupName":{ + "shape":"GroupName", + "documentation":"

The name of the group. Required if the GroupARN isn't provided.

" + }, + "StartTime":{ + "shape":"Timestamp", + "documentation":"

The beginning of the time frame in which the insights started. The start time can't be more than 30 days old.

" + }, + "EndTime":{ + "shape":"Timestamp", + "documentation":"

The end of the time frame in which the insights ended. The end time can't be more than 30 days old.

" + }, + "MaxResults":{ + "shape":"GetInsightSummariesMaxResults", + "documentation":"

The maximum number of results to display.

" + }, + "NextToken":{ + "shape":"Token", + "documentation":"

Pagination token.

" + } + } + }, + "GetInsightSummariesResult":{ + "type":"structure", + "members":{ + "InsightSummaries":{ + "shape":"InsightSummaryList", + "documentation":"

The summary of each insight within the group matching the provided filters. The summary contains the InsightID, start and end time, the root cause service, the root cause and client impact statistics, the top anomalous services, and the status of the insight.

" + }, + "NextToken":{ + "shape":"Token", + "documentation":"

Pagination token.

" + } + } + }, "GetSamplingRulesRequest":{ "type":"structure", "members":{ @@ -1098,6 +1349,10 @@ "shape":"NullableInteger", "documentation":"

Aggregation period in seconds.

" }, + "ForecastStatistics":{ + "shape":"NullableBoolean", + "documentation":"

The forecasted high and low fault count values. Forecast enabled requests require the EntitySelectorExpression ID be provided.

" + }, "NextToken":{ "shape":"String", "documentation":"

Pagination token.

" @@ -1320,6 +1575,220 @@ }, "documentation":"

Information about an HTTP request.

" }, + "Insight":{ + "type":"structure", + "members":{ + "InsightId":{ + "shape":"InsightId", + "documentation":"

The insights unique identifier.

" + }, + "GroupARN":{ + "shape":"GroupARN", + "documentation":"

The Amazon Resource Name (ARN) of the group that the insight belongs to.

" + }, + "GroupName":{ + "shape":"GroupName", + "documentation":"

The name of the group that the insight belongs to.

" + }, + "RootCauseServiceId":{"shape":"ServiceId"}, + "Categories":{ + "shape":"InsightCategoryList", + "documentation":"

The categories that label and describe the type of insight.

" + }, + "State":{ + "shape":"InsightState", + "documentation":"

The current state of the insight.

" + }, + "StartTime":{ + "shape":"Timestamp", + "documentation":"

The time, in Unix seconds, at which the insight began.

" + }, + "EndTime":{ + "shape":"Timestamp", + "documentation":"

The time, in Unix seconds, at which the insight ended.

" + }, + "Summary":{ + "shape":"InsightSummaryText", + "documentation":"

A brief description of the insight.

" + }, + "ClientRequestImpactStatistics":{ + "shape":"RequestImpactStatistics", + "documentation":"

The impact statistics of the client side service. This includes the number of requests to the client service and whether the requests were faults or okay.

" + }, + "RootCauseServiceRequestImpactStatistics":{ + "shape":"RequestImpactStatistics", + "documentation":"

The impact statistics of the root cause service. This includes the number of requests to the client service and whether the requests were faults or okay.

" + }, + "TopAnomalousServices":{ + "shape":"AnomalousServiceList", + "documentation":"

The service within the insight that is most impacted by the incident.

" + } + }, + "documentation":"

When fault rates go outside of the expected range, X-Ray creates an insight. Insights tracks emergent issues within your applications.

" + }, + "InsightCategory":{ + "type":"string", + "enum":["FAULT"] + }, + "InsightCategoryList":{ + "type":"list", + "member":{"shape":"InsightCategory"} + }, + "InsightEvent":{ + "type":"structure", + "members":{ + "Summary":{ + "shape":"EventSummaryText", + "documentation":"

A brief description of the event.

" + }, + "EventTime":{ + "shape":"Timestamp", + "documentation":"

The time, in Unix seconds, at which the event was recorded.

" + }, + "ClientRequestImpactStatistics":{ + "shape":"RequestImpactStatistics", + "documentation":"

The impact statistics of the client side service. This includes the number of requests to the client service and whether the requests were faults or okay.

" + }, + "RootCauseServiceRequestImpactStatistics":{ + "shape":"RequestImpactStatistics", + "documentation":"

The impact statistics of the root cause service. This includes the number of requests to the client service and whether the requests were faults or okay.

" + }, + "TopAnomalousServices":{ + "shape":"AnomalousServiceList", + "documentation":"

The service during the event that is most impacted by the incident.

" + } + }, + "documentation":"

X-Ray reevaluates insights periodically until they are resolved, and records each intermediate state in an event. You can review incident events in the Impact Timeline on the Inspect page in the X-Ray console.

" + }, + "InsightEventList":{ + "type":"list", + "member":{"shape":"InsightEvent"} + }, + "InsightId":{ + "type":"string", + "pattern":"[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-5][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}" + }, + "InsightImpactGraphEdge":{ + "type":"structure", + "members":{ + "ReferenceId":{ + "shape":"NullableInteger", + "documentation":"

Identifier of the edge. Unique within a service map.

" + } + }, + "documentation":"

The connection between two service in an insight impact graph.

" + }, + "InsightImpactGraphEdgeList":{ + "type":"list", + "member":{"shape":"InsightImpactGraphEdge"} + }, + "InsightImpactGraphService":{ + "type":"structure", + "members":{ + "ReferenceId":{ + "shape":"NullableInteger", + "documentation":"

Identifier for the service. Unique within the service map.

" + }, + "Type":{ + "shape":"String", + "documentation":"

Identifier for the service. Unique within the service map.

  • AWS Resource - The type of an AWS resource. For example, AWS::EC2::Instance for an application running on Amazon EC2 or AWS::DynamoDB::Table for an Amazon DynamoDB table that the application used.

  • AWS Service - The type of an AWS service. For example, AWS::DynamoDB for downstream calls to Amazon DynamoDB that didn't target a specific table.

  • AWS Service - The type of an AWS service. For example, AWS::DynamoDB for downstream calls to Amazon DynamoDB that didn't target a specific table.

  • remote - A downstream service of indeterminate type.

" + }, + "Name":{ + "shape":"String", + "documentation":"

The canonical name of the service.

" + }, + "Names":{ + "shape":"ServiceNames", + "documentation":"

A list of names for the service, including the canonical name.

" + }, + "AccountId":{ + "shape":"String", + "documentation":"

Identifier of the AWS account in which the service runs.

" + }, + "Edges":{ + "shape":"InsightImpactGraphEdgeList", + "documentation":"

Connections to downstream services.

" + } + }, + "documentation":"

Information about an application that processed requests, users that made requests, or downstream services, resources, and applications that an application used.

" + }, + "InsightImpactGraphServiceList":{ + "type":"list", + "member":{"shape":"InsightImpactGraphService"} + }, + "InsightState":{ + "type":"string", + "enum":[ + "ACTIVE", + "CLOSED" + ] + }, + "InsightStateList":{ + "type":"list", + "member":{"shape":"InsightState"}, + "max":1, + "min":0 + }, + "InsightSummary":{ + "type":"structure", + "members":{ + "InsightId":{ + "shape":"InsightId", + "documentation":"

The insights unique identifier.

" + }, + "GroupARN":{ + "shape":"GroupARN", + "documentation":"

The Amazon Resource Name (ARN) of the group that the insight belongs to.

" + }, + "GroupName":{ + "shape":"GroupName", + "documentation":"

The name of the group that the insight belongs to.

" + }, + "RootCauseServiceId":{"shape":"ServiceId"}, + "Categories":{ + "shape":"InsightCategoryList", + "documentation":"

Categories The categories that label and describe the type of insight.

" + }, + "State":{ + "shape":"InsightState", + "documentation":"

The current state of the insight.

" + }, + "StartTime":{ + "shape":"Timestamp", + "documentation":"

The time, in Unix seconds, at which the insight began.

" + }, + "EndTime":{ + "shape":"Timestamp", + "documentation":"

The time, in Unix seconds, at which the insight ended.

" + }, + "Summary":{ + "shape":"InsightSummaryText", + "documentation":"

A brief description of the insight.

" + }, + "ClientRequestImpactStatistics":{ + "shape":"RequestImpactStatistics", + "documentation":"

The impact statistics of the client side service. This includes the number of requests to the client service and whether the requests were faults or okay.

" + }, + "RootCauseServiceRequestImpactStatistics":{ + "shape":"RequestImpactStatistics", + "documentation":"

The impact statistics of the root cause service. This includes the number of requests to the client service and whether the requests were faults or okay.

" + }, + "TopAnomalousServices":{ + "shape":"AnomalousServiceList", + "documentation":"

The service within the insight that is most impacted by the incident.

" + }, + "LastUpdateTime":{ + "shape":"Timestamp", + "documentation":"

The time, in Unix seconds, that the insight was last updated.

" + } + }, + "documentation":"

Information that describes an insight.

" + }, + "InsightSummaryList":{ + "type":"list", + "member":{"shape":"InsightSummary"} + }, + "InsightSummaryText":{"type":"string"}, "InsightsConfiguration":{ "type":"structure", "members":{ @@ -1462,6 +1931,24 @@ "type":"integer", "min":0 }, + "RequestImpactStatistics":{ + "type":"structure", + "members":{ + "FaultCount":{ + "shape":"NullableLong", + "documentation":"

The number of requests that have resulted in a fault,

" + }, + "OkCount":{ + "shape":"NullableLong", + "documentation":"

The number of successful requests.

" + }, + "TotalCount":{ + "shape":"NullableLong", + "documentation":"

The total number of requests to the service.

" + } + }, + "documentation":"

Statistics that describe how the incident has impacted a service.

" + }, "ReservoirSize":{ "type":"integer", "min":0 @@ -2140,6 +2627,10 @@ }, "EdgeSummaryStatistics":{"shape":"EdgeStatistics"}, "ServiceSummaryStatistics":{"shape":"ServiceStatistics"}, + "ServiceForecastStatistics":{ + "shape":"ForecastStatistics", + "documentation":"

The forecasted high and low fault count values.

" + }, "ResponseTimeHistogram":{ "shape":"Histogram", "documentation":"

The response time histogram for the selected entities.

" @@ -2152,6 +2643,11 @@ "member":{"shape":"TimeSeriesServiceStatistics"} }, "Timestamp":{"type":"timestamp"}, + "Token":{ + "type":"string", + "max":2000, + "min":1 + }, "TooManyTagsException":{ "type":"structure", "members":{ From 59611e11adc8e10553e6656f233ca05ab884fdbe Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 4 Nov 2020 20:03:29 +0000 Subject: [PATCH 116/339] Auto Scaling Update: Capacity Rebalance helps you manage and maintain workload availability during Spot interruptions by proactively augmenting your Auto Scaling group with a new instance before interrupting an old one. --- .../feature-AutoScaling-2a5ac64.json | 6 ++++ .../codegen-resources/service-2.json | 29 ++++++++++++++----- 2 files changed, 27 insertions(+), 8 deletions(-) create mode 100644 .changes/next-release/feature-AutoScaling-2a5ac64.json diff --git a/.changes/next-release/feature-AutoScaling-2a5ac64.json b/.changes/next-release/feature-AutoScaling-2a5ac64.json new file mode 100644 index 000000000000..2aedaf83731b --- /dev/null +++ b/.changes/next-release/feature-AutoScaling-2a5ac64.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Auto Scaling", + "contributor": "", + "description": "Capacity Rebalance helps you manage and maintain workload availability during Spot interruptions by proactively augmenting your Auto Scaling group with a new instance before interrupting an old one." +} diff --git a/services/autoscaling/src/main/resources/codegen-resources/service-2.json b/services/autoscaling/src/main/resources/codegen-resources/service-2.json index ceffe8c946cb..c1b69c63e03a 100644 --- a/services/autoscaling/src/main/resources/codegen-resources/service-2.json +++ b/services/autoscaling/src/main/resources/codegen-resources/service-2.json @@ -716,7 +716,7 @@ {"shape":"ResourceContentionFault"}, {"shape":"ServiceLinkedRoleFailure"} ], - "documentation":"

Configures an Auto Scaling group to send notifications when specified events take place. Subscribers to the specified topic can have messages delivered to an endpoint such as a web server or an email address.

This configuration overwrites any existing configuration.

For more information, see Getting Amazon SNS Notifications When Your Auto Scaling Group Scales in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Configures an Auto Scaling group to send notifications when specified events take place. Subscribers to the specified topic can have messages delivered to an endpoint such as a web server or an email address.

This configuration overwrites any existing configuration.

For more information, see Getting Amazon SNS Notifications When Your Auto Scaling Group Scales in the Amazon EC2 Auto Scaling User Guide.

If you exceed your maximum limit of SNS topics, which is 10 per Auto Scaling group, the call fails.

" }, "PutScalingPolicy":{ "name":"PutScalingPolicy", @@ -819,7 +819,7 @@ {"shape":"LimitExceededFault"}, {"shape":"ResourceContentionFault"} ], - "documentation":"

Updates the instance protection settings of the specified instances.

For more information about preventing instances that are part of an Auto Scaling group from terminating on scale in, see Instance Protection in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Updates the instance protection settings of the specified instances.

For more information about preventing instances that are part of an Auto Scaling group from terminating on scale in, see Instance Protection in the Amazon EC2 Auto Scaling User Guide.

If you exceed your maximum limit of instance IDs, which is 50 per Auto Scaling group, the call fails.

" }, "StartInstanceRefresh":{ "name":"StartInstanceRefresh", @@ -1211,6 +1211,10 @@ "MaxInstanceLifetime":{ "shape":"MaxInstanceLifetime", "documentation":"

The maximum amount of time, in seconds, that an instance can be in service.

Valid Range: Minimum value of 0.

" + }, + "CapacityRebalance":{ + "shape":"CapacityRebalanceEnabled", + "documentation":"

Indicates whether capacity rebalance is enabled.

" } }, "documentation":"

Describes an Auto Scaling group.

" @@ -1452,6 +1456,7 @@ } } }, + "CapacityRebalanceEnabled":{"type":"boolean"}, "ClassicLinkVPCSecurityGroups":{ "type":"list", "member":{"shape":"XmlStringMaxLen255"} @@ -1572,6 +1577,10 @@ "shape":"InstanceProtected", "documentation":"

Indicates whether newly launched instances are protected from termination by Amazon EC2 Auto Scaling when scaling in.

For more information about preventing instances from terminating on scale in, see Instance Protection in the Amazon EC2 Auto Scaling User Guide.

" }, + "CapacityRebalance":{ + "shape":"CapacityRebalanceEnabled", + "documentation":"

Indicates whether capacity rebalance is enabled. Otherwise, capacity rebalance is disabled.

You can enable capacity rebalancing for your Auto Scaling groups when using Spot Instances. When you turn on capacity rebalancing, Amazon EC2 Auto Scaling attempts to launch a Spot Instance whenever Amazon EC2 predicts that a Spot Instance is at an elevated risk of interruption. After launching a new instance, it then terminates an old instance. For more information, see Amazon EC2 Auto Scaling capacity rebalancing in the Amazon EC2 Auto Scaling User Guide.

" + }, "LifecycleHookSpecificationList":{ "shape":"LifecycleHookSpecifications", "documentation":"

One or more lifecycle hooks.

" @@ -1644,7 +1653,7 @@ }, "InstanceMonitoring":{ "shape":"InstanceMonitoring", - "documentation":"

Controls whether instances in this group are launched with detailed (true) or basic (false) monitoring.

The default value is true (enabled).

When detailed monitoring is enabled, Amazon CloudWatch generates metrics every minute and your account is charged a fee. When you disable detailed monitoring, CloudWatch generates metrics every 5 minutes. For more information, see Configure Monitoring for Auto Scaling Instances in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Controls whether instances in this group are launched with detailed (true) or basic (false) monitoring.

The default value is true (enabled).

When detailed monitoring is enabled, Amazon CloudWatch generates metrics every minute and your account is charged a fee. When you disable detailed monitoring, CloudWatch generates metrics every 5 minutes. For more information, see Configure Monitoring for Auto Scaling Instances in the Amazon EC2 Auto Scaling User Guide.

" }, "SpotPrice":{ "shape":"SpotPrice", @@ -1668,7 +1677,7 @@ }, "MetadataOptions":{ "shape":"InstanceMetadataOptions", - "documentation":"

The metadata options for the instances. For more information, see Instance Metadata and User Data in the Amazon EC2 User Guide for Linux Instances.

" + "documentation":"

The metadata options for the instances. For more information, see Configuring the Instance Metadata Options in the Amazon EC2 Auto Scaling User Guide.

" } } }, @@ -2510,7 +2519,7 @@ "documentation":"

This parameter enables or disables the HTTP metadata endpoint on your instances. If the parameter is not specified, the default state is enabled.

If you specify a value of disabled, you will not be able to access your instance metadata.

" } }, - "documentation":"

The metadata options for the instances. For more information, see Instance Metadata and User Data in the Amazon EC2 User Guide for Linux Instances.

" + "documentation":"

The metadata options for the instances. For more information, see Configuring the Instance Metadata Options in the Amazon EC2 Auto Scaling User Guide.

" }, "InstanceMonitoring":{ "type":"structure", @@ -2711,7 +2720,7 @@ }, "InstanceMonitoring":{ "shape":"InstanceMonitoring", - "documentation":"

Controls whether instances in this group are launched with detailed (true) or basic (false) monitoring.

For more information, see Configure Monitoring for Auto Scaling Instances in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Controls whether instances in this group are launched with detailed (true) or basic (false) monitoring.

For more information, see Configure Monitoring for Auto Scaling Instances in the Amazon EC2 Auto Scaling User Guide.

" }, "SpotPrice":{ "shape":"SpotPrice", @@ -2739,7 +2748,7 @@ }, "MetadataOptions":{ "shape":"InstanceMetadataOptions", - "documentation":"

The metadata options for the instances. For more information, see Instance Metadata and User Data in the Amazon EC2 User Guide for Linux Instances.

" + "documentation":"

The metadata options for the instances. For more information, see Configuring the Instance Metadata Options in the Amazon EC2 Auto Scaling User Guide.

" } }, "documentation":"

Describes a launch configuration.

" @@ -3210,7 +3219,7 @@ }, "ResourceLabel":{ "shape":"XmlStringMaxLen1023", - "documentation":"

Identifies the resource associated with the metric type. You can't specify a resource label unless the metric type is ALBRequestCountPerTarget and there is a target group attached to the Auto Scaling group.

Elastic Load Balancing sends data about your load balancers to Amazon CloudWatch. CloudWatch collects the data and specifies the format to use to access the data. The format is app/load-balancer-name/load-balancer-id/targetgroup/target-group-name/target-group-id , where

  • app/load-balancer-name/load-balancer-id is the final portion of the load balancer ARN, and

  • targetgroup/target-group-name/target-group-id is the final portion of the target group ARN.

To find the ARN for an Application Load Balancer, use the DescribeLoadBalancers API operation. To find the ARN for the target group, use the DescribeTargetGroups API operation.

" + "documentation":"

Identifies the resource associated with the metric type. You can't specify a resource label unless the metric type is ALBRequestCountPerTarget and there is a target group attached to the Auto Scaling group.

You create the resource label by appending the final portion of the load balancer ARN and the final portion of the target group ARN into a single value, separated by a forward slash (/). The format is app/<load-balancer-name>/<load-balancer-id>/targetgroup/<target-group-name>/<target-group-id>, where:

  • app/<load-balancer-name>/<load-balancer-id> is the final portion of the load balancer ARN

  • targetgroup/<target-group-name>/<target-group-id> is the final portion of the target group ARN.

This is an example: app/EC2Co-EcsEl-1TKLTMITMM0EO/f37c06a68c1748aa/targetgroup/EC2Co-Defau-LDNM7Q3ZH1ZN/6d4ea56ca2d6a18d.

To find the ARN for an Application Load Balancer, use the DescribeLoadBalancers API operation. To find the ARN for the target group, use the DescribeTargetGroups API operation.

" } }, "documentation":"

Represents a predefined metric for a target tracking scaling policy to use with Amazon EC2 Auto Scaling.

" @@ -4102,6 +4111,10 @@ "MaxInstanceLifetime":{ "shape":"MaxInstanceLifetime", "documentation":"

The maximum amount of time, in seconds, that an instance can be in service. The default is null.

This parameter is optional, but if you specify a value for it, you must specify a value of at least 604,800 seconds (7 days). To clear a previously set value, specify a new value of 0.

For more information, see Replacing Auto Scaling Instances Based on Maximum Instance Lifetime in the Amazon EC2 Auto Scaling User Guide.

Valid Range: Minimum value of 0.

" + }, + "CapacityRebalance":{ + "shape":"CapacityRebalanceEnabled", + "documentation":"

Enables or disables capacity rebalance.

You can enable capacity rebalancing for your Auto Scaling groups when using Spot Instances. When you turn on capacity rebalancing, Amazon EC2 Auto Scaling attempts to launch a Spot Instance whenever Amazon EC2 predicts that a Spot Instance is at an elevated risk of interruption. After launching a new instance, it then terminates an old instance. For more information, see Amazon EC2 Auto Scaling capacity rebalancing in the Amazon EC2 Auto Scaling User Guide.

" } } }, From a7c79b025e37607c6373c7d6ebe70101940b80fc Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 4 Nov 2020 20:03:29 +0000 Subject: [PATCH 117/339] Amazon Elastic Compute Cloud Update: Added support for Client Connect Handler for AWS Client VPN. Fleet supports launching replacement instances in response to Capacity Rebalance recommendation. --- ...ure-AmazonElasticComputeCloud-2f7f9fc.json | 6 + .../codegen-resources/service-2.json | 179 +++++++++++++++++- 2 files changed, 175 insertions(+), 10 deletions(-) create mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-2f7f9fc.json diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-2f7f9fc.json b/.changes/next-release/feature-AmazonElasticComputeCloud-2f7f9fc.json new file mode 100644 index 000000000000..a6e68a473110 --- /dev/null +++ b/.changes/next-release/feature-AmazonElasticComputeCloud-2f7f9fc.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "Added support for Client Connect Handler for AWS Client VPN. Fleet supports launching replacement instances in response to Capacity Rebalance recommendation." +} diff --git a/services/ec2/src/main/resources/codegen-resources/service-2.json b/services/ec2/src/main/resources/codegen-resources/service-2.json index b312f2bf7359..9f2751a69f55 100755 --- a/services/ec2/src/main/resources/codegen-resources/service-2.json +++ b/services/ec2/src/main/resources/codegen-resources/service-2.json @@ -6623,7 +6623,7 @@ "locationName":"usageStrategy" } }, - "documentation":"

Describes the strategy for using unused Capacity Reservations for fulfilling On-Demand capacity.

This strategy can only be used if the EC2 Fleet is of type instant.

For more information about Capacity Reservations, see On-Demand Capacity Reservations in the Amazon Elastic Compute Cloud User Guide. For examples of using Capacity Reservations in an EC2 Fleet, see EC2 Fleet Example Configurations in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

Describes the strategy for using unused Capacity Reservations for fulfilling On-Demand capacity.

This strategy can only be used if the EC2 Fleet is of type instant.

For more information about Capacity Reservations, see On-Demand Capacity Reservations in the Amazon Elastic Compute Cloud User Guide. For examples of using Capacity Reservations in an EC2 Fleet, see EC2 Fleet example configurations in the Amazon Elastic Compute Cloud User Guide.

" }, "CapacityReservationOptionsRequest":{ "type":"structure", @@ -6633,7 +6633,7 @@ "documentation":"

Indicates whether to use unused Capacity Reservations for fulfilling On-Demand capacity.

If you specify use-capacity-reservations-first, the fleet uses unused Capacity Reservations to fulfill On-Demand capacity up to the target On-Demand capacity. If multiple instance pools have unused Capacity Reservations, the On-Demand allocation strategy (lowest-price or prioritized) is applied. If the number of unused Capacity Reservations is less than the On-Demand target capacity, the remaining On-Demand target capacity is launched according to the On-Demand allocation strategy (lowest-price or prioritized).

If you do not specify a value, the fleet fulfils the On-Demand capacity according to the chosen On-Demand allocation strategy.

" } }, - "documentation":"

Describes the strategy for using unused Capacity Reservations for fulfilling On-Demand capacity.

This strategy can only be used if the EC2 Fleet is of type instant.

For more information about Capacity Reservations, see On-Demand Capacity Reservations in the Amazon Elastic Compute Cloud User Guide. For examples of using Capacity Reservations in an EC2 Fleet, see EC2 Fleet Example Configurations in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

Describes the strategy for using unused Capacity Reservations for fulfilling On-Demand capacity.

This strategy can only be used if the EC2 Fleet is of type instant.

For more information about Capacity Reservations, see On-Demand Capacity Reservations in the Amazon Elastic Compute Cloud User Guide. For examples of using Capacity Reservations in an EC2 Fleet, see EC2 Fleet example configurations in the Amazon Elastic Compute Cloud User Guide.

" }, "CapacityReservationPreference":{ "type":"string", @@ -6950,6 +6950,41 @@ "active" ] }, + "ClientConnectOptions":{ + "type":"structure", + "members":{ + "Enabled":{ + "shape":"Boolean", + "documentation":"

Indicates whether client connect options are enabled. The default is false (not enabled).

" + }, + "LambdaFunctionArn":{ + "shape":"String", + "documentation":"

The Amazon Resource Name (ARN) of the AWS Lambda function used for connection authorization.

" + } + }, + "documentation":"

The options for managing connection authorization for new client connections.

" + }, + "ClientConnectResponseOptions":{ + "type":"structure", + "members":{ + "Enabled":{ + "shape":"Boolean", + "documentation":"

Indicates whether client connect options are enabled.

", + "locationName":"enabled" + }, + "LambdaFunctionArn":{ + "shape":"String", + "documentation":"

The Amazon Resource Name (ARN) of the AWS Lambda function used for connection authorization.

", + "locationName":"lambdaFunctionArn" + }, + "Status":{ + "shape":"ClientVpnEndpointAttributeStatus", + "documentation":"

The status of any updates to the client connect options.

", + "locationName":"status" + } + }, + "documentation":"

The options for managing connection authorization for new client connections.

" + }, "ClientData":{ "type":"structure", "members":{ @@ -7132,6 +7167,11 @@ "shape":"String", "documentation":"

The date and time the client connection was terminated.

", "locationName":"connectionEndTime" + }, + "PostureComplianceStatuses":{ + "shape":"ValueStringList", + "documentation":"

The statuses returned by the client connect handler for posture compliance, if applicable.

", + "locationName":"postureComplianceStatusSet" } }, "documentation":"

Describes a client connection.

" @@ -7272,10 +7312,38 @@ "shape":"String", "documentation":"

The URL of the self-service portal.

", "locationName":"selfServicePortalUrl" + }, + "ClientConnectOptions":{ + "shape":"ClientConnectResponseOptions", + "documentation":"

The options for managing connection authorization for new client connections.

", + "locationName":"clientConnectOptions" } }, "documentation":"

Describes a Client VPN endpoint.

" }, + "ClientVpnEndpointAttributeStatus":{ + "type":"structure", + "members":{ + "Code":{ + "shape":"ClientVpnEndpointAttributeStatusCode", + "documentation":"

The status code.

", + "locationName":"code" + }, + "Message":{ + "shape":"String", + "documentation":"

The status message.

", + "locationName":"message" + } + }, + "documentation":"

Describes the status of the Client VPN endpoint attribute.

" + }, + "ClientVpnEndpointAttributeStatusCode":{ + "type":"string", + "enum":[ + "applying", + "applied" + ] + }, "ClientVpnEndpointId":{"type":"string"}, "ClientVpnEndpointIdList":{ "type":"list", @@ -8065,6 +8133,10 @@ "SelfServicePortal":{ "shape":"SelfServicePortal", "documentation":"

Specify whether to enable the self-service portal for the Client VPN endpoint.

Default Value: enabled

" + }, + "ClientConnectOptions":{ + "shape":"ClientConnectOptions", + "documentation":"

The options for managing connection authorization for new client connections.

" } } }, @@ -8409,7 +8481,7 @@ }, "Type":{ "shape":"FleetType", - "documentation":"

The type of the request. By default, the EC2 Fleet places an asynchronous request for your desired capacity, and maintains it by replenishing interrupted Spot Instances (maintain). A value of instant places a synchronous one-time request, and returns errors for any instances that could not be launched. A value of request places an asynchronous one-time request without maintaining capacity or submitting requests in alternative capacity pools if capacity is unavailable. For more information, see EC2 Fleet Request Types in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

The type of request. The default value is maintain.

  • maintain - The EC2 Fleet plaees an asynchronous request for your desired capacity, and continues to maintain your desired Spot capacity by replenishing interrupted Spot Instances.

  • request - The EC2 Fleet places an asynchronous one-time request for your desired capacity, but does submit Spot requests in alternative capacity pools if Spot capacity is unavailable, and does not maintain Spot capacity if Spot Instances are interrupted.

  • instant - The EC2 Fleet places a synchronous one-time request for your desired capacity, and returns errors for any instances that could not be launched.

For more information, see EC2 Fleet request types in the Amazon Elastic Compute Cloud User Guide.

" }, "ValidFrom":{ "shape":"DateTime", @@ -8425,7 +8497,7 @@ }, "TagSpecifications":{ "shape":"TagSpecificationList", - "documentation":"

The key-value pair for tagging the EC2 Fleet request on creation. The value for ResourceType must be fleet, otherwise the fleet request fails. To tag instances at launch, specify the tags in the launch template. For information about tagging after launch, see Tagging Your Resources.

", + "documentation":"

The key-value pair for tagging the EC2 Fleet request on creation. The value for ResourceType must be fleet, otherwise the fleet request fails. To tag instances at launch, specify the tags in the launch template. For information about tagging after launch, see Tagging your resources.

", "locationName":"TagSpecification" } } @@ -18886,7 +18958,7 @@ "documentation":"

To enable the instance for AWS Nitro Enclaves, set this parameter to true.

" } }, - "documentation":"

Indicates whether the instance is enabled for AWS Nitro Enclaves. For more information, see AWS Nitro Enclaves in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

Indicates whether the instance is enabled for AWS Nitro Enclaves. For more information, see What is AWS Nitro Enclaves? in the AWS Nitro Enclaves User Guide.

" }, "EndDateType":{ "type":"string", @@ -19782,6 +19854,10 @@ "prioritized" ] }, + "FleetReplacementStrategy":{ + "type":"string", + "enum":["launch"] + }, "FleetSet":{ "type":"list", "member":{ @@ -19789,6 +19865,48 @@ "locationName":"item" } }, + "FleetSpotCapacityRebalance":{ + "type":"structure", + "members":{ + "ReplacementStrategy":{ + "shape":"FleetReplacementStrategy", + "documentation":"

To allow EC2 Fleet to launch a replacement Spot Instance when an instance rebalance notification is emitted for an existing Spot Instance in the fleet, specify launch. Only available for fleets of type maintain.

When a replacement instance is launched, the instance marked for rebalance is not automatically terminated. You can terminate it, or you can wait until Amazon EC2 interrupts it. You are charged for both instances while they are running.

", + "locationName":"replacementStrategy" + } + }, + "documentation":"

The strategy to use when Amazon EC2 emits a signal that your Spot Instance is at an elevated risk of being interrupted.

" + }, + "FleetSpotCapacityRebalanceRequest":{ + "type":"structure", + "members":{ + "ReplacementStrategy":{ + "shape":"FleetReplacementStrategy", + "documentation":"

The replacement strategy to use. Only available for fleets of type maintain.

To allow EC2 Fleet to launch a replacement Spot Instance when an instance rebalance notification is emitted for an existing Spot Instance in the fleet, specify launch. You must specify a value, otherwise you get an error.

When a replacement instance is launched, the instance marked for rebalance is not automatically terminated. You can terminate it, or you can wait until Amazon EC2 interrupts it. You are charged for all instances while they are running.

" + } + }, + "documentation":"

The Spot Instance replacement strategy to use when Amazon EC2 emits a signal that your Spot Instance is at an elevated risk of being interrupted. For more information, see Capacity rebalancing in the Amazon Elastic Compute Cloud User Guide.

" + }, + "FleetSpotMaintenanceStrategies":{ + "type":"structure", + "members":{ + "CapacityRebalance":{ + "shape":"FleetSpotCapacityRebalance", + "documentation":"

The strategy to use when Amazon EC2 emits a signal that your Spot Instance is at an elevated risk of being interrupted.

", + "locationName":"capacityRebalance" + } + }, + "documentation":"

The strategies for managing your Spot Instances that are at an elevated risk of being interrupted.

" + }, + "FleetSpotMaintenanceStrategiesRequest":{ + "type":"structure", + "members":{ + "CapacityRebalance":{ + "shape":"FleetSpotCapacityRebalanceRequest", + "documentation":"

The strategy to use when Amazon EC2 emits a signal that your Spot Instance is at an elevated risk of being interrupted.

" + } + }, + "documentation":"

The strategies for managing your Spot Instances that are at an elevated risk of being interrupted.

" + }, "FleetStateCode":{ "type":"string", "enum":[ @@ -26771,6 +26889,10 @@ "SelfServicePortal":{ "shape":"SelfServicePortal", "documentation":"

Specify whether to enable the self-service portal for the Client VPN endpoint.

" + }, + "ClientConnectOptions":{ + "shape":"ClientConnectOptions", + "documentation":"

The options for managing connection authorization for new client connections.

" } } }, @@ -26841,10 +26963,7 @@ }, "ModifyFleetRequest":{ "type":"structure", - "required":[ - "FleetId", - "TargetCapacitySpecification" - ], + "required":["FleetId"], "members":{ "DryRun":{ "shape":"Boolean", @@ -31425,6 +31544,10 @@ } } }, + "ReplacementStrategy":{ + "type":"string", + "enum":["launch"] + }, "ReportInstanceReasonCodes":{ "type":"string", "enum":[ @@ -33431,7 +33554,7 @@ }, "EnclaveOptions":{ "shape":"EnclaveOptionsRequest", - "documentation":"

Indicates whether the instance is enabled for AWS Nitro Enclaves. For more information, see AWS Nitro Enclaves in the Amazon Elastic Compute Cloud User Guide.

You can't enable AWS Nitro Enclaves and hibernation on the same instance. For more information about AWS Nitro Enclaves requirements, see AWS Nitro Enclaves in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

Indicates whether the instance is enabled for AWS Nitro Enclaves. For more information, see What is AWS Nitro Enclaves? in the AWS Nitro Enclaves User Guide.

You can't enable AWS Nitro Enclaves and hibernation on the same instance.

" } } }, @@ -34812,6 +34935,17 @@ "capacity-optimized" ] }, + "SpotCapacityRebalance":{ + "type":"structure", + "members":{ + "ReplacementStrategy":{ + "shape":"ReplacementStrategy", + "documentation":"

The replacement strategy to use. Only available for fleets of type maintain. You must specify a value, otherwise you get an error.

To allow Spot Fleet to launch a replacement Spot Instance when an instance rebalance notification is emitted for a Spot Instance in the fleet, specify launch.

When a replacement instance is launched, the instance marked for rebalance is not automatically terminated. You can terminate it, or you can wait until Amazon EC2 interrupts it. You are charged for all instances while they are running.

", + "locationName":"replacementStrategy" + } + }, + "documentation":"

The Spot Instance replacement strategy to use when Amazon EC2 emits a signal that your Spot Instance is at an elevated risk of being interrupted. For more information, see Capacity rebalancing in the Amazon EC2 User Guide for Linux Instances.

" + }, "SpotDatafeedSubscription":{ "type":"structure", "members":{ @@ -35003,6 +35137,11 @@ "documentation":"

The order of the launch template overrides to use in fulfilling On-Demand capacity. If you specify lowestPrice, Spot Fleet uses price to determine the order, launching the lowest price first. If you specify prioritized, Spot Fleet uses the priority that you assign to each Spot Fleet launch template override, launching the highest priority first. If you do not specify a value, Spot Fleet defaults to lowestPrice.

", "locationName":"onDemandAllocationStrategy" }, + "SpotMaintenanceStrategies":{ + "shape":"SpotMaintenanceStrategies", + "documentation":"

The strategies for managing your Spot Instances that are at an elevated risk of being interrupted.

", + "locationName":"spotMaintenanceStrategies" + }, "ClientToken":{ "shape":"String", "documentation":"

A unique, case-sensitive identifier that you provide to ensure the idempotency of your listings. This helps to avoid duplicate listings. For more information, see Ensuring Idempotency.

", @@ -35327,6 +35466,17 @@ "persistent" ] }, + "SpotMaintenanceStrategies":{ + "type":"structure", + "members":{ + "CapacityRebalance":{ + "shape":"SpotCapacityRebalance", + "documentation":"

The strategy to use when Amazon EC2 emits a signal that your Spot Instance is at an elevated risk of being interrupted.

", + "locationName":"capacityRebalance" + } + }, + "documentation":"

The strategies for managing your Spot Instances that are at an elevated risk of being interrupted.

" + }, "SpotMarketOptions":{ "type":"structure", "members":{ @@ -35361,6 +35511,11 @@ "documentation":"

Indicates how to allocate the target Spot Instance capacity across the Spot Instance pools specified by the EC2 Fleet.

If the allocation strategy is lowest-price, EC2 Fleet launches instances from the Spot Instance pools with the lowest price. This is the default allocation strategy.

If the allocation strategy is diversified, EC2 Fleet launches instances from all of the Spot Instance pools that you specify.

If the allocation strategy is capacity-optimized, EC2 Fleet launches instances from Spot Instance pools with optimal capacity for the number of instances that are launching.

", "locationName":"allocationStrategy" }, + "MaintenanceStrategies":{ + "shape":"FleetSpotMaintenanceStrategies", + "documentation":"

The strategies for managing your workloads on your Spot Instances that will be interrupted. Currently only the capacity rebalance strategy is available.

", + "locationName":"maintenanceStrategies" + }, "InstanceInterruptionBehavior":{ "shape":"SpotInstanceInterruptionBehavior", "documentation":"

The behavior when a Spot Instance is interrupted. The default is terminate.

", @@ -35401,6 +35556,10 @@ "shape":"SpotAllocationStrategy", "documentation":"

Indicates how to allocate the target Spot Instance capacity across the Spot Instance pools specified by the EC2 Fleet.

If the allocation strategy is lowest-price, EC2 Fleet launches instances from the Spot Instance pools with the lowest price. This is the default allocation strategy.

If the allocation strategy is diversified, EC2 Fleet launches instances from all of the Spot Instance pools that you specify.

If the allocation strategy is capacity-optimized, EC2 Fleet launches instances from Spot Instance pools with optimal capacity for the number of instances that are launching.

" }, + "MaintenanceStrategies":{ + "shape":"FleetSpotMaintenanceStrategiesRequest", + "documentation":"

The strategies for managing your Spot Instances that are at an elevated risk of being interrupted.

" + }, "InstanceInterruptionBehavior":{ "shape":"SpotInstanceInterruptionBehavior", "documentation":"

The behavior when a Spot Instance is interrupted. The default is terminate.

" From fea85b008a6991eac5013f9496b0a416634fe64b Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 4 Nov 2020 20:03:34 +0000 Subject: [PATCH 118/339] AWSMarketplace Metering Update: Adding Vendor Tagging Support in MeterUsage and BatchMeterUsage API. --- ...eature-AWSMarketplaceMetering-7e8a8d1.json | 6 + .../codegen-resources/service-2.json | 108 ++++++++++++++++-- 2 files changed, 107 insertions(+), 7 deletions(-) create mode 100644 .changes/next-release/feature-AWSMarketplaceMetering-7e8a8d1.json diff --git a/.changes/next-release/feature-AWSMarketplaceMetering-7e8a8d1.json b/.changes/next-release/feature-AWSMarketplaceMetering-7e8a8d1.json new file mode 100644 index 000000000000..c0013e2b58cf --- /dev/null +++ b/.changes/next-release/feature-AWSMarketplaceMetering-7e8a8d1.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWSMarketplace Metering", + "contributor": "", + "description": "Adding Vendor Tagging Support in MeterUsage and BatchMeterUsage API." +} diff --git a/services/marketplacemetering/src/main/resources/codegen-resources/service-2.json b/services/marketplacemetering/src/main/resources/codegen-resources/service-2.json index abe33baead0f..a414be5600d9 100644 --- a/services/marketplacemetering/src/main/resources/codegen-resources/service-2.json +++ b/services/marketplacemetering/src/main/resources/codegen-resources/service-2.json @@ -25,12 +25,14 @@ {"shape":"InternalServiceErrorException"}, {"shape":"InvalidProductCodeException"}, {"shape":"InvalidUsageDimensionException"}, + {"shape":"InvalidTagException"}, + {"shape":"InvalidUsageAllocationsException"}, {"shape":"InvalidCustomerIdentifierException"}, {"shape":"TimestampOutOfBoundsException"}, {"shape":"ThrottlingException"}, {"shape":"DisabledApiException"} ], - "documentation":"

BatchMeterUsage is called from a SaaS application listed on the AWS Marketplace to post metering records for a set of customers.

For identical requests, the API is idempotent; requests can be retried with the same records or a subset of the input records.

Every request to BatchMeterUsage is for one product. If you need to meter usage for multiple products, you must make multiple calls to BatchMeterUsage.

BatchMeterUsage can process up to 25 UsageRecords at a time.

" + "documentation":"

BatchMeterUsage is called from a SaaS application listed on the AWS Marketplace to post metering records for a set of customers.

For identical requests, the API is idempotent; requests can be retried with the same records or a subset of the input records.

Every request to BatchMeterUsage is for one product. If you need to meter usage for multiple products, you must make multiple calls to BatchMeterUsage.

BatchMeterUsage can process up to 25 UsageRecords at a time.

A UsageRecord can optionally include multiple usage allocations, to provide customers with usagedata split into buckets by tags that you define (or allow the customer to define).

BatchMeterUsage requests must be less than 1MB in size.

" }, "MeterUsage":{ "name":"MeterUsage", @@ -44,13 +46,15 @@ {"shape":"InternalServiceErrorException"}, {"shape":"InvalidProductCodeException"}, {"shape":"InvalidUsageDimensionException"}, + {"shape":"InvalidTagException"}, + {"shape":"InvalidUsageAllocationsException"}, {"shape":"InvalidEndpointRegionException"}, {"shape":"TimestampOutOfBoundsException"}, {"shape":"DuplicateRequestException"}, {"shape":"ThrottlingException"}, {"shape":"CustomerNotEntitledException"} ], - "documentation":"

API to emit metering records. For identical requests, the API is idempotent. It simply returns the metering record ID.

MeterUsage is authenticated on the buyer's AWS account using credentials from the EC2 instance, ECS task, or EKS pod.

" + "documentation":"

API to emit metering records. For identical requests, the API is idempotent. It simply returns the metering record ID.

MeterUsage is authenticated on the buyer's AWS account using credentials from the EC2 instance, ECS task, or EKS pod.

MeterUsage can optionally include multiple usage allocations, to provide customers with usage data split into buckets by tags that you define (or allow the customer to define).

" }, "RegisterUsage":{ "name":"RegisterUsage", @@ -91,6 +95,11 @@ } }, "shapes":{ + "AllocatedUsageQuantity":{ + "type":"integer", + "max":2147483647, + "min":0 + }, "BatchMeterUsageRequest":{ "type":"structure", "required":[ @@ -127,7 +136,8 @@ "CustomerIdentifier":{ "type":"string", "max":255, - "min":1 + "min":1, + "pattern":"[\\s\\S]+" }, "CustomerNotEntitledException":{ "type":"structure", @@ -210,6 +220,14 @@ "documentation":"

RegisterUsage must be called in the same AWS Region the ECS task was launched in. This prevents a container from hardcoding a Region (e.g. withRegion(“us-east-1”) when calling RegisterUsage.

", "exception":true }, + "InvalidTagException":{ + "type":"structure", + "members":{ + "message":{"shape":"errorMessage"} + }, + "documentation":"

The tag is invalid, or the number of tags is greater than 5.

", + "exception":true + }, "InvalidTokenException":{ "type":"structure", "members":{ @@ -218,6 +236,14 @@ "documentation":"

Registration token is invalid.

", "exception":true }, + "InvalidUsageAllocationsException":{ + "type":"structure", + "members":{ + "message":{"shape":"errorMessage"} + }, + "documentation":"

The usage allocation objects are invalid, or the number of allocations is greater than 500 for a single usage record.

", + "exception":true + }, "InvalidUsageDimensionException":{ "type":"structure", "members":{ @@ -253,6 +279,10 @@ "DryRun":{ "shape":"Boolean", "documentation":"

Checks whether you have the permissions required for the action, but does not make the request. If you have the permissions, the request returns DryRunOperation; otherwise, it returns UnauthorizedException. Defaults to false if not specified.

" + }, + "UsageAllocations":{ + "shape":"UsageAllocations", + "documentation":"

The set of UsageAllocations to submit.

The sum of all UsageAllocation quantities must equal the UsageQuantity of the MeterUsage request, and each UsageAllocation must have a unique set of tags (include no tags).

" } } }, @@ -267,11 +297,12 @@ }, "NonEmptyString":{ "type":"string", - "pattern":"\\S+" + "pattern":"[\\s\\S]+" }, "Nonce":{ "type":"string", - "max":255 + "max":255, + "pattern":"[\\s\\S]*" }, "PlatformNotSupportedException":{ "type":"structure", @@ -284,7 +315,8 @@ "ProductCode":{ "type":"string", "max":255, - "min":1 + "min":1, + "pattern":"[\\s\\S]+" }, "RegisterUsageRequest":{ "type":"structure", @@ -346,6 +378,42 @@ "documentation":"

The result of the ResolveCustomer operation. Contains the CustomerIdentifier and product code.

" }, "String":{"type":"string"}, + "Tag":{ + "type":"structure", + "required":[ + "Key", + "Value" + ], + "members":{ + "Key":{ + "shape":"TagKey", + "documentation":"

One part of a key-value pair that makes up a tag. A key is a label that acts like a category for the specific tag values.

" + }, + "Value":{ + "shape":"TagValue", + "documentation":"

One part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key). The value can be empty or null.

" + } + }, + "documentation":"

Metadata assigned to an allocation. Each tag is made up of a key and a value.

" + }, + "TagKey":{ + "type":"string", + "max":100, + "min":1, + "pattern":"^[a-zA-Z0-9+ -=._:\\/@]+$" + }, + "TagList":{ + "type":"list", + "member":{"shape":"Tag"}, + "max":5, + "min":1 + }, + "TagValue":{ + "type":"string", + "max":256, + "min":1, + "pattern":"^[a-zA-Z0-9+ -=._:\\/@]+$" + }, "ThrottlingException":{ "type":"structure", "members":{ @@ -363,10 +431,32 @@ "documentation":"

The timestamp value passed in the meterUsage() is out of allowed range.

", "exception":true }, + "UsageAllocation":{ + "type":"structure", + "required":["AllocatedUsageQuantity"], + "members":{ + "AllocatedUsageQuantity":{ + "shape":"AllocatedUsageQuantity", + "documentation":"

The total quantity allocated to this bucket of usage.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

The set of tags that define the bucket of usage. For the bucket of items with no tags, this parameter can be left out.

" + } + }, + "documentation":"

Usage allocations allow you to split usage into buckets by tags.

Each UsageAllocation indicates the usage quantity for a specific set of tags.

" + }, + "UsageAllocations":{ + "type":"list", + "member":{"shape":"UsageAllocation"}, + "max":500, + "min":1 + }, "UsageDimension":{ "type":"string", "max":255, - "min":1 + "min":1, + "pattern":"[\\s\\S]+" }, "UsageQuantity":{ "type":"integer", @@ -396,6 +486,10 @@ "Quantity":{ "shape":"UsageQuantity", "documentation":"

The quantity of usage consumed by the customer for the given dimension and time. Defaults to 0 if not specified.

" + }, + "UsageAllocations":{ + "shape":"UsageAllocations", + "documentation":"

The set of UsageAllocations to submit. The sum of all UsageAllocation quantities must equal the Quantity of the UsageRecord.

" } }, "documentation":"

A UsageRecord indicates a quantity of usage for a given product, customer, dimension and time.

Multiple requests with the same UsageRecords as input will be deduplicated to prevent double charges.

" From f14412f9bd18ca0ddb8affcf58b47ba559973fbd Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 4 Nov 2020 20:03:30 +0000 Subject: [PATCH 119/339] AWS IoT Update: Updated API documentation and added paginator for AWS Iot Registry ListThingPrincipals API. --- .../next-release/feature-AWSIoT-c647707.json | 6 ++ .../codegen-resources/paginators-1.json | 6 ++ .../codegen-resources/service-2.json | 79 ++++++++++++------- 3 files changed, 61 insertions(+), 30 deletions(-) create mode 100644 .changes/next-release/feature-AWSIoT-c647707.json diff --git a/.changes/next-release/feature-AWSIoT-c647707.json b/.changes/next-release/feature-AWSIoT-c647707.json new file mode 100644 index 000000000000..e91ade298fe1 --- /dev/null +++ b/.changes/next-release/feature-AWSIoT-c647707.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS IoT", + "contributor": "", + "description": "Updated API documentation and added paginator for AWS Iot Registry ListThingPrincipals API." +} diff --git a/services/iot/src/main/resources/codegen-resources/paginators-1.json b/services/iot/src/main/resources/codegen-resources/paginators-1.json index ad854f2b1add..c4c12bf3f80c 100644 --- a/services/iot/src/main/resources/codegen-resources/paginators-1.json +++ b/services/iot/src/main/resources/codegen-resources/paginators-1.json @@ -221,6 +221,12 @@ "output_token": "nextToken", "result_key": "thingGroups" }, + "ListThingPrincipals": { + "input_token": "nextToken", + "limit_key": "maxResults", + "output_token": "nextToken", + "result_key": "principals" + }, "ListThingRegistrationTaskReports": { "input_token": "nextToken", "limit_key": "maxResults", diff --git a/services/iot/src/main/resources/codegen-resources/service-2.json b/services/iot/src/main/resources/codegen-resources/service-2.json index 9d7cdff4ab0c..0a0c5d446587 100644 --- a/services/iot/src/main/resources/codegen-resources/service-2.json +++ b/services/iot/src/main/resources/codegen-resources/service-2.json @@ -2641,7 +2641,8 @@ "errors":[ {"shape":"InvalidRequestException"}, {"shape":"InternalFailureException"}, - {"shape":"ResourceNotFoundException"} + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"} ], "documentation":"

List the thing groups in your account.

" }, @@ -2656,7 +2657,8 @@ "errors":[ {"shape":"InvalidRequestException"}, {"shape":"InternalFailureException"}, - {"shape":"ResourceNotFoundException"} + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"} ], "documentation":"

List the thing groups to which the specified thing belongs.

" }, @@ -2771,7 +2773,8 @@ "errors":[ {"shape":"InvalidRequestException"}, {"shape":"InternalFailureException"}, - {"shape":"ResourceNotFoundException"} + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"} ], "documentation":"

Lists the things in the specified group.

" }, @@ -10657,7 +10660,7 @@ "members":{ "nextToken":{ "shape":"NextToken", - "documentation":"

The token to retrieve the next set of results.

", + "documentation":"

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

", "location":"querystring", "locationName":"nextToken" }, @@ -10684,7 +10687,7 @@ }, "nextToken":{ "shape":"NextToken", - "documentation":"

The token used to get the next set of results, or null if there are no additional results.

" + "documentation":"

The token to use to get the next set of results, or null if there are no additional results.

" } } }, @@ -11324,7 +11327,7 @@ "members":{ "nextToken":{ "shape":"NextToken", - "documentation":"

The token to retrieve the next set of results.

", + "documentation":"

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

", "location":"querystring", "locationName":"nextToken" }, @@ -11352,7 +11355,7 @@ }, "nextToken":{ "shape":"NextToken", - "documentation":"

The token used to get the next set of results, or null if there are no additional results.

" + "documentation":"

The token to use to get the next set of results, or null if there are no additional results.

" } }, "documentation":"

The output from the ListPrincipalThings operation.

" @@ -11618,7 +11621,7 @@ }, "nextToken":{ "shape":"NextToken", - "documentation":"

The token to retrieve the next set of results.

", + "documentation":"

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

", "location":"querystring", "locationName":"nextToken" } @@ -11633,7 +11636,7 @@ }, "nextToken":{ "shape":"NextToken", - "documentation":"

The token used to get the next set of results, or null if there are no additional results.

" + "documentation":"

The token to use to get the next set of results, or null if there are no additional results.

" } } }, @@ -11723,7 +11726,7 @@ }, "nextToken":{ "shape":"NextToken", - "documentation":"

The token to retrieve the next set of results.

", + "documentation":"

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

", "location":"querystring", "locationName":"nextToken" }, @@ -11744,7 +11747,7 @@ }, "nextToken":{ "shape":"NextToken", - "documentation":"

The token used to get the next set of results, or null if there are no additional results.

" + "documentation":"

The token to use to get the next set of results, or null if there are no additional results.

" } } }, @@ -11753,7 +11756,7 @@ "members":{ "nextToken":{ "shape":"NextToken", - "documentation":"

The token to retrieve the next set of results.

", + "documentation":"

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

", "location":"querystring", "locationName":"nextToken" }, @@ -11792,7 +11795,7 @@ }, "nextToken":{ "shape":"NextToken", - "documentation":"

The token used to get the next set of results. Will not be returned if operation has returned all results.

" + "documentation":"

The token to use to get the next set of results. Will not be returned if operation has returned all results.

" } } }, @@ -11800,6 +11803,18 @@ "type":"structure", "required":["thingName"], "members":{ + "nextToken":{ + "shape":"NextToken", + "documentation":"

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

", + "location":"querystring", + "locationName":"nextToken" + }, + "maxResults":{ + "shape":"RegistryMaxResults", + "documentation":"

The maximum number of results to return in this operation.

", + "location":"querystring", + "locationName":"maxResults" + }, "thingName":{ "shape":"ThingName", "documentation":"

The name of the thing.

", @@ -11815,6 +11830,10 @@ "principals":{ "shape":"Principals", "documentation":"

The principals associated with the thing.

" + }, + "nextToken":{ + "shape":"NextToken", + "documentation":"

The token to use to get the next set of results, or null if there are no additional results.

" } }, "documentation":"

The output from the ListThingPrincipals operation.

" @@ -11840,7 +11859,7 @@ }, "nextToken":{ "shape":"NextToken", - "documentation":"

The token to retrieve the next set of results.

", + "documentation":"

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

", "location":"querystring", "locationName":"nextToken" }, @@ -11865,7 +11884,7 @@ }, "nextToken":{ "shape":"NextToken", - "documentation":"

The token used to get the next set of results, or null if there are no additional results.

" + "documentation":"

The token to use to get the next set of results, or null if there are no additional results.

" } } }, @@ -11874,7 +11893,7 @@ "members":{ "nextToken":{ "shape":"NextToken", - "documentation":"

The token to retrieve the next set of results.

", + "documentation":"

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

", "location":"querystring", "locationName":"nextToken" }, @@ -11901,7 +11920,7 @@ }, "nextToken":{ "shape":"NextToken", - "documentation":"

The token used to get the next set of results, or null if there are no additional results.

" + "documentation":"

The token to use to get the next set of results, or null if there are no additional results.

" } } }, @@ -11910,7 +11929,7 @@ "members":{ "nextToken":{ "shape":"NextToken", - "documentation":"

The token to retrieve the next set of results.

", + "documentation":"

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

", "location":"querystring", "locationName":"nextToken" }, @@ -11955,7 +11974,7 @@ }, "nextToken":{ "shape":"NextToken", - "documentation":"

The token to retrieve the next set of results.

", + "documentation":"

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

", "location":"querystring", "locationName":"nextToken" }, @@ -11976,7 +11995,7 @@ }, "nextToken":{ "shape":"NextToken", - "documentation":"

The token used to get the next set of results. Will not be returned if operation has returned all results.

" + "documentation":"

The token to use to get the next set of results. Will not be returned if operation has returned all results.

" } } }, @@ -11998,7 +12017,7 @@ }, "nextToken":{ "shape":"NextToken", - "documentation":"

The token to retrieve the next set of results.

", + "documentation":"

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

", "location":"querystring", "locationName":"nextToken" }, @@ -12019,7 +12038,7 @@ }, "nextToken":{ "shape":"NextToken", - "documentation":"

The token used to get the next set of results, or null if there are no additional results.

" + "documentation":"

The token to use to get the next set of results, or null if there are no additional results.

" } } }, @@ -12028,7 +12047,7 @@ "members":{ "nextToken":{ "shape":"NextToken", - "documentation":"

The token to retrieve the next set of results.

", + "documentation":"

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

", "location":"querystring", "locationName":"nextToken" }, @@ -12068,7 +12087,7 @@ }, "nextToken":{ "shape":"NextToken", - "documentation":"

The token used to get the next set of results. Will not be returned if operation has returned all results.

" + "documentation":"

The token to use to get the next set of results. Will not be returned if operation has returned all results.

" } }, "documentation":"

The output from the ListThings operation.

" @@ -12084,7 +12103,7 @@ }, "nextToken":{ "shape":"NextToken", - "documentation":"

The token to retrieve the next set of results.

", + "documentation":"

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

", "location":"querystring", "locationName":"nextToken" } @@ -12099,7 +12118,7 @@ }, "nextToken":{ "shape":"NextToken", - "documentation":"

The token to retrieve the next set of results.

" + "documentation":"

The token to use to get the next set of results, or null if there are no additional results.

" } } }, @@ -12120,7 +12139,7 @@ }, "nextToken":{ "shape":"NextToken", - "documentation":"

A token used to retrieve the next value.

", + "documentation":"

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

", "location":"querystring", "locationName":"nextToken" }, @@ -12142,7 +12161,7 @@ }, "nextToken":{ "shape":"NextToken", - "documentation":"

A token used to retrieve the next value.

" + "documentation":"

The token to use to get the next set of results, or null if there are no additional results.

" } }, "documentation":"

The output from the ListTopicRules operation.

" @@ -12158,7 +12177,7 @@ }, "nextToken":{ "shape":"NextToken", - "documentation":"

The token used to get the next set of results, or null if there are no additional results.

", + "documentation":"

To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results.

", "location":"querystring", "locationName":"nextToken" }, @@ -12179,7 +12198,7 @@ }, "nextToken":{ "shape":"NextToken", - "documentation":"

The token used to get the next set of results, or null if there are no additional results.

" + "documentation":"

The token to use to get the next set of results, or null if there are no additional results.

" } } }, From eb8c7e8e7a9ce6cc6bb73973c63143814a3dae18 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 4 Nov 2020 20:03:33 +0000 Subject: [PATCH 120/339] Amazon Transcribe Streaming Service Update: With this release, Amazon Transcribe now supports real-time transcription from audio sources in Italian (it-IT) and German(de-DE). --- .../feature-AmazonTranscribeStreamingService-4c64b35.json | 6 ++++++ .../src/main/resources/codegen-resources/service-2.json | 4 +++- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AmazonTranscribeStreamingService-4c64b35.json diff --git a/.changes/next-release/feature-AmazonTranscribeStreamingService-4c64b35.json b/.changes/next-release/feature-AmazonTranscribeStreamingService-4c64b35.json new file mode 100644 index 000000000000..94d9c75baa5d --- /dev/null +++ b/.changes/next-release/feature-AmazonTranscribeStreamingService-4c64b35.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Transcribe Streaming Service", + "contributor": "", + "description": "With this release, Amazon Transcribe now supports real-time transcription from audio sources in Italian (it-IT) and German(de-DE)." +} diff --git a/services/transcribestreaming/src/main/resources/codegen-resources/service-2.json b/services/transcribestreaming/src/main/resources/codegen-resources/service-2.json index f7d2a8ddbd52..0edc5c29cbcc 100644 --- a/services/transcribestreaming/src/main/resources/codegen-resources/service-2.json +++ b/services/transcribestreaming/src/main/resources/codegen-resources/service-2.json @@ -152,7 +152,9 @@ "es-US", "fr-CA", "fr-FR", - "en-AU" + "en-AU", + "it-IT", + "de-DE" ] }, "LimitExceededException":{ From c4b7a21aaddfab62d9fb5c04bea9ae7db89e54b7 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 4 Nov 2020 20:03:33 +0000 Subject: [PATCH 121/339] AWS Service Catalog Update: Service Catalog API ListPortfolioAccess can now support a maximum PageSize of 100. --- .../next-release/feature-AWSServiceCatalog-4504579.json | 6 ++++++ .../src/main/resources/codegen-resources/service-2.json | 9 +++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AWSServiceCatalog-4504579.json diff --git a/.changes/next-release/feature-AWSServiceCatalog-4504579.json b/.changes/next-release/feature-AWSServiceCatalog-4504579.json new file mode 100644 index 000000000000..b3bcf27028f6 --- /dev/null +++ b/.changes/next-release/feature-AWSServiceCatalog-4504579.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Service Catalog", + "contributor": "", + "description": "Service Catalog API ListPortfolioAccess can now support a maximum PageSize of 100." +} diff --git a/services/servicecatalog/src/main/resources/codegen-resources/service-2.json b/services/servicecatalog/src/main/resources/codegen-resources/service-2.json index 686619e0c865..fe6445082479 100644 --- a/services/servicecatalog/src/main/resources/codegen-resources/service-2.json +++ b/services/servicecatalog/src/main/resources/codegen-resources/service-2.json @@ -3421,7 +3421,7 @@ "documentation":"

The page token for the next set of results. To retrieve the first set of results, use null.

" }, "PageSize":{ - "shape":"PageSize", + "shape":"PageSizeMax100", "documentation":"

The maximum number of items to return with this call.

" } } @@ -3952,6 +3952,11 @@ "max":20, "min":0 }, + "PageSizeMax100":{ + "type":"integer", + "max":100, + "min":0 + }, "PageToken":{ "type":"string", "max":2024, @@ -6122,7 +6127,7 @@ }, "ProvisionedProductProperties":{ "shape":"ProvisionedProductProperties", - "documentation":"

A map that contains the provisioned product properties to be updated.

The LAUNCH_ROLE key accepts user ARNs and role ARNs. This key allows an administrator to call UpdateProvisionedProductProperties to update the launch role that is associated with a provisioned product. This role is used when an end-user calls a provisioning operation such as UpdateProvisionedProduct, TerminateProvisionedProduct, or ExecuteProvisionedProductServiceAction. Only an ARN role is valid. A user ARN is invalid.

The OWNER key accepts user ARNs and role ARNs. The owner is the user that has permission to see, update, terminate, and execute service actions in the provisioned product.

The administrator can change the owner of a provisioned product to another IAM user within the same account. Both end user owners and administrators can see ownership history of the provisioned product using the ListRecordHistory API. The new owner can describe all past records for the provisioned product using the DescribeRecord API. The previous owner can no longer use DescribeRecord, but can still see the product's history from when he was an owner using ListRecordHistory.

If a provisioned product ownership is assigned to an end user, they can see and perform any action through the API or Service Catalog console such as update, terminate, and execute service actions. If an end user provisions a product and the owner is updated to someone else, they will no longer be able to see or perform any actions through API or the Service Catalog console on that provisioned product.

" + "documentation":"

A map that contains the provisioned product properties to be updated.

The LAUNCH_ROLE key accepts user ARNs and role ARNs. This key allows an administrator to call UpdateProvisionedProductProperties to update the launch role that is associated with a provisioned product. This role is used when an end-user calls a provisioning operation such as UpdateProvisionedProduct, TerminateProvisionedProduct, or ExecuteProvisionedProductServiceAction. Only an ARN role or null is valid. A user ARN is invalid. For example, if an admin user passes null as the value for the key LAUNCH_ROLE, the admin removes the launch role that is associated with the provisioned product. As a result, the end user operations use the credentials of the end user.

The OWNER key accepts user ARNs and role ARNs. The owner is the user that has permission to see, update, terminate, and execute service actions in the provisioned product.

The administrator can change the owner of a provisioned product to another IAM user within the same account. Both end user owners and administrators can see ownership history of the provisioned product using the ListRecordHistory API. The new owner can describe all past records for the provisioned product using the DescribeRecord API. The previous owner can no longer use DescribeRecord, but can still see the product's history from when he was an owner using ListRecordHistory.

If a provisioned product ownership is assigned to an end user, they can see and perform any action through the API or Service Catalog console such as update, terminate, and execute service actions. If an end user provisions a product and the owner is updated to someone else, they will no longer be able to see or perform any actions through API or the Service Catalog console on that provisioned product.

" }, "IdempotencyToken":{ "shape":"IdempotencyToken", From 912d17159454c98c6367f9af29f73b059b62f95f Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 4 Nov 2020 20:03:35 +0000 Subject: [PATCH 122/339] Amazon CloudWatch Update: Documentation updates for monitoring --- .../feature-AmazonCloudWatch-2f68eb2.json | 6 ++++ .../codegen-resources/service-2.json | 28 +++++++++---------- 2 files changed, 20 insertions(+), 14 deletions(-) create mode 100644 .changes/next-release/feature-AmazonCloudWatch-2f68eb2.json diff --git a/.changes/next-release/feature-AmazonCloudWatch-2f68eb2.json b/.changes/next-release/feature-AmazonCloudWatch-2f68eb2.json new file mode 100644 index 000000000000..0f1ec0fa32db --- /dev/null +++ b/.changes/next-release/feature-AmazonCloudWatch-2f68eb2.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon CloudWatch", + "contributor": "", + "description": "Documentation updates for monitoring" +} diff --git a/services/cloudwatch/src/main/resources/codegen-resources/service-2.json b/services/cloudwatch/src/main/resources/codegen-resources/service-2.json index 70cfd28330c1..7496cbb8e9c8 100644 --- a/services/cloudwatch/src/main/resources/codegen-resources/service-2.json +++ b/services/cloudwatch/src/main/resources/codegen-resources/service-2.json @@ -121,7 +121,7 @@ "shape":"DescribeAlarmsForMetricOutput", "resultWrapper":"DescribeAlarmsForMetricResult" }, - "documentation":"

Retrieves the alarms for the specified metric. To filter the results, specify a statistic, period, or unit.

" + "documentation":"

Retrieves the alarms for the specified metric. To filter the results, specify a statistic, period, or unit.

This operation retrieves only standard alarms that are based on the specified metric. It does not return alarms based on math expressions that use the specified metric, or composite alarms that use the specified metric.

" }, "DescribeAnomalyDetectors":{ "name":"DescribeAnomalyDetectors", @@ -155,7 +155,7 @@ "errors":[ {"shape":"InvalidNextToken"} ], - "documentation":"

Returns a list of all the Contributor Insights rules in your account. All rules in your account are returned with a single operation.

For more information about Contributor Insights, see Using Contributor Insights to Analyze High-Cardinality Data.

" + "documentation":"

Returns a list of all the Contributor Insights rules in your account.

For more information about Contributor Insights, see Using Contributor Insights to Analyze High-Cardinality Data.

" }, "DisableAlarmActions":{ "name":"DisableAlarmActions", @@ -437,7 +437,7 @@ {"shape":"InvalidParameterCombinationException"}, {"shape":"InternalServiceFault"} ], - "documentation":"

Publishes metric data points to Amazon CloudWatch. CloudWatch associates the data points with the specified metric. If the specified metric does not exist, CloudWatch creates the metric. When CloudWatch creates a metric, it can take up to fifteen minutes for the metric to appear in calls to ListMetrics.

You can publish either individual data points in the Value field, or arrays of values and the number of times each value occurred during the period by using the Values and Counts fields in the MetricDatum structure. Using the Values and Counts method enables you to publish up to 150 values per metric with one PutMetricData request, and supports retrieving percentile statistics on this data.

Each PutMetricData request is limited to 40 KB in size for HTTP POST requests. You can send a payload compressed by gzip. Each request is also limited to no more than 20 different metrics.

Although the Value parameter accepts numbers of type Double, CloudWatch rejects values that are either too small or too large. Values must be in the range of -2^360 to 2^360. In addition, special values (for example, NaN, +Infinity, -Infinity) are not supported.

You can use up to 10 dimensions per metric to further clarify what data the metric collects. Each dimension consists of a Name and Value pair. For more information about specifying dimensions, see Publishing Metrics in the Amazon CloudWatch User Guide.

Data points with time stamps from 24 hours ago or longer can take at least 48 hours to become available for GetMetricData or GetMetricStatistics from the time they are submitted. Data points with time stamps between 3 and 24 hours ago can take as much as 2 hours to become available for for GetMetricData or GetMetricStatistics.

CloudWatch needs raw data points to calculate percentile statistics. If you publish data using a statistic set instead, you can only retrieve percentile statistics for this data if one of the following conditions is true:

  • The SampleCount value of the statistic set is 1 and Min, Max, and Sum are all equal.

  • The Min and Max are equal, and Sum is equal to Min multiplied by SampleCount.

" + "documentation":"

Publishes metric data points to Amazon CloudWatch. CloudWatch associates the data points with the specified metric. If the specified metric does not exist, CloudWatch creates the metric. When CloudWatch creates a metric, it can take up to fifteen minutes for the metric to appear in calls to ListMetrics.

You can publish either individual data points in the Value field, or arrays of values and the number of times each value occurred during the period by using the Values and Counts fields in the MetricDatum structure. Using the Values and Counts method enables you to publish up to 150 values per metric with one PutMetricData request, and supports retrieving percentile statistics on this data.

Each PutMetricData request is limited to 40 KB in size for HTTP POST requests. You can send a payload compressed by gzip. Each request is also limited to no more than 20 different metrics.

Although the Value parameter accepts numbers of type Double, CloudWatch rejects values that are either too small or too large. Values must be in the range of -2^360 to 2^360. In addition, special values (for example, NaN, +Infinity, -Infinity) are not supported.

You can use up to 10 dimensions per metric to further clarify what data the metric collects. Each dimension consists of a Name and Value pair. For more information about specifying dimensions, see Publishing Metrics in the Amazon CloudWatch User Guide.

You specify the time stamp to be associated with each data point. You can specify time stamps that are as much as two weeks before the current date, and as much as 2 hours after the current day and time.

Data points with time stamps from 24 hours ago or longer can take at least 48 hours to become available for GetMetricData or GetMetricStatistics from the time they are submitted. Data points with time stamps between 3 and 24 hours ago can take as much as 2 hours to become available for for GetMetricData or GetMetricStatistics.

CloudWatch needs raw data points to calculate percentile statistics. If you publish data using a statistic set instead, you can only retrieve percentile statistics for this data if one of the following conditions is true:

  • The SampleCount value of the statistic set is 1 and Min, Max, and Sum are all equal.

  • The Min and Max are equal, and Sum is equal to Min multiplied by SampleCount.

" }, "SetAlarmState":{ "name":"SetAlarmState", @@ -1176,11 +1176,11 @@ "members":{ "NextToken":{ "shape":"NextToken", - "documentation":"

Reserved for future use.

" + "documentation":"

Include this value, if it was returned by the previous operation, to get the next set of rules.

" }, "MaxResults":{ "shape":"InsightRuleMaxResults", - "documentation":"

This parameter is not currently used. Reserved for future use. If it is used in the future, the maximum value might be different.

" + "documentation":"

The maximum number of results to return in one operation. If you omit this parameter, the default of 500 is used.

" } } }, @@ -1189,7 +1189,7 @@ "members":{ "NextToken":{ "shape":"NextToken", - "documentation":"

Reserved for future use.

" + "documentation":"

If this parameter is present, it is a token that marks the start of the next batch of returned results.

" }, "InsightRules":{ "shape":"InsightRules", @@ -1210,7 +1210,7 @@ }, "Value":{ "shape":"DimensionValue", - "documentation":"

The value of the dimension.

" + "documentation":"

The value of the dimension. Dimension values cannot contain blank spaces or non-ASCII characters.

" } }, "documentation":"

A dimension is a name/value pair that is part of the identity of a metric. You can assign up to 10 dimensions to a metric. Because dimensions are part of the unique identifier for a metric, whenever you add a unique name/value pair to one of your metrics, you are creating a new variation of that metric.

", @@ -1458,7 +1458,7 @@ }, "NextToken":{ "shape":"NextToken", - "documentation":"

Include this value, if it was returned by the previous call, to get the next set of data points.

" + "documentation":"

Include this value, if it was returned by the previous GetMetricData operation, to get the next set of data points.

" }, "ScanBy":{ "shape":"ScanBy", @@ -1914,15 +1914,15 @@ "members":{ "Namespace":{ "shape":"Namespace", - "documentation":"

The namespace to filter against.

" + "documentation":"

The metric namespace to filter against. Only the namespace that matches exactly will be returned.

" }, "MetricName":{ "shape":"MetricName", - "documentation":"

The name of the metric to filter against.

" + "documentation":"

The name of the metric to filter against. Only the metrics with names that match exactly will be returned.

" }, "Dimensions":{ "shape":"DimensionFilters", - "documentation":"

The dimensions to filter against.

" + "documentation":"

The dimensions to filter against. Only the dimensions that match exactly will be returned.

" }, "NextToken":{ "shape":"NextToken", @@ -2124,7 +2124,7 @@ }, "Metrics":{ "shape":"MetricDataQueries", - "documentation":"

An array of MetricDataQuery structures, used in an alarm based on a metric math expression. Each structure either retrieves a metric or performs a math expression. One item in the Metrics array is the math expression that the alarm watches. This expression by designated by having ReturnValue set to true.

" + "documentation":"

An array of MetricDataQuery structures, used in an alarm based on a metric math expression. Each structure either retrieves a metric or performs a math expression. One item in the Metrics array is the math expression that the alarm watches. This expression by designated by having ReturnData set to true.

" }, "ThresholdMetricId":{ "shape":"MetricId", @@ -2412,7 +2412,7 @@ }, "Configuration":{ "shape":"AnomalyDetectorConfiguration", - "documentation":"

The configuration specifies details about how the anomaly detection model is to be trained, including time ranges to exclude when training and updating the model. You can specify as many as 10 time ranges.

The configuration can also include the time zone to use for the metric.

You can in

" + "documentation":"

The configuration specifies details about how the anomaly detection model is to be trained, including time ranges to exclude when training and updating the model. You can specify as many as 10 time ranges.

The configuration can also include the time zone to use for the metric.

" } } }, @@ -2604,7 +2604,7 @@ }, "Metrics":{ "shape":"MetricDataQueries", - "documentation":"

An array of MetricDataQuery structures that enable you to create an alarm based on the result of a metric math expression. For each PutMetricAlarm operation, you must specify either MetricName or a Metrics array.

Each item in the Metrics array either retrieves a metric or performs a math expression.

One item in the Metrics array is the expression that the alarm watches. You designate this expression by setting ReturnValue to true for this object in the array. For more information, see MetricDataQuery.

If you use the Metrics parameter, you cannot include the MetricName, Dimensions, Period, Namespace, Statistic, or ExtendedStatistic parameters of PutMetricAlarm in the same operation. Instead, you retrieve the metrics you are using in your math expression as part of the Metrics array.

" + "documentation":"

An array of MetricDataQuery structures that enable you to create an alarm based on the result of a metric math expression. For each PutMetricAlarm operation, you must specify either MetricName or a Metrics array.

Each item in the Metrics array either retrieves a metric or performs a math expression.

One item in the Metrics array is the expression that the alarm watches. You designate this expression by setting ReturnData to true for this object in the array. For more information, see MetricDataQuery.

If you use the Metrics parameter, you cannot include the MetricName, Dimensions, Period, Namespace, Statistic, or ExtendedStatistic parameters of PutMetricAlarm in the same operation. Instead, you retrieve the metrics you are using in your math expression as part of the Metrics array.

" }, "Tags":{ "shape":"TagList", From 5f070cb5b086a698b925ba744db0112f713e1143 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 4 Nov 2020 20:03:31 +0000 Subject: [PATCH 123/339] Amazon Elasticsearch Service Update: Amazon Elasticsearch Service now supports native SAML authentication that seamlessly integrates with the customers' existing SAML 2.0 Identity Provider (IdP). --- ...re-AmazonElasticsearchService-f30adfb.json | 6 ++ .../codegen-resources/service-2.json | 101 ++++++++++++++++++ 2 files changed, 107 insertions(+) create mode 100644 .changes/next-release/feature-AmazonElasticsearchService-f30adfb.json diff --git a/.changes/next-release/feature-AmazonElasticsearchService-f30adfb.json b/.changes/next-release/feature-AmazonElasticsearchService-f30adfb.json new file mode 100644 index 000000000000..a2eb01646bc0 --- /dev/null +++ b/.changes/next-release/feature-AmazonElasticsearchService-f30adfb.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Elasticsearch Service", + "contributor": "", + "description": "Amazon Elasticsearch Service now supports native SAML authentication that seamlessly integrates with the customers' existing SAML 2.0 Identity Provider (IdP)." +} diff --git a/services/elasticsearch/src/main/resources/codegen-resources/service-2.json b/services/elasticsearch/src/main/resources/codegen-resources/service-2.json index 9342cdbd9a9d..522361463a4c 100644 --- a/services/elasticsearch/src/main/resources/codegen-resources/service-2.json +++ b/services/elasticsearch/src/main/resources/codegen-resources/service-2.json @@ -732,6 +732,10 @@ "InternalUserDatabaseEnabled":{ "shape":"Boolean", "documentation":"

True if the internal user database is enabled.

" + }, + "SAMLOptions":{ + "shape":"SAMLOptionsOutput", + "documentation":"

Describes the SAML application configured for a domain.

" } }, "documentation":"

Specifies the advanced security configuration: whether advanced security is enabled, whether the internal database option is enabled.

" @@ -750,6 +754,10 @@ "MasterUserOptions":{ "shape":"MasterUserOptions", "documentation":"

Credentials for the master user: username and password, ARN, or both.

" + }, + "SAMLOptions":{ + "shape":"SAMLOptionsInput", + "documentation":"

Specifies the SAML application configuration for the domain.

" } }, "documentation":"

Specifies the advanced security configuration: whether advanced security is enabled, whether the internal database option is enabled, master username and password (if internal database is enabled), and master user ARN (if IAM is enabled).

" @@ -804,6 +812,11 @@ }, "documentation":"

Container for response returned by AssociatePackage operation.

" }, + "BackendRole":{ + "type":"string", + "max":256, + "min":1 + }, "BaseException":{ "type":"structure", "members":{ @@ -3036,6 +3049,94 @@ "min":3 }, "S3Key":{"type":"string"}, + "SAMLEntityId":{ + "type":"string", + "max":512, + "min":8 + }, + "SAMLIdp":{ + "type":"structure", + "required":[ + "MetadataContent", + "EntityId" + ], + "members":{ + "MetadataContent":{ + "shape":"SAMLMetadata", + "documentation":"

The Metadata of the SAML application in xml format.

" + }, + "EntityId":{ + "shape":"SAMLEntityId", + "documentation":"

The unique Entity ID of the application in SAML Identity Provider.

" + } + }, + "documentation":"

Specifies the SAML Identity Provider's information.

" + }, + "SAMLMetadata":{ + "type":"string", + "max":1048576, + "min":1 + }, + "SAMLOptionsInput":{ + "type":"structure", + "members":{ + "Enabled":{ + "shape":"Boolean", + "documentation":"

True if SAML is enabled.

" + }, + "Idp":{ + "shape":"SAMLIdp", + "documentation":"

Specifies the SAML Identity Provider's information.

" + }, + "MasterUserName":{ + "shape":"Username", + "documentation":"

The SAML master username, which is stored in the Amazon Elasticsearch Service domain's internal database.

" + }, + "MasterBackendRole":{ + "shape":"BackendRole", + "documentation":"

The backend role to which the SAML master user is mapped to.

" + }, + "SubjectKey":{ + "shape":"String", + "documentation":"

The key to use for matching the SAML Subject attribute.

" + }, + "RolesKey":{ + "shape":"String", + "documentation":"

The key to use for matching the SAML Roles attribute.

" + }, + "SessionTimeoutMinutes":{ + "shape":"IntegerClass", + "documentation":"

The duration, in minutes, after which a user session becomes inactive. Acceptable values are between 1 and 1440, and the default value is 60.

" + } + }, + "documentation":"

Specifies the SAML application configuration for the domain.

" + }, + "SAMLOptionsOutput":{ + "type":"structure", + "members":{ + "Enabled":{ + "shape":"Boolean", + "documentation":"

True if SAML is enabled.

" + }, + "Idp":{ + "shape":"SAMLIdp", + "documentation":"

Describes the SAML Identity Provider's information.

" + }, + "SubjectKey":{ + "shape":"String", + "documentation":"

The key used for matching the SAML Subject attribute.

" + }, + "RolesKey":{ + "shape":"String", + "documentation":"

The key used for matching the SAML Roles attribute.

" + }, + "SessionTimeoutMinutes":{ + "shape":"IntegerClass", + "documentation":"

The duration, in minutes, after which a user session becomes inactive.

" + } + }, + "documentation":"

Describes the SAML application configured for the domain.

" + }, "ServiceSoftwareOptions":{ "type":"structure", "members":{ From ce710b2181734be3725c4584c6242ea3a29f9e67 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 4 Nov 2020 20:03:32 +0000 Subject: [PATCH 124/339] AmazonMQ Update: Amazon MQ introduces support for RabbitMQ, a popular message-broker with native support for AMQP 0.9.1. You can now create fully-managed RabbitMQ brokers in the cloud. --- .../feature-AmazonMQ-6d9d6d6.json | 6 ++ .../codegen-resources/service-2.json | 69 ++++++++++--------- 2 files changed, 43 insertions(+), 32 deletions(-) create mode 100644 .changes/next-release/feature-AmazonMQ-6d9d6d6.json diff --git a/.changes/next-release/feature-AmazonMQ-6d9d6d6.json b/.changes/next-release/feature-AmazonMQ-6d9d6d6.json new file mode 100644 index 000000000000..839c2c3d9dd5 --- /dev/null +++ b/.changes/next-release/feature-AmazonMQ-6d9d6d6.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AmazonMQ", + "contributor": "", + "description": "Amazon MQ introduces support for RabbitMQ, a popular message-broker with native support for AMQP 0.9.1. You can now create fully-managed RabbitMQ brokers in the cloud." +} diff --git a/services/mq/src/main/resources/codegen-resources/service-2.json b/services/mq/src/main/resources/codegen-resources/service-2.json index 563b32376a3a..790b077e86b2 100644 --- a/services/mq/src/main/resources/codegen-resources/service-2.json +++ b/services/mq/src/main/resources/codegen-resources/service-2.json @@ -725,7 +725,7 @@ "ConsoleURL" : { "shape" : "__string", "locationName" : "consoleURL", - "documentation" : "The URL of the broker's ActiveMQ Web Console." + "documentation" : "The URL of the broker's Web Console." }, "Endpoints" : { "shape" : "__listOf__string", @@ -735,7 +735,7 @@ "IpAddress" : { "shape" : "__string", "locationName" : "ipAddress", - "documentation" : "The IP address of the Elastic Network Interface (ENI) attached to the broker." + "documentation" : "The IP address of the Elastic Network Interface (ENI) attached to the broker. Does not apply to RabbitMQ brokers" } }, "documentation" : "Returns information about all brokers." @@ -804,7 +804,7 @@ }, "BrokerStorageType" : { "type" : "string", - "documentation" : "The storage type of the broker.", + "documentation" : "The broker's storage type. EFS is currently not Supported for RabbitMQ engine type.", "enum" : [ "EBS", "EFS" ] }, "BrokerSummary" : { @@ -840,6 +840,11 @@ "locationName" : "deploymentMode", "documentation" : "Required. The deployment mode of the broker." }, + "EngineType" : { + "shape" : "EngineType", + "locationName" : "engineType", + "documentation" : "Required. The type of broker engine." + }, "HostInstanceType" : { "shape" : "__string", "locationName" : "hostInstanceType", @@ -879,7 +884,7 @@ "EngineType" : { "shape" : "EngineType", "locationName" : "engineType", - "documentation" : "Required. The type of broker engine. Note: Currently, Amazon MQ supports only ACTIVEMQ." + "documentation" : "Required. The type of broker engine. Note: Currently, Amazon MQ supports ACTIVEMQ and RABBITMQ." }, "EngineVersion" : { "shape" : "__string", @@ -923,7 +928,7 @@ "documentation" : "The revision number of the configuration." } }, - "documentation" : "A list of information about the configuration." + "documentation" : "A list of information about the configuration. Does not apply to RabbitMQ brokers." }, "ConfigurationRevision" : { "type" : "structure", @@ -1029,7 +1034,7 @@ "EngineType" : { "shape" : "EngineType", "locationName" : "engineType", - "documentation" : "Required. The type of broker engine. Note: Currently, Amazon MQ supports only ACTIVEMQ." + "documentation" : "Required. The type of broker engine. Note: Currently, Amazon MQ supports ACTIVEMQ and RABBITMQ." }, "EngineVersion" : { "shape" : "__string", @@ -1074,7 +1079,7 @@ "SubnetIds" : { "shape" : "__listOf__string", "locationName" : "subnetIds", - "documentation" : "The list of groups (2 maximum) that define which subnets and IP ranges the broker can use from different Availability Zones. A SINGLE_INSTANCE deployment requires one subnet (for example, the default subnet). An ACTIVE_STANDBY_MULTI_AZ deployment requires two subnets." + "documentation" : "The list of groups that define which subnets and IP ranges the broker can use from different Availability Zones. A SINGLE_INSTANCE deployment requires one subnet (for example, the default subnet). An ACTIVE_STANDBY_MULTI_AZ deployment (ACTIVEMQ) requires two subnets. A CLUSTER_MULTI_AZ deployment (RABBITMQ) has no subnet requirements when deployed with public accessibility, deployment without public accessibility requires at least one subnet." }, "Tags" : { "shape" : "__mapOf__string", @@ -1084,7 +1089,7 @@ "Users" : { "shape" : "__listOfUser", "locationName" : "users", - "documentation" : "Required. The list of ActiveMQ users (persons or applications) who can access queues and topics. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long." + "documentation" : "Required. The list of broker users (persons or applications) who can access queues and topics. For RabbitMQ brokers, one and only one administrative user is accepted and created when a broker is first provisioned. All subsequent broker users are created by making RabbitMQ API calls directly to brokers or via the RabbitMQ Web Console. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long." } }, "documentation" : "Required. The version of the broker engine. For a list of supported engine versions, see https://docs.aws.amazon.com/amazon-mq/latest/developer-guide/broker-engine.html" @@ -1147,7 +1152,7 @@ "EngineType" : { "shape" : "EngineType", "locationName" : "engineType", - "documentation" : "Required. The type of broker engine. Note: Currently, Amazon MQ supports only ACTIVEMQ." + "documentation" : "Required. The type of broker engine. Note: Currently, Amazon MQ supports ACTIVEMQ and RABBITMQ." }, "EngineVersion" : { "shape" : "__string", @@ -1192,7 +1197,7 @@ "SubnetIds" : { "shape" : "__listOf__string", "locationName" : "subnetIds", - "documentation" : "The list of groups (2 maximum) that define which subnets and IP ranges the broker can use from different Availability Zones. A SINGLE_INSTANCE deployment requires one subnet (for example, the default subnet). An ACTIVE_STANDBY_MULTI_AZ deployment requires two subnets." + "documentation" : "The list of groups that define which subnets and IP ranges the broker can use from different Availability Zones. A SINGLE_INSTANCE deployment requires one subnet (for example, the default subnet). An ACTIVE_STANDBY_MULTI_AZ deployment (ACTIVEMQ) requires two subnets. A CLUSTER_MULTI_AZ deployment (RABBITMQ) has no subnet requirements when deployed with public accessibility, deployment without public accessibility requires at least one subnet." }, "Tags" : { "shape" : "__mapOf__string", @@ -1202,7 +1207,7 @@ "Users" : { "shape" : "__listOfUser", "locationName" : "users", - "documentation" : "Required. The list of ActiveMQ users (persons or applications) who can access queues and topics. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long." + "documentation" : "Required. The list of broker users (persons or applications) who can access queues and topics. For RabbitMQ brokers, one and only one administrative user is accepted and created when a broker is first provisioned. All subsequent broker users are created by making RabbitMQ API calls directly to brokers or via the RabbitMQ Web Console. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long." } }, "documentation" : "Creates a broker using the specified properties." @@ -1233,7 +1238,7 @@ "EngineType" : { "shape" : "EngineType", "locationName" : "engineType", - "documentation" : "Required. The type of broker engine. Note: Currently, Amazon MQ supports only ACTIVEMQ." + "documentation" : "Required. The type of broker engine. Note: Currently, Amazon MQ supports ACTIVEMQ and RABBITMQ." }, "EngineVersion" : { "shape" : "__string", @@ -1300,7 +1305,7 @@ "EngineType" : { "shape" : "EngineType", "locationName" : "engineType", - "documentation" : "Required. The type of broker engine. Note: Currently, Amazon MQ supports only ACTIVEMQ." + "documentation" : "Required. The type of broker engine. Note: Currently, Amazon MQ supports ACTIVEMQ and RABBITMQ." }, "EngineVersion" : { "shape" : "__string", @@ -1512,7 +1517,7 @@ "DeploymentMode" : { "type" : "string", "documentation" : "The deployment mode of the broker.", - "enum" : [ "SINGLE_INSTANCE", "ACTIVE_STANDBY_MULTI_AZ" ] + "enum" : [ "SINGLE_INSTANCE", "ACTIVE_STANDBY_MULTI_AZ", "CLUSTER_MULTI_AZ" ] }, "DescribeBrokerEngineTypesRequest" : { "type" : "structure", @@ -1673,7 +1678,7 @@ "EngineType" : { "shape" : "EngineType", "locationName" : "engineType", - "documentation" : "Required. The type of broker engine. Note: Currently, Amazon MQ supports only ACTIVEMQ." + "documentation" : "Required. The type of broker engine. Note: Currently, Amazon MQ supports ACTIVEMQ and RABBITMQ." }, "EngineVersion" : { "shape" : "__string", @@ -1743,7 +1748,7 @@ "SubnetIds" : { "shape" : "__listOf__string", "locationName" : "subnetIds", - "documentation" : "The list of groups (2 maximum) that define which subnets and IP ranges the broker can use from different Availability Zones. A SINGLE_INSTANCE deployment requires one subnet (for example, the default subnet). An ACTIVE_STANDBY_MULTI_AZ deployment requires two subnets." + "documentation" : "The list of groups that define which subnets and IP ranges the broker can use from different Availability Zones. A SINGLE_INSTANCE deployment requires one subnet (for example, the default subnet). An ACTIVE_STANDBY_MULTI_AZ deployment (ACTIVEMQ) requires two subnets. A CLUSTER_MULTI_AZ deployment (RABBITMQ) has no subnet requirements when deployed with public accessibility, deployment without public accessibility requires at least one subnet." }, "Tags" : { "shape" : "__mapOf__string", @@ -1753,7 +1758,7 @@ "Users" : { "shape" : "__listOfUserSummary", "locationName" : "users", - "documentation" : "The list of all ActiveMQ usernames for the specified broker." + "documentation" : "The list of all broker usernames for the specified broker." } }, "documentation" : "The version of the broker engine. For a list of supported engine versions, see https://docs.aws.amazon.com/amazon-mq/latest/developer-guide/broker-engine.html" @@ -1831,7 +1836,7 @@ "EngineType" : { "shape" : "EngineType", "locationName" : "engineType", - "documentation" : "Required. The type of broker engine. Note: Currently, Amazon MQ supports only ACTIVEMQ." + "documentation" : "Required. The type of broker engine. Note: Currently, Amazon MQ supports ACTIVEMQ and RABBITMQ." }, "EngineVersion" : { "shape" : "__string", @@ -1901,7 +1906,7 @@ "SubnetIds" : { "shape" : "__listOf__string", "locationName" : "subnetIds", - "documentation" : "The list of groups (2 maximum) that define which subnets and IP ranges the broker can use from different Availability Zones. A SINGLE_INSTANCE deployment requires one subnet (for example, the default subnet). An ACTIVE_STANDBY_MULTI_AZ deployment requires two subnets." + "documentation" : "The list of groups that define which subnets and IP ranges the broker can use from different Availability Zones. A SINGLE_INSTANCE deployment requires one subnet (for example, the default subnet). An ACTIVE_STANDBY_MULTI_AZ deployment (ACTIVEMQ) requires two subnets. A CLUSTER_MULTI_AZ deployment (RABBITMQ) has no subnet requirements when deployed with public accessibility, deployment without public accessibility requires at least one subnet." }, "Tags" : { "shape" : "__mapOf__string", @@ -1911,7 +1916,7 @@ "Users" : { "shape" : "__listOfUserSummary", "locationName" : "users", - "documentation" : "The list of all ActiveMQ usernames for the specified broker." + "documentation" : "The list of all broker usernames for the specified broker." } } }, @@ -1953,7 +1958,7 @@ "EngineType" : { "shape" : "EngineType", "locationName" : "engineType", - "documentation" : "Required. The type of broker engine. Note: Currently, Amazon MQ supports only ACTIVEMQ." + "documentation" : "Required. The type of broker engine. Note: Currently, Amazon MQ supports ACTIVEMQ and RABBITMQ." }, "EngineVersion" : { "shape" : "__string", @@ -2149,8 +2154,8 @@ }, "EngineType" : { "type" : "string", - "documentation" : "The type of broker engine. Note: Currently, Amazon MQ supports only ActiveMQ.", - "enum" : [ "ACTIVEMQ" ] + "documentation" : "The type of broker engine. Note: Currently, Amazon MQ supports ActiveMQ and RabbitMQ.", + "enum" : [ "ACTIVEMQ", "RABBITMQ" ] }, "EngineVersion" : { "type" : "structure", @@ -2620,7 +2625,7 @@ "Audit" : { "shape" : "__boolean", "locationName" : "audit", - "documentation" : "Enables audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged." + "documentation" : "Enables audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged. Does not apply to RabbitMQ brokers." }, "General" : { "shape" : "__boolean", @@ -3150,7 +3155,7 @@ "ConsoleAccess" : { "shape" : "__boolean", "locationName" : "consoleAccess", - "documentation" : "Enables access to the the ActiveMQ Web Console for the ActiveMQ user." + "documentation" : "Enables access to the ActiveMQ Web Console for the ActiveMQ user (Does not apply to RabbitMQ brokers)." }, "Groups" : { "shape" : "__listOf__string", @@ -3160,15 +3165,15 @@ "Password" : { "shape" : "__string", "locationName" : "password", - "documentation" : "Required. The password of the ActiveMQ user. This value must be at least 12 characters long, must contain at least 4 unique characters, and must not contain commas." + "documentation" : "Required. The password of the broker user. This value must be at least 12 characters long, must contain at least 4 unique characters, and must not contain commas." }, "Username" : { "shape" : "__string", "locationName" : "username", - "documentation" : "Required. The username of the ActiveMQ user. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long." + "documentation" : "Required. The username of the broker user. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long." } }, - "documentation" : "An ActiveMQ user associated with the broker." + "documentation" : "A user associated with the broker." }, "UserPendingChanges" : { "type" : "structure", @@ -3197,15 +3202,15 @@ "PendingChange" : { "shape" : "ChangeType", "locationName" : "pendingChange", - "documentation" : "The type of change pending for the ActiveMQ user." + "documentation" : "The type of change pending for the broker user." }, "Username" : { "shape" : "__string", "locationName" : "username", - "documentation" : "Required. The username of the ActiveMQ user. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long." + "documentation" : "Required. The username of the broker user. This value can contain only alphanumeric characters, dashes, periods, underscores, and tildes (- . _ ~). This value must be 2-100 characters long." } }, - "documentation" : "Returns a list of all ActiveMQ users." + "documentation" : "Returns a list of all broker users." }, "WeeklyStartTime" : { "type" : "structure", @@ -3360,5 +3365,5 @@ } } }, - "documentation" : "Amazon MQ is a managed message broker service for Apache ActiveMQ that makes it easy to set up and operate message brokers in the cloud. A message broker allows software applications and components to communicate using various programming languages, operating systems, and formal messaging protocols." + "documentation" : "Amazon MQ is a managed message broker service for Apache ActiveMQ and RabbitMQ that makes it easy to set up and operate message brokers in the cloud. A message broker allows software applications and components to communicate using various programming languages, operating systems, and formal messaging protocols." } \ No newline at end of file From f9808a7fd1ed2eb4765597c69cb92069293f788d Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 4 Nov 2020 20:05:09 +0000 Subject: [PATCH 125/339] Updated endpoints.json. --- .../feature-AWSSDKforJavav2-bedacd4.json | 6 ++ .../regions/internal/region/endpoints.json | 59 +++++++++++++++++++ 2 files changed, 65 insertions(+) create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json new file mode 100644 index 000000000000..ae3f84993e9e --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." +} diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json index dc6d7d824639..73c5450d329d 100644 --- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json +++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json @@ -2065,6 +2065,12 @@ }, "hostname" : "fips.eks.us-east-2.amazonaws.com" }, + "fips-us-west-1" : { + "credentialScope" : { + "region" : "us-west-1" + }, + "hostname" : "fips.eks.us-west-1.amazonaws.com" + }, "fips-us-west-2" : { "credentialScope" : { "region" : "us-west-2" @@ -3362,6 +3368,30 @@ "eu-west-1" : { }, "eu-west-2" : { }, "eu-west-3" : { }, + "fips-us-east-1" : { + "credentialScope" : { + "region" : "us-east-1" + }, + "hostname" : "lakeformation-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2" : { + "credentialScope" : { + "region" : "us-east-2" + }, + "hostname" : "lakeformation-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1" : { + "credentialScope" : { + "region" : "us-west-1" + }, + "hostname" : "lakeformation-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2" : { + "credentialScope" : { + "region" : "us-west-2" + }, + "hostname" : "lakeformation-fips.us-west-2.amazonaws.com" + }, "sa-east-1" : { }, "us-east-1" : { }, "us-east-2" : { }, @@ -4228,6 +4258,7 @@ "ap-northeast-1" : { }, "ap-northeast-2" : { }, "ap-south-1" : { }, + "ap-southeast-1" : { }, "ap-southeast-2" : { }, "ca-central-1" : { }, "eu-central-1" : { }, @@ -7708,6 +7739,18 @@ "protocols" : [ "http", "https" ] }, "endpoints" : { + "fips-us-gov-east-1" : { + "credentialScope" : { + "region" : "us-gov-east-1" + }, + "hostname" : "eks.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1" : { + "credentialScope" : { + "region" : "us-gov-west-1" + }, + "hostname" : "eks.us-gov-west-1.amazonaws.com" + }, "us-gov-east-1" : { }, "us-gov-west-1" : { } } @@ -7915,6 +7958,7 @@ "protocols" : [ "https" ] }, "endpoints" : { + "us-gov-east-1" : { }, "us-gov-west-1" : { }, "us-gov-west-1-fips" : { "credentialScope" : { @@ -9054,6 +9098,16 @@ } }, "services" : { + "api.ecr" : { + "endpoints" : { + "us-isob-east-1" : { + "credentialScope" : { + "region" : "us-isob-east-1" + }, + "hostname" : "api.ecr.us-isob-east-1.sc2s.sgov.gov" + } + } + }, "application-autoscaling" : { "defaults" : { "protocols" : [ "http", "https" ] @@ -9117,6 +9171,11 @@ "us-isob-east-1" : { } } }, + "ecs" : { + "endpoints" : { + "us-isob-east-1" : { } + } + }, "elasticache" : { "endpoints" : { "us-isob-east-1" : { } From a455319b94df0a3211adf264dbc5b5ed16b48c55 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 4 Nov 2020 20:05:39 +0000 Subject: [PATCH 126/339] Release 2.15.21. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.21.json | 72 +++++++++++++++++++ .../next-release/feature-AWSIoT-c647707.json | 6 -- ...eature-AWSMarketplaceMetering-7e8a8d1.json | 6 -- .../feature-AWSSDKforJavav2-bedacd4.json | 6 -- .../feature-AWSServiceCatalog-4504579.json | 6 -- .../next-release/feature-AWSXRay-5e37761.json | 6 -- .../feature-AmazonCloudWatch-2f68eb2.json | 6 -- ...ure-AmazonElasticComputeCloud-2f7f9fc.json | 6 -- ...re-AmazonElasticsearchService-f30adfb.json | 6 -- .../feature-AmazonMQ-6d9d6d6.json | 6 -- ...zonTranscribeStreamingService-4c64b35.json | 6 -- .../feature-AutoScaling-2a5ac64.json | 6 -- CHANGELOG.md | 45 ++++++++++++ README.md | 8 +-- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- .../serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 294 files changed, 401 insertions(+), 350 deletions(-) create mode 100644 .changes/2.15.21.json delete mode 100644 .changes/next-release/feature-AWSIoT-c647707.json delete mode 100644 .changes/next-release/feature-AWSMarketplaceMetering-7e8a8d1.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json delete mode 100644 .changes/next-release/feature-AWSServiceCatalog-4504579.json delete mode 100644 .changes/next-release/feature-AWSXRay-5e37761.json delete mode 100644 .changes/next-release/feature-AmazonCloudWatch-2f68eb2.json delete mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-2f7f9fc.json delete mode 100644 .changes/next-release/feature-AmazonElasticsearchService-f30adfb.json delete mode 100644 .changes/next-release/feature-AmazonMQ-6d9d6d6.json delete mode 100644 .changes/next-release/feature-AmazonTranscribeStreamingService-4c64b35.json delete mode 100644 .changes/next-release/feature-AutoScaling-2a5ac64.json diff --git a/.changes/2.15.21.json b/.changes/2.15.21.json new file mode 100644 index 000000000000..6251577513f5 --- /dev/null +++ b/.changes/2.15.21.json @@ -0,0 +1,72 @@ +{ + "version": "2.15.21", + "date": "2020-11-04", + "entries": [ + { + "type": "feature", + "category": "AWS Service Catalog", + "contributor": "", + "description": "Service Catalog API ListPortfolioAccess can now support a maximum PageSize of 100." + }, + { + "type": "feature", + "category": "Amazon Elasticsearch Service", + "contributor": "", + "description": "Amazon Elasticsearch Service now supports native SAML authentication that seamlessly integrates with the customers' existing SAML 2.0 Identity Provider (IdP)." + }, + { + "type": "feature", + "category": "AWSMarketplace Metering", + "contributor": "", + "description": "Adding Vendor Tagging Support in MeterUsage and BatchMeterUsage API." + }, + { + "type": "feature", + "category": "AmazonMQ", + "contributor": "", + "description": "Amazon MQ introduces support for RabbitMQ, a popular message-broker with native support for AMQP 0.9.1. You can now create fully-managed RabbitMQ brokers in the cloud." + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." + }, + { + "type": "feature", + "category": "Auto Scaling", + "contributor": "", + "description": "Capacity Rebalance helps you manage and maintain workload availability during Spot interruptions by proactively augmenting your Auto Scaling group with a new instance before interrupting an old one." + }, + { + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "Added support for Client Connect Handler for AWS Client VPN. Fleet supports launching replacement instances in response to Capacity Rebalance recommendation." + }, + { + "type": "feature", + "category": "AWS X-Ray", + "contributor": "", + "description": "Releasing new APIs GetInsightSummaries, GetInsightEvents, GetInsight, GetInsightImpactGraph and updating GetTimeSeriesServiceStatistics API for AWS X-Ray Insights feature" + }, + { + "type": "feature", + "category": "Amazon CloudWatch", + "contributor": "", + "description": "Documentation updates for monitoring" + }, + { + "type": "feature", + "category": "Amazon Transcribe Streaming Service", + "contributor": "", + "description": "With this release, Amazon Transcribe now supports real-time transcription from audio sources in Italian (it-IT) and German(de-DE)." + }, + { + "type": "feature", + "category": "AWS IoT", + "contributor": "", + "description": "Updated API documentation and added paginator for AWS Iot Registry ListThingPrincipals API." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSIoT-c647707.json b/.changes/next-release/feature-AWSIoT-c647707.json deleted file mode 100644 index e91ade298fe1..000000000000 --- a/.changes/next-release/feature-AWSIoT-c647707.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS IoT", - "contributor": "", - "description": "Updated API documentation and added paginator for AWS Iot Registry ListThingPrincipals API." -} diff --git a/.changes/next-release/feature-AWSMarketplaceMetering-7e8a8d1.json b/.changes/next-release/feature-AWSMarketplaceMetering-7e8a8d1.json deleted file mode 100644 index c0013e2b58cf..000000000000 --- a/.changes/next-release/feature-AWSMarketplaceMetering-7e8a8d1.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWSMarketplace Metering", - "contributor": "", - "description": "Adding Vendor Tagging Support in MeterUsage and BatchMeterUsage API." -} diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json deleted file mode 100644 index ae3f84993e9e..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS SDK for Java v2", - "contributor": "", - "description": "Updated service endpoint metadata." -} diff --git a/.changes/next-release/feature-AWSServiceCatalog-4504579.json b/.changes/next-release/feature-AWSServiceCatalog-4504579.json deleted file mode 100644 index b3bcf27028f6..000000000000 --- a/.changes/next-release/feature-AWSServiceCatalog-4504579.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Service Catalog", - "contributor": "", - "description": "Service Catalog API ListPortfolioAccess can now support a maximum PageSize of 100." -} diff --git a/.changes/next-release/feature-AWSXRay-5e37761.json b/.changes/next-release/feature-AWSXRay-5e37761.json deleted file mode 100644 index a12a7bc60714..000000000000 --- a/.changes/next-release/feature-AWSXRay-5e37761.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS X-Ray", - "contributor": "", - "description": "Releasing new APIs GetInsightSummaries, GetInsightEvents, GetInsight, GetInsightImpactGraph and updating GetTimeSeriesServiceStatistics API for AWS X-Ray Insights feature" -} diff --git a/.changes/next-release/feature-AmazonCloudWatch-2f68eb2.json b/.changes/next-release/feature-AmazonCloudWatch-2f68eb2.json deleted file mode 100644 index 0f1ec0fa32db..000000000000 --- a/.changes/next-release/feature-AmazonCloudWatch-2f68eb2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon CloudWatch", - "contributor": "", - "description": "Documentation updates for monitoring" -} diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-2f7f9fc.json b/.changes/next-release/feature-AmazonElasticComputeCloud-2f7f9fc.json deleted file mode 100644 index a6e68a473110..000000000000 --- a/.changes/next-release/feature-AmazonElasticComputeCloud-2f7f9fc.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Elastic Compute Cloud", - "contributor": "", - "description": "Added support for Client Connect Handler for AWS Client VPN. Fleet supports launching replacement instances in response to Capacity Rebalance recommendation." -} diff --git a/.changes/next-release/feature-AmazonElasticsearchService-f30adfb.json b/.changes/next-release/feature-AmazonElasticsearchService-f30adfb.json deleted file mode 100644 index a2eb01646bc0..000000000000 --- a/.changes/next-release/feature-AmazonElasticsearchService-f30adfb.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Elasticsearch Service", - "contributor": "", - "description": "Amazon Elasticsearch Service now supports native SAML authentication that seamlessly integrates with the customers' existing SAML 2.0 Identity Provider (IdP)." -} diff --git a/.changes/next-release/feature-AmazonMQ-6d9d6d6.json b/.changes/next-release/feature-AmazonMQ-6d9d6d6.json deleted file mode 100644 index 839c2c3d9dd5..000000000000 --- a/.changes/next-release/feature-AmazonMQ-6d9d6d6.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AmazonMQ", - "contributor": "", - "description": "Amazon MQ introduces support for RabbitMQ, a popular message-broker with native support for AMQP 0.9.1. You can now create fully-managed RabbitMQ brokers in the cloud." -} diff --git a/.changes/next-release/feature-AmazonTranscribeStreamingService-4c64b35.json b/.changes/next-release/feature-AmazonTranscribeStreamingService-4c64b35.json deleted file mode 100644 index 94d9c75baa5d..000000000000 --- a/.changes/next-release/feature-AmazonTranscribeStreamingService-4c64b35.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Transcribe Streaming Service", - "contributor": "", - "description": "With this release, Amazon Transcribe now supports real-time transcription from audio sources in Italian (it-IT) and German(de-DE)." -} diff --git a/.changes/next-release/feature-AutoScaling-2a5ac64.json b/.changes/next-release/feature-AutoScaling-2a5ac64.json deleted file mode 100644 index 2aedaf83731b..000000000000 --- a/.changes/next-release/feature-AutoScaling-2a5ac64.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Auto Scaling", - "contributor": "", - "description": "Capacity Rebalance helps you manage and maintain workload availability during Spot interruptions by proactively augmenting your Auto Scaling group with a new instance before interrupting an old one." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index 775c2875db38..a1c4f4dc5606 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,48 @@ +# __2.15.21__ __2020-11-04__ +## __AWS IoT__ + - ### Features + - Updated API documentation and added paginator for AWS Iot Registry ListThingPrincipals API. + +## __AWS SDK for Java v2__ + - ### Features + - Updated service endpoint metadata. + +## __AWS Service Catalog__ + - ### Features + - Service Catalog API ListPortfolioAccess can now support a maximum PageSize of 100. + +## __AWS X-Ray__ + - ### Features + - Releasing new APIs GetInsightSummaries, GetInsightEvents, GetInsight, GetInsightImpactGraph and updating GetTimeSeriesServiceStatistics API for AWS X-Ray Insights feature + +## __AWSMarketplace Metering__ + - ### Features + - Adding Vendor Tagging Support in MeterUsage and BatchMeterUsage API. + +## __Amazon CloudWatch__ + - ### Features + - Documentation updates for monitoring + +## __Amazon Elastic Compute Cloud__ + - ### Features + - Added support for Client Connect Handler for AWS Client VPN. Fleet supports launching replacement instances in response to Capacity Rebalance recommendation. + +## __Amazon Elasticsearch Service__ + - ### Features + - Amazon Elasticsearch Service now supports native SAML authentication that seamlessly integrates with the customers' existing SAML 2.0 Identity Provider (IdP). + +## __Amazon Transcribe Streaming Service__ + - ### Features + - With this release, Amazon Transcribe now supports real-time transcription from audio sources in Italian (it-IT) and German(de-DE). + +## __AmazonMQ__ + - ### Features + - Amazon MQ introduces support for RabbitMQ, a popular message-broker with native support for AMQP 0.9.1. You can now create fully-managed RabbitMQ brokers in the cloud. + +## __Auto Scaling__ + - ### Features + - Capacity Rebalance helps you manage and maintain workload availability during Spot interruptions by proactively augmenting your Auto Scaling group with a new instance before interrupting an old one. + # __2.15.20__ __2020-11-02__ ## __AWS DynamoDB Enhanced Client__ - ### Bugfixes diff --git a/README.md b/README.md index c823486fd06e..c1a96981ea5c 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.20 + 2.15.21 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.20 + 2.15.21 software.amazon.awssdk s3 - 2.15.20 + 2.15.21 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.20 + 2.15.21 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 4396535fd532..6e58445ace1d 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 96fdc8522c79..b6df2e38c7ec 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index e736bfcfdcb7..5c9d97407880 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.15.21-SNAPSHOT + 2.15.21 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index cf4728733297..2b9d1692162f 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 104184cf83bf..3c0eba8d9a0f 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.21-SNAPSHOT + 2.15.21 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 86629a3095ab..4ffbcdcfb07d 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.21-SNAPSHOT + 2.15.21 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 744f86649a18..30a575519cf6 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.15.21-SNAPSHOT + 2.15.21 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 976260541048..3a75cada7118 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.21-SNAPSHOT + 2.15.21 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 38a009d430dd..e088a9ecb4ea 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.15.21-SNAPSHOT + 2.15.21 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index f7e5810711eb..30459e8f1d9a 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.21-SNAPSHOT + 2.15.21 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 358105759bc2..4225becb93a8 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 1be69efdf66c..1ec26cd88bbc 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index d5ac751d589e..4c050d07eedc 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.21-SNAPSHOT + 2.15.21 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 3e1d14ec3041..aba1166fee7f 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.21-SNAPSHOT + 2.15.21 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index b7bbdad28b72..5dab902039bc 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 405bd0680a10..46a1e2d1e444 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index bc610146e0a9..f02285bebe53 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.21-SNAPSHOT + 2.15.21 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 4378a40bfe8b..1d1f85947d8e 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.15.21-SNAPSHOT + 2.15.21 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 821441e61bff..e9b7008522e6 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index eec285622558..5c30bf0cc4e8 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.15.21-SNAPSHOT + 2.15.21 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 1ad98fa578f4..89ed27127ee6 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.15.21-SNAPSHOT + 2.15.21 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index f655e26650d1..fb849ef2a264 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.15.21-SNAPSHOT + 2.15.21 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 69075ffb78df..3725b7637256 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 4afef757c199..41205eea5598 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 70fb6e8370de..47ffce9f02c3 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.21-SNAPSHOT + 2.15.21 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 85c05013ec2c..48533c5b147a 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.21-SNAPSHOT + 2.15.21 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 70c3301df929..51836805c08f 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.15.21-SNAPSHOT + 2.15.21 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 8b0afdb0bca1..1d586804a11f 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.15.21-SNAPSHOT + 2.15.21 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 7badff1f89f6..84629cda7022 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.15.21-SNAPSHOT + 2.15.21 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index e4a48b7fbd86..e891a2348978 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.15.21-SNAPSHOT + 2.15.21 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 3eb139346be5..9c924c3f70b9 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 4d6540627151..f2ea525c889c 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.15.21-SNAPSHOT + 2.15.21 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 38b2dfa4ebad..aba48c25222a 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.15.21-SNAPSHOT + 2.15.21 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 818feeff9c64..c542cf683370 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.21-SNAPSHOT + 2.15.21 metric-publishers diff --git a/pom.xml b/pom.xml index 65be81a5b23d..8686bf3bf115 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.21-SNAPSHOT + 2.15.21 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 cb9d0eb77206..5b28f9112c86 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.21-SNAPSHOT + 2.15.21 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 10c2e70002f0..d7339c6a33a6 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.15.21-SNAPSHOT + 2.15.21 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 33d4479e6fe3..4a935cd6da11 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.21-SNAPSHOT + 2.15.21 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 755a3bce7573..5835285cedb8 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 2fea6e83f263..d102bc8b1068 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index f81f3115f2e6..5252271952b0 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 390fb4e6a05f..9580c9fa84ff 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index e2a40e331e38..911ee4b5a1b8 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index bbbc0db29ec2..ec16eb6db675 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index b7129cbfca0a..fb989745b9ce 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 6ab4c5db81d3..5db545cd2da9 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index f507df09db35..7920f2654528 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 6beb6c1cc349..458dd2060567 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 4b00d63dab4f..80c431b870b1 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 0017d6c63901..90f4b6fb313c 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index c89cb9475895..004e0cd895b2 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 74461a73b4c4..72a35a3484ea 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 131f288ddec8..5fa687cb065b 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 00f4c4c97c31..26c1de9e4f5e 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 88f7255bbf7d..4b582bcc62aa 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 8c0216b8f687..eb3e683ea96d 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 1cfe12fd632d..6f034c98835d 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 115dffdc5084..6624549bf5d3 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 169e06d31c06..c05827d8d90f 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 114830746e2c..ce41c74819c5 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 2fb453690131..4d364f935d5c 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 4fafbde204ce..11e7bf22afa5 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index aa73aca923dd..e4f1c91da5e1 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 5693f7b99b50..378979ba6b60 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index eff7764bbf84..d866cf7da1f4 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 07b7c01b0bbe..48c43e30626b 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 0a345903f7df..c0f0d6b1c3cb 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index c16913adfa73..4d51b8ca394d 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index b4552d0e498e..a70ef500b4e0 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index ac7447120544..5d1c9fcfd6f5 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 6c550d2e96d6..fe4cd4c976e5 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index cdbf6441a76d..b1c141558898 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 208deede7a6d..884f97683e2e 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 2eaecaa9371c..0360fa7871cb 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index c59548cdeaa1..1eceb9d5a106 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 62ec797ab1ba..18e6dd68c869 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index ed6cefbd30fe..6f3e5402c76d 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index dded0a647d47..7812d96c7f02 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 1bd855f5f19c..de41af4276e4 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 0f780322d125..149b65308fa1 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 349f40eebe72..a883c3062de8 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 461e8af034e1..45d6469c52bd 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index bd7782caafe2..994cbed03e97 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 2cd00cf337f0..cea12ffd1526 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index e3de2544fd98..5367245eea72 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index f0dbba245c9b..1ce349910f1a 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index f073091a9bda..a4f838ec4c4b 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 8a1c9d9eff57..39349abe9f79 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 955e77f2a3ba..071676d75734 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index b5e5b52cba3e..2fb9adc597de 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index cb2e46a69059..f9fd4d111618 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 70c4c2138fa7..39cd792f9883 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 2462c20d39aa..ac37ed2b05bc 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index ffd45235ab4c..52b261e78a6b 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index c61ab02f18dc..60888035b3fb 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 49c84db6af64..104908ff298f 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index bc9e1d7a0aad..4488bb7d00b0 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 66a67a99fb29..4f5543a4e5cc 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index bed58c7b4999..981c0675769f 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 7aa0de7c3d4a..8aa79fee6d39 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 822deeb9f1bb..fdc686c72b95 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 35f0d9fbde14..7e48756a14ae 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index ba96ef5bbdab..3f3faa4606b1 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 5123d3ee0627..e80785563a8a 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 25a443e49140..ce1854d1fc52 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index f75cabcd1580..4dcd5c2f7f2d 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index df1a30492b04..0e5b8d4e5919 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 586ff40281db..4559ffc664a9 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index f4519030d5a9..4c5b5bea5188 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 850fb0fc6c97..84d0a297a776 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 96baf100c85b..a77c788955c9 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index f12ab25821fa..bf36ad8e7f28 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index e611deee9dbf..654c64d845fc 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 21bdf305dbd7..182d9666e141 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 363b30779869..9ce5a34f186b 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 60a2cafbb6f0..570ddb42ce3c 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index b3ecd35c6c64..ae625043cd33 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 34797a0318c9..8cd20bd2464d 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 767899928fc8..923c19c2959e 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index dd1754f31aea..207b3114ad24 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 13bec01303ee..8fc993bd75b8 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 1321b1a7dd1b..375fb0dbd753 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 894a2a7f4866..34d2f060f470 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index c176989e222f..d5133889c2f0 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index fec5f980018c..bb5e5e03de09 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 0663b7c139f4..d780aaa8c5da 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 1eb5a390b96d..6a491a11fff3 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 6bd382a7f57a..3010e592b7ae 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 04d1d8e555da..0083f755f844 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index e7815f0d178a..0d30b076af7f 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 94e7c4031af6..c1c19716dbd7 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index c24ff0a82b11..c94099aa008f 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index ad75a3c9fa48..9793daaca77f 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index ee0585cff541..ffec029182fb 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 1e35d67373c6..af1f018ca4ba 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 99c5e564882a..d0978ef19673 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index fb201353c9f7..d3b5abd89dcb 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 662a6d2c8574..f1901eb7324f 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 2be0339919da..e606fb82fc87 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index efd0845bb54c..261ddb4a8576 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 5db64852a13c..95d8a459dd4f 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index afa1d4a524d4..926053b07231 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index cc11139d1433..f01ad7078b78 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 14ff01125f6c..8f7f475a912f 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index e27560500daa..bd1da5fe72ed 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index c6ddcb63b618..1dd1223c2b32 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index e488524f6c35..d16b97b96aad 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index c55a86efb030..f786bdb5dcea 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 699b723d7d9a..621e686bfe28 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 5e6745ab1605..c9dcaec33e27 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 40b2a6b8e410..02c1cf622b55 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 8523792a4892..c6cfaaf27b98 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index fcda2fdc0187..4c1bc2c6bf53 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 0f94a9a89b5d..cf553ab0cdcc 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 754cb953e7c0..2c9ee1ea2fad 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 13fa8c70b2b0..fdf5a1e16d24 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 8a22694b1aa6..7af941e30553 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 435f39efb248..27fd6d06b6d8 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 548c53135447..c92436d5ba7b 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index a64f389b2ada..f9be374b8c2e 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index ae2c4361d0c4..debbe8bd4c92 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index f093374d0e55..3a722b211f3a 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index b53c856e9a8f..eedfbd74ad5b 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 6f976bbc3d93..4c6c8e0e1676 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index a89f6901394b..000992e85c5b 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index f490f9f54cd5..1ebdfd37ef13 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 5cb627964608..508839bd9482 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index d9957a532ee5..74f209ec1d56 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 20106addceba..e4c9bee938a8 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 34dedc48e8a5..10ca59972c48 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 0c402731a38d..59b82819517b 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 5db6ee9a264b..e8a7598321a1 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index e3de3d0aef99..4f813d637417 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 4de38566158a..751440cd5a10 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 52f17a4b4876..6b67d456eaa8 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 1297c1fa0855..9b0814103b88 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 924760489229..eee55de11166 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 2108a1107823..ec3063677a1f 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 8b4c2efa606d..1cb609a1075c 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index d272fe9dc63f..188037cab84b 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index a5d300fe0aea..dc6c9d28b9e7 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 36d60def593e..e9b645c823bc 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 96ed993616b8..33f523dc6f6d 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 668f552c9768..755df160779d 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 3c35973de1fd..ca0636ccd0a0 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index ac394108eafd..38545411c0aa 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 97b8ee67b0ab..57826f2cb8f2 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 385c00112ca0..dbbf3e4c70bb 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 1530a5d49707..3b2372f630ef 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 4430fd909157..07bfe04c8436 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 39e622842bb5..67bd12c6db11 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 23b83ed130e5..600375a0eaa9 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 51dd69d98bc1..e0be6b3750f5 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 9861b9f76eda..ffbd94e4260f 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index c3496ae7a6c1..cbab6f1cf25e 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 4ddb7ae5f61d..93e6da19a6f3 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 448f8ad99bb1..d9ca6ac6953a 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 9ddbacfc0eec..bd66d0ffc23d 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 9ed9f406fe78..470f8990244b 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 122df7b628e8..98b239b78d8a 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index c03320ae539e..e23923509363 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 30a93c4b2ea2..74cf7865e4ad 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index e6f005d33c6b..3f30662b51dd 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index b549fe44bf9e..c882edef7736 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 2010ffcbe480..84316104515f 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 0b99460aebcd..029ca00ecada 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.21-SNAPSHOT + 2.15.21 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index bf4853f43487..9ed740e87de1 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 5c8d117b4c35..4996b9eb20f9 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 41b32aaae707..2bcc4649bd79 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 8797f00f9a1b..254c4505ba87 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index b63b3a9f25c7..50d7fb8cf308 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 85bf90cb99dd..60e327d1eb19 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 4aea05db164f..6431c6ff5a1e 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 282efa52fa50..9b441d50158c 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 51d27872a266..4ef85472dfbd 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 2d85cff89e40..b2f28f107e1d 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 8d814f9b2e55..c87fb2711ed7 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index d4d1c6ee58b3..be990330f3e1 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 80c6f4ff1ba0..abbad6c20b01 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 4f99087a8cf2..fe9b0a175f5b 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 8ca958924000..23aaee0a0928 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index f2c7857c017d..3b20e09ed5ba 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 495f4b8c59b7..0d74e0b2c8f4 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 1638adf2bde4..a0cf85820801 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 1b6a6f39fbd6..3fb083263f7b 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index cfc09f3a025e..677718a9e164 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 0a334993a73d..3a6cd0eb7fa9 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index cd284e5bd295..fc4416fcabac 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 264497386e22..d173accc9dc6 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 4052954c249c..0a88ebd92c47 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index d0a6655bb645..b108861e56a2 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index a66f679063ed..798ba57f3f6d 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 5a7153b85914..c78ff21a1422 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index a703f0d1caa9..94003fd46777 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 67b35ebf0538..e55450ab4c01 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index ff4a67f9c5cd..f0d2b71f20e9 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index cea34825ca44..8a5dbf0c0b95 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 7d3d87bcd746..0c0d7543eff0 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 0bcc96276106..8d64d3859d9c 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index a349a9ef2ba9..1664d62c0bd0 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 07ab46d64610..bcf7b3f14d3b 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 19df683fca11..e07482c0fe52 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index f51991f878e5..ce929d9a6156 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index e562b7479ab2..0b3da480b8ac 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 1e3ee3348912..7e97dd70ec55 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 394be6a56a07..8eeaa7f218af 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 1dd32a891c68..6bc13e1a096b 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 2a03e8a20c22..958035e44979 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index c18a679a3837..df76a8ec5146 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index cce89a4ac049..6875b4596d19 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 2dc2f95ce13e..2f626affbde4 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index adbf959c76f1..d0f9f0a4231a 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 85979dfa62a2..7825e40bbb3a 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 34a346596a65..2d4d48f34280 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index b48c93926bce..6dfc32a53306 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index e9d02ed4764b..346b4547c141 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index ac3d479c8039..87fa216489ed 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index bad22d51cdc6..a25c0edab0df 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index c744a23dfc24..893b9f2a467b 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 7957a4d14bd2..8ddb61c41b07 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 4dd1bc5eaf7d..2431e9e814ce 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 5e7fabbb7d9b..fe7d0827cd69 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index d9f77e9f2d88..a980a36f8d6e 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index efdbcc05c36c..621c39c8b636 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index ec2cacbc8f4b..f136034223db 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 41cd9917bad2..ece5ee87e8f2 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 1532a79799eb..9ab9814e9b76 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 64f399397d8b..446be1185fc2 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 6c5100bd2a6d..a02ab0ccf846 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21-SNAPSHOT + 2.15.21 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 6e01ee42e9cb..34509f4e6bb4 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.15.21-SNAPSHOT + 2.15.21 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 5e5a399f34df..bd7bac24eb75 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.15.21-SNAPSHOT + 2.15.21 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index ba87a2b8b6f6..df51b5ade6b7 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.15.21-SNAPSHOT + 2.15.21 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 8cb45eab1a26..b62a5b1cd025 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.15.21-SNAPSHOT + 2.15.21 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 3c9368c93073..18944e740dab 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.15.21-SNAPSHOT + 2.15.21 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index adcb7f787c8e..5330f589fb2a 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.21-SNAPSHOT + 2.15.21 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 400d1576fc0b..9fdc86f729bb 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.15.21-SNAPSHOT + 2.15.21 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index c5ad54a1f594..aef9c7ad5f6b 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.15.21-SNAPSHOT + 2.15.21 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index d52707704ca5..aea22447e780 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.15.21-SNAPSHOT + 2.15.21 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 1e5270b5068f..4a24a3e5a717 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.15.21-SNAPSHOT + 2.15.21 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 14e31c30c381..bebeb1679379 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.21-SNAPSHOT + 2.15.21 4.0.0 From 73635f34a400f50e812bc8f554a88093c8d98e39 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 4 Nov 2020 20:32:11 +0000 Subject: [PATCH 127/339] Update to next snapshot version: 2.15.22-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 280 files changed, 280 insertions(+), 280 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 6e58445ace1d..288d11ff5da3 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index b6df2e38c7ec..9419a74984fb 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 5c9d97407880..fed90b6ce45c 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.15.21 + 2.15.22-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 2b9d1692162f..126ae488b517 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 3c0eba8d9a0f..ab729fd44b90 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.21 + 2.15.22-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 4ffbcdcfb07d..97733287df9b 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.21 + 2.15.22-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 30a575519cf6..4adcf354dbfe 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.15.21 + 2.15.22-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 3a75cada7118..13ca35fb0b56 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.21 + 2.15.22-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index e088a9ecb4ea..6fc83d37ba25 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.15.21 + 2.15.22-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 30459e8f1d9a..12ee7da543ea 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.21 + 2.15.22-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 4225becb93a8..b33fdf69192e 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 1ec26cd88bbc..21f708365643 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 4c050d07eedc..c1f4f50666ac 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.21 + 2.15.22-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index aba1166fee7f..d5c39ca2639e 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.21 + 2.15.22-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 5dab902039bc..8ad3d5659122 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 46a1e2d1e444..b37242247bb0 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index f02285bebe53..6ed110a223b7 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.21 + 2.15.22-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 1d1f85947d8e..b30dba0103fc 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.15.21 + 2.15.22-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index e9b7008522e6..d9ced8d0bf71 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 5c30bf0cc4e8..cf9610c4a50f 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.15.21 + 2.15.22-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 89ed27127ee6..2c3b9f44b1c0 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.15.21 + 2.15.22-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index fb849ef2a264..e4975d67b6be 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.15.21 + 2.15.22-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 3725b7637256..7e882bd0080b 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 41205eea5598..787515e737a2 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 47ffce9f02c3..d77ef295c8c1 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.21 + 2.15.22-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 48533c5b147a..3476e45d13a1 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.21 + 2.15.22-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 51836805c08f..c10643ffb29f 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.15.21 + 2.15.22-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index 1d586804a11f..ee9bb1d6cb3c 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.15.21 + 2.15.22-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 84629cda7022..af4085075139 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.15.21 + 2.15.22-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index e891a2348978..29bfd5bf98f2 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.15.21 + 2.15.22-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 9c924c3f70b9..af971daa1202 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index f2ea525c889c..f5d2ef506bea 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.15.21 + 2.15.22-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index aba48c25222a..abe2daeaa434 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.15.21 + 2.15.22-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index c542cf683370..ea12a4c2ce87 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.21 + 2.15.22-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 8686bf3bf115..b488d4617bd8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.21 + 2.15.22-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 5b28f9112c86..6374adb46acb 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.21 + 2.15.22-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index d7339c6a33a6..e592f296e28e 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.15.21 + 2.15.22-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 4a935cd6da11..b8b2878df9ed 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.21 + 2.15.22-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 5835285cedb8..25609e06bd81 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index d102bc8b1068..7a8148b8805e 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 5252271952b0..e55393817dfe 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 9580c9fa84ff..6e8c1cfbd9c5 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 911ee4b5a1b8..613783b4b190 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index ec16eb6db675..fdbaec54fee4 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index fb989745b9ce..f84a73e67c30 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 5db545cd2da9..b123db01e925 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 7920f2654528..e6eccee713d8 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 458dd2060567..6f549cd06c55 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 80c431b870b1..5c238f0ee3ec 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 90f4b6fb313c..33e7c4b16a7d 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 004e0cd895b2..0009e1a05487 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 72a35a3484ea..0a478786e3a2 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 5fa687cb065b..dfd59e16d8ae 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 26c1de9e4f5e..05755b27e18f 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 4b582bcc62aa..0d10657cac55 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index eb3e683ea96d..9751e04fdb98 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 6f034c98835d..e5798defb8d9 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 6624549bf5d3..ed4c5b1e6e01 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index c05827d8d90f..69e593b2944e 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index ce41c74819c5..9bb19e19e711 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 4d364f935d5c..7d5dc6fe9011 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 11e7bf22afa5..83afbf8b250f 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index e4f1c91da5e1..37567d9b9b2f 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 378979ba6b60..c26ffb97f28d 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index d866cf7da1f4..b759c849e831 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 48c43e30626b..1ade49c268dc 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index c0f0d6b1c3cb..dbdb9b2f0fde 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 4d51b8ca394d..c7241d3df5c8 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index a70ef500b4e0..545f43fcc70a 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 5d1c9fcfd6f5..f43716106d41 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index fe4cd4c976e5..093dc8e8435a 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index b1c141558898..cac178e1adfa 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 884f97683e2e..eacb26ec54b9 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 0360fa7871cb..62ee9f5ccc43 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 1eceb9d5a106..9cf6df7e09e2 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 18e6dd68c869..cac5b4725f4b 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 6f3e5402c76d..20f6ff2cdc03 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 7812d96c7f02..7c671779ecad 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index de41af4276e4..7bf54809e115 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 149b65308fa1..a84caebd6475 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index a883c3062de8..66fca0245391 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 45d6469c52bd..54b3ba219720 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 994cbed03e97..5848cd91a41c 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index cea12ffd1526..6a6fb0021958 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 5367245eea72..438aaf89acfb 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 1ce349910f1a..b036ad2ebab4 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index a4f838ec4c4b..0a24f7c63ab0 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 39349abe9f79..8a142c4d7157 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 071676d75734..62ed89fd5584 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 2fb9adc597de..c191ebb1b184 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index f9fd4d111618..604a630066c1 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 39cd792f9883..6c6cd3b0dbce 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index ac37ed2b05bc..573a62c05351 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 52b261e78a6b..816ca46fc9e3 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 60888035b3fb..59730c7eae1c 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 104908ff298f..abd7a213ae29 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 4488bb7d00b0..22b04995540c 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 4f5543a4e5cc..8784db1a99a9 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 981c0675769f..4bb40f6f0c73 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 8aa79fee6d39..0a9cb49befd7 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index fdc686c72b95..d44a58e4c160 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 7e48756a14ae..b944cdb3d6db 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 3f3faa4606b1..8703e24b6e1b 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index e80785563a8a..8c2ba962db85 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index ce1854d1fc52..00bb7e891883 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 4dcd5c2f7f2d..2492aee25bb0 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 0e5b8d4e5919..ae508c1baf0d 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 4559ffc664a9..70c18ac6318d 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 4c5b5bea5188..ebe53f186f14 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 84d0a297a776..dbf9b9d0d5e9 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index a77c788955c9..ceb243f3d5c7 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index bf36ad8e7f28..2b4e6eb93d19 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 654c64d845fc..1cb6532dda73 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 182d9666e141..9773fcfa42c2 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 9ce5a34f186b..a87fb0e00239 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 570ddb42ce3c..202b3f45a327 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index ae625043cd33..6b4b88d595b2 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 8cd20bd2464d..95882fd5930a 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 923c19c2959e..cd8b6e97e70a 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 207b3114ad24..e0355e78e075 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 8fc993bd75b8..be224e1c0291 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 375fb0dbd753..348eb1ade006 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 34d2f060f470..8223fe6df939 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index d5133889c2f0..238368bce26c 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index bb5e5e03de09..f10367ea1fb2 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index d780aaa8c5da..21fee6706e81 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 6a491a11fff3..7e2c7f0d30a5 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 3010e592b7ae..4403aadd4f80 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 0083f755f844..cb0a05437dae 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 0d30b076af7f..869e1657b5c3 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index c1c19716dbd7..86de5a7561ff 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index c94099aa008f..d60b6b48bb67 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 9793daaca77f..9b5956bbf42f 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index ffec029182fb..64b5b805983d 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index af1f018ca4ba..ee1fbd2c22c5 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index d0978ef19673..4201b4de5258 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index d3b5abd89dcb..bb968804ab1b 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index f1901eb7324f..7766fda9dd9b 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index e606fb82fc87..d81ad8bd2491 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 261ddb4a8576..e66d8d00c633 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 95d8a459dd4f..3226e56eb572 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 926053b07231..1d95fc859c0e 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index f01ad7078b78..ff54b137aade 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 8f7f475a912f..6bce6a6c7486 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index bd1da5fe72ed..45c26e9da732 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 1dd1223c2b32..a7783e322fb9 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index d16b97b96aad..28ecb535c45e 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index f786bdb5dcea..f3559204385c 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 621e686bfe28..2044734be98a 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index c9dcaec33e27..4c5c41fee401 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 02c1cf622b55..67031fb6d96a 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index c6cfaaf27b98..7cb8cd5d1966 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 4c1bc2c6bf53..2f33b90fe66e 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index cf553ab0cdcc..e42d63aab9a2 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 2c9ee1ea2fad..db090297061b 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index fdf5a1e16d24..a367fadfc3c3 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 7af941e30553..6e93203c1d74 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 27fd6d06b6d8..9608fde6e7b4 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index c92436d5ba7b..3590dc86a4ac 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index f9be374b8c2e..edfe5aa082f2 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index debbe8bd4c92..fe2e2bc285c4 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 3a722b211f3a..bdb849899b57 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index eedfbd74ad5b..ed6b8eefdb6f 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 4c6c8e0e1676..31e78e9f32df 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 000992e85c5b..5eb9bf1a1116 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 1ebdfd37ef13..f32eca45a637 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 508839bd9482..66f1a4487e24 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 74f209ec1d56..6d24ee8de129 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index e4c9bee938a8..9b98d8f90faf 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 10ca59972c48..69b5cf22e9d9 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 59b82819517b..dc6de2f045cc 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index e8a7598321a1..35c51495d5e2 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 4f813d637417..53e19445f196 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 751440cd5a10..b030bbed85b3 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 6b67d456eaa8..a4c1926a92c8 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 9b0814103b88..b3a9e51b41ed 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index eee55de11166..86e1006c62cb 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index ec3063677a1f..efb2fea4db22 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 1cb609a1075c..75d9a9a5a78d 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 188037cab84b..9638486336dc 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index dc6c9d28b9e7..e9cce34638f9 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index e9b645c823bc..86a43cce6d75 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 33f523dc6f6d..6adca09032fb 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 755df160779d..98eb183c3d8e 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index ca0636ccd0a0..1bb487716665 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 38545411c0aa..278edd9e5195 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 57826f2cb8f2..f070171d3090 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index dbbf3e4c70bb..9311633a3acc 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 3b2372f630ef..fbd1f91926e0 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 07bfe04c8436..6c404911cba5 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 67bd12c6db11..003c4357bfb4 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 600375a0eaa9..a58e5886b455 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index e0be6b3750f5..f16a1d3956af 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index ffbd94e4260f..febf1b4e2003 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index cbab6f1cf25e..fe1d3de1becb 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 93e6da19a6f3..689f224b8896 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index d9ca6ac6953a..cb8dd7de6cdd 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index bd66d0ffc23d..de38a0b17822 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 470f8990244b..7d7aef7086da 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 98b239b78d8a..793c7d4e2e07 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index e23923509363..293c0def4303 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 74cf7865e4ad..656d67a3643d 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 3f30662b51dd..3468faa1d4ec 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index c882edef7736..6a4c53865647 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 84316104515f..88b648dcb268 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 029ca00ecada..e4ef13cd21f4 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.21 + 2.15.22-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 9ed740e87de1..3132017a0933 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 4996b9eb20f9..39a1b01f07c7 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 2bcc4649bd79..f6ff6b3c64c9 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 254c4505ba87..61963e4517e7 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 50d7fb8cf308..bd679cfe20ad 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 60e327d1eb19..aaec3ddd00dc 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 6431c6ff5a1e..b846592d96a2 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 9b441d50158c..c25e09382334 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 4ef85472dfbd..fb0f5b34cc93 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index b2f28f107e1d..ba1363efc6e5 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index c87fb2711ed7..31061512f89e 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index be990330f3e1..6435862e41a6 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index abbad6c20b01..d4490cfc17de 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index fe9b0a175f5b..9eaa2516ae2b 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 23aaee0a0928..b2ad16b82ed5 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 3b20e09ed5ba..0d92b12ed67d 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 0d74e0b2c8f4..5f2916fc8f7a 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index a0cf85820801..a9d85fb38541 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 3fb083263f7b..4158299b4c43 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 677718a9e164..a16163aef787 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 3a6cd0eb7fa9..27a2aa24a82f 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index fc4416fcabac..b5186f2df222 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index d173accc9dc6..33e5b210deb2 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 0a88ebd92c47..66c57d7dc14c 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index b108861e56a2..b291ac1b8f04 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 798ba57f3f6d..d5872959e559 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index c78ff21a1422..178a97d43ea7 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 94003fd46777..b8ecd5f7a7ba 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index e55450ab4c01..5914f5ed2a14 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index f0d2b71f20e9..c4df5f04956f 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 8a5dbf0c0b95..5f60a7897662 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 0c0d7543eff0..4b1c9c02d635 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 8d64d3859d9c..a5a27725e87c 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 1664d62c0bd0..d2694523dc35 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index bcf7b3f14d3b..34c2fc09db64 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index e07482c0fe52..82df28408a24 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index ce929d9a6156..bef32f41c060 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 0b3da480b8ac..10b7270be0a3 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 7e97dd70ec55..b35c789db4fb 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 8eeaa7f218af..9cbb1f4dc694 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 6bc13e1a096b..3b791c939125 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 958035e44979..7cd92dd4dcc7 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index df76a8ec5146..85793356c864 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 6875b4596d19..70999e561fee 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 2f626affbde4..5063669a606d 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index d0f9f0a4231a..6d616ee07d52 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 7825e40bbb3a..1def477e2bdc 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 2d4d48f34280..dc943737a051 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 6dfc32a53306..008d90145745 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 346b4547c141..9c112cd076cf 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 87fa216489ed..0b08e5fecbdd 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index a25c0edab0df..1002ebde2deb 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 893b9f2a467b..3271c66f5b7b 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 8ddb61c41b07..abc2e3f5edb1 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 2431e9e814ce..500b3f3672f6 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index fe7d0827cd69..02b7ed8a6c65 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index a980a36f8d6e..383dba994983 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 621c39c8b636..b2aa5e0ef042 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index f136034223db..f93adc101c97 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index ece5ee87e8f2..07f2deca1e19 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 9ab9814e9b76..c78cb3e53682 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 446be1185fc2..f8328d4f4bc2 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index a02ab0ccf846..70043c0ed5c3 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.21 + 2.15.22-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 34509f4e6bb4..bd05bdb7f983 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.15.21 + 2.15.22-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index bd7bac24eb75..faf8919a82d2 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.15.21 + 2.15.22-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index df51b5ade6b7..62d6bd65ce43 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.15.21 + 2.15.22-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index b62a5b1cd025..985b00135525 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.15.21 + 2.15.22-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 18944e740dab..139f1b99c0d4 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.15.21 + 2.15.22-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 5330f589fb2a..863c14927a8c 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.21 + 2.15.22-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 9fdc86f729bb..aa77cf02dc2d 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.15.21 + 2.15.22-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index aef9c7ad5f6b..f5c4ce31f4fb 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.15.21 + 2.15.22-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index aea22447e780..238e2dc2bf81 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.15.21 + 2.15.22-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 4a24a3e5a717..57107d2e1218 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.15.21 + 2.15.22-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index bebeb1679379..48ad48870ecb 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.21 + 2.15.22-SNAPSHOT 4.0.0 From 126e1449919652dbaafc5d84a1655631ffa47cdf Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 5 Nov 2020 19:15:56 +0000 Subject: [PATCH 128/339] Amazon EventBridge Update: With this release, customers can now reprocess past events by storing the events published on event bus in an encrypted archive. --- .../feature-AmazonEventBridge-6ae9224.json | 6 + .../codegen-resources/service-2.json | 718 +++++++++++++++++- 2 files changed, 722 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AmazonEventBridge-6ae9224.json diff --git a/.changes/next-release/feature-AmazonEventBridge-6ae9224.json b/.changes/next-release/feature-AmazonEventBridge-6ae9224.json new file mode 100644 index 000000000000..cd96235622f8 --- /dev/null +++ b/.changes/next-release/feature-AmazonEventBridge-6ae9224.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon EventBridge", + "contributor": "", + "description": "With this release, customers can now reprocess past events by storing the events published on event bus in an encrypted archive." +} diff --git a/services/eventbridge/src/main/resources/codegen-resources/service-2.json b/services/eventbridge/src/main/resources/codegen-resources/service-2.json index a70cd1c482ba..34325f33f8a5 100644 --- a/services/eventbridge/src/main/resources/codegen-resources/service-2.json +++ b/services/eventbridge/src/main/resources/codegen-resources/service-2.json @@ -28,6 +28,40 @@ ], "documentation":"

Activates a partner event source that has been deactivated. Once activated, your matching event bus will start receiving events from the event source.

" }, + "CancelReplay":{ + "name":"CancelReplay", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CancelReplayRequest"}, + "output":{"shape":"CancelReplayResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ConcurrentModificationException"}, + {"shape":"IllegalStatusException"}, + {"shape":"InternalException"} + ], + "documentation":"

Cancels the specified replay.

" + }, + "CreateArchive":{ + "name":"CreateArchive", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateArchiveRequest"}, + "output":{"shape":"CreateArchiveResponse"}, + "errors":[ + {"shape":"ConcurrentModificationException"}, + {"shape":"ResourceAlreadyExistsException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalException"}, + {"shape":"LimitExceededException"}, + {"shape":"InvalidEventPatternException"} + ], + "documentation":"

Creates an archive of events with the specified settings. When you create an archive, incoming events might not immediately start being sent to the archive. Allow a short period of time for changes to take effect.

" + }, "CreateEventBus":{ "name":"CreateEventBus", "http":{ @@ -80,6 +114,21 @@ ], "documentation":"

You can use this operation to temporarily stop receiving events from the specified partner event source. The matching event bus is not deleted.

When you deactivate a partner event source, the source goes into PENDING state. If it remains in PENDING state for more than two weeks, it is deleted.

To activate a deactivated partner event source, use ActivateEventSource.

" }, + "DeleteArchive":{ + "name":"DeleteArchive", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteArchiveRequest"}, + "output":{"shape":"DeleteArchiveResponse"}, + "errors":[ + {"shape":"ConcurrentModificationException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalException"} + ], + "documentation":"

Deletes the specified archive.

" + }, "DeleteEventBus":{ "name":"DeleteEventBus", "http":{ @@ -122,6 +171,21 @@ ], "documentation":"

Deletes the specified rule.

Before you can delete the rule, you must remove all targets, using RemoveTargets.

When you delete a rule, incoming events might continue to match to the deleted rule. Allow a short period of time for changes to take effect.

Managed rules are rules created and managed by another AWS service on your behalf. These rules are created by those other AWS services to support functionality in those services. You can delete these rules using the Force option, but you should do so only if you are sure the other service is not still using that rule.

" }, + "DescribeArchive":{ + "name":"DescribeArchive", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeArchiveRequest"}, + "output":{"shape":"DescribeArchiveResponse"}, + "errors":[ + {"shape":"ResourceAlreadyExistsException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalException"} + ], + "documentation":"

Retrieves details about an archive.

" + }, "DescribeEventBus":{ "name":"DescribeEventBus", "http":{ @@ -166,6 +230,20 @@ ], "documentation":"

An SaaS partner can use this operation to list details about a partner event source that they have created. AWS customers do not use this operation. Instead, AWS customers can use DescribeEventSource to see details about a partner event source that is shared with them.

" }, + "DescribeReplay":{ + "name":"DescribeReplay", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeReplayRequest"}, + "output":{"shape":"DescribeReplayResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalException"} + ], + "documentation":"

Retrieves details about a replay. Use DescribeReplay to determine the progress of a running replay. A replay processes events to replay based on the time in the event, and replays them using 1 minute intervals. If you use StartReplay and specify an EventStartTime and an EventEndTime that covers a 20 minute time range, the events are replayed from the first minute of that 20 minute range first. Then the events from the second minute are replayed. You can use DescribeReplay to determine the progress of a replay. The value returned for EventLastReplayedTime indicates the time within the specified time range associated with the last event replayed.

" + }, "DescribeRule":{ "name":"DescribeRule", "http":{ @@ -210,6 +288,20 @@ ], "documentation":"

Enables the specified rule. If the rule does not exist, the operation fails.

When you enable a rule, incoming events might not immediately start matching to a newly enabled rule. Allow a short period of time for changes to take effect.

" }, + "ListArchives":{ + "name":"ListArchives", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListArchivesRequest"}, + "output":{"shape":"ListArchivesResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalException"} + ], + "documentation":"

Lists your archives. You can either list all the archives or you can provide a prefix to match to the archive names. Filter parameters are exclusive.

" + }, "ListEventBuses":{ "name":"ListEventBuses", "http":{ @@ -266,6 +358,19 @@ ], "documentation":"

An SaaS partner can use this operation to list all the partner event source names that they have created. This operation is not used by AWS customers.

" }, + "ListReplays":{ + "name":"ListReplays", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListReplaysRequest"}, + "output":{"shape":"ListReplaysResponse"}, + "errors":[ + {"shape":"InternalException"} + ], + "documentation":"

Lists your replays. You can either list all the replays or you can provide a prefix to match to the replay names. Filter parameters are exclusive.

" + }, "ListRuleNamesByTarget":{ "name":"ListRuleNamesByTarget", "http":{ @@ -429,6 +534,23 @@ ], "documentation":"

Removes the specified targets from the specified rule. When the rule is triggered, those targets are no longer be invoked.

When you remove a target, when the associated rule triggers, removed targets might continue to be invoked. Allow a short period of time for changes to take effect.

This action can partially fail if too many requests are made at the same time. If that happens, FailedEntryCount is non-zero in the response and each entry in FailedEntries provides the ID of the failed target and the error code.

" }, + "StartReplay":{ + "name":"StartReplay", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"StartReplayRequest"}, + "output":{"shape":"StartReplayResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ResourceAlreadyExistsException"}, + {"shape":"InvalidEventPatternException"}, + {"shape":"LimitExceededException"}, + {"shape":"InternalException"} + ], + "documentation":"

Starts the specified replay. Events are not necessarily replayed in the exact same order that they were added to the archive. A replay processes events to replay based on the time in the event, and replays them using 1 minute intervals. If you specify an EventStartTime and an EventEndTime that covers a 20 minute time range, the events are replayed from the first minute of that 20 minute range first. Then the events from the second minute are replayed. You can use DescribeReplay to determine the progress of a replay. The value returned for EventLastReplayedTime indicates the time within the specified time range associated with the last event replayed.

" + }, "TagResource":{ "name":"TagResource", "http":{ @@ -474,6 +596,23 @@ {"shape":"ManagedRuleException"} ], "documentation":"

Removes one or more tags from the specified EventBridge resource. In Amazon EventBridge (CloudWatch Events, rules and event buses can be tagged.

" + }, + "UpdateArchive":{ + "name":"UpdateArchive", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateArchiveRequest"}, + "output":{"shape":"UpdateArchiveResponse"}, + "errors":[ + {"shape":"ConcurrentModificationException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalException"}, + {"shape":"LimitExceededException"}, + {"shape":"InvalidEventPatternException"} + ], + "documentation":"

Updates the specified archive.

" } }, "shapes":{ @@ -499,6 +638,81 @@ } } }, + "Archive":{ + "type":"structure", + "members":{ + "ArchiveName":{ + "shape":"ArchiveName", + "documentation":"

The name of the archive.

" + }, + "EventSourceArn":{ + "shape":"Arn", + "documentation":"

The ARN of the event bus associated with the archive. Only events from this event bus are sent to the archive.

" + }, + "State":{ + "shape":"ArchiveState", + "documentation":"

The current state of the archive.

" + }, + "StateReason":{ + "shape":"ArchiveStateReason", + "documentation":"

A description for the reason that the archive is in the current state.

" + }, + "RetentionDays":{ + "shape":"RetentionDays", + "documentation":"

The number of days to retain events in the archive before they are deleted.

" + }, + "SizeBytes":{ + "shape":"Long", + "documentation":"

The size of the archive, in bytes.

" + }, + "EventCount":{ + "shape":"Long", + "documentation":"

The number of events in the archive.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

The time stamp for the time that the archive was created.

" + } + }, + "documentation":"

An Archive object that contains details about an archive.

" + }, + "ArchiveArn":{ + "type":"string", + "max":1600, + "min":1, + "pattern":"^arn:aws([a-z]|\\-)*:events:([a-z]|\\d|\\-)*:([0-9]{12})?:.+\\/.+$" + }, + "ArchiveDescription":{ + "type":"string", + "max":512, + "pattern":".*" + }, + "ArchiveName":{ + "type":"string", + "max":48, + "min":1, + "pattern":"[\\.\\-_A-Za-z0-9]+" + }, + "ArchiveResponseList":{ + "type":"list", + "member":{"shape":"Archive"} + }, + "ArchiveState":{ + "type":"string", + "enum":[ + "ENABLED", + "DISABLED", + "CREATING", + "UPDATING", + "CREATE_FAILED", + "UPDATE_FAILED" + ] + }, + "ArchiveStateReason":{ + "type":"string", + "max":512, + "pattern":".*" + }, "Arn":{ "type":"string", "max":1600, @@ -577,11 +791,38 @@ "documentation":"

The retry strategy to use for failed jobs, if the target is an AWS Batch job. If you specify a retry strategy here, it overrides the retry strategy defined in the job definition.

" }, "Boolean":{"type":"boolean"}, + "CancelReplayRequest":{ + "type":"structure", + "required":["ReplayName"], + "members":{ + "ReplayName":{ + "shape":"ReplayName", + "documentation":"

The name of the replay to cancel.

" + } + } + }, + "CancelReplayResponse":{ + "type":"structure", + "members":{ + "ReplayArn":{ + "shape":"ReplayArn", + "documentation":"

The ARN of the replay to cancel.

" + }, + "State":{ + "shape":"ReplayState", + "documentation":"

The current state of the replay.

" + }, + "StateReason":{ + "shape":"ReplayStateReason", + "documentation":"

The reason that the replay is in the current state.

" + } + } + }, "ConcurrentModificationException":{ "type":"structure", "members":{ }, - "documentation":"

There is concurrent modification on a rule or target.

", + "documentation":"

There is concurrent modification on a rule, target, archive, or replay.

", "exception":true }, "Condition":{ @@ -607,6 +848,56 @@ }, "documentation":"

A JSON string which you can use to limit the event bus permissions you are granting to only accounts that fulfill the condition. Currently, the only supported condition is membership in a certain AWS organization. The string must contain Type, Key, and Value fields. The Value field specifies the ID of the AWS organization. Following is an example value for Condition:

'{\"Type\" : \"StringEquals\", \"Key\": \"aws:PrincipalOrgID\", \"Value\": \"o-1234567890\"}'

" }, + "CreateArchiveRequest":{ + "type":"structure", + "required":[ + "ArchiveName", + "EventSourceArn" + ], + "members":{ + "ArchiveName":{ + "shape":"ArchiveName", + "documentation":"

The name for the archive to create.

" + }, + "EventSourceArn":{ + "shape":"Arn", + "documentation":"

The ARN of the event source associated with the archive.

" + }, + "Description":{ + "shape":"ArchiveDescription", + "documentation":"

A description for the archive.

" + }, + "EventPattern":{ + "shape":"EventPattern", + "documentation":"

An event pattern to use to filter events sent to the archive.

" + }, + "RetentionDays":{ + "shape":"RetentionDays", + "documentation":"

The number of days to retain events for. Default value is 0. If set to 0, events are retained indefinitely

" + } + } + }, + "CreateArchiveResponse":{ + "type":"structure", + "members":{ + "ArchiveArn":{ + "shape":"ArchiveArn", + "documentation":"

The ARN of the archive that was created.

" + }, + "State":{ + "shape":"ArchiveState", + "documentation":"

The state of the archive that was created.

" + }, + "StateReason":{ + "shape":"ArchiveStateReason", + "documentation":"

The reason that the archive is in the state.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

The time at which the archive was created.

" + } + } + }, "CreateEventBusRequest":{ "type":"structure", "required":["Name"], @@ -692,6 +983,21 @@ }, "documentation":"

A DeadLetterConfig object that contains information about a dead-letter queue configuration.

" }, + "DeleteArchiveRequest":{ + "type":"structure", + "required":["ArchiveName"], + "members":{ + "ArchiveName":{ + "shape":"ArchiveName", + "documentation":"

The name of the archive to delete.

" + } + } + }, + "DeleteArchiveResponse":{ + "type":"structure", + "members":{ + } + }, "DeleteEventBusRequest":{ "type":"structure", "required":["Name"], @@ -737,6 +1043,65 @@ } } }, + "DescribeArchiveRequest":{ + "type":"structure", + "required":["ArchiveName"], + "members":{ + "ArchiveName":{ + "shape":"ArchiveName", + "documentation":"

The name of the archive to retrieve.

" + } + } + }, + "DescribeArchiveResponse":{ + "type":"structure", + "members":{ + "ArchiveArn":{ + "shape":"ArchiveArn", + "documentation":"

The ARN of the archive.

" + }, + "ArchiveName":{ + "shape":"ArchiveName", + "documentation":"

The name of the archive.

" + }, + "EventSourceArn":{ + "shape":"Arn", + "documentation":"

The ARN of the event source associated with the archive.

" + }, + "Description":{ + "shape":"ArchiveDescription", + "documentation":"

The description of the archive.

" + }, + "EventPattern":{ + "shape":"EventPattern", + "documentation":"

The event pattern used to filter events sent to the archive.

" + }, + "State":{ + "shape":"ArchiveState", + "documentation":"

The state of the archive.

" + }, + "StateReason":{ + "shape":"ArchiveStateReason", + "documentation":"

The reason that the archive is in the state.

" + }, + "RetentionDays":{ + "shape":"RetentionDays", + "documentation":"

The number of days to retain events for in the archive.

" + }, + "SizeBytes":{ + "shape":"Long", + "documentation":"

The size of the archive in bytes.

" + }, + "EventCount":{ + "shape":"Long", + "documentation":"

The number of events in the archive.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

The time at which the archive was created.

" + } + } + }, "DescribeEventBusRequest":{ "type":"structure", "members":{ @@ -825,6 +1190,69 @@ } } }, + "DescribeReplayRequest":{ + "type":"structure", + "required":["ReplayName"], + "members":{ + "ReplayName":{ + "shape":"ReplayName", + "documentation":"

The name of the replay to retrieve.

" + } + } + }, + "DescribeReplayResponse":{ + "type":"structure", + "members":{ + "ReplayName":{ + "shape":"ReplayName", + "documentation":"

The name of the replay.

" + }, + "ReplayArn":{ + "shape":"ReplayArn", + "documentation":"

The ARN of the replay.

" + }, + "Description":{ + "shape":"ReplayDescription", + "documentation":"

The description of the replay.

" + }, + "State":{ + "shape":"ReplayState", + "documentation":"

The current state of the replay.

" + }, + "StateReason":{ + "shape":"ReplayStateReason", + "documentation":"

The reason that the replay is in the current state.

" + }, + "EventSourceArn":{ + "shape":"Arn", + "documentation":"

The ARN of the archive events were replayed from.

" + }, + "Destination":{ + "shape":"ReplayDestination", + "documentation":"

A ReplayDestination object that contains details about the replay.

" + }, + "EventStartTime":{ + "shape":"Timestamp", + "documentation":"

The time stamp of the first event that was last replayed from the archive.

" + }, + "EventEndTime":{ + "shape":"Timestamp", + "documentation":"

The time stamp for the last event that was replayed from the archive.

" + }, + "EventLastReplayedTime":{ + "shape":"Timestamp", + "documentation":"

The time that the event was last replayed.

" + }, + "ReplayStartTime":{ + "shape":"Timestamp", + "documentation":"

A time stamp for the time that the replay started.

" + }, + "ReplayEndTime":{ + "shape":"Timestamp", + "documentation":"

A time stamp for the time that the replay stopped.

" + } + } + }, "DescribeRuleRequest":{ "type":"structure", "required":["Name"], @@ -1064,6 +1492,13 @@ }, "documentation":"

These are custom parameter to be used when the target is an API Gateway REST APIs.

" }, + "IllegalStatusException":{ + "type":"structure", + "members":{ + }, + "documentation":"

An error occurred because a replay can be canceled only when the state is Running or Starting.

", + "exception":true + }, "InputTransformer":{ "type":"structure", "required":["InputTemplate"], @@ -1130,7 +1565,7 @@ "type":"structure", "members":{ }, - "documentation":"

You tried to create more rules or add more targets to a rule than is allowed.

", + "documentation":"

The request failed because it attempted to create resource beyond the allowed service quota.

", "exception":true }, "LimitMax100":{ @@ -1142,6 +1577,44 @@ "type":"integer", "min":1 }, + "ListArchivesRequest":{ + "type":"structure", + "members":{ + "NamePrefix":{ + "shape":"ArchiveName", + "documentation":"

A name prefix to filter the archives returned. Only archives with name that match the prefix are returned.

" + }, + "EventSourceArn":{ + "shape":"Arn", + "documentation":"

The ARN of the event source associated with the archive.

" + }, + "State":{ + "shape":"ArchiveState", + "documentation":"

The state of the archive.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token returned by a previous call to retrieve the next set of results.

" + }, + "Limit":{ + "shape":"LimitMax100", + "documentation":"

The maximum number of results to return.

" + } + } + }, + "ListArchivesResponse":{ + "type":"structure", + "members":{ + "Archives":{ + "shape":"ArchiveResponseList", + "documentation":"

An array of Archive objects that include details about an archive.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token returned by a previous call to retrieve the next set of results.

" + } + } + }, "ListEventBusesRequest":{ "type":"structure", "members":{ @@ -1264,6 +1737,44 @@ } } }, + "ListReplaysRequest":{ + "type":"structure", + "members":{ + "NamePrefix":{ + "shape":"ReplayName", + "documentation":"

A name prefix to filter the archives returned. Only archives with name that match the prefix are returned.

" + }, + "State":{ + "shape":"ReplayState", + "documentation":"

The state of the replay.

" + }, + "EventSourceArn":{ + "shape":"Arn", + "documentation":"

The ARN of the event source associated with the replay.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token returned by a previous call to retrieve the next set of results.

" + }, + "Limit":{ + "shape":"LimitMax100", + "documentation":"

The maximum number of replays to retrieve.

" + } + } + }, + "ListReplaysResponse":{ + "type":"structure", + "members":{ + "Replays":{ + "shape":"ReplayList", + "documentation":"

An array of Replay objects that contain information about the replay.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token returned by a previous call to retrieve the next set of results.

" + } + } + }, "ListRuleNamesByTargetRequest":{ "type":"structure", "required":["TargetArn"], @@ -1387,6 +1898,7 @@ } } }, + "Long":{"type":"long"}, "ManagedBy":{ "type":"string", "max":128, @@ -1929,6 +2441,104 @@ "type":"list", "member":{"shape":"RemoveTargetsResultEntry"} }, + "Replay":{ + "type":"structure", + "members":{ + "ReplayName":{ + "shape":"ReplayName", + "documentation":"

The name of the replay.

" + }, + "EventSourceArn":{ + "shape":"Arn", + "documentation":"

The ARN of the archive to replay event from.

" + }, + "State":{ + "shape":"ReplayState", + "documentation":"

The current state of the replay.

" + }, + "StateReason":{ + "shape":"ReplayStateReason", + "documentation":"

A description of why the replay is in the current state.

" + }, + "EventStartTime":{ + "shape":"Timestamp", + "documentation":"

A time stamp for the time to start replaying events. This is determined by the time in the event as described in Time.

" + }, + "EventEndTime":{ + "shape":"Timestamp", + "documentation":"

A time stamp for the time to start replaying events. Any event with a creation time prior to the EventEndTime specified is replayed.

" + }, + "EventLastReplayedTime":{ + "shape":"Timestamp", + "documentation":"

A time stamp for the time that the last event was replayed.

" + }, + "ReplayStartTime":{ + "shape":"Timestamp", + "documentation":"

A time stamp for the time that the replay started.

" + }, + "ReplayEndTime":{ + "shape":"Timestamp", + "documentation":"

A time stamp for the time that the replay completed.

" + } + }, + "documentation":"

A Replay object that contains details about a replay.

" + }, + "ReplayArn":{ + "type":"string", + "max":1600, + "min":1, + "pattern":"^arn:aws([a-z]|\\-)*:events:([a-z]|\\d|\\-)*:([0-9]{12})?:.+\\/[\\.\\-_A-Za-z0-9]+$" + }, + "ReplayDescription":{ + "type":"string", + "max":512, + "pattern":".*" + }, + "ReplayDestination":{ + "type":"structure", + "required":["Arn"], + "members":{ + "Arn":{ + "shape":"Arn", + "documentation":"

The ARN of the event bus to replay event to. You can replay events only to the event bus specified to create the archive.

" + }, + "FilterArns":{ + "shape":"ReplayDestinationFilters", + "documentation":"

A list of ARNs for rules to replay events to.

" + } + }, + "documentation":"

A ReplayDestination object that contains details about a replay.

" + }, + "ReplayDestinationFilters":{ + "type":"list", + "member":{"shape":"Arn"} + }, + "ReplayList":{ + "type":"list", + "member":{"shape":"Replay"} + }, + "ReplayName":{ + "type":"string", + "max":64, + "min":1, + "pattern":"[\\.\\-_A-Za-z0-9]+" + }, + "ReplayState":{ + "type":"string", + "enum":[ + "STARTING", + "RUNNING", + "CANCELLING", + "COMPLETED", + "CANCELLED", + "FAILED" + ] + }, + "ReplayStateReason":{ + "type":"string", + "max":512, + "pattern":".*" + }, "ResourceAlreadyExistsException":{ "type":"structure", "members":{ @@ -1948,6 +2558,10 @@ "documentation":"

An entity that you specified does not exist.

", "exception":true }, + "RetentionDays":{ + "type":"integer", + "min":0 + }, "RetryPolicy":{ "type":"structure", "members":{ @@ -2110,6 +2724,63 @@ }, "documentation":"

This structure includes the custom parameter to be used when the target is an SQS FIFO queue.

" }, + "StartReplayRequest":{ + "type":"structure", + "required":[ + "ReplayName", + "EventSourceArn", + "EventStartTime", + "EventEndTime", + "Destination" + ], + "members":{ + "ReplayName":{ + "shape":"ReplayName", + "documentation":"

The name of the replay to start.

" + }, + "Description":{ + "shape":"ReplayDescription", + "documentation":"

A description for the replay to start.

" + }, + "EventSourceArn":{ + "shape":"Arn", + "documentation":"

The ARN of the archive to replay events from.

" + }, + "EventStartTime":{ + "shape":"Timestamp", + "documentation":"

A time stamp for the time to start replaying events. Only events that occurred between the EventStartTime and EventEndTime are replayed.

" + }, + "EventEndTime":{ + "shape":"Timestamp", + "documentation":"

A time stamp for the time to stop replaying events. Only events that occurred between the EventStartTime and EventEndTime are replayed.

" + }, + "Destination":{ + "shape":"ReplayDestination", + "documentation":"

A ReplayDestination object that includes details about the destination for the replay.

" + } + } + }, + "StartReplayResponse":{ + "type":"structure", + "members":{ + "ReplayArn":{ + "shape":"ReplayArn", + "documentation":"

The ARN of the replay.

" + }, + "State":{ + "shape":"ReplayState", + "documentation":"

The state of the replay.

" + }, + "StateReason":{ + "shape":"ReplayStateReason", + "documentation":"

The reason that the replay is in the state.

" + }, + "ReplayStartTime":{ + "shape":"Timestamp", + "documentation":"

The time at which the replay started.

" + } + } + }, "StatementId":{ "type":"string", "max":64, @@ -2348,6 +3019,49 @@ "type":"structure", "members":{ } + }, + "UpdateArchiveRequest":{ + "type":"structure", + "required":["ArchiveName"], + "members":{ + "ArchiveName":{ + "shape":"ArchiveName", + "documentation":"

The name of the archive to update.

" + }, + "Description":{ + "shape":"ArchiveDescription", + "documentation":"

The description for the archive.

" + }, + "EventPattern":{ + "shape":"EventPattern", + "documentation":"

The event pattern to use to filter events sent to the archive.

" + }, + "RetentionDays":{ + "shape":"RetentionDays", + "documentation":"

The number of days to retain events in the archive.

" + } + } + }, + "UpdateArchiveResponse":{ + "type":"structure", + "members":{ + "ArchiveArn":{ + "shape":"ArchiveArn", + "documentation":"

The ARN of the archive.

" + }, + "State":{ + "shape":"ArchiveState", + "documentation":"

The state of the archive.

" + }, + "StateReason":{ + "shape":"ArchiveStateReason", + "documentation":"

The reason that the archive is in the current state.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

The time at which the archive was updated.

" + } + } } }, "documentation":"

Amazon EventBridge helps you to respond to state changes in your AWS resources. When your resources change state, they automatically send events into an event stream. You can create rules that match selected events in the stream and route them to targets to take action. You can also use rules to take action on a predetermined schedule. For example, you can configure rules to:

  • Automatically invoke an AWS Lambda function to update DNS entries when an event notifies you that Amazon EC2 instance enters the running state.

  • Direct specific API records from AWS CloudTrail to an Amazon Kinesis data stream for detailed analysis of potential security or availability risks.

  • Periodically invoke a built-in target to create a snapshot of an Amazon EBS volume.

For more information about the features of Amazon EventBridge, see the Amazon EventBridge User Guide.

" From 393127f88b58a90bc2613035cdaba186c11918e9 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 5 Nov 2020 19:15:56 +0000 Subject: [PATCH 129/339] AWSKendraFrontendService Update: Amazon Kendra now supports providing user context in your query requests, Tokens can be JSON or JWT format. This release also introduces support for Confluence cloud datasources. --- ...ture-AWSKendraFrontendService-e9be93d.json | 6 + .../codegen-resources/service-2.json | 169 +++++++++++++++++- 2 files changed, 173 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AWSKendraFrontendService-e9be93d.json diff --git a/.changes/next-release/feature-AWSKendraFrontendService-e9be93d.json b/.changes/next-release/feature-AWSKendraFrontendService-e9be93d.json new file mode 100644 index 000000000000..54c1ee1fda75 --- /dev/null +++ b/.changes/next-release/feature-AWSKendraFrontendService-e9be93d.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWSKendraFrontendService", + "contributor": "", + "description": "Amazon Kendra now supports providing user context in your query requests, Tokens can be JSON or JWT format. This release also introduces support for Confluence cloud datasources." +} diff --git a/services/kendra/src/main/resources/codegen-resources/service-2.json b/services/kendra/src/main/resources/codegen-resources/service-2.json index d86cd3af01ff..99f0a4dbb1b8 100644 --- a/services/kendra/src/main/resources/codegen-resources/service-2.json +++ b/services/kendra/src/main/resources/codegen-resources/service-2.json @@ -690,6 +690,12 @@ "max":5, "min":1 }, + "ClaimRegex":{ + "type":"string", + "max":100, + "min":1, + "pattern":"^\\P{C}*$" + }, "ClickFeedback":{ "type":"structure", "required":[ @@ -878,7 +884,7 @@ }, "SecretArn":{ "shape":"SecretArn", - "documentation":"

The Amazon Resource Name (ARN) of an AWS Secrets Manager secret that contains the key/value pairs required to connect to your Confluence server. The secret must contain a JSON structure with the following keys:

  • username - The user name of a user with administrative privileges for the Confluence server.

  • password - The password associated with the user logging in to the Confluence server.

" + "documentation":"

The Amazon Resource Name (ARN) of an AWS Secrets Manager secret that contains the key/value pairs required to connect to your Confluence server. The secret must contain a JSON structure with the following keys:

  • username - The user name or email address of a user with administrative privileges for the Confluence server.

  • password - The password associated with the user logging in to the Confluence server.

" }, "Version":{ "shape":"ConfluenceVersion", @@ -1038,7 +1044,10 @@ }, "ConfluenceVersion":{ "type":"string", - "enum":["SERVER"] + "enum":[ + "CLOUD", + "SERVER" + ] }, "ConnectionConfiguration":{ "type":"structure", @@ -1228,6 +1237,14 @@ "Tags":{ "shape":"TagList", "documentation":"

A list of key-value pairs that identify the index. You can use the tags to identify and organize your resources and to control access to resources.

" + }, + "UserTokenConfigurations":{ + "shape":"UserTokenConfigurationList", + "documentation":"

The user token configuration.

" + }, + "UserContextPolicy":{ + "shape":"UserContextPolicy", + "documentation":"

The user context policy.

ATTRIBUTE_FILTER

All indexed content is searchable and displayable for all users. If there is an access control list, it is ignored. You can filter on user and group attributes.

USER_TOKEN

Enables SSO and token-based user access control. All documents with no access control and all documents accessible to the user will be searchable and displayable.

" } } }, @@ -1814,6 +1831,14 @@ "CapacityUnits":{ "shape":"CapacityUnitsConfiguration", "documentation":"

For enterprise edtion indexes, you can choose to use additional capacity to meet the needs of your application. This contains the capacity units used for the index. A 0 for the query capacity or the storage capacity indicates that the index is using the default capacity for the index.

" + }, + "UserTokenConfigurations":{ + "shape":"UserTokenConfigurationList", + "documentation":"

The user token configuration for the Amazon Kendra index.

" + }, + "UserContextPolicy":{ + "shape":"UserContextPolicy", + "documentation":"

The user context policy for the Amazon Kendra index.

" } } }, @@ -2142,6 +2167,12 @@ "type":"list", "member":{"shape":"FaqSummary"} }, + "GroupAttributeField":{ + "type":"string", + "max":100, + "min":1, + "pattern":"^\\P{C}*$" + }, "Highlight":{ "type":"structure", "required":[ @@ -2288,6 +2319,72 @@ "exception":true, "fault":true }, + "Issuer":{ + "type":"string", + "max":65, + "min":1, + "pattern":"^\\P{C}*$" + }, + "JsonTokenTypeConfiguration":{ + "type":"structure", + "required":[ + "UserNameAttributeField", + "GroupAttributeField" + ], + "members":{ + "UserNameAttributeField":{ + "shape":"String", + "documentation":"

The user name attribute field.

" + }, + "GroupAttributeField":{ + "shape":"String", + "documentation":"

The group attribute field.

" + } + }, + "documentation":"

Configuration information for the JSON token type.

" + }, + "JwtTokenTypeConfiguration":{ + "type":"structure", + "required":["KeyLocation"], + "members":{ + "KeyLocation":{ + "shape":"KeyLocation", + "documentation":"

The location of the key.

" + }, + "URL":{ + "shape":"Url", + "documentation":"

The signing key URL.

" + }, + "SecretManagerArn":{ + "shape":"RoleArn", + "documentation":"

The Amazon Resource Name (arn) of the secret.

" + }, + "UserNameAttributeField":{ + "shape":"UserNameAttributeField", + "documentation":"

The user name attribute field.

" + }, + "GroupAttributeField":{ + "shape":"GroupAttributeField", + "documentation":"

The group attribute field.

" + }, + "Issuer":{ + "shape":"Issuer", + "documentation":"

The issuer of the token.

" + }, + "ClaimRegex":{ + "shape":"ClaimRegex", + "documentation":"

The regular expression that identifies the claim.

" + } + }, + "documentation":"

Configuration information for the JWT token type.

" + }, + "KeyLocation":{ + "type":"string", + "enum":[ + "URL", + "SECRET_MANAGER" + ] + }, "KmsKeyId":{ "type":"string", "max":2048, @@ -2508,6 +2605,10 @@ "FieldMappings":{ "shape":"DataSourceToIndexFieldMappingList", "documentation":"

A list of DataSourceToIndexFieldMapping objects that map Microsoft OneDrive fields to custom fields in the Amazon Kendra index. You must first create the index fields before you map OneDrive fields.

" + }, + "DisableLocalGroups":{ + "shape":"Boolean", + "documentation":"

A Boolean value that specifies whether local groups are disabled (True) or enabled (False).

" } }, "documentation":"

Provides configuration information for data sources that connect to OneDrive.

" @@ -2643,6 +2744,10 @@ "SortingConfiguration":{ "shape":"SortingConfiguration", "documentation":"

Provides information that determines how the results of the query are sorted. You can set the field that Amazon Kendra should sort the results on, and specify whether the results should be sorted in ascending or descending order. In the case of ties in sorting the results, the results are sorted by relevance.

If you don't provide sorting configuration, the results are sorted by the relevance that Amazon Kendra determines for the result.

" + }, + "UserContext":{ + "shape":"UserContext", + "documentation":"

The user context token.

" } } }, @@ -3352,6 +3457,10 @@ "DocumentTitleFieldName":{ "shape":"DataSourceFieldName", "documentation":"

The Microsoft SharePoint attribute field that contains the title of the document.

" + }, + "DisableLocalGroups":{ + "shape":"Boolean", + "documentation":"

A Boolean value that specifies whether local groups are disabled (True) or enabled (False).

" } }, "documentation":"

Provides configuration information for connecting to a Microsoft SharePoint data source.

" @@ -3620,6 +3729,12 @@ }, "Timestamp":{"type":"timestamp"}, "Title":{"type":"string"}, + "Token":{ + "type":"string", + "max":100000, + "min":1, + "pattern":"^\\P{C}*$" + }, "UntagResourceRequest":{ "type":"structure", "required":[ @@ -3703,6 +3818,14 @@ "CapacityUnits":{ "shape":"CapacityUnitsConfiguration", "documentation":"

Sets the number of addtional storage and query capacity units that should be used by the index. You can change the capacity of the index up to 5 times per day.

If you are using extra storage units, you can't reduce the storage capacity below that required to meet the storage needs for your index.

" + }, + "UserTokenConfigurations":{ + "shape":"UserTokenConfigurationList", + "documentation":"

The user token configuration.

" + }, + "UserContextPolicy":{ + "shape":"UserContextPolicy", + "documentation":"

The user user token context policy.

" } } }, @@ -3712,6 +3835,48 @@ "min":1, "pattern":"^(https?|ftp|file):\\/\\/([^\\s]*)" }, + "UserContext":{ + "type":"structure", + "members":{ + "Token":{ + "shape":"Token", + "documentation":"

The user context token. It must be a JWT or a JSON token.

" + } + }, + "documentation":"

Provides information about the user context for a Amazon Kendra index.

" + }, + "UserContextPolicy":{ + "type":"string", + "enum":[ + "ATTRIBUTE_FILTER", + "USER_TOKEN" + ] + }, + "UserNameAttributeField":{ + "type":"string", + "max":100, + "min":1, + "pattern":"^\\P{C}*$" + }, + "UserTokenConfiguration":{ + "type":"structure", + "members":{ + "JwtTokenTypeConfiguration":{ + "shape":"JwtTokenTypeConfiguration", + "documentation":"

Information about the JWT token type configuration.

" + }, + "JsonTokenTypeConfiguration":{ + "shape":"JsonTokenTypeConfiguration", + "documentation":"

Information about the JSON token type configuration.

" + } + }, + "documentation":"

Provides configuration information for a token configuration.

" + }, + "UserTokenConfigurationList":{ + "type":"list", + "member":{"shape":"UserTokenConfiguration"}, + "max":1 + }, "ValidationException":{ "type":"structure", "members":{ From 192db46cf7e3d32f857fbbeff87cd02e9eea503c Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 5 Nov 2020 19:15:56 +0000 Subject: [PATCH 130/339] Amazon Relational Database Service Update: Supports a new parameter to set the max allocated storage in gigabytes for the CreateDBInstanceReadReplica API. --- ...azonRelationalDatabaseService-4b2eaee.json | 6 +++++ .../codegen-resources/service-2.json | 22 +++++++++++-------- 2 files changed, 19 insertions(+), 9 deletions(-) create mode 100644 .changes/next-release/feature-AmazonRelationalDatabaseService-4b2eaee.json diff --git a/.changes/next-release/feature-AmazonRelationalDatabaseService-4b2eaee.json b/.changes/next-release/feature-AmazonRelationalDatabaseService-4b2eaee.json new file mode 100644 index 000000000000..f8e1889320f3 --- /dev/null +++ b/.changes/next-release/feature-AmazonRelationalDatabaseService-4b2eaee.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Relational Database Service", + "contributor": "", + "description": "Supports a new parameter to set the max allocated storage in gigabytes for the CreateDBInstanceReadReplica API." +} 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 1d25539cbe8c..63094bf3f4b5 100755 --- a/services/rds/src/main/resources/codegen-resources/service-2.json +++ b/services/rds/src/main/resources/codegen-resources/service-2.json @@ -3519,7 +3519,7 @@ }, "EnableIAMDatabaseAuthentication":{ "shape":"BooleanOptional", - "documentation":"

A value that indicates whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled.

You can enable IAM database authentication for the following database engines:

Amazon Aurora

Not applicable. Mapping AWS IAM accounts to database accounts is managed by the DB cluster.

MySQL

  • For MySQL 5.6, minor version 5.6.34 or higher

  • For MySQL 5.7, minor version 5.7.16 or higher

  • For MySQL 8.0, minor version 8.0.16 or higher

PostgreSQL

  • For PostgreSQL 9.5, minor version 9.5.15 or higher

  • For PostgreSQL 9.6, minor version 9.6.11 or higher

  • PostgreSQL 10.6, 10.7, and 10.9

For more information, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

" + "documentation":"

A value that indicates whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled.

This setting doesn't apply to Amazon Aurora. Mapping AWS IAM accounts to database accounts is managed by the DB cluster.

For more information, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

" }, "EnablePerformanceInsights":{ "shape":"BooleanOptional", @@ -3638,7 +3638,7 @@ }, "EnableIAMDatabaseAuthentication":{ "shape":"BooleanOptional", - "documentation":"

A value that indicates whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled. For information about the supported DB engines, see CreateDBInstance.

For more information about IAM database authentication, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

" + "documentation":"

A value that indicates whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled.

For more information about IAM database authentication, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

" }, "EnablePerformanceInsights":{ "shape":"BooleanOptional", @@ -3679,6 +3679,10 @@ "ReplicaMode":{ "shape":"ReplicaMode", "documentation":"

The open mode of the replica database: mounted or read-only.

This parameter is only supported for Oracle DB instances.

Mounted DB replicas are included in Oracle Enterprise Edition. The main use case for mounted replicas is cross-Region disaster recovery. The primary database doesn't use Active Data Guard to transmit information to the mounted replica. Because it doesn't accept user connections, a mounted replica can't serve a read-only workload.

You can create a combination of mounted and read-only DB replicas for the same primary DB instance. For more information, see Working with Oracle Read Replicas for Amazon RDS in the Amazon RDS User Guide.

" + }, + "MaxAllocatedStorage":{ + "shape":"IntegerOptional", + "documentation":"

The upper limit to which Amazon RDS can automatically scale the storage of the DB instance.

" } } }, @@ -5745,7 +5749,7 @@ "type":"structure", "members":{ }, - "documentation":"

The specified proxy name doesn't correspond to a proxy owned by your AWS accoutn in the specified AWS Region.

", + "documentation":"

The specified proxy name doesn't correspond to a proxy owned by your AWS account in the specified AWS Region.

", "error":{ "code":"DBProxyNotFoundFault", "httpStatusCode":404, @@ -6032,7 +6036,7 @@ }, "SnapshotCreateTime":{ "shape":"TStamp", - "documentation":"

Specifies when the snapshot was taken in Coodinated Universal Time (UTC).

" + "documentation":"

Specifies when the snapshot was taken in Coordinated Universal Time (UTC).

" }, "Engine":{ "shape":"String", @@ -9262,7 +9266,7 @@ }, "EngineVersion":{ "shape":"String", - "documentation":"

The version number of the database engine to upgrade to. Changing this parameter results in an outage and the change is applied during the next maintenance window unless the ApplyImmediately parameter is eanbled for this request.

For major version upgrades, if a nondefault DB parameter group is currently in use, a new DB parameter group in the DB parameter group family for the new engine version must be specified. The new DB parameter group can be the default for that DB parameter group family.

For information about valid engine versions, see CreateDBInstance, or call DescribeDBEngineVersions.

" + "documentation":"

The version number of the database engine to upgrade to. Changing this parameter results in an outage and the change is applied during the next maintenance window unless the ApplyImmediately parameter is enabled for this request.

For major version upgrades, if a nondefault DB parameter group is currently in use, a new DB parameter group in the DB parameter group family for the new engine version must be specified. The new DB parameter group can be the default for that DB parameter group family.

For information about valid engine versions, see CreateDBInstance, or call DescribeDBEngineVersions.

" }, "AllowMajorVersionUpgrade":{ "shape":"Boolean", @@ -9338,7 +9342,7 @@ }, "EnableIAMDatabaseAuthentication":{ "shape":"BooleanOptional", - "documentation":"

A value that indicates whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled. For information about the supported DB engines, see CreateDBInstance.

For more information about IAM database authentication, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

" + "documentation":"

A value that indicates whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled.

This setting doesn't apply to Amazon Aurora. Mapping AWS IAM accounts to database accounts is managed by the DB cluster.

For more information about IAM database authentication, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

" }, "EnablePerformanceInsights":{ "shape":"BooleanOptional", @@ -11479,7 +11483,7 @@ }, "EnableIAMDatabaseAuthentication":{ "shape":"BooleanOptional", - "documentation":"

A value that indicates whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled. For information about the supported DB engines, see CreateDBInstance.

For more information about IAM database authentication, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

" + "documentation":"

A value that indicates whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled.

For more information about IAM database authentication, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

" }, "EnableCloudwatchLogsExports":{ "shape":"LogTypeList", @@ -11644,7 +11648,7 @@ }, "EnableIAMDatabaseAuthentication":{ "shape":"BooleanOptional", - "documentation":"

A value that indicates whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled. For information about the supported DB engines, see CreateDBInstance.

For more information about IAM database authentication, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

" + "documentation":"

A value that indicates whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled.

For more information about IAM database authentication, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

" }, "SourceEngine":{ "shape":"String", @@ -11805,7 +11809,7 @@ }, "EnableIAMDatabaseAuthentication":{ "shape":"BooleanOptional", - "documentation":"

A value that indicates whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled. For information about the supported DB engines, see CreateDBInstance.

For more information about IAM database authentication, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

" + "documentation":"

A value that indicates whether to enable mapping of AWS Identity and Access Management (IAM) accounts to database accounts. By default, mapping is disabled.

For more information about IAM database authentication, see IAM Database Authentication for MySQL and PostgreSQL in the Amazon RDS User Guide.

" }, "EnableCloudwatchLogsExports":{ "shape":"LogTypeList", From bc3dd90dd22c1ec6361ba1948642dc7f6524307d Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 5 Nov 2020 19:16:03 +0000 Subject: [PATCH 131/339] Amazon Elasticsearch Service Update: Amazon Elasticsearch Service now provides the ability to define a custom endpoint for your domain and link an SSL certificate from ACM, making it easier to refer to Kibana and the domain endpoint. --- ...ure-AmazonElasticsearchService-18119d0.json | 6 ++++++ .../resources/codegen-resources/service-2.json | 18 ++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 .changes/next-release/feature-AmazonElasticsearchService-18119d0.json diff --git a/.changes/next-release/feature-AmazonElasticsearchService-18119d0.json b/.changes/next-release/feature-AmazonElasticsearchService-18119d0.json new file mode 100644 index 000000000000..79a3bdb2ee73 --- /dev/null +++ b/.changes/next-release/feature-AmazonElasticsearchService-18119d0.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Elasticsearch Service", + "contributor": "", + "description": "Amazon Elasticsearch Service now provides the ability to define a custom endpoint for your domain and link an SSL certificate from ACM, making it easier to refer to Kibana and the domain endpoint." +} diff --git a/services/elasticsearch/src/main/resources/codegen-resources/service-2.json b/services/elasticsearch/src/main/resources/codegen-resources/service-2.json index 522361463a4c..d8c37f24d4e0 100644 --- a/services/elasticsearch/src/main/resources/codegen-resources/service-2.json +++ b/services/elasticsearch/src/main/resources/codegen-resources/service-2.json @@ -1544,6 +1544,18 @@ "TLSSecurityPolicy":{ "shape":"TLSSecurityPolicy", "documentation":"

Specify the TLS security policy that needs to be applied to the HTTPS endpoint of Elasticsearch domain.
It can be one of the following values:

  • Policy-Min-TLS-1-0-2019-07: TLS security policy which supports TLSv1.0 and higher.
  • Policy-Min-TLS-1-2-2019-07: TLS security policy which supports only TLSv1.2

" + }, + "CustomEndpointEnabled":{ + "shape":"Boolean", + "documentation":"

Specify if custom endpoint should be enabled for the Elasticsearch domain.

" + }, + "CustomEndpoint":{ + "shape":"DomainNameFqdn", + "documentation":"

Specify the fully qualified domain for your custom endpoint.

" + }, + "CustomEndpointCertificateArn":{ + "shape":"ARN", + "documentation":"

Specify ACM certificate ARN for your custom endpoint.

" } }, "documentation":"

Options to configure endpoint for the Elasticsearch domain.

" @@ -1602,6 +1614,12 @@ "min":3, "pattern":"[a-z][a-z0-9\\-]+" }, + "DomainNameFqdn":{ + "type":"string", + "max":255, + "min":1, + "pattern":"^(((?!-)[A-Za-z0-9-]{0,62}[A-Za-z0-9])\\.)+((?!-)[A-Za-z0-9-]{1,62}[A-Za-z0-9])$" + }, "DomainNameList":{ "type":"list", "member":{"shape":"DomainName"}, From 13d5bac4a6bcf649d648a0832d796e6f730b5171 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 5 Nov 2020 19:15:57 +0000 Subject: [PATCH 132/339] Amazon CloudWatch Events Update: With this release, customers can now reprocess past events by storing the events published on event bus in an encrypted archive. --- ...eature-AmazonCloudWatchEvents-3997df6.json | 6 + .../codegen-resources/service-2.json | 718 +++++++++++++++++- 2 files changed, 722 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AmazonCloudWatchEvents-3997df6.json diff --git a/.changes/next-release/feature-AmazonCloudWatchEvents-3997df6.json b/.changes/next-release/feature-AmazonCloudWatchEvents-3997df6.json new file mode 100644 index 000000000000..325a0df72589 --- /dev/null +++ b/.changes/next-release/feature-AmazonCloudWatchEvents-3997df6.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon CloudWatch Events", + "contributor": "", + "description": "With this release, customers can now reprocess past events by storing the events published on event bus in an encrypted archive." +} diff --git a/services/cloudwatchevents/src/main/resources/codegen-resources/service-2.json b/services/cloudwatchevents/src/main/resources/codegen-resources/service-2.json index 2c9b6af2f718..1878da50c35b 100644 --- a/services/cloudwatchevents/src/main/resources/codegen-resources/service-2.json +++ b/services/cloudwatchevents/src/main/resources/codegen-resources/service-2.json @@ -28,6 +28,40 @@ ], "documentation":"

Activates a partner event source that has been deactivated. Once activated, your matching event bus will start receiving events from the event source.

" }, + "CancelReplay":{ + "name":"CancelReplay", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CancelReplayRequest"}, + "output":{"shape":"CancelReplayResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ConcurrentModificationException"}, + {"shape":"IllegalStatusException"}, + {"shape":"InternalException"} + ], + "documentation":"

Cancels the specified replay.

" + }, + "CreateArchive":{ + "name":"CreateArchive", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateArchiveRequest"}, + "output":{"shape":"CreateArchiveResponse"}, + "errors":[ + {"shape":"ConcurrentModificationException"}, + {"shape":"ResourceAlreadyExistsException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalException"}, + {"shape":"LimitExceededException"}, + {"shape":"InvalidEventPatternException"} + ], + "documentation":"

Creates an archive of events with the specified settings. When you create an archive, incoming events might not immediately start being sent to the archive. Allow a short period of time for changes to take effect.

" + }, "CreateEventBus":{ "name":"CreateEventBus", "http":{ @@ -80,6 +114,21 @@ ], "documentation":"

You can use this operation to temporarily stop receiving events from the specified partner event source. The matching event bus is not deleted.

When you deactivate a partner event source, the source goes into PENDING state. If it remains in PENDING state for more than two weeks, it is deleted.

To activate a deactivated partner event source, use ActivateEventSource.

" }, + "DeleteArchive":{ + "name":"DeleteArchive", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteArchiveRequest"}, + "output":{"shape":"DeleteArchiveResponse"}, + "errors":[ + {"shape":"ConcurrentModificationException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalException"} + ], + "documentation":"

Deletes the specified archive.

" + }, "DeleteEventBus":{ "name":"DeleteEventBus", "http":{ @@ -122,6 +171,21 @@ ], "documentation":"

Deletes the specified rule.

Before you can delete the rule, you must remove all targets, using RemoveTargets.

When you delete a rule, incoming events might continue to match to the deleted rule. Allow a short period of time for changes to take effect.

Managed rules are rules created and managed by another AWS service on your behalf. These rules are created by those other AWS services to support functionality in those services. You can delete these rules using the Force option, but you should do so only if you are sure the other service is not still using that rule.

" }, + "DescribeArchive":{ + "name":"DescribeArchive", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeArchiveRequest"}, + "output":{"shape":"DescribeArchiveResponse"}, + "errors":[ + {"shape":"ResourceAlreadyExistsException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalException"} + ], + "documentation":"

Retrieves details about an archive.

" + }, "DescribeEventBus":{ "name":"DescribeEventBus", "http":{ @@ -166,6 +230,20 @@ ], "documentation":"

An SaaS partner can use this operation to list details about a partner event source that they have created. AWS customers do not use this operation. Instead, AWS customers can use DescribeEventSource to see details about a partner event source that is shared with them.

" }, + "DescribeReplay":{ + "name":"DescribeReplay", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeReplayRequest"}, + "output":{"shape":"DescribeReplayResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalException"} + ], + "documentation":"

Retrieves details about a replay. Use DescribeReplay to determine the progress of a running replay. A replay processes events to replay based on the time in the event, and replays them using 1 minute intervals. If you use StartReplay and specify an EventStartTime and an EventEndTime that covers a 20 minute time range, the events are replayed from the first minute of that 20 minute range first. Then the events from the second minute are replayed. You can use DescribeReplay to determine the progress of a replay. The value returned for EventLastReplayedTime indicates the time within the specified time range associated with the last event replayed.

" + }, "DescribeRule":{ "name":"DescribeRule", "http":{ @@ -210,6 +288,20 @@ ], "documentation":"

Enables the specified rule. If the rule does not exist, the operation fails.

When you enable a rule, incoming events might not immediately start matching to a newly enabled rule. Allow a short period of time for changes to take effect.

" }, + "ListArchives":{ + "name":"ListArchives", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListArchivesRequest"}, + "output":{"shape":"ListArchivesResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalException"} + ], + "documentation":"

Lists your archives. You can either list all the archives or you can provide a prefix to match to the archive names. Filter parameters are exclusive.

" + }, "ListEventBuses":{ "name":"ListEventBuses", "http":{ @@ -266,6 +358,19 @@ ], "documentation":"

An SaaS partner can use this operation to list all the partner event source names that they have created. This operation is not used by AWS customers.

" }, + "ListReplays":{ + "name":"ListReplays", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListReplaysRequest"}, + "output":{"shape":"ListReplaysResponse"}, + "errors":[ + {"shape":"InternalException"} + ], + "documentation":"

Lists your replays. You can either list all the replays or you can provide a prefix to match to the replay names. Filter parameters are exclusive.

" + }, "ListRuleNamesByTarget":{ "name":"ListRuleNamesByTarget", "http":{ @@ -429,6 +534,23 @@ ], "documentation":"

Removes the specified targets from the specified rule. When the rule is triggered, those targets are no longer be invoked.

When you remove a target, when the associated rule triggers, removed targets might continue to be invoked. Allow a short period of time for changes to take effect.

This action can partially fail if too many requests are made at the same time. If that happens, FailedEntryCount is non-zero in the response and each entry in FailedEntries provides the ID of the failed target and the error code.

" }, + "StartReplay":{ + "name":"StartReplay", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"StartReplayRequest"}, + "output":{"shape":"StartReplayResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ResourceAlreadyExistsException"}, + {"shape":"InvalidEventPatternException"}, + {"shape":"LimitExceededException"}, + {"shape":"InternalException"} + ], + "documentation":"

Starts the specified replay. Events are not necessarily replayed in the exact same order that they were added to the archive. A replay processes events to replay based on the time in the event, and replays them using 1 minute intervals. If you specify an EventStartTime and an EventEndTime that covers a 20 minute time range, the events are replayed from the first minute of that 20 minute range first. Then the events from the second minute are replayed. You can use DescribeReplay to determine the progress of a replay. The value returned for EventLastReplayedTime indicates the time within the specified time range associated with the last event replayed.

" + }, "TagResource":{ "name":"TagResource", "http":{ @@ -474,6 +596,23 @@ {"shape":"ManagedRuleException"} ], "documentation":"

Removes one or more tags from the specified EventBridge resource. In Amazon EventBridge (CloudWatch Events, rules and event buses can be tagged.

" + }, + "UpdateArchive":{ + "name":"UpdateArchive", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateArchiveRequest"}, + "output":{"shape":"UpdateArchiveResponse"}, + "errors":[ + {"shape":"ConcurrentModificationException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalException"}, + {"shape":"LimitExceededException"}, + {"shape":"InvalidEventPatternException"} + ], + "documentation":"

Updates the specified archive.

" } }, "shapes":{ @@ -499,6 +638,81 @@ } } }, + "Archive":{ + "type":"structure", + "members":{ + "ArchiveName":{ + "shape":"ArchiveName", + "documentation":"

The name of the archive.

" + }, + "EventSourceArn":{ + "shape":"Arn", + "documentation":"

The ARN of the event bus associated with the archive. Only events from this event bus are sent to the archive.

" + }, + "State":{ + "shape":"ArchiveState", + "documentation":"

The current state of the archive.

" + }, + "StateReason":{ + "shape":"ArchiveStateReason", + "documentation":"

A description for the reason that the archive is in the current state.

" + }, + "RetentionDays":{ + "shape":"RetentionDays", + "documentation":"

The number of days to retain events in the archive before they are deleted.

" + }, + "SizeBytes":{ + "shape":"Long", + "documentation":"

The size of the archive, in bytes.

" + }, + "EventCount":{ + "shape":"Long", + "documentation":"

The number of events in the archive.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

The time stamp for the time that the archive was created.

" + } + }, + "documentation":"

An Archive object that contains details about an archive.

" + }, + "ArchiveArn":{ + "type":"string", + "max":1600, + "min":1, + "pattern":"^arn:aws([a-z]|\\-)*:events:([a-z]|\\d|\\-)*:([0-9]{12})?:.+\\/.+$" + }, + "ArchiveDescription":{ + "type":"string", + "max":512, + "pattern":".*" + }, + "ArchiveName":{ + "type":"string", + "max":48, + "min":1, + "pattern":"[\\.\\-_A-Za-z0-9]+" + }, + "ArchiveResponseList":{ + "type":"list", + "member":{"shape":"Archive"} + }, + "ArchiveState":{ + "type":"string", + "enum":[ + "ENABLED", + "DISABLED", + "CREATING", + "UPDATING", + "CREATE_FAILED", + "UPDATE_FAILED" + ] + }, + "ArchiveStateReason":{ + "type":"string", + "max":512, + "pattern":".*" + }, "Arn":{ "type":"string", "max":1600, @@ -577,11 +791,38 @@ "documentation":"

The retry strategy to use for failed jobs, if the target is an AWS Batch job. If you specify a retry strategy here, it overrides the retry strategy defined in the job definition.

" }, "Boolean":{"type":"boolean"}, + "CancelReplayRequest":{ + "type":"structure", + "required":["ReplayName"], + "members":{ + "ReplayName":{ + "shape":"ReplayName", + "documentation":"

The name of the replay to cancel.

" + } + } + }, + "CancelReplayResponse":{ + "type":"structure", + "members":{ + "ReplayArn":{ + "shape":"ReplayArn", + "documentation":"

The ARN of the replay to cancel.

" + }, + "State":{ + "shape":"ReplayState", + "documentation":"

The current state of the replay.

" + }, + "StateReason":{ + "shape":"ReplayStateReason", + "documentation":"

The reason that the replay is in the current state.

" + } + } + }, "ConcurrentModificationException":{ "type":"structure", "members":{ }, - "documentation":"

There is concurrent modification on a rule or target.

", + "documentation":"

There is concurrent modification on a rule, target, archive, or replay.

", "exception":true }, "Condition":{ @@ -607,6 +848,56 @@ }, "documentation":"

A JSON string which you can use to limit the event bus permissions you are granting to only accounts that fulfill the condition. Currently, the only supported condition is membership in a certain AWS organization. The string must contain Type, Key, and Value fields. The Value field specifies the ID of the AWS organization. Following is an example value for Condition:

'{\"Type\" : \"StringEquals\", \"Key\": \"aws:PrincipalOrgID\", \"Value\": \"o-1234567890\"}'

" }, + "CreateArchiveRequest":{ + "type":"structure", + "required":[ + "ArchiveName", + "EventSourceArn" + ], + "members":{ + "ArchiveName":{ + "shape":"ArchiveName", + "documentation":"

The name for the archive to create.

" + }, + "EventSourceArn":{ + "shape":"Arn", + "documentation":"

The ARN of the event source associated with the archive.

" + }, + "Description":{ + "shape":"ArchiveDescription", + "documentation":"

A description for the archive.

" + }, + "EventPattern":{ + "shape":"EventPattern", + "documentation":"

An event pattern to use to filter events sent to the archive.

" + }, + "RetentionDays":{ + "shape":"RetentionDays", + "documentation":"

The number of days to retain events for. Default value is 0. If set to 0, events are retained indefinitely

" + } + } + }, + "CreateArchiveResponse":{ + "type":"structure", + "members":{ + "ArchiveArn":{ + "shape":"ArchiveArn", + "documentation":"

The ARN of the archive that was created.

" + }, + "State":{ + "shape":"ArchiveState", + "documentation":"

The state of the archive that was created.

" + }, + "StateReason":{ + "shape":"ArchiveStateReason", + "documentation":"

The reason that the archive is in the state.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

The time at which the archive was created.

" + } + } + }, "CreateEventBusRequest":{ "type":"structure", "required":["Name"], @@ -692,6 +983,21 @@ }, "documentation":"

A DeadLetterConfig object that contains information about a dead-letter queue configuration.

" }, + "DeleteArchiveRequest":{ + "type":"structure", + "required":["ArchiveName"], + "members":{ + "ArchiveName":{ + "shape":"ArchiveName", + "documentation":"

The name of the archive to delete.

" + } + } + }, + "DeleteArchiveResponse":{ + "type":"structure", + "members":{ + } + }, "DeleteEventBusRequest":{ "type":"structure", "required":["Name"], @@ -737,6 +1043,65 @@ } } }, + "DescribeArchiveRequest":{ + "type":"structure", + "required":["ArchiveName"], + "members":{ + "ArchiveName":{ + "shape":"ArchiveName", + "documentation":"

The name of the archive to retrieve.

" + } + } + }, + "DescribeArchiveResponse":{ + "type":"structure", + "members":{ + "ArchiveArn":{ + "shape":"ArchiveArn", + "documentation":"

The ARN of the archive.

" + }, + "ArchiveName":{ + "shape":"ArchiveName", + "documentation":"

The name of the archive.

" + }, + "EventSourceArn":{ + "shape":"Arn", + "documentation":"

The ARN of the event source associated with the archive.

" + }, + "Description":{ + "shape":"ArchiveDescription", + "documentation":"

The description of the archive.

" + }, + "EventPattern":{ + "shape":"EventPattern", + "documentation":"

The event pattern used to filter events sent to the archive.

" + }, + "State":{ + "shape":"ArchiveState", + "documentation":"

The state of the archive.

" + }, + "StateReason":{ + "shape":"ArchiveStateReason", + "documentation":"

The reason that the archive is in the state.

" + }, + "RetentionDays":{ + "shape":"RetentionDays", + "documentation":"

The number of days to retain events for in the archive.

" + }, + "SizeBytes":{ + "shape":"Long", + "documentation":"

The size of the archive in bytes.

" + }, + "EventCount":{ + "shape":"Long", + "documentation":"

The number of events in the archive.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

The time at which the archive was created.

" + } + } + }, "DescribeEventBusRequest":{ "type":"structure", "members":{ @@ -825,6 +1190,69 @@ } } }, + "DescribeReplayRequest":{ + "type":"structure", + "required":["ReplayName"], + "members":{ + "ReplayName":{ + "shape":"ReplayName", + "documentation":"

The name of the replay to retrieve.

" + } + } + }, + "DescribeReplayResponse":{ + "type":"structure", + "members":{ + "ReplayName":{ + "shape":"ReplayName", + "documentation":"

The name of the replay.

" + }, + "ReplayArn":{ + "shape":"ReplayArn", + "documentation":"

The ARN of the replay.

" + }, + "Description":{ + "shape":"ReplayDescription", + "documentation":"

The description of the replay.

" + }, + "State":{ + "shape":"ReplayState", + "documentation":"

The current state of the replay.

" + }, + "StateReason":{ + "shape":"ReplayStateReason", + "documentation":"

The reason that the replay is in the current state.

" + }, + "EventSourceArn":{ + "shape":"Arn", + "documentation":"

The ARN of the archive events were replayed from.

" + }, + "Destination":{ + "shape":"ReplayDestination", + "documentation":"

A ReplayDestination object that contains details about the replay.

" + }, + "EventStartTime":{ + "shape":"Timestamp", + "documentation":"

The time stamp of the first event that was last replayed from the archive.

" + }, + "EventEndTime":{ + "shape":"Timestamp", + "documentation":"

The time stamp for the last event that was replayed from the archive.

" + }, + "EventLastReplayedTime":{ + "shape":"Timestamp", + "documentation":"

The time that the event was last replayed.

" + }, + "ReplayStartTime":{ + "shape":"Timestamp", + "documentation":"

A time stamp for the time that the replay started.

" + }, + "ReplayEndTime":{ + "shape":"Timestamp", + "documentation":"

A time stamp for the time that the replay stopped.

" + } + } + }, "DescribeRuleRequest":{ "type":"structure", "required":["Name"], @@ -1064,6 +1492,13 @@ }, "documentation":"

These are custom parameter to be used when the target is an API Gateway REST APIs.

" }, + "IllegalStatusException":{ + "type":"structure", + "members":{ + }, + "documentation":"

An error occurred because a replay can be canceled only when the state is Running or Starting.

", + "exception":true + }, "InputTransformer":{ "type":"structure", "required":["InputTemplate"], @@ -1130,7 +1565,7 @@ "type":"structure", "members":{ }, - "documentation":"

You tried to create more rules or add more targets to a rule than is allowed.

", + "documentation":"

The request failed because it attempted to create resource beyond the allowed service quota.

", "exception":true }, "LimitMax100":{ @@ -1142,6 +1577,44 @@ "type":"integer", "min":1 }, + "ListArchivesRequest":{ + "type":"structure", + "members":{ + "NamePrefix":{ + "shape":"ArchiveName", + "documentation":"

A name prefix to filter the archives returned. Only archives with name that match the prefix are returned.

" + }, + "EventSourceArn":{ + "shape":"Arn", + "documentation":"

The ARN of the event source associated with the archive.

" + }, + "State":{ + "shape":"ArchiveState", + "documentation":"

The state of the archive.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token returned by a previous call to retrieve the next set of results.

" + }, + "Limit":{ + "shape":"LimitMax100", + "documentation":"

The maximum number of results to return.

" + } + } + }, + "ListArchivesResponse":{ + "type":"structure", + "members":{ + "Archives":{ + "shape":"ArchiveResponseList", + "documentation":"

An array of Archive objects that include details about an archive.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token returned by a previous call to retrieve the next set of results.

" + } + } + }, "ListEventBusesRequest":{ "type":"structure", "members":{ @@ -1264,6 +1737,44 @@ } } }, + "ListReplaysRequest":{ + "type":"structure", + "members":{ + "NamePrefix":{ + "shape":"ReplayName", + "documentation":"

A name prefix to filter the archives returned. Only archives with name that match the prefix are returned.

" + }, + "State":{ + "shape":"ReplayState", + "documentation":"

The state of the replay.

" + }, + "EventSourceArn":{ + "shape":"Arn", + "documentation":"

The ARN of the event source associated with the replay.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token returned by a previous call to retrieve the next set of results.

" + }, + "Limit":{ + "shape":"LimitMax100", + "documentation":"

The maximum number of replays to retrieve.

" + } + } + }, + "ListReplaysResponse":{ + "type":"structure", + "members":{ + "Replays":{ + "shape":"ReplayList", + "documentation":"

An array of Replay objects that contain information about the replay.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token returned by a previous call to retrieve the next set of results.

" + } + } + }, "ListRuleNamesByTargetRequest":{ "type":"structure", "required":["TargetArn"], @@ -1387,6 +1898,7 @@ } } }, + "Long":{"type":"long"}, "ManagedBy":{ "type":"string", "max":128, @@ -1929,6 +2441,104 @@ "type":"list", "member":{"shape":"RemoveTargetsResultEntry"} }, + "Replay":{ + "type":"structure", + "members":{ + "ReplayName":{ + "shape":"ReplayName", + "documentation":"

The name of the replay.

" + }, + "EventSourceArn":{ + "shape":"Arn", + "documentation":"

The ARN of the archive to replay event from.

" + }, + "State":{ + "shape":"ReplayState", + "documentation":"

The current state of the replay.

" + }, + "StateReason":{ + "shape":"ReplayStateReason", + "documentation":"

A description of why the replay is in the current state.

" + }, + "EventStartTime":{ + "shape":"Timestamp", + "documentation":"

A time stamp for the time to start replaying events. This is determined by the time in the event as described in Time.

" + }, + "EventEndTime":{ + "shape":"Timestamp", + "documentation":"

A time stamp for the time to start replaying events. Any event with a creation time prior to the EventEndTime specified is replayed.

" + }, + "EventLastReplayedTime":{ + "shape":"Timestamp", + "documentation":"

A time stamp for the time that the last event was replayed.

" + }, + "ReplayStartTime":{ + "shape":"Timestamp", + "documentation":"

A time stamp for the time that the replay started.

" + }, + "ReplayEndTime":{ + "shape":"Timestamp", + "documentation":"

A time stamp for the time that the replay completed.

" + } + }, + "documentation":"

A Replay object that contains details about a replay.

" + }, + "ReplayArn":{ + "type":"string", + "max":1600, + "min":1, + "pattern":"^arn:aws([a-z]|\\-)*:events:([a-z]|\\d|\\-)*:([0-9]{12})?:.+\\/[\\.\\-_A-Za-z0-9]+$" + }, + "ReplayDescription":{ + "type":"string", + "max":512, + "pattern":".*" + }, + "ReplayDestination":{ + "type":"structure", + "required":["Arn"], + "members":{ + "Arn":{ + "shape":"Arn", + "documentation":"

The ARN of the event bus to replay event to. You can replay events only to the event bus specified to create the archive.

" + }, + "FilterArns":{ + "shape":"ReplayDestinationFilters", + "documentation":"

A list of ARNs for rules to replay events to.

" + } + }, + "documentation":"

A ReplayDestination object that contains details about a replay.

" + }, + "ReplayDestinationFilters":{ + "type":"list", + "member":{"shape":"Arn"} + }, + "ReplayList":{ + "type":"list", + "member":{"shape":"Replay"} + }, + "ReplayName":{ + "type":"string", + "max":64, + "min":1, + "pattern":"[\\.\\-_A-Za-z0-9]+" + }, + "ReplayState":{ + "type":"string", + "enum":[ + "STARTING", + "RUNNING", + "CANCELLING", + "COMPLETED", + "CANCELLED", + "FAILED" + ] + }, + "ReplayStateReason":{ + "type":"string", + "max":512, + "pattern":".*" + }, "ResourceAlreadyExistsException":{ "type":"structure", "members":{ @@ -1948,6 +2558,10 @@ "documentation":"

An entity that you specified does not exist.

", "exception":true }, + "RetentionDays":{ + "type":"integer", + "min":0 + }, "RetryPolicy":{ "type":"structure", "members":{ @@ -2110,6 +2724,63 @@ }, "documentation":"

This structure includes the custom parameter to be used when the target is an SQS FIFO queue.

" }, + "StartReplayRequest":{ + "type":"structure", + "required":[ + "ReplayName", + "EventSourceArn", + "EventStartTime", + "EventEndTime", + "Destination" + ], + "members":{ + "ReplayName":{ + "shape":"ReplayName", + "documentation":"

The name of the replay to start.

" + }, + "Description":{ + "shape":"ReplayDescription", + "documentation":"

A description for the replay to start.

" + }, + "EventSourceArn":{ + "shape":"Arn", + "documentation":"

The ARN of the archive to replay events from.

" + }, + "EventStartTime":{ + "shape":"Timestamp", + "documentation":"

A time stamp for the time to start replaying events. Only events that occurred between the EventStartTime and EventEndTime are replayed.

" + }, + "EventEndTime":{ + "shape":"Timestamp", + "documentation":"

A time stamp for the time to stop replaying events. Only events that occurred between the EventStartTime and EventEndTime are replayed.

" + }, + "Destination":{ + "shape":"ReplayDestination", + "documentation":"

A ReplayDestination object that includes details about the destination for the replay.

" + } + } + }, + "StartReplayResponse":{ + "type":"structure", + "members":{ + "ReplayArn":{ + "shape":"ReplayArn", + "documentation":"

The ARN of the replay.

" + }, + "State":{ + "shape":"ReplayState", + "documentation":"

The state of the replay.

" + }, + "StateReason":{ + "shape":"ReplayStateReason", + "documentation":"

The reason that the replay is in the state.

" + }, + "ReplayStartTime":{ + "shape":"Timestamp", + "documentation":"

The time at which the replay started.

" + } + } + }, "StatementId":{ "type":"string", "max":64, @@ -2348,6 +3019,49 @@ "type":"structure", "members":{ } + }, + "UpdateArchiveRequest":{ + "type":"structure", + "required":["ArchiveName"], + "members":{ + "ArchiveName":{ + "shape":"ArchiveName", + "documentation":"

The name of the archive to update.

" + }, + "Description":{ + "shape":"ArchiveDescription", + "documentation":"

The description for the archive.

" + }, + "EventPattern":{ + "shape":"EventPattern", + "documentation":"

The event pattern to use to filter events sent to the archive.

" + }, + "RetentionDays":{ + "shape":"RetentionDays", + "documentation":"

The number of days to retain events in the archive.

" + } + } + }, + "UpdateArchiveResponse":{ + "type":"structure", + "members":{ + "ArchiveArn":{ + "shape":"ArchiveArn", + "documentation":"

The ARN of the archive.

" + }, + "State":{ + "shape":"ArchiveState", + "documentation":"

The state of the archive.

" + }, + "StateReason":{ + "shape":"ArchiveStateReason", + "documentation":"

The reason that the archive is in the current state.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

The time at which the archive was updated.

" + } + } } }, "documentation":"

Amazon EventBridge helps you to respond to state changes in your AWS resources. When your resources change state, they automatically send events into an event stream. You can create rules that match selected events in the stream and route them to targets to take action. You can also use rules to take action on a predetermined schedule. For example, you can configure rules to:

  • Automatically invoke an AWS Lambda function to update DNS entries when an event notifies you that Amazon EC2 instance enters the running state.

  • Direct specific API records from AWS CloudTrail to an Amazon Kinesis data stream for detailed analysis of potential security or availability risks.

  • Periodically invoke a built-in target to create a snapshot of an Amazon EBS volume.

For more information about the features of Amazon EventBridge, see the Amazon EventBridge User Guide.

" From d4d41926aa4c5e8792cfd9326de5d8f90bc821e0 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 5 Nov 2020 19:15:57 +0000 Subject: [PATCH 133/339] AWS Lambda Update: Support Amazon MQ as an Event Source. --- .../feature-AWSLambda-4f16ba2.json | 6 ++ .../codegen-resources/service-2.json | 72 ++++++++++++++++--- 2 files changed, 70 insertions(+), 8 deletions(-) create mode 100644 .changes/next-release/feature-AWSLambda-4f16ba2.json diff --git a/.changes/next-release/feature-AWSLambda-4f16ba2.json b/.changes/next-release/feature-AWSLambda-4f16ba2.json new file mode 100644 index 000000000000..d64ad7763765 --- /dev/null +++ b/.changes/next-release/feature-AWSLambda-4f16ba2.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Lambda", + "contributor": "", + "description": "Support Amazon MQ as an Event Source." +} diff --git a/services/lambda/src/main/resources/codegen-resources/service-2.json b/services/lambda/src/main/resources/codegen-resources/service-2.json index a44c27aa64b6..50776e93a201 100644 --- a/services/lambda/src/main/resources/codegen-resources/service-2.json +++ b/services/lambda/src/main/resources/codegen-resources/service-2.json @@ -84,7 +84,7 @@ {"shape":"TooManyRequestsException"}, {"shape":"ResourceNotFoundException"} ], - "documentation":"

Creates a mapping between an event source and an AWS Lambda function. Lambda reads items from the event source and triggers the function.

For details about each event source type, see the following topics.

The following error handling options are only available for stream sources (DynamoDB and Kinesis):

  • BisectBatchOnFunctionError - If the function returns an error, split the batch in two and retry.

  • DestinationConfig - Send discarded records to an Amazon SQS queue or Amazon SNS topic.

  • MaximumRecordAgeInSeconds - Discard records older than the specified age. Default -1 (infinite). Minimum 60. Maximum 604800.

  • MaximumRetryAttempts - Discard records after the specified number of retries. Default -1 (infinite). Minimum 0. Maximum 10000. When infinite, failed records will be retried until the record expires.

  • ParallelizationFactor - Process multiple batches from each shard concurrently.

" + "documentation":"

Creates a mapping between an event source and an AWS Lambda function. Lambda reads items from the event source and triggers the function.

For details about each event source type, see the following topics.

The following error handling options are only available for stream sources (DynamoDB and Kinesis):

  • BisectBatchOnFunctionError - If the function returns an error, split the batch in two and retry.

  • DestinationConfig - Send discarded records to an Amazon SQS queue or Amazon SNS topic.

  • MaximumRecordAgeInSeconds - Discard records older than the specified age. The default value is infinite (-1). When set to infinite (-1), failed records are retried until the record expires

  • MaximumRetryAttempts - Discard records after the specified number of retries. The default value is infinite (-1). When set to infinite (-1), failed records are retried until the record expires.

  • ParallelizationFactor - Process multiple batches from each shard concurrently.

" }, "CreateFunction":{ "name":"CreateFunction", @@ -825,7 +825,7 @@ {"shape":"ResourceConflictException"}, {"shape":"ResourceInUseException"} ], - "documentation":"

Updates an event source mapping. You can change the function that AWS Lambda invokes, or pause invocation and resume later from the same location.

The following error handling options are only available for stream sources (DynamoDB and Kinesis):

  • BisectBatchOnFunctionError - If the function returns an error, split the batch in two and retry.

  • DestinationConfig - Send discarded records to an Amazon SQS queue or Amazon SNS topic.

  • MaximumRecordAgeInSeconds - Discard records older than the specified age. Default -1 (infinite). Minimum 60. Maximum 604800.

  • MaximumRetryAttempts - Discard records after the specified number of retries. Default -1 (infinite). Minimum 0. Maximum 10000. When infinite, failed records will be retried until the record expires.

  • ParallelizationFactor - Process multiple batches from each shard concurrently.

" + "documentation":"

Updates an event source mapping. You can change the function that AWS Lambda invokes, or pause invocation and resume later from the same location.

The following error handling options are only available for stream sources (DynamoDB and Kinesis):

  • BisectBatchOnFunctionError - If the function returns an error, split the batch in two and retry.

  • DestinationConfig - Send discarded records to an Amazon SQS queue or Amazon SNS topic.

  • MaximumRecordAgeInSeconds - Discard records older than the specified age. The default value is infinite (-1). When set to infinite (-1), failed records are retried until the record expires

  • MaximumRetryAttempts - Discard records after the specified number of retries. The default value is infinite (-1). When set to infinite (-1), failed records are retried until the record expires.

  • ParallelizationFactor - Process multiple batches from each shard concurrently.

" }, "UpdateFunctionCode":{ "name":"UpdateFunctionCode", @@ -1245,6 +1245,14 @@ "Topics":{ "shape":"Topics", "documentation":"

(MSK) The name of the Kafka topic.

" + }, + "Queues":{ + "shape":"Queues", + "documentation":"

(MQ) The name of the Amazon MQ broker destination queue to consume.

" + }, + "SourceAccessConfigurations":{ + "shape":"SourceAccessConfigurations", + "documentation":"

(MQ) The Secrets Manager secret that stores your broker credentials. To store your secret, use the following format: { \"username\": \"your username\", \"password\": \"your password\" }

To reference the secret, use the following format: [ { \"Type\": \"BASIC_AUTH\", \"URI\": \"secretARN\" } ]

The value of Type is always BASIC_AUTH. To encrypt the secret, you can use customer or service managed keys. When using a customer managed KMS key, the Lambda execution role requires kms:Decrypt permissions.

" } } }, @@ -1635,11 +1643,11 @@ }, "MaximumBatchingWindowInSeconds":{ "shape":"MaximumBatchingWindowInSeconds", - "documentation":"

(Streams) The maximum amount of time to gather records before invoking the function, in seconds.

" + "documentation":"

(Streams) The maximum amount of time to gather records before invoking the function, in seconds. The default value is zero.

" }, "ParallelizationFactor":{ "shape":"ParallelizationFactor", - "documentation":"

(Streams) The number of batches to process from each shard concurrently.

" + "documentation":"

(Streams) The number of batches to process from each shard concurrently. The default value is 1.

" }, "EventSourceArn":{ "shape":"Arn", @@ -1671,19 +1679,27 @@ }, "Topics":{ "shape":"Topics", - "documentation":"

(MSK) The name of the Kafka topic.

" + "documentation":"

(MSK) The name of the Kafka topic to consume.

" + }, + "Queues":{ + "shape":"Queues", + "documentation":"

(MQ) The name of the Amazon MQ broker destination queue to consume.

" + }, + "SourceAccessConfigurations":{ + "shape":"SourceAccessConfigurations", + "documentation":"

(MQ) The Secrets Manager secret that stores your broker credentials. To store your secret, use the following format: { \"username\": \"your username\", \"password\": \"your password\" }

To reference the secret, use the following format: [ { \"Type\": \"BASIC_AUTH\", \"URI\": \"secretARN\" } ]

The value of Type is always BASIC_AUTH. To encrypt the secret, you can use customer or service managed keys. When using a customer managed KMS key, the Lambda execution role requires kms:Decrypt permissions.

" }, "MaximumRecordAgeInSeconds":{ "shape":"MaximumRecordAgeInSeconds", - "documentation":"

(Streams) The maximum age of a record that Lambda sends to a function for processing.

" + "documentation":"

(Streams) Discard records older than the specified age. The default value is infinite (-1). When set to infinite (-1), failed records are retried until the record expires.

" }, "BisectBatchOnFunctionError":{ "shape":"BisectBatchOnFunctionError", - "documentation":"

(Streams) If the function returns an error, split the batch in two and retry.

" + "documentation":"

(Streams) If the function returns an error, split the batch in two and retry. The default value is false.

" }, "MaximumRetryAttempts":{ "shape":"MaximumRetryAttemptsEventSourceMapping", - "documentation":"

(Streams) The maximum number of times to retry when the function returns an error.

" + "documentation":"

(Streams) Discard records after the specified number of retries. The default value is infinite (-1). When set to infinite (-1), failed records are retried until the record expires.

" } }, "documentation":"

A mapping between an AWS resource and an AWS Lambda function. See CreateEventSourceMapping for details.

" @@ -3418,6 +3434,18 @@ "min":1, "pattern":"(|[a-zA-Z0-9$_-]+)" }, + "Queue":{ + "type":"string", + "max":1000, + "min":1, + "pattern":"[\\s\\S]*" + }, + "Queues":{ + "type":"list", + "member":{"shape":"Queue"}, + "max":1, + "min":1 + }, "RemoveLayerVersionPermissionRequest":{ "type":"structure", "required":[ @@ -3623,6 +3651,30 @@ "error":{"httpStatusCode":500}, "exception":true }, + "SourceAccessConfiguration":{ + "type":"structure", + "members":{ + "Type":{ + "shape":"SourceAccessType", + "documentation":"

To reference the secret, use the following format: [ { \"Type\": \"BASIC_AUTH\", \"URI\": \"secretARN\" } ]

The value of Type is always BASIC_AUTH. To encrypt the secret, you can use customer or service managed keys. When using a customer managed KMS key, the Lambda execution role requires kms:Decrypt permissions.

" + }, + "URI":{ + "shape":"Arn", + "documentation":"

To reference the secret, use the following format: [ { \"Type\": \"BASIC_AUTH\", \"URI\": \"secretARN\" } ]

The value of Type is always BASIC_AUTH. To encrypt the secret, you can use customer or service managed keys. When using a customer managed KMS key, the Lambda execution role requires kms:Decrypt permissions.

" + } + }, + "documentation":"

(MQ) The Secrets Manager secret that stores your broker credentials. To store your secret, use the following format: { \"username\": \"your username\", \"password\": \"your password\" }

" + }, + "SourceAccessConfigurations":{ + "type":"list", + "member":{"shape":"SourceAccessConfiguration"}, + "max":1, + "min":1 + }, + "SourceAccessType":{ + "type":"string", + "enum":["BASIC_AUTH"] + }, "SourceOwner":{ "type":"string", "pattern":"\\d{12}" @@ -3893,6 +3945,10 @@ "ParallelizationFactor":{ "shape":"ParallelizationFactor", "documentation":"

(Streams) The number of batches to process from each shard concurrently.

" + }, + "SourceAccessConfigurations":{ + "shape":"SourceAccessConfigurations", + "documentation":"

(MQ) The Secrets Manager secret that stores your broker credentials. To store your secret, use the following format: { \"username\": \"your username\", \"password\": \"your password\" }

To reference the secret, use the following format: [ { \"Type\": \"BASIC_AUTH\", \"URI\": \"secretARN\" } ]

The value of Type is always BASIC_AUTH. To encrypt the secret, you can use customer or service managed keys. When using a customer managed KMS key, the Lambda execution role requires kms:Decrypt permissions.

" } } }, From 3174685158221155879869f31cc93201d6a44a29 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 5 Nov 2020 19:15:58 +0000 Subject: [PATCH 134/339] Amazon Fraud Detector Update: Added support for deleting resources like Variables, ExternalModels, Outcomes, Models, ModelVersions, Labels, EventTypes and EntityTypes. Updated DeleteEvent operation to catch missing exceptions. --- .../feature-AmazonFraudDetector-32067eb.json | 6 + .../codegen-resources/service-2.json | 289 +++++++++++++++++- 2 files changed, 286 insertions(+), 9 deletions(-) create mode 100644 .changes/next-release/feature-AmazonFraudDetector-32067eb.json diff --git a/.changes/next-release/feature-AmazonFraudDetector-32067eb.json b/.changes/next-release/feature-AmazonFraudDetector-32067eb.json new file mode 100644 index 000000000000..4f7ecd280322 --- /dev/null +++ b/.changes/next-release/feature-AmazonFraudDetector-32067eb.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Fraud Detector", + "contributor": "", + "description": "Added support for deleting resources like Variables, ExternalModels, Outcomes, Models, ModelVersions, Labels, EventTypes and EntityTypes. Updated DeleteEvent operation to catch missing exceptions." +} diff --git a/services/frauddetector/src/main/resources/codegen-resources/service-2.json b/services/frauddetector/src/main/resources/codegen-resources/service-2.json index c7afce8be30f..f7dc9352b732 100644 --- a/services/frauddetector/src/main/resources/codegen-resources/service-2.json +++ b/services/frauddetector/src/main/resources/codegen-resources/service-2.json @@ -139,7 +139,7 @@ {"shape":"ThrottlingException"}, {"shape":"AccessDeniedException"} ], - "documentation":"

Deletes the detector. Before deleting a detector, you must first delete all detector versions and rule versions associated with the detector.

" + "documentation":"

Deletes the detector. Before deleting a detector, you must first delete all detector versions and rule versions associated with the detector.

When you delete a detector, Amazon Fraud Detector permanently deletes the detector and the data is no longer stored in Amazon Fraud Detector.

" }, "DeleteDetectorVersion":{ "name":"DeleteDetectorVersion", @@ -157,7 +157,23 @@ {"shape":"ConflictException"}, {"shape":"AccessDeniedException"} ], - "documentation":"

Deletes the detector version. You cannot delete detector versions that are in ACTIVE status.

" + "documentation":"

Deletes the detector version. You cannot delete detector versions that are in ACTIVE status.

When you delete a detector version, Amazon Fraud Detector permanently deletes the detector and the data is no longer stored in Amazon Fraud Detector.

" + }, + "DeleteEntityType":{ + "name":"DeleteEntityType", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteEntityTypeRequest"}, + "output":{"shape":"DeleteEntityTypeResult"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"ConflictException"}, + {"shape":"InternalServerException"}, + {"shape":"AccessDeniedException"} + ], + "documentation":"

Deletes an entity type.

You cannot delete an entity type that is included in an event type.

When you delete an entity type, Amazon Fraud Detector permanently deletes that entity type from the evaluation history, and the data is no longer stored in Amazon Fraud Detector.

" }, "DeleteEvent":{ "name":"DeleteEvent", @@ -170,9 +186,107 @@ "errors":[ {"shape":"InternalServerException"}, {"shape":"ThrottlingException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Deletes the specified event.

When you delete an event, Amazon Fraud Detector permanently deletes that event from the evaluation history, and the event data is no longer stored in Amazon Fraud Detector.

" + }, + "DeleteEventType":{ + "name":"DeleteEventType", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteEventTypeRequest"}, + "output":{"shape":"DeleteEventTypeResult"}, + "errors":[ + {"shape":"ConflictException"}, + {"shape":"ValidationException"}, + {"shape":"InternalServerException"}, + {"shape":"AccessDeniedException"} + ], + "documentation":"

Deletes an event type.

You cannot delete an event type that is used in a detector or a model.

When you delete an entity type, Amazon Fraud Detector permanently deletes that entity type from the evaluation history, and the data is no longer stored in Amazon Fraud Detector.

" + }, + "DeleteExternalModel":{ + "name":"DeleteExternalModel", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteExternalModelRequest"}, + "output":{"shape":"DeleteExternalModelResult"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"ConflictException"}, + {"shape":"InternalServerException"}, + {"shape":"ThrottlingException"}, + {"shape":"AccessDeniedException"} + ], + "documentation":"

Removes a SageMaker model from Amazon Fraud Detector.

You can remove an Amazon SageMaker model if it is not associated with a detector version. Removing a SageMaker model disconnects it from Amazon Fraud Detector, but the model remains available in SageMaker.

" + }, + "DeleteLabel":{ + "name":"DeleteLabel", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteLabelRequest"}, + "output":{"shape":"DeleteLabelResult"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"ConflictException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Deletes a label.

You cannot delete labels that are included in an event type in Amazon Fraud Detector.

You cannot delete a label assigned to an event ID. You must first delete the relevant event ID.

When you delete a label, Amazon Fraud Detector permanently deletes that label from the evaluation history, and the data is no longer stored in Amazon Fraud Detector.

" + }, + "DeleteModel":{ + "name":"DeleteModel", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteModelRequest"}, + "output":{"shape":"DeleteModelResult"}, + "errors":[ + {"shape":"ConflictException"}, + {"shape":"ValidationException"}, + {"shape":"InternalServerException"}, + {"shape":"AccessDeniedException"} + ], + "documentation":"

Deletes a model.

You can delete models and model versions in Amazon Fraud Detector, provided that they are not associated with a detector version.

When you delete a model, Amazon Fraud Detector permanently deletes that model from the evaluation history, and the data is no longer stored in Amazon Fraud Detector.

" + }, + "DeleteModelVersion":{ + "name":"DeleteModelVersion", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteModelVersionRequest"}, + "output":{"shape":"DeleteModelVersionResult"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"InternalServerException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ConflictException"} + ], + "documentation":"

Deletes a model version.

You can delete models and model versions in Amazon Fraud Detector, provided that they are not associated with a detector version.

When you delete a model version, Amazon Fraud Detector permanently deletes that model version from the evaluation history, and the data is no longer stored in Amazon Fraud Detector.

" + }, + "DeleteOutcome":{ + "name":"DeleteOutcome", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteOutcomeRequest"}, + "output":{"shape":"DeleteOutcomeResult"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"InternalServerException"}, + {"shape":"ThrottlingException"}, + {"shape":"ConflictException"}, {"shape":"AccessDeniedException"} ], - "documentation":"

Deletes the specified event.

" + "documentation":"

Deletes an outcome.

You cannot delete an outcome that is used in a rule version.

When you delete an outcome, Amazon Fraud Detector permanently deletes that outcome from the evaluation history, and the data is no longer stored in Amazon Fraud Detector.

" }, "DeleteRule":{ "name":"DeleteRule", @@ -189,7 +303,24 @@ {"shape":"ThrottlingException"}, {"shape":"AccessDeniedException"} ], - "documentation":"

Deletes the rule. You cannot delete a rule if it is used by an ACTIVE or INACTIVE detector version.

" + "documentation":"

Deletes the rule. You cannot delete a rule if it is used by an ACTIVE or INACTIVE detector version.

When you delete a rule, Amazon Fraud Detector permanently deletes that rule from the evaluation history, and the data is no longer stored in Amazon Fraud Detector.

" + }, + "DeleteVariable":{ + "name":"DeleteVariable", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteVariableRequest"}, + "output":{"shape":"DeleteVariableResult"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"ConflictException"}, + {"shape":"InternalServerException"}, + {"shape":"ThrottlingException"}, + {"shape":"AccessDeniedException"} + ], + "documentation":"

Deletes a variable.

You can't delete variables that are included in an event type in Amazon Fraud Detector.

Amazon Fraud Detector automatically deletes model output variables and SageMaker model output variables when you delete the model. You can't delete these variables manually.

When you delete a variable, Amazon Fraud Detector permanently deletes that variable from the evaluation history, and the data is no longer stored in Amazon Fraud Detector.

" }, "DescribeDetector":{ "name":"DescribeDetector", @@ -287,7 +418,8 @@ {"shape":"ResourceNotFoundException"}, {"shape":"InternalServerException"}, {"shape":"ThrottlingException"}, - {"shape":"AccessDeniedException"} + {"shape":"AccessDeniedException"}, + {"shape":"ConflictException"} ], "documentation":"

Evaluates an event against a detector version. If a version ID is not provided, the detector’s (ACTIVE) version is used.

" }, @@ -1161,6 +1293,21 @@ "members":{ } }, + "DeleteEntityTypeRequest":{ + "type":"structure", + "required":["name"], + "members":{ + "name":{ + "shape":"identifier", + "documentation":"

The name of the entity type to delete.

" + } + } + }, + "DeleteEntityTypeResult":{ + "type":"structure", + "members":{ + } + }, "DeleteEventRequest":{ "type":"structure", "required":[ @@ -1169,11 +1316,11 @@ ], "members":{ "eventId":{ - "shape":"string", + "shape":"identifier", "documentation":"

The ID of the event to delete.

" }, "eventTypeName":{ - "shape":"string", + "shape":"identifier", "documentation":"

The name of the event type.

" } } @@ -1183,6 +1330,115 @@ "members":{ } }, + "DeleteEventTypeRequest":{ + "type":"structure", + "required":["name"], + "members":{ + "name":{ + "shape":"identifier", + "documentation":"

The name of the event type to delete.

" + } + } + }, + "DeleteEventTypeResult":{ + "type":"structure", + "members":{ + } + }, + "DeleteExternalModelRequest":{ + "type":"structure", + "required":["modelEndpoint"], + "members":{ + "modelEndpoint":{ + "shape":"sageMakerEndpointIdentifier", + "documentation":"

The endpoint of the Amazon Sagemaker model to delete.

" + } + } + }, + "DeleteExternalModelResult":{ + "type":"structure", + "members":{ + } + }, + "DeleteLabelRequest":{ + "type":"structure", + "required":["name"], + "members":{ + "name":{ + "shape":"identifier", + "documentation":"

The name of the label to delete.

" + } + } + }, + "DeleteLabelResult":{ + "type":"structure", + "members":{ + } + }, + "DeleteModelRequest":{ + "type":"structure", + "required":[ + "modelId", + "modelType" + ], + "members":{ + "modelId":{ + "shape":"modelIdentifier", + "documentation":"

The model ID of the model to delete.

" + }, + "modelType":{ + "shape":"ModelTypeEnum", + "documentation":"

The model type of the model to delete.

" + } + } + }, + "DeleteModelResult":{ + "type":"structure", + "members":{ + } + }, + "DeleteModelVersionRequest":{ + "type":"structure", + "required":[ + "modelId", + "modelType", + "modelVersionNumber" + ], + "members":{ + "modelId":{ + "shape":"modelIdentifier", + "documentation":"

The model ID of the model version to delete.

" + }, + "modelType":{ + "shape":"ModelTypeEnum", + "documentation":"

The model type of the model version to delete.

" + }, + "modelVersionNumber":{ + "shape":"floatVersionString", + "documentation":"

The model version number of the model version to delete.

" + } + } + }, + "DeleteModelVersionResult":{ + "type":"structure", + "members":{ + } + }, + "DeleteOutcomeRequest":{ + "type":"structure", + "required":["name"], + "members":{ + "name":{ + "shape":"identifier", + "documentation":"

The name of the outcome to delete.

" + } + } + }, + "DeleteOutcomeResult":{ + "type":"structure", + "members":{ + } + }, "DeleteRuleRequest":{ "type":"structure", "required":["rule"], @@ -1195,6 +1451,21 @@ "members":{ } }, + "DeleteVariableRequest":{ + "type":"structure", + "required":["name"], + "members":{ + "name":{ + "shape":"string", + "documentation":"

The name of the variable to delete.

" + } + } + }, + "DeleteVariableResult":{ + "type":"structure", + "members":{ + } + }, "DescribeDetectorRequest":{ "type":"structure", "required":["detectorId"], @@ -1894,7 +2165,7 @@ }, "status":{ "shape":"string", - "documentation":"

The model version status.

" + "documentation":"

The model version status.

Possible values are:

  • TRAINING_IN_PROGRESS

  • TRAINING_COMPLETE

  • ACTIVATE_REQUESTED

  • ACTIVATE_IN_PROGRESS

  • ACTIVE

  • INACTIVATE_REQUESTED

  • INACTIVATE_IN_PROGRESS

  • INACTIVE

  • ERROR

" }, "arn":{ "shape":"fraudDetectorArn", @@ -2064,7 +2335,7 @@ "type":"string", "max":90, "min":7, - "pattern":"^\\w{8}-\\w{4}-\\w{4}-\\w{4}-\\w{12}|DEFAULT|arn:[a-zA-Z0-9-]+:kms:[a-zA-Z0-9-]+:\\d{12}:key\\/\\w{8}-\\w{4}-\\w{4}-\\w{4}-\\w{12}$" + "pattern":"^DEFAULT|arn:[a-zA-Z0-9-]+:kms:[a-zA-Z0-9-]+:\\d{12}:key\\/\\w{8}-\\w{4}-\\w{4}-\\w{4}-\\w{12}$" }, "Label":{ "type":"structure", From 7a5cfe1f001b837e4a87407884022b7a7803ba3d Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 5 Nov 2020 19:15:57 +0000 Subject: [PATCH 135/339] Amazon Elastic Compute Cloud Update: Documentation updates for EC2. --- ...ure-AmazonElasticComputeCloud-cebf009.json | 6 +++ .../codegen-resources/service-2.json | 40 ++++++++++--------- 2 files changed, 28 insertions(+), 18 deletions(-) create mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-cebf009.json diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-cebf009.json b/.changes/next-release/feature-AmazonElasticComputeCloud-cebf009.json new file mode 100644 index 000000000000..ff49cbefae6b --- /dev/null +++ b/.changes/next-release/feature-AmazonElasticComputeCloud-cebf009.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "Documentation updates for EC2." +} diff --git a/services/ec2/src/main/resources/codegen-resources/service-2.json b/services/ec2/src/main/resources/codegen-resources/service-2.json index 9f2751a69f55..3d1c3f13630e 100755 --- a/services/ec2/src/main/resources/codegen-resources/service-2.json +++ b/services/ec2/src/main/resources/codegen-resources/service-2.json @@ -159,7 +159,7 @@ }, "input":{"shape":"AssociateEnclaveCertificateIamRoleRequest"}, "output":{"shape":"AssociateEnclaveCertificateIamRoleResult"}, - "documentation":"

Associates an AWS Identity and Access Management (IAM) role with an AWS Certificate Manager (ACM) certificate. This enables the certificate to be used by the ACM for Nitro Enclaves application inside an enclave. For more information, see AWS Certificate Manager for Nitro Enclaves in the Amazon Elastic Compute Cloud User Guide.

When the IAM role is associated with the ACM certificate, places the certificate, certificate chain, and encrypted private key in an Amazon S3 bucket that only the associated IAM role can access. The private key of the certificate is encrypted with an AWS-managed KMS key that has an attached attestation-based key policy.

To enable the IAM role to access the Amazon S3 object, you must grant it permission to call s3:GetObject on the Amazon S3 bucket returned by the command. To enable the IAM role to access the AWS KMS key, you must grant it permission to call kms:Decrypt on AWS KMS key returned by the command. For more information, see Grant the role permission to access the certificate and encryption key in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

Associates an AWS Identity and Access Management (IAM) role with an AWS Certificate Manager (ACM) certificate. This enables the certificate to be used by the ACM for Nitro Enclaves application inside an enclave. For more information, see AWS Certificate Manager for Nitro Enclaves in the AWS Nitro Enclaves User Guide.

When the IAM role is associated with the ACM certificate, places the certificate, certificate chain, and encrypted private key in an Amazon S3 bucket that only the associated IAM role can access. The private key of the certificate is encrypted with an AWS-managed KMS customer master (CMK) that has an attached attestation-based CMK policy.

To enable the IAM role to access the Amazon S3 object, you must grant it permission to call s3:GetObject on the Amazon S3 bucket returned by the command. To enable the IAM role to access the AWS KMS CMK, you must grant it permission to call kms:Decrypt on AWS KMS CMK returned by the command. For more information, see Grant the role permission to access the certificate and encryption key in the AWS Nitro Enclaves User Guide.

" }, "AssociateIamInstanceProfile":{ "name":"AssociateIamInstanceProfile", @@ -2610,7 +2610,7 @@ }, "input":{"shape":"DescribeVpcEndpointServicesRequest"}, "output":{"shape":"DescribeVpcEndpointServicesResult"}, - "documentation":"

Describes available services to which you can create a VPC endpoint.

" + "documentation":"

Describes available services to which you can create a VPC endpoint.

When the service provider and the consumer have different accounts multiple Availability Zones, and the consumer views the VPC endpoint service information, the response only includes the common Availability Zones. For example, when the service provider account uses us-east-1a and us-east-1c and the consumer uses us-east-1a and us-east-1a and us-east-1b, the response includes the VPC endpoint services in the common Availability Zone, us-east-1a.

" }, "DescribeVpcEndpoints":{ "name":"DescribeVpcEndpoints", @@ -2795,7 +2795,7 @@ }, "input":{"shape":"DisassociateEnclaveCertificateIamRoleRequest"}, "output":{"shape":"DisassociateEnclaveCertificateIamRoleResult"}, - "documentation":"

Disassociates an IAM role from an AWS Certificate Manager (ACM) certificate. Disassociating an IAM role from an ACM certificate removes the Amazon S3 object that contains the certificate, certificate chain, and encrypted private key from the Amazon S3 bucket. It also revokes the IAM role's permission to use the AWS Key Management Service (KMS) key used to encrypt the private key. This effectively revokes the role's permission to use the certificate.

" + "documentation":"

Disassociates an IAM role from an AWS Certificate Manager (ACM) certificate. Disassociating an IAM role from an ACM certificate removes the Amazon S3 object that contains the certificate, certificate chain, and encrypted private key from the Amazon S3 bucket. It also revokes the IAM role's permission to use the AWS Key Management Service (KMS) customer master key (CMK) used to encrypt the private key. This effectively revokes the role's permission to use the certificate.

" }, "DisassociateIamInstanceProfile":{ "name":"DisassociateIamInstanceProfile", @@ -2972,7 +2972,7 @@ }, "input":{"shape":"GetAssociatedEnclaveCertificateIamRolesRequest"}, "output":{"shape":"GetAssociatedEnclaveCertificateIamRolesResult"}, - "documentation":"

Returns the IAM roles that are associated with the specified AWS Certificate Manager (ACM) certificate. It also returns the name of the Amazon S3 bucket and the Amazon S3 object key where the certificate, certificate chain, and encrypted private key bundle are stored, and the ARN of the AWS Key Management Service (KMS) key that's used to encrypt the private key.

" + "documentation":"

Returns the IAM roles that are associated with the specified AWS Certificate Manager (ACM) certificate. It also returns the name of the Amazon S3 bucket and the Amazon S3 object key where the certificate, certificate chain, and encrypted private key bundle are stored, and the ARN of the AWS Key Management Service (KMS) customer master key (CMK) that's used to encrypt the private key.

" }, "GetAssociatedIpv6PoolCidrs":{ "name":"GetAssociatedIpv6PoolCidrs", @@ -4093,7 +4093,7 @@ }, "input":{"shape":"StartVpcEndpointServicePrivateDnsVerificationRequest"}, "output":{"shape":"StartVpcEndpointServicePrivateDnsVerificationResult"}, - "documentation":"

Initiates the verification process to prove that the service provider owns the private DNS name domain for the endpoint service.

The service provider must successfully perform the verification before the consumer can use the name to access the service.

Before the service provider runs this command, they must add a record to the DNS server. For more information, see Adding a TXT Record to Your Domain's DNS Server in the Amazon VPC User Guide.

" + "documentation":"

Initiates the verification process to prove that the service provider owns the private DNS name domain for the endpoint service.

The service provider must successfully perform the verification before the consumer can use the name to access the service.

Before the service provider runs this command, they must add a record to the DNS server. For more information, see Adding a TXT Record to Your Domain's DNS Server in the Amazon VPC User Guide.

" }, "StopInstances":{ "name":"StopInstances", @@ -4567,7 +4567,7 @@ "documentation":"

[EC2-VPC] The Elastic IP address to recover or an IPv4 address from an address pool.

" }, "PublicIpv4Pool":{ - "shape":"String", + "shape":"Ipv4PoolEc2Id", "documentation":"

The ID of an address pool that you own. Use this parameter to let Amazon EC2 select an address from the address pool. To specify a specific address from the address pool, use the Address parameter instead.

" }, "NetworkBorderGroup":{ @@ -5050,7 +5050,7 @@ }, "EncryptionKmsKeyId":{ "shape":"String", - "documentation":"

The ID of the AWS Key Management Service (KMS) key used to encrypt the private key of the certificate.

", + "documentation":"

The ID of the AWS KMS CMK used to encrypt the private key of the certificate.

", "locationName":"encryptionKmsKeyId" } } @@ -5294,7 +5294,7 @@ }, "EncryptionKmsKeyId":{ "shape":"String", - "documentation":"

The ID of the KMS key used to encrypt the private key.

", + "documentation":"

The ID of the KMS customer master key (CMK) used to encrypt the private key.

", "locationName":"encryptionKmsKeyId" } }, @@ -7809,7 +7809,7 @@ }, "KmsKeyId":{ "shape":"KmsKeyId", - "documentation":"

An identifier for the symmetric AWS Key Management Service (AWS KMS) customer master key (CMK) to use when creating the encrypted volume. This parameter is only required if you want to use a non-default CMK; if this parameter is not specified, the default CMK for EBS is used. If a KmsKeyId is specified, the Encrypted flag must also be set.

To specify a CMK, use its key ID, Amazon Resource Name (ARN), alias name, or alias ARN. When using an alias name, prefix it with \"alias/\". For example:

  • Key ID: 1234abcd-12ab-34cd-56ef-1234567890ab

  • Key ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab

  • Alias name: alias/ExampleAlias

  • Alias ARN: arn:aws:kms:us-east-2:111122223333:alias/ExampleAlias

AWS parses KmsKeyId asynchronously, meaning that the action you call may appear to complete even though you provided an invalid identifier. This action will eventually report failure.

The specified CMK must exist in the Region that the snapshot is being copied to.

Amazon EBS does not support asymmetric CMKs.

", + "documentation":"

The identifier of the symmetric AWS Key Management Service (AWS KMS) customer master key (CMK) to use when creating encrypted volumes. If this parameter is not specified, your AWS managed CMK for EBS is used. If you specify a CMK, you must also set the encrypted state to true.

You can specify a CMK using any of the following:

  • Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.

  • Key alias. For example, alias/ExampleAlias.

  • Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab.

  • Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.

AWS authenticates the CMK asynchronously. Therefore, if you specify an identifier that is not valid, the action can appear to complete, but eventually fails.

The specified CMK must exist in the destination Region.

Amazon EBS does not support asymmetric CMKs.

", "locationName":"kmsKeyId" }, "Name":{ @@ -7866,7 +7866,7 @@ }, "KmsKeyId":{ "shape":"KmsKeyId", - "documentation":"

The identifier of the AWS Key Management Service (AWS KMS) customer master key (CMK) to use for Amazon EBS encryption. If this parameter is not specified, your AWS managed CMK for EBS is used. If KmsKeyId is specified, the encrypted state must be true.

You can specify the CMK using any of the following:

  • Key ID. For example, key/1234abcd-12ab-34cd-56ef-1234567890ab.

  • Key alias. For example, alias/ExampleAlias.

  • Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/abcd1234-a123-456a-a12b-a123b4cd56ef.

  • Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.

AWS authenticates the CMK asynchronously. Therefore, if you specify an ID, alias, or ARN that is not valid, the action can appear to complete, but eventually fails.

", + "documentation":"

The identifier of the AWS Key Management Service (AWS KMS) customer master key (CMK) to use for Amazon EBS encryption. If this parameter is not specified, your AWS managed CMK for EBS is used. If KmsKeyId is specified, the encrypted state must be true.

You can specify the CMK using any of the following:

  • Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.

  • Key alias. For example, alias/ExampleAlias.

  • Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab.

  • Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.

AWS authenticates the CMK asynchronously. Therefore, if you specify an ID, alias, or ARN that is not valid, the action can appear to complete, but eventually fails.

", "locationName":"kmsKeyId" }, "PresignedUrl":{ @@ -8703,7 +8703,11 @@ }, "CreateInstanceExportTaskRequest":{ "type":"structure", - "required":["InstanceId"], + "required":[ + "ExportToS3Task", + "InstanceId", + "TargetEnvironment" + ], "members":{ "Description":{ "shape":"String", @@ -10157,7 +10161,7 @@ }, "Ipv6Support":{ "shape":"Ipv6SupportValue", - "documentation":"

Enable or disable IPv6 support. The default is enable.

" + "documentation":"

Enable or disable IPv6 support.

" }, "ApplianceModeSupport":{ "shape":"ApplianceModeSupportValue", @@ -10232,7 +10236,7 @@ }, "KmsKeyId":{ "shape":"KmsKeyId", - "documentation":"

The identifier of the AWS Key Management Service (AWS KMS) customer master key (CMK) to use for Amazon EBS encryption. If this parameter is not specified, your AWS managed CMK for EBS is used. If KmsKeyId is specified, the encrypted state must be true.

You can specify the CMK using any of the following:

  • Key ID. For example, key/1234abcd-12ab-34cd-56ef-1234567890ab.

  • Key alias. For example, alias/ExampleAlias.

  • Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/abcd1234-a123-456a-a12b-a123b4cd56ef.

  • Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.

AWS authenticates the CMK asynchronously. Therefore, if you specify an ID, alias, or ARN that is not valid, the action can appear to complete, but eventually fails.

" + "documentation":"

The identifier of the AWS Key Management Service (AWS KMS) customer master key (CMK) to use for Amazon EBS encryption. If this parameter is not specified, your AWS managed CMK for EBS is used. If KmsKeyId is specified, the encrypted state must be true.

You can specify the CMK using any of the following:

  • Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.

  • Key alias. For example, alias/ExampleAlias.

  • Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab.

  • Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.

AWS authenticates the CMK asynchronously. Therefore, if you specify an ID, alias, or ARN that is not valid, the action can appear to complete, but eventually fails.

" }, "OutpostArn":{ "shape":"String", @@ -13469,7 +13473,7 @@ }, "Filter":{ "shape":"FilterList", - "documentation":"

One or more filters.

  • deliver-log-status - The status of the logs delivery (SUCCESS | FAILED).

  • log-destination-type - The type of destination to which the flow log publishes data. Possible destination types include cloud-watch-logs and S3.

  • flow-log-id - The ID of the flow log.

  • log-group-name - The name of the log group.

  • resource-id - The ID of the VPC, subnet, or network interface.

  • traffic-type - The type of traffic (ACCEPT | REJECT | ALL).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

" + "documentation":"

One or more filters.

  • deliver-log-status - The status of the logs delivery (SUCCESS | FAILED).

  • log-destination-type - The type of destination to which the flow log publishes data. Possible destination types include cloud-watch-logs and s3.

  • flow-log-id - The ID of the flow log.

  • log-group-name - The name of the log group.

  • resource-id - The ID of the VPC, subnet, or network interface.

  • traffic-type - The type of traffic (ACCEPT | REJECT | ALL).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

" }, "FlowLogIds":{ "shape":"FlowLogIdList", @@ -16409,7 +16413,7 @@ }, "Filters":{ "shape":"FilterList", - "documentation":"

One or more filters. The possible values are:

  • transit-gateway-attachment-id - The ID of the transit gateway attachment.

  • local-owner-id - The ID of your AWS account.

  • remote-owner-id - The ID of the AWS account in the remote Region that owns the transit gateway.

  • state - The state of the peering attachment. Valid values are available | deleted | deleting | failed | failing | initiatingRequest | modifying | pendingAcceptance | pending | rollingBack | rejected | rejecting).

  • transit-gateway-id - The ID of the transit gateway.

", + "documentation":"

One or more filters. The possible values are:

  • transit-gateway-attachment-id - The ID of the transit gateway attachment.

  • local-owner-id - The ID of your AWS account.

  • remote-owner-id - The ID of the AWS account in the remote Region that owns the transit gateway.

  • state - The state of the peering attachment. Valid values are available | deleted | deleting | failed | failing | initiatingRequest | modifying | pendingAcceptance | pending | rollingBack | rejected | rejecting).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources that have a tag with a specific key, regardless of the tag value.

  • transit-gateway-id - The ID of the transit gateway.

", "locationName":"Filter" }, "MaxResults":{ @@ -26943,7 +26947,7 @@ "members":{ "KmsKeyId":{ "shape":"KmsKeyId", - "documentation":"

The identifier of the AWS Key Management Service (AWS KMS) customer master key (CMK) to use for Amazon EBS encryption. If this parameter is not specified, your AWS managed CMK for EBS is used. If KmsKeyId is specified, the encrypted state must be true.

You can specify the CMK using any of the following:

  • Key ID. For example, key/1234abcd-12ab-34cd-56ef-1234567890ab.

  • Key alias. For example, alias/ExampleAlias.

  • Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/abcd1234-a123-456a-a12b-a123b4cd56ef.

  • Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.

AWS authenticates the CMK asynchronously. Therefore, if you specify an ID, alias, or ARN that is not valid, the action can appear to complete, but eventually fails.

Amazon EBS does not support asymmetric CMKs.

" + "documentation":"

The identifier of the AWS Key Management Service (AWS KMS) customer master key (CMK) to use for Amazon EBS encryption. If this parameter is not specified, your AWS managed CMK for EBS is used. If KmsKeyId is specified, the encrypted state must be true.

You can specify the CMK using any of the following:

  • Key ID. For example, 1234abcd-12ab-34cd-56ef-1234567890ab.

  • Key alias. For example, alias/ExampleAlias.

  • Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab.

  • Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.

AWS authenticates the CMK asynchronously. Therefore, if you specify an ID, alias, or ARN that is not valid, the action can appear to complete, but eventually fails.

Amazon EBS does not support asymmetric CMKs.

" }, "DryRun":{ "shape":"Boolean", @@ -34677,7 +34681,7 @@ }, "OwnerAlias":{ "shape":"String", - "documentation":"

The AWS owner alias, as maintained by Amazon. The possible values are: amazon | self | all | aws-marketplace | microsoft. This AWS owner alias is not to be confused with the user-configured AWS account alias, which is set from the IAM console.

", + "documentation":"

The AWS owner alias, from an Amazon-maintained list (amazon). This is not the user-configured AWS account alias set using the IAM console.

", "locationName":"ownerAlias" }, "Tags":{ @@ -36196,7 +36200,7 @@ "members":{ "ResourceType":{ "shape":"ResourceType", - "documentation":"

The type of resource to tag. Currently, the resource types that support tagging on creation are: capacity-reservation | client-vpn-endpoint | customer-gateway | dedicated-host | dhcp-options | export-image-task | export-instance-task | fleet | fpga-image | host-reservation | import-image-task | import-snapshot-task | instance | internet-gateway | ipv4pool-ec2 | ipv6pool-ec2 | key-pair | launch-template | placement-group | prefix-list | natgateway | network-acl | route-table | security-group | spot-fleet-request | spot-instances-request | snapshot | subnet | traffic-mirror-filter | traffic-mirror-session | traffic-mirror-target | transit-gateway | transit-gateway-attachment | transit-gateway-route-table | volume |vpc | vpc-peering-connection | vpc-endpoint (for interface and gateway endpoints) | vpc-endpoint-service (for AWS PrivateLink) | vpc-flow-log | vpn-connection | vpn-gateway.

To tag a resource after it has been created, see CreateTags.

", + "documentation":"

The type of resource to tag. Currently, the resource types that support tagging on creation are: capacity-reservation | carrier-gateway | client-vpn-endpoint | customer-gateway | dedicated-host | dhcp-options | export-image-task | export-instance-task | fleet | fpga-image | host-reservation | import-image-task | import-snapshot-task | instance | internet-gateway | ipv4pool-ec2 | ipv6pool-ec2 | key-pair | launch-template | placement-group | prefix-list | natgateway | network-acl | route-table | security-group | spot-fleet-request | spot-instances-request | snapshot | subnet | traffic-mirror-filter | traffic-mirror-session | traffic-mirror-target | transit-gateway | transit-gateway-attachment | transit-gateway-route-table | volume |vpc | vpc-peering-connection | vpc-endpoint (for interface and gateway endpoints) | vpc-endpoint-service (for AWS PrivateLink) | vpc-flow-log | vpn-connection | vpn-gateway.

To tag a resource after it has been created, see CreateTags.

", "locationName":"resourceType" }, "Tags":{ From e908fbe4aa2ef0f6d467eab6682b9d5341231fad Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 5 Nov 2020 19:16:00 +0000 Subject: [PATCH 136/339] AWS App Mesh Update: This release adds circuit breaking capabilities to your mesh with connection pooling and outlier detection support. --- .../feature-AWSAppMesh-2527170.json | 6 + .../codegen-resources/paginators-1.json | 18 +- .../codegen-resources/service-2.json | 9763 ++++++++--------- 3 files changed, 4517 insertions(+), 5270 deletions(-) create mode 100644 .changes/next-release/feature-AWSAppMesh-2527170.json diff --git a/.changes/next-release/feature-AWSAppMesh-2527170.json b/.changes/next-release/feature-AWSAppMesh-2527170.json new file mode 100644 index 000000000000..6ac1297a3301 --- /dev/null +++ b/.changes/next-release/feature-AWSAppMesh-2527170.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS App Mesh", + "contributor": "", + "description": "This release adds circuit breaking capabilities to your mesh with connection pooling and outlier detection support." +} diff --git a/services/appmesh/src/main/resources/codegen-resources/paginators-1.json b/services/appmesh/src/main/resources/codegen-resources/paginators-1.json index ac64b5684dab..03f248425e21 100644 --- a/services/appmesh/src/main/resources/codegen-resources/paginators-1.json +++ b/services/appmesh/src/main/resources/codegen-resources/paginators-1.json @@ -2,51 +2,51 @@ "pagination": { "ListGatewayRoutes": { "input_token": "nextToken", - "limit_key": "limit", "output_token": "nextToken", + "limit_key": "limit", "result_key": "gatewayRoutes" }, "ListMeshes": { "input_token": "nextToken", - "limit_key": "limit", "output_token": "nextToken", + "limit_key": "limit", "result_key": "meshes" }, "ListRoutes": { "input_token": "nextToken", - "limit_key": "limit", "output_token": "nextToken", + "limit_key": "limit", "result_key": "routes" }, "ListTagsForResource": { "input_token": "nextToken", - "limit_key": "limit", "output_token": "nextToken", + "limit_key": "limit", "result_key": "tags" }, "ListVirtualGateways": { "input_token": "nextToken", - "limit_key": "limit", "output_token": "nextToken", + "limit_key": "limit", "result_key": "virtualGateways" }, "ListVirtualNodes": { "input_token": "nextToken", - "limit_key": "limit", "output_token": "nextToken", + "limit_key": "limit", "result_key": "virtualNodes" }, "ListVirtualRouters": { "input_token": "nextToken", - "limit_key": "limit", "output_token": "nextToken", + "limit_key": "limit", "result_key": "virtualRouters" }, "ListVirtualServices": { "input_token": "nextToken", - "limit_key": "limit", "output_token": "nextToken", + "limit_key": "limit", "result_key": "virtualServices" } } -} \ No newline at end of file +} diff --git a/services/appmesh/src/main/resources/codegen-resources/service-2.json b/services/appmesh/src/main/resources/codegen-resources/service-2.json index 677662813455..a7008d0cf5f6 100644 --- a/services/appmesh/src/main/resources/codegen-resources/service-2.json +++ b/services/appmesh/src/main/resources/codegen-resources/service-2.json @@ -1,5791 +1,4956 @@ { - "version": "2.0", - "metadata": { - "apiVersion": "2019-01-25", - "endpointPrefix": "appmesh", - "jsonVersion": "1.1", - "protocol": "rest-json", - "serviceFullName": "AWS App Mesh", - "serviceId": "App Mesh", - "signatureVersion": "v4", - "signingName": "appmesh", - "uid": "appmesh-2019-01-25" + "version":"2.0", + "metadata":{ + "apiVersion":"2019-01-25", + "endpointPrefix":"appmesh", + "jsonVersion":"1.1", + "protocol":"rest-json", + "serviceFullName":"AWS App Mesh", + "serviceId":"App Mesh", + "signatureVersion":"v4", + "signingName":"appmesh", + "uid":"appmesh-2019-01-25" }, - "documentation": "

AWS App Mesh is a service mesh based on the Envoy proxy that makes it easy to monitor and\n control microservices. App Mesh standardizes how your microservices communicate, giving you\n end-to-end visibility and helping to ensure high availability for your applications.

\n

App Mesh gives you consistent visibility and network traffic controls for every\n microservice in an application. You can use App Mesh with AWS Fargate, Amazon ECS, Amazon EKS,\n Kubernetes on AWS, and Amazon EC2.

\n \n

App Mesh supports microservice applications that use service discovery naming for their\n components. For more information about service discovery on Amazon ECS, see Service Discovery in the Amazon Elastic Container Service Developer Guide. Kubernetes\n kube-dns and coredns are supported. For more information,\n see DNS\n for Services and Pods in the Kubernetes documentation.

\n
", - "operations": { - "CreateGatewayRoute": { - "name": "CreateGatewayRoute", - "http": { - "method": "PUT", - "requestUri": "/v20190125/meshes/{meshName}/virtualGateway/{virtualGatewayName}/gatewayRoutes", - "responseCode": 200 - }, - "input": { - "shape": "CreateGatewayRouteInput" - }, - "output": { - "shape": "CreateGatewayRouteOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ConflictException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "LimitExceededException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Creates a gateway route.

\n

A gateway route is attached to a virtual gateway and routes traffic to an existing\n virtual service. If a route matches a request, it can distribute traffic to a target virtual service.

\n

For more information about gateway routes, see Gateway routes.

", - "idempotent": true - }, - "CreateMesh": { - "name": "CreateMesh", - "http": { - "method": "PUT", - "requestUri": "/v20190125/meshes", - "responseCode": 200 - }, - "input": { - "shape": "CreateMeshInput" - }, - "output": { - "shape": "CreateMeshOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ConflictException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "LimitExceededException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Creates a service mesh.

\n

A service mesh is a logical boundary for network traffic between services that are\n represented by resources within the mesh. After you create your service mesh, you can\n create virtual services, virtual nodes, virtual routers, and routes to distribute traffic\n between the applications in your mesh.

\n

For more information about service meshes, see Service meshes.

", - "idempotent": true - }, - "CreateRoute": { - "name": "CreateRoute", - "http": { - "method": "PUT", - "requestUri": "/v20190125/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes", - "responseCode": 200 - }, - "input": { - "shape": "CreateRouteInput" - }, - "output": { - "shape": "CreateRouteOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ConflictException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "LimitExceededException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Creates a route that is associated with a virtual router.

\n

You can route several different protocols and define a retry policy for a route.\n Traffic can be routed to one or more virtual nodes.

\n

For more information about routes, see Routes.

", - "idempotent": true - }, - "CreateVirtualGateway": { - "name": "CreateVirtualGateway", - "http": { - "method": "PUT", - "requestUri": "/v20190125/meshes/{meshName}/virtualGateways", - "responseCode": 200 - }, - "input": { - "shape": "CreateVirtualGatewayInput" - }, - "output": { - "shape": "CreateVirtualGatewayOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ConflictException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "LimitExceededException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Creates a virtual gateway.

\n

A virtual gateway allows resources outside your mesh to communicate to resources that\n are inside your mesh. The virtual gateway represents an Envoy proxy running in an Amazon ECS\n task, in a Kubernetes service, or on an Amazon EC2 instance. Unlike a virtual node, which\n represents an Envoy running with an application, a virtual gateway represents Envoy deployed by itself.

\n

For more information about virtual gateways, see Virtual gateways.

", - "idempotent": true - }, - "CreateVirtualNode": { - "name": "CreateVirtualNode", - "http": { - "method": "PUT", - "requestUri": "/v20190125/meshes/{meshName}/virtualNodes", - "responseCode": 200 - }, - "input": { - "shape": "CreateVirtualNodeInput" - }, - "output": { - "shape": "CreateVirtualNodeOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ConflictException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "LimitExceededException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Creates a virtual node within a service mesh.

\n

A virtual node acts as a logical pointer to a particular task group, such as an Amazon ECS\n service or a Kubernetes deployment. When you create a virtual node, you can specify the\n service discovery information for your task group, and whether the proxy running in a task\n group will communicate with other proxies using Transport Layer Security (TLS).

\n

You define a listener for any inbound traffic that your virtual node\n expects. Any virtual service that your virtual node expects to communicate to is specified\n as a backend.

\n

The response metadata for your new virtual node contains the arn that is\n associated with the virtual node. Set this value (either the full ARN or the truncated\n resource name: for example, mesh/default/virtualNode/simpleapp) as the\n APPMESH_VIRTUAL_NODE_NAME environment variable for your task group's Envoy\n proxy container in your task definition or pod spec. This is then mapped to the\n node.id and node.cluster Envoy parameters.

\n \n

If you require your Envoy stats or tracing to use a different name, you can override\n the node.cluster value that is set by\n APPMESH_VIRTUAL_NODE_NAME with the\n APPMESH_VIRTUAL_NODE_CLUSTER environment variable.

\n
\n

For more information about virtual nodes, see Virtual nodes.

", - "idempotent": true - }, - "CreateVirtualRouter": { - "name": "CreateVirtualRouter", - "http": { - "method": "PUT", - "requestUri": "/v20190125/meshes/{meshName}/virtualRouters", - "responseCode": 200 - }, - "input": { - "shape": "CreateVirtualRouterInput" - }, - "output": { - "shape": "CreateVirtualRouterOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ConflictException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "LimitExceededException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Creates a virtual router within a service mesh.

\n

Specify a listener for any inbound traffic that your virtual router\n receives. Create a virtual router for each protocol and port that you need to route.\n Virtual routers handle traffic for one or more virtual services within your mesh. After you\n create your virtual router, create and associate routes for your virtual router that direct\n incoming requests to different virtual nodes.

\n

For more information about virtual routers, see Virtual routers.

", - "idempotent": true - }, - "CreateVirtualService": { - "name": "CreateVirtualService", - "http": { - "method": "PUT", - "requestUri": "/v20190125/meshes/{meshName}/virtualServices", - "responseCode": 200 - }, - "input": { - "shape": "CreateVirtualServiceInput" - }, - "output": { - "shape": "CreateVirtualServiceOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ConflictException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "LimitExceededException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Creates a virtual service within a service mesh.

\n

A virtual service is an abstraction of a real service that is provided by a virtual node\n directly or indirectly by means of a virtual router. Dependent services call your virtual\n service by its virtualServiceName, and those requests are routed to the\n virtual node or virtual router that is specified as the provider for the virtual\n service.

\n

For more information about virtual services, see Virtual services.

", - "idempotent": true - }, - "DeleteGatewayRoute": { - "name": "DeleteGatewayRoute", - "http": { - "method": "DELETE", - "requestUri": "/v20190125/meshes/{meshName}/virtualGateway/{virtualGatewayName}/gatewayRoutes/{gatewayRouteName}", - "responseCode": 200 - }, - "input": { - "shape": "DeleteGatewayRouteInput" - }, - "output": { - "shape": "DeleteGatewayRouteOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ResourceInUseException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Deletes an existing gateway route.

", - "idempotent": true - }, - "DeleteMesh": { - "name": "DeleteMesh", - "http": { - "method": "DELETE", - "requestUri": "/v20190125/meshes/{meshName}", - "responseCode": 200 - }, - "input": { - "shape": "DeleteMeshInput" - }, - "output": { - "shape": "DeleteMeshOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ResourceInUseException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Deletes an existing service mesh.

\n

You must delete all resources (virtual services, routes, virtual routers, and virtual\n nodes) in the service mesh before you can delete the mesh itself.

", - "idempotent": true - }, - "DeleteRoute": { - "name": "DeleteRoute", - "http": { - "method": "DELETE", - "requestUri": "/v20190125/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes/{routeName}", - "responseCode": 200 - }, - "input": { - "shape": "DeleteRouteInput" - }, - "output": { - "shape": "DeleteRouteOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ResourceInUseException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Deletes an existing route.

", - "idempotent": true - }, - "DeleteVirtualGateway": { - "name": "DeleteVirtualGateway", - "http": { - "method": "DELETE", - "requestUri": "/v20190125/meshes/{meshName}/virtualGateways/{virtualGatewayName}", - "responseCode": 200 - }, - "input": { - "shape": "DeleteVirtualGatewayInput" - }, - "output": { - "shape": "DeleteVirtualGatewayOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ResourceInUseException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Deletes an existing virtual gateway. You cannot delete a virtual gateway if any gateway\n routes are associated to it.

", - "idempotent": true - }, - "DeleteVirtualNode": { - "name": "DeleteVirtualNode", - "http": { - "method": "DELETE", - "requestUri": "/v20190125/meshes/{meshName}/virtualNodes/{virtualNodeName}", - "responseCode": 200 - }, - "input": { - "shape": "DeleteVirtualNodeInput" - }, - "output": { - "shape": "DeleteVirtualNodeOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ResourceInUseException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Deletes an existing virtual node.

\n

You must delete any virtual services that list a virtual node as a service provider\n before you can delete the virtual node itself.

", - "idempotent": true - }, - "DeleteVirtualRouter": { - "name": "DeleteVirtualRouter", - "http": { - "method": "DELETE", - "requestUri": "/v20190125/meshes/{meshName}/virtualRouters/{virtualRouterName}", - "responseCode": 200 - }, - "input": { - "shape": "DeleteVirtualRouterInput" - }, - "output": { - "shape": "DeleteVirtualRouterOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ResourceInUseException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Deletes an existing virtual router.

\n

You must delete any routes associated with the virtual router before you can delete the\n router itself.

", - "idempotent": true - }, - "DeleteVirtualService": { - "name": "DeleteVirtualService", - "http": { - "method": "DELETE", - "requestUri": "/v20190125/meshes/{meshName}/virtualServices/{virtualServiceName}", - "responseCode": 200 - }, - "input": { - "shape": "DeleteVirtualServiceInput" - }, - "output": { - "shape": "DeleteVirtualServiceOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ResourceInUseException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Deletes an existing virtual service.

", - "idempotent": true - }, - "DescribeGatewayRoute": { - "name": "DescribeGatewayRoute", - "http": { - "method": "GET", - "requestUri": "/v20190125/meshes/{meshName}/virtualGateway/{virtualGatewayName}/gatewayRoutes/{gatewayRouteName}", - "responseCode": 200 - }, - "input": { - "shape": "DescribeGatewayRouteInput" - }, - "output": { - "shape": "DescribeGatewayRouteOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Describes an existing gateway route.

" - }, - "DescribeMesh": { - "name": "DescribeMesh", - "http": { - "method": "GET", - "requestUri": "/v20190125/meshes/{meshName}", - "responseCode": 200 - }, - "input": { - "shape": "DescribeMeshInput" - }, - "output": { - "shape": "DescribeMeshOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Describes an existing service mesh.

" - }, - "DescribeRoute": { - "name": "DescribeRoute", - "http": { - "method": "GET", - "requestUri": "/v20190125/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes/{routeName}", - "responseCode": 200 - }, - "input": { - "shape": "DescribeRouteInput" - }, - "output": { - "shape": "DescribeRouteOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Describes an existing route.

" - }, - "DescribeVirtualGateway": { - "name": "DescribeVirtualGateway", - "http": { - "method": "GET", - "requestUri": "/v20190125/meshes/{meshName}/virtualGateways/{virtualGatewayName}", - "responseCode": 200 - }, - "input": { - "shape": "DescribeVirtualGatewayInput" - }, - "output": { - "shape": "DescribeVirtualGatewayOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Describes an existing virtual gateway.

" - }, - "DescribeVirtualNode": { - "name": "DescribeVirtualNode", - "http": { - "method": "GET", - "requestUri": "/v20190125/meshes/{meshName}/virtualNodes/{virtualNodeName}", - "responseCode": 200 - }, - "input": { - "shape": "DescribeVirtualNodeInput" - }, - "output": { - "shape": "DescribeVirtualNodeOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Describes an existing virtual node.

" - }, - "DescribeVirtualRouter": { - "name": "DescribeVirtualRouter", - "http": { - "method": "GET", - "requestUri": "/v20190125/meshes/{meshName}/virtualRouters/{virtualRouterName}", - "responseCode": 200 - }, - "input": { - "shape": "DescribeVirtualRouterInput" - }, - "output": { - "shape": "DescribeVirtualRouterOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Describes an existing virtual router.

" - }, - "DescribeVirtualService": { - "name": "DescribeVirtualService", - "http": { - "method": "GET", - "requestUri": "/v20190125/meshes/{meshName}/virtualServices/{virtualServiceName}", - "responseCode": 200 - }, - "input": { - "shape": "DescribeVirtualServiceInput" - }, - "output": { - "shape": "DescribeVirtualServiceOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Describes an existing virtual service.

" - }, - "ListGatewayRoutes": { - "name": "ListGatewayRoutes", - "http": { - "method": "GET", - "requestUri": "/v20190125/meshes/{meshName}/virtualGateway/{virtualGatewayName}/gatewayRoutes", - "responseCode": 200 - }, - "input": { - "shape": "ListGatewayRoutesInput" - }, - "output": { - "shape": "ListGatewayRoutesOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Returns a list of existing gateway routes that are associated to a virtual\n gateway.

" - }, - "ListMeshes": { - "name": "ListMeshes", - "http": { - "method": "GET", - "requestUri": "/v20190125/meshes", - "responseCode": 200 - }, - "input": { - "shape": "ListMeshesInput" - }, - "output": { - "shape": "ListMeshesOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Returns a list of existing service meshes.

" - }, - "ListRoutes": { - "name": "ListRoutes", - "http": { - "method": "GET", - "requestUri": "/v20190125/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes", - "responseCode": 200 - }, - "input": { - "shape": "ListRoutesInput" - }, - "output": { - "shape": "ListRoutesOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Returns a list of existing routes in a service mesh.

" - }, - "ListTagsForResource": { - "name": "ListTagsForResource", - "http": { - "method": "GET", - "requestUri": "/v20190125/tags", - "responseCode": 200 - }, - "input": { - "shape": "ListTagsForResourceInput" - }, - "output": { - "shape": "ListTagsForResourceOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

List the tags for an App Mesh resource.

" - }, - "ListVirtualGateways": { - "name": "ListVirtualGateways", - "http": { - "method": "GET", - "requestUri": "/v20190125/meshes/{meshName}/virtualGateways", - "responseCode": 200 - }, - "input": { - "shape": "ListVirtualGatewaysInput" - }, - "output": { - "shape": "ListVirtualGatewaysOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Returns a list of existing virtual gateways in a service mesh.

" - }, - "ListVirtualNodes": { - "name": "ListVirtualNodes", - "http": { - "method": "GET", - "requestUri": "/v20190125/meshes/{meshName}/virtualNodes", - "responseCode": 200 - }, - "input": { - "shape": "ListVirtualNodesInput" - }, - "output": { - "shape": "ListVirtualNodesOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Returns a list of existing virtual nodes.

" - }, - "ListVirtualRouters": { - "name": "ListVirtualRouters", - "http": { - "method": "GET", - "requestUri": "/v20190125/meshes/{meshName}/virtualRouters", - "responseCode": 200 - }, - "input": { - "shape": "ListVirtualRoutersInput" - }, - "output": { - "shape": "ListVirtualRoutersOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Returns a list of existing virtual routers in a service mesh.

" - }, - "ListVirtualServices": { - "name": "ListVirtualServices", - "http": { - "method": "GET", - "requestUri": "/v20190125/meshes/{meshName}/virtualServices", - "responseCode": 200 - }, - "input": { - "shape": "ListVirtualServicesInput" - }, - "output": { - "shape": "ListVirtualServicesOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Returns a list of existing virtual services in a service mesh.

" - }, - "TagResource": { - "name": "TagResource", - "http": { - "method": "PUT", - "requestUri": "/v20190125/tag", - "responseCode": 200 - }, - "input": { - "shape": "TagResourceInput" - }, - "output": { - "shape": "TagResourceOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - }, - { - "shape": "TooManyTagsException" - } - ], - "documentation": "

Associates the specified tags to a resource with the specified resourceArn.\n If existing tags on a resource aren't specified in the request parameters, they aren't\n changed. When a resource is deleted, the tags associated with that resource are also\n deleted.

", - "idempotent": true - }, - "UntagResource": { - "name": "UntagResource", - "http": { - "method": "PUT", - "requestUri": "/v20190125/untag", - "responseCode": 200 - }, - "input": { - "shape": "UntagResourceInput" - }, - "output": { - "shape": "UntagResourceOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } + "operations":{ + "CreateGatewayRoute":{ + "name":"CreateGatewayRoute", + "http":{ + "method":"PUT", + "requestUri":"/v20190125/meshes/{meshName}/virtualGateway/{virtualGatewayName}/gatewayRoutes", + "responseCode":200 + }, + "input":{"shape":"CreateGatewayRouteInput"}, + "output":{"shape":"CreateGatewayRouteOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"}, + {"shape":"LimitExceededException"} + ], + "documentation":"

Creates a gateway route.

A gateway route is attached to a virtual gateway and routes traffic to an existing virtual service. If a route matches a request, it can distribute traffic to a target virtual service.

For more information about gateway routes, see Gateway routes.

", + "idempotent":true + }, + "CreateMesh":{ + "name":"CreateMesh", + "http":{ + "method":"PUT", + "requestUri":"/v20190125/meshes", + "responseCode":200 + }, + "input":{"shape":"CreateMeshInput"}, + "output":{"shape":"CreateMeshOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"}, + {"shape":"LimitExceededException"} + ], + "documentation":"

Creates a service mesh.

A service mesh is a logical boundary for network traffic between services that are represented by resources within the mesh. After you create your service mesh, you can create virtual services, virtual nodes, virtual routers, and routes to distribute traffic between the applications in your mesh.

For more information about service meshes, see Service meshes.

", + "idempotent":true + }, + "CreateRoute":{ + "name":"CreateRoute", + "http":{ + "method":"PUT", + "requestUri":"/v20190125/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes", + "responseCode":200 + }, + "input":{"shape":"CreateRouteInput"}, + "output":{"shape":"CreateRouteOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"}, + {"shape":"LimitExceededException"} + ], + "documentation":"

Creates a route that is associated with a virtual router.

You can route several different protocols and define a retry policy for a route. Traffic can be routed to one or more virtual nodes.

For more information about routes, see Routes.

", + "idempotent":true + }, + "CreateVirtualGateway":{ + "name":"CreateVirtualGateway", + "http":{ + "method":"PUT", + "requestUri":"/v20190125/meshes/{meshName}/virtualGateways", + "responseCode":200 + }, + "input":{"shape":"CreateVirtualGatewayInput"}, + "output":{"shape":"CreateVirtualGatewayOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"}, + {"shape":"LimitExceededException"} + ], + "documentation":"

Creates a virtual gateway.

A virtual gateway allows resources outside your mesh to communicate to resources that are inside your mesh. The virtual gateway represents an Envoy proxy running in an Amazon ECS task, in a Kubernetes service, or on an Amazon EC2 instance. Unlike a virtual node, which represents an Envoy running with an application, a virtual gateway represents Envoy deployed by itself.

For more information about virtual gateways, see Virtual gateways.

", + "idempotent":true + }, + "CreateVirtualNode":{ + "name":"CreateVirtualNode", + "http":{ + "method":"PUT", + "requestUri":"/v20190125/meshes/{meshName}/virtualNodes", + "responseCode":200 + }, + "input":{"shape":"CreateVirtualNodeInput"}, + "output":{"shape":"CreateVirtualNodeOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"}, + {"shape":"LimitExceededException"} + ], + "documentation":"

Creates a virtual node within a service mesh.

A virtual node acts as a logical pointer to a particular task group, such as an Amazon ECS service or a Kubernetes deployment. When you create a virtual node, you can specify the service discovery information for your task group, and whether the proxy running in a task group will communicate with other proxies using Transport Layer Security (TLS).

You define a listener for any inbound traffic that your virtual node expects. Any virtual service that your virtual node expects to communicate to is specified as a backend.

The response metadata for your new virtual node contains the arn that is associated with the virtual node. Set this value to the full ARN; for example, arn:aws:appmesh:us-west-2:123456789012:myMesh/default/virtualNode/myApp) as the APPMESH_RESOURCE_ARN environment variable for your task group's Envoy proxy container in your task definition or pod spec. This is then mapped to the node.id and node.cluster Envoy parameters.

By default, App Mesh uses the name of the resource you specified in APPMESH_RESOURCE_ARN when Envoy is referring to itself in metrics and traces. You can override this behavior by setting the APPMESH_RESOURCE_CLUSTER environment variable with your own name.

AWS Cloud Map is not available in the eu-south-1 Region.

For more information about virtual nodes, see Virtual nodes. You must be using 1.15.0 or later of the Envoy image when setting these variables. For more information about App Mesh Envoy variables, see Envoy image in the AWS App Mesh User Guide.

", + "idempotent":true + }, + "CreateVirtualRouter":{ + "name":"CreateVirtualRouter", + "http":{ + "method":"PUT", + "requestUri":"/v20190125/meshes/{meshName}/virtualRouters", + "responseCode":200 + }, + "input":{"shape":"CreateVirtualRouterInput"}, + "output":{"shape":"CreateVirtualRouterOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"}, + {"shape":"LimitExceededException"} + ], + "documentation":"

Creates a virtual router within a service mesh.

Specify a listener for any inbound traffic that your virtual router receives. Create a virtual router for each protocol and port that you need to route. Virtual routers handle traffic for one or more virtual services within your mesh. After you create your virtual router, create and associate routes for your virtual router that direct incoming requests to different virtual nodes.

For more information about virtual routers, see Virtual routers.

", + "idempotent":true + }, + "CreateVirtualService":{ + "name":"CreateVirtualService", + "http":{ + "method":"PUT", + "requestUri":"/v20190125/meshes/{meshName}/virtualServices", + "responseCode":200 + }, + "input":{"shape":"CreateVirtualServiceInput"}, + "output":{"shape":"CreateVirtualServiceOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"}, + {"shape":"LimitExceededException"} + ], + "documentation":"

Creates a virtual service within a service mesh.

A virtual service is an abstraction of a real service that is provided by a virtual node directly or indirectly by means of a virtual router. Dependent services call your virtual service by its virtualServiceName, and those requests are routed to the virtual node or virtual router that is specified as the provider for the virtual service.

For more information about virtual services, see Virtual services.

", + "idempotent":true + }, + "DeleteGatewayRoute":{ + "name":"DeleteGatewayRoute", + "http":{ + "method":"DELETE", + "requestUri":"/v20190125/meshes/{meshName}/virtualGateway/{virtualGatewayName}/gatewayRoutes/{gatewayRouteName}", + "responseCode":200 + }, + "input":{"shape":"DeleteGatewayRouteInput"}, + "output":{"shape":"DeleteGatewayRouteOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ResourceInUseException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Deletes an existing gateway route.

", + "idempotent":true + }, + "DeleteMesh":{ + "name":"DeleteMesh", + "http":{ + "method":"DELETE", + "requestUri":"/v20190125/meshes/{meshName}", + "responseCode":200 + }, + "input":{"shape":"DeleteMeshInput"}, + "output":{"shape":"DeleteMeshOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ResourceInUseException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Deletes an existing service mesh.

You must delete all resources (virtual services, routes, virtual routers, and virtual nodes) in the service mesh before you can delete the mesh itself.

", + "idempotent":true + }, + "DeleteRoute":{ + "name":"DeleteRoute", + "http":{ + "method":"DELETE", + "requestUri":"/v20190125/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes/{routeName}", + "responseCode":200 + }, + "input":{"shape":"DeleteRouteInput"}, + "output":{"shape":"DeleteRouteOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ResourceInUseException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Deletes an existing route.

", + "idempotent":true + }, + "DeleteVirtualGateway":{ + "name":"DeleteVirtualGateway", + "http":{ + "method":"DELETE", + "requestUri":"/v20190125/meshes/{meshName}/virtualGateways/{virtualGatewayName}", + "responseCode":200 + }, + "input":{"shape":"DeleteVirtualGatewayInput"}, + "output":{"shape":"DeleteVirtualGatewayOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ResourceInUseException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Deletes an existing virtual gateway. You cannot delete a virtual gateway if any gateway routes are associated to it.

", + "idempotent":true + }, + "DeleteVirtualNode":{ + "name":"DeleteVirtualNode", + "http":{ + "method":"DELETE", + "requestUri":"/v20190125/meshes/{meshName}/virtualNodes/{virtualNodeName}", + "responseCode":200 + }, + "input":{"shape":"DeleteVirtualNodeInput"}, + "output":{"shape":"DeleteVirtualNodeOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ResourceInUseException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Deletes an existing virtual node.

You must delete any virtual services that list a virtual node as a service provider before you can delete the virtual node itself.

", + "idempotent":true + }, + "DeleteVirtualRouter":{ + "name":"DeleteVirtualRouter", + "http":{ + "method":"DELETE", + "requestUri":"/v20190125/meshes/{meshName}/virtualRouters/{virtualRouterName}", + "responseCode":200 + }, + "input":{"shape":"DeleteVirtualRouterInput"}, + "output":{"shape":"DeleteVirtualRouterOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ResourceInUseException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Deletes an existing virtual router.

You must delete any routes associated with the virtual router before you can delete the router itself.

", + "idempotent":true + }, + "DeleteVirtualService":{ + "name":"DeleteVirtualService", + "http":{ + "method":"DELETE", + "requestUri":"/v20190125/meshes/{meshName}/virtualServices/{virtualServiceName}", + "responseCode":200 + }, + "input":{"shape":"DeleteVirtualServiceInput"}, + "output":{"shape":"DeleteVirtualServiceOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ResourceInUseException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Deletes an existing virtual service.

", + "idempotent":true + }, + "DescribeGatewayRoute":{ + "name":"DescribeGatewayRoute", + "http":{ + "method":"GET", + "requestUri":"/v20190125/meshes/{meshName}/virtualGateway/{virtualGatewayName}/gatewayRoutes/{gatewayRouteName}", + "responseCode":200 + }, + "input":{"shape":"DescribeGatewayRouteInput"}, + "output":{"shape":"DescribeGatewayRouteOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Describes an existing gateway route.

" + }, + "DescribeMesh":{ + "name":"DescribeMesh", + "http":{ + "method":"GET", + "requestUri":"/v20190125/meshes/{meshName}", + "responseCode":200 + }, + "input":{"shape":"DescribeMeshInput"}, + "output":{"shape":"DescribeMeshOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Describes an existing service mesh.

" + }, + "DescribeRoute":{ + "name":"DescribeRoute", + "http":{ + "method":"GET", + "requestUri":"/v20190125/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes/{routeName}", + "responseCode":200 + }, + "input":{"shape":"DescribeRouteInput"}, + "output":{"shape":"DescribeRouteOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Describes an existing route.

" + }, + "DescribeVirtualGateway":{ + "name":"DescribeVirtualGateway", + "http":{ + "method":"GET", + "requestUri":"/v20190125/meshes/{meshName}/virtualGateways/{virtualGatewayName}", + "responseCode":200 + }, + "input":{"shape":"DescribeVirtualGatewayInput"}, + "output":{"shape":"DescribeVirtualGatewayOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Describes an existing virtual gateway.

" + }, + "DescribeVirtualNode":{ + "name":"DescribeVirtualNode", + "http":{ + "method":"GET", + "requestUri":"/v20190125/meshes/{meshName}/virtualNodes/{virtualNodeName}", + "responseCode":200 + }, + "input":{"shape":"DescribeVirtualNodeInput"}, + "output":{"shape":"DescribeVirtualNodeOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Describes an existing virtual node.

" + }, + "DescribeVirtualRouter":{ + "name":"DescribeVirtualRouter", + "http":{ + "method":"GET", + "requestUri":"/v20190125/meshes/{meshName}/virtualRouters/{virtualRouterName}", + "responseCode":200 + }, + "input":{"shape":"DescribeVirtualRouterInput"}, + "output":{"shape":"DescribeVirtualRouterOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Describes an existing virtual router.

" + }, + "DescribeVirtualService":{ + "name":"DescribeVirtualService", + "http":{ + "method":"GET", + "requestUri":"/v20190125/meshes/{meshName}/virtualServices/{virtualServiceName}", + "responseCode":200 + }, + "input":{"shape":"DescribeVirtualServiceInput"}, + "output":{"shape":"DescribeVirtualServiceOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Describes an existing virtual service.

" + }, + "ListGatewayRoutes":{ + "name":"ListGatewayRoutes", + "http":{ + "method":"GET", + "requestUri":"/v20190125/meshes/{meshName}/virtualGateway/{virtualGatewayName}/gatewayRoutes", + "responseCode":200 + }, + "input":{"shape":"ListGatewayRoutesInput"}, + "output":{"shape":"ListGatewayRoutesOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Returns a list of existing gateway routes that are associated to a virtual gateway.

" + }, + "ListMeshes":{ + "name":"ListMeshes", + "http":{ + "method":"GET", + "requestUri":"/v20190125/meshes", + "responseCode":200 + }, + "input":{"shape":"ListMeshesInput"}, + "output":{"shape":"ListMeshesOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Returns a list of existing service meshes.

" + }, + "ListRoutes":{ + "name":"ListRoutes", + "http":{ + "method":"GET", + "requestUri":"/v20190125/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes", + "responseCode":200 + }, + "input":{"shape":"ListRoutesInput"}, + "output":{"shape":"ListRoutesOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Returns a list of existing routes in a service mesh.

" + }, + "ListTagsForResource":{ + "name":"ListTagsForResource", + "http":{ + "method":"GET", + "requestUri":"/v20190125/tags", + "responseCode":200 + }, + "input":{"shape":"ListTagsForResourceInput"}, + "output":{"shape":"ListTagsForResourceOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

List the tags for an App Mesh resource.

" + }, + "ListVirtualGateways":{ + "name":"ListVirtualGateways", + "http":{ + "method":"GET", + "requestUri":"/v20190125/meshes/{meshName}/virtualGateways", + "responseCode":200 + }, + "input":{"shape":"ListVirtualGatewaysInput"}, + "output":{"shape":"ListVirtualGatewaysOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Returns a list of existing virtual gateways in a service mesh.

" + }, + "ListVirtualNodes":{ + "name":"ListVirtualNodes", + "http":{ + "method":"GET", + "requestUri":"/v20190125/meshes/{meshName}/virtualNodes", + "responseCode":200 + }, + "input":{"shape":"ListVirtualNodesInput"}, + "output":{"shape":"ListVirtualNodesOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Returns a list of existing virtual nodes.

" + }, + "ListVirtualRouters":{ + "name":"ListVirtualRouters", + "http":{ + "method":"GET", + "requestUri":"/v20190125/meshes/{meshName}/virtualRouters", + "responseCode":200 + }, + "input":{"shape":"ListVirtualRoutersInput"}, + "output":{"shape":"ListVirtualRoutersOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Returns a list of existing virtual routers in a service mesh.

" + }, + "ListVirtualServices":{ + "name":"ListVirtualServices", + "http":{ + "method":"GET", + "requestUri":"/v20190125/meshes/{meshName}/virtualServices", + "responseCode":200 + }, + "input":{"shape":"ListVirtualServicesInput"}, + "output":{"shape":"ListVirtualServicesOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Returns a list of existing virtual services in a service mesh.

" + }, + "TagResource":{ + "name":"TagResource", + "http":{ + "method":"PUT", + "requestUri":"/v20190125/tag", + "responseCode":200 + }, + "input":{"shape":"TagResourceInput"}, + "output":{"shape":"TagResourceOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyTagsException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Associates the specified tags to a resource with the specified resourceArn. If existing tags on a resource aren't specified in the request parameters, they aren't changed. When a resource is deleted, the tags associated with that resource are also deleted.

", + "idempotent":true + }, + "UntagResource":{ + "name":"UntagResource", + "http":{ + "method":"PUT", + "requestUri":"/v20190125/untag", + "responseCode":200 + }, + "input":{"shape":"UntagResourceInput"}, + "output":{"shape":"UntagResourceOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Deletes specified tags from a resource.

", + "idempotent":true + }, + "UpdateGatewayRoute":{ + "name":"UpdateGatewayRoute", + "http":{ + "method":"PUT", + "requestUri":"/v20190125/meshes/{meshName}/virtualGateway/{virtualGatewayName}/gatewayRoutes/{gatewayRouteName}", + "responseCode":200 + }, + "input":{"shape":"UpdateGatewayRouteInput"}, + "output":{"shape":"UpdateGatewayRouteOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"}, + {"shape":"LimitExceededException"} + ], + "documentation":"

Updates an existing gateway route that is associated to a specified virtual gateway in a service mesh.

", + "idempotent":true + }, + "UpdateMesh":{ + "name":"UpdateMesh", + "http":{ + "method":"PUT", + "requestUri":"/v20190125/meshes/{meshName}", + "responseCode":200 + }, + "input":{"shape":"UpdateMeshInput"}, + "output":{"shape":"UpdateMeshOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"} + ], + "documentation":"

Updates an existing service mesh.

", + "idempotent":true + }, + "UpdateRoute":{ + "name":"UpdateRoute", + "http":{ + "method":"PUT", + "requestUri":"/v20190125/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes/{routeName}", + "responseCode":200 + }, + "input":{"shape":"UpdateRouteInput"}, + "output":{"shape":"UpdateRouteOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"}, + {"shape":"LimitExceededException"} + ], + "documentation":"

Updates an existing route for a specified service mesh and virtual router.

", + "idempotent":true + }, + "UpdateVirtualGateway":{ + "name":"UpdateVirtualGateway", + "http":{ + "method":"PUT", + "requestUri":"/v20190125/meshes/{meshName}/virtualGateways/{virtualGatewayName}", + "responseCode":200 + }, + "input":{"shape":"UpdateVirtualGatewayInput"}, + "output":{"shape":"UpdateVirtualGatewayOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"}, + {"shape":"LimitExceededException"} + ], + "documentation":"

Updates an existing virtual gateway in a specified service mesh.

", + "idempotent":true + }, + "UpdateVirtualNode":{ + "name":"UpdateVirtualNode", + "http":{ + "method":"PUT", + "requestUri":"/v20190125/meshes/{meshName}/virtualNodes/{virtualNodeName}", + "responseCode":200 + }, + "input":{"shape":"UpdateVirtualNodeInput"}, + "output":{"shape":"UpdateVirtualNodeOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"}, + {"shape":"LimitExceededException"} + ], + "documentation":"

Updates an existing virtual node in a specified service mesh.

", + "idempotent":true + }, + "UpdateVirtualRouter":{ + "name":"UpdateVirtualRouter", + "http":{ + "method":"PUT", + "requestUri":"/v20190125/meshes/{meshName}/virtualRouters/{virtualRouterName}", + "responseCode":200 + }, + "input":{"shape":"UpdateVirtualRouterInput"}, + "output":{"shape":"UpdateVirtualRouterOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"}, + {"shape":"LimitExceededException"} + ], + "documentation":"

Updates an existing virtual router in a specified service mesh.

", + "idempotent":true + }, + "UpdateVirtualService":{ + "name":"UpdateVirtualService", + "http":{ + "method":"PUT", + "requestUri":"/v20190125/meshes/{meshName}/virtualServices/{virtualServiceName}", + "responseCode":200 + }, + "input":{"shape":"UpdateVirtualServiceInput"}, + "output":{"shape":"UpdateVirtualServiceOutput"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ForbiddenException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"InternalServerErrorException"}, + {"shape":"LimitExceededException"} + ], + "documentation":"

Updates an existing virtual service in a specified service mesh.

", + "idempotent":true + } + }, + "shapes":{ + "AccessLog":{ + "type":"structure", + "members":{ + "file":{ + "shape":"FileAccessLog", + "documentation":"

The file object to send virtual node access logs to.

" + } + }, + "documentation":"

An object that represents the access logging information for a virtual node.

", + "union":true + }, + "AccountId":{ + "type":"string", + "max":12, + "min":12 + }, + "Arn":{"type":"string"}, + "AwsCloudMapInstanceAttribute":{ + "type":"structure", + "required":[ + "key", + "value" ], - "documentation": "

Deletes specified tags from a resource.

", - "idempotent": true - }, - "UpdateGatewayRoute": { - "name": "UpdateGatewayRoute", - "http": { - "method": "PUT", - "requestUri": "/v20190125/meshes/{meshName}/virtualGateway/{virtualGatewayName}/gatewayRoutes/{gatewayRouteName}", - "responseCode": 200 - }, - "input": { - "shape": "UpdateGatewayRouteInput" - }, - "output": { - "shape": "UpdateGatewayRouteOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ConflictException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" + "members":{ + "key":{ + "shape":"AwsCloudMapInstanceAttributeKey", + "documentation":"

The name of an AWS Cloud Map service instance attribute key. Any AWS Cloud Map service instance that contains the specified key and value is returned.

" }, - { - "shape": "LimitExceededException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" + "value":{ + "shape":"AwsCloudMapInstanceAttributeValue", + "documentation":"

The value of an AWS Cloud Map service instance attribute key. Any AWS Cloud Map service instance that contains the specified key and value is returned.

" } - ], - "documentation": "

Updates an existing gateway route that is associated to a specified virtual gateway in a\n service mesh.

", - "idempotent": true - }, - "UpdateMesh": { - "name": "UpdateMesh", - "http": { - "method": "PUT", - "requestUri": "/v20190125/meshes/{meshName}", - "responseCode": 200 - }, - "input": { - "shape": "UpdateMeshInput" }, - "output": { - "shape": "UpdateMeshOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ConflictException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Updates an existing service mesh.

", - "idempotent": true + "documentation":"

An object that represents the AWS Cloud Map attribute information for your virtual node.

AWS Cloud Map is not available in the eu-south-1 Region.

" }, - "UpdateRoute": { - "name": "UpdateRoute", - "http": { - "method": "PUT", - "requestUri": "/v20190125/meshes/{meshName}/virtualRouter/{virtualRouterName}/routes/{routeName}", - "responseCode": 200 - }, - "input": { - "shape": "UpdateRouteInput" - }, - "output": { - "shape": "UpdateRouteOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ConflictException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "LimitExceededException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Updates an existing route for a specified service mesh and virtual router.

", - "idempotent": true + "AwsCloudMapInstanceAttributeKey":{ + "type":"string", + "max":255, + "min":1, + "pattern":"^[a-zA-Z0-9!-~]+$" }, - "UpdateVirtualGateway": { - "name": "UpdateVirtualGateway", - "http": { - "method": "PUT", - "requestUri": "/v20190125/meshes/{meshName}/virtualGateways/{virtualGatewayName}", - "responseCode": 200 - }, - "input": { - "shape": "UpdateVirtualGatewayInput" - }, - "output": { - "shape": "UpdateVirtualGatewayOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ConflictException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "LimitExceededException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Updates an existing virtual gateway in a specified service mesh.

", - "idempotent": true + "AwsCloudMapInstanceAttributeValue":{ + "type":"string", + "max":1024, + "min":1, + "pattern":"^([a-zA-Z0-9!-~][ a-zA-Z0-9!-~]*){0,1}[a-zA-Z0-9!-~]{0,1}$" }, - "UpdateVirtualNode": { - "name": "UpdateVirtualNode", - "http": { - "method": "PUT", - "requestUri": "/v20190125/meshes/{meshName}/virtualNodes/{virtualNodeName}", - "responseCode": 200 - }, - "input": { - "shape": "UpdateVirtualNodeInput" - }, - "output": { - "shape": "UpdateVirtualNodeOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ConflictException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "LimitExceededException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Updates an existing virtual node in a specified service mesh.

", - "idempotent": true + "AwsCloudMapInstanceAttributes":{ + "type":"list", + "member":{"shape":"AwsCloudMapInstanceAttribute"} }, - "UpdateVirtualRouter": { - "name": "UpdateVirtualRouter", - "http": { - "method": "PUT", - "requestUri": "/v20190125/meshes/{meshName}/virtualRouters/{virtualRouterName}", - "responseCode": 200 - }, - "input": { - "shape": "UpdateVirtualRouterInput" - }, - "output": { - "shape": "UpdateVirtualRouterOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ConflictException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "LimitExceededException" - }, - { - "shape": "NotFoundException" - }, - { - "shape": "ServiceUnavailableException" - }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Updates an existing virtual router in a specified service mesh.

", - "idempotent": true + "AwsCloudMapName":{ + "type":"string", + "max":1024, + "min":1 }, - "UpdateVirtualService": { - "name": "UpdateVirtualService", - "http": { - "method": "PUT", - "requestUri": "/v20190125/meshes/{meshName}/virtualServices/{virtualServiceName}", - "responseCode": 200 - }, - "input": { - "shape": "UpdateVirtualServiceInput" - }, - "output": { - "shape": "UpdateVirtualServiceOutput" - }, - "errors": [ - { - "shape": "BadRequestException" - }, - { - "shape": "ConflictException" - }, - { - "shape": "ForbiddenException" - }, - { - "shape": "InternalServerErrorException" - }, - { - "shape": "LimitExceededException" - }, - { - "shape": "NotFoundException" + "AwsCloudMapServiceDiscovery":{ + "type":"structure", + "required":[ + "namespaceName", + "serviceName" + ], + "members":{ + "attributes":{ + "shape":"AwsCloudMapInstanceAttributes", + "documentation":"

A string map that contains attributes with values that you can use to filter instances by any custom attribute that you specified when you registered the instance. Only instances that match all of the specified key/value pairs will be returned.

" }, - { - "shape": "ServiceUnavailableException" + "namespaceName":{ + "shape":"AwsCloudMapName", + "documentation":"

The name of the AWS Cloud Map namespace to use.

" }, - { - "shape": "TooManyRequestsException" - } - ], - "documentation": "

Updates an existing virtual service in a specified service mesh.

", - "idempotent": true - } - }, - "shapes": { - "VirtualRouterListener": { - "type": "structure", - "required": [ - "portMapping" - ], - "members": { - "portMapping": { - "shape": "PortMapping" + "serviceName":{ + "shape":"AwsCloudMapName", + "documentation":"

The name of the AWS Cloud Map service to use.

" } }, - "documentation": "

An object that represents a virtual router listener.

" - }, - "VirtualRouterStatusCode": { - "type": "string", - "enum": [ - "ACTIVE", - "DELETED", - "INACTIVE" - ] - }, - "TagKeyList": { - "type": "list", - "member": { - "shape": "TagKey" - }, - "min": 0, - "max": 50 + "documentation":"

An object that represents the AWS Cloud Map service discovery information for your virtual node.

AWS Cloud Map is not available in the eu-south-1 Region.

" }, - "GrpcRetryPolicy": { - "type": "structure", - "required": [ - "maxRetries", - "perRetryTimeout" - ], - "members": { - "grpcRetryEvents": { - "shape": "GrpcRetryPolicyEvents", - "documentation": "

Specify at least one of the valid values.

" - }, - "httpRetryEvents": { - "shape": "HttpRetryPolicyEvents", - "documentation": "

Specify at least one of the following values.

\n
    \n
  • \n

    \n server-error – HTTP status codes 500, 501,\n 502, 503, 504, 505, 506, 507, 508, 510, and 511

    \n
  • \n
  • \n

    \n gateway-error – HTTP status codes 502,\n 503, and 504

    \n
  • \n
  • \n

    \n client-error – HTTP status code 409

    \n
  • \n
  • \n

    \n stream-error – Retry on refused\n stream

    \n
  • \n
" - }, - "maxRetries": { - "shape": "MaxRetries", - "documentation": "

The maximum number of retry attempts.

" - }, - "perRetryTimeout": { - "shape": "Duration", - "documentation": "

An object that represents a duration of time.

" - }, - "tcpRetryEvents": { - "shape": "TcpRetryPolicyEvents", - "documentation": "

Specify a valid value.

" + "Backend":{ + "type":"structure", + "members":{ + "virtualService":{ + "shape":"VirtualServiceBackend", + "documentation":"

Specifies a virtual service to use as a backend.

" } }, - "documentation": "

An object that represents a retry policy. Specify at least one value for at least one of the types of RetryEvents, a value for maxRetries, and a value for perRetryTimeout.

" + "documentation":"

An object that represents the backends that a virtual node is expected to send outbound traffic to.

", + "union":true }, - "CreateVirtualNodeOutput": { - "type": "structure", - "required": [ - "virtualNode" - ], - "members": { - "virtualNode": { - "shape": "VirtualNodeData", - "documentation": "

The full description of your virtual node following the create call.

" + "BackendDefaults":{ + "type":"structure", + "members":{ + "clientPolicy":{ + "shape":"ClientPolicy", + "documentation":"

A reference to an object that represents a client policy.

" } }, - "documentation": "", - "payload": "virtualNode" + "documentation":"

An object that represents the default properties for a backend.

" }, - "Logging": { - "type": "structure", - "members": { - "accessLog": { - "shape": "AccessLog", - "documentation": "

The access log configuration for a virtual node.

" - } + "Backends":{ + "type":"list", + "member":{"shape":"Backend"} + }, + "BadRequestException":{ + "type":"structure", + "members":{ + "message":{"shape":"String"} }, - "documentation": "

An object that represents the logging information for a virtual node.

" + "documentation":"

The request syntax was malformed. Check your request syntax and try again.

", + "error":{ + "httpStatusCode":400, + "senderFault":true + }, + "exception":true }, - "Long": { - "type": "long", - "box": true + "Boolean":{ + "type":"boolean", + "box":true }, - "UpdateVirtualRouterOutput": { - "type": "structure", - "required": [ - "virtualRouter" - ], - "members": { - "virtualRouter": { - "shape": "VirtualRouterData", - "documentation": "

A full description of the virtual router that was updated.

" + "CertificateAuthorityArns":{ + "type":"list", + "member":{"shape":"Arn"}, + "max":3, + "min":1 + }, + "ClientPolicy":{ + "type":"structure", + "members":{ + "tls":{ + "shape":"ClientPolicyTls", + "documentation":"

A reference to an object that represents a Transport Layer Security (TLS) client policy.

" } }, - "documentation": "", - "payload": "virtualRouter" + "documentation":"

An object that represents a client policy.

" }, - "ListVirtualRoutersOutput": { - "type": "structure", - "required": [ - "virtualRouters" - ], - "members": { - "nextToken": { - "shape": "String", - "documentation": "

The nextToken value to include in a future ListVirtualRouters\n request. When the results of a ListVirtualRouters request exceed\n limit, you can use this value to retrieve the next page of results. This\n value is null when there are no more results to return.

" + "ClientPolicyTls":{ + "type":"structure", + "required":["validation"], + "members":{ + "enforce":{ + "shape":"Boolean", + "documentation":"

Whether the policy is enforced. The default is True, if a value isn't specified.

", + "box":true }, - "virtualRouters": { - "shape": "VirtualRouterList", - "documentation": "

The list of existing virtual routers for the specified service mesh.

" + "ports":{ + "shape":"PortSet", + "documentation":"

One or more ports that the policy is enforced for.

" + }, + "validation":{ + "shape":"TlsValidationContext", + "documentation":"

A reference to an object that represents a TLS validation context.

" } }, - "documentation": "" + "documentation":"

A reference to an object that represents a Transport Layer Security (TLS) client policy.

" + }, + "ConflictException":{ + "type":"structure", + "members":{ + "message":{"shape":"String"} + }, + "documentation":"

The request contains a client token that was used for a previous update resource call with different specifications. Try the request again with a new client token.

", + "error":{ + "httpStatusCode":409, + "senderFault":true + }, + "exception":true }, - "CreateVirtualGatewayInput": { - "type": "structure", - "required": [ + "CreateGatewayRouteInput":{ + "type":"structure", + "required":[ + "gatewayRouteName", "meshName", "spec", "virtualGatewayName" ], - "members": { - "clientToken": { - "shape": "String", - "documentation": "

Unique, case-sensitive identifier that you provide to ensure the idempotency of the\nrequest. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", - "idempotencyToken": true - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh to create the virtual gateway in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then\n the account that you specify must share the mesh with your account before you can create \n the resource in the service mesh. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "spec": { - "shape": "VirtualGatewaySpec", - "documentation": "

The virtual gateway specification to apply.

" - }, - "tags": { - "shape": "TagList", - "documentation": "

Optional metadata that you can apply to the virtual gateway to assist with\n categorization and organization. Each tag consists of a key and an optional value, both of\n which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have\n a maximum length of 256 characters.

" - }, - "virtualGatewayName": { - "shape": "ResourceName", - "documentation": "

The name to use for the virtual gateway.

" + "members":{ + "clientToken":{ + "shape":"String", + "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", + "idempotencyToken":true + }, + "gatewayRouteName":{ + "shape":"ResourceName", + "documentation":"

The name to use for the gateway route.

" + }, + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh to create the gateway route in.

", + "location":"uri", + "locationName":"meshName" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then the account that you specify must share the mesh with your account before you can create the resource in the service mesh. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "spec":{ + "shape":"GatewayRouteSpec", + "documentation":"

The gateway route specification to apply.

" + }, + "tags":{ + "shape":"TagList", + "documentation":"

Optional metadata that you can apply to the gateway route to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

" + }, + "virtualGatewayName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual gateway to associate the gateway route with. If the virtual gateway is in a shared mesh, then you must be the owner of the virtual gateway resource.

", + "location":"uri", + "locationName":"virtualGatewayName" } } }, - "UpdateVirtualGatewayInput": { - "type": "structure", - "required": [ - "meshName", - "spec", - "virtualGatewayName" - ], - "members": { - "clientToken": { - "shape": "String", - "documentation": "

Unique, case-sensitive identifier that you provide to ensure the idempotency of the\nrequest. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", - "idempotencyToken": true - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the virtual gateway resides in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "spec": { - "shape": "VirtualGatewaySpec", - "documentation": "

The new virtual gateway specification to apply. This overwrites the existing\n data.

" - }, - "virtualGatewayName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual gateway to update.

", - "location": "uri", - "locationName": "virtualGatewayName" + "CreateGatewayRouteOutput":{ + "type":"structure", + "required":["gatewayRoute"], + "members":{ + "gatewayRoute":{ + "shape":"GatewayRouteData", + "documentation":"

The full description of your gateway route following the create call.

" } - } + }, + "payload":"gatewayRoute" }, - "ResourceMetadata": { - "type": "structure", - "required": [ - "arn", - "createdAt", - "lastUpdatedAt", - "meshOwner", - "resourceOwner", - "uid", - "version" - ], - "members": { - "arn": { - "shape": "Arn", - "documentation": "

The full Amazon Resource Name (ARN) for the resource.

" - }, - "createdAt": { - "shape": "Timestamp", - "documentation": "

The Unix epoch timestamp in seconds for when the resource was created.

" - }, - "lastUpdatedAt": { - "shape": "Timestamp", - "documentation": "

The Unix epoch timestamp in seconds for when the resource was last updated.

" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

" + "CreateMeshInput":{ + "type":"structure", + "required":["meshName"], + "members":{ + "clientToken":{ + "shape":"String", + "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", + "idempotencyToken":true }, - "resourceOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the resource owner. If the account ID is not your own, then it's\n the ID of the mesh owner or of another account that the mesh is shared with. For more information about mesh sharing, see Working with shared meshes.

" + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name to use for the service mesh.

" }, - "uid": { - "shape": "String", - "documentation": "

The unique identifier for the resource.

" + "spec":{ + "shape":"MeshSpec", + "documentation":"

The service mesh specification to apply.

" }, - "version": { - "shape": "Long", - "documentation": "

The version of the resource. Resources are created at version 1, and this version is incremented each time that they're updated.

" + "tags":{ + "shape":"TagList", + "documentation":"

Optional metadata that you can apply to the service mesh to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

" } }, - "documentation": "

An object that represents metadata for a resource.

" + "documentation":"" }, - "ResourceInUseException": { - "type": "structure", - "members": { - "message": { - "shape": "String" + "CreateMeshOutput":{ + "type":"structure", + "required":["mesh"], + "members":{ + "mesh":{ + "shape":"MeshData", + "documentation":"

The full description of your service mesh following the create call.

" } }, - "documentation": "

You can't delete the specified resource because it's in use or required by another\n resource.

", - "exception": true, - "error": { - "code": "ResourceInUseException", - "httpStatusCode": 409, - "senderFault": true - } + "documentation":"", + "payload":"mesh" }, - "UpdateVirtualNodeOutput": { - "type": "structure", - "required": [ - "virtualNode" + "CreateRouteInput":{ + "type":"structure", + "required":[ + "meshName", + "routeName", + "spec", + "virtualRouterName" ], - "members": { - "virtualNode": { - "shape": "VirtualNodeData", - "documentation": "

A full description of the virtual node that was updated.

" + "members":{ + "clientToken":{ + "shape":"String", + "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", + "idempotencyToken":true + }, + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh to create the route in.

", + "location":"uri", + "locationName":"meshName" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then the account that you specify must share the mesh with your account before you can create the resource in the service mesh. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "routeName":{ + "shape":"ResourceName", + "documentation":"

The name to use for the route.

" + }, + "spec":{ + "shape":"RouteSpec", + "documentation":"

The route specification to apply.

" + }, + "tags":{ + "shape":"TagList", + "documentation":"

Optional metadata that you can apply to the route to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

" + }, + "virtualRouterName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual router in which to create the route. If the virtual router is in a shared mesh, then you must be the owner of the virtual router resource.

", + "location":"uri", + "locationName":"virtualRouterName" } }, - "documentation": "", - "payload": "virtualNode" + "documentation":"" }, - "ListRoutesOutput": { - "type": "structure", - "required": [ - "routes" - ], - "members": { - "nextToken": { - "shape": "String", - "documentation": "

The nextToken value to include in a future ListRoutes request.\n When the results of a ListRoutes request exceed limit, you can\n use this value to retrieve the next page of results. This value is null when\n there are no more results to return.

" - }, - "routes": { - "shape": "RouteList", - "documentation": "

The list of existing routes for the specified service mesh and virtual router.

" + "CreateRouteOutput":{ + "type":"structure", + "required":["route"], + "members":{ + "route":{ + "shape":"RouteData", + "documentation":"

The full description of your mesh following the create call.

" } }, - "documentation": "" + "documentation":"", + "payload":"route" }, - "VirtualServiceBackend": { - "type": "structure", - "required": [ - "virtualServiceName" + "CreateVirtualGatewayInput":{ + "type":"structure", + "required":[ + "meshName", + "spec", + "virtualGatewayName" ], - "members": { - "clientPolicy": { - "shape": "ClientPolicy", - "documentation": "

A reference to an object that represents the client policy for a backend.

" + "members":{ + "clientToken":{ + "shape":"String", + "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", + "idempotencyToken":true }, - "virtualServiceName": { - "shape": "ServiceName", - "documentation": "

The name of the virtual service that is acting as a virtual node backend.

" - } - }, - "documentation": "

An object that represents a virtual service backend for a virtual node.

" - }, - "BadRequestException": { - "type": "structure", - "members": { - "message": { - "shape": "String" + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh to create the virtual gateway in.

", + "location":"uri", + "locationName":"meshName" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then the account that you specify must share the mesh with your account before you can create the resource in the service mesh. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "spec":{ + "shape":"VirtualGatewaySpec", + "documentation":"

The virtual gateway specification to apply.

" + }, + "tags":{ + "shape":"TagList", + "documentation":"

Optional metadata that you can apply to the virtual gateway to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

" + }, + "virtualGatewayName":{ + "shape":"ResourceName", + "documentation":"

The name to use for the virtual gateway.

" } - }, - "documentation": "

The request syntax was malformed. Check your request syntax and try again.

", - "exception": true, - "error": { - "code": "BadRequestException", - "httpStatusCode": 400, - "senderFault": true } }, - "HttpGatewayRouteMatch": { - "type": "structure", - "required": [ - "prefix" - ], - "members": { - "prefix": { - "shape": "String", - "documentation": "

Specifies the path to match requests with. This parameter must always start with\n /, which by itself matches all requests to the virtual service name. You\n can also match for path-based routing of requests. For example, if your virtual service\n name is my-service.local and you want the route to match requests to\n my-service.local/metrics, your prefix should be\n /metrics.

" + "CreateVirtualGatewayOutput":{ + "type":"structure", + "required":["virtualGateway"], + "members":{ + "virtualGateway":{ + "shape":"VirtualGatewayData", + "documentation":"

The full description of your virtual gateway following the create call.

" } }, - "documentation": "

An object that represents the criteria for determining a request match.

" - }, - "GrpcRouteMetadataList": { - "type": "list", - "member": { - "shape": "GrpcRouteMetadata" - }, - "min": 1, - "max": 10 + "payload":"virtualGateway" }, - "ListenerTlsMode": { - "type": "string", - "enum": [ - "DISABLED", - "PERMISSIVE", - "STRICT" - ] - }, - "HealthCheckPolicy": { - "type": "structure", - "required": [ - "healthyThreshold", - "intervalMillis", - "protocol", - "timeoutMillis", - "unhealthyThreshold" + "CreateVirtualNodeInput":{ + "type":"structure", + "required":[ + "meshName", + "spec", + "virtualNodeName" ], - "members": { - "healthyThreshold": { - "shape": "HealthCheckThreshold", - "documentation": "

The number of consecutive successful health checks that must occur before declaring\n listener healthy.

" - }, - "intervalMillis": { - "shape": "HealthCheckIntervalMillis", - "documentation": "

The time period in milliseconds between each health check execution.

" + "members":{ + "clientToken":{ + "shape":"String", + "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", + "idempotencyToken":true }, - "path": { - "shape": "String", - "documentation": "

The destination path for the health check request. This value is only used if the\n specified protocol is HTTP or HTTP/2. For any other protocol, this value is ignored.

" + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh to create the virtual node in.

", + "location":"uri", + "locationName":"meshName" }, - "port": { - "shape": "PortNumber", - "documentation": "

The destination port for the health check request. This port must match the port defined\n in the PortMapping for the listener.

" + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then the account that you specify must share the mesh with your account before you can create the resource in the service mesh. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" }, - "protocol": { - "shape": "PortProtocol", - "documentation": "

The protocol for the health check request. If you specify grpc, then your\n service must conform to the GRPC Health\n Checking Protocol.

" + "spec":{ + "shape":"VirtualNodeSpec", + "documentation":"

The virtual node specification to apply.

" }, - "timeoutMillis": { - "shape": "HealthCheckTimeoutMillis", - "documentation": "

The amount of time to wait when receiving a response from the health check, in\n milliseconds.

" + "tags":{ + "shape":"TagList", + "documentation":"

Optional metadata that you can apply to the virtual node to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

" }, - "unhealthyThreshold": { - "shape": "HealthCheckThreshold", - "documentation": "

The number of consecutive failed health checks that must occur before declaring a\n virtual node unhealthy.

" - } - }, - "documentation": "

An object that represents the health check policy for a virtual node's listener.

" - }, - "VirtualGatewayHealthCheckTimeoutMillis": { - "type": "long", - "box": true, - "min": 2000, - "max": 60000 - }, - "EgressFilter": { - "type": "structure", - "required": [ - "type" - ], - "members": { - "type": { - "shape": "EgressFilterType", - "documentation": "

The egress filter type. By default, the type is DROP_ALL, which allows\n egress only from virtual nodes to other defined resources in the service mesh (and any\n traffic to *.amazonaws.com for AWS API calls). You can set the egress filter\n type to ALLOW_ALL to allow egress to any endpoint inside or outside of the\n service mesh.

" + "virtualNodeName":{ + "shape":"ResourceName", + "documentation":"

The name to use for the virtual node.

" } }, - "documentation": "

An object that represents the egress filter rules for a service mesh.

" - }, - "VirtualServiceList": { - "type": "list", - "member": { - "shape": "VirtualServiceRef" - } + "documentation":"" }, - "ClientPolicy": { - "type": "structure", - "members": { - "tls": { - "shape": "ClientPolicyTls", - "documentation": "

A reference to an object that represents a Transport Layer Security (TLS) client policy.

" + "CreateVirtualNodeOutput":{ + "type":"structure", + "required":["virtualNode"], + "members":{ + "virtualNode":{ + "shape":"VirtualNodeData", + "documentation":"

The full description of your virtual node following the create call.

" } }, - "documentation": "

An object that represents a client policy.

" - }, - "VirtualGatewayHealthCheckIntervalMillis": { - "type": "long", - "box": true, - "min": 5000, - "max": 300000 + "documentation":"", + "payload":"virtualNode" }, - "Boolean": { - "type": "boolean", - "box": true - }, - "VirtualGatewaySpec": { - "type": "structure", - "required": [ - "listeners" + "CreateVirtualRouterInput":{ + "type":"structure", + "required":[ + "meshName", + "spec", + "virtualRouterName" ], - "members": { - "backendDefaults": { - "shape": "VirtualGatewayBackendDefaults", - "documentation": "

A reference to an object that represents the defaults for backends.

" + "members":{ + "clientToken":{ + "shape":"String", + "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", + "idempotencyToken":true }, - "listeners": { - "shape": "VirtualGatewayListeners", - "documentation": "

The listeners that the mesh endpoint is expected to receive inbound traffic from. You\n can specify one listener.

" + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh to create the virtual router in.

", + "location":"uri", + "locationName":"meshName" }, - "logging": { - "shape": "VirtualGatewayLogging" + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then the account that you specify must share the mesh with your account before you can create the resource in the service mesh. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "spec":{ + "shape":"VirtualRouterSpec", + "documentation":"

The virtual router specification to apply.

" + }, + "tags":{ + "shape":"TagList", + "documentation":"

Optional metadata that you can apply to the virtual router to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

" + }, + "virtualRouterName":{ + "shape":"ResourceName", + "documentation":"

The name to use for the virtual router.

" } }, - "documentation": "

An object that represents the specification of a service mesh resource.

" + "documentation":"" }, - "HttpRetryPolicyEvent": { - "type": "string", - "min": 1, - "max": 25 + "CreateVirtualRouterOutput":{ + "type":"structure", + "required":["virtualRouter"], + "members":{ + "virtualRouter":{ + "shape":"VirtualRouterData", + "documentation":"

The full description of your virtual router following the create call.

" + } + }, + "documentation":"", + "payload":"virtualRouter" }, - "VirtualGatewayFileAccessLog": { - "type": "structure", - "required": [ - "path" + "CreateVirtualServiceInput":{ + "type":"structure", + "required":[ + "meshName", + "spec", + "virtualServiceName" ], - "members": { - "path": { - "shape": "FilePath", - "documentation": "

The file path to write access logs to. You can use /dev/stdout to send\n access logs to standard out and configure your Envoy container to use a log driver, such as\n awslogs, to export the access logs to a log storage service such as Amazon\n CloudWatch Logs. You can also specify a path in the Envoy container's file system to write\n the files to disk.

" + "members":{ + "clientToken":{ + "shape":"String", + "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", + "idempotencyToken":true + }, + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh to create the virtual service in.

", + "location":"uri", + "locationName":"meshName" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then the account that you specify must share the mesh with your account before you can create the resource in the service mesh. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "spec":{ + "shape":"VirtualServiceSpec", + "documentation":"

The virtual service specification to apply.

" + }, + "tags":{ + "shape":"TagList", + "documentation":"

Optional metadata that you can apply to the virtual service to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

" + }, + "virtualServiceName":{ + "shape":"ServiceName", + "documentation":"

The name to use for the virtual service.

" } }, - "documentation": "

An object that represents an access log file.

" + "documentation":"" }, - "DescribeVirtualServiceOutput": { - "type": "structure", - "required": [ - "virtualService" - ], - "members": { - "virtualService": { - "shape": "VirtualServiceData", - "documentation": "

The full description of your virtual service.

" + "CreateVirtualServiceOutput":{ + "type":"structure", + "required":["virtualService"], + "members":{ + "virtualService":{ + "shape":"VirtualServiceData", + "documentation":"

The full description of your virtual service following the create call.

" } }, - "documentation": "", - "payload": "virtualService" + "documentation":"", + "payload":"virtualService" }, - "CreateGatewayRouteInput": { - "type": "structure", - "required": [ + "DeleteGatewayRouteInput":{ + "type":"structure", + "required":[ "gatewayRouteName", "meshName", - "spec", "virtualGatewayName" ], - "members": { - "clientToken": { - "shape": "String", - "documentation": "

Unique, case-sensitive identifier that you provide to ensure the idempotency of the\nrequest. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", - "idempotencyToken": true - }, - "gatewayRouteName": { - "shape": "ResourceName", - "documentation": "

The name to use for the gateway route.

" - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh to create the gateway route in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then\n the account that you specify must share the mesh with your account before you can create \n the resource in the service mesh. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "spec": { - "shape": "GatewayRouteSpec", - "documentation": "

The gateway route specification to apply.

" - }, - "tags": { - "shape": "TagList", - "documentation": "

Optional metadata that you can apply to the gateway route to assist with categorization\n and organization. Each tag consists of a key and an optional value, both of which you\n define. Tag keys can have a maximum character length of 128 characters, and tag values can have\n a maximum length of 256 characters.

" - }, - "virtualGatewayName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual gateway to associate the gateway route with. If the virtual\n gateway is in a shared mesh, then you must be the owner of the virtual gateway\n resource.

", - "location": "uri", - "locationName": "virtualGatewayName" + "members":{ + "gatewayRouteName":{ + "shape":"ResourceName", + "documentation":"

The name of the gateway route to delete.

", + "location":"uri", + "locationName":"gatewayRouteName" + }, + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh to delete the gateway route from.

", + "location":"uri", + "locationName":"meshName" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "virtualGatewayName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual gateway to delete the route from.

", + "location":"uri", + "locationName":"virtualGatewayName" } } }, - "CertificateAuthorityArns": { - "type": "list", - "member": { - "shape": "Arn" + "DeleteGatewayRouteOutput":{ + "type":"structure", + "required":["gatewayRoute"], + "members":{ + "gatewayRoute":{ + "shape":"GatewayRouteData", + "documentation":"

The gateway route that was deleted.

" + } }, - "min": 1, - "max": 3 + "payload":"gatewayRoute" }, - "DescribeVirtualNodeOutput": { - "type": "structure", - "required": [ - "virtualNode" - ], - "members": { - "virtualNode": { - "shape": "VirtualNodeData", - "documentation": "

The full description of your virtual node.

" + "DeleteMeshInput":{ + "type":"structure", + "required":["meshName"], + "members":{ + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh to delete.

", + "location":"uri", + "locationName":"meshName" } }, - "documentation": "", - "payload": "virtualNode" + "documentation":"" }, - "AwsCloudMapName": { - "type": "string", - "min": 1, - "max": 1024, - "pattern": "((?=^.{1,127}$)^([a-zA-Z0-9_][a-zA-Z0-9-_]{0,61}[a-zA-Z0-9_]|[a-zA-Z0-9])(.([a-zA-Z0-9_][a-zA-Z0-9-_]{0,61}[a-zA-Z0-9_]|[a-zA-Z0-9]))*$)|(^.$)" + "DeleteMeshOutput":{ + "type":"structure", + "required":["mesh"], + "members":{ + "mesh":{ + "shape":"MeshData", + "documentation":"

The service mesh that was deleted.

" + } + }, + "documentation":"", + "payload":"mesh" }, - "VirtualGatewayData": { - "type": "structure", - "required": [ + "DeleteRouteInput":{ + "type":"structure", + "required":[ + "meshName", + "routeName", + "virtualRouterName" + ], + "members":{ + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh to delete the route in.

", + "location":"uri", + "locationName":"meshName" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "routeName":{ + "shape":"ResourceName", + "documentation":"

The name of the route to delete.

", + "location":"uri", + "locationName":"routeName" + }, + "virtualRouterName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual router to delete the route in.

", + "location":"uri", + "locationName":"virtualRouterName" + } + }, + "documentation":"" + }, + "DeleteRouteOutput":{ + "type":"structure", + "required":["route"], + "members":{ + "route":{ + "shape":"RouteData", + "documentation":"

The route that was deleted.

" + } + }, + "documentation":"", + "payload":"route" + }, + "DeleteVirtualGatewayInput":{ + "type":"structure", + "required":[ "meshName", - "metadata", - "spec", - "status", "virtualGatewayName" ], - "members": { - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the virtual gateway resides in.

" - }, - "metadata": { - "shape": "ResourceMetadata" - }, - "spec": { - "shape": "VirtualGatewaySpec", - "documentation": "

The specifications of the virtual gateway.

" - }, - "status": { - "shape": "VirtualGatewayStatus", - "documentation": "

The current status of the virtual gateway.

" - }, - "virtualGatewayName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual gateway.

" + "members":{ + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh to delete the virtual gateway from.

", + "location":"uri", + "locationName":"meshName" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "virtualGatewayName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual gateway to delete.

", + "location":"uri", + "locationName":"virtualGatewayName" } - }, - "documentation": "

An object that represents a virtual gateway returned by a describe operation.

" + } }, - "CreateRouteOutput": { - "type": "structure", - "required": [ - "route" - ], - "members": { - "route": { - "shape": "RouteData", - "documentation": "

The full description of your mesh following the create call.

" + "DeleteVirtualGatewayOutput":{ + "type":"structure", + "required":["virtualGateway"], + "members":{ + "virtualGateway":{ + "shape":"VirtualGatewayData", + "documentation":"

The virtual gateway that was deleted.

" } }, - "documentation": "", - "payload": "route" + "payload":"virtualGateway" }, - "VirtualGatewayListener": { - "type": "structure", - "required": [ - "portMapping" + "DeleteVirtualNodeInput":{ + "type":"structure", + "required":[ + "meshName", + "virtualNodeName" ], - "members": { - "healthCheck": { - "shape": "VirtualGatewayHealthCheckPolicy", - "documentation": "

The health check information for the listener.

" + "members":{ + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh to delete the virtual node in.

", + "location":"uri", + "locationName":"meshName" }, - "portMapping": { - "shape": "VirtualGatewayPortMapping", - "documentation": "

The port mapping information for the listener.

" + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" }, - "tls": { - "shape": "VirtualGatewayListenerTls", - "documentation": "

A reference to an object that represents the Transport Layer Security (TLS) properties for the listener.

" + "virtualNodeName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual node to delete.

", + "location":"uri", + "locationName":"virtualNodeName" } }, - "documentation": "

An object that represents a listener for a virtual gateway.

" + "documentation":"" }, - "DnsServiceDiscovery": { - "type": "structure", - "required": [ - "hostname" - ], - "members": { - "hostname": { - "shape": "Hostname", - "documentation": "

Specifies the DNS service discovery hostname for the virtual node.

" + "DeleteVirtualNodeOutput":{ + "type":"structure", + "required":["virtualNode"], + "members":{ + "virtualNode":{ + "shape":"VirtualNodeData", + "documentation":"

The virtual node that was deleted.

" } }, - "documentation": "

An object that represents the DNS service discovery information for your virtual\n node.

" + "documentation":"", + "payload":"virtualNode" }, - "VirtualGatewayPortMapping": { - "type": "structure", - "required": [ - "port", - "protocol" + "DeleteVirtualRouterInput":{ + "type":"structure", + "required":[ + "meshName", + "virtualRouterName" ], - "members": { - "port": { - "shape": "PortNumber", - "documentation": "

The port used for the port mapping. Specify one protocol.

" + "members":{ + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh to delete the virtual router in.

", + "location":"uri", + "locationName":"meshName" }, - "protocol": { - "shape": "VirtualGatewayPortProtocol", - "documentation": "

The protocol used for the port mapping.

" + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "virtualRouterName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual router to delete.

", + "location":"uri", + "locationName":"virtualRouterName" } }, - "documentation": "

An object that represents a port mapping.

" + "documentation":"" }, - "DeleteVirtualGatewayOutput": { - "type": "structure", - "required": [ - "virtualGateway" - ], - "members": { - "virtualGateway": { - "shape": "VirtualGatewayData", - "documentation": "

The virtual gateway that was deleted.

" + "DeleteVirtualRouterOutput":{ + "type":"structure", + "required":["virtualRouter"], + "members":{ + "virtualRouter":{ + "shape":"VirtualRouterData", + "documentation":"

The virtual router that was deleted.

" } }, - "payload": "virtualGateway" + "documentation":"", + "payload":"virtualRouter" }, - "DeleteRouteInput": { - "type": "structure", - "required": [ - "meshName", - "routeName", - "virtualRouterName" - ], - "members": { - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh to delete the route in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "routeName": { - "shape": "ResourceName", - "documentation": "

The name of the route to delete.

", - "location": "uri", - "locationName": "routeName" - }, - "virtualRouterName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual router to delete the route in.

", - "location": "uri", - "locationName": "virtualRouterName" - } - }, - "documentation": "" - }, - "VirtualNodeData": { - "type": "structure", - "required": [ + "DeleteVirtualServiceInput":{ + "type":"structure", + "required":[ "meshName", - "metadata", - "spec", - "status", - "virtualNodeName" + "virtualServiceName" ], - "members": { - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the virtual node resides in.

" - }, - "metadata": { - "shape": "ResourceMetadata", - "documentation": "

The associated metadata for the virtual node.

" + "members":{ + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh to delete the virtual service in.

", + "location":"uri", + "locationName":"meshName" }, - "spec": { - "shape": "VirtualNodeSpec", - "documentation": "

The specifications of the virtual node.

" + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" }, - "status": { - "shape": "VirtualNodeStatus", - "documentation": "

The current status for the virtual node.

" - }, - "virtualNodeName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual node.

" + "virtualServiceName":{ + "shape":"ServiceName", + "documentation":"

The name of the virtual service to delete.

", + "location":"uri", + "locationName":"virtualServiceName" } }, - "documentation": "

An object that represents a virtual node returned by a describe operation.

" - }, - "UntagResourceOutput": { - "type": "structure", - "members": { }, - "documentation": "" - }, - "ListGatewayRoutesLimit": { - "type": "integer", - "box": true, - "min": 1, - "max": 100 - }, - "TcpRetryPolicyEvent": { - "type": "string", - "enum": [ - "connection-error" - ] + "documentation":"" }, - "VirtualGatewayListenerTls": { - "type": "structure", - "required": [ - "certificate", - "mode" - ], - "members": { - "certificate": { - "shape": "VirtualGatewayListenerTlsCertificate", - "documentation": "

An object that represents a Transport Layer Security (TLS) certificate.

" - }, - "mode": { - "shape": "VirtualGatewayListenerTlsMode", - "documentation": "

Specify one of the following modes.

\n
    \n
  • \n

    \n STRICT – Listener only accepts connections with TLS\n enabled.

    \n
  • \n
  • \n

    \n PERMISSIVE – Listener accepts connections with or\n without TLS enabled.

    \n
  • \n
  • \n

    \n DISABLED – Listener only accepts connections without\n TLS.

    \n
  • \n
" + "DeleteVirtualServiceOutput":{ + "type":"structure", + "required":["virtualService"], + "members":{ + "virtualService":{ + "shape":"VirtualServiceData", + "documentation":"

The virtual service that was deleted.

" } }, - "documentation": "

An object that represents the Transport Layer Security (TLS) properties for a listener.

" + "documentation":"", + "payload":"virtualService" }, - "Backend": { - "type": "structure", - "members": { - "virtualService": { - "shape": "VirtualServiceBackend", - "documentation": "

Specifies a virtual service to use as a backend for a virtual node.

" + "DescribeGatewayRouteInput":{ + "type":"structure", + "required":[ + "gatewayRouteName", + "meshName", + "virtualGatewayName" + ], + "members":{ + "gatewayRouteName":{ + "shape":"ResourceName", + "documentation":"

The name of the gateway route to describe.

", + "location":"uri", + "locationName":"gatewayRouteName" + }, + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the gateway route resides in.

", + "location":"uri", + "locationName":"meshName" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "virtualGatewayName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual gateway that the gateway route is associated with.

", + "location":"uri", + "locationName":"virtualGatewayName" } - }, - "documentation": "

An object that represents the backends that a virtual node is expected to send outbound\n traffic to.

" + } }, - "ListMeshesInput": { - "type": "structure", - "members": { - "limit": { - "shape": "ListMeshesLimit", - "documentation": "

The maximum number of results returned by ListMeshes in paginated output.\n When you use this parameter, ListMeshes returns only limit\n results in a single page along with a nextToken response element. You can see\n the remaining results of the initial request by sending another ListMeshes\n request with the returned nextToken value. This value can be between\n 1 and 100. If you don't use this parameter,\n ListMeshes returns up to 100 results and a\n nextToken value if applicable.

", - "location": "querystring", - "locationName": "limit" - }, - "nextToken": { - "shape": "String", - "documentation": "

The nextToken value returned from a previous paginated\n ListMeshes request where limit was used and the results\n exceeded the value of that parameter. Pagination continues from the end of the previous\n results that returned the nextToken value.

\n \n

This token should be treated as an opaque identifier that is used only to\n retrieve the next items in a list and not for other programmatic purposes.

\n
", - "location": "querystring", - "locationName": "nextToken" + "DescribeGatewayRouteOutput":{ + "type":"structure", + "required":["gatewayRoute"], + "members":{ + "gatewayRoute":{ + "shape":"GatewayRouteData", + "documentation":"

The full description of your gateway route.

" } }, - "documentation": "" + "payload":"gatewayRoute" }, - "VirtualGatewayListenerTlsFileCertificate": { - "type": "structure", - "required": [ - "certificateChain", - "privateKey" - ], - "members": { - "certificateChain": { - "shape": "FilePath", - "documentation": "

The certificate chain for the certificate.

" + "DescribeMeshInput":{ + "type":"structure", + "required":["meshName"], + "members":{ + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh to describe.

", + "location":"uri", + "locationName":"meshName" }, - "privateKey": { - "shape": "FilePath", - "documentation": "

The private key for a certificate stored on the file system of the mesh endpoint that\n the proxy is running on.

" + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + } + }, + "documentation":"" + }, + "DescribeMeshOutput":{ + "type":"structure", + "required":["mesh"], + "members":{ + "mesh":{ + "shape":"MeshData", + "documentation":"

The full description of your service mesh.

" } }, - "documentation": "

An object that represents a local file certificate.\n The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS).

" + "documentation":"", + "payload":"mesh" }, - "ListGatewayRoutesInput": { - "type": "structure", - "required": [ + "DescribeRouteInput":{ + "type":"structure", + "required":[ + "meshName", + "routeName", + "virtualRouterName" + ], + "members":{ + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the route resides in.

", + "location":"uri", + "locationName":"meshName" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "routeName":{ + "shape":"ResourceName", + "documentation":"

The name of the route to describe.

", + "location":"uri", + "locationName":"routeName" + }, + "virtualRouterName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual router that the route is associated with.

", + "location":"uri", + "locationName":"virtualRouterName" + } + }, + "documentation":"" + }, + "DescribeRouteOutput":{ + "type":"structure", + "required":["route"], + "members":{ + "route":{ + "shape":"RouteData", + "documentation":"

The full description of your route.

" + } + }, + "documentation":"", + "payload":"route" + }, + "DescribeVirtualGatewayInput":{ + "type":"structure", + "required":[ "meshName", "virtualGatewayName" ], - "members": { - "limit": { - "shape": "ListGatewayRoutesLimit", - "documentation": "

The maximum number of results returned by ListGatewayRoutes in paginated\n output. When you use this parameter, ListGatewayRoutes returns only\n limit results in a single page along with a nextToken response\n element. You can see the remaining results of the initial request by sending another\n ListGatewayRoutes request with the returned nextToken value.\n This value can be between 1 and 100. If you don't use this\n parameter, ListGatewayRoutes returns up to 100 results and a\n nextToken value if applicable.

", - "location": "querystring", - "locationName": "limit" - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh to list gateway routes in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "nextToken": { - "shape": "String", - "documentation": "

The nextToken value returned from a previous paginated\n ListGatewayRoutes request where limit was used and the results\n exceeded the value of that parameter. Pagination continues from the end of the previous\n results that returned the nextToken value.

", - "location": "querystring", - "locationName": "nextToken" - }, - "virtualGatewayName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual gateway to list gateway routes in.

", - "location": "uri", - "locationName": "virtualGatewayName" + "members":{ + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the gateway route resides in.

", + "location":"uri", + "locationName":"meshName" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "virtualGatewayName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual gateway to describe.

", + "location":"uri", + "locationName":"virtualGatewayName" } } }, - "VirtualRouterData": { - "type": "structure", - "required": [ - "meshName", - "metadata", - "spec", - "status", - "virtualRouterName" - ], - "members": { - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the virtual router resides in.

" - }, - "metadata": { - "shape": "ResourceMetadata", - "documentation": "

The associated metadata for the virtual router.

" - }, - "spec": { - "shape": "VirtualRouterSpec", - "documentation": "

The specifications of the virtual router.

" - }, - "status": { - "shape": "VirtualRouterStatus", - "documentation": "

The current status of the virtual router.

" - }, - "virtualRouterName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual router.

" + "DescribeVirtualGatewayOutput":{ + "type":"structure", + "required":["virtualGateway"], + "members":{ + "virtualGateway":{ + "shape":"VirtualGatewayData", + "documentation":"

The full description of your virtual gateway.

" } }, - "documentation": "

An object that represents a virtual router returned by a describe operation.

" + "payload":"virtualGateway" }, - "UpdateMeshInput": { - "type": "structure", - "required": [ - "meshName" + "DescribeVirtualNodeInput":{ + "type":"structure", + "required":[ + "meshName", + "virtualNodeName" ], - "members": { - "clientToken": { - "shape": "String", - "documentation": "

Unique, case-sensitive identifier that you provide to ensure the idempotency of the\nrequest. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", - "idempotencyToken": true + "members":{ + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the virtual node resides in.

", + "location":"uri", + "locationName":"meshName" }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh to update.

", - "location": "uri", - "locationName": "meshName" + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" }, - "spec": { - "shape": "MeshSpec", - "documentation": "

The service mesh specification to apply.

" + "virtualNodeName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual node to describe.

", + "location":"uri", + "locationName":"virtualNodeName" } }, - "documentation": "" + "documentation":"" }, - "VirtualGatewayHealthCheckPolicy": { - "type": "structure", - "required": [ - "healthyThreshold", - "intervalMillis", - "protocol", - "timeoutMillis", - "unhealthyThreshold" - ], - "members": { - "healthyThreshold": { - "shape": "VirtualGatewayHealthCheckThreshold", - "documentation": "

The number of consecutive successful health checks that must occur before declaring the\n listener healthy.

" - }, - "intervalMillis": { - "shape": "VirtualGatewayHealthCheckIntervalMillis", - "documentation": "

The time period in milliseconds between each health check execution.

" - }, - "path": { - "shape": "String", - "documentation": "

The destination path for the health check request. This value is only used if the\n specified protocol is HTTP or HTTP/2. For any other protocol, this value is ignored.

" - }, - "port": { - "shape": "PortNumber", - "documentation": "

The destination port for the health check request. This port must match the port defined\n in the PortMapping for the listener.

" - }, - "protocol": { - "shape": "VirtualGatewayPortProtocol", - "documentation": "

The protocol for the health check request. If you specify grpc, then your\n service must conform to the GRPC Health\n Checking Protocol.

" - }, - "timeoutMillis": { - "shape": "VirtualGatewayHealthCheckTimeoutMillis", - "documentation": "

The amount of time to wait when receiving a response from the health check, in\n milliseconds.

" - }, - "unhealthyThreshold": { - "shape": "VirtualGatewayHealthCheckThreshold", - "documentation": "

The number of consecutive failed health checks that must occur before declaring a\n virtual gateway unhealthy.

" + "DescribeVirtualNodeOutput":{ + "type":"structure", + "required":["virtualNode"], + "members":{ + "virtualNode":{ + "shape":"VirtualNodeData", + "documentation":"

The full description of your virtual node.

" } }, - "documentation": "

An object that represents the health check policy for a virtual gateway's\n listener.

" + "documentation":"", + "payload":"virtualNode" }, - "CreateVirtualRouterInput": { - "type": "structure", - "required": [ + "DescribeVirtualRouterInput":{ + "type":"structure", + "required":[ "meshName", - "spec", "virtualRouterName" ], - "members": { - "clientToken": { - "shape": "String", - "documentation": "

Unique, case-sensitive identifier that you provide to ensure the idempotency of the\nrequest. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", - "idempotencyToken": true - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh to create the virtual router in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then\n the account that you specify must share the mesh with your account before you can create \n the resource in the service mesh. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "spec": { - "shape": "VirtualRouterSpec", - "documentation": "

The virtual router specification to apply.

" - }, - "tags": { - "shape": "TagList", - "documentation": "

Optional metadata that you can apply to the virtual router to assist with categorization\n and organization. Each tag consists of a key and an optional value, both of which you\n define. Tag keys can have a maximum character length of 128 characters, and tag values can have\n a maximum length of 256 characters.

", - "tags": [ - "not-preview" - ] - }, - "virtualRouterName": { - "shape": "ResourceName", - "documentation": "

The name to use for the virtual router.

" - } - }, - "documentation": "" - }, - "DescribeVirtualRouterOutput": { - "type": "structure", - "required": [ - "virtualRouter" - ], - "members": { - "virtualRouter": { - "shape": "VirtualRouterData", - "documentation": "

The full description of your virtual router.

" + "members":{ + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the virtual router resides in.

", + "location":"uri", + "locationName":"meshName" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "virtualRouterName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual router to describe.

", + "location":"uri", + "locationName":"virtualRouterName" } }, - "documentation": "", - "payload": "virtualRouter" + "documentation":"" }, - "CreateMeshOutput": { - "type": "structure", - "required": [ - "mesh" - ], - "members": { - "mesh": { - "shape": "MeshData", - "documentation": "

The full description of your service mesh following the create call.

" + "DescribeVirtualRouterOutput":{ + "type":"structure", + "required":["virtualRouter"], + "members":{ + "virtualRouter":{ + "shape":"VirtualRouterData", + "documentation":"

The full description of your virtual router.

" } }, - "documentation": "", - "payload": "mesh" + "documentation":"", + "payload":"virtualRouter" }, - "CreateVirtualRouterOutput": { - "type": "structure", - "required": [ - "virtualRouter" + "DescribeVirtualServiceInput":{ + "type":"structure", + "required":[ + "meshName", + "virtualServiceName" ], - "members": { - "virtualRouter": { - "shape": "VirtualRouterData", - "documentation": "

The full description of your virtual router following the create call.

" + "members":{ + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the virtual service resides in.

", + "location":"uri", + "locationName":"meshName" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "virtualServiceName":{ + "shape":"ServiceName", + "documentation":"

The name of the virtual service to describe.

", + "location":"uri", + "locationName":"virtualServiceName" } }, - "documentation": "", - "payload": "virtualRouter" + "documentation":"" }, - "VirtualServiceStatus": { - "type": "structure", - "required": [ - "status" - ], - "members": { - "status": { - "shape": "VirtualServiceStatusCode", - "documentation": "

The current status of the virtual service.

" + "DescribeVirtualServiceOutput":{ + "type":"structure", + "required":["virtualService"], + "members":{ + "virtualService":{ + "shape":"VirtualServiceData", + "documentation":"

The full description of your virtual service.

" } }, - "documentation": "

An object that represents the status of a virtual service.

" - }, - "HttpRetryPolicyEvents": { - "type": "list", - "member": { - "shape": "HttpRetryPolicyEvent" - }, - "min": 1, - "max": 25 + "documentation":"", + "payload":"virtualService" }, - "VirtualGatewayListenerTlsCertificate": { - "type": "structure", - "members": { - "acm": { - "shape": "VirtualGatewayListenerTlsAcmCertificate", - "documentation": "

A reference to an object that represents an AWS Certicate Manager (ACM) certificate.

" - }, - "file": { - "shape": "VirtualGatewayListenerTlsFileCertificate", - "documentation": "

A reference to an object that represents a local file certificate.

" + "DnsServiceDiscovery":{ + "type":"structure", + "required":["hostname"], + "members":{ + "hostname":{ + "shape":"Hostname", + "documentation":"

Specifies the DNS service discovery hostname for the virtual node.

" } }, - "documentation": "

An object that represents a listener's Transport Layer Security (TLS) certificate.

" + "documentation":"

An object that represents the DNS service discovery information for your virtual node.

" }, - "ListenerTlsCertificate": { - "type": "structure", - "members": { - "acm": { - "shape": "ListenerTlsAcmCertificate", - "documentation": "

A reference to an object that represents an AWS Certicate Manager (ACM) certificate.

" + "Duration":{ + "type":"structure", + "members":{ + "unit":{ + "shape":"DurationUnit", + "documentation":"

A unit of time.

" }, - "file": { - "shape": "ListenerTlsFileCertificate", - "documentation": "

A reference to an object that represents a local file certificate.

" + "value":{ + "shape":"DurationValue", + "documentation":"

A number of time units.

" } }, - "documentation": "

An object that represents a listener's Transport Layer Security (TLS) certificate.

" + "documentation":"

An object that represents a duration of time.

" }, - "ListMeshesLimit": { - "type": "integer", - "box": true, - "min": 1, - "max": 100 + "DurationUnit":{ + "type":"string", + "enum":[ + "s", + "ms" + ] }, - "AwsCloudMapInstanceAttributeKey": { - "type": "string", - "min": 1, - "max": 255, - "pattern": "^[a-zA-Z0-9!-~]+$" + "DurationValue":{ + "type":"long", + "box":true, + "min":0 }, - "VirtualRouterSpec": { - "type": "structure", - "members": { - "listeners": { - "shape": "VirtualRouterListeners", - "documentation": "

The listeners that the virtual router is expected to receive inbound traffic from. You\n can specify one listener.

" + "EgressFilter":{ + "type":"structure", + "required":["type"], + "members":{ + "type":{ + "shape":"EgressFilterType", + "documentation":"

The egress filter type. By default, the type is DROP_ALL, which allows egress only from virtual nodes to other defined resources in the service mesh (and any traffic to *.amazonaws.com for AWS API calls). You can set the egress filter type to ALLOW_ALL to allow egress to any endpoint inside or outside of the service mesh.

" } }, - "documentation": "

An object that represents the specification of a virtual router.

" + "documentation":"

An object that represents the egress filter rules for a service mesh.

" }, - "GatewayRouteVirtualService": { - "type": "structure", - "required": [ - "virtualServiceName" - ], - "members": { - "virtualServiceName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual service that traffic is routed to.

" + "EgressFilterType":{ + "type":"string", + "enum":[ + "ALLOW_ALL", + "DROP_ALL" + ] + }, + "FileAccessLog":{ + "type":"structure", + "required":["path"], + "members":{ + "path":{ + "shape":"FilePath", + "documentation":"

The file path to write access logs to. You can use /dev/stdout to send access logs to standard out and configure your Envoy container to use a log driver, such as awslogs, to export the access logs to a log storage service such as Amazon CloudWatch Logs. You can also specify a path in the Envoy container's file system to write the files to disk.

The Envoy process must have write permissions to the path that you specify here. Otherwise, Envoy fails to bootstrap properly.

" } }, - "documentation": "

An object that represents the virtual service that traffic is routed to.

" + "documentation":"

An object that represents an access log file.

" + }, + "FilePath":{ + "type":"string", + "max":255, + "min":1 + }, + "ForbiddenException":{ + "type":"structure", + "members":{ + "message":{"shape":"String"} + }, + "documentation":"

You don't have permissions to perform this action.

", + "error":{ + "httpStatusCode":403, + "senderFault":true + }, + "exception":true }, - "VirtualNodeSpec": { - "type": "structure", - "members": { - "backendDefaults": { - "shape": "BackendDefaults", - "documentation": "

A reference to an object that represents the defaults for backends.

" + "GatewayRouteData":{ + "type":"structure", + "required":[ + "gatewayRouteName", + "meshName", + "metadata", + "spec", + "status", + "virtualGatewayName" + ], + "members":{ + "gatewayRouteName":{ + "shape":"ResourceName", + "documentation":"

The name of the gateway route.

" }, - "backends": { - "shape": "Backends", - "documentation": "

The backends that the virtual node is expected to send outbound traffic to.

" + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the resource resides in.

" }, - "listeners": { - "shape": "Listeners", - "documentation": "

The listener that the virtual node is expected to receive inbound traffic from. You can\n specify one listener.

" + "metadata":{"shape":"ResourceMetadata"}, + "spec":{ + "shape":"GatewayRouteSpec", + "documentation":"

The specifications of the gateway route.

" }, - "logging": { - "shape": "Logging", - "documentation": "

The inbound and outbound access logging information for the virtual node.

" + "status":{ + "shape":"GatewayRouteStatus", + "documentation":"

The status of the gateway route.

" }, - "serviceDiscovery": { - "shape": "ServiceDiscovery", - "documentation": "

The service discovery information for the virtual node. If your virtual node does not\n expect ingress traffic, you can omit this parameter. If you specify a\n listener, then you must specify service discovery information.

" + "virtualGatewayName":{ + "shape":"ResourceName", + "documentation":"

The virtual gateway that the gateway route is associated with.

" } }, - "documentation": "

An object that represents the specification of a virtual node.

" + "documentation":"

An object that represents a gateway route returned by a describe operation.

" }, - "ListMeshesOutput": { - "type": "structure", - "required": [ - "meshes" + "GatewayRouteList":{ + "type":"list", + "member":{"shape":"GatewayRouteRef"} + }, + "GatewayRouteRef":{ + "type":"structure", + "required":[ + "arn", + "createdAt", + "gatewayRouteName", + "lastUpdatedAt", + "meshName", + "meshOwner", + "resourceOwner", + "version", + "virtualGatewayName" ], - "members": { - "meshes": { - "shape": "MeshList", - "documentation": "

The list of existing service meshes.

" + "members":{ + "arn":{ + "shape":"Arn", + "documentation":"

The full Amazon Resource Name (ARN) for the gateway route.

" }, - "nextToken": { - "shape": "String", - "documentation": "

The nextToken value to include in a future ListMeshes request.\n When the results of a ListMeshes request exceed limit, you can\n use this value to retrieve the next page of results. This value is null when\n there are no more results to return.

" + "createdAt":{ + "shape":"Timestamp", + "documentation":"

The Unix epoch timestamp in seconds for when the resource was created.

" + }, + "gatewayRouteName":{ + "shape":"ResourceName", + "documentation":"

The name of the gateway route.

" + }, + "lastUpdatedAt":{ + "shape":"Timestamp", + "documentation":"

The Unix epoch timestamp in seconds for when the resource was last updated.

" + }, + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the resource resides in.

" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

" + }, + "resourceOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the resource owner. If the account ID is not your own, then it's the ID of the mesh owner or of another account that the mesh is shared with. For more information about mesh sharing, see Working with shared meshes.

" + }, + "version":{ + "shape":"Long", + "documentation":"

The version of the resource. Resources are created at version 1, and this version is incremented each time that they're updated.

" + }, + "virtualGatewayName":{ + "shape":"ResourceName", + "documentation":"

The virtual gateway that the gateway route is associated with.

" } }, - "documentation": "" - }, - "VirtualRouterListeners": { - "type": "list", - "member": { - "shape": "VirtualRouterListener" - }, - "min": 1, - "max": 1 + "documentation":"

An object that represents a gateway route returned by a list operation.

" }, - "GatewayRouteSpec": { - "type": "structure", - "members": { - "grpcRoute": { - "shape": "GrpcGatewayRoute", - "documentation": "

An object that represents the specification of a gRPC gateway route.

" + "GatewayRouteSpec":{ + "type":"structure", + "members":{ + "grpcRoute":{ + "shape":"GrpcGatewayRoute", + "documentation":"

An object that represents the specification of a gRPC gateway route.

" }, - "http2Route": { - "shape": "HttpGatewayRoute", - "documentation": "

An object that represents the specification of an HTTP/2 gateway route.

" + "http2Route":{ + "shape":"HttpGatewayRoute", + "documentation":"

An object that represents the specification of an HTTP/2 gateway route.

" }, - "httpRoute": { - "shape": "HttpGatewayRoute", - "documentation": "

An object that represents the specification of an HTTP gateway route.

" + "httpRoute":{ + "shape":"HttpGatewayRoute", + "documentation":"

An object that represents the specification of an HTTP gateway route.

" } }, - "documentation": "

An object that represents a gateway route specification. Specify one gateway route\n type.

" + "documentation":"

An object that represents a gateway route specification. Specify one gateway route type.

" }, - "PortSet": { - "type": "list", - "member": { - "shape": "PortNumber" - } + "GatewayRouteStatus":{ + "type":"structure", + "required":["status"], + "members":{ + "status":{ + "shape":"GatewayRouteStatusCode", + "documentation":"

The current status for the gateway route.

" + } + }, + "documentation":"

An object that represents the current status of a gateway route.

" }, - "HttpMethod": { - "type": "string", - "enum": [ - "CONNECT", - "DELETE", - "GET", - "HEAD", - "OPTIONS", - "PATCH", - "POST", - "PUT", - "TRACE" + "GatewayRouteStatusCode":{ + "type":"string", + "enum":[ + "ACTIVE", + "INACTIVE", + "DELETED" ] }, - "ConflictException": { - "type": "structure", - "members": { - "message": { - "shape": "String" + "GatewayRouteTarget":{ + "type":"structure", + "required":["virtualService"], + "members":{ + "virtualService":{ + "shape":"GatewayRouteVirtualService", + "documentation":"

An object that represents a virtual service gateway route target.

" } }, - "documentation": "

The request contains a client token that was used for a previous update resource call\n with different specifications. Try the request again with a new client token.

", - "exception": true, - "error": { - "code": "ConflictException", - "httpStatusCode": 409, - "senderFault": true - } + "documentation":"

An object that represents a gateway route target.

" }, - "VirtualGatewayBackendDefaults": { - "type": "structure", - "members": { - "clientPolicy": { - "shape": "VirtualGatewayClientPolicy", - "documentation": "

A reference to an object that represents a client policy.

" + "GatewayRouteVirtualService":{ + "type":"structure", + "required":["virtualServiceName"], + "members":{ + "virtualServiceName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual service that traffic is routed to.

" } }, - "documentation": "

An object that represents the default properties for a backend.

" + "documentation":"

An object that represents the virtual service that traffic is routed to.

" }, - "ListenerTimeout": { - "type": "structure", - "members": { - "grpc": { - "shape": "GrpcTimeout" - }, - "http": { - "shape": "HttpTimeout", - "documentation": "

An object that represents types of timeouts.

" - }, - "http2": { - "shape": "HttpTimeout", - "documentation": "

An object that represents types of timeouts.

" + "GrpcGatewayRoute":{ + "type":"structure", + "required":[ + "action", + "match" + ], + "members":{ + "action":{ + "shape":"GrpcGatewayRouteAction", + "documentation":"

An object that represents the action to take if a match is determined.

" }, - "tcp": { - "shape": "TcpTimeout", - "documentation": "

An object that represents types of timeouts.

" + "match":{ + "shape":"GrpcGatewayRouteMatch", + "documentation":"

An object that represents the criteria for determining a request match.

" } }, - "documentation": "

An object that represents timeouts for different protocols.

" - }, - "MeshList": { - "type": "list", - "member": { - "shape": "MeshRef" - } + "documentation":"

An object that represents a gRPC gateway route.

" }, - "MaxRetries": { - "type": "long", - "box": true, - "min": 0 - }, - "DescribeGatewayRouteInput": { - "type": "structure", - "required": [ - "gatewayRouteName", - "meshName", - "virtualGatewayName" - ], - "members": { - "gatewayRouteName": { - "shape": "ResourceName", - "documentation": "

The name of the gateway route to describe.

", - "location": "uri", - "locationName": "gatewayRouteName" - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the gateway route resides in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "virtualGatewayName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual gateway that the gateway route is associated with.

", - "location": "uri", - "locationName": "virtualGatewayName" + "GrpcGatewayRouteAction":{ + "type":"structure", + "required":["target"], + "members":{ + "target":{ + "shape":"GatewayRouteTarget", + "documentation":"

An object that represents the target that traffic is routed to when a request matches the gateway route.

" } - } + }, + "documentation":"

An object that represents the action to take if a match is determined.

" }, - "TlsValidationContextTrust": { - "type": "structure", - "members": { - "acm": { - "shape": "TlsValidationContextAcmTrust", - "documentation": "

A reference to an object that represents a TLS validation context trust for an AWS Certicate Manager (ACM)\n certificate.

" - }, - "file": { - "shape": "TlsValidationContextFileTrust", - "documentation": "

An object that represents a TLS validation context trust for a local file.

" + "GrpcGatewayRouteMatch":{ + "type":"structure", + "members":{ + "serviceName":{ + "shape":"ServiceName", + "documentation":"

The fully qualified domain name for the service to match from the request.

" } }, - "documentation": "

An object that represents a Transport Layer Security (TLS) validation context trust.

" + "documentation":"

An object that represents the criteria for determining a request match.

" }, - "PortMapping": { - "type": "structure", - "required": [ - "port", - "protocol" + "GrpcRetryPolicy":{ + "type":"structure", + "required":[ + "maxRetries", + "perRetryTimeout" ], - "members": { - "port": { - "shape": "PortNumber", - "documentation": "

The port used for the port mapping.

" + "members":{ + "grpcRetryEvents":{ + "shape":"GrpcRetryPolicyEvents", + "documentation":"

Specify at least one of the valid values.

" }, - "protocol": { - "shape": "PortProtocol", - "documentation": "

The protocol used for the port mapping. Specify one protocol.

" + "httpRetryEvents":{ + "shape":"HttpRetryPolicyEvents", + "documentation":"

Specify at least one of the following values.

  • server-error – HTTP status codes 500, 501, 502, 503, 504, 505, 506, 507, 508, 510, and 511

  • gateway-error – HTTP status codes 502, 503, and 504

  • client-error – HTTP status code 409

  • stream-error – Retry on refused stream

" + }, + "maxRetries":{ + "shape":"MaxRetries", + "documentation":"

The maximum number of retry attempts.

" + }, + "perRetryTimeout":{ + "shape":"Duration", + "documentation":"

The timeout for each retry attempt.

" + }, + "tcpRetryEvents":{ + "shape":"TcpRetryPolicyEvents", + "documentation":"

Specify a valid value. The event occurs before any processing of a request has started and is encountered when the upstream is temporarily or permanently unavailable.

" } }, - "documentation": "

An object that represents a port mapping.

" + "documentation":"

An object that represents a retry policy. Specify at least one value for at least one of the types of RetryEvents, a value for maxRetries, and a value for perRetryTimeout.

" + }, + "GrpcRetryPolicyEvent":{ + "type":"string", + "enum":[ + "cancelled", + "deadline-exceeded", + "internal", + "resource-exhausted", + "unavailable" + ] }, - "VirtualGatewayHealthCheckThreshold": { - "type": "integer", - "min": 2, - "max": 10 + "GrpcRetryPolicyEvents":{ + "type":"list", + "member":{"shape":"GrpcRetryPolicyEvent"}, + "max":5, + "min":1 }, - "ListVirtualServicesOutput": { - "type": "structure", - "required": [ - "virtualServices" + "GrpcRoute":{ + "type":"structure", + "required":[ + "action", + "match" ], - "members": { - "nextToken": { - "shape": "String", - "documentation": "

The nextToken value to include in a future ListVirtualServices\n request. When the results of a ListVirtualServices request exceed\n limit, you can use this value to retrieve the next page of results. This\n value is null when there are no more results to return.

" + "members":{ + "action":{ + "shape":"GrpcRouteAction", + "documentation":"

An object that represents the action to take if a match is determined.

" }, - "virtualServices": { - "shape": "VirtualServiceList", - "documentation": "

The list of existing virtual services for the specified service mesh.

" + "match":{ + "shape":"GrpcRouteMatch", + "documentation":"

An object that represents the criteria for determining a request match.

" + }, + "retryPolicy":{ + "shape":"GrpcRetryPolicy", + "documentation":"

An object that represents a retry policy.

" + }, + "timeout":{ + "shape":"GrpcTimeout", + "documentation":"

An object that represents types of timeouts.

" } }, - "documentation": "" + "documentation":"

An object that represents a gRPC route type.

" }, - "AwsCloudMapInstanceAttributeValue": { - "type": "string", - "min": 1, - "max": 1024, - "pattern": "^([a-zA-Z0-9!-~][ ta-zA-Z0-9!-~]*){0,1}[a-zA-Z0-9!-~]{0,1}$" + "GrpcRouteAction":{ + "type":"structure", + "required":["weightedTargets"], + "members":{ + "weightedTargets":{ + "shape":"WeightedTargets", + "documentation":"

An object that represents the targets that traffic is routed to when a request matches the route.

" + } + }, + "documentation":"

An object that represents the action to take if a match is determined.

" }, - "WeightedTarget": { - "type": "structure", - "required": [ - "virtualNode", - "weight" - ], - "members": { - "virtualNode": { - "shape": "ResourceName", - "documentation": "

The virtual node to associate with the weighted target.

" + "GrpcRouteMatch":{ + "type":"structure", + "members":{ + "metadata":{ + "shape":"GrpcRouteMetadataList", + "documentation":"

An object that represents the data to match from the request.

" + }, + "methodName":{ + "shape":"MethodName", + "documentation":"

The method name to match from the request. If you specify a name, you must also specify a serviceName.

" }, - "weight": { - "shape": "PercentInt", - "documentation": "

The relative weight of the weighted target.

" + "serviceName":{ + "shape":"ServiceName", + "documentation":"

The fully qualified domain name for the service to match from the request.

" } }, - "documentation": "

An object that represents a target and its relative weight. Traffic is distributed\n across targets according to their relative weight. For example, a weighted target with a\n relative weight of 50 receives five times as much traffic as one with a relative weight of\n 10. The total weight for all targets combined must be less than or equal to 100.

" + "documentation":"

An object that represents the criteria for determining a request match.

" }, - "GrpcGatewayRoute": { - "type": "structure", - "required": [ - "action", - "match" - ], - "members": { - "action": { - "shape": "GrpcGatewayRouteAction", - "documentation": "

An object that represents the action to take if a match is determined.

" + "GrpcRouteMetadata":{ + "type":"structure", + "required":["name"], + "members":{ + "invert":{ + "shape":"Boolean", + "documentation":"

Specify True to match anything except the match criteria. The default value is False.

" + }, + "match":{ + "shape":"GrpcRouteMetadataMatchMethod", + "documentation":"

An object that represents the data to match from the request.

" }, - "match": { - "shape": "GrpcGatewayRouteMatch", - "documentation": "

An object that represents the criteria for determining a request match.

" + "name":{ + "shape":"HeaderName", + "documentation":"

The name of the route.

" } }, - "documentation": "

An object that represents a gRPC gateway route.

" + "documentation":"

An object that represents the match metadata for the route.

" }, - "GatewayRouteData": { - "type": "structure", - "required": [ - "gatewayRouteName", - "meshName", - "metadata", - "spec", - "status", - "virtualGatewayName" - ], - "members": { - "gatewayRouteName": { - "shape": "ResourceName", - "documentation": "

The name of the gateway route.

" - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the resource resides in.

" + "GrpcRouteMetadataList":{ + "type":"list", + "member":{"shape":"GrpcRouteMetadata"}, + "max":10, + "min":1 + }, + "GrpcRouteMetadataMatchMethod":{ + "type":"structure", + "members":{ + "exact":{ + "shape":"HeaderMatch", + "documentation":"

The value sent by the client must match the specified value exactly.

" }, - "metadata": { - "shape": "ResourceMetadata" + "prefix":{ + "shape":"HeaderMatch", + "documentation":"

The value sent by the client must begin with the specified characters.

" }, - "spec": { - "shape": "GatewayRouteSpec", - "documentation": "

The specifications of the gateway route.

" + "range":{ + "shape":"MatchRange", + "documentation":"

An object that represents the range of values to match on.

" }, - "status": { - "shape": "GatewayRouteStatus", - "documentation": "

The status of the gateway route.

" + "regex":{ + "shape":"HeaderMatch", + "documentation":"

The value sent by the client must include the specified characters.

" }, - "virtualGatewayName": { - "shape": "ResourceName", - "documentation": "

The virtual gateway that the gateway route is associated with.

" + "suffix":{ + "shape":"HeaderMatch", + "documentation":"

The value sent by the client must end with the specified characters.

" } }, - "documentation": "

An object that represents a gateway route returned by a describe operation.

" + "documentation":"

An object that represents the match method. Specify one of the match values.

", + "union":true }, - "RouteRef": { - "type": "structure", - "required": [ - "arn", - "createdAt", - "lastUpdatedAt", - "meshName", - "meshOwner", - "resourceOwner", - "routeName", - "version", - "virtualRouterName" - ], - "members": { - "arn": { - "shape": "Arn", - "documentation": "

The full Amazon Resource Name (ARN) for the route.

" - }, - "createdAt": { - "shape": "Timestamp", - "documentation": "

The Unix epoch timestamp in seconds for when the resource was created.

" + "GrpcTimeout":{ + "type":"structure", + "members":{ + "idle":{ + "shape":"Duration", + "documentation":"

An object that represents an idle timeout. An idle timeout bounds the amount of time that a connection may be idle. The default value is none.

" }, - "lastUpdatedAt": { - "shape": "Timestamp", - "documentation": "

The Unix epoch timestamp in seconds for when the resource was last updated.

" - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the route resides in.

" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

" + "perRequest":{ + "shape":"Duration", + "documentation":"

An object that represents a per request timeout. The default value is 15 seconds. If you set a higher timeout, then make sure that the higher value is set for each App Mesh resource in a conversation. For example, if a virtual node backend uses a virtual router provider to route to another virtual node, then the timeout should be greater than 15 seconds for the source and destination virtual node and the route.

" + } + }, + "documentation":"

An object that represents types of timeouts.

" + }, + "HeaderMatch":{ + "type":"string", + "max":255, + "min":1 + }, + "HeaderMatchMethod":{ + "type":"structure", + "members":{ + "exact":{ + "shape":"HeaderMatch", + "documentation":"

The value sent by the client must match the specified value exactly.

" }, - "resourceOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the resource owner. If the account ID is not your own, then it's\n the ID of the mesh owner or of another account that the mesh is shared with. For more information about mesh sharing, see Working with shared meshes.

" + "prefix":{ + "shape":"HeaderMatch", + "documentation":"

The value sent by the client must begin with the specified characters.

" }, - "routeName": { - "shape": "ResourceName", - "documentation": "

The name of the route.

" + "range":{ + "shape":"MatchRange", + "documentation":"

An object that represents the range of values to match on.

" }, - "version": { - "shape": "Long", - "documentation": "

The version of the resource. Resources are created at version 1, and this version is incremented each time that they're updated.

" + "regex":{ + "shape":"HeaderMatch", + "documentation":"

The value sent by the client must include the specified characters.

" }, - "virtualRouterName": { - "shape": "ResourceName", - "documentation": "

The virtual router that the route is associated with.

" + "suffix":{ + "shape":"HeaderMatch", + "documentation":"

The value sent by the client must end with the specified characters.

" } }, - "documentation": "

An object that represents a route returned by a list operation.

" + "documentation":"

An object that represents the method and value to match with the header value sent in a request. Specify one match method.

", + "union":true }, - "DeleteVirtualNodeInput": { - "type": "structure", - "required": [ - "meshName", - "virtualNodeName" - ], - "members": { - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh to delete the virtual node in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "virtualNodeName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual node to delete.

", - "location": "uri", - "locationName": "virtualNodeName" - } - }, - "documentation": "" - }, - "RouteData": { - "type": "structure", - "required": [ - "meshName", - "metadata", - "routeName", - "spec", - "status", - "virtualRouterName" + "HeaderName":{ + "type":"string", + "max":50, + "min":1 + }, + "HealthCheckIntervalMillis":{ + "type":"long", + "box":true, + "max":300000, + "min":5000 + }, + "HealthCheckPolicy":{ + "type":"structure", + "required":[ + "healthyThreshold", + "intervalMillis", + "protocol", + "timeoutMillis", + "unhealthyThreshold" ], - "members": { - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the route resides in.

" + "members":{ + "healthyThreshold":{ + "shape":"HealthCheckThreshold", + "documentation":"

The number of consecutive successful health checks that must occur before declaring listener healthy.

" }, - "metadata": { - "shape": "ResourceMetadata", - "documentation": "

The associated metadata for the route.

" + "intervalMillis":{ + "shape":"HealthCheckIntervalMillis", + "documentation":"

The time period in milliseconds between each health check execution.

" }, - "routeName": { - "shape": "ResourceName", - "documentation": "

The name of the route.

" + "path":{ + "shape":"String", + "documentation":"

The destination path for the health check request. This value is only used if the specified protocol is HTTP or HTTP/2. For any other protocol, this value is ignored.

" }, - "spec": { - "shape": "RouteSpec", - "documentation": "

The specifications of the route.

" + "port":{ + "shape":"PortNumber", + "documentation":"

The destination port for the health check request. This port must match the port defined in the PortMapping for the listener.

" }, - "status": { - "shape": "RouteStatus", - "documentation": "

The status of the route.

" + "protocol":{ + "shape":"PortProtocol", + "documentation":"

The protocol for the health check request. If you specify grpc, then your service must conform to the GRPC Health Checking Protocol.

" }, - "virtualRouterName": { - "shape": "ResourceName", - "documentation": "

The virtual router that the route is associated with.

" + "timeoutMillis":{ + "shape":"HealthCheckTimeoutMillis", + "documentation":"

The amount of time to wait when receiving a response from the health check, in milliseconds.

" + }, + "unhealthyThreshold":{ + "shape":"HealthCheckThreshold", + "documentation":"

The number of consecutive failed health checks that must occur before declaring a virtual node unhealthy.

" } }, - "documentation": "

An object that represents a route returned by a describe operation.

" + "documentation":"

An object that represents the health check policy for a virtual node's listener.

" }, - "RouteStatusCode": { - "type": "string", - "enum": [ - "ACTIVE", - "DELETED", - "INACTIVE" - ] + "HealthCheckThreshold":{ + "type":"integer", + "max":10, + "min":2 + }, + "HealthCheckTimeoutMillis":{ + "type":"long", + "box":true, + "max":60000, + "min":2000 }, - "InternalServerErrorException": { - "type": "structure", - "members": { - "message": { - "shape": "String" + "Hostname":{"type":"string"}, + "HttpGatewayRoute":{ + "type":"structure", + "required":[ + "action", + "match" + ], + "members":{ + "action":{ + "shape":"HttpGatewayRouteAction", + "documentation":"

An object that represents the action to take if a match is determined.

" + }, + "match":{ + "shape":"HttpGatewayRouteMatch", + "documentation":"

An object that represents the criteria for determining a request match.

" } }, - "documentation": "

The request processing has failed because of an unknown error, exception, or\n failure.

", - "exception": true, - "error": { - "code": "InternalServerErrorException", - "httpStatusCode": 500, - "fault": true - } + "documentation":"

An object that represents an HTTP gateway route.

" }, - "HeaderName": { - "type": "string", - "min": 1, - "max": 50 + "HttpGatewayRouteAction":{ + "type":"structure", + "required":["target"], + "members":{ + "target":{ + "shape":"GatewayRouteTarget", + "documentation":"

An object that represents the target that traffic is routed to when a request matches the gateway route.

" + } + }, + "documentation":"

An object that represents the action to take if a match is determined.

" }, - "TagList": { - "type": "list", - "member": { - "shape": "TagRef" + "HttpGatewayRouteMatch":{ + "type":"structure", + "required":["prefix"], + "members":{ + "prefix":{ + "shape":"String", + "documentation":"

Specifies the path to match requests with. This parameter must always start with /, which by itself matches all requests to the virtual service name. You can also match for path-based routing of requests. For example, if your virtual service name is my-service.local and you want the route to match requests to my-service.local/metrics, your prefix should be /metrics.

" + } }, - "min": 0, - "max": 50 + "documentation":"

An object that represents the criteria for determining a request match.

" }, - "GrpcRetryPolicyEvent": { - "type": "string", - "enum": [ - "cancelled", - "deadline-exceeded", - "internal", - "resource-exhausted", - "unavailable" + "HttpMethod":{ + "type":"string", + "enum":[ + "GET", + "HEAD", + "POST", + "PUT", + "DELETE", + "CONNECT", + "OPTIONS", + "TRACE", + "PATCH" ] }, - "TlsValidationContextAcmTrust": { - "type": "structure", - "required": [ - "certificateAuthorityArns" + "HttpRetryPolicy":{ + "type":"structure", + "required":[ + "maxRetries", + "perRetryTimeout" ], - "members": { - "certificateAuthorityArns": { - "shape": "CertificateAuthorityArns", - "documentation": "

One or more ACM Amazon Resource Name (ARN)s.

" + "members":{ + "httpRetryEvents":{ + "shape":"HttpRetryPolicyEvents", + "documentation":"

Specify at least one of the following values.

  • server-error – HTTP status codes 500, 501, 502, 503, 504, 505, 506, 507, 508, 510, and 511

  • gateway-error – HTTP status codes 502, 503, and 504

  • client-error – HTTP status code 409

  • stream-error – Retry on refused stream

" + }, + "maxRetries":{ + "shape":"MaxRetries", + "documentation":"

The maximum number of retry attempts.

" + }, + "perRetryTimeout":{ + "shape":"Duration", + "documentation":"

The timeout for each retry attempt.

" + }, + "tcpRetryEvents":{ + "shape":"TcpRetryPolicyEvents", + "documentation":"

Specify a valid value. The event occurs before any processing of a request has started and is encountered when the upstream is temporarily or permanently unavailable.

" } }, - "documentation": "

An object that represents a TLS validation context trust for an AWS Certicate Manager (ACM)\n certificate.

" + "documentation":"

An object that represents a retry policy. Specify at least one value for at least one of the types of RetryEvents, a value for maxRetries, and a value for perRetryTimeout.

" }, - "ForbiddenException": { - "type": "structure", - "members": { - "message": { - "shape": "String" - } - }, - "documentation": "

You don't have permissions to perform this action.

", - "exception": true, - "error": { - "code": "ForbiddenException", - "httpStatusCode": 403, - "senderFault": true - } + "HttpRetryPolicyEvent":{ + "type":"string", + "max":25, + "min":1 }, - "HeaderMatchMethod": { - "type": "structure", - "members": { - "exact": { - "shape": "HeaderMatch", - "documentation": "

The value sent by the client must match the specified value exactly.

" - }, - "prefix": { - "shape": "HeaderMatch", - "documentation": "

The value sent by the client must begin with the specified characters.

" + "HttpRetryPolicyEvents":{ + "type":"list", + "member":{"shape":"HttpRetryPolicyEvent"}, + "max":25, + "min":1 + }, + "HttpRoute":{ + "type":"structure", + "required":[ + "action", + "match" + ], + "members":{ + "action":{ + "shape":"HttpRouteAction", + "documentation":"

An object that represents the action to take if a match is determined.

" }, - "range": { - "shape": "MatchRange", - "documentation": "

An object that represents the range of values to match on.

" + "match":{ + "shape":"HttpRouteMatch", + "documentation":"

An object that represents the criteria for determining a request match.

" }, - "regex": { - "shape": "HeaderMatch", - "documentation": "

The value sent by the client must include the specified characters.

" + "retryPolicy":{ + "shape":"HttpRetryPolicy", + "documentation":"

An object that represents a retry policy.

" }, - "suffix": { - "shape": "HeaderMatch", - "documentation": "

The value sent by the client must end with the specified characters.

" + "timeout":{ + "shape":"HttpTimeout", + "documentation":"

An object that represents types of timeouts.

" } }, - "documentation": "

An object that represents the method and value to match with the header value sent in a\n request. Specify one match method.

" + "documentation":"

An object that represents an HTTP or HTTP/2 route type.

" }, - "DeleteMeshOutput": { - "type": "structure", - "required": [ - "mesh" - ], - "members": { - "mesh": { - "shape": "MeshData", - "documentation": "

The service mesh that was deleted.

" + "HttpRouteAction":{ + "type":"structure", + "required":["weightedTargets"], + "members":{ + "weightedTargets":{ + "shape":"WeightedTargets", + "documentation":"

An object that represents the targets that traffic is routed to when a request matches the route.

" } }, - "documentation": "", - "payload": "mesh" + "documentation":"

An object that represents the action to take if a match is determined.

" }, - "VirtualGatewayClientPolicyTls": { - "type": "structure", - "required": [ - "validation" - ], - "members": { - "enforce": { - "shape": "Boolean", - "box": true, - "documentation": "

Whether the policy is enforced. The default is True, if a value isn't\n specified.

" + "HttpRouteHeader":{ + "type":"structure", + "required":["name"], + "members":{ + "invert":{ + "shape":"Boolean", + "documentation":"

Specify True to match anything except the match criteria. The default value is False.

" }, - "ports": { - "shape": "PortSet", - "documentation": "

One or more ports that the policy is enforced for.

" + "match":{ + "shape":"HeaderMatchMethod", + "documentation":"

The HeaderMatchMethod object.

" }, - "validation": { - "shape": "VirtualGatewayTlsValidationContext", - "documentation": "

A reference to an object that represents a TLS validation context.

" + "name":{ + "shape":"HeaderName", + "documentation":"

A name for the HTTP header in the client request that will be matched on.

" } }, - "documentation": "

An object that represents a Transport Layer Security (TLS) client policy.

" + "documentation":"

An object that represents the HTTP header in the request.

" }, - "EgressFilterType": { - "type": "string", - "enum": [ - "ALLOW_ALL", - "DROP_ALL" - ] + "HttpRouteHeaders":{ + "type":"list", + "member":{"shape":"HttpRouteHeader"}, + "max":10, + "min":1 }, - "DurationValue": { - "type": "long", - "box": true, - "min": 0 + "HttpRouteMatch":{ + "type":"structure", + "required":["prefix"], + "members":{ + "headers":{ + "shape":"HttpRouteHeaders", + "documentation":"

An object that represents the client request headers to match on.

" + }, + "method":{ + "shape":"HttpMethod", + "documentation":"

The client request method to match on. Specify only one.

" + }, + "prefix":{ + "shape":"String", + "documentation":"

Specifies the path to match requests with. This parameter must always start with /, which by itself matches all requests to the virtual service name. You can also match for path-based routing of requests. For example, if your virtual service name is my-service.local and you want the route to match requests to my-service.local/metrics, your prefix should be /metrics.

" + }, + "scheme":{ + "shape":"HttpScheme", + "documentation":"

The client request scheme to match on. Specify only one.

" + } + }, + "documentation":"

An object that represents the requirements for a route to match HTTP requests for a virtual router.

" }, - "Hostname": { - "type": "string" + "HttpScheme":{ + "type":"string", + "enum":[ + "http", + "https" + ] }, - "VirtualGatewayStatus": { - "type": "structure", - "required": [ - "status" - ], - "members": { - "status": { - "shape": "VirtualGatewayStatusCode", - "documentation": "

The current status.

" + "HttpTimeout":{ + "type":"structure", + "members":{ + "idle":{ + "shape":"Duration", + "documentation":"

An object that represents an idle timeout. An idle timeout bounds the amount of time that a connection may be idle. The default value is none.

" + }, + "perRequest":{ + "shape":"Duration", + "documentation":"

An object that represents a per request timeout. The default value is 15 seconds. If you set a higher timeout, then make sure that the higher value is set for each App Mesh resource in a conversation. For example, if a virtual node backend uses a virtual router provider to route to another virtual node, then the timeout should be greater than 15 seconds for the source and destination virtual node and the route.

" } }, - "documentation": "

An object that represents the status of the mesh resource.

" + "documentation":"

An object that represents types of timeouts.

" }, - "GatewayRouteStatus": { - "type": "structure", - "required": [ - "status" - ], - "members": { - "status": { - "shape": "GatewayRouteStatusCode", - "documentation": "

The current status for the gateway route.

" - } + "InternalServerErrorException":{ + "type":"structure", + "members":{ + "message":{"shape":"String"} }, - "documentation": "

An object that represents the current status of a gateway route.

" + "documentation":"

The request processing has failed because of an unknown error, exception, or failure.

", + "error":{"httpStatusCode":500}, + "exception":true, + "fault":true, + "retryable":{"throttling":false} }, - "VirtualGatewayListeners": { - "type": "list", - "member": { - "shape": "VirtualGatewayListener" + "LimitExceededException":{ + "type":"structure", + "members":{ + "message":{"shape":"String"} }, - "min": 0, - "max": 1 + "documentation":"

You have exceeded a service limit for your account. For more information, see Service Limits in the AWS App Mesh User Guide.

", + "error":{ + "httpStatusCode":400, + "senderFault":true + }, + "exception":true }, - "TagResourceInput": { - "type": "structure", - "required": [ - "resourceArn", - "tags" + "ListGatewayRoutesInput":{ + "type":"structure", + "required":[ + "meshName", + "virtualGatewayName" ], - "members": { - "resourceArn": { - "shape": "Arn", - "documentation": "

The Amazon Resource Name (ARN) of the resource to add tags to.

", - "location": "querystring", - "locationName": "resourceArn" + "members":{ + "limit":{ + "shape":"ListGatewayRoutesLimit", + "documentation":"

The maximum number of results returned by ListGatewayRoutes in paginated output. When you use this parameter, ListGatewayRoutes returns only limit results in a single page along with a nextToken response element. You can see the remaining results of the initial request by sending another ListGatewayRoutes request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, ListGatewayRoutes returns up to 100 results and a nextToken value if applicable.

", + "location":"querystring", + "locationName":"limit" + }, + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh to list gateway routes in.

", + "location":"uri", + "locationName":"meshName" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "nextToken":{ + "shape":"String", + "documentation":"

The nextToken value returned from a previous paginated ListGatewayRoutes request where limit was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

", + "location":"querystring", + "locationName":"nextToken" + }, + "virtualGatewayName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual gateway to list gateway routes in.

", + "location":"uri", + "locationName":"virtualGatewayName" + } + } + }, + "ListGatewayRoutesLimit":{ + "type":"integer", + "box":true, + "max":100, + "min":1 + }, + "ListGatewayRoutesOutput":{ + "type":"structure", + "required":["gatewayRoutes"], + "members":{ + "gatewayRoutes":{ + "shape":"GatewayRouteList", + "documentation":"

The list of existing gateway routes for the specified service mesh and virtual gateway.

" + }, + "nextToken":{ + "shape":"String", + "documentation":"

The nextToken value to include in a future ListGatewayRoutes request. When the results of a ListGatewayRoutes request exceed limit, you can use this value to retrieve the next page of results. This value is null when there are no more results to return.

" + } + } + }, + "ListMeshesInput":{ + "type":"structure", + "members":{ + "limit":{ + "shape":"ListMeshesLimit", + "documentation":"

The maximum number of results returned by ListMeshes in paginated output. When you use this parameter, ListMeshes returns only limit results in a single page along with a nextToken response element. You can see the remaining results of the initial request by sending another ListMeshes request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, ListMeshes returns up to 100 results and a nextToken value if applicable.

", + "location":"querystring", + "locationName":"limit" }, - "tags": { - "shape": "TagList", - "documentation": "

The tags to add to the resource. A tag is an array of key-value pairs.\n Tag keys can have a maximum character length of 128 characters, and tag values can have\n a maximum length of 256 characters.

" + "nextToken":{ + "shape":"String", + "documentation":"

The nextToken value returned from a previous paginated ListMeshes request where limit was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.

", + "location":"querystring", + "locationName":"nextToken" } }, - "documentation": "" + "documentation":"" }, - "CreateVirtualGatewayOutput": { - "type": "structure", - "required": [ - "virtualGateway" - ], - "members": { - "virtualGateway": { - "shape": "VirtualGatewayData", - "documentation": "

The full description of your virtual gateway following the create call.

" + "ListMeshesLimit":{ + "type":"integer", + "box":true, + "max":100, + "min":1 + }, + "ListMeshesOutput":{ + "type":"structure", + "required":["meshes"], + "members":{ + "meshes":{ + "shape":"MeshList", + "documentation":"

The list of existing service meshes.

" + }, + "nextToken":{ + "shape":"String", + "documentation":"

The nextToken value to include in a future ListMeshes request. When the results of a ListMeshes request exceed limit, you can use this value to retrieve the next page of results. This value is null when there are no more results to return.

" } }, - "payload": "virtualGateway" + "documentation":"" }, - "ListVirtualGatewaysOutput": { - "type": "structure", - "required": [ - "virtualGateways" + "ListRoutesInput":{ + "type":"structure", + "required":[ + "meshName", + "virtualRouterName" ], - "members": { - "nextToken": { - "shape": "String", - "documentation": "

The nextToken value to include in a future ListVirtualGateways\n request. When the results of a ListVirtualGateways request exceed\n limit, you can use this value to retrieve the next page of results. This\n value is null when there are no more results to return.

" + "members":{ + "limit":{ + "shape":"ListRoutesLimit", + "documentation":"

The maximum number of results returned by ListRoutes in paginated output. When you use this parameter, ListRoutes returns only limit results in a single page along with a nextToken response element. You can see the remaining results of the initial request by sending another ListRoutes request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, ListRoutes returns up to 100 results and a nextToken value if applicable.

", + "location":"querystring", + "locationName":"limit" + }, + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh to list routes in.

", + "location":"uri", + "locationName":"meshName" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "nextToken":{ + "shape":"String", + "documentation":"

The nextToken value returned from a previous paginated ListRoutes request where limit was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

", + "location":"querystring", + "locationName":"nextToken" + }, + "virtualRouterName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual router to list routes in.

", + "location":"uri", + "locationName":"virtualRouterName" + } + }, + "documentation":"" + }, + "ListRoutesLimit":{ + "type":"integer", + "box":true, + "max":100, + "min":1 + }, + "ListRoutesOutput":{ + "type":"structure", + "required":["routes"], + "members":{ + "nextToken":{ + "shape":"String", + "documentation":"

The nextToken value to include in a future ListRoutes request. When the results of a ListRoutes request exceed limit, you can use this value to retrieve the next page of results. This value is null when there are no more results to return.

" + }, + "routes":{ + "shape":"RouteList", + "documentation":"

The list of existing routes for the specified service mesh and virtual router.

" + } + }, + "documentation":"" + }, + "ListTagsForResourceInput":{ + "type":"structure", + "required":["resourceArn"], + "members":{ + "limit":{ + "shape":"TagsLimit", + "documentation":"

The maximum number of tag results returned by ListTagsForResource in paginated output. When this parameter is used, ListTagsForResource returns only limit results in a single page along with a nextToken response element. You can see the remaining results of the initial request by sending another ListTagsForResource request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, ListTagsForResource returns up to 100 results and a nextToken value if applicable.

", + "location":"querystring", + "locationName":"limit" + }, + "nextToken":{ + "shape":"String", + "documentation":"

The nextToken value returned from a previous paginated ListTagsForResource request where limit was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

", + "location":"querystring", + "locationName":"nextToken" + }, + "resourceArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) that identifies the resource to list the tags for.

", + "location":"querystring", + "locationName":"resourceArn" + } + }, + "documentation":"" + }, + "ListTagsForResourceOutput":{ + "type":"structure", + "required":["tags"], + "members":{ + "nextToken":{ + "shape":"String", + "documentation":"

The nextToken value to include in a future ListTagsForResource request. When the results of a ListTagsForResource request exceed limit, you can use this value to retrieve the next page of results. This value is null when there are no more results to return.

" + }, + "tags":{ + "shape":"TagList", + "documentation":"

The tags for the resource.

" + } + }, + "documentation":"" + }, + "ListVirtualGatewaysInput":{ + "type":"structure", + "required":["meshName"], + "members":{ + "limit":{ + "shape":"ListVirtualGatewaysLimit", + "documentation":"

The maximum number of results returned by ListVirtualGateways in paginated output. When you use this parameter, ListVirtualGateways returns only limit results in a single page along with a nextToken response element. You can see the remaining results of the initial request by sending another ListVirtualGateways request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, ListVirtualGateways returns up to 100 results and a nextToken value if applicable.

", + "location":"querystring", + "locationName":"limit" + }, + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh to list virtual gateways in.

", + "location":"uri", + "locationName":"meshName" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "nextToken":{ + "shape":"String", + "documentation":"

The nextToken value returned from a previous paginated ListVirtualGateways request where limit was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

", + "location":"querystring", + "locationName":"nextToken" + } + } + }, + "ListVirtualGatewaysLimit":{ + "type":"integer", + "box":true, + "max":100, + "min":1 + }, + "ListVirtualGatewaysOutput":{ + "type":"structure", + "required":["virtualGateways"], + "members":{ + "nextToken":{ + "shape":"String", + "documentation":"

The nextToken value to include in a future ListVirtualGateways request. When the results of a ListVirtualGateways request exceed limit, you can use this value to retrieve the next page of results. This value is null when there are no more results to return.

" }, - "virtualGateways": { - "shape": "VirtualGatewayList", - "documentation": "

The list of existing virtual gateways for the specified service mesh.

" + "virtualGateways":{ + "shape":"VirtualGatewayList", + "documentation":"

The list of existing virtual gateways for the specified service mesh.

" } } }, - "VirtualGatewayTlsValidationContext": { - "type": "structure", - "required": [ - "trust" + "ListVirtualNodesInput":{ + "type":"structure", + "required":["meshName"], + "members":{ + "limit":{ + "shape":"ListVirtualNodesLimit", + "documentation":"

The maximum number of results returned by ListVirtualNodes in paginated output. When you use this parameter, ListVirtualNodes returns only limit results in a single page along with a nextToken response element. You can see the remaining results of the initial request by sending another ListVirtualNodes request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, ListVirtualNodes returns up to 100 results and a nextToken value if applicable.

", + "location":"querystring", + "locationName":"limit" + }, + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh to list virtual nodes in.

", + "location":"uri", + "locationName":"meshName" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "nextToken":{ + "shape":"String", + "documentation":"

The nextToken value returned from a previous paginated ListVirtualNodes request where limit was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

", + "location":"querystring", + "locationName":"nextToken" + } + }, + "documentation":"" + }, + "ListVirtualNodesLimit":{ + "type":"integer", + "box":true, + "max":100, + "min":1 + }, + "ListVirtualNodesOutput":{ + "type":"structure", + "required":["virtualNodes"], + "members":{ + "nextToken":{ + "shape":"String", + "documentation":"

The nextToken value to include in a future ListVirtualNodes request. When the results of a ListVirtualNodes request exceed limit, you can use this value to retrieve the next page of results. This value is null when there are no more results to return.

" + }, + "virtualNodes":{ + "shape":"VirtualNodeList", + "documentation":"

The list of existing virtual nodes for the specified service mesh.

" + } + }, + "documentation":"" + }, + "ListVirtualRoutersInput":{ + "type":"structure", + "required":["meshName"], + "members":{ + "limit":{ + "shape":"ListVirtualRoutersLimit", + "documentation":"

The maximum number of results returned by ListVirtualRouters in paginated output. When you use this parameter, ListVirtualRouters returns only limit results in a single page along with a nextToken response element. You can see the remaining results of the initial request by sending another ListVirtualRouters request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, ListVirtualRouters returns up to 100 results and a nextToken value if applicable.

", + "location":"querystring", + "locationName":"limit" + }, + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh to list virtual routers in.

", + "location":"uri", + "locationName":"meshName" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "nextToken":{ + "shape":"String", + "documentation":"

The nextToken value returned from a previous paginated ListVirtualRouters request where limit was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

", + "location":"querystring", + "locationName":"nextToken" + } + }, + "documentation":"" + }, + "ListVirtualRoutersLimit":{ + "type":"integer", + "box":true, + "max":100, + "min":1 + }, + "ListVirtualRoutersOutput":{ + "type":"structure", + "required":["virtualRouters"], + "members":{ + "nextToken":{ + "shape":"String", + "documentation":"

The nextToken value to include in a future ListVirtualRouters request. When the results of a ListVirtualRouters request exceed limit, you can use this value to retrieve the next page of results. This value is null when there are no more results to return.

" + }, + "virtualRouters":{ + "shape":"VirtualRouterList", + "documentation":"

The list of existing virtual routers for the specified service mesh.

" + } + }, + "documentation":"" + }, + "ListVirtualServicesInput":{ + "type":"structure", + "required":["meshName"], + "members":{ + "limit":{ + "shape":"ListVirtualServicesLimit", + "documentation":"

The maximum number of results returned by ListVirtualServices in paginated output. When you use this parameter, ListVirtualServices returns only limit results in a single page along with a nextToken response element. You can see the remaining results of the initial request by sending another ListVirtualServices request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, ListVirtualServices returns up to 100 results and a nextToken value if applicable.

", + "location":"querystring", + "locationName":"limit" + }, + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh to list virtual services in.

", + "location":"uri", + "locationName":"meshName" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "nextToken":{ + "shape":"String", + "documentation":"

The nextToken value returned from a previous paginated ListVirtualServices request where limit was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

", + "location":"querystring", + "locationName":"nextToken" + } + }, + "documentation":"" + }, + "ListVirtualServicesLimit":{ + "type":"integer", + "box":true, + "max":100, + "min":1 + }, + "ListVirtualServicesOutput":{ + "type":"structure", + "required":["virtualServices"], + "members":{ + "nextToken":{ + "shape":"String", + "documentation":"

The nextToken value to include in a future ListVirtualServices request. When the results of a ListVirtualServices request exceed limit, you can use this value to retrieve the next page of results. This value is null when there are no more results to return.

" + }, + "virtualServices":{ + "shape":"VirtualServiceList", + "documentation":"

The list of existing virtual services for the specified service mesh.

" + } + }, + "documentation":"" + }, + "Listener":{ + "type":"structure", + "required":["portMapping"], + "members":{ + "connectionPool":{ + "shape":"VirtualNodeConnectionPool", + "documentation":"

The connection pool information for the listener.

" + }, + "healthCheck":{ + "shape":"HealthCheckPolicy", + "documentation":"

The health check information for the listener.

" + }, + "outlierDetection":{ + "shape":"OutlierDetection", + "documentation":"

The outlier detection information for the listener.

" + }, + "portMapping":{ + "shape":"PortMapping", + "documentation":"

The port mapping information for the listener.

" + }, + "timeout":{ + "shape":"ListenerTimeout", + "documentation":"

An object that represents timeouts for different protocols.

" + }, + "tls":{ + "shape":"ListenerTls", + "documentation":"

A reference to an object that represents the Transport Layer Security (TLS) properties for a listener.

" + } + }, + "documentation":"

An object that represents a listener for a virtual node.

" + }, + "ListenerTimeout":{ + "type":"structure", + "members":{ + "grpc":{"shape":"GrpcTimeout"}, + "http":{ + "shape":"HttpTimeout", + "documentation":"

An object that represents types of timeouts.

" + }, + "http2":{ + "shape":"HttpTimeout", + "documentation":"

An object that represents types of timeouts.

" + }, + "tcp":{ + "shape":"TcpTimeout", + "documentation":"

An object that represents types of timeouts.

" + } + }, + "documentation":"

An object that represents timeouts for different protocols.

", + "union":true + }, + "ListenerTls":{ + "type":"structure", + "required":[ + "certificate", + "mode" ], - "members": { - "trust": { - "shape": "VirtualGatewayTlsValidationContextTrust", - "documentation": "

A reference to an object that represents a TLS validation context trust.

" + "members":{ + "certificate":{ + "shape":"ListenerTlsCertificate", + "documentation":"

A reference to an object that represents a listener's TLS certificate.

" + }, + "mode":{ + "shape":"ListenerTlsMode", + "documentation":"

Specify one of the following modes.

  • STRICT – Listener only accepts connections with TLS enabled.

  • PERMISSIVE – Listener accepts connections with or without TLS enabled.

  • DISABLED – Listener only accepts connections without TLS.

" } }, - "documentation": "

An object that represents a Transport Layer Security (TLS) validation context.

" + "documentation":"

An object that represents the Transport Layer Security (TLS) properties for a listener.

" }, - "VirtualServiceProvider": { - "type": "structure", - "members": { - "virtualNode": { - "shape": "VirtualNodeServiceProvider", - "documentation": "

The virtual node associated with a virtual service.

" - }, - "virtualRouter": { - "shape": "VirtualRouterServiceProvider", - "documentation": "

The virtual router associated with a virtual service.

" + "ListenerTlsAcmCertificate":{ + "type":"structure", + "required":["certificateArn"], + "members":{ + "certificateArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) for the certificate. The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS).

" } }, - "documentation": "

An object that represents the provider for a virtual service.

" + "documentation":"

An object that represents an AWS Certicate Manager (ACM) certificate.

" }, - "GrpcRouteMatch": { - "type": "structure", - "members": { - "metadata": { - "shape": "GrpcRouteMetadataList", - "documentation": "

An object that represents the data to match from the request.

" - }, - "methodName": { - "shape": "MethodName", - "documentation": "

The method name to match from the request. If you specify a name, you must also specify\n a serviceName.

" + "ListenerTlsCertificate":{ + "type":"structure", + "members":{ + "acm":{ + "shape":"ListenerTlsAcmCertificate", + "documentation":"

A reference to an object that represents an AWS Certicate Manager (ACM) certificate.

" }, - "serviceName": { - "shape": "ServiceName", - "documentation": "

The fully qualified domain name for the service to match from the request.

" + "file":{ + "shape":"ListenerTlsFileCertificate", + "documentation":"

A reference to an object that represents a local file certificate.

" } }, - "documentation": "

An object that represents the criteria for determining a request match.

" + "documentation":"

An object that represents a listener's Transport Layer Security (TLS) certificate.

", + "union":true }, - "AwsCloudMapServiceDiscovery": { - "type": "structure", - "required": [ - "namespaceName", - "serviceName" + "ListenerTlsFileCertificate":{ + "type":"structure", + "required":[ + "certificateChain", + "privateKey" ], - "members": { - "attributes": { - "shape": "AwsCloudMapInstanceAttributes", - "documentation": "

A string map that contains attributes with values that you can use to filter instances\n by any custom attribute that you specified when you registered the instance. Only instances\n that match all of the specified key/value pairs will be returned.

" + "members":{ + "certificateChain":{ + "shape":"FilePath", + "documentation":"

The certificate chain for the certificate.

" }, - "namespaceName": { - "shape": "AwsCloudMapName", - "documentation": "

The name of the AWS Cloud Map namespace to use.

" - }, - "serviceName": { - "shape": "AwsCloudMapName", - "documentation": "

The name of the AWS Cloud Map service to use.

" + "privateKey":{ + "shape":"FilePath", + "documentation":"

The private key for a certificate stored on the file system of the virtual node that the proxy is running on.

" } }, - "documentation": "

An object that represents the AWS Cloud Map service discovery information for your virtual\n node.

" + "documentation":"

An object that represents a local file certificate. The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS).

" }, - "UpdateVirtualServiceOutput": { - "type": "structure", - "required": [ - "virtualService" - ], - "members": { - "virtualService": { - "shape": "VirtualServiceData", - "documentation": "

A full description of the virtual service that was updated.

" + "ListenerTlsMode":{ + "type":"string", + "enum":[ + "STRICT", + "PERMISSIVE", + "DISABLED" + ] + }, + "Listeners":{ + "type":"list", + "member":{"shape":"Listener"}, + "max":1, + "min":0 + }, + "Logging":{ + "type":"structure", + "members":{ + "accessLog":{ + "shape":"AccessLog", + "documentation":"

The access log configuration for a virtual node.

" } }, - "documentation": "", - "payload": "virtualService" + "documentation":"

An object that represents the logging information for a virtual node.

" }, - "MeshStatus": { - "type": "structure", - "members": { - "status": { - "shape": "MeshStatusCode", - "documentation": "

The current mesh status.

" + "Long":{ + "type":"long", + "box":true + }, + "MatchRange":{ + "type":"structure", + "required":[ + "end", + "start" + ], + "members":{ + "end":{ + "shape":"Long", + "documentation":"

The end of the range.

" + }, + "start":{ + "shape":"Long", + "documentation":"

The start of the range.

" } }, - "documentation": "

An object that represents the status of a service mesh.

" + "documentation":"

An object that represents the range of values to match on. The first character of the range is included in the range, though the last character is not. For example, if the range specified were 1-100, only values 1-99 would be matched.

" + }, + "MaxConnections":{ + "type":"integer", + "min":1 + }, + "MaxPendingRequests":{ + "type":"integer", + "min":1 + }, + "MaxRequests":{ + "type":"integer", + "min":1 }, - "CreateVirtualNodeInput": { - "type": "structure", - "required": [ + "MaxRetries":{ + "type":"long", + "box":true, + "min":0 + }, + "MeshData":{ + "type":"structure", + "required":[ "meshName", + "metadata", "spec", - "virtualNodeName" + "status" ], - "members": { - "clientToken": { - "shape": "String", - "documentation": "

Unique, case-sensitive identifier that you provide to ensure the idempotency of the\nrequest. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", - "idempotencyToken": true - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh to create the virtual node in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then\n the account that you specify must share the mesh with your account before you can create \n the resource in the service mesh. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "spec": { - "shape": "VirtualNodeSpec", - "documentation": "

The virtual node specification to apply.

" - }, - "tags": { - "shape": "TagList", - "documentation": "

Optional metadata that you can apply to the virtual node to assist with categorization\n and organization. Each tag consists of a key and an optional value, both of which you\n define. Tag keys can have a maximum character length of 128 characters, and tag values can have\n a maximum length of 256 characters.

", - "tags": [ - "not-preview" - ] - }, - "virtualNodeName": { - "shape": "ResourceName", - "documentation": "

The name to use for the virtual node.

" - } - }, - "documentation": "" - }, - "NotFoundException": { - "type": "structure", - "members": { - "message": { - "shape": "String" - } - }, - "documentation": "

The specified resource doesn't exist. Check your request syntax and try again.

", - "exception": true, - "error": { - "code": "NotFoundException", - "httpStatusCode": 404, - "senderFault": true - } - }, - "RouteSpec": { - "type": "structure", - "members": { - "grpcRoute": { - "shape": "GrpcRoute", - "documentation": "

An object that represents the specification of a gRPC route.

" + "members":{ + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh.

" }, - "http2Route": { - "shape": "HttpRoute", - "documentation": "

An object that represents the specification of an HTTP/2 route.

" + "metadata":{ + "shape":"ResourceMetadata", + "documentation":"

The associated metadata for the service mesh.

" }, - "httpRoute": { - "shape": "HttpRoute", - "documentation": "

An object that represents the specification of an HTTP route.

" + "spec":{ + "shape":"MeshSpec", + "documentation":"

The associated specification for the service mesh.

" }, - "priority": { - "shape": "RoutePriority", - "documentation": "

The priority for the route. Routes are matched based on the specified value, where 0 is\n the highest priority.

" - }, - "tcpRoute": { - "shape": "TcpRoute", - "documentation": "

An object that represents the specification of a TCP route.

" + "status":{ + "shape":"MeshStatus", + "documentation":"

The status of the service mesh.

" } }, - "documentation": "

An object that represents a route specification. Specify one route type.

" + "documentation":"

An object that represents a service mesh returned by a describe operation.

" + }, + "MeshList":{ + "type":"list", + "member":{"shape":"MeshRef"} }, - "GatewayRouteRef": { - "type": "structure", - "required": [ + "MeshRef":{ + "type":"structure", + "required":[ "arn", "createdAt", - "gatewayRouteName", "lastUpdatedAt", "meshName", "meshOwner", "resourceOwner", - "version", - "virtualGatewayName" + "version" ], - "members": { - "arn": { - "shape": "Arn", - "documentation": "

The full Amazon Resource Name (ARN) for the gateway route.

" + "members":{ + "arn":{ + "shape":"Arn", + "documentation":"

The full Amazon Resource Name (ARN) of the service mesh.

" }, - "createdAt": { - "shape": "Timestamp", - "documentation": "

The Unix epoch timestamp in seconds for when the resource was created.

" + "createdAt":{ + "shape":"Timestamp", + "documentation":"

The Unix epoch timestamp in seconds for when the resource was created.

" }, - "gatewayRouteName": { - "shape": "ResourceName", - "documentation": "

The name of the gateway route.

" + "lastUpdatedAt":{ + "shape":"Timestamp", + "documentation":"

The Unix epoch timestamp in seconds for when the resource was last updated.

" }, - "lastUpdatedAt": { - "shape": "Timestamp", - "documentation": "

The Unix epoch timestamp in seconds for when the resource was last updated.

" + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh.

" }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the resource resides in.

" + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

" }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

" + "resourceOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the resource owner. If the account ID is not your own, then it's the ID of the mesh owner or of another account that the mesh is shared with. For more information about mesh sharing, see Working with shared meshes.

" }, - "resourceOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the resource owner. If the account ID is not your own, then it's\n the ID of the mesh owner or of another account that the mesh is shared with. For more information about mesh sharing, see Working with shared meshes.

" - }, - "version": { - "shape": "Long", - "documentation": "

The version of the resource. Resources are created at version 1, and this version is incremented each time that they're updated.

" - }, - "virtualGatewayName": { - "shape": "ResourceName", - "documentation": "

The virtual gateway that the gateway route is associated with.

" + "version":{ + "shape":"Long", + "documentation":"

The version of the resource. Resources are created at version 1, and this version is incremented each time that they're updated.

" } }, - "documentation": "

An object that represents a gateway route returned by a list operation.

" + "documentation":"

An object that represents a service mesh returned by a list operation.

" }, - "VirtualGatewayListenerTlsAcmCertificate": { - "type": "structure", - "required": [ - "certificateArn" - ], - "members": { - "certificateArn": { - "shape": "Arn", - "documentation": "

The Amazon Resource Name (ARN) for the certificate. The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS).

" + "MeshSpec":{ + "type":"structure", + "members":{ + "egressFilter":{ + "shape":"EgressFilter", + "documentation":"

The egress filter rules for the service mesh.

" + } + }, + "documentation":"

An object that represents the specification of a service mesh.

" + }, + "MeshStatus":{ + "type":"structure", + "members":{ + "status":{ + "shape":"MeshStatusCode", + "documentation":"

The current mesh status.

" } }, - "documentation": "

An object that represents an AWS Certicate Manager (ACM) certificate.

" + "documentation":"

An object that represents the status of a service mesh.

" + }, + "MeshStatusCode":{ + "type":"string", + "enum":[ + "ACTIVE", + "INACTIVE", + "DELETED" + ] }, - "ListGatewayRoutesOutput": { - "type": "structure", - "required": [ - "gatewayRoutes" + "MethodName":{ + "type":"string", + "max":50, + "min":1 + }, + "NotFoundException":{ + "type":"structure", + "members":{ + "message":{"shape":"String"} + }, + "documentation":"

The specified resource doesn't exist. Check your request syntax and try again.

", + "error":{ + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "OutlierDetection":{ + "type":"structure", + "required":[ + "baseEjectionDuration", + "interval", + "maxEjectionPercent", + "maxServerErrors" + ], + "members":{ + "baseEjectionDuration":{ + "shape":"Duration", + "documentation":"

The base amount of time for which a host is ejected.

" + }, + "interval":{ + "shape":"Duration", + "documentation":"

The time interval between ejection sweep analysis.

" + }, + "maxEjectionPercent":{ + "shape":"OutlierDetectionMaxEjectionPercent", + "documentation":"

Maximum percentage of hosts in load balancing pool for upstream service that can be ejected. Will eject at least one host regardless of the value.

" + }, + "maxServerErrors":{ + "shape":"OutlierDetectionMaxServerErrors", + "documentation":"

Number of consecutive 5xx errors required for ejection.

" + } + }, + "documentation":"

An object that represents the outlier detection for a virtual node's listener.

" + }, + "OutlierDetectionMaxEjectionPercent":{ + "type":"integer", + "box":true, + "max":100, + "min":0 + }, + "OutlierDetectionMaxServerErrors":{ + "type":"long", + "box":true, + "min":1 + }, + "PercentInt":{ + "type":"integer", + "max":100, + "min":0 + }, + "PortMapping":{ + "type":"structure", + "required":[ + "port", + "protocol" ], - "members": { - "gatewayRoutes": { - "shape": "GatewayRouteList", - "documentation": "

The list of existing gateway routes for the specified service mesh and virtual\n gateway.

" + "members":{ + "port":{ + "shape":"PortNumber", + "documentation":"

The port used for the port mapping.

" }, - "nextToken": { - "shape": "String", - "documentation": "

The nextToken value to include in a future ListGatewayRoutes\n request. When the results of a ListGatewayRoutes request exceed\n limit, you can use this value to retrieve the next page of results. This\n value is null when there are no more results to return.

" + "protocol":{ + "shape":"PortProtocol", + "documentation":"

The protocol used for the port mapping. Specify one protocol.

" } - } + }, + "documentation":"

An object that represents a port mapping.

" + }, + "PortNumber":{ + "type":"integer", + "max":65535, + "min":1 + }, + "PortProtocol":{ + "type":"string", + "enum":[ + "http", + "tcp", + "http2", + "grpc" + ] + }, + "PortSet":{ + "type":"list", + "member":{"shape":"PortNumber"} + }, + "ResourceInUseException":{ + "type":"structure", + "members":{ + "message":{"shape":"String"} + }, + "documentation":"

You can't delete the specified resource because it's in use or required by another resource.

", + "error":{ + "httpStatusCode":409, + "senderFault":true + }, + "exception":true }, - "CreateVirtualServiceOutput": { - "type": "structure", - "required": [ - "virtualService" + "ResourceMetadata":{ + "type":"structure", + "required":[ + "arn", + "createdAt", + "lastUpdatedAt", + "meshOwner", + "resourceOwner", + "uid", + "version" ], - "members": { - "virtualService": { - "shape": "VirtualServiceData", - "documentation": "

The full description of your virtual service following the create call.

" + "members":{ + "arn":{ + "shape":"Arn", + "documentation":"

The full Amazon Resource Name (ARN) for the resource.

" + }, + "createdAt":{ + "shape":"Timestamp", + "documentation":"

The Unix epoch timestamp in seconds for when the resource was created.

" + }, + "lastUpdatedAt":{ + "shape":"Timestamp", + "documentation":"

The Unix epoch timestamp in seconds for when the resource was last updated.

" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

" + }, + "resourceOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the resource owner. If the account ID is not your own, then it's the ID of the mesh owner or of another account that the mesh is shared with. For more information about mesh sharing, see Working with shared meshes.

" + }, + "uid":{ + "shape":"String", + "documentation":"

The unique identifier for the resource.

" + }, + "version":{ + "shape":"Long", + "documentation":"

The version of the resource. Resources are created at version 1, and this version is incremented each time that they're updated.

" } }, - "documentation": "", - "payload": "virtualService" + "documentation":"

An object that represents metadata for a resource.

" + }, + "ResourceName":{ + "type":"string", + "max":255, + "min":1 }, - "FileAccessLog": { - "type": "structure", - "required": [ - "path" + "RouteData":{ + "type":"structure", + "required":[ + "meshName", + "metadata", + "routeName", + "spec", + "status", + "virtualRouterName" ], - "members": { - "path": { - "shape": "FilePath", - "documentation": "

The file path to write access logs to. You can use /dev/stdout to send\n access logs to standard out and configure your Envoy container to use a log driver, such as\n awslogs, to export the access logs to a log storage service such as Amazon\n CloudWatch Logs. You can also specify a path in the Envoy container's file system to write\n the files to disk.

\n \n

The Envoy process must have write permissions to the path that you specify here.\n Otherwise, Envoy fails to bootstrap properly.

\n
" + "members":{ + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the route resides in.

" + }, + "metadata":{ + "shape":"ResourceMetadata", + "documentation":"

The associated metadata for the route.

" + }, + "routeName":{ + "shape":"ResourceName", + "documentation":"

The name of the route.

" + }, + "spec":{ + "shape":"RouteSpec", + "documentation":"

The specifications of the route.

" + }, + "status":{ + "shape":"RouteStatus", + "documentation":"

The status of the route.

" + }, + "virtualRouterName":{ + "shape":"ResourceName", + "documentation":"

The virtual router that the route is associated with.

" } }, - "documentation": "

An object that represents an access log file.

" + "documentation":"

An object that represents a route returned by a describe operation.

" + }, + "RouteList":{ + "type":"list", + "member":{"shape":"RouteRef"} }, - "VirtualRouterServiceProvider": { - "type": "structure", - "required": [ + "RoutePriority":{ + "type":"integer", + "box":true, + "max":1000, + "min":0 + }, + "RouteRef":{ + "type":"structure", + "required":[ + "arn", + "createdAt", + "lastUpdatedAt", + "meshName", + "meshOwner", + "resourceOwner", + "routeName", + "version", "virtualRouterName" ], - "members": { - "virtualRouterName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual router that is acting as a service provider.

" + "members":{ + "arn":{ + "shape":"Arn", + "documentation":"

The full Amazon Resource Name (ARN) for the route.

" + }, + "createdAt":{ + "shape":"Timestamp", + "documentation":"

The Unix epoch timestamp in seconds for when the resource was created.

" + }, + "lastUpdatedAt":{ + "shape":"Timestamp", + "documentation":"

The Unix epoch timestamp in seconds for when the resource was last updated.

" + }, + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the route resides in.

" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

" + }, + "resourceOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the resource owner. If the account ID is not your own, then it's the ID of the mesh owner or of another account that the mesh is shared with. For more information about mesh sharing, see Working with shared meshes.

" + }, + "routeName":{ + "shape":"ResourceName", + "documentation":"

The name of the route.

" + }, + "version":{ + "shape":"Long", + "documentation":"

The version of the resource. Resources are created at version 1, and this version is incremented each time that they're updated.

" + }, + "virtualRouterName":{ + "shape":"ResourceName", + "documentation":"

The virtual router that the route is associated with.

" } }, - "documentation": "

An object that represents a virtual node service provider.

" + "documentation":"

An object that represents a route returned by a list operation.

" }, - "HttpTimeout": { - "type": "structure", - "members": { - "idle": { - "shape": "Duration" + "RouteSpec":{ + "type":"structure", + "members":{ + "grpcRoute":{ + "shape":"GrpcRoute", + "documentation":"

An object that represents the specification of a gRPC route.

" + }, + "http2Route":{ + "shape":"HttpRoute", + "documentation":"

An object that represents the specification of an HTTP/2 route.

" + }, + "httpRoute":{ + "shape":"HttpRoute", + "documentation":"

An object that represents the specification of an HTTP route.

" + }, + "priority":{ + "shape":"RoutePriority", + "documentation":"

The priority for the route. Routes are matched based on the specified value, where 0 is the highest priority.

" }, - "perRequest": { - "shape": "Duration" + "tcpRoute":{ + "shape":"TcpRoute", + "documentation":"

An object that represents the specification of a TCP route.

" } }, - "documentation": "

An object that represents types of timeouts.

" + "documentation":"

An object that represents a route specification. Specify one route type.

" }, - "DeleteVirtualServiceInput": { - "type": "structure", - "required": [ - "meshName", - "virtualServiceName" - ], - "members": { - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh to delete the virtual service in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "virtualServiceName": { - "shape": "ServiceName", - "documentation": "

The name of the virtual service to delete.

", - "location": "uri", - "locationName": "virtualServiceName" - } - }, - "documentation": "" - }, - "TlsValidationContext": { - "type": "structure", - "required": [ - "trust" - ], - "members": { - "trust": { - "shape": "TlsValidationContextTrust", - "documentation": "

A reference to an object that represents a TLS validation context trust.

" + "RouteStatus":{ + "type":"structure", + "required":["status"], + "members":{ + "status":{ + "shape":"RouteStatusCode", + "documentation":"

The current status for the route.

" } }, - "documentation": "

An object that represents a Transport Layer Security (TLS) validation context.

" + "documentation":"

An object that represents the current status of a route.

" }, - "GatewayRouteStatusCode": { - "type": "string", - "enum": [ + "RouteStatusCode":{ + "type":"string", + "enum":[ "ACTIVE", - "DELETED", - "INACTIVE" + "INACTIVE", + "DELETED" ] }, - "DeleteVirtualRouterOutput": { - "type": "structure", - "required": [ - "virtualRouter" + "ServiceDiscovery":{ + "type":"structure", + "members":{ + "awsCloudMap":{ + "shape":"AwsCloudMapServiceDiscovery", + "documentation":"

Specifies any AWS Cloud Map information for the virtual node.

" + }, + "dns":{ + "shape":"DnsServiceDiscovery", + "documentation":"

Specifies the DNS information for the virtual node.

" + } + }, + "documentation":"

An object that represents the service discovery information for a virtual node.

", + "union":true + }, + "ServiceName":{"type":"string"}, + "ServiceUnavailableException":{ + "type":"structure", + "members":{ + "message":{"shape":"String"} + }, + "documentation":"

The request has failed due to a temporary failure of the service.

", + "error":{"httpStatusCode":503}, + "exception":true, + "fault":true, + "retryable":{"throttling":false} + }, + "String":{"type":"string"}, + "TagKey":{ + "type":"string", + "max":128, + "min":1 + }, + "TagKeyList":{ + "type":"list", + "member":{"shape":"TagKey"}, + "max":50, + "min":0 + }, + "TagList":{ + "type":"list", + "member":{"shape":"TagRef"}, + "max":50, + "min":0 + }, + "TagRef":{ + "type":"structure", + "required":["key"], + "members":{ + "key":{ + "shape":"TagKey", + "documentation":"

One part of a key-value pair that make up a tag. A key is a general label that acts like a category for more specific tag values.

" + }, + "value":{ + "shape":"TagValue", + "documentation":"

The optional part of a key-value pair that make up a tag. A value acts as a descriptor within a tag category (key).

" + } + }, + "documentation":"

Optional metadata that you apply to a resource to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

" + }, + "TagResourceInput":{ + "type":"structure", + "required":[ + "resourceArn", + "tags" ], - "members": { - "virtualRouter": { - "shape": "VirtualRouterData", - "documentation": "

The virtual router that was deleted.

" + "members":{ + "resourceArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the resource to add tags to.

", + "location":"querystring", + "locationName":"resourceArn" + }, + "tags":{ + "shape":"TagList", + "documentation":"

The tags to add to the resource. A tag is an array of key-value pairs. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.

" } }, - "documentation": "", - "payload": "virtualRouter" + "documentation":"" }, - "DescribeVirtualGatewayInput": { - "type": "structure", - "required": [ - "meshName", - "virtualGatewayName" - ], - "members": { - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the gateway route resides in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "virtualGatewayName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual gateway to describe.

", - "location": "uri", - "locationName": "virtualGatewayName" - } - } + "TagResourceOutput":{ + "type":"structure", + "members":{ + }, + "documentation":"" }, - "TagsLimit": { - "type": "integer", - "box": true, - "min": 1, - "max": 50 + "TagValue":{ + "type":"string", + "max":256, + "min":0 }, - "GrpcGatewayRouteAction": { - "type": "structure", - "required": [ - "target" - ], - "members": { - "target": { - "shape": "GatewayRouteTarget", - "documentation": "

An object that represents the target that traffic is routed to when a request matches the gateway route.

" - } - }, - "documentation": "

An object that represents the action to take if a match is determined.

" + "TagsLimit":{ + "type":"integer", + "box":true, + "max":50, + "min":1 }, - "DeleteVirtualNodeOutput": { - "type": "structure", - "required": [ - "virtualNode" - ], - "members": { - "virtualNode": { - "shape": "VirtualNodeData", - "documentation": "

The virtual node that was deleted.

" - } - }, - "documentation": "", - "payload": "virtualNode" + "TcpRetryPolicyEvent":{ + "type":"string", + "enum":["connection-error"] }, - "UpdateVirtualNodeInput": { - "type": "structure", - "required": [ - "meshName", - "spec", - "virtualNodeName" - ], - "members": { - "clientToken": { - "shape": "String", - "documentation": "

Unique, case-sensitive identifier that you provide to ensure the idempotency of the\nrequest. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", - "idempotencyToken": true - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the virtual node resides in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "spec": { - "shape": "VirtualNodeSpec", - "documentation": "

The new virtual node specification to apply. This overwrites the existing data.

" - }, - "virtualNodeName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual node to update.

", - "location": "uri", - "locationName": "virtualNodeName" - } - }, - "documentation": "" - }, - "ListenerTls": { - "type": "structure", - "required": [ - "certificate", - "mode" - ], - "members": { - "certificate": { - "shape": "ListenerTlsCertificate", - "documentation": "

A reference to an object that represents a listener's TLS certificate.

" + "TcpRetryPolicyEvents":{ + "type":"list", + "member":{"shape":"TcpRetryPolicyEvent"}, + "max":1, + "min":1 + }, + "TcpRoute":{ + "type":"structure", + "required":["action"], + "members":{ + "action":{ + "shape":"TcpRouteAction", + "documentation":"

The action to take if a match is determined.

" }, - "mode": { - "shape": "ListenerTlsMode", - "documentation": "

Specify one of the following modes.

\n
    \n
  • \n

    \n STRICT – Listener only accepts connections with TLS\n enabled.

    \n
  • \n
  • \n

    \n PERMISSIVE – Listener accepts connections with or\n without TLS enabled.

    \n
  • \n
  • \n

    \n DISABLED – Listener only accepts connections without\n TLS.

    \n
  • \n
" + "timeout":{ + "shape":"TcpTimeout", + "documentation":"

An object that represents types of timeouts.

" } }, - "documentation": "

An object that represents the Transport Layer Security (TLS) properties for a listener.

" + "documentation":"

An object that represents a TCP route type.

" }, - "DeleteMeshInput": { - "type": "structure", - "required": [ - "meshName" - ], - "members": { - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh to delete.

", - "location": "uri", - "locationName": "meshName" + "TcpRouteAction":{ + "type":"structure", + "required":["weightedTargets"], + "members":{ + "weightedTargets":{ + "shape":"WeightedTargets", + "documentation":"

An object that represents the targets that traffic is routed to when a request matches the route.

" } }, - "documentation": "" + "documentation":"

An object that represents the action to take if a match is determined.

" }, - "TcpRetryPolicyEvents": { - "type": "list", - "member": { - "shape": "TcpRetryPolicyEvent" - }, - "min": 1, - "max": 1 - }, - "CreateVirtualServiceInput": { - "type": "structure", - "required": [ - "meshName", - "spec", - "virtualServiceName" - ], - "members": { - "clientToken": { - "shape": "String", - "documentation": "

Unique, case-sensitive identifier that you provide to ensure the idempotency of the\nrequest. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", - "idempotencyToken": true - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh to create the virtual service in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then\n the account that you specify must share the mesh with your account before you can create \n the resource in the service mesh. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "spec": { - "shape": "VirtualServiceSpec", - "documentation": "

The virtual service specification to apply.

" - }, - "tags": { - "shape": "TagList", - "documentation": "

Optional metadata that you can apply to the virtual service to assist with\n categorization and organization. Each tag consists of a key and an optional value, both of\n which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have\n a maximum length of 256 characters.

", - "tags": [ - "not-preview" - ] - }, - "virtualServiceName": { - "shape": "ServiceName", - "documentation": "

The name to use for the virtual service.

" - } - }, - "documentation": "" - }, - "UpdateVirtualRouterInput": { - "type": "structure", - "required": [ - "meshName", - "spec", - "virtualRouterName" - ], - "members": { - "clientToken": { - "shape": "String", - "documentation": "

Unique, case-sensitive identifier that you provide to ensure the idempotency of the\nrequest. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", - "idempotencyToken": true - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the virtual router resides in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "spec": { - "shape": "VirtualRouterSpec", - "documentation": "

The new virtual router specification to apply. This overwrites the existing data.

" - }, - "virtualRouterName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual router to update.

", - "location": "uri", - "locationName": "virtualRouterName" - } - }, - "documentation": "" - }, - "HttpGatewayRouteAction": { - "type": "structure", - "required": [ - "target" - ], - "members": { - "target": { - "shape": "GatewayRouteTarget", - "documentation": "

An object that represents the target that traffic is routed to when a request matches the gateway route.

" + "TcpTimeout":{ + "type":"structure", + "members":{ + "idle":{ + "shape":"Duration", + "documentation":"

An object that represents an idle timeout. An idle timeout bounds the amount of time that a connection may be idle. The default value is none.

" } }, - "documentation": "

An object that represents the action to take if a match is determined.

" + "documentation":"

An object that represents types of timeouts.

" }, - "GrpcGatewayRouteMatch": { - "type": "structure", - "members": { - "serviceName": { - "shape": "ServiceName", - "documentation": "

The fully qualified domain name for the service to match from the request.

" + "Timestamp":{"type":"timestamp"}, + "TlsValidationContext":{ + "type":"structure", + "required":["trust"], + "members":{ + "trust":{ + "shape":"TlsValidationContextTrust", + "documentation":"

A reference to an object that represents a TLS validation context trust.

" } }, - "documentation": "

An object that represents the criteria for determining a request match.

" - }, - "ListTagsForResourceInput": { - "type": "structure", - "required": [ - "resourceArn" - ], - "members": { - "limit": { - "shape": "TagsLimit", - "documentation": "

The maximum number of tag results returned by ListTagsForResource in\n paginated output. When this parameter is used, ListTagsForResource returns\n only limit results in a single page along with a nextToken\n response element. You can see the remaining results of the initial request by sending\n another ListTagsForResource request with the returned nextToken\n value. This value can be between 1 and 100. If you don't use\n this parameter, ListTagsForResource returns up to 100\n results and a nextToken value if applicable.

", - "location": "querystring", - "locationName": "limit" - }, - "nextToken": { - "shape": "String", - "documentation": "

The nextToken value returned from a previous paginated\n ListTagsForResource request where limit was used and the\n results exceeded the value of that parameter. Pagination continues from the end of the\n previous results that returned the nextToken value.

", - "location": "querystring", - "locationName": "nextToken" - }, - "resourceArn": { - "shape": "Arn", - "documentation": "

The Amazon Resource Name (ARN) that identifies the resource to list the tags for.

", - "location": "querystring", - "locationName": "resourceArn" - } - }, - "documentation": "" - }, - "GrpcRetryPolicyEvents": { - "type": "list", - "member": { - "shape": "GrpcRetryPolicyEvent" - }, - "min": 1, - "max": 5 - }, - "VirtualGatewayStatusCode": { - "type": "string", - "enum": [ - "ACTIVE", - "DELETED", - "INACTIVE" - ] + "documentation":"

An object that represents a Transport Layer Security (TLS) validation context.

" }, - "ServiceUnavailableException": { - "type": "structure", - "members": { - "message": { - "shape": "String" + "TlsValidationContextAcmTrust":{ + "type":"structure", + "required":["certificateAuthorityArns"], + "members":{ + "certificateAuthorityArns":{ + "shape":"CertificateAuthorityArns", + "documentation":"

One or more ACM Amazon Resource Name (ARN)s.

" } }, - "documentation": "

The request has failed due to a temporary failure of the service.

", - "exception": true, - "error": { - "code": "ServiceUnavailableException", - "httpStatusCode": 503, - "fault": true - } + "documentation":"

An object that represents a TLS validation context trust for an AWS Certicate Manager (ACM) certificate.

" }, - "DescribeMeshOutput": { - "type": "structure", - "required": [ - "mesh" - ], - "members": { - "mesh": { - "shape": "MeshData", - "documentation": "

The full description of your service mesh.

" + "TlsValidationContextFileTrust":{ + "type":"structure", + "required":["certificateChain"], + "members":{ + "certificateChain":{ + "shape":"FilePath", + "documentation":"

The certificate trust chain for a certificate stored on the file system of the virtual node that the proxy is running on.

" } }, - "documentation": "", - "payload": "mesh" + "documentation":"

An object that represents a Transport Layer Security (TLS) validation context trust for a local file.

" }, - "DeleteVirtualRouterInput": { - "type": "structure", - "required": [ - "meshName", - "virtualRouterName" - ], - "members": { - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh to delete the virtual router in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "virtualRouterName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual router to delete.

", - "location": "uri", - "locationName": "virtualRouterName" - } - }, - "documentation": "" - }, - "UpdateGatewayRouteOutput": { - "type": "structure", - "required": [ - "gatewayRoute" - ], - "members": { - "gatewayRoute": { - "shape": "GatewayRouteData", - "documentation": "

A full description of the gateway route that was updated.

" + "TlsValidationContextTrust":{ + "type":"structure", + "members":{ + "acm":{ + "shape":"TlsValidationContextAcmTrust", + "documentation":"

A reference to an object that represents a TLS validation context trust for an AWS Certicate Manager (ACM) certificate.

" + }, + "file":{ + "shape":"TlsValidationContextFileTrust", + "documentation":"

An object that represents a TLS validation context trust for a local file.

" } }, - "payload": "gatewayRoute" + "documentation":"

An object that represents a Transport Layer Security (TLS) validation context trust.

", + "union":true }, - "DescribeRouteInput": { - "type": "structure", - "required": [ - "meshName", - "routeName", - "virtualRouterName" - ], - "members": { - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the route resides in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "routeName": { - "shape": "ResourceName", - "documentation": "

The name of the route to describe.

", - "location": "uri", - "locationName": "routeName" - }, - "virtualRouterName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual router that the route is associated with.

", - "location": "uri", - "locationName": "virtualRouterName" - } - }, - "documentation": "" - }, - "DeleteRouteOutput": { - "type": "structure", - "required": [ - "route" - ], - "members": { - "route": { - "shape": "RouteData", - "documentation": "

The route that was deleted.

" - } + "TooManyRequestsException":{ + "type":"structure", + "members":{ + "message":{"shape":"String"} }, - "documentation": "", - "payload": "route" - }, - "Listeners": { - "type": "list", - "member": { - "shape": "Listener" + "documentation":"

The maximum request rate permitted by the App Mesh APIs has been exceeded for your account. For best results, use an increasing or variable sleep interval between requests.

", + "error":{ + "httpStatusCode":429, + "senderFault":true }, - "min": 0, - "max": 1 - }, - "Backends": { - "type": "list", - "member": { - "shape": "Backend" - } + "exception":true }, - "PortProtocol": { - "type": "string", - "enum": [ - "grpc", - "http", - "http2", - "tcp" - ] + "TooManyTagsException":{ + "type":"structure", + "members":{ + "message":{"shape":"String"} + }, + "documentation":"

The request exceeds the maximum allowed number of tags allowed per resource. The current limit is 50 user tags per resource. You must reduce the number of tags in the request. None of the tags in this request were applied.

", + "error":{ + "httpStatusCode":400, + "senderFault":true + }, + "exception":true }, - "DeleteGatewayRouteOutput": { - "type": "structure", - "required": [ - "gatewayRoute" + "UntagResourceInput":{ + "type":"structure", + "required":[ + "resourceArn", + "tagKeys" ], - "members": { - "gatewayRoute": { - "shape": "GatewayRouteData", - "documentation": "

The gateway route that was deleted.

" + "members":{ + "resourceArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the resource to delete tags from.

", + "location":"querystring", + "locationName":"resourceArn" + }, + "tagKeys":{ + "shape":"TagKeyList", + "documentation":"

The keys of the tags to be removed.

" } }, - "payload": "gatewayRoute" - }, - "VirtualGatewayList": { - "type": "list", - "member": { - "shape": "VirtualGatewayRef" - } - }, - "VirtualNodeStatusCode": { - "type": "string", - "enum": [ - "ACTIVE", - "DELETED", - "INACTIVE" - ] + "documentation":"" }, - "ServiceName": { - "type": "string" + "UntagResourceOutput":{ + "type":"structure", + "members":{ + }, + "documentation":"" }, - "UpdateVirtualServiceInput": { - "type": "structure", - "required": [ + "UpdateGatewayRouteInput":{ + "type":"structure", + "required":[ + "gatewayRouteName", "meshName", "spec", - "virtualServiceName" - ], - "members": { - "clientToken": { - "shape": "String", - "documentation": "

Unique, case-sensitive identifier that you provide to ensure the idempotency of the\nrequest. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", - "idempotencyToken": true - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the virtual service resides in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "spec": { - "shape": "VirtualServiceSpec", - "documentation": "

The new virtual service specification to apply. This overwrites the existing\n data.

" - }, - "virtualServiceName": { - "shape": "ServiceName", - "documentation": "

The name of the virtual service to update.

", - "location": "uri", - "locationName": "virtualServiceName" - } - }, - "documentation": "" - }, - "HealthCheckThreshold": { - "type": "integer", - "min": 2, - "max": 10 - }, - "UpdateRouteOutput": { - "type": "structure", - "required": [ - "route" - ], - "members": { - "route": { - "shape": "RouteData", - "documentation": "

A full description of the route that was updated.

" - } - }, - "documentation": "", - "payload": "route" - }, - "PercentInt": { - "type": "integer", - "min": 0, - "max": 100 - }, - "MethodName": { - "type": "string", - "min": 1, - "max": 50 - }, - "TagValue": { - "type": "string", - "min": 0, - "max": 256 - }, - "HttpRouteAction": { - "type": "structure", - "required": [ - "weightedTargets" + "virtualGatewayName" ], - "members": { - "weightedTargets": { - "shape": "WeightedTargets", - "documentation": "

An object that represents the targets that traffic is routed to when a request matches the route.

" + "members":{ + "clientToken":{ + "shape":"String", + "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", + "idempotencyToken":true + }, + "gatewayRouteName":{ + "shape":"ResourceName", + "documentation":"

The name of the gateway route to update.

", + "location":"uri", + "locationName":"gatewayRouteName" + }, + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the gateway route resides in.

", + "location":"uri", + "locationName":"meshName" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "spec":{ + "shape":"GatewayRouteSpec", + "documentation":"

The new gateway route specification to apply. This overwrites the existing data.

" + }, + "virtualGatewayName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual gateway that the gateway route is associated with.

", + "location":"uri", + "locationName":"virtualGatewayName" + } + } + }, + "UpdateGatewayRouteOutput":{ + "type":"structure", + "required":["gatewayRoute"], + "members":{ + "gatewayRoute":{ + "shape":"GatewayRouteData", + "documentation":"

A full description of the gateway route that was updated.

" } }, - "documentation": "

An object that represents the action to take if a match is determined.

" + "payload":"gatewayRoute" }, - "ListRoutesInput": { - "type": "structure", - "required": [ - "meshName", - "virtualRouterName" - ], - "members": { - "limit": { - "shape": "ListRoutesLimit", - "documentation": "

The maximum number of results returned by ListRoutes in paginated output.\n When you use this parameter, ListRoutes returns only limit\n results in a single page along with a nextToken response element. You can see\n the remaining results of the initial request by sending another ListRoutes\n request with the returned nextToken value. This value can be between\n 1 and 100. If you don't use this parameter,\n ListRoutes returns up to 100 results and a\n nextToken value if applicable.

", - "location": "querystring", - "locationName": "limit" - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh to list routes in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "nextToken": { - "shape": "String", - "documentation": "

The nextToken value returned from a previous paginated\n ListRoutes request where limit was used and the results\n exceeded the value of that parameter. Pagination continues from the end of the previous\n results that returned the nextToken value.

", - "location": "querystring", - "locationName": "nextToken" - }, - "virtualRouterName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual router to list routes in.

", - "location": "uri", - "locationName": "virtualRouterName" - } - }, - "documentation": "" - }, - "VirtualServiceRef": { - "type": "structure", - "required": [ - "arn", - "createdAt", - "lastUpdatedAt", - "meshName", - "meshOwner", - "resourceOwner", - "version", - "virtualServiceName" - ], - "members": { - "arn": { - "shape": "Arn", - "documentation": "

The full Amazon Resource Name (ARN) for the virtual service.

" - }, - "createdAt": { - "shape": "Timestamp", - "documentation": "

The Unix epoch timestamp in seconds for when the resource was created.

" - }, - "lastUpdatedAt": { - "shape": "Timestamp", - "documentation": "

The Unix epoch timestamp in seconds for when the resource was last updated.

" - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the virtual service resides in.

" + "UpdateMeshInput":{ + "type":"structure", + "required":["meshName"], + "members":{ + "clientToken":{ + "shape":"String", + "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", + "idempotencyToken":true }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

" + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh to update.

", + "location":"uri", + "locationName":"meshName" }, - "resourceOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the resource owner. If the account ID is not your own, then it's\n the ID of the mesh owner or of another account that the mesh is shared with. For more information about mesh sharing, see Working with shared meshes.

" - }, - "version": { - "shape": "Long", - "documentation": "

The version of the resource. Resources are created at version 1, and this version is incremented each time that they're updated.

" - }, - "virtualServiceName": { - "shape": "ServiceName", - "documentation": "

The name of the virtual service.

" + "spec":{ + "shape":"MeshSpec", + "documentation":"

The service mesh specification to apply.

" } }, - "documentation": "

An object that represents a virtual service returned by a list operation.

" + "documentation":"" }, - "GrpcTimeout": { - "type": "structure", - "members": { - "idle": { - "shape": "Duration", - "documentation": "

An object that represents an idle timeout. An idle timeout bounds the amount of time that a connection may be idle. The default value is none.

" - }, - "perRequest": { - "shape": "Duration", - "documentation": "

An object that represents a per request timeout. The default value is 15 seconds. If you set a higher timeout, then make sure that the higher value is set for each App Mesh resource in a conversation. For example, if a virtual node backend uses a virtual router provider to route to another virtual node, then the timeout should be greater than 15 seconds for the source and destination virtual node and the route.

" - } + "UpdateMeshOutput":{ + "type":"structure", + "required":["mesh"], + "members":{ + "mesh":{"shape":"MeshData"} }, - "documentation": "

An object that represents types of timeouts.

" + "documentation":"", + "payload":"mesh" }, - "VirtualNodeStatus": { - "type": "structure", - "required": [ - "status" + "UpdateRouteInput":{ + "type":"structure", + "required":[ + "meshName", + "routeName", + "spec", + "virtualRouterName" + ], + "members":{ + "clientToken":{ + "shape":"String", + "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", + "idempotencyToken":true + }, + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the route resides in.

", + "location":"uri", + "locationName":"meshName" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "routeName":{ + "shape":"ResourceName", + "documentation":"

The name of the route to update.

", + "location":"uri", + "locationName":"routeName" + }, + "spec":{ + "shape":"RouteSpec", + "documentation":"

The new route specification to apply. This overwrites the existing data.

" + }, + "virtualRouterName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual router that the route is associated with.

", + "location":"uri", + "locationName":"virtualRouterName" + } + }, + "documentation":"" + }, + "UpdateRouteOutput":{ + "type":"structure", + "required":["route"], + "members":{ + "route":{ + "shape":"RouteData", + "documentation":"

A full description of the route that was updated.

" + } + }, + "documentation":"", + "payload":"route" + }, + "UpdateVirtualGatewayInput":{ + "type":"structure", + "required":[ + "meshName", + "spec", + "virtualGatewayName" ], - "members": { - "status": { - "shape": "VirtualNodeStatusCode", - "documentation": "

The current status of the virtual node.

" + "members":{ + "clientToken":{ + "shape":"String", + "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", + "idempotencyToken":true + }, + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the virtual gateway resides in.

", + "location":"uri", + "locationName":"meshName" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" + }, + "spec":{ + "shape":"VirtualGatewaySpec", + "documentation":"

The new virtual gateway specification to apply. This overwrites the existing data.

" + }, + "virtualGatewayName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual gateway to update.

", + "location":"uri", + "locationName":"virtualGatewayName" + } + } + }, + "UpdateVirtualGatewayOutput":{ + "type":"structure", + "required":["virtualGateway"], + "members":{ + "virtualGateway":{ + "shape":"VirtualGatewayData", + "documentation":"

A full description of the virtual gateway that was updated.

" } }, - "documentation": "

An object that represents the current status of the virtual node.

" + "payload":"virtualGateway" }, - "VirtualRouterRef": { - "type": "structure", - "required": [ - "arn", - "createdAt", - "lastUpdatedAt", + "UpdateVirtualNodeInput":{ + "type":"structure", + "required":[ "meshName", - "meshOwner", - "resourceOwner", - "version", - "virtualRouterName" + "spec", + "virtualNodeName" ], - "members": { - "arn": { - "shape": "Arn", - "documentation": "

The full Amazon Resource Name (ARN) for the virtual router.

" - }, - "createdAt": { - "shape": "Timestamp", - "documentation": "

The Unix epoch timestamp in seconds for when the resource was created.

" - }, - "lastUpdatedAt": { - "shape": "Timestamp", - "documentation": "

The Unix epoch timestamp in seconds for when the resource was last updated.

" - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the virtual router resides in.

" + "members":{ + "clientToken":{ + "shape":"String", + "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", + "idempotencyToken":true }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

" + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the virtual node resides in.

", + "location":"uri", + "locationName":"meshName" }, - "resourceOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the resource owner. If the account ID is not your own, then it's\n the ID of the mesh owner or of another account that the mesh is shared with. For more information about mesh sharing, see Working with shared meshes.

" + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" }, - "version": { - "shape": "Long", - "documentation": "

The version of the resource. Resources are created at version 1, and this version is incremented each time that they're updated.

" + "spec":{ + "shape":"VirtualNodeSpec", + "documentation":"

The new virtual node specification to apply. This overwrites the existing data.

" }, - "virtualRouterName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual router.

" + "virtualNodeName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual node to update.

", + "location":"uri", + "locationName":"virtualNodeName" } }, - "documentation": "

An object that represents a virtual router returned by a list operation.

" + "documentation":"" }, - "VirtualServiceData": { - "type": "structure", - "required": [ + "UpdateVirtualNodeOutput":{ + "type":"structure", + "required":["virtualNode"], + "members":{ + "virtualNode":{ + "shape":"VirtualNodeData", + "documentation":"

A full description of the virtual node that was updated.

" + } + }, + "documentation":"", + "payload":"virtualNode" + }, + "UpdateVirtualRouterInput":{ + "type":"structure", + "required":[ "meshName", - "metadata", "spec", - "status", - "virtualServiceName" + "virtualRouterName" ], - "members": { - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the virtual service resides in.

" + "members":{ + "clientToken":{ + "shape":"String", + "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", + "idempotencyToken":true }, - "metadata": { - "shape": "ResourceMetadata" + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the virtual router resides in.

", + "location":"uri", + "locationName":"meshName" }, - "spec": { - "shape": "VirtualServiceSpec", - "documentation": "

The specifications of the virtual service.

" + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" }, - "status": { - "shape": "VirtualServiceStatus", - "documentation": "

The current status of the virtual service.

" + "spec":{ + "shape":"VirtualRouterSpec", + "documentation":"

The new virtual router specification to apply. This overwrites the existing data.

" }, - "virtualServiceName": { - "shape": "ServiceName", - "documentation": "

The name of the virtual service.

" + "virtualRouterName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual router to update.

", + "location":"uri", + "locationName":"virtualRouterName" } }, - "documentation": "

An object that represents a virtual service returned by a describe operation.

" + "documentation":"" }, - "HttpRouteHeader": { - "type": "structure", - "required": [ - "name" - ], - "members": { - "invert": { - "shape": "Boolean", - "documentation": "

Specify True to match anything except the match criteria. The default value is False.

" - }, - "match": { - "shape": "HeaderMatchMethod", - "documentation": "

The HeaderMatchMethod object.

" - }, - "name": { - "shape": "HeaderName", - "documentation": "

A name for the HTTP header in the client request that will be matched on.

" + "UpdateVirtualRouterOutput":{ + "type":"structure", + "required":["virtualRouter"], + "members":{ + "virtualRouter":{ + "shape":"VirtualRouterData", + "documentation":"

A full description of the virtual router that was updated.

" } }, - "documentation": "

An object that represents the HTTP header in the request.

" - }, - "FilePath": { - "type": "string", - "min": 1, - "max": 255 - }, - "AwsCloudMapInstanceAttributes": { - "type": "list", - "member": { - "shape": "AwsCloudMapInstanceAttribute" - } + "documentation":"", + "payload":"virtualRouter" }, - "VirtualNodeRef": { - "type": "structure", - "required": [ - "arn", - "createdAt", - "lastUpdatedAt", + "UpdateVirtualServiceInput":{ + "type":"structure", + "required":[ "meshName", - "meshOwner", - "resourceOwner", - "version", - "virtualNodeName" + "spec", + "virtualServiceName" ], - "members": { - "arn": { - "shape": "Arn", - "documentation": "

The full Amazon Resource Name (ARN) for the virtual node.

" - }, - "createdAt": { - "shape": "Timestamp", - "documentation": "

The Unix epoch timestamp in seconds for when the resource was created.

" - }, - "lastUpdatedAt": { - "shape": "Timestamp", - "documentation": "

The Unix epoch timestamp in seconds for when the resource was last updated.

" + "members":{ + "clientToken":{ + "shape":"String", + "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", + "idempotencyToken":true }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the virtual node resides in.

" + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the virtual service resides in.

", + "location":"uri", + "locationName":"meshName" }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

" + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", + "location":"querystring", + "locationName":"meshOwner" }, - "resourceOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the resource owner. If the account ID is not your own, then it's\n the ID of the mesh owner or of another account that the mesh is shared with. For more information about mesh sharing, see Working with shared meshes.

" + "spec":{ + "shape":"VirtualServiceSpec", + "documentation":"

The new virtual service specification to apply. This overwrites the existing data.

" }, - "version": { - "shape": "Long", - "documentation": "

The version of the resource. Resources are created at version 1, and this version is incremented each time that they're updated.

" - }, - "virtualNodeName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual node.

" + "virtualServiceName":{ + "shape":"ServiceName", + "documentation":"

The name of the virtual service to update.

", + "location":"uri", + "locationName":"virtualServiceName" } }, - "documentation": "

An object that represents a virtual node returned by a list operation.

" + "documentation":"" }, - "CreateMeshInput": { - "type": "structure", - "required": [ - "meshName" - ], - "members": { - "clientToken": { - "shape": "String", - "documentation": "

Unique, case-sensitive identifier that you provide to ensure the idempotency of the\nrequest. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", - "idempotencyToken": true - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name to use for the service mesh.

" - }, - "spec": { - "shape": "MeshSpec", - "documentation": "

The service mesh specification to apply.

" - }, - "tags": { - "shape": "TagList", - "documentation": "

Optional metadata that you can apply to the service mesh to assist with categorization\n and organization. Each tag consists of a key and an optional value, both of which you\n define. Tag keys can have a maximum character length of 128 characters, and tag values can have\n a maximum length of 256 characters.

", - "tags": [ - "not-preview" - ] - } - }, - "documentation": "" - }, - "GrpcRouteAction": { - "type": "structure", - "required": [ - "weightedTargets" - ], - "members": { - "weightedTargets": { - "shape": "WeightedTargets", - "documentation": "

An object that represents the targets that traffic is routed to when a request matches the route.

" + "UpdateVirtualServiceOutput":{ + "type":"structure", + "required":["virtualService"], + "members":{ + "virtualService":{ + "shape":"VirtualServiceData", + "documentation":"

A full description of the virtual service that was updated.

" } }, - "documentation": "

An object that represents the action to take if a match is determined.

" + "documentation":"", + "payload":"virtualService" }, - "VirtualGatewayTlsValidationContextFileTrust": { - "type": "structure", - "required": [ - "certificateChain" - ], - "members": { - "certificateChain": { - "shape": "FilePath", - "documentation": "

The certificate trust chain for a certificate stored on the file system of the virtual\n node that the proxy is running on.

" + "VirtualGatewayAccessLog":{ + "type":"structure", + "members":{ + "file":{ + "shape":"VirtualGatewayFileAccessLog", + "documentation":"

The file object to send virtual gateway access logs to.

" } }, - "documentation": "

An object that represents a Transport Layer Security (TLS) validation context trust for a local file.

" + "documentation":"

The access log configuration for a virtual gateway.

", + "union":true }, - "LimitExceededException": { - "type": "structure", - "members": { - "message": { - "shape": "String" + "VirtualGatewayBackendDefaults":{ + "type":"structure", + "members":{ + "clientPolicy":{ + "shape":"VirtualGatewayClientPolicy", + "documentation":"

A reference to an object that represents a client policy.

" } }, - "documentation": "

You have exceeded a service limit for your account. For more information, see Service\n Limits in the AWS App Mesh User Guide.

", - "exception": true, - "error": { - "code": "LimitExceededException", - "httpStatusCode": 400, - "senderFault": true - } + "documentation":"

An object that represents the default properties for a backend.

" }, - "UpdateMeshOutput": { - "type": "structure", - "required": [ - "mesh" - ], - "members": { - "mesh": { - "shape": "MeshData" + "VirtualGatewayCertificateAuthorityArns":{ + "type":"list", + "member":{"shape":"Arn"}, + "max":3, + "min":1 + }, + "VirtualGatewayClientPolicy":{ + "type":"structure", + "members":{ + "tls":{ + "shape":"VirtualGatewayClientPolicyTls", + "documentation":"

A reference to an object that represents a Transport Layer Security (TLS) client policy.

" } }, - "documentation": "", - "payload": "mesh" + "documentation":"

An object that represents a client policy.

" }, - "GrpcRouteMetadataMatchMethod": { - "type": "structure", - "members": { - "exact": { - "shape": "HeaderMatch", - "documentation": "

The value sent by the client must match the specified value exactly.

" + "VirtualGatewayClientPolicyTls":{ + "type":"structure", + "required":["validation"], + "members":{ + "enforce":{ + "shape":"Boolean", + "documentation":"

Whether the policy is enforced. The default is True, if a value isn't specified.

", + "box":true }, - "prefix": { - "shape": "HeaderMatch", - "documentation": "

The value sent by the client must begin with the specified characters.

" + "ports":{ + "shape":"PortSet", + "documentation":"

One or more ports that the policy is enforced for.

" }, - "range": { - "shape": "MatchRange", - "documentation": "

An object that represents the range of values to match on.

" + "validation":{ + "shape":"VirtualGatewayTlsValidationContext", + "documentation":"

A reference to an object that represents a TLS validation context.

" + } + }, + "documentation":"

An object that represents a Transport Layer Security (TLS) client policy.

" + }, + "VirtualGatewayConnectionPool":{ + "type":"structure", + "members":{ + "grpc":{ + "shape":"VirtualGatewayGrpcConnectionPool", + "documentation":"

An object that represents a type of connection pool.

" }, - "regex": { - "shape": "HeaderMatch", - "documentation": "

The value sent by the client must include the specified characters.

" + "http":{ + "shape":"VirtualGatewayHttpConnectionPool", + "documentation":"

An object that represents a type of connection pool.

" }, - "suffix": { - "shape": "HeaderMatch", - "documentation": "

The value sent by the client must end with the specified characters.

" + "http2":{ + "shape":"VirtualGatewayHttp2ConnectionPool", + "documentation":"

An object that represents a type of connection pool.

" } }, - "documentation": "

An object that represents the match method. Specify one of the match values.

" + "documentation":"

An object that represents the type of virtual gateway connection pool.

Only one protocol is used at a time and should be the same protocol as the one chosen under port mapping.

If not present the default value for maxPendingRequests is 2147483647.

", + "union":true }, - "DescribeVirtualServiceInput": { - "type": "structure", - "required": [ + "VirtualGatewayData":{ + "type":"structure", + "required":[ "meshName", - "virtualServiceName" - ], - "members": { - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the virtual service resides in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "virtualServiceName": { - "shape": "ServiceName", - "documentation": "

The name of the virtual service to describe.

", - "location": "uri", - "locationName": "virtualServiceName" - } - }, - "documentation": "" - }, - "ListVirtualServicesLimit": { - "type": "integer", - "box": true, - "min": 1, - "max": 100 - }, - "AwsCloudMapInstanceAttribute": { - "type": "structure", - "required": [ - "key", - "value" + "metadata", + "spec", + "status", + "virtualGatewayName" ], - "members": { - "key": { - "shape": "AwsCloudMapInstanceAttributeKey", - "documentation": "

The name of an AWS Cloud Map service instance attribute key. Any AWS Cloud Map service\n instance that contains the specified key and value is returned.

" + "members":{ + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the virtual gateway resides in.

" + }, + "metadata":{"shape":"ResourceMetadata"}, + "spec":{ + "shape":"VirtualGatewaySpec", + "documentation":"

The specifications of the virtual gateway.

" + }, + "status":{ + "shape":"VirtualGatewayStatus", + "documentation":"

The current status of the virtual gateway.

" }, - "value": { - "shape": "AwsCloudMapInstanceAttributeValue", - "documentation": "

The value of an AWS Cloud Map service instance attribute key. Any AWS Cloud Map service\n instance that contains the specified key and value is returned.

" + "virtualGatewayName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual gateway.

" } }, - "documentation": "

An object that represents the AWS Cloud Map attribute information for your virtual\n node.

" + "documentation":"

An object that represents a virtual gateway returned by a describe operation.

" }, - "VirtualGatewayListenerTlsMode": { - "type": "string", - "enum": [ - "DISABLED", - "PERMISSIVE", - "STRICT" - ] - }, - "VirtualServiceSpec": { - "type": "structure", - "members": { - "provider": { - "shape": "VirtualServiceProvider", - "documentation": "

The App Mesh object that is acting as the provider for a virtual service. You can specify\n a single virtual node or virtual router.

" + "VirtualGatewayFileAccessLog":{ + "type":"structure", + "required":["path"], + "members":{ + "path":{ + "shape":"FilePath", + "documentation":"

The file path to write access logs to. You can use /dev/stdout to send access logs to standard out and configure your Envoy container to use a log driver, such as awslogs, to export the access logs to a log storage service such as Amazon CloudWatch Logs. You can also specify a path in the Envoy container's file system to write the files to disk.

" } }, - "documentation": "

An object that represents the specification of a virtual service.

" + "documentation":"

An object that represents an access log file.

" }, - "VirtualGatewayTlsValidationContextAcmTrust": { - "type": "structure", - "required": [ - "certificateAuthorityArns" - ], - "members": { - "certificateAuthorityArns": { - "shape": "VirtualGatewayCertificateAuthorityArns", - "documentation": "

One or more ACM Amazon Resource Name (ARN)s.

" + "VirtualGatewayGrpcConnectionPool":{ + "type":"structure", + "required":["maxRequests"], + "members":{ + "maxRequests":{ + "shape":"MaxRequests", + "documentation":"

Maximum number of inflight requests Envoy can concurrently support across hosts in upstream cluster.

" } }, - "documentation": "

An object that represents a TLS validation context trust for an AWS Certicate Manager (ACM)\n certificate.

" + "documentation":"

An object that represents a type of connection pool.

" }, - "VirtualGatewayAccessLog": { - "type": "structure", - "members": { - "file": { - "shape": "VirtualGatewayFileAccessLog", - "documentation": "

The file object to send virtual gateway access logs to.

" + "VirtualGatewayHealthCheckIntervalMillis":{ + "type":"long", + "box":true, + "max":300000, + "min":5000 + }, + "VirtualGatewayHealthCheckPolicy":{ + "type":"structure", + "required":[ + "healthyThreshold", + "intervalMillis", + "protocol", + "timeoutMillis", + "unhealthyThreshold" + ], + "members":{ + "healthyThreshold":{ + "shape":"VirtualGatewayHealthCheckThreshold", + "documentation":"

The number of consecutive successful health checks that must occur before declaring the listener healthy.

" + }, + "intervalMillis":{ + "shape":"VirtualGatewayHealthCheckIntervalMillis", + "documentation":"

The time period in milliseconds between each health check execution.

" + }, + "path":{ + "shape":"String", + "documentation":"

The destination path for the health check request. This value is only used if the specified protocol is HTTP or HTTP/2. For any other protocol, this value is ignored.

" + }, + "port":{ + "shape":"PortNumber", + "documentation":"

The destination port for the health check request. This port must match the port defined in the PortMapping for the listener.

" + }, + "protocol":{ + "shape":"VirtualGatewayPortProtocol", + "documentation":"

The protocol for the health check request. If you specify grpc, then your service must conform to the GRPC Health Checking Protocol.

" + }, + "timeoutMillis":{ + "shape":"VirtualGatewayHealthCheckTimeoutMillis", + "documentation":"

The amount of time to wait when receiving a response from the health check, in milliseconds.

" + }, + "unhealthyThreshold":{ + "shape":"VirtualGatewayHealthCheckThreshold", + "documentation":"

The number of consecutive failed health checks that must occur before declaring a virtual gateway unhealthy.

" } }, - "documentation": "

The access log configuration for a virtual gateway.

" + "documentation":"

An object that represents the health check policy for a virtual gateway's listener.

" }, - "MatchRange": { - "type": "structure", - "required": [ - "end", - "start" - ], - "members": { - "end": { - "shape": "Long", - "documentation": "

The end of the range.

" - }, - "start": { - "shape": "Long", - "documentation": "

The start of the range.

" - } - }, - "documentation": "

An object that represents the range of values to match on. The first character of the range is included in the range, though the last character is not. For example, if the range specified were 1-100, only values 1-99 would be matched.

" - }, - "ListVirtualRoutersLimit": { - "type": "integer", - "box": true, - "min": 1, - "max": 100 - }, - "HealthCheckIntervalMillis": { - "type": "long", - "box": true, - "min": 5000, - "max": 300000 - }, - "VirtualRouterList": { - "type": "list", - "member": { - "shape": "VirtualRouterRef" - } + "VirtualGatewayHealthCheckThreshold":{ + "type":"integer", + "max":10, + "min":2 }, - "Arn": { - "type": "string" + "VirtualGatewayHealthCheckTimeoutMillis":{ + "type":"long", + "box":true, + "max":60000, + "min":2000 }, - "TcpRoute": { - "type": "structure", - "required": [ - "action" - ], - "members": { - "action": { - "shape": "TcpRouteAction", - "documentation": "

The action to take if a match is determined.

" - }, - "timeout": { - "shape": "TcpTimeout", - "documentation": "

An object that represents types of timeouts.

" + "VirtualGatewayHttp2ConnectionPool":{ + "type":"structure", + "required":["maxRequests"], + "members":{ + "maxRequests":{ + "shape":"MaxRequests", + "documentation":"

Maximum number of inflight requests Envoy can concurrently support across hosts in upstream cluster.

" } }, - "documentation": "

An object that represents a TCP route type.

" - }, - "VirtualNodeList": { - "type": "list", - "member": { - "shape": "VirtualNodeRef" - } + "documentation":"

An object that represents a type of connection pool.

" }, - "UpdateVirtualGatewayOutput": { - "type": "structure", - "required": [ - "virtualGateway" - ], - "members": { - "virtualGateway": { - "shape": "VirtualGatewayData", - "documentation": "

A full description of the virtual gateway that was updated.

" + "VirtualGatewayHttpConnectionPool":{ + "type":"structure", + "required":["maxConnections"], + "members":{ + "maxConnections":{ + "shape":"MaxConnections", + "documentation":"

Maximum number of outbound TCP connections Envoy can establish concurrently with all hosts in upstream cluster.

" + }, + "maxPendingRequests":{ + "shape":"MaxPendingRequests", + "documentation":"

Number of overflowing requests after max_connections Envoy will queue to upstream cluster.

", + "box":true } }, - "payload": "virtualGateway" + "documentation":"

An object that represents a type of connection pool.

" }, - "ListVirtualRoutersInput": { - "type": "structure", - "required": [ - "meshName" - ], - "members": { - "limit": { - "shape": "ListVirtualRoutersLimit", - "documentation": "

The maximum number of results returned by ListVirtualRouters in paginated\n output. When you use this parameter, ListVirtualRouters returns only\n limit results in a single page along with a nextToken response\n element. You can see the remaining results of the initial request by sending another\n ListVirtualRouters request with the returned nextToken value.\n This value can be between 1 and 100. If you don't use this\n parameter, ListVirtualRouters returns up to 100 results and\n a nextToken value if applicable.

", - "location": "querystring", - "locationName": "limit" - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh to list virtual routers in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "nextToken": { - "shape": "String", - "documentation": "

The nextToken value returned from a previous paginated\n ListVirtualRouters request where limit was used and the\n results exceeded the value of that parameter. Pagination continues from the end of the\n previous results that returned the nextToken value.

", - "location": "querystring", - "locationName": "nextToken" - } - }, - "documentation": "" - }, - "DurationUnit": { - "type": "string", - "enum": [ - "ms", - "s" - ] + "VirtualGatewayList":{ + "type":"list", + "member":{"shape":"VirtualGatewayRef"} }, - "RoutePriority": { - "type": "integer", - "box": true, - "min": 0, - "max": 1000 + "VirtualGatewayListener":{ + "type":"structure", + "required":["portMapping"], + "members":{ + "connectionPool":{ + "shape":"VirtualGatewayConnectionPool", + "documentation":"

The connection pool information for the virtual gateway listener.

" + }, + "healthCheck":{ + "shape":"VirtualGatewayHealthCheckPolicy", + "documentation":"

The health check information for the listener.

" + }, + "portMapping":{ + "shape":"VirtualGatewayPortMapping", + "documentation":"

The port mapping information for the listener.

" + }, + "tls":{ + "shape":"VirtualGatewayListenerTls", + "documentation":"

A reference to an object that represents the Transport Layer Security (TLS) properties for the listener.

" + } + }, + "documentation":"

An object that represents a listener for a virtual gateway.

" }, - "ListVirtualServicesInput": { - "type": "structure", - "required": [ - "meshName" - ], - "members": { - "limit": { - "shape": "ListVirtualServicesLimit", - "documentation": "

The maximum number of results returned by ListVirtualServices in paginated\n output. When you use this parameter, ListVirtualServices returns only\n limit results in a single page along with a nextToken response\n element. You can see the remaining results of the initial request by sending another\n ListVirtualServices request with the returned nextToken value.\n This value can be between 1 and 100. If you don't use this\n parameter, ListVirtualServices returns up to 100 results and\n a nextToken value if applicable.

", - "location": "querystring", - "locationName": "limit" - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh to list virtual services in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "nextToken": { - "shape": "String", - "documentation": "

The nextToken value returned from a previous paginated\n ListVirtualServices request where limit was used and the\n results exceeded the value of that parameter. Pagination continues from the end of the\n previous results that returned the nextToken value.

", - "location": "querystring", - "locationName": "nextToken" - } - }, - "documentation": "" - }, - "AccessLog": { - "type": "structure", - "members": { - "file": { - "shape": "FileAccessLog", - "documentation": "

The file object to send virtual node access logs to.

" - } - }, - "documentation": "

An object that represents the access logging information for a virtual node.

" - }, - "ListVirtualNodesInput": { - "type": "structure", - "required": [ - "meshName" + "VirtualGatewayListenerTls":{ + "type":"structure", + "required":[ + "certificate", + "mode" ], - "members": { - "limit": { - "shape": "ListVirtualNodesLimit", - "documentation": "

The maximum number of results returned by ListVirtualNodes in paginated\n output. When you use this parameter, ListVirtualNodes returns only\n limit results in a single page along with a nextToken response\n element. You can see the remaining results of the initial request by sending another\n ListVirtualNodes request with the returned nextToken value.\n This value can be between 1 and 100. If you don't use this\n parameter, ListVirtualNodes returns up to 100 results and a\n nextToken value if applicable.

", - "location": "querystring", - "locationName": "limit" - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh to list virtual nodes in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "nextToken": { - "shape": "String", - "documentation": "

The nextToken value returned from a previous paginated\n ListVirtualNodes request where limit was used and the results\n exceeded the value of that parameter. Pagination continues from the end of the previous\n results that returned the nextToken value.

", - "location": "querystring", - "locationName": "nextToken" - } - }, - "documentation": "" - }, - "VirtualGatewayClientPolicy": { - "type": "structure", - "members": { - "tls": { - "shape": "VirtualGatewayClientPolicyTls", - "documentation": "

A reference to an object that represents a Transport Layer Security (TLS) client policy.

" - } - }, - "documentation": "

An object that represents a client policy.

" - }, - "ListVirtualNodesLimit": { - "type": "integer", - "box": true, - "min": 1, - "max": 100 - }, - "HealthCheckTimeoutMillis": { - "type": "long", - "box": true, - "min": 2000, - "max": 60000 - }, - "ResourceName": { - "type": "string", - "min": 1, - "max": 255 - }, - "TooManyRequestsException": { - "type": "structure", - "members": { - "message": { - "shape": "String" - } - }, - "documentation": "

The maximum request rate permitted by the App Mesh APIs has been exceeded for your\n account. For best results, use an increasing or variable sleep interval between\n requests.

", - "exception": true, - "error": { - "code": "TooManyRequestsException", - "httpStatusCode": 429, - "senderFault": true - } - }, - "Timestamp": { - "type": "timestamp" - }, - "VirtualGatewayLogging": { - "type": "structure", - "members": { - "accessLog": { - "shape": "VirtualGatewayAccessLog", - "documentation": "

The access log configuration.

" + "members":{ + "certificate":{ + "shape":"VirtualGatewayListenerTlsCertificate", + "documentation":"

An object that represents a Transport Layer Security (TLS) certificate.

" + }, + "mode":{ + "shape":"VirtualGatewayListenerTlsMode", + "documentation":"

Specify one of the following modes.

  • STRICT – Listener only accepts connections with TLS enabled.

  • PERMISSIVE – Listener accepts connections with or without TLS enabled.

  • DISABLED – Listener only accepts connections without TLS.

" } }, - "documentation": "

An object that represents logging information.

" - }, - "HeaderMatch": { - "type": "string", - "min": 1, - "max": 255 + "documentation":"

An object that represents the Transport Layer Security (TLS) properties for a listener.

" }, - "AccountId": { - "type": "string", - "min": 12, - "max": 12 - }, - "GatewayRouteTarget": { - "type": "structure", - "required": [ - "virtualService" - ], - "members": { - "virtualService": { - "shape": "GatewayRouteVirtualService", - "documentation": "

An object that represents a virtual service gateway route target.

" + "VirtualGatewayListenerTlsAcmCertificate":{ + "type":"structure", + "required":["certificateArn"], + "members":{ + "certificateArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) for the certificate. The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS).

" } }, - "documentation": "

An object that represents a gateway route target.

" + "documentation":"

An object that represents an AWS Certicate Manager (ACM) certificate.

" }, - "Duration": { - "type": "structure", - "members": { - "unit": { - "shape": "DurationUnit", - "documentation": "

A unit of time.

" + "VirtualGatewayListenerTlsCertificate":{ + "type":"structure", + "members":{ + "acm":{ + "shape":"VirtualGatewayListenerTlsAcmCertificate", + "documentation":"

A reference to an object that represents an AWS Certicate Manager (ACM) certificate.

" }, - "value": { - "shape": "DurationValue", - "documentation": "

A number of time units.

" + "file":{ + "shape":"VirtualGatewayListenerTlsFileCertificate", + "documentation":"

A reference to an object that represents a local file certificate.

" } }, - "documentation": "

An object that represents a duration of time.

" + "documentation":"

An object that represents a listener's Transport Layer Security (TLS) certificate.

", + "union":true }, - "DescribeRouteOutput": { - "type": "structure", - "required": [ - "route" + "VirtualGatewayListenerTlsFileCertificate":{ + "type":"structure", + "required":[ + "certificateChain", + "privateKey" ], - "members": { - "route": { - "shape": "RouteData", - "documentation": "

The full description of your route.

" + "members":{ + "certificateChain":{ + "shape":"FilePath", + "documentation":"

The certificate chain for the certificate.

" + }, + "privateKey":{ + "shape":"FilePath", + "documentation":"

The private key for a certificate stored on the file system of the mesh endpoint that the proxy is running on.

" } }, - "documentation": "", - "payload": "route" + "documentation":"

An object that represents a local file certificate. The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS).

" }, - "HttpRouteMatch": { - "type": "structure", - "required": [ - "prefix" - ], - "members": { - "headers": { - "shape": "HttpRouteHeaders", - "documentation": "

An object that represents the client request headers to match on.

" - }, - "method": { - "shape": "HttpMethod", - "documentation": "

The client request method to match on. Specify only one.

" - }, - "prefix": { - "shape": "String", - "documentation": "

Specifies the path to match requests with. This parameter must always start with\n /, which by itself matches all requests to the virtual service name. You\n can also match for path-based routing of requests. For example, if your virtual service\n name is my-service.local and you want the route to match requests to\n my-service.local/metrics, your prefix should be\n /metrics.

" - }, - "scheme": { - "shape": "HttpScheme", - "documentation": "

The client request scheme to match on. Specify only one.

" + "VirtualGatewayListenerTlsMode":{ + "type":"string", + "enum":[ + "STRICT", + "PERMISSIVE", + "DISABLED" + ] + }, + "VirtualGatewayListeners":{ + "type":"list", + "member":{"shape":"VirtualGatewayListener"}, + "max":1, + "min":0 + }, + "VirtualGatewayLogging":{ + "type":"structure", + "members":{ + "accessLog":{ + "shape":"VirtualGatewayAccessLog", + "documentation":"

The access log configuration.

" } }, - "documentation": "

An object that represents the requirements for a route to match HTTP requests for a\n virtual router.

" + "documentation":"

An object that represents logging information.

" }, - "TagRef": { - "type": "structure", - "required": [ - "key" + "VirtualGatewayPortMapping":{ + "type":"structure", + "required":[ + "port", + "protocol" ], - "members": { - "key": { - "shape": "TagKey", - "documentation": "

One part of a key-value pair that make up a tag. A key is a general label\n that acts like a category for more specific tag values.

" + "members":{ + "port":{ + "shape":"PortNumber", + "documentation":"

The port used for the port mapping. Specify one protocol.

" }, - "value": { - "shape": "TagValue", - "documentation": "

The optional part of a key-value pair that make up a tag. A value acts as a\n descriptor within a tag category (key).

" + "protocol":{ + "shape":"VirtualGatewayPortProtocol", + "documentation":"

The protocol used for the port mapping.

" } }, - "documentation": "

Optional metadata that you apply to a resource to assist with categorization and\n organization. Each tag consists of a key and an optional value, both of which you define.\n Tag keys can have a maximum character length of 128 characters, and tag values can have\n a maximum length of 256 characters.

" + "documentation":"

An object that represents a port mapping.

" + }, + "VirtualGatewayPortProtocol":{ + "type":"string", + "enum":[ + "http", + "http2", + "grpc" + ] }, - "MeshRef": { - "type": "structure", - "required": [ + "VirtualGatewayRef":{ + "type":"structure", + "required":[ "arn", "createdAt", "lastUpdatedAt", "meshName", "meshOwner", "resourceOwner", - "version" + "version", + "virtualGatewayName" ], - "members": { - "arn": { - "shape": "Arn", - "documentation": "

The full Amazon Resource Name (ARN) of the service mesh.

" + "members":{ + "arn":{ + "shape":"Arn", + "documentation":"

The full Amazon Resource Name (ARN) for the resource.

" }, - "createdAt": { - "shape": "Timestamp", - "documentation": "

The Unix epoch timestamp in seconds for when the resource was created.

" + "createdAt":{ + "shape":"Timestamp", + "documentation":"

The Unix epoch timestamp in seconds for when the resource was created.

" }, - "lastUpdatedAt": { - "shape": "Timestamp", - "documentation": "

The Unix epoch timestamp in seconds for when the resource was last updated.

" + "lastUpdatedAt":{ + "shape":"Timestamp", + "documentation":"

The Unix epoch timestamp in seconds for when the resource was last updated.

" }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh.

" + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the resource resides in.

" }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

" + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

" }, - "resourceOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the resource owner. If the account ID is not your own, then it's\n the ID of the mesh owner or of another account that the mesh is shared with. For more information about mesh sharing, see Working with shared meshes.

" + "resourceOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the resource owner. If the account ID is not your own, then it's the ID of the mesh owner or of another account that the mesh is shared with. For more information about mesh sharing, see Working with shared meshes.

" }, - "version": { - "shape": "Long", - "documentation": "

The version of the resource. Resources are created at version 1, and this version is incremented each time that they're updated.

" + "version":{ + "shape":"Long", + "documentation":"

The version of the resource. Resources are created at version 1, and this version is incremented each time that they're updated.

" + }, + "virtualGatewayName":{ + "shape":"ResourceName", + "documentation":"

The name of the resource.

" } }, - "documentation": "

An object that represents a service mesh returned by a list operation.

" - }, - "ListVirtualGatewaysLimit": { - "type": "integer", - "box": true, - "min": 1, - "max": 100 - }, - "MeshStatusCode": { - "type": "string", - "enum": [ - "ACTIVE", - "DELETED", - "INACTIVE" - ] + "documentation":"

An object that represents a virtual gateway returned by a list operation.

" }, - "MeshData": { - "type": "structure", - "required": [ - "meshName", - "metadata", - "spec", - "status" - ], - "members": { - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh.

" + "VirtualGatewaySpec":{ + "type":"structure", + "required":["listeners"], + "members":{ + "backendDefaults":{ + "shape":"VirtualGatewayBackendDefaults", + "documentation":"

A reference to an object that represents the defaults for backends.

" }, - "metadata": { - "shape": "ResourceMetadata", - "documentation": "

The associated metadata for the service mesh.

" + "listeners":{ + "shape":"VirtualGatewayListeners", + "documentation":"

The listeners that the mesh endpoint is expected to receive inbound traffic from. You can specify one listener.

" }, - "spec": { - "shape": "MeshSpec", - "documentation": "

The associated specification for the service mesh.

" - }, - "status": { - "shape": "MeshStatus", - "documentation": "

The status of the service mesh.

" - } + "logging":{"shape":"VirtualGatewayLogging"} }, - "documentation": "

An object that represents a service mesh returned by a describe operation.

" + "documentation":"

An object that represents the specification of a service mesh resource.

" }, - "CreateGatewayRouteOutput": { - "type": "structure", - "required": [ - "gatewayRoute" - ], - "members": { - "gatewayRoute": { - "shape": "GatewayRouteData", - "documentation": "

The full description of your gateway route following the create call.

" + "VirtualGatewayStatus":{ + "type":"structure", + "required":["status"], + "members":{ + "status":{ + "shape":"VirtualGatewayStatusCode", + "documentation":"

The current status.

" } }, - "payload": "gatewayRoute" + "documentation":"

An object that represents the status of the mesh resource.

" }, - "GatewayRouteList": { - "type": "list", - "member": { - "shape": "GatewayRouteRef" - } + "VirtualGatewayStatusCode":{ + "type":"string", + "enum":[ + "ACTIVE", + "INACTIVE", + "DELETED" + ] }, - "VirtualRouterStatus": { - "type": "structure", - "required": [ - "status" - ], - "members": { - "status": { - "shape": "VirtualRouterStatusCode", - "documentation": "

The current status of the virtual router.

" + "VirtualGatewayTlsValidationContext":{ + "type":"structure", + "required":["trust"], + "members":{ + "trust":{ + "shape":"VirtualGatewayTlsValidationContextTrust", + "documentation":"

A reference to an object that represents a TLS validation context trust.

" } }, - "documentation": "

An object that represents the status of a virtual router.

" + "documentation":"

An object that represents a Transport Layer Security (TLS) validation context.

" }, - "TcpRouteAction": { - "type": "structure", - "required": [ - "weightedTargets" - ], - "members": { - "weightedTargets": { - "shape": "WeightedTargets", - "documentation": "

An object that represents the targets that traffic is routed to when a request matches the route.

" + "VirtualGatewayTlsValidationContextAcmTrust":{ + "type":"structure", + "required":["certificateAuthorityArns"], + "members":{ + "certificateAuthorityArns":{ + "shape":"VirtualGatewayCertificateAuthorityArns", + "documentation":"

One or more ACM Amazon Resource Name (ARN)s.

" } }, - "documentation": "

An object that represents the action to take if a match is determined.

" - }, - "DeleteVirtualGatewayInput": { - "type": "structure", - "required": [ - "meshName", - "virtualGatewayName" - ], - "members": { - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh to delete the virtual gateway from.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "virtualGatewayName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual gateway to delete.

", - "location": "uri", - "locationName": "virtualGatewayName" - } - } + "documentation":"

An object that represents a TLS validation context trust for an AWS Certicate Manager (ACM) certificate.

" }, - "DescribeVirtualNodeInput": { - "type": "structure", - "required": [ - "meshName", - "virtualNodeName" - ], - "members": { - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the virtual node resides in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "virtualNodeName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual node to describe.

", - "location": "uri", - "locationName": "virtualNodeName" - } - }, - "documentation": "" - }, - "RouteStatus": { - "type": "structure", - "required": [ - "status" - ], - "members": { - "status": { - "shape": "RouteStatusCode", - "documentation": "

The current status for the route.

" + "VirtualGatewayTlsValidationContextFileTrust":{ + "type":"structure", + "required":["certificateChain"], + "members":{ + "certificateChain":{ + "shape":"FilePath", + "documentation":"

The certificate trust chain for a certificate stored on the file system of the virtual node that the proxy is running on.

" } }, - "documentation": "

An object that represents the current status of a route.

" + "documentation":"

An object that represents a Transport Layer Security (TLS) validation context trust for a local file.

" }, - "Listener": { - "type": "structure", - "required": [ - "portMapping" - ], - "members": { - "healthCheck": { - "shape": "HealthCheckPolicy", - "documentation": "

The health check information for the listener.

" - }, - "portMapping": { - "shape": "PortMapping", - "documentation": "

The port mapping information for the listener.

" + "VirtualGatewayTlsValidationContextTrust":{ + "type":"structure", + "members":{ + "acm":{ + "shape":"VirtualGatewayTlsValidationContextAcmTrust", + "documentation":"

A reference to an object that represents a TLS validation context trust for an AWS Certicate Manager (ACM) certificate.

" }, - "timeout": { - "shape": "ListenerTimeout", - "documentation": "

An object that represents timeouts for different protocols.

" - }, - "tls": { - "shape": "ListenerTls", - "documentation": "

A reference to an object that represents the Transport Layer Security (TLS) properties for a listener.

" + "file":{ + "shape":"VirtualGatewayTlsValidationContextFileTrust", + "documentation":"

An object that represents a TLS validation context trust for a local file.

" } }, - "documentation": "

An object that represents a listener for a virtual node.

" + "documentation":"

An object that represents a Transport Layer Security (TLS) validation context trust.

", + "union":true }, - "GrpcRoute": { - "type": "structure", - "required": [ - "action", - "match" - ], - "members": { - "action": { - "shape": "GrpcRouteAction", - "documentation": "

An object that represents the action to take if a match is determined.

" + "VirtualNodeConnectionPool":{ + "type":"structure", + "members":{ + "grpc":{ + "shape":"VirtualNodeGrpcConnectionPool", + "documentation":"

An object that represents a type of connection pool.

" }, - "match": { - "shape": "GrpcRouteMatch", - "documentation": "

An object that represents the criteria for determining a request match.

" + "http":{ + "shape":"VirtualNodeHttpConnectionPool", + "documentation":"

An object that represents a type of connection pool.

" }, - "retryPolicy": { - "shape": "GrpcRetryPolicy", - "documentation": "

An object that represents a retry policy.

" + "http2":{ + "shape":"VirtualNodeHttp2ConnectionPool", + "documentation":"

An object that represents a type of connection pool.

" }, - "timeout": { - "shape": "GrpcTimeout", - "documentation": "

An object that represents types of timeouts.

" + "tcp":{ + "shape":"VirtualNodeTcpConnectionPool", + "documentation":"

An object that represents a type of connection pool.

" } }, - "documentation": "

An object that represents a gRPC route type.

" + "documentation":"

An object that represents the type of virtual node connection pool.

Only one protocol is used at a time and should be the same protocol as the one chosen under port mapping.

If not present the default value for maxPendingRequests is 2147483647.

", + "union":true }, - "ListRoutesLimit": { - "type": "integer", - "box": true, - "min": 1, - "max": 100 - }, - "ClientPolicyTls": { - "type": "structure", - "required": [ - "validation" + "VirtualNodeData":{ + "type":"structure", + "required":[ + "meshName", + "metadata", + "spec", + "status", + "virtualNodeName" ], - "members": { - "enforce": { - "shape": "Boolean", - "box": true, - "documentation": "

Whether the policy is enforced. The default is True, if a value isn't\n specified.

" + "members":{ + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the virtual node resides in.

" }, - "ports": { - "shape": "PortSet", - "documentation": "

One or more ports that the policy is enforced for.

" + "metadata":{ + "shape":"ResourceMetadata", + "documentation":"

The associated metadata for the virtual node.

" }, - "validation": { - "shape": "TlsValidationContext", - "documentation": "

A reference to an object that represents a TLS validation context.

" - } - }, - "documentation": "

An object that represents a Transport Layer Security (TLS) client policy.

" - }, - "VirtualGatewayTlsValidationContextTrust": { - "type": "structure", - "members": { - "acm": { - "shape": "VirtualGatewayTlsValidationContextAcmTrust", - "documentation": "

A reference to an object that represents a TLS validation context trust for an AWS Certicate Manager (ACM)\n certificate.

" + "spec":{ + "shape":"VirtualNodeSpec", + "documentation":"

The specifications of the virtual node.

" + }, + "status":{ + "shape":"VirtualNodeStatus", + "documentation":"

The current status for the virtual node.

" }, - "file": { - "shape": "VirtualGatewayTlsValidationContextFileTrust", - "documentation": "

An object that represents a TLS validation context trust for a local file.

" + "virtualNodeName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual node.

" } }, - "documentation": "

An object that represents a Transport Layer Security (TLS) validation context trust.

" + "documentation":"

An object that represents a virtual node returned by a describe operation.

" }, - "DeleteVirtualServiceOutput": { - "type": "structure", - "required": [ - "virtualService" - ], - "members": { - "virtualService": { - "shape": "VirtualServiceData", - "documentation": "

The virtual service that was deleted.

" + "VirtualNodeGrpcConnectionPool":{ + "type":"structure", + "required":["maxRequests"], + "members":{ + "maxRequests":{ + "shape":"MaxRequests", + "documentation":"

Maximum number of inflight requests Envoy can concurrently support across hosts in upstream cluster.

" } }, - "documentation": "", - "payload": "virtualService" - }, - "VirtualGatewayPortProtocol": { - "type": "string", - "enum": [ - "grpc", - "http", - "http2" - ] + "documentation":"

An object that represents a type of connection pool.

" }, - "VirtualNodeServiceProvider": { - "type": "structure", - "required": [ - "virtualNodeName" - ], - "members": { - "virtualNodeName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual node that is acting as a service provider.

" + "VirtualNodeHttp2ConnectionPool":{ + "type":"structure", + "required":["maxRequests"], + "members":{ + "maxRequests":{ + "shape":"MaxRequests", + "documentation":"

Maximum number of inflight requests Envoy can concurrently support across hosts in upstream cluster.

" } }, - "documentation": "

An object that represents a virtual node service provider.

" + "documentation":"

An object that represents a type of connection pool.

" }, - "HttpGatewayRoute": { - "type": "structure", - "required": [ - "action", - "match" - ], - "members": { - "action": { - "shape": "HttpGatewayRouteAction", - "documentation": "

An object that represents the action to take if a match is determined.

" + "VirtualNodeHttpConnectionPool":{ + "type":"structure", + "required":["maxConnections"], + "members":{ + "maxConnections":{ + "shape":"MaxConnections", + "documentation":"

Maximum number of outbound TCP connections Envoy can establish concurrently with all hosts in upstream cluster.

" }, - "match": { - "shape": "HttpGatewayRouteMatch", - "documentation": "

An object that represents the criteria for determining a request match.

" + "maxPendingRequests":{ + "shape":"MaxPendingRequests", + "documentation":"

Number of overflowing requests after max_connections Envoy will queue to upstream cluster.

", + "box":true } }, - "documentation": "

An object that represents an HTTP gateway route.

" + "documentation":"

An object that represents a type of connection pool.

" }, - "BackendDefaults": { - "type": "structure", - "members": { - "clientPolicy": { - "shape": "ClientPolicy", - "documentation": "

A reference to an object that represents a client policy.

" - } - }, - "documentation": "

An object that represents the default properties for a backend.

" + "VirtualNodeList":{ + "type":"list", + "member":{"shape":"VirtualNodeRef"} }, - "ListenerTlsFileCertificate": { - "type": "structure", - "required": [ - "certificateChain", - "privateKey" + "VirtualNodeRef":{ + "type":"structure", + "required":[ + "arn", + "createdAt", + "lastUpdatedAt", + "meshName", + "meshOwner", + "resourceOwner", + "version", + "virtualNodeName" ], - "members": { - "certificateChain": { - "shape": "FilePath", - "documentation": "

The certificate chain for the certificate.

" + "members":{ + "arn":{ + "shape":"Arn", + "documentation":"

The full Amazon Resource Name (ARN) for the virtual node.

" }, - "privateKey": { - "shape": "FilePath", - "documentation": "

The private key for a certificate stored on the file system of the virtual node that the\n proxy is running on.

" - } - }, - "documentation": "

An object that represents a local file certificate.\n The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS).

" - }, - "HttpRetryPolicy": { - "type": "structure", - "required": [ - "maxRetries", - "perRetryTimeout" - ], - "members": { - "httpRetryEvents": { - "shape": "HttpRetryPolicyEvents", - "documentation": "

Specify at least one of the following values.

\n
    \n
  • \n

    \n server-error – HTTP status codes 500, 501,\n 502, 503, 504, 505, 506, 507, 508, 510, and 511

    \n
  • \n
  • \n

    \n gateway-error – HTTP status codes 502,\n 503, and 504

    \n
  • \n
  • \n

    \n client-error – HTTP status code 409

    \n
  • \n
  • \n

    \n stream-error – Retry on refused\n stream

    \n
  • \n
" + "createdAt":{ + "shape":"Timestamp", + "documentation":"

The Unix epoch timestamp in seconds for when the resource was created.

" + }, + "lastUpdatedAt":{ + "shape":"Timestamp", + "documentation":"

The Unix epoch timestamp in seconds for when the resource was last updated.

" + }, + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the virtual node resides in.

" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

" }, - "maxRetries": { - "shape": "MaxRetries", - "documentation": "

The maximum number of retry attempts.

" + "resourceOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the resource owner. If the account ID is not your own, then it's the ID of the mesh owner or of another account that the mesh is shared with. For more information about mesh sharing, see Working with shared meshes.

" }, - "perRetryTimeout": { - "shape": "Duration", - "documentation": "

An object that represents a duration of time.

" + "version":{ + "shape":"Long", + "documentation":"

The version of the resource. Resources are created at version 1, and this version is incremented each time that they're updated.

" }, - "tcpRetryEvents": { - "shape": "TcpRetryPolicyEvents", - "documentation": "

Specify a valid value.

" + "virtualNodeName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual node.

" } }, - "documentation": "

An object that represents a retry policy. Specify at least one value for at least one of the types of RetryEvents, a value for maxRetries, and a value for perRetryTimeout.

" - }, - "DescribeVirtualRouterInput": { - "type": "structure", - "required": [ - "meshName", - "virtualRouterName" - ], - "members": { - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the virtual router resides in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "virtualRouterName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual router to describe.

", - "location": "uri", - "locationName": "virtualRouterName" - } - }, - "documentation": "" - }, - "TagResourceOutput": { - "type": "structure", - "members": { }, - "documentation": "" - }, - "RouteList": { - "type": "list", - "member": { - "shape": "RouteRef" - } + "documentation":"

An object that represents a virtual node returned by a list operation.

" }, - "TooManyTagsException": { - "type": "structure", - "members": { - "message": { - "shape": "String" + "VirtualNodeServiceProvider":{ + "type":"structure", + "required":["virtualNodeName"], + "members":{ + "virtualNodeName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual node that is acting as a service provider.

" } }, - "documentation": "

The request exceeds the maximum allowed number of tags allowed per resource. The current\n limit is 50 user tags per resource. You must reduce the number of tags in the request. None\n of the tags in this request were applied.

", - "exception": true, - "error": { - "code": "TooManyTagsException", - "httpStatusCode": 400, - "senderFault": true - } - }, - "UpdateGatewayRouteInput": { - "type": "structure", - "required": [ - "gatewayRouteName", - "meshName", - "spec", - "virtualGatewayName" - ], - "members": { - "clientToken": { - "shape": "String", - "documentation": "

Unique, case-sensitive identifier that you provide to ensure the idempotency of the\nrequest. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", - "idempotencyToken": true - }, - "gatewayRouteName": { - "shape": "ResourceName", - "documentation": "

The name of the gateway route to update.

", - "location": "uri", - "locationName": "gatewayRouteName" - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the gateway route resides in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "spec": { - "shape": "GatewayRouteSpec", - "documentation": "

The new gateway route specification to apply. This overwrites the existing data.

" - }, - "virtualGatewayName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual gateway that the gateway route is associated with.

", - "location": "uri", - "locationName": "virtualGatewayName" - } - } - }, - "ListVirtualGatewaysInput": { - "type": "structure", - "required": [ - "meshName" - ], - "members": { - "limit": { - "shape": "ListVirtualGatewaysLimit", - "documentation": "

The maximum number of results returned by ListVirtualGateways in paginated\n output. When you use this parameter, ListVirtualGateways returns only\n limit results in a single page along with a nextToken response\n element. You can see the remaining results of the initial request by sending another\n ListVirtualGateways request with the returned nextToken value.\n This value can be between 1 and 100. If you don't use this\n parameter, ListVirtualGateways returns up to 100 results and\n a nextToken value if applicable.

", - "location": "querystring", - "locationName": "limit" - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh to list virtual gateways in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "nextToken": { - "shape": "String", - "documentation": "

The nextToken value returned from a previous paginated\n ListVirtualGateways request where limit was used and the\n results exceeded the value of that parameter. Pagination continues from the end of the\n previous results that returned the nextToken value.

", - "location": "querystring", - "locationName": "nextToken" - } - } + "documentation":"

An object that represents a virtual node service provider.

" }, - "PortNumber": { - "type": "integer", - "min": 1, - "max": 65535 - }, - "TlsValidationContextFileTrust": { - "type": "structure", - "required": [ - "certificateChain" - ], - "members": { - "certificateChain": { - "shape": "FilePath", - "documentation": "

The certificate trust chain for a certificate stored on the file system of the virtual\n node that the proxy is running on.

" + "VirtualNodeSpec":{ + "type":"structure", + "members":{ + "backendDefaults":{ + "shape":"BackendDefaults", + "documentation":"

A reference to an object that represents the defaults for backends.

" + }, + "backends":{ + "shape":"Backends", + "documentation":"

The backends that the virtual node is expected to send outbound traffic to.

" + }, + "listeners":{ + "shape":"Listeners", + "documentation":"

The listener that the virtual node is expected to receive inbound traffic from. You can specify one listener.

" + }, + "logging":{ + "shape":"Logging", + "documentation":"

The inbound and outbound access logging information for the virtual node.

" + }, + "serviceDiscovery":{ + "shape":"ServiceDiscovery", + "documentation":"

The service discovery information for the virtual node. If your virtual node does not expect ingress traffic, you can omit this parameter. If you specify a listener, then you must specify service discovery information.

" } }, - "documentation": "

An object that represents a Transport Layer Security (TLS) validation context trust for a local file.

" + "documentation":"

An object that represents the specification of a virtual node.

" }, - "GrpcRouteMetadata": { - "type": "structure", - "required": [ - "name" - ], - "members": { - "invert": { - "shape": "Boolean", - "documentation": "

Specify True to match anything except the match criteria. The default value is False.

" - }, - "match": { - "shape": "GrpcRouteMetadataMatchMethod", - "documentation": "

An object that represents the data to match from the request.

" - }, - "name": { - "shape": "HeaderName", - "documentation": "

The name of the route.

" + "VirtualNodeStatus":{ + "type":"structure", + "required":["status"], + "members":{ + "status":{ + "shape":"VirtualNodeStatusCode", + "documentation":"

The current status of the virtual node.

" } }, - "documentation": "

An object that represents the match metadata for the route.

" + "documentation":"

An object that represents the current status of the virtual node.

" }, - "CreateRouteInput": { - "type": "structure", - "required": [ - "meshName", - "routeName", - "spec", - "virtualRouterName" - ], - "members": { - "clientToken": { - "shape": "String", - "documentation": "

Unique, case-sensitive identifier that you provide to ensure the idempotency of the\nrequest. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", - "idempotencyToken": true - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh to create the route in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then\n the account that you specify must share the mesh with your account before you can create \n the resource in the service mesh. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "routeName": { - "shape": "ResourceName", - "documentation": "

The name to use for the route.

" - }, - "spec": { - "shape": "RouteSpec", - "documentation": "

The route specification to apply.

" - }, - "tags": { - "shape": "TagList", - "documentation": "

Optional metadata that you can apply to the route to assist with categorization and\n organization. Each tag consists of a key and an optional value, both of which you define.\n Tag keys can have a maximum character length of 128 characters, and tag values can have\n a maximum length of 256 characters.

", - "tags": [ - "not-preview" - ] - }, - "virtualRouterName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual router in which to create the route. If the virtual router is in\n a shared mesh, then you must be the owner of the virtual router resource.

", - "location": "uri", - "locationName": "virtualRouterName" - } - }, - "documentation": "" - }, - "VirtualGatewayCertificateAuthorityArns": { - "type": "list", - "member": { - "shape": "Arn" - }, - "min": 1, - "max": 3 - }, - "WeightedTargets": { - "type": "list", - "member": { - "shape": "WeightedTarget" - }, - "min": 1, - "max": 10 - }, - "HttpRouteHeaders": { - "type": "list", - "member": { - "shape": "HttpRouteHeader" - }, - "min": 1, - "max": 10 - }, - "String": { - "type": "string" - }, - "TcpTimeout": { - "type": "structure", - "members": { - "idle": { - "shape": "Duration" - } - }, - "documentation": "

An object that represents types of timeouts.

" - }, - "HttpScheme": { - "type": "string", - "enum": [ - "http", - "https" + "VirtualNodeStatusCode":{ + "type":"string", + "enum":[ + "ACTIVE", + "INACTIVE", + "DELETED" ] }, - "DeleteGatewayRouteInput": { - "type": "structure", - "required": [ - "gatewayRouteName", - "meshName", - "virtualGatewayName" - ], - "members": { - "gatewayRouteName": { - "shape": "ResourceName", - "documentation": "

The name of the gateway route to delete.

", - "location": "uri", - "locationName": "gatewayRouteName" - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh to delete the gateway route from.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "virtualGatewayName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual gateway to delete the route from.

", - "location": "uri", - "locationName": "virtualGatewayName" + "VirtualNodeTcpConnectionPool":{ + "type":"structure", + "required":["maxConnections"], + "members":{ + "maxConnections":{ + "shape":"MaxConnections", + "documentation":"

Maximum number of outbound TCP connections Envoy can establish concurrently with all hosts in upstream cluster.

" } - } + }, + "documentation":"

An object that represents a type of connection pool.

" }, - "UpdateRouteInput": { - "type": "structure", - "required": [ + "VirtualRouterData":{ + "type":"structure", + "required":[ "meshName", - "routeName", + "metadata", "spec", + "status", "virtualRouterName" ], - "members": { - "clientToken": { - "shape": "String", - "documentation": "

Unique, case-sensitive identifier that you provide to ensure the idempotency of the\nrequest. Up to 36 letters, numbers, hyphens, and underscores are allowed.

", - "idempotencyToken": true - }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the route resides in.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - }, - "routeName": { - "shape": "ResourceName", - "documentation": "

The name of the route to update.

", - "location": "uri", - "locationName": "routeName" - }, - "spec": { - "shape": "RouteSpec", - "documentation": "

The new route specification to apply. This overwrites the existing data.

" - }, - "virtualRouterName": { - "shape": "ResourceName", - "documentation": "

The name of the virtual router that the route is associated with.

", - "location": "uri", - "locationName": "virtualRouterName" - } - }, - "documentation": "" - }, - "HttpRoute": { - "type": "structure", - "required": [ - "action", - "match" - ], - "members": { - "action": { - "shape": "HttpRouteAction", - "documentation": "

An object that represents the action to take if a match is determined.

" + "members":{ + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the virtual router resides in.

" + }, + "metadata":{ + "shape":"ResourceMetadata", + "documentation":"

The associated metadata for the virtual router.

" }, - "match": { - "shape": "HttpRouteMatch", - "documentation": "

An object that represents the criteria for determining a request match.

" + "spec":{ + "shape":"VirtualRouterSpec", + "documentation":"

The specifications of the virtual router.

" }, - "retryPolicy": { - "shape": "HttpRetryPolicy", - "documentation": "

An object that represents a retry policy.

" + "status":{ + "shape":"VirtualRouterStatus", + "documentation":"

The current status of the virtual router.

" }, - "timeout": { - "shape": "HttpTimeout", - "documentation": "

An object that represents types of timeouts.

" + "virtualRouterName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual router.

" } }, - "documentation": "

An object that represents an HTTP or HTTP/2 route type.

" + "documentation":"

An object that represents a virtual router returned by a describe operation.

" }, - "DescribeMeshInput": { - "type": "structure", - "required": [ - "meshName" - ], - "members": { - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh to describe.

", - "location": "uri", - "locationName": "meshName" - }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

", - "location": "querystring", - "locationName": "meshOwner" - } + "VirtualRouterList":{ + "type":"list", + "member":{"shape":"VirtualRouterRef"} + }, + "VirtualRouterListener":{ + "type":"structure", + "required":["portMapping"], + "members":{ + "portMapping":{"shape":"PortMapping"} }, - "documentation": "" + "documentation":"

An object that represents a virtual router listener.

" }, - "VirtualGatewayRef": { - "type": "structure", - "required": [ + "VirtualRouterListeners":{ + "type":"list", + "member":{"shape":"VirtualRouterListener"}, + "max":1, + "min":1 + }, + "VirtualRouterRef":{ + "type":"structure", + "required":[ "arn", "createdAt", "lastUpdatedAt", @@ -5793,173 +4958,249 @@ "meshOwner", "resourceOwner", "version", - "virtualGatewayName" + "virtualRouterName" ], - "members": { - "arn": { - "shape": "Arn", - "documentation": "

The full Amazon Resource Name (ARN) for the resource.

" + "members":{ + "arn":{ + "shape":"Arn", + "documentation":"

The full Amazon Resource Name (ARN) for the virtual router.

" }, - "createdAt": { - "shape": "Timestamp", - "documentation": "

The Unix epoch timestamp in seconds for when the resource was created.

" + "createdAt":{ + "shape":"Timestamp", + "documentation":"

The Unix epoch timestamp in seconds for when the resource was created.

" }, - "lastUpdatedAt": { - "shape": "Timestamp", - "documentation": "

The Unix epoch timestamp in seconds for when the resource was last updated.

" + "lastUpdatedAt":{ + "shape":"Timestamp", + "documentation":"

The Unix epoch timestamp in seconds for when the resource was last updated.

" }, - "meshName": { - "shape": "ResourceName", - "documentation": "

The name of the service mesh that the resource resides in.

" + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the virtual router resides in.

" }, - "meshOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's\n the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

" + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

" }, - "resourceOwner": { - "shape": "AccountId", - "documentation": "

The AWS IAM account ID of the resource owner. If the account ID is not your own, then it's\n the ID of the mesh owner or of another account that the mesh is shared with. For more information about mesh sharing, see Working with shared meshes.

" + "resourceOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the resource owner. If the account ID is not your own, then it's the ID of the mesh owner or of another account that the mesh is shared with. For more information about mesh sharing, see Working with shared meshes.

" }, - "version": { - "shape": "Long", - "documentation": "

The version of the resource. Resources are created at version 1, and this version is incremented each time that they're updated.

" + "version":{ + "shape":"Long", + "documentation":"

The version of the resource. Resources are created at version 1, and this version is incremented each time that they're updated.

" }, - "virtualGatewayName": { - "shape": "ResourceName", - "documentation": "

The name of the resource.

" + "virtualRouterName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual router.

" } }, - "documentation": "

An object that represents a virtual gateway returned by a list operation.

" + "documentation":"

An object that represents a virtual router returned by a list operation.

" }, - "MeshSpec": { - "type": "structure", - "members": { - "egressFilter": { - "shape": "EgressFilter", - "documentation": "

The egress filter rules for the service mesh.

" + "VirtualRouterServiceProvider":{ + "type":"structure", + "required":["virtualRouterName"], + "members":{ + "virtualRouterName":{ + "shape":"ResourceName", + "documentation":"

The name of the virtual router that is acting as a service provider.

" } }, - "documentation": "

An object that represents the specification of a service mesh.

" + "documentation":"

An object that represents a virtual node service provider.

" }, - "DescribeVirtualGatewayOutput": { - "type": "structure", - "required": [ - "virtualGateway" - ], - "members": { - "virtualGateway": { - "shape": "VirtualGatewayData", - "documentation": "

The full description of your virtual gateway.

" + "VirtualRouterSpec":{ + "type":"structure", + "members":{ + "listeners":{ + "shape":"VirtualRouterListeners", + "documentation":"

The listeners that the virtual router is expected to receive inbound traffic from. You can specify one listener.

" } }, - "payload": "virtualGateway" + "documentation":"

An object that represents the specification of a virtual router.

" }, - "DescribeGatewayRouteOutput": { - "type": "structure", - "required": [ - "gatewayRoute" - ], - "members": { - "gatewayRoute": { - "shape": "GatewayRouteData", - "documentation": "

The full description of your gateway route.

" + "VirtualRouterStatus":{ + "type":"structure", + "required":["status"], + "members":{ + "status":{ + "shape":"VirtualRouterStatusCode", + "documentation":"

The current status of the virtual router.

" } }, - "payload": "gatewayRoute" + "documentation":"

An object that represents the status of a virtual router.

" }, - "ListTagsForResourceOutput": { - "type": "structure", - "required": [ - "tags" - ], - "members": { - "nextToken": { - "shape": "String", - "documentation": "

The nextToken value to include in a future ListTagsForResource\n request. When the results of a ListTagsForResource request exceed\n limit, you can use this value to retrieve the next page of results. This\n value is null when there are no more results to return.

" + "VirtualRouterStatusCode":{ + "type":"string", + "enum":[ + "ACTIVE", + "INACTIVE", + "DELETED" + ] + }, + "VirtualServiceBackend":{ + "type":"structure", + "required":["virtualServiceName"], + "members":{ + "clientPolicy":{ + "shape":"ClientPolicy", + "documentation":"

A reference to an object that represents the client policy for a backend.

" }, - "tags": { - "shape": "TagList", - "documentation": "

The tags for the resource.

" + "virtualServiceName":{ + "shape":"ServiceName", + "documentation":"

The name of the virtual service that is acting as a virtual node backend.

" } }, - "documentation": "" + "documentation":"

An object that represents a virtual service backend for a virtual node.

" }, - "ServiceDiscovery": { - "type": "structure", - "members": { - "awsCloudMap": { - "shape": "AwsCloudMapServiceDiscovery", - "documentation": "

Specifies any AWS Cloud Map information for the virtual node.

" + "VirtualServiceData":{ + "type":"structure", + "required":[ + "meshName", + "metadata", + "spec", + "status", + "virtualServiceName" + ], + "members":{ + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the virtual service resides in.

" }, - "dns": { - "shape": "DnsServiceDiscovery", - "documentation": "

Specifies the DNS information for the virtual node.

" + "metadata":{"shape":"ResourceMetadata"}, + "spec":{ + "shape":"VirtualServiceSpec", + "documentation":"

The specifications of the virtual service.

" + }, + "status":{ + "shape":"VirtualServiceStatus", + "documentation":"

The current status of the virtual service.

" + }, + "virtualServiceName":{ + "shape":"ServiceName", + "documentation":"

The name of the virtual service.

" } }, - "documentation": "

An object that represents the service discovery information for a virtual node.

" + "documentation":"

An object that represents a virtual service returned by a describe operation.

" }, - "ListVirtualNodesOutput": { - "type": "structure", - "required": [ - "virtualNodes" - ], - "members": { - "nextToken": { - "shape": "String", - "documentation": "

The nextToken value to include in a future ListVirtualNodes\n request. When the results of a ListVirtualNodes request exceed\n limit, you can use this value to retrieve the next page of results. This\n value is null when there are no more results to return.

" + "VirtualServiceList":{ + "type":"list", + "member":{"shape":"VirtualServiceRef"} + }, + "VirtualServiceProvider":{ + "type":"structure", + "members":{ + "virtualNode":{ + "shape":"VirtualNodeServiceProvider", + "documentation":"

The virtual node associated with a virtual service.

" }, - "virtualNodes": { - "shape": "VirtualNodeList", - "documentation": "

The list of existing virtual nodes for the specified service mesh.

" + "virtualRouter":{ + "shape":"VirtualRouterServiceProvider", + "documentation":"

The virtual router associated with a virtual service.

" } }, - "documentation": "" + "documentation":"

An object that represents the provider for a virtual service.

", + "union":true }, - "UntagResourceInput": { - "type": "structure", - "required": [ - "resourceArn", - "tagKeys" + "VirtualServiceRef":{ + "type":"structure", + "required":[ + "arn", + "createdAt", + "lastUpdatedAt", + "meshName", + "meshOwner", + "resourceOwner", + "version", + "virtualServiceName" ], - "members": { - "resourceArn": { - "shape": "Arn", - "documentation": "

The Amazon Resource Name (ARN) of the resource to delete tags from.

", - "location": "querystring", - "locationName": "resourceArn" + "members":{ + "arn":{ + "shape":"Arn", + "documentation":"

The full Amazon Resource Name (ARN) for the virtual service.

" + }, + "createdAt":{ + "shape":"Timestamp", + "documentation":"

The Unix epoch timestamp in seconds for when the resource was created.

" + }, + "lastUpdatedAt":{ + "shape":"Timestamp", + "documentation":"

The Unix epoch timestamp in seconds for when the resource was last updated.

" }, - "tagKeys": { - "shape": "TagKeyList", - "documentation": "

The keys of the tags to be removed.

" + "meshName":{ + "shape":"ResourceName", + "documentation":"

The name of the service mesh that the virtual service resides in.

" + }, + "meshOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the service mesh owner. If the account ID is not your own, then it's the ID of the account that shared the mesh with your account. For more information about mesh sharing, see Working with shared meshes.

" + }, + "resourceOwner":{ + "shape":"AccountId", + "documentation":"

The AWS IAM account ID of the resource owner. If the account ID is not your own, then it's the ID of the mesh owner or of another account that the mesh is shared with. For more information about mesh sharing, see Working with shared meshes.

" + }, + "version":{ + "shape":"Long", + "documentation":"

The version of the resource. Resources are created at version 1, and this version is incremented each time that they're updated.

" + }, + "virtualServiceName":{ + "shape":"ServiceName", + "documentation":"

The name of the virtual service.

" } }, - "documentation": "" + "documentation":"

An object that represents a virtual service returned by a list operation.

" }, - "ListenerTlsAcmCertificate": { - "type": "structure", - "required": [ - "certificateArn" - ], - "members": { - "certificateArn": { - "shape": "Arn", - "documentation": "

The Amazon Resource Name (ARN) for the certificate. The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS).

" + "VirtualServiceSpec":{ + "type":"structure", + "members":{ + "provider":{ + "shape":"VirtualServiceProvider", + "documentation":"

The App Mesh object that is acting as the provider for a virtual service. You can specify a single virtual node or virtual router.

" } }, - "documentation": "

An object that represents an AWS Certicate Manager (ACM) certificate.

" + "documentation":"

An object that represents the specification of a virtual service.

" }, - "TagKey": { - "type": "string", - "min": 1, - "max": 128 + "VirtualServiceStatus":{ + "type":"structure", + "required":["status"], + "members":{ + "status":{ + "shape":"VirtualServiceStatusCode", + "documentation":"

The current status of the virtual service.

" + } + }, + "documentation":"

An object that represents the status of a virtual service.

" }, - "VirtualServiceStatusCode": { - "type": "string", - "enum": [ + "VirtualServiceStatusCode":{ + "type":"string", + "enum":[ "ACTIVE", - "DELETED", - "INACTIVE" + "INACTIVE", + "DELETED" ] + }, + "WeightedTarget":{ + "type":"structure", + "required":[ + "virtualNode", + "weight" + ], + "members":{ + "virtualNode":{ + "shape":"ResourceName", + "documentation":"

The virtual node to associate with the weighted target.

" + }, + "weight":{ + "shape":"PercentInt", + "documentation":"

The relative weight of the weighted target.

" + } + }, + "documentation":"

An object that represents a target and its relative weight. Traffic is distributed across targets according to their relative weight. For example, a weighted target with a relative weight of 50 receives five times as much traffic as one with a relative weight of 10. The total weight for all targets combined must be less than or equal to 100.

" + }, + "WeightedTargets":{ + "type":"list", + "member":{"shape":"WeightedTarget"}, + "max":10, + "min":1 } - } + }, + "documentation":"

AWS App Mesh is a service mesh based on the Envoy proxy that makes it easy to monitor and control microservices. App Mesh standardizes how your microservices communicate, giving you end-to-end visibility and helping to ensure high availability for your applications.

App Mesh gives you consistent visibility and network traffic controls for every microservice in an application. You can use App Mesh with AWS Fargate, Amazon ECS, Amazon EKS, Kubernetes on AWS, and Amazon EC2.

App Mesh supports microservice applications that use service discovery naming for their components. For more information about service discovery on Amazon ECS, see Service Discovery in the Amazon Elastic Container Service Developer Guide. Kubernetes kube-dns and coredns are supported. For more information, see DNS for Services and Pods in the Kubernetes documentation.

" } From 3d11ad9181ce8be2ee87935c8f43f7eb1ca95b06 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 5 Nov 2020 19:16:00 +0000 Subject: [PATCH 137/339] Amazon DynamoDB Update: This release adds a new ReplicaStatus INACCESSIBLE_ENCRYPTION_CREDENTIALS for the Table description, indicating when a key used to encrypt a regional replica table is not accessible. --- .changes/next-release/feature-AmazonDynamoDB-6ddb2e8.json | 6 ++++++ .../resources/codegen-resources/dynamodb/service-2.json | 5 +++-- 2 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AmazonDynamoDB-6ddb2e8.json diff --git a/.changes/next-release/feature-AmazonDynamoDB-6ddb2e8.json b/.changes/next-release/feature-AmazonDynamoDB-6ddb2e8.json new file mode 100644 index 000000000000..f2d1d2ab4002 --- /dev/null +++ b/.changes/next-release/feature-AmazonDynamoDB-6ddb2e8.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon DynamoDB", + "contributor": "", + "description": "This release adds a new ReplicaStatus INACCESSIBLE_ENCRYPTION_CREDENTIALS for the Table description, indicating when a key used to encrypt a regional replica table is not accessible." +} diff --git a/services/dynamodb/src/main/resources/codegen-resources/dynamodb/service-2.json b/services/dynamodb/src/main/resources/codegen-resources/dynamodb/service-2.json index 7fcd32ff28e8..cfaf34c7ecb0 100755 --- a/services/dynamodb/src/main/resources/codegen-resources/dynamodb/service-2.json +++ b/services/dynamodb/src/main/resources/codegen-resources/dynamodb/service-2.json @@ -3432,7 +3432,7 @@ }, "ReplicaStatus":{ "shape":"ReplicaStatus", - "documentation":"

The current state of the replica:

  • CREATING - The replica is being created.

  • UPDATING - The replica is being updated.

  • DELETING - The replica is being deleted.

  • ACTIVE - The replica is ready for use.

  • REGION_DISABLED - The replica is inaccessible because the AWS Region has been disabled.

    If the AWS Region remains inaccessible for more than 20 hours, DynamoDB will remove this replica from the replication group. The replica will not be deleted and replication will stop from and to this region.

" + "documentation":"

The current state of the replica:

  • CREATING - The replica is being created.

  • UPDATING - The replica is being updated.

  • DELETING - The replica is being deleted.

  • ACTIVE - The replica is ready for use.

  • REGION_DISABLED - The replica is inaccessible because the AWS Region has been disabled.

    If the AWS Region remains inaccessible for more than 20 hours, DynamoDB will remove this replica from the replication group. The replica will not be deleted and replication will stop from and to this region.

  • INACCESSIBLE_ENCRYPTION_CREDENTIALS - The AWS KMS key used to encrypt the table is inaccessible.

    If the AWS KMS key remains inaccessible for more than 20 hours, DynamoDB will remove this replica from the replication group. The replica will not be deleted and replication will stop from and to this region.

" }, "ReplicaStatusDescription":{ "shape":"ReplicaStatusDescription", @@ -3690,7 +3690,8 @@ "UPDATING", "DELETING", "ACTIVE", - "REGION_DISABLED" + "REGION_DISABLED", + "INACCESSIBLE_ENCRYPTION_CREDENTIALS" ] }, "ReplicaStatusDescription":{"type":"string"}, From b7f6ffb4c87b27f73d4cb49bae00c847f76ff4f3 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 5 Nov 2020 19:17:41 +0000 Subject: [PATCH 138/339] Updated endpoints.json. --- .../feature-AWSSDKforJavav2-bedacd4.json | 6 ++++ .../regions/internal/region/endpoints.json | 32 +++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json new file mode 100644 index 000000000000..ae3f84993e9e --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." +} diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json index 73c5450d329d..4d783373fa19 100644 --- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json +++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json @@ -1921,6 +1921,36 @@ "eu-west-1" : { }, "eu-west-2" : { }, "eu-west-3" : { }, + "fips-ca-central-1" : { + "credentialScope" : { + "region" : "ca-central-1" + }, + "hostname" : "ebs-fips.ca-central-1.amazonaws.com" + }, + "fips-us-east-1" : { + "credentialScope" : { + "region" : "us-east-1" + }, + "hostname" : "ebs-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2" : { + "credentialScope" : { + "region" : "us-east-2" + }, + "hostname" : "ebs-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1" : { + "credentialScope" : { + "region" : "us-west-1" + }, + "hostname" : "ebs-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2" : { + "credentialScope" : { + "region" : "us-west-2" + }, + "hostname" : "ebs-fips.us-west-2.amazonaws.com" + }, "me-south-1" : { }, "sa-east-1" : { }, "us-east-1" : { }, @@ -5999,7 +6029,9 @@ "endpoints" : { "ap-southeast-2" : { }, "ca-central-1" : { }, + "eu-central-1" : { }, "eu-west-1" : { }, + "eu-west-2" : { }, "us-east-1" : { }, "us-east-2" : { }, "us-west-2" : { } From 529adceb17797931a9a3730dc7ac9b4e0fae252a Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 5 Nov 2020 19:18:13 +0000 Subject: [PATCH 139/339] Release 2.15.22. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.22.json | 72 +++++++++++++++++++ .../feature-AWSAppMesh-2527170.json | 6 -- ...ture-AWSKendraFrontendService-e9be93d.json | 6 -- .../feature-AWSLambda-4f16ba2.json | 6 -- .../feature-AWSSDKforJavav2-bedacd4.json | 6 -- ...eature-AmazonCloudWatchEvents-3997df6.json | 6 -- .../feature-AmazonDynamoDB-6ddb2e8.json | 6 -- ...ure-AmazonElasticComputeCloud-cebf009.json | 6 -- ...re-AmazonElasticsearchService-18119d0.json | 6 -- .../feature-AmazonEventBridge-6ae9224.json | 6 -- .../feature-AmazonFraudDetector-32067eb.json | 6 -- ...azonRelationalDatabaseService-4b2eaee.json | 6 -- CHANGELOG.md | 45 ++++++++++++ README.md | 8 +-- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- .../serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 294 files changed, 401 insertions(+), 350 deletions(-) create mode 100644 .changes/2.15.22.json delete mode 100644 .changes/next-release/feature-AWSAppMesh-2527170.json delete mode 100644 .changes/next-release/feature-AWSKendraFrontendService-e9be93d.json delete mode 100644 .changes/next-release/feature-AWSLambda-4f16ba2.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json delete mode 100644 .changes/next-release/feature-AmazonCloudWatchEvents-3997df6.json delete mode 100644 .changes/next-release/feature-AmazonDynamoDB-6ddb2e8.json delete mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-cebf009.json delete mode 100644 .changes/next-release/feature-AmazonElasticsearchService-18119d0.json delete mode 100644 .changes/next-release/feature-AmazonEventBridge-6ae9224.json delete mode 100644 .changes/next-release/feature-AmazonFraudDetector-32067eb.json delete mode 100644 .changes/next-release/feature-AmazonRelationalDatabaseService-4b2eaee.json diff --git a/.changes/2.15.22.json b/.changes/2.15.22.json new file mode 100644 index 000000000000..ca04f429f1d0 --- /dev/null +++ b/.changes/2.15.22.json @@ -0,0 +1,72 @@ +{ + "version": "2.15.22", + "date": "2020-11-05", + "entries": [ + { + "type": "feature", + "category": "Amazon Fraud Detector", + "contributor": "", + "description": "Added support for deleting resources like Variables, ExternalModels, Outcomes, Models, ModelVersions, Labels, EventTypes and EntityTypes. Updated DeleteEvent operation to catch missing exceptions." + }, + { + "type": "feature", + "category": "AWS App Mesh", + "contributor": "", + "description": "This release adds circuit breaking capabilities to your mesh with connection pooling and outlier detection support." + }, + { + "type": "feature", + "category": "Amazon DynamoDB", + "contributor": "", + "description": "This release adds a new ReplicaStatus INACCESSIBLE_ENCRYPTION_CREDENTIALS for the Table description, indicating when a key used to encrypt a regional replica table is not accessible." + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." + }, + { + "type": "feature", + "category": "Amazon EventBridge", + "contributor": "", + "description": "With this release, customers can now reprocess past events by storing the events published on event bus in an encrypted archive." + }, + { + "type": "feature", + "category": "Amazon CloudWatch Events", + "contributor": "", + "description": "With this release, customers can now reprocess past events by storing the events published on event bus in an encrypted archive." + }, + { + "type": "feature", + "category": "Amazon Elasticsearch Service", + "contributor": "", + "description": "Amazon Elasticsearch Service now provides the ability to define a custom endpoint for your domain and link an SSL certificate from ACM, making it easier to refer to Kibana and the domain endpoint." + }, + { + "type": "feature", + "category": "Amazon Relational Database Service", + "contributor": "", + "description": "Supports a new parameter to set the max allocated storage in gigabytes for the CreateDBInstanceReadReplica API." + }, + { + "type": "feature", + "category": "AWS Lambda", + "contributor": "", + "description": "Support Amazon MQ as an Event Source." + }, + { + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "Documentation updates for EC2." + }, + { + "type": "feature", + "category": "AWSKendraFrontendService", + "contributor": "", + "description": "Amazon Kendra now supports providing user context in your query requests, Tokens can be JSON or JWT format. This release also introduces support for Confluence cloud datasources." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSAppMesh-2527170.json b/.changes/next-release/feature-AWSAppMesh-2527170.json deleted file mode 100644 index 6ac1297a3301..000000000000 --- a/.changes/next-release/feature-AWSAppMesh-2527170.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS App Mesh", - "contributor": "", - "description": "This release adds circuit breaking capabilities to your mesh with connection pooling and outlier detection support." -} diff --git a/.changes/next-release/feature-AWSKendraFrontendService-e9be93d.json b/.changes/next-release/feature-AWSKendraFrontendService-e9be93d.json deleted file mode 100644 index 54c1ee1fda75..000000000000 --- a/.changes/next-release/feature-AWSKendraFrontendService-e9be93d.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWSKendraFrontendService", - "contributor": "", - "description": "Amazon Kendra now supports providing user context in your query requests, Tokens can be JSON or JWT format. This release also introduces support for Confluence cloud datasources." -} diff --git a/.changes/next-release/feature-AWSLambda-4f16ba2.json b/.changes/next-release/feature-AWSLambda-4f16ba2.json deleted file mode 100644 index d64ad7763765..000000000000 --- a/.changes/next-release/feature-AWSLambda-4f16ba2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Lambda", - "contributor": "", - "description": "Support Amazon MQ as an Event Source." -} diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json deleted file mode 100644 index ae3f84993e9e..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS SDK for Java v2", - "contributor": "", - "description": "Updated service endpoint metadata." -} diff --git a/.changes/next-release/feature-AmazonCloudWatchEvents-3997df6.json b/.changes/next-release/feature-AmazonCloudWatchEvents-3997df6.json deleted file mode 100644 index 325a0df72589..000000000000 --- a/.changes/next-release/feature-AmazonCloudWatchEvents-3997df6.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon CloudWatch Events", - "contributor": "", - "description": "With this release, customers can now reprocess past events by storing the events published on event bus in an encrypted archive." -} diff --git a/.changes/next-release/feature-AmazonDynamoDB-6ddb2e8.json b/.changes/next-release/feature-AmazonDynamoDB-6ddb2e8.json deleted file mode 100644 index f2d1d2ab4002..000000000000 --- a/.changes/next-release/feature-AmazonDynamoDB-6ddb2e8.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon DynamoDB", - "contributor": "", - "description": "This release adds a new ReplicaStatus INACCESSIBLE_ENCRYPTION_CREDENTIALS for the Table description, indicating when a key used to encrypt a regional replica table is not accessible." -} diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-cebf009.json b/.changes/next-release/feature-AmazonElasticComputeCloud-cebf009.json deleted file mode 100644 index ff49cbefae6b..000000000000 --- a/.changes/next-release/feature-AmazonElasticComputeCloud-cebf009.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Elastic Compute Cloud", - "contributor": "", - "description": "Documentation updates for EC2." -} diff --git a/.changes/next-release/feature-AmazonElasticsearchService-18119d0.json b/.changes/next-release/feature-AmazonElasticsearchService-18119d0.json deleted file mode 100644 index 79a3bdb2ee73..000000000000 --- a/.changes/next-release/feature-AmazonElasticsearchService-18119d0.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Elasticsearch Service", - "contributor": "", - "description": "Amazon Elasticsearch Service now provides the ability to define a custom endpoint for your domain and link an SSL certificate from ACM, making it easier to refer to Kibana and the domain endpoint." -} diff --git a/.changes/next-release/feature-AmazonEventBridge-6ae9224.json b/.changes/next-release/feature-AmazonEventBridge-6ae9224.json deleted file mode 100644 index cd96235622f8..000000000000 --- a/.changes/next-release/feature-AmazonEventBridge-6ae9224.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon EventBridge", - "contributor": "", - "description": "With this release, customers can now reprocess past events by storing the events published on event bus in an encrypted archive." -} diff --git a/.changes/next-release/feature-AmazonFraudDetector-32067eb.json b/.changes/next-release/feature-AmazonFraudDetector-32067eb.json deleted file mode 100644 index 4f7ecd280322..000000000000 --- a/.changes/next-release/feature-AmazonFraudDetector-32067eb.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Fraud Detector", - "contributor": "", - "description": "Added support for deleting resources like Variables, ExternalModels, Outcomes, Models, ModelVersions, Labels, EventTypes and EntityTypes. Updated DeleteEvent operation to catch missing exceptions." -} diff --git a/.changes/next-release/feature-AmazonRelationalDatabaseService-4b2eaee.json b/.changes/next-release/feature-AmazonRelationalDatabaseService-4b2eaee.json deleted file mode 100644 index f8e1889320f3..000000000000 --- a/.changes/next-release/feature-AmazonRelationalDatabaseService-4b2eaee.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Relational Database Service", - "contributor": "", - "description": "Supports a new parameter to set the max allocated storage in gigabytes for the CreateDBInstanceReadReplica API." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index a1c4f4dc5606..c66c8109b576 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,48 @@ +# __2.15.22__ __2020-11-05__ +## __AWS App Mesh__ + - ### Features + - This release adds circuit breaking capabilities to your mesh with connection pooling and outlier detection support. + +## __AWS Lambda__ + - ### Features + - Support Amazon MQ as an Event Source. + +## __AWS SDK for Java v2__ + - ### Features + - Updated service endpoint metadata. + +## __AWSKendraFrontendService__ + - ### Features + - Amazon Kendra now supports providing user context in your query requests, Tokens can be JSON or JWT format. This release also introduces support for Confluence cloud datasources. + +## __Amazon CloudWatch Events__ + - ### Features + - With this release, customers can now reprocess past events by storing the events published on event bus in an encrypted archive. + +## __Amazon DynamoDB__ + - ### Features + - This release adds a new ReplicaStatus INACCESSIBLE_ENCRYPTION_CREDENTIALS for the Table description, indicating when a key used to encrypt a regional replica table is not accessible. + +## __Amazon Elastic Compute Cloud__ + - ### Features + - Documentation updates for EC2. + +## __Amazon Elasticsearch Service__ + - ### Features + - Amazon Elasticsearch Service now provides the ability to define a custom endpoint for your domain and link an SSL certificate from ACM, making it easier to refer to Kibana and the domain endpoint. + +## __Amazon EventBridge__ + - ### Features + - With this release, customers can now reprocess past events by storing the events published on event bus in an encrypted archive. + +## __Amazon Fraud Detector__ + - ### Features + - Added support for deleting resources like Variables, ExternalModels, Outcomes, Models, ModelVersions, Labels, EventTypes and EntityTypes. Updated DeleteEvent operation to catch missing exceptions. + +## __Amazon Relational Database Service__ + - ### Features + - Supports a new parameter to set the max allocated storage in gigabytes for the CreateDBInstanceReadReplica API. + # __2.15.21__ __2020-11-04__ ## __AWS IoT__ - ### Features diff --git a/README.md b/README.md index c1a96981ea5c..f37804af4ff4 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.21 + 2.15.22 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.21 + 2.15.22 software.amazon.awssdk s3 - 2.15.21 + 2.15.22 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.21 + 2.15.22 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 288d11ff5da3..5e9a3ef85b33 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 9419a74984fb..1a85f0fd0039 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index fed90b6ce45c..1818384774a5 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.15.22-SNAPSHOT + 2.15.22 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 126ae488b517..8089b42eb1e3 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index ab729fd44b90..9406f8051bf8 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.22-SNAPSHOT + 2.15.22 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 97733287df9b..3a9f4249769b 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.22-SNAPSHOT + 2.15.22 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 4adcf354dbfe..f9e6817af2b5 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.15.22-SNAPSHOT + 2.15.22 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 13ca35fb0b56..a61d5ba7740b 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.22-SNAPSHOT + 2.15.22 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 6fc83d37ba25..df7c67168fd8 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.15.22-SNAPSHOT + 2.15.22 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 12ee7da543ea..9df169ac4fe1 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.22-SNAPSHOT + 2.15.22 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index b33fdf69192e..ce2ec6e55b59 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 21f708365643..931e52397469 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index c1f4f50666ac..ea96b2f2717e 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.22-SNAPSHOT + 2.15.22 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index d5c39ca2639e..5be143d2320a 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.22-SNAPSHOT + 2.15.22 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 8ad3d5659122..ac9f51c13d3d 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index b37242247bb0..6bef35edc4ba 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 6ed110a223b7..ebbf95ffd28b 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.22-SNAPSHOT + 2.15.22 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index b30dba0103fc..3fa716af69a7 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.15.22-SNAPSHOT + 2.15.22 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index d9ced8d0bf71..5b18f3bc7ce9 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index cf9610c4a50f..db85f85e1e2a 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.15.22-SNAPSHOT + 2.15.22 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 2c3b9f44b1c0..c9526a373bf1 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.15.22-SNAPSHOT + 2.15.22 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index e4975d67b6be..57b68a9fb7d7 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.15.22-SNAPSHOT + 2.15.22 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 7e882bd0080b..199f6aaf0186 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 787515e737a2..cfbea158ac7f 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index d77ef295c8c1..64214550ab05 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.22-SNAPSHOT + 2.15.22 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 3476e45d13a1..9d691a2f726b 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.22-SNAPSHOT + 2.15.22 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index c10643ffb29f..c33d7b37a96b 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.15.22-SNAPSHOT + 2.15.22 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 ee9bb1d6cb3c..c916259ac6fc 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.15.22-SNAPSHOT + 2.15.22 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index af4085075139..1675b7f53b6d 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.15.22-SNAPSHOT + 2.15.22 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 29bfd5bf98f2..b4167a750223 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.15.22-SNAPSHOT + 2.15.22 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index af971daa1202..e79c24a872b0 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index f5d2ef506bea..4d27b2ebc01d 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.15.22-SNAPSHOT + 2.15.22 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index abe2daeaa434..112ee534c11b 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.15.22-SNAPSHOT + 2.15.22 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index ea12a4c2ce87..3e26ac7d5e04 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.22-SNAPSHOT + 2.15.22 metric-publishers diff --git a/pom.xml b/pom.xml index b488d4617bd8..d0302122d107 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.22-SNAPSHOT + 2.15.22 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 6374adb46acb..8669ea33c82f 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.22-SNAPSHOT + 2.15.22 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index e592f296e28e..0ee0ea10c782 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.15.22-SNAPSHOT + 2.15.22 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index b8b2878df9ed..1ec9bdea2cd6 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.22-SNAPSHOT + 2.15.22 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 25609e06bd81..e49eff4a7180 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 7a8148b8805e..2bc27a76f2be 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index e55393817dfe..5baf9610414f 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 6e8c1cfbd9c5..c8e8e94b9842 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 613783b4b190..a602e9a252bd 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index fdbaec54fee4..08c8809e3ef0 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index f84a73e67c30..7a0ce4e40f9a 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index b123db01e925..ceb3b6a6b3cc 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index e6eccee713d8..3a8c77ee7bcf 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 6f549cd06c55..e66e8b050dcf 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 5c238f0ee3ec..4aee047e1f95 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 33e7c4b16a7d..d407102e1b19 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 0009e1a05487..64de3352c7aa 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 0a478786e3a2..c8a513461c87 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index dfd59e16d8ae..37b04e33475a 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 05755b27e18f..3ab7e65819a0 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 0d10657cac55..3e420502b7bf 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 9751e04fdb98..f2c6768f95fc 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index e5798defb8d9..a5936ba067ef 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index ed4c5b1e6e01..9cc38efdf5f2 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 69e593b2944e..d34106406451 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 9bb19e19e711..34d94ec22881 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 7d5dc6fe9011..c35a2d1b620d 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 83afbf8b250f..126d64bbb6d4 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 37567d9b9b2f..ee7dd26e5a24 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index c26ffb97f28d..8ddd3f59b0a7 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index b759c849e831..e410aafacc0a 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 1ade49c268dc..0a9db8c0861e 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index dbdb9b2f0fde..2a9762af61ec 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index c7241d3df5c8..4ca8ffccbd2a 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 545f43fcc70a..b810a9b16d83 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index f43716106d41..54784c34c8dd 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 093dc8e8435a..1de6f8c5706a 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index cac178e1adfa..2d39de344764 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index eacb26ec54b9..0b69c4af8aa2 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 62ee9f5ccc43..af0be4c3f738 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 9cf6df7e09e2..1d899b27683d 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index cac5b4725f4b..928f93b8c25e 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 20f6ff2cdc03..5d01105af0c4 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 7c671779ecad..0beee47ef53d 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 7bf54809e115..ac8c764bfaf6 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index a84caebd6475..9d6c5f722267 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 66fca0245391..0871b793cf85 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 54b3ba219720..40aaedc97d89 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 5848cd91a41c..b1920f96bf6c 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 6a6fb0021958..f94d1066ce38 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 438aaf89acfb..995bd1923486 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index b036ad2ebab4..929d978e511d 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 0a24f7c63ab0..c420dc327e11 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 8a142c4d7157..45fd99f33c3f 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 62ed89fd5584..39e06973f56e 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index c191ebb1b184..ceff20c916c4 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 604a630066c1..624ed7eba814 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 6c6cd3b0dbce..084a8d3affc0 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 573a62c05351..8f9c5bc91012 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 816ca46fc9e3..186106af4d45 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 59730c7eae1c..076765052ec2 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index abd7a213ae29..62918017374a 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 22b04995540c..be415e8a5d16 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 8784db1a99a9..406b64beaaf2 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 4bb40f6f0c73..5567773a3e41 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 0a9cb49befd7..330ef1605b18 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index d44a58e4c160..fa47bf8e0380 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index b944cdb3d6db..fbe78e8f1585 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 8703e24b6e1b..babbb2619f0a 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 8c2ba962db85..54fecf010d2e 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 00bb7e891883..86ef153cbee3 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 2492aee25bb0..75103f541414 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index ae508c1baf0d..a7216dcfdb12 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 70c18ac6318d..1049abe327b2 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index ebe53f186f14..e8a37e4f36ea 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index dbf9b9d0d5e9..be6d919c4d5e 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index ceb243f3d5c7..1d41c8de1474 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 2b4e6eb93d19..14b84462f6cc 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 1cb6532dda73..f2f7f0c6fd34 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 9773fcfa42c2..445068287f5f 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index a87fb0e00239..405a5b96c721 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 202b3f45a327..280dabfe05a8 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 6b4b88d595b2..edb0b84470f3 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 95882fd5930a..ceb0acd4a53d 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index cd8b6e97e70a..5ed18208b042 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index e0355e78e075..234ccf336eb0 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index be224e1c0291..ffc4fdcd9ce7 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 348eb1ade006..0bf522988ccf 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 8223fe6df939..e9688e68b023 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 238368bce26c..1ea56b14c101 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index f10367ea1fb2..0b5c510315dd 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 21fee6706e81..c04f07662e47 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 7e2c7f0d30a5..9fb65a40ee3a 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 4403aadd4f80..e2cf4b88b784 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index cb0a05437dae..4f42afe1d888 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 869e1657b5c3..6c3699c9ff52 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 86de5a7561ff..173a51a7c092 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index d60b6b48bb67..c4c1e03c9d6a 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 9b5956bbf42f..3927510fac97 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 64b5b805983d..01d32bdc2128 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index ee1fbd2c22c5..caeaa19f360c 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 4201b4de5258..0c3e5b086497 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index bb968804ab1b..203389379a9b 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 7766fda9dd9b..7be74c0f096d 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index d81ad8bd2491..d603c1bb823d 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index e66d8d00c633..81e2837036a5 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 3226e56eb572..9237abba3d7c 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 1d95fc859c0e..a6a51fdeabfc 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index ff54b137aade..9a91a05f923e 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 6bce6a6c7486..11f97cec7c88 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 45c26e9da732..d25e36c644e9 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index a7783e322fb9..5ac8ca0ecf18 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 28ecb535c45e..846257332872 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index f3559204385c..41c6ec3f70c7 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 2044734be98a..3956df57f147 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 4c5c41fee401..301ebf8c99fd 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 67031fb6d96a..45954a7d1393 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 7cb8cd5d1966..277fe0a81605 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 2f33b90fe66e..f3cc411f2db4 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index e42d63aab9a2..ebf462883d30 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index db090297061b..5a697d6d5ff5 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index a367fadfc3c3..ad29048541b9 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 6e93203c1d74..e5fec2f2183a 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 9608fde6e7b4..061bdf984be5 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 3590dc86a4ac..29e6c9ae2366 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index edfe5aa082f2..8aa0da19c47d 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index fe2e2bc285c4..a392249fcd69 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index bdb849899b57..5ee1f253079b 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index ed6b8eefdb6f..4a8ab4fc88e4 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 31e78e9f32df..e808e4da265f 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 5eb9bf1a1116..51e479b758ea 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index f32eca45a637..88e84f9b18f3 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 66f1a4487e24..55b57635dd8a 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 6d24ee8de129..da5a68093c58 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 9b98d8f90faf..a43b57038a12 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 69b5cf22e9d9..978850989b55 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index dc6de2f045cc..8ed5fc2b91aa 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 35c51495d5e2..719e1194a8dc 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 53e19445f196..9ecc635795f2 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index b030bbed85b3..3e1bc31e3306 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index a4c1926a92c8..3db1ea8b1952 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index b3a9e51b41ed..6f35cb93aa92 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 86e1006c62cb..99faa9927aef 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index efb2fea4db22..33ee433099c4 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 75d9a9a5a78d..e1b2a0ff8497 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 9638486336dc..4d67abe2fb2f 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index e9cce34638f9..09db436e89c1 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 86a43cce6d75..19e1c8c257ea 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 6adca09032fb..272912485652 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 98eb183c3d8e..4625af5bcd63 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 1bb487716665..c43bba6f0b1d 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 278edd9e5195..9ca1a9d8b8da 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index f070171d3090..63118a5a5d31 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 9311633a3acc..2ffac5bbd5b2 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index fbd1f91926e0..93ed385cf01c 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 6c404911cba5..107fa2099d08 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 003c4357bfb4..8c59b60fed05 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index a58e5886b455..30782905ca6e 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index f16a1d3956af..84acdb5f4821 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index febf1b4e2003..010bfa74beca 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index fe1d3de1becb..cd817021cd30 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 689f224b8896..6905b64c2f54 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index cb8dd7de6cdd..1a139de36e9d 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index de38a0b17822..23ea77ddc7b4 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 7d7aef7086da..4acc79c433ad 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 793c7d4e2e07..128a09007360 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 293c0def4303..53843fc9bc9d 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 656d67a3643d..6c5c995931b8 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 3468faa1d4ec..60be83eb86c1 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 6a4c53865647..4d62ae96b3c7 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 88b648dcb268..0fe2066f4ff7 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index e4ef13cd21f4..de226c924708 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.22-SNAPSHOT + 2.15.22 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 3132017a0933..1acd7c11d88b 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 39a1b01f07c7..2de8be0d0fe9 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index f6ff6b3c64c9..02747c87eb4b 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 61963e4517e7..702d315b088f 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index bd679cfe20ad..e319717684d4 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index aaec3ddd00dc..c9e0da7b83a2 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index b846592d96a2..978a415ca780 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index c25e09382334..ea7279bbc32b 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index fb0f5b34cc93..efb063b3a268 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index ba1363efc6e5..fdbeec988346 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 31061512f89e..4475825917ca 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 6435862e41a6..8dc14b022647 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index d4490cfc17de..cbd23bf50b46 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 9eaa2516ae2b..6b1b43107644 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index b2ad16b82ed5..f8ba4d05daa8 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 0d92b12ed67d..12c2188201a5 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 5f2916fc8f7a..adef6e6ebca4 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index a9d85fb38541..2a1e23ddac6c 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 4158299b4c43..ca5ade498014 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index a16163aef787..daba3a779c12 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 27a2aa24a82f..cdfecae65b18 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index b5186f2df222..d02c01470924 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 33e5b210deb2..8c7cc6181802 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 66c57d7dc14c..44335e3a8037 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index b291ac1b8f04..2a6e12a82f65 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index d5872959e559..abff0a155e81 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 178a97d43ea7..9a05e99d8903 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index b8ecd5f7a7ba..4a58d023c8c2 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 5914f5ed2a14..08820fc61086 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index c4df5f04956f..c5bece9f358c 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 5f60a7897662..09a0ac94be24 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 4b1c9c02d635..597427319312 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index a5a27725e87c..d7230b45923e 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index d2694523dc35..73d5d8f042cf 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 34c2fc09db64..665c8299bbeb 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 82df28408a24..9c1ca36629b1 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index bef32f41c060..d19a407f5a58 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 10b7270be0a3..a0f718e7ccd8 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index b35c789db4fb..b92533624c43 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 9cbb1f4dc694..1e46122f141a 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 3b791c939125..876ea3497ad2 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 7cd92dd4dcc7..59c58cdd7b65 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 85793356c864..b717c608a0da 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 70999e561fee..5a06d81c3e2a 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 5063669a606d..2ff988379681 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 6d616ee07d52..c5a9682acbd8 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 1def477e2bdc..7b38a432006e 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index dc943737a051..59d2adb756f7 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 008d90145745..eef2d1a733a6 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 9c112cd076cf..02c857b9c85f 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 0b08e5fecbdd..dc1759b38527 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 1002ebde2deb..7d72903adbe6 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 3271c66f5b7b..47e71ba366bb 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index abc2e3f5edb1..4e60f3eff14f 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 500b3f3672f6..e2f6fb7deb94 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 02b7ed8a6c65..3dba10d78edf 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 383dba994983..a0510de18881 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index b2aa5e0ef042..d8f78464ac0e 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index f93adc101c97..5fcc5d85599a 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 07f2deca1e19..4cb6298c0ea3 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index c78cb3e53682..9d220c90bb2a 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index f8328d4f4bc2..9b4349d87f69 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 70043c0ed5c3..c10cf19c00a1 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22-SNAPSHOT + 2.15.22 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index bd05bdb7f983..1de99ed60bac 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.15.22-SNAPSHOT + 2.15.22 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index faf8919a82d2..29e1b20f6c5b 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.15.22-SNAPSHOT + 2.15.22 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 62d6bd65ce43..0c8ca328d613 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.15.22-SNAPSHOT + 2.15.22 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 985b00135525..3bcd7bb88c90 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.15.22-SNAPSHOT + 2.15.22 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 139f1b99c0d4..5cfa9e1b46a7 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.15.22-SNAPSHOT + 2.15.22 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 863c14927a8c..f4c41b0b492c 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.22-SNAPSHOT + 2.15.22 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index aa77cf02dc2d..9f949ae317fd 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.15.22-SNAPSHOT + 2.15.22 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index f5c4ce31f4fb..41689698d2f7 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.15.22-SNAPSHOT + 2.15.22 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 238e2dc2bf81..9e67bade68fd 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.15.22-SNAPSHOT + 2.15.22 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 57107d2e1218..0b0e8c9dcf6a 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.15.22-SNAPSHOT + 2.15.22 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 48ad48870ecb..1bfb16b61a73 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.22-SNAPSHOT + 2.15.22 4.0.0 From c5632b13e0dc0e62a048082855bb822678df9851 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 5 Nov 2020 19:46:42 +0000 Subject: [PATCH 140/339] Update to next snapshot version: 2.15.23-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 280 files changed, 280 insertions(+), 280 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 5e9a3ef85b33..15a17dfb0216 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 1a85f0fd0039..bf3e2ce96490 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 1818384774a5..ec10f834769f 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.15.22 + 2.15.23-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 8089b42eb1e3..7df8e7e401e3 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 9406f8051bf8..78e69e09488c 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.22 + 2.15.23-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 3a9f4249769b..099edf19b0af 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.22 + 2.15.23-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index f9e6817af2b5..cfbb5b469a83 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.15.22 + 2.15.23-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index a61d5ba7740b..b7fb955bac24 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.22 + 2.15.23-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index df7c67168fd8..1d7f38fe4f17 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.15.22 + 2.15.23-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 9df169ac4fe1..80076728bd9f 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.22 + 2.15.23-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index ce2ec6e55b59..ea469e40cc7e 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 931e52397469..dadbc99d414a 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index ea96b2f2717e..75d2baa45d8c 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.22 + 2.15.23-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 5be143d2320a..72412ac94651 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.22 + 2.15.23-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index ac9f51c13d3d..80f63ad1d20c 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 6bef35edc4ba..8bb4f91963bc 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index ebbf95ffd28b..1a4a82a82811 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.22 + 2.15.23-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 3fa716af69a7..c27435060eab 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.15.22 + 2.15.23-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 5b18f3bc7ce9..2cdf08c6d218 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index db85f85e1e2a..622684db1d04 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.15.22 + 2.15.23-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index c9526a373bf1..6cbe94f6536b 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.15.22 + 2.15.23-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 57b68a9fb7d7..8ad53e0f9c3b 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.15.22 + 2.15.23-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 199f6aaf0186..9f0c79cdc119 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index cfbea158ac7f..9015d5910799 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 64214550ab05..8bc568a0c678 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.22 + 2.15.23-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 9d691a2f726b..245365087e1a 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.22 + 2.15.23-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index c33d7b37a96b..257a5308c775 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.15.22 + 2.15.23-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index c916259ac6fc..fbc3edf5113e 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.15.22 + 2.15.23-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 1675b7f53b6d..20905638fa0b 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.15.22 + 2.15.23-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index b4167a750223..ed2c0e1da0b5 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.15.22 + 2.15.23-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index e79c24a872b0..69efa460599c 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 4d27b2ebc01d..041487aac7b8 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.15.22 + 2.15.23-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 112ee534c11b..c539dc8e7140 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.15.22 + 2.15.23-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 3e26ac7d5e04..ad00b2287c1e 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.22 + 2.15.23-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index d0302122d107..afa661c1aa4b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.22 + 2.15.23-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 8669ea33c82f..3e6e75d25af9 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.22 + 2.15.23-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 0ee0ea10c782..d52ea8519434 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.15.22 + 2.15.23-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 1ec9bdea2cd6..b189a976d4a7 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.22 + 2.15.23-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index e49eff4a7180..277f0737162d 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 2bc27a76f2be..b771078ece1c 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 5baf9610414f..42a8b365efb9 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index c8e8e94b9842..6f01e4a333c4 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index a602e9a252bd..f7001d1a85ce 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 08c8809e3ef0..7822d24aeb7b 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 7a0ce4e40f9a..e1b02f983a92 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index ceb3b6a6b3cc..3ce68259ceaf 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 3a8c77ee7bcf..fe009ab53c02 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index e66e8b050dcf..c41bf37f571d 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 4aee047e1f95..6b924625964e 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index d407102e1b19..0ff580eabc43 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 64de3352c7aa..362579e04e5b 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index c8a513461c87..8a6559fba51f 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 37b04e33475a..70d34c12ba78 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 3ab7e65819a0..d11a464ba52b 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 3e420502b7bf..c8fb08aca8b8 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index f2c6768f95fc..429589b72cfe 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index a5936ba067ef..32b62e6921aa 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 9cc38efdf5f2..3dc632cd529c 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index d34106406451..29ea4add5a9c 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 34d94ec22881..468757d4fe05 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index c35a2d1b620d..b340bd1f5db8 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 126d64bbb6d4..aeca5081a003 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index ee7dd26e5a24..303d4fd84a02 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 8ddd3f59b0a7..947e5177f9a1 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index e410aafacc0a..f069b7e45de5 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 0a9db8c0861e..439a71996c36 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 2a9762af61ec..a10a6de8a1cc 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 4ca8ffccbd2a..e372939c02a2 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index b810a9b16d83..665586f0382f 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 54784c34c8dd..8266ba89d979 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 1de6f8c5706a..c5d884847d64 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 2d39de344764..c83a0e6fd0de 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 0b69c4af8aa2..c0a5c6171505 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index af0be4c3f738..f631f20b758c 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 1d899b27683d..59d1947afd99 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 928f93b8c25e..1fa08a694c46 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 5d01105af0c4..c529b3d5d1ca 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 0beee47ef53d..f3ef0f559171 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index ac8c764bfaf6..e51a6112b5fc 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 9d6c5f722267..e0e76696bbfe 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 0871b793cf85..80d85c094171 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 40aaedc97d89..1936dfbe84fc 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index b1920f96bf6c..d621b290cf83 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index f94d1066ce38..6bef78992a86 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 995bd1923486..d7a6ddd91bf3 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 929d978e511d..94370f6478eb 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index c420dc327e11..6978996cd50a 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 45fd99f33c3f..d4c02aadf3a7 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 39e06973f56e..ebb1f580875b 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index ceff20c916c4..4ad4da2f912b 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 624ed7eba814..3a4ec05c2054 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 084a8d3affc0..e3f9ded717a3 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 8f9c5bc91012..3a69f112b41e 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 186106af4d45..42b5caa7f5d0 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 076765052ec2..600dc6ce7382 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 62918017374a..17cde63cd894 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index be415e8a5d16..7e3cc7d6f863 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 406b64beaaf2..ee71256e4437 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 5567773a3e41..8ccf68c6a03e 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 330ef1605b18..2ffbfeaf30f6 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index fa47bf8e0380..fc6ec7f2fcb8 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index fbe78e8f1585..95d89458c708 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index babbb2619f0a..b7dd6f91c28b 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 54fecf010d2e..e6e66b2fd1d8 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 86ef153cbee3..e6f186704d38 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 75103f541414..0594d5276ba0 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index a7216dcfdb12..6e6a851278f4 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 1049abe327b2..c1b18cb8e9a7 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index e8a37e4f36ea..424db5fc8090 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index be6d919c4d5e..7407861fa88e 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 1d41c8de1474..17ce511e1c36 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 14b84462f6cc..af73d62eacbd 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index f2f7f0c6fd34..34b515585caf 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 445068287f5f..34dec5fc1773 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 405a5b96c721..268f294bd6a6 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 280dabfe05a8..8471a2aaf33e 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index edb0b84470f3..362e65809781 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index ceb0acd4a53d..0960d4e300ee 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 5ed18208b042..24ea41e344df 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 234ccf336eb0..e388198fc60f 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index ffc4fdcd9ce7..6fc6a4b1b32e 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 0bf522988ccf..9d9e657f4bb7 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index e9688e68b023..17ec0e2ddf03 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 1ea56b14c101..a7d67eb7f63b 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 0b5c510315dd..fa307d2a49af 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index c04f07662e47..08db3bdf42cd 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 9fb65a40ee3a..08b401785b32 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index e2cf4b88b784..6b29bce18892 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 4f42afe1d888..ef5164273bb9 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 6c3699c9ff52..f48817283e02 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 173a51a7c092..c2f0b990d67f 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index c4c1e03c9d6a..89ac682ee98d 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 3927510fac97..a4615ebf3784 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 01d32bdc2128..f702a7dc71e5 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index caeaa19f360c..8d480d26b511 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 0c3e5b086497..abfe68b68562 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 203389379a9b..6d367b79f04e 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 7be74c0f096d..9ad683d03ce1 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index d603c1bb823d..f30e58235d90 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 81e2837036a5..fdaba7333199 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 9237abba3d7c..011439f4915d 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index a6a51fdeabfc..cee77599960d 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 9a91a05f923e..5c0cfe6ed599 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 11f97cec7c88..f13f817b5358 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index d25e36c644e9..032e0dd20c4e 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 5ac8ca0ecf18..413be8164d91 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 846257332872..d3417969f404 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 41c6ec3f70c7..b1884bfc1b9a 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 3956df57f147..5b0d3e71ea15 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 301ebf8c99fd..8fe8e0d1022f 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 45954a7d1393..158d22afe396 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 277fe0a81605..ff4ec40727da 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index f3cc411f2db4..4d50efaeae22 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index ebf462883d30..8eb20de9de68 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 5a697d6d5ff5..d84104e7c3d0 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index ad29048541b9..0626b6406664 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index e5fec2f2183a..106b6130d9b2 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 061bdf984be5..5cafb5ba81fb 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 29e6c9ae2366..51df37703a24 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 8aa0da19c47d..6a09f41df489 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index a392249fcd69..2390e2a0d161 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 5ee1f253079b..a50b90a51ddd 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 4a8ab4fc88e4..c9060bb6fc93 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index e808e4da265f..889f6b2a90e0 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 51e479b758ea..7116f3f95c2a 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 88e84f9b18f3..209242e64a86 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 55b57635dd8a..664ebdd0ea75 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index da5a68093c58..ee40324024f0 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index a43b57038a12..e6967c3cbcfe 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 978850989b55..5c6a7baca85b 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 8ed5fc2b91aa..fa957a77175e 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 719e1194a8dc..94e66cda0af3 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 9ecc635795f2..151903156355 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 3e1bc31e3306..272ad8fb8c5e 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 3db1ea8b1952..7fe68d5e7ea1 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 6f35cb93aa92..f773c2476e6a 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 99faa9927aef..8c7b62ae7ac9 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 33ee433099c4..9120a3e53d20 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index e1b2a0ff8497..da3d32f9d5a5 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 4d67abe2fb2f..898dd447cdf7 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 09db436e89c1..77ea94b62076 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 19e1c8c257ea..3c0c3b7edd6e 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 272912485652..69a6a0567d79 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 4625af5bcd63..42d73be9673e 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index c43bba6f0b1d..28c4234a9a39 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 9ca1a9d8b8da..b0cd3fb24fd6 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 63118a5a5d31..fcb697c0d445 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 2ffac5bbd5b2..f25267509e67 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 93ed385cf01c..86b2ac2b3ce6 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 107fa2099d08..5d31b1d54a3f 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 8c59b60fed05..7f4ae2a9a7be 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 30782905ca6e..0ce8b6b4e24a 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 84acdb5f4821..c034ab208cd4 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 010bfa74beca..27e2c4874ea9 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index cd817021cd30..1cb8e263277e 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 6905b64c2f54..9129863e86e1 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 1a139de36e9d..73642ad5e537 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 23ea77ddc7b4..a09eb985320a 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 4acc79c433ad..80f47648bf62 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 128a09007360..fe4a0c1591ce 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 53843fc9bc9d..4742e9e9dc0f 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 6c5c995931b8..4da91d4495d4 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 60be83eb86c1..e8a4eadea0ae 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 4d62ae96b3c7..c3f2c2a618da 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 0fe2066f4ff7..9877bd3d6765 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index de226c924708..790b1915fdd1 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.22 + 2.15.23-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 1acd7c11d88b..35e5442b867b 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 2de8be0d0fe9..ea373dbc9cb3 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 02747c87eb4b..84a6f8da0a99 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 702d315b088f..7224632cb4e3 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index e319717684d4..7adae5c78fd0 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index c9e0da7b83a2..28b8d930e75d 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 978a415ca780..c3b89baf38eb 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index ea7279bbc32b..a520efb4a890 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index efb063b3a268..c9b45311be29 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index fdbeec988346..fb3d7b7a4647 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 4475825917ca..c7ca1ad1c6bf 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 8dc14b022647..ed810b35ab19 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index cbd23bf50b46..6cbba15aef2c 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 6b1b43107644..f943bc616e66 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index f8ba4d05daa8..bdd322c949e1 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 12c2188201a5..90fae01b7530 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index adef6e6ebca4..f35eb4518207 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 2a1e23ddac6c..bf842cda591b 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index ca5ade498014..b7567a00a24c 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index daba3a779c12..adbb468b8a63 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index cdfecae65b18..9542ce0e9fcb 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index d02c01470924..9bc6a077ad97 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 8c7cc6181802..802706c25e72 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 44335e3a8037..737376802a3d 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 2a6e12a82f65..cba25c54c6f3 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index abff0a155e81..7e50347f53d4 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 9a05e99d8903..db8b5298d973 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 4a58d023c8c2..d316e20c0f6a 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 08820fc61086..457292a320dc 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index c5bece9f358c..fc47e3f65924 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 09a0ac94be24..3caa5053fa05 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 597427319312..467b9c1f34bb 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index d7230b45923e..cd9ebf35d930 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 73d5d8f042cf..65cc5ca3fbdd 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 665c8299bbeb..dbee08dbc691 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 9c1ca36629b1..49cd11bce03b 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index d19a407f5a58..abcef18c530f 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index a0f718e7ccd8..61c224184522 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index b92533624c43..4f662878b7ad 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 1e46122f141a..b628709c2b0b 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 876ea3497ad2..42a0b6b87ccf 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 59c58cdd7b65..e02446fe335b 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index b717c608a0da..1a78762b3aa0 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 5a06d81c3e2a..e68794f2195a 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 2ff988379681..8ddbf50ecf2d 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index c5a9682acbd8..ca5ef2a47fd4 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 7b38a432006e..6155ddfa1f06 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 59d2adb756f7..73e29844c41e 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index eef2d1a733a6..aa5b78494bc7 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 02c857b9c85f..9f6faa932bda 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index dc1759b38527..97d45acd36c5 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 7d72903adbe6..72f238b4f03a 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 47e71ba366bb..ab221423d979 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 4e60f3eff14f..b1876fd0535e 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index e2f6fb7deb94..40f19d066bfb 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 3dba10d78edf..c1629d8dedc6 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index a0510de18881..7e3dfbdc00fb 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index d8f78464ac0e..1c140eb13886 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 5fcc5d85599a..3c9a4c287aa7 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 4cb6298c0ea3..003b7006ab18 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 9d220c90bb2a..28041250a57a 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 9b4349d87f69..2f1dbc41e6ba 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index c10cf19c00a1..2e8109bd9b76 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.22 + 2.15.23-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 1de99ed60bac..861c3a3d3a9c 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.15.22 + 2.15.23-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 29e1b20f6c5b..54f556c6a157 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.15.22 + 2.15.23-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 0c8ca328d613..4d38d40acad5 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.15.22 + 2.15.23-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 3bcd7bb88c90..940180e81e14 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.15.22 + 2.15.23-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 5cfa9e1b46a7..ee1f51b7fb2e 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.15.22 + 2.15.23-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index f4c41b0b492c..1fb2fca04cad 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.22 + 2.15.23-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 9f949ae317fd..74d8527c9a41 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.15.22 + 2.15.23-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 41689698d2f7..2b8f1e157223 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.15.22 + 2.15.23-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 9e67bade68fd..cf309dbd03be 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.15.22 + 2.15.23-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 0b0e8c9dcf6a..bc38fd668ec2 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.15.22 + 2.15.23-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 1bfb16b61a73..ecaaa4abc17c 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.22 + 2.15.23-SNAPSHOT 4.0.0 From 7ea2ef359d90294364f0f2ee410d1ac792c3a720 Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Thu, 5 Nov 2020 12:47:23 -0800 Subject: [PATCH 141/339] Increased maximum threads allowed by stability tests. This maximum was being exceeded by an expected set of threads. --- .../awssdk/stability/tests/utils/StabilityTestRunner.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/stability-tests/src/it/java/software/amazon/awssdk/stability/tests/utils/StabilityTestRunner.java b/test/stability-tests/src/it/java/software/amazon/awssdk/stability/tests/utils/StabilityTestRunner.java index 156fd3f90e38..f3131f43a554 100644 --- a/test/stability-tests/src/it/java/software/amazon/awssdk/stability/tests/utils/StabilityTestRunner.java +++ b/test/stability-tests/src/it/java/software/amazon/awssdk/stability/tests/utils/StabilityTestRunner.java @@ -74,7 +74,7 @@ public class StabilityTestRunner { private static final int TESTS_TIMEOUT_IN_MINUTES = 60; // The peak thread count might be different depending on the machine the tests are currently running on. // because of the internal thread pool used in AsynchronousFileChannel - private static final int ALLOWED_PEAK_THREAD_COUNT = 60; + private static final int ALLOWED_PEAK_THREAD_COUNT = 90; private ThreadMXBean threadMXBean; private IntFunction> futureFactory; From abeba8d2845ccef790e14c3a1cba959d8fc8111f Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 6 Nov 2020 19:03:24 +0000 Subject: [PATCH 142/339] Amazon Data Lifecycle Manager Update: Amazon Data Lifecycle Manager now supports the creation and retention of EBS-backed Amazon Machine Images --- ...ature-AmazonDataLifecycleManager-1b64eae.json | 6 ++++++ .../resources/codegen-resources/service-2.json | 16 ++++++++++++++-- 2 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AmazonDataLifecycleManager-1b64eae.json diff --git a/.changes/next-release/feature-AmazonDataLifecycleManager-1b64eae.json b/.changes/next-release/feature-AmazonDataLifecycleManager-1b64eae.json new file mode 100644 index 000000000000..3db0bd38e0a8 --- /dev/null +++ b/.changes/next-release/feature-AmazonDataLifecycleManager-1b64eae.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Data Lifecycle Manager", + "contributor": "", + "description": "Amazon Data Lifecycle Manager now supports the creation and retention of EBS-backed Amazon Machine Images" +} diff --git a/services/dlm/src/main/resources/codegen-resources/service-2.json b/services/dlm/src/main/resources/codegen-resources/service-2.json index c6bece93454e..0ce73d55690e 100644 --- a/services/dlm/src/main/resources/codegen-resources/service-2.json +++ b/services/dlm/src/main/resources/codegen-resources/service-2.json @@ -503,6 +503,10 @@ "Tags":{ "shape":"TagMap", "documentation":"

The tags.

" + }, + "PolicyType":{ + "shape":"PolicyTypeValues", + "documentation":"

The type of policy. EBS_SNAPSHOT_MANAGEMENT indicates that the policy manages the lifecycle of Amazon EBS snapshots. IMAGE_MANAGEMENT indicates that the policy manages the lifecycle of EBS-backed AMIs.

" } }, "documentation":"

Summary information about a lifecycle policy.

" @@ -546,6 +550,7 @@ } } }, + "NoReboot":{"type":"boolean"}, "Parameter":{"type":"string"}, "ParameterList":{ "type":"list", @@ -557,6 +562,10 @@ "ExcludeBootVolume":{ "shape":"ExcludeBootVolume", "documentation":"

[EBS Snapshot Management – Instance policies only] Indicates whether to exclude the root volume from snapshots created using CreateSnapshots. The default is false.

" + }, + "NoReboot":{ + "shape":"NoReboot", + "documentation":"

Applies to AMI lifecycle policies only. Indicates whether targeted instances are rebooted when the lifecycle policy runs. true indicates that targeted instances are not rebooted when the policy runs. false indicates that target instances are rebooted when the policy runs. The default is true (instance are not rebooted).

" } }, "documentation":"

Specifies optional parameters to add to a policy. The set of valid parameters depends on the combination of policy type and resource type.

" @@ -578,7 +587,7 @@ "members":{ "PolicyType":{ "shape":"PolicyTypeValues", - "documentation":"

The valid target resource types and actions a policy can manage. The default is EBS_SNAPSHOT_MANAGEMENT.

" + "documentation":"

The valid target resource types and actions a policy can manage. Specify EBS_SNAPSHOT_MANAGEMENT to create a lifecycle policy that manages the lifecycle of Amazon EBS snapshots. Specify IMAGE_MANAGEMENT to create a lifecycle policy that manages the lifecycle of EBS-backed AMIs. The default is EBS_SNAPSHOT_MANAGEMENT.

" }, "ResourceTypes":{ "shape":"ResourceTypeValuesList", @@ -611,7 +620,10 @@ }, "PolicyTypeValues":{ "type":"string", - "enum":["EBS_SNAPSHOT_MANAGEMENT"] + "enum":[ + "EBS_SNAPSHOT_MANAGEMENT", + "IMAGE_MANAGEMENT" + ] }, "ResourceNotFoundException":{ "type":"structure", From 1fb453a59b582017d7ec7686a898f5c55319306c Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 6 Nov 2020 19:03:28 +0000 Subject: [PATCH 143/339] Amazon Elastic Compute Cloud Update: Network card support with four new attributes: NetworkCardIndex, NetworkPerformance, DefaultNetworkCardIndex, and MaximumNetworkInterfaces, added to the DescribeInstanceTypes API. --- ...ure-AmazonElasticComputeCloud-57e922b.json | 6 ++ .../codegen-resources/service-2.json | 86 ++++++++++++++----- 2 files changed, 72 insertions(+), 20 deletions(-) create mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-57e922b.json diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-57e922b.json b/.changes/next-release/feature-AmazonElasticComputeCloud-57e922b.json new file mode 100644 index 000000000000..d053db928ca9 --- /dev/null +++ b/.changes/next-release/feature-AmazonElasticComputeCloud-57e922b.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "Network card support with four new attributes: NetworkCardIndex, NetworkPerformance, DefaultNetworkCardIndex, and MaximumNetworkInterfaces, added to the DescribeInstanceTypes API." +} diff --git a/services/ec2/src/main/resources/codegen-resources/service-2.json b/services/ec2/src/main/resources/codegen-resources/service-2.json index 3d1c3f13630e..8d829c59b1c7 100755 --- a/services/ec2/src/main/resources/codegen-resources/service-2.json +++ b/services/ec2/src/main/resources/codegen-resources/service-2.json @@ -10753,6 +10753,7 @@ "DateTime":{"type":"timestamp"}, "DedicatedHostFlag":{"type":"boolean"}, "DedicatedHostId":{"type":"string"}, + "DefaultNetworkCardIndex":{"type":"integer"}, "DefaultRouteTableAssociationValue":{ "type":"string", "enum":[ @@ -14097,7 +14098,7 @@ }, "Filters":{ "shape":"FilterList", - "documentation":"

One or more filters. Filter names and values are case-sensitive.

  • location - This depends on the location type. For example, if the location type is region (default), the location is the Region code (for example, us-east-2.)

  • instance-type - The instance type.

", + "documentation":"

One or more filters. Filter names and values are case-sensitive.

  • location - This depends on the location type. For example, if the location type is region (default), the location is the Region code (for example, us-east-2.)

  • instance-type - The instance type. For example, c5.2xlarge.

", "locationName":"Filter" }, "MaxResults":{ @@ -14139,7 +14140,7 @@ }, "Filters":{ "shape":"FilterList", - "documentation":"

One or more filters. Filter names and values are case-sensitive.

  • auto-recovery-supported - Indicates whether auto recovery is supported. (true | false)

  • bare-metal - Indicates whether it is a bare metal instance type. (true | false)

  • burstable-performance-supported - Indicates whether it is a burstable performance instance type. (true | false)

  • current-generation - Indicates whether this instance type is the latest generation instance type of an instance family. (true | false)

  • ebs-info.ebs-optimized-info.baseline-bandwidth-in-mbps - The baseline bandwidth performance for an EBS-optimized instance type, in Mbps.

  • ebs-info.ebs-optimized-info.baseline-iops - The baseline input/output storage operations per second for an EBS-optimized instance type.

  • ebs-info.ebs-optimized-info.baseline-throughput-in-mbps - The baseline throughput performance for an EBS-optimized instance type, in MBps.

  • ebs-info.ebs-optimized-info.maximum-bandwidth-in-mbps - The maximum bandwidth performance for an EBS-optimized instance type, in Mbps.

  • ebs-info.ebs-optimized-info.maximum-iops - The maximum input/output storage operations per second for an EBS-optimized instance type.

  • ebs-info.ebs-optimized-info.maximum-throughput-in-mbps - The maximum throughput performance for an EBS-optimized instance type, in MBps.

  • ebs-info.ebs-optimized-support - Indicates whether the instance type is EBS-optimized. (supported | unsupported | default)

  • ebs-info.encryption-support - Indicates whether EBS encryption is supported. (supported | unsupported)

  • ebs-info.nvme-support - Indicates whether non-volatile memory express (NVMe) is supported for EBS volumes. (required | supported | unsupported)

  • free-tier-eligible - Indicates whether the instance type is eligible to use in the free tier. (true | false)

  • hibernation-supported - Indicates whether On-Demand hibernation is supported. (true | false)

  • hypervisor - The hypervisor. (nitro | xen)

  • instance-storage-info.disk.count - The number of local disks.

  • instance-storage-info.disk.size-in-gb - The storage size of each instance storage disk, in GB.

  • instance-storage-info.disk.type - The storage technology for the local instance storage disks. (hdd | ssd)

  • instance-storage-info.nvme-support - Indicates whether non-volatile memory express (NVMe) is supported for instance store. (required | supported) | unsupported)

  • instance-storage-info.total-size-in-gb - The total amount of storage available from all local instance storage, in GB.

  • instance-storage-supported - Indicates whether the instance type has local instance storage. (true | false)

  • instance-type - The instance type (for example c5.2xlarge or c5*).

  • memory-info.size-in-mib - The memory size.

  • network-info.efa-supported - Indicates whether the instance type supports Elastic Fabric Adapter (EFA). (true | false)

  • network-info.ena-support - Indicates whether Elastic Network Adapter (ENA) is supported or required. (required | supported | unsupported)

  • network-info.ipv4-addresses-per-interface - The maximum number of private IPv4 addresses per network interface.

  • network-info.ipv6-addresses-per-interface - The maximum number of private IPv6 addresses per network interface.

  • network-info.ipv6-supported - Indicates whether the instance type supports IPv6. (true | false)

  • network-info.maximum-network-interfaces - The maximum number of network interfaces per instance.

  • network-info.network-performance - The network performance (for example, \"25 Gigabit\").

  • processor-info.supported-architecture - The CPU architecture. (arm64 | i386 | x86_64)

  • processor-info.sustained-clock-speed-in-ghz - The CPU clock speed, in GHz.

  • supported-root-device-type - The root device type. (ebs | instance-store)

  • supported-usage-class - The usage class. (on-demand | spot)

  • supported-virtualization-type - The virtualization type. (hvm | paravirtual)

  • vcpu-info.default-cores - The default number of cores for the instance type.

  • vcpu-info.default-threads-per-core - The default number of threads per core for the instance type.

  • vcpu-info.default-vcpus - The default number of vCPUs for the instance type.

  • vcpu-info.valid-cores - The number of cores that can be configured for the instance type.

  • vcpu-info.valid-threads-per-core - The number of threads per core that can be configured for the instance type. For example, \"1\" or \"1,2\".

", + "documentation":"

One or more filters. Filter names and values are case-sensitive.

  • auto-recovery-supported - Indicates whether auto recovery is supported (true | false).

  • bare-metal - Indicates whether it is a bare metal instance type (true | false).

  • burstable-performance-supported - Indicates whether it is a burstable performance instance type (true | false).

  • current-generation - Indicates whether this instance type is the latest generation instance type of an instance family (true | false).

  • ebs-info.ebs-optimized-info.baseline-bandwidth-in-mbps - The baseline bandwidth performance for an EBS-optimized instance type, in Mbps.

  • ebs-info.ebs-optimized-info.baseline-iops - The baseline input/output storage operations per second for an EBS-optimized instance type.

  • ebs-info.ebs-optimized-info.baseline-throughput-in-mbps - The baseline throughput performance for an EBS-optimized instance type, in MB/s.

  • ebs-info.ebs-optimized-info.maximum-bandwidth-in-mbps - The maximum bandwidth performance for an EBS-optimized instance type, in Mbps.

  • ebs-info.ebs-optimized-info.maximum-iops - The maximum input/output storage operations per second for an EBS-optimized instance type.

  • ebs-info.ebs-optimized-info.maximum-throughput-in-mbps - The maximum throughput performance for an EBS-optimized instance type, in MB/s.

  • ebs-info.ebs-optimized-support - Indicates whether the instance type is EBS-optimized (supported | unsupported | default).

  • ebs-info.encryption-support - Indicates whether EBS encryption is supported (supported | unsupported).

  • ebs-info.nvme-support - Indicates whether non-volatile memory express (NVMe) is supported for EBS volumes (required | supported | unsupported).

  • free-tier-eligible - Indicates whether the instance type is eligible to use in the free tier (true | false).

  • hibernation-supported - Indicates whether On-Demand hibernation is supported (true | false).

  • hypervisor - The hypervisor (nitro | xen).

  • instance-storage-info.disk.count - The number of local disks.

  • instance-storage-info.disk.size-in-gb - The storage size of each instance storage disk, in GB.

  • instance-storage-info.disk.type - The storage technology for the local instance storage disks (hdd | ssd).

  • instance-storage-info.nvme-support - Indicates whether non-volatile memory express (NVMe) is supported for instance store (required | supported) | unsupported).

  • instance-storage-info.total-size-in-gb - The total amount of storage available from all local instance storage, in GB.

  • instance-storage-supported - Indicates whether the instance type has local instance storage (true | false).

  • instance-type - The instance type (for example c5.2xlarge or c5*).

  • memory-info.size-in-mib - The memory size.

  • network-info.efa-supported - Indicates whether the instance type supports Elastic Fabric Adapter (EFA) (true | false).

  • network-info.ena-support - Indicates whether Elastic Network Adapter (ENA) is supported or required (required | supported | unsupported).

  • network-info.ipv4-addresses-per-interface - The maximum number of private IPv4 addresses per network interface.

  • network-info.ipv6-addresses-per-interface - The maximum number of private IPv6 addresses per network interface.

  • network-info.ipv6-supported - Indicates whether the instance type supports IPv6 (true | false).

  • network-info.maximum-network-interfaces - The maximum number of network interfaces per instance.

  • network-info.network-performance - The network performance (for example, \"25 Gigabit\").

  • processor-info.supported-architecture - The CPU architecture (arm64 | i386 | x86_64).

  • processor-info.sustained-clock-speed-in-ghz - The CPU clock speed, in GHz.

  • supported-root-device-type - The root device type (ebs | instance-store).

  • supported-usage-class - The usage class (on-demand | spot).

  • supported-virtualization-type - The virtualization type (hvm | paravirtual).

  • vcpu-info.default-cores - The default number of cores for the instance type.

  • vcpu-info.default-threads-per-core - The default number of threads per core for the instance type.

  • vcpu-info.default-vcpus - The default number of vCPUs for the instance type.

  • vcpu-info.valid-cores - The number of cores that can be configured for the instance type.

  • vcpu-info.valid-threads-per-core - The number of threads per core that can be configured for the instance type. For example, \"1\" or \"1,2\".

", "locationName":"Filter" }, "MaxResults":{ @@ -18268,7 +18269,7 @@ "members":{ "EbsOptimizedSupport":{ "shape":"EbsOptimizedSupport", - "documentation":"

Indicates that the instance type is Amazon EBS-optimized. For more information, see Amazon EBS-Optimized Instances in Amazon EC2 User Guide for Linux Instances.

", + "documentation":"

Indicates whether the instance type is Amazon EBS-optimized. For more information, see Amazon EBS-Optimized Instances in Amazon EC2 User Guide for Linux Instances.

", "locationName":"ebsOptimizedSupport" }, "EncryptionSupport":{ @@ -18349,7 +18350,7 @@ }, "BaselineThroughputInMBps":{ "shape":"BaselineThroughputInMBps", - "documentation":"

The baseline throughput performance for an EBS-optimized instance type, in MBps.

", + "documentation":"

The baseline throughput performance for an EBS-optimized instance type, in MB/s.

", "locationName":"baselineThroughputInMBps" }, "BaselineIops":{ @@ -18364,7 +18365,7 @@ }, "MaximumThroughputInMBps":{ "shape":"MaximumThroughputInMBps", - "documentation":"

The maximum throughput performance for an EBS-optimized instance type, in MBps.

", + "documentation":"

The maximum throughput performance for an EBS-optimized instance type, in MB/s.

", "locationName":"maximumThroughputInMBps" }, "MaximumIops":{ @@ -20078,7 +20079,7 @@ "members":{ "SizeInMiB":{ "shape":"FpgaDeviceMemorySize", - "documentation":"

The size (in MiB) for the memory available to the FPGA accelerator.

", + "documentation":"

The size of the memory available to the FPGA accelerator, in MiB.

", "locationName":"sizeInMiB" } }, @@ -21123,7 +21124,7 @@ "members":{ "SizeInMiB":{ "shape":"GpuDeviceMemorySize", - "documentation":"

The size (in MiB) for the memory available to the GPU accelerator.

", + "documentation":"

The size of the memory available to the GPU accelerator, in MiB.

", "locationName":"sizeInMiB" } }, @@ -21141,7 +21142,7 @@ }, "TotalGpuMemoryInMiB":{ "shape":"totalGpuMemory", - "documentation":"

The total size of the memory for the GPU accelerators for the instance type.

", + "documentation":"

The total size of the memory for the GPU accelerators for the instance type, in MiB.

", "locationName":"totalGpuMemoryInMiB" } }, @@ -23999,7 +24000,7 @@ }, "Disks":{ "shape":"DiskInfoList", - "documentation":"

Array describing the disks that are available for the instance type.

", + "documentation":"

Describes the disks that are available for the instance type.

", "locationName":"disks" }, "NvmeSupport":{ @@ -24405,7 +24406,7 @@ }, "CurrentGeneration":{ "shape":"CurrentGenerationFlag", - "documentation":"

Indicates whether the instance type is a current generation.

", + "documentation":"

Indicates whether the instance type is current generation.

", "locationName":"currentGeneration" }, "FreeTierEligible":{ @@ -24420,7 +24421,7 @@ }, "SupportedRootDeviceTypes":{ "shape":"RootDeviceTypeList", - "documentation":"

Indicates the supported root device types.

", + "documentation":"

The supported root device types.

", "locationName":"supportedRootDeviceTypes" }, "SupportedVirtualizationTypes":{ @@ -24430,12 +24431,12 @@ }, "BareMetal":{ "shape":"BareMetalFlag", - "documentation":"

Indicates whether the instance is bare metal.

", + "documentation":"

Indicates whether the instance is a bare metal instance type.

", "locationName":"bareMetal" }, "Hypervisor":{ "shape":"InstanceTypeHypervisor", - "documentation":"

Indicates the hypervisor used for the instance type.

", + "documentation":"

The hypervisor for the instance type.

", "locationName":"hypervisor" }, "ProcessorInfo":{ @@ -24460,7 +24461,7 @@ }, "InstanceStorageInfo":{ "shape":"InstanceStorageInfo", - "documentation":"

Describes the disks for the instance type.

", + "documentation":"

Describes the instance storage for the instance type.

", "locationName":"instanceStorageInfo" }, "EbsInfo":{ @@ -26750,6 +26751,7 @@ "MaxResults":{"type":"integer"}, "MaximumBandwidthInMbps":{"type":"integer"}, "MaximumIops":{"type":"integer"}, + "MaximumNetworkCards":{"type":"integer"}, "MaximumThroughputInMBps":{"type":"double"}, "MembershipType":{ "type":"string", @@ -26763,7 +26765,7 @@ "members":{ "SizeInMiB":{ "shape":"MemorySize", - "documentation":"

Size of the memory, in MiB.

", + "documentation":"

The size of the memory, in MiB.

", "locationName":"sizeInMiB" } }, @@ -28952,12 +28954,41 @@ "locationName":"item" } }, + "NetworkCardIndex":{"type":"integer"}, + "NetworkCardInfo":{ + "type":"structure", + "members":{ + "NetworkCardIndex":{ + "shape":"NetworkCardIndex", + "documentation":"

The index of the network card.

", + "locationName":"networkCardIndex" + }, + "NetworkPerformance":{ + "shape":"NetworkPerformance", + "documentation":"

The network performance of the network card.

", + "locationName":"networkPerformance" + }, + "MaximumNetworkInterfaces":{ + "shape":"MaxNetworkInterfaces", + "documentation":"

The maximum number of network interfaces for the network card.

", + "locationName":"maximumNetworkInterfaces" + } + }, + "documentation":"

Describes the network card support of the instance type.

" + }, + "NetworkCardInfoList":{ + "type":"list", + "member":{ + "shape":"NetworkCardInfo", + "locationName":"item" + } + }, "NetworkInfo":{ "type":"structure", "members":{ "NetworkPerformance":{ "shape":"NetworkPerformance", - "documentation":"

Describes the network performance.

", + "documentation":"

The network performance.

", "locationName":"networkPerformance" }, "MaximumNetworkInterfaces":{ @@ -28965,6 +28996,21 @@ "documentation":"

The maximum number of network interfaces for the instance type.

", "locationName":"maximumNetworkInterfaces" }, + "MaximumNetworkCards":{ + "shape":"MaximumNetworkCards", + "documentation":"

The maximum number of physical network cards that can be allocated to the instance.

", + "locationName":"maximumNetworkCards" + }, + "DefaultNetworkCardIndex":{ + "shape":"DefaultNetworkCardIndex", + "documentation":"

The index of the default network card, starting at 0.

", + "locationName":"defaultNetworkCardIndex" + }, + "NetworkCards":{ + "shape":"NetworkCardInfoList", + "documentation":"

Describes the network cards for the instance type.

", + "locationName":"networkCards" + }, "Ipv4AddressesPerInterface":{ "shape":"MaxIpv4AddrPerInterface", "documentation":"

The maximum number of IPv4 addresses per network interface.

", @@ -29935,7 +29981,7 @@ "members":{ "SupportedStrategies":{ "shape":"PlacementGroupStrategyList", - "documentation":"

A list of supported placement groups types.

", + "documentation":"

The supported placement group types.

", "locationName":"supportedStrategies" } }, @@ -30359,7 +30405,7 @@ "members":{ "SupportedArchitectures":{ "shape":"ArchitectureTypeList", - "documentation":"

A list of architectures supported by the instance type.

", + "documentation":"

The architectures supported by the instance type.

", "locationName":"supportedArchitectures" }, "SustainedClockSpeedInGhz":{ @@ -38464,12 +38510,12 @@ }, "ValidCores":{ "shape":"CoreCountList", - "documentation":"

List of the valid number of cores that can be configured for the instance type.

", + "documentation":"

The valid number of cores that can be configured for the instance type.

", "locationName":"validCores" }, "ValidThreadsPerCore":{ "shape":"ThreadsPerCoreList", - "documentation":"

List of the valid number of threads per core that can be configured for the instance type.

", + "documentation":"

The valid number of threads per core that can be configured for the instance type.

", "locationName":"validThreadsPerCore" } }, From ee9b0dc93b51d9b2b28e36dd59d66b8552f5848b Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 6 Nov 2020 19:03:28 +0000 Subject: [PATCH 144/339] AWS IoT SiteWise Update: Remove the CreatePresignedPortalUrl API --- .../feature-AWSIoTSiteWise-14cd952.json | 6 +++ .../codegen-resources/service-2.json | 50 ------------------- 2 files changed, 6 insertions(+), 50 deletions(-) create mode 100644 .changes/next-release/feature-AWSIoTSiteWise-14cd952.json diff --git a/.changes/next-release/feature-AWSIoTSiteWise-14cd952.json b/.changes/next-release/feature-AWSIoTSiteWise-14cd952.json new file mode 100644 index 000000000000..d4dfd6cf1ea9 --- /dev/null +++ b/.changes/next-release/feature-AWSIoTSiteWise-14cd952.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS IoT SiteWise", + "contributor": "", + "description": "Remove the CreatePresignedPortalUrl API" +} diff --git a/services/iotsitewise/src/main/resources/codegen-resources/service-2.json b/services/iotsitewise/src/main/resources/codegen-resources/service-2.json index e2ee16324326..6c5db160bd09 100644 --- a/services/iotsitewise/src/main/resources/codegen-resources/service-2.json +++ b/services/iotsitewise/src/main/resources/codegen-resources/service-2.json @@ -205,23 +205,6 @@ "documentation":"

Creates a portal, which can contain projects and dashboards. AWS IoT SiteWise Monitor uses AWS SSO or IAM to authenticate portal users and manage user permissions.

Before you can sign in to a new portal, you must add at least one identity to that portal. For more information, see Adding or removing portal administrators in the AWS IoT SiteWise User Guide.

", "endpoint":{"hostPrefix":"monitor."} }, - "CreatePresignedPortalUrl":{ - "name":"CreatePresignedPortalUrl", - "http":{ - "method":"GET", - "requestUri":"/portals/{portalId}/presigned-url", - "responseCode":200 - }, - "input":{"shape":"CreatePresignedPortalUrlRequest"}, - "output":{"shape":"CreatePresignedPortalUrlResponse"}, - "errors":[ - {"shape":"InvalidRequestException"}, - {"shape":"InternalFailureException"}, - {"shape":"ThrottlingException"} - ], - "documentation":"

Creates a pre-signed URL to a portal. Use this operation to create URLs to portals that use AWS Identity and Access Management (IAM) to authenticate users. An IAM user with access to a portal can call this API to get a URL to that portal. The URL contains a session token that lets the IAM user access the portal.

", - "endpoint":{"hostPrefix":"monitor."} - }, "CreateProject":{ "name":"CreateProject", "http":{ @@ -2131,34 +2114,6 @@ } } }, - "CreatePresignedPortalUrlRequest":{ - "type":"structure", - "required":["portalId"], - "members":{ - "portalId":{ - "shape":"ID", - "documentation":"

The ID of the portal to access.

", - "location":"uri", - "locationName":"portalId" - }, - "sessionDurationSeconds":{ - "shape":"SessionDurationSeconds", - "documentation":"

The duration (in seconds) for which the session at the URL is valid.

Default: 900 seconds (15 minutes)

", - "location":"querystring", - "locationName":"sessionDurationSeconds" - } - } - }, - "CreatePresignedPortalUrlResponse":{ - "type":"structure", - "required":["presignedPortalUrl"], - "members":{ - "presignedPortalUrl":{ - "shape":"Url", - "documentation":"

The pre-signed URL to the portal. The URL contains the portal ID and a session token that lets you access the portal. The URL has the following format.

https://<portal-id>.app.iotsitewise.aws/auth?token=<encrypted-token>

" - } - } - }, "CreateProjectRequest":{ "type":"structure", "required":[ @@ -4390,11 +4345,6 @@ "exception":true, "fault":true }, - "SessionDurationSeconds":{ - "type":"integer", - "max":43200, - "min":900 - }, "TagKey":{ "type":"string", "max":128, From ce89b851f6457a71c67e4a589e0af9ad0a2676f1 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 6 Nov 2020 19:03:51 +0000 Subject: [PATCH 145/339] AWS Elemental MediaLive Update: Support for SCTE35 ad markers in OnCuePoint style in RTMP outputs. --- ...feature-AWSElementalMediaLive-a866ef0.json | 6 ++++++ .../codegen-resources/service-2.json | 19 +++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 .changes/next-release/feature-AWSElementalMediaLive-a866ef0.json diff --git a/.changes/next-release/feature-AWSElementalMediaLive-a866ef0.json b/.changes/next-release/feature-AWSElementalMediaLive-a866ef0.json new file mode 100644 index 000000000000..067938eab6e9 --- /dev/null +++ b/.changes/next-release/feature-AWSElementalMediaLive-a866ef0.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Elemental MediaLive", + "contributor": "", + "description": "Support for SCTE35 ad markers in OnCuePoint style in RTMP outputs." +} diff --git a/services/medialive/src/main/resources/codegen-resources/service-2.json b/services/medialive/src/main/resources/codegen-resources/service-2.json index ec7af59f8d7e..de85943ad13c 100644 --- a/services/medialive/src/main/resources/codegen-resources/service-2.json +++ b/services/medialive/src/main/resources/codegen-resources/service-2.json @@ -12223,6 +12223,13 @@ }, "documentation": "Placeholder documentation for ResourceNotFound" }, + "RtmpAdMarkers": { + "type": "string", + "documentation": "Rtmp Ad Markers", + "enum": [ + "ON_CUE_POINT_SCTE35" + ] + }, "RtmpCacheFullBehavior": { "type": "string", "documentation": "Rtmp Cache Full Behavior", @@ -12249,6 +12256,11 @@ "RtmpGroupSettings": { "type": "structure", "members": { + "AdMarkers": { + "shape": "__listOfRtmpAdMarkers", + "locationName": "adMarkers", + "documentation": "Choose the ad marker type for this output group. MediaLive will create a message based on the content of each SCTE-35 message, format it for that marker type, and insert it in the datastream." + }, "AuthenticationScheme": { "shape": "AuthenticationScheme", "locationName": "authenticationScheme", @@ -15076,6 +15088,13 @@ }, "documentation": "Placeholder documentation for __listOfReservation" }, + "__listOfRtmpAdMarkers": { + "type": "list", + "member": { + "shape": "RtmpAdMarkers" + }, + "documentation": "Placeholder documentation for __listOfRtmpAdMarkers" + }, "__listOfScheduleAction": { "type": "list", "member": { From 803ca38780d986c9dbc06e00b74c321ebdcea670 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 6 Nov 2020 19:08:48 +0000 Subject: [PATCH 146/339] Amazon Simple Systems Manager (SSM) Update: Documentation updates for Systems Manager --- .../feature-AmazonSimpleSystemsManagerSSM-62b388f.json | 6 ++++++ .../src/main/resources/codegen-resources/service-2.json | 8 ++++---- 2 files changed, 10 insertions(+), 4 deletions(-) create mode 100644 .changes/next-release/feature-AmazonSimpleSystemsManagerSSM-62b388f.json diff --git a/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-62b388f.json b/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-62b388f.json new file mode 100644 index 000000000000..b4918c45f2bf --- /dev/null +++ b/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-62b388f.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Simple Systems Manager (SSM)", + "contributor": "", + "description": "Documentation updates for Systems Manager" +} diff --git a/services/ssm/src/main/resources/codegen-resources/service-2.json b/services/ssm/src/main/resources/codegen-resources/service-2.json index 125ab530bb2f..8969f93a7549 100644 --- a/services/ssm/src/main/resources/codegen-resources/service-2.json +++ b/services/ssm/src/main/resources/codegen-resources/service-2.json @@ -2432,7 +2432,7 @@ "members":{ "key":{ "shape":"AssociationFilterKey", - "documentation":"

The name of the filter.

" + "documentation":"

The name of the filter.

InstanceId has been deprecated.

" }, "value":{ "shape":"AssociationFilterValue", @@ -2904,7 +2904,7 @@ "members":{ "Key":{ "shape":"AutomationExecutionFilterKey", - "documentation":"

One or more keys to limit the results. Valid filter keys include the following: DocumentNamePrefix, ExecutionStatus, ExecutionId, ParentExecutionId, CurrentAction, StartTimeBefore, StartTimeAfter.

" + "documentation":"

One or more keys to limit the results. Valid filter keys include the following: DocumentNamePrefix, ExecutionStatus, ExecutionId, ParentExecutionId, CurrentAction, StartTimeBefore, StartTimeAfter, TargetResourceGroup.

" }, "Values":{ "shape":"AutomationExecutionFilterValueList", @@ -8845,7 +8845,7 @@ "members":{ "AssociationFilterList":{ "shape":"AssociationFilterList", - "documentation":"

One or more filters. Use a filter to return a more specific list of results.

" + "documentation":"

One or more filters. Use a filter to return a more specific list of results.

Filtering associations using the InstanceID attribute only returns legacy associations created using the InstanceID attribute. Associations targeting the instance that are part of the Target Attributes ResourceGroup or Tags are not returned.

" }, "MaxResults":{ "shape":"MaxResults", @@ -10800,7 +10800,7 @@ "members":{ "message":{"shape":"String"} }, - "documentation":"

The parameter exceeded the maximum number of allowed versions.

", + "documentation":"

Parameter Store retains the 100 most recently created versions of a parameter. After this number of versions has been created, Parameter Store deletes the oldest version when a new one is created. However, if the oldest version has a label attached to it, Parameter Store will not delete the version and instead presents this error message:

An error occurred (ParameterMaxVersionLimitExceeded) when calling the PutParameter operation: You attempted to create a new version of parameter-name by calling the PutParameter API with the overwrite flag. Version version-number, the oldest version, can't be deleted because it has a label associated with it. Move the label to another version of the parameter, and try again.

This safeguard is to prevent parameter versions with mission critical labels assigned to them from being deleted. To continue creating new parameters, first move the label from the oldest version of the parameter to a newer one for use in your operations. For information about moving parameter labels, see Move a parameter label (console) or Move a parameter label (CLI) in the AWS Systems Manager User Guide.

", "exception":true }, "ParameterMetadata":{ From 02db845c44e33b4c5d1969da3b18129585feff64 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 6 Nov 2020 19:10:13 +0000 Subject: [PATCH 147/339] Release 2.15.23. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.23.json | 36 +++++++++++++++++++ ...feature-AWSElementalMediaLive-a866ef0.json | 6 ---- .../feature-AWSIoTSiteWise-14cd952.json | 6 ---- ...re-AmazonDataLifecycleManager-1b64eae.json | 6 ---- ...ure-AmazonElasticComputeCloud-57e922b.json | 6 ---- ...AmazonSimpleSystemsManagerSSM-62b388f.json | 6 ---- CHANGELOG.md | 21 +++++++++++ README.md | 8 ++--- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- .../serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 288 files changed, 341 insertions(+), 314 deletions(-) create mode 100644 .changes/2.15.23.json delete mode 100644 .changes/next-release/feature-AWSElementalMediaLive-a866ef0.json delete mode 100644 .changes/next-release/feature-AWSIoTSiteWise-14cd952.json delete mode 100644 .changes/next-release/feature-AmazonDataLifecycleManager-1b64eae.json delete mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-57e922b.json delete mode 100644 .changes/next-release/feature-AmazonSimpleSystemsManagerSSM-62b388f.json diff --git a/.changes/2.15.23.json b/.changes/2.15.23.json new file mode 100644 index 000000000000..403b6fb79a9d --- /dev/null +++ b/.changes/2.15.23.json @@ -0,0 +1,36 @@ +{ + "version": "2.15.23", + "date": "2020-11-06", + "entries": [ + { + "type": "feature", + "category": "AWS IoT SiteWise", + "contributor": "", + "description": "Remove the CreatePresignedPortalUrl API" + }, + { + "type": "feature", + "category": "AWS Elemental MediaLive", + "contributor": "", + "description": "Support for SCTE35 ad markers in OnCuePoint style in RTMP outputs." + }, + { + "type": "feature", + "category": "Amazon Data Lifecycle Manager", + "contributor": "", + "description": "Amazon Data Lifecycle Manager now supports the creation and retention of EBS-backed Amazon Machine Images" + }, + { + "type": "feature", + "category": "Amazon Simple Systems Manager (SSM)", + "contributor": "", + "description": "Documentation updates for Systems Manager" + }, + { + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "Network card support with four new attributes: NetworkCardIndex, NetworkPerformance, DefaultNetworkCardIndex, and MaximumNetworkInterfaces, added to the DescribeInstanceTypes API." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSElementalMediaLive-a866ef0.json b/.changes/next-release/feature-AWSElementalMediaLive-a866ef0.json deleted file mode 100644 index 067938eab6e9..000000000000 --- a/.changes/next-release/feature-AWSElementalMediaLive-a866ef0.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Elemental MediaLive", - "contributor": "", - "description": "Support for SCTE35 ad markers in OnCuePoint style in RTMP outputs." -} diff --git a/.changes/next-release/feature-AWSIoTSiteWise-14cd952.json b/.changes/next-release/feature-AWSIoTSiteWise-14cd952.json deleted file mode 100644 index d4dfd6cf1ea9..000000000000 --- a/.changes/next-release/feature-AWSIoTSiteWise-14cd952.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS IoT SiteWise", - "contributor": "", - "description": "Remove the CreatePresignedPortalUrl API" -} diff --git a/.changes/next-release/feature-AmazonDataLifecycleManager-1b64eae.json b/.changes/next-release/feature-AmazonDataLifecycleManager-1b64eae.json deleted file mode 100644 index 3db0bd38e0a8..000000000000 --- a/.changes/next-release/feature-AmazonDataLifecycleManager-1b64eae.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Data Lifecycle Manager", - "contributor": "", - "description": "Amazon Data Lifecycle Manager now supports the creation and retention of EBS-backed Amazon Machine Images" -} diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-57e922b.json b/.changes/next-release/feature-AmazonElasticComputeCloud-57e922b.json deleted file mode 100644 index d053db928ca9..000000000000 --- a/.changes/next-release/feature-AmazonElasticComputeCloud-57e922b.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Elastic Compute Cloud", - "contributor": "", - "description": "Network card support with four new attributes: NetworkCardIndex, NetworkPerformance, DefaultNetworkCardIndex, and MaximumNetworkInterfaces, added to the DescribeInstanceTypes API." -} diff --git a/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-62b388f.json b/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-62b388f.json deleted file mode 100644 index b4918c45f2bf..000000000000 --- a/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-62b388f.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Simple Systems Manager (SSM)", - "contributor": "", - "description": "Documentation updates for Systems Manager" -} diff --git a/CHANGELOG.md b/CHANGELOG.md index c66c8109b576..9cae48565ba4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +# __2.15.23__ __2020-11-06__ +## __AWS Elemental MediaLive__ + - ### Features + - Support for SCTE35 ad markers in OnCuePoint style in RTMP outputs. + +## __AWS IoT SiteWise__ + - ### Features + - Remove the CreatePresignedPortalUrl API + +## __Amazon Data Lifecycle Manager__ + - ### Features + - Amazon Data Lifecycle Manager now supports the creation and retention of EBS-backed Amazon Machine Images + +## __Amazon Elastic Compute Cloud__ + - ### Features + - Network card support with four new attributes: NetworkCardIndex, NetworkPerformance, DefaultNetworkCardIndex, and MaximumNetworkInterfaces, added to the DescribeInstanceTypes API. + +## __Amazon Simple Systems Manager (SSM)__ + - ### Features + - Documentation updates for Systems Manager + # __2.15.22__ __2020-11-05__ ## __AWS App Mesh__ - ### Features diff --git a/README.md b/README.md index f37804af4ff4..e1daa628b663 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.22 + 2.15.23 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.22 + 2.15.23 software.amazon.awssdk s3 - 2.15.22 + 2.15.23 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.22 + 2.15.23 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 15a17dfb0216..ef591c348ab7 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index bf3e2ce96490..5df1ca09959f 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index ec10f834769f..053acf173fbd 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.15.23-SNAPSHOT + 2.15.23 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 7df8e7e401e3..a53c14d8d5cd 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 78e69e09488c..6d9978fb753f 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.23-SNAPSHOT + 2.15.23 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 099edf19b0af..ffeedad01d60 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.23-SNAPSHOT + 2.15.23 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index cfbb5b469a83..4422b8f5ad2d 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.15.23-SNAPSHOT + 2.15.23 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index b7fb955bac24..ff6351224be6 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.23-SNAPSHOT + 2.15.23 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 1d7f38fe4f17..b4e4696eda53 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.15.23-SNAPSHOT + 2.15.23 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 80076728bd9f..2d42c074fa2b 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.23-SNAPSHOT + 2.15.23 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index ea469e40cc7e..7c6421935481 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index dadbc99d414a..7daa58e8f028 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 75d2baa45d8c..7a040278a0d0 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.23-SNAPSHOT + 2.15.23 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 72412ac94651..dfcce979e605 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.23-SNAPSHOT + 2.15.23 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 80f63ad1d20c..9aa62e06c16f 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 8bb4f91963bc..ce1476b91acc 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 1a4a82a82811..ff314e344940 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.23-SNAPSHOT + 2.15.23 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index c27435060eab..8df2ce62fb55 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.15.23-SNAPSHOT + 2.15.23 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 2cdf08c6d218..975506a19e49 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 622684db1d04..22627cc67bf0 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.15.23-SNAPSHOT + 2.15.23 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 6cbe94f6536b..338437857a03 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.15.23-SNAPSHOT + 2.15.23 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 8ad53e0f9c3b..7e0072a913bd 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.15.23-SNAPSHOT + 2.15.23 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 9f0c79cdc119..3ccec541e5d2 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 9015d5910799..15d4e6005027 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 8bc568a0c678..354e67df4bcc 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.23-SNAPSHOT + 2.15.23 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 245365087e1a..045852f51970 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.23-SNAPSHOT + 2.15.23 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 257a5308c775..06202b81d4a5 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.15.23-SNAPSHOT + 2.15.23 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 fbc3edf5113e..e20fb59e5b4e 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.15.23-SNAPSHOT + 2.15.23 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 20905638fa0b..3fb5f29ae154 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.15.23-SNAPSHOT + 2.15.23 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index ed2c0e1da0b5..518f95006c2e 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.15.23-SNAPSHOT + 2.15.23 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 69efa460599c..1ff1d6b3ac96 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 041487aac7b8..f4a4e3241829 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.15.23-SNAPSHOT + 2.15.23 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index c539dc8e7140..64bd2d6e3c26 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.15.23-SNAPSHOT + 2.15.23 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index ad00b2287c1e..45e0040a760f 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.23-SNAPSHOT + 2.15.23 metric-publishers diff --git a/pom.xml b/pom.xml index afa661c1aa4b..6f00e5777c5d 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.23-SNAPSHOT + 2.15.23 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 3e6e75d25af9..1f4aa06d71a7 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.23-SNAPSHOT + 2.15.23 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index d52ea8519434..1f77de6177e5 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.15.23-SNAPSHOT + 2.15.23 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index b189a976d4a7..9a4fb770d336 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.23-SNAPSHOT + 2.15.23 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 277f0737162d..ced8f3d2de30 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index b771078ece1c..2a249b2da679 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 42a8b365efb9..62bf318ec421 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 6f01e4a333c4..7eef23610725 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index f7001d1a85ce..0cabac1ccf2e 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 7822d24aeb7b..56a67e88eaeb 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index e1b02f983a92..e16edde908d7 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 3ce68259ceaf..46a2dbce67dc 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index fe009ab53c02..00ce59564c82 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index c41bf37f571d..c6f7403cac65 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 6b924625964e..7c4fa14f4687 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 0ff580eabc43..83e6820784db 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 362579e04e5b..2c6e33e84986 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 8a6559fba51f..050a524b6e5d 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 70d34c12ba78..54d5f7abd24e 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index d11a464ba52b..02603bd46afd 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index c8fb08aca8b8..a5ca97e0c85b 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 429589b72cfe..17e826f7fbc6 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 32b62e6921aa..9b6fa60641ec 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 3dc632cd529c..0b7804310198 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 29ea4add5a9c..5856fa83c365 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 468757d4fe05..aacac0878e51 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index b340bd1f5db8..8a83d6ddfe7b 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index aeca5081a003..19909e0fb7fc 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 303d4fd84a02..ebd3ef7bd542 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 947e5177f9a1..be38ffbeeac2 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index f069b7e45de5..3347faf481e2 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 439a71996c36..3afbaf1d319e 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index a10a6de8a1cc..f05cd9f7611e 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index e372939c02a2..500b1287c72e 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 665586f0382f..ec18b27bc36e 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 8266ba89d979..e4d52e3a82ca 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index c5d884847d64..7f0e4f53f64a 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index c83a0e6fd0de..98558a0b5a2e 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index c0a5c6171505..4b95493e50c9 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index f631f20b758c..1d2011fdaaa5 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 59d1947afd99..81fc7adee35f 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 1fa08a694c46..4af0e4dd6675 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index c529b3d5d1ca..1f15f027029d 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index f3ef0f559171..f96706479142 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index e51a6112b5fc..212ccb3f4044 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index e0e76696bbfe..c89c01999848 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 80d85c094171..6bdb5cfbb33e 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 1936dfbe84fc..71987033fd9c 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index d621b290cf83..5317e7d3d26c 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 6bef78992a86..c05222fb59a1 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index d7a6ddd91bf3..3cd2da53e1eb 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 94370f6478eb..54479f34896c 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 6978996cd50a..02092759d11e 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index d4c02aadf3a7..8b0b40fac71b 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index ebb1f580875b..5fb2976977f0 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 4ad4da2f912b..7f7b39b1a23c 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 3a4ec05c2054..e262acce2ff2 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index e3f9ded717a3..eeecb809acf0 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 3a69f112b41e..6c2b13fd08c2 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 42b5caa7f5d0..b3fbe702cab3 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 600dc6ce7382..8e7c43a58c2d 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 17cde63cd894..f233b88a1119 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 7e3cc7d6f863..dbbd96b05a37 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index ee71256e4437..e6d414179149 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 8ccf68c6a03e..a2c8101ef6ab 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 2ffbfeaf30f6..389acaf5008b 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index fc6ec7f2fcb8..d2d21c722ede 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 95d89458c708..0e2cb8750331 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index b7dd6f91c28b..9dca64096d5d 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index e6e66b2fd1d8..756c4e01c1af 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index e6f186704d38..016ee0bfb62e 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 0594d5276ba0..7d872fb87bfe 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 6e6a851278f4..65106da6b4cb 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index c1b18cb8e9a7..d2344202d446 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 424db5fc8090..0ba78a7be903 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 7407861fa88e..27e9007016f6 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 17ce511e1c36..445645f468c9 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index af73d62eacbd..877a46835a8f 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 34b515585caf..335b49ae5ba4 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 34dec5fc1773..e5c5045d36a0 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 268f294bd6a6..26aa550e7e06 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 8471a2aaf33e..d40461742de5 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 362e65809781..18e1d1c8c3c5 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 0960d4e300ee..b75e75c86909 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 24ea41e344df..c9137885f4ba 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index e388198fc60f..7a7e3f63280e 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 6fc6a4b1b32e..ee9a1ef57a73 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 9d9e657f4bb7..2a955b249eb4 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 17ec0e2ddf03..1a829fafab97 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index a7d67eb7f63b..9213497128a2 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index fa307d2a49af..cb0a3a976554 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 08db3bdf42cd..376dc64bb007 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 08b401785b32..c75dd45130b5 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 6b29bce18892..55bc7c9df16f 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index ef5164273bb9..ca11321db993 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index f48817283e02..129e75f88b09 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index c2f0b990d67f..90529616488a 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 89ac682ee98d..34a386386901 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index a4615ebf3784..5e7ee3bf35e8 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index f702a7dc71e5..136257373920 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 8d480d26b511..174b27c50144 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index abfe68b68562..dc78fda4d305 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 6d367b79f04e..cf7e95dbc3a2 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 9ad683d03ce1..49a7b46f3b0d 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index f30e58235d90..ec1f77a1f63b 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index fdaba7333199..9e27e1b45c01 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 011439f4915d..7f73b1fbc9bd 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index cee77599960d..867e672aa8cb 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 5c0cfe6ed599..4518248cc7d3 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index f13f817b5358..a02ae12f7105 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 032e0dd20c4e..0468a42f1bd1 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 413be8164d91..6dcbbf06e1f4 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index d3417969f404..6de05c200fcc 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index b1884bfc1b9a..fe0c6c19851f 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 5b0d3e71ea15..e6cab0512648 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 8fe8e0d1022f..4be79b46c022 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 158d22afe396..f145fce280df 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index ff4ec40727da..5c95e7dc55c9 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 4d50efaeae22..1d7f46e07f97 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 8eb20de9de68..8f22ecfe23fa 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index d84104e7c3d0..06567ea0a3a5 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 0626b6406664..75dd43767b62 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 106b6130d9b2..716c717819ef 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 5cafb5ba81fb..b7ab98e6e16a 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 51df37703a24..d93b5d1ac2a8 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 6a09f41df489..175a4bf00404 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 2390e2a0d161..8c47de51cca6 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index a50b90a51ddd..37fd73c3880d 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index c9060bb6fc93..490dd2938385 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 889f6b2a90e0..433e1c136a51 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 7116f3f95c2a..c01e83858360 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 209242e64a86..29fc4c35462a 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 664ebdd0ea75..35c24db0d90e 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index ee40324024f0..bd6c1f163ff1 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index e6967c3cbcfe..01f6b8d86a53 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 5c6a7baca85b..c80732b08f0c 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index fa957a77175e..5f369ac0bc08 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 94e66cda0af3..95697b0084b5 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 151903156355..18c5ff070605 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 272ad8fb8c5e..cb58584f095c 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 7fe68d5e7ea1..4f84877d23d2 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index f773c2476e6a..42a9f8e82e59 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 8c7b62ae7ac9..ac6a37d91ef8 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 9120a3e53d20..5689fe64a4a7 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index da3d32f9d5a5..2a2718d76416 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 898dd447cdf7..6c70b2a675ae 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 77ea94b62076..6280fea4c874 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 3c0c3b7edd6e..e3eaa03ae612 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 69a6a0567d79..6f5c1303ff87 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 42d73be9673e..7c4561394bc7 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 28c4234a9a39..e12c5f91df95 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index b0cd3fb24fd6..a1267e3fe766 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index fcb697c0d445..02b7f1cf72c6 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index f25267509e67..5c39c6558e23 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 86b2ac2b3ce6..2be91481d02d 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 5d31b1d54a3f..29f95df019e9 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 7f4ae2a9a7be..e014a56ea684 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 0ce8b6b4e24a..ff381d5df75c 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index c034ab208cd4..930ffd7ca2c0 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 27e2c4874ea9..599a2781fedb 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 1cb8e263277e..877c4d5e8261 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 9129863e86e1..272ef96d811f 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 73642ad5e537..8cb4f9e56f3a 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index a09eb985320a..95280de54995 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 80f47648bf62..c269b71c0d36 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index fe4a0c1591ce..336de933a426 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 4742e9e9dc0f..9e3b6ac1e80b 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 4da91d4495d4..7776743fbc52 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index e8a4eadea0ae..11b9a09b3c78 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index c3f2c2a618da..b17353bf3ebe 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 9877bd3d6765..0832d8effaf6 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 790b1915fdd1..e2cf6be078f9 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.23-SNAPSHOT + 2.15.23 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 35e5442b867b..cb3c56dd5ceb 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index ea373dbc9cb3..d794cad9a78e 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 84a6f8da0a99..655b5920738f 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 7224632cb4e3..321c16dbb4ec 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 7adae5c78fd0..028c3d6f16a5 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 28b8d930e75d..49ec95f0ac97 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index c3b89baf38eb..877f4571d9b7 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index a520efb4a890..e7de6fd11a1e 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index c9b45311be29..44a26b5aefc7 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index fb3d7b7a4647..597d1be6d86b 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index c7ca1ad1c6bf..98fcc4613cdf 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index ed810b35ab19..a12f360f5095 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 6cbba15aef2c..627d9f8a92cd 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index f943bc616e66..657e00a92c74 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index bdd322c949e1..d7a87fdcb670 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 90fae01b7530..685594c80faf 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index f35eb4518207..8d83e5d37519 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index bf842cda591b..13ca5c1f2052 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index b7567a00a24c..9bb9c21753a5 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index adbb468b8a63..4f0610ab1197 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 9542ce0e9fcb..54fd148c647d 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 9bc6a077ad97..5b468946587b 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 802706c25e72..21a075d212ad 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 737376802a3d..b728bfdef1ab 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index cba25c54c6f3..a47e1292ada1 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 7e50347f53d4..65119e7d3a9c 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index db8b5298d973..b632d3935cd9 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index d316e20c0f6a..ed67480ac2ae 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 457292a320dc..af71a2f27b1a 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index fc47e3f65924..91e934b9b05c 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 3caa5053fa05..8bdfd2deb026 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 467b9c1f34bb..f515f3b64e92 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index cd9ebf35d930..581ef1f3015b 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 65cc5ca3fbdd..7774856c511c 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index dbee08dbc691..26db29168c69 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 49cd11bce03b..4948685cdffa 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index abcef18c530f..a98d37fd5159 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 61c224184522..543aca5d8f52 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 4f662878b7ad..bce83af56d5b 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index b628709c2b0b..a904099d9b97 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 42a0b6b87ccf..46a66c06fd09 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index e02446fe335b..be27ba752df7 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 1a78762b3aa0..3b36af67b789 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index e68794f2195a..a20a631003c7 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 8ddbf50ecf2d..41e0c4545789 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index ca5ef2a47fd4..00182e5cb69a 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 6155ddfa1f06..98b993ba388d 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 73e29844c41e..2d8b9c5a9d13 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index aa5b78494bc7..a1344bd137a2 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 9f6faa932bda..995c8141af91 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 97d45acd36c5..acc4097d0f1f 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 72f238b4f03a..48de5bdcd4f5 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index ab221423d979..7fc587c7846b 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index b1876fd0535e..82280e22bec3 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 40f19d066bfb..8414a8bbcaf0 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index c1629d8dedc6..d6fa735e2fcd 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 7e3dfbdc00fb..489df33d6cba 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 1c140eb13886..c87c6838aee5 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 3c9a4c287aa7..af54ad4a3c8e 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 003b7006ab18..f6d235be1b6f 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 28041250a57a..bfbb03cfe234 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 2f1dbc41e6ba..f68e1252f880 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 2e8109bd9b76..c2e73a5b58a2 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23-SNAPSHOT + 2.15.23 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 861c3a3d3a9c..5fe1806ebd35 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.15.23-SNAPSHOT + 2.15.23 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 54f556c6a157..5cb775dbc895 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.15.23-SNAPSHOT + 2.15.23 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 4d38d40acad5..9ca63952e682 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.15.23-SNAPSHOT + 2.15.23 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 940180e81e14..5484b8226d17 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.15.23-SNAPSHOT + 2.15.23 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index ee1f51b7fb2e..44bbaf2d4cbe 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.15.23-SNAPSHOT + 2.15.23 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 1fb2fca04cad..16d2c82b1101 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.23-SNAPSHOT + 2.15.23 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 74d8527c9a41..3804423ff0a6 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.15.23-SNAPSHOT + 2.15.23 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 2b8f1e157223..10687fa7d644 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.15.23-SNAPSHOT + 2.15.23 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index cf309dbd03be..af087138fbd9 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.15.23-SNAPSHOT + 2.15.23 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index bc38fd668ec2..8b4f2c7be88c 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.15.23-SNAPSHOT + 2.15.23 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index ecaaa4abc17c..30b827e6b0ab 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.23-SNAPSHOT + 2.15.23 4.0.0 From 8206f2f1b29df18ccaec47a1ca26e7b0b337eb3f Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 6 Nov 2020 19:35:46 +0000 Subject: [PATCH 148/339] Update to next snapshot version: 2.15.24-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 280 files changed, 280 insertions(+), 280 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index ef591c348ab7..986fc00b4aef 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 5df1ca09959f..f1f377e6f670 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 053acf173fbd..07658fc037b1 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.15.23 + 2.15.24-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index a53c14d8d5cd..a635a59ff457 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 6d9978fb753f..fb987414bac7 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.23 + 2.15.24-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index ffeedad01d60..36bfbe73aade 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.23 + 2.15.24-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 4422b8f5ad2d..b3221c7e37fd 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.15.23 + 2.15.24-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index ff6351224be6..723c95baddf0 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.23 + 2.15.24-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index b4e4696eda53..0681f468237d 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.15.23 + 2.15.24-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 2d42c074fa2b..aea92a05db0d 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.23 + 2.15.24-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 7c6421935481..dd3832c9ee91 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 7daa58e8f028..c8cadd3ebbbd 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 7a040278a0d0..f80bfc5a2dac 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.23 + 2.15.24-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index dfcce979e605..95c8b7945c28 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.23 + 2.15.24-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 9aa62e06c16f..9cd1532d5a8d 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index ce1476b91acc..3de7f2c3c304 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index ff314e344940..056d55b2b162 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.23 + 2.15.24-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 8df2ce62fb55..441c781afab8 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.15.23 + 2.15.24-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 975506a19e49..fdfe21689c9d 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 22627cc67bf0..06ae5baf5360 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.15.23 + 2.15.24-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 338437857a03..9e17aab9a9bc 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.15.23 + 2.15.24-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 7e0072a913bd..22c956ffe585 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.15.23 + 2.15.24-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 3ccec541e5d2..93d2d5b0f0fb 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 15d4e6005027..c2beadd933c5 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 354e67df4bcc..8ca25317dfec 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.23 + 2.15.24-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 045852f51970..64dd2f654896 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.23 + 2.15.24-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 06202b81d4a5..89d47797c027 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.15.23 + 2.15.24-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index e20fb59e5b4e..feb27e8584c2 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.15.23 + 2.15.24-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 3fb5f29ae154..3bb99eb1a92f 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.15.23 + 2.15.24-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 518f95006c2e..b2391e856793 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.15.23 + 2.15.24-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 1ff1d6b3ac96..fe86242a9012 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index f4a4e3241829..64b396ab54f4 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.15.23 + 2.15.24-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 64bd2d6e3c26..e6b41694d217 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.15.23 + 2.15.24-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 45e0040a760f..7b668e1cf8de 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.23 + 2.15.24-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 6f00e5777c5d..db917dbaba5b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.23 + 2.15.24-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 1f4aa06d71a7..6fcc728fa12c 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.23 + 2.15.24-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 1f77de6177e5..346017773cd7 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.15.23 + 2.15.24-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 9a4fb770d336..5c02eb37c6cf 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.23 + 2.15.24-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index ced8f3d2de30..7937b6dcb5a5 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 2a249b2da679..c020b34b4fc4 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 62bf318ec421..be0e58c41f06 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 7eef23610725..168e6c9ab8fd 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 0cabac1ccf2e..49ef994e7be0 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 56a67e88eaeb..e152bf07b99c 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index e16edde908d7..5dbbf7f52b19 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 46a2dbce67dc..17205e6ab60d 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 00ce59564c82..2abb9235768d 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index c6f7403cac65..9410c8f7488f 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 7c4fa14f4687..421caff3aeec 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 83e6820784db..715560737a3a 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 2c6e33e84986..689d2170297b 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 050a524b6e5d..f21ba4912484 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 54d5f7abd24e..cbd95d9ed961 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 02603bd46afd..34552b3ebea0 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index a5ca97e0c85b..03a0e697419b 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 17e826f7fbc6..0e970397a9c4 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 9b6fa60641ec..b940cae1e4ab 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 0b7804310198..ef390d74aa25 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 5856fa83c365..bf122d1e9e1a 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index aacac0878e51..b9318b9625f5 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 8a83d6ddfe7b..dc89de877713 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 19909e0fb7fc..37549159e820 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index ebd3ef7bd542..f1a7d0bb831a 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index be38ffbeeac2..b834d9507a14 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 3347faf481e2..00fed82e8f02 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 3afbaf1d319e..4ed17b769c86 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index f05cd9f7611e..c185840ad89c 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 500b1287c72e..e141a613b0b4 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index ec18b27bc36e..e87a8a4b4553 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index e4d52e3a82ca..99bab289f461 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 7f0e4f53f64a..670d3d55f186 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 98558a0b5a2e..e2c450baf6fa 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 4b95493e50c9..fb60033c076b 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 1d2011fdaaa5..f00af656d707 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 81fc7adee35f..1e9fe5b47249 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 4af0e4dd6675..f2a00bb687cb 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 1f15f027029d..5b6a8a24b58e 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index f96706479142..c274b71827bd 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 212ccb3f4044..302534c72fb5 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index c89c01999848..89174aa68dc7 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 6bdb5cfbb33e..e91488439115 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 71987033fd9c..07360add3527 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 5317e7d3d26c..d3c8c0788470 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index c05222fb59a1..a306df156c94 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 3cd2da53e1eb..6834e6fa2f77 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 54479f34896c..0a85715eef3b 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 02092759d11e..b2e698a87f5a 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 8b0b40fac71b..6e9c9f6dc29a 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 5fb2976977f0..c552789cdd12 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 7f7b39b1a23c..1a0c6e259fdc 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index e262acce2ff2..da1611b43059 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index eeecb809acf0..0d3723f864de 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 6c2b13fd08c2..b7c4563c146b 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index b3fbe702cab3..4c6d7a1b158c 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 8e7c43a58c2d..f42d344e1151 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index f233b88a1119..da181adc83c7 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index dbbd96b05a37..a3798fcd6a4d 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index e6d414179149..8609fe83ee96 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index a2c8101ef6ab..4e75d90469b9 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 389acaf5008b..3fb983c35308 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index d2d21c722ede..d2c65a9b16de 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 0e2cb8750331..23251639cc3d 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 9dca64096d5d..40ed2f091ec5 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 756c4e01c1af..f3347152574b 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 016ee0bfb62e..9e8717758cf3 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 7d872fb87bfe..31616dc7860c 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 65106da6b4cb..b70770355167 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index d2344202d446..c03ded241609 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 0ba78a7be903..c26907e9c763 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 27e9007016f6..9ec7e534d188 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 445645f468c9..dcecb9d235cc 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 877a46835a8f..704c5685cd0c 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 335b49ae5ba4..4908ab43b908 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index e5c5045d36a0..ad5d8a514d0f 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 26aa550e7e06..61bc39809be5 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index d40461742de5..8f844d33be9e 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 18e1d1c8c3c5..d33baa9e0984 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index b75e75c86909..6d6c28b6a38f 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index c9137885f4ba..99be12b11a7d 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 7a7e3f63280e..9204a9a147c5 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index ee9a1ef57a73..60fcc4582f89 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 2a955b249eb4..73ff6992949f 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 1a829fafab97..faa366d22e96 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 9213497128a2..d998ffc16d71 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index cb0a3a976554..973a88deab2c 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 376dc64bb007..c41b811eae54 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index c75dd45130b5..e780cb983d32 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 55bc7c9df16f..bea1dc5f6345 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index ca11321db993..fcc91bd3a34a 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 129e75f88b09..a49991f44cfc 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 90529616488a..a38c351fb17e 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 34a386386901..ae2895c86406 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 5e7ee3bf35e8..3ebf895a7ec5 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 136257373920..1df156262381 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 174b27c50144..1f86626ffb98 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index dc78fda4d305..5a0ef4057e56 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index cf7e95dbc3a2..c40b0e00eeb6 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 49a7b46f3b0d..cf11e83efdf3 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index ec1f77a1f63b..d7ab8e7188e4 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 9e27e1b45c01..cfffff1371cb 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 7f73b1fbc9bd..72ff1b18f26d 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 867e672aa8cb..57b73b58030d 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 4518248cc7d3..d4f589368fbd 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index a02ae12f7105..1eea2fc4ce09 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 0468a42f1bd1..ee68eac2d528 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 6dcbbf06e1f4..50db77d785cd 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 6de05c200fcc..deb33267cd82 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index fe0c6c19851f..de15f8d09ce8 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index e6cab0512648..a57c95aa1a8e 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 4be79b46c022..dda94541721c 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index f145fce280df..f216e65a9055 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 5c95e7dc55c9..f15de4d9e3e1 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 1d7f46e07f97..afd098979e2b 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 8f22ecfe23fa..7dd81ebf3534 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 06567ea0a3a5..046311fe527d 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 75dd43767b62..7d44689928a3 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 716c717819ef..3165a3be465c 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index b7ab98e6e16a..e84e3006e4c9 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index d93b5d1ac2a8..9e8b5f1d8dc6 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 175a4bf00404..af100d4b7db4 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 8c47de51cca6..e8d313c8fdf7 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 37fd73c3880d..0d122d347c46 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 490dd2938385..7c9cc686db43 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 433e1c136a51..8126d2058d4e 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index c01e83858360..20213254042a 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 29fc4c35462a..133753793456 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 35c24db0d90e..140196805877 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index bd6c1f163ff1..d1ba675e6a1f 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 01f6b8d86a53..ad4a11f86fa3 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index c80732b08f0c..9e20ec3ee4ac 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 5f369ac0bc08..51d3c2f7ce4f 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 95697b0084b5..3bdd7b5430e5 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 18c5ff070605..35c9e5a437cd 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index cb58584f095c..06b7c59533df 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 4f84877d23d2..729bdfcdb4d7 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 42a9f8e82e59..65b484d73204 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index ac6a37d91ef8..e3681c39f0cf 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 5689fe64a4a7..954fb9d0fd4c 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 2a2718d76416..5f1a6bf01781 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 6c70b2a675ae..9dc6a7ad2449 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 6280fea4c874..eed36c0a8497 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index e3eaa03ae612..e4f4eb3776f8 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 6f5c1303ff87..6ec79b4609a6 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 7c4561394bc7..a7811a78369a 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index e12c5f91df95..83d701b86b31 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index a1267e3fe766..3299693607a5 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 02b7f1cf72c6..524a80564bd9 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 5c39c6558e23..5b0599e7c7b5 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 2be91481d02d..055365e7de60 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 29f95df019e9..736953899eed 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index e014a56ea684..4ca806eb13e9 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index ff381d5df75c..c34cbf324518 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 930ffd7ca2c0..75ad4a79c6a6 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 599a2781fedb..413cf228f15a 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 877c4d5e8261..ee5de5ef598c 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 272ef96d811f..1a260a464725 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 8cb4f9e56f3a..d209bfe82b6e 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 95280de54995..e7383802de1f 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index c269b71c0d36..aac115de62f6 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 336de933a426..0f78dfbf81dd 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 9e3b6ac1e80b..2ea1a0a4eaf0 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 7776743fbc52..f41a3fa1336c 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 11b9a09b3c78..d2c70ab1c0cb 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index b17353bf3ebe..6f6adadb772f 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 0832d8effaf6..ddf1a2f91de7 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index e2cf6be078f9..1fa23280a809 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.23 + 2.15.24-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index cb3c56dd5ceb..fd3c05e67196 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index d794cad9a78e..cbc56ea1de2e 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 655b5920738f..fc64da78dce5 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 321c16dbb4ec..5c6803810446 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 028c3d6f16a5..5e07d0420191 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 49ec95f0ac97..ac22cf7f64c7 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 877f4571d9b7..4f44f66fdac2 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index e7de6fd11a1e..a9e2c91a354e 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 44a26b5aefc7..8db600f19d83 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 597d1be6d86b..1d3e2cd0385e 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 98fcc4613cdf..8e1a2364343a 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index a12f360f5095..2bbfad196de5 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 627d9f8a92cd..aa0c0979e4d0 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 657e00a92c74..6bcdecdcad89 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index d7a87fdcb670..844c6f23bb8d 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 685594c80faf..30be3c46b434 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 8d83e5d37519..811b7d636b6b 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 13ca5c1f2052..b2c57d98d647 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 9bb9c21753a5..f74796403dbb 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 4f0610ab1197..36841c8e197c 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 54fd148c647d..e38cc2b38c4e 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 5b468946587b..70529a15d35b 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 21a075d212ad..1709bcb9b8ca 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index b728bfdef1ab..bc6c576ed025 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index a47e1292ada1..0dd4e58cf86b 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 65119e7d3a9c..a8b74097a756 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index b632d3935cd9..3ef13e4e8944 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index ed67480ac2ae..aca9ddfdc774 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index af71a2f27b1a..9de47b91d61d 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 91e934b9b05c..5b865111865a 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 8bdfd2deb026..aa1fdbbd340d 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index f515f3b64e92..1e1e92aaf40b 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 581ef1f3015b..7907502d799c 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 7774856c511c..3c456eb4b0fa 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 26db29168c69..53f105b9c76a 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 4948685cdffa..9600f08930c8 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index a98d37fd5159..c9be4cb321db 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 543aca5d8f52..5e4ed65165c2 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index bce83af56d5b..f0a8c5ea3019 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index a904099d9b97..0a1da5acd810 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 46a66c06fd09..be5244c910f7 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index be27ba752df7..dad03c54d2f8 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 3b36af67b789..906550b0336d 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index a20a631003c7..b12439b54210 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 41e0c4545789..13dcdb399ee2 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 00182e5cb69a..a9fc70e27bf2 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 98b993ba388d..5260b073594b 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 2d8b9c5a9d13..1e53415a2336 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index a1344bd137a2..11ae8b2fdb85 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 995c8141af91..28cf482139e2 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index acc4097d0f1f..d9ecbf71f998 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 48de5bdcd4f5..105a51a3e8bc 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 7fc587c7846b..aa8a74129619 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 82280e22bec3..58a7eaa6d327 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 8414a8bbcaf0..aa6d6acd86df 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index d6fa735e2fcd..06995a13efc8 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 489df33d6cba..ba32475df126 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index c87c6838aee5..46fb6c9eefc3 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index af54ad4a3c8e..b256a18a8ac2 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index f6d235be1b6f..053ea87ff8c5 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index bfbb03cfe234..02b4605ffdd2 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index f68e1252f880..28f9f3482715 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index c2e73a5b58a2..430ed050df53 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.23 + 2.15.24-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 5fe1806ebd35..1ec77ea46b05 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.15.23 + 2.15.24-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 5cb775dbc895..4c7b82361e68 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.15.23 + 2.15.24-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 9ca63952e682..c41327493336 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.15.23 + 2.15.24-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 5484b8226d17..c1aea73b2658 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.15.23 + 2.15.24-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 44bbaf2d4cbe..758be363c934 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.15.23 + 2.15.24-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 16d2c82b1101..913b863b3e03 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.23 + 2.15.24-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 3804423ff0a6..c0a3e7b1c0b9 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.15.23 + 2.15.24-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 10687fa7d644..9efd01f3903f 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.15.23 + 2.15.24-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index af087138fbd9..8f69ba001eb1 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.15.23 + 2.15.24-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 8b4f2c7be88c..521b588f06a8 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.15.23 + 2.15.24-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 30b827e6b0ab..21114140002a 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.23 + 2.15.24-SNAPSHOT 4.0.0 From 2d33b50a8dc8170932ba30db1d859c1363eb9f19 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 9 Nov 2020 17:10:25 +0000 Subject: [PATCH 149/339] Amazon FSx Update: This release adds support for creating DNS aliases for Amazon FSx for Windows File Server, and using AWS Backup to automate scheduled, policy-driven backup plans for Amazon FSx file systems. --- .../feature-AmazonFSx-907dfd6.json | 6 + .../codegen-resources/paginators-1.json | 5 + .../codegen-resources/service-2.json | 211 +++++++++++++++++- 3 files changed, 214 insertions(+), 8 deletions(-) create mode 100644 .changes/next-release/feature-AmazonFSx-907dfd6.json diff --git a/.changes/next-release/feature-AmazonFSx-907dfd6.json b/.changes/next-release/feature-AmazonFSx-907dfd6.json new file mode 100644 index 000000000000..7a04559faaca --- /dev/null +++ b/.changes/next-release/feature-AmazonFSx-907dfd6.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon FSx", + "contributor": "", + "description": "This release adds support for creating DNS aliases for Amazon FSx for Windows File Server, and using AWS Backup to automate scheduled, policy-driven backup plans for Amazon FSx file systems." +} diff --git a/services/fsx/src/main/resources/codegen-resources/paginators-1.json b/services/fsx/src/main/resources/codegen-resources/paginators-1.json index 43df3a5f3a7a..000eb57d5e80 100644 --- a/services/fsx/src/main/resources/codegen-resources/paginators-1.json +++ b/services/fsx/src/main/resources/codegen-resources/paginators-1.json @@ -10,6 +10,11 @@ "output_token": "NextToken", "limit_key": "MaxResults" }, + "DescribeFileSystemAliases": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults" + }, "DescribeFileSystems": { "input_token": "NextToken", "output_token": "NextToken", diff --git a/services/fsx/src/main/resources/codegen-resources/service-2.json b/services/fsx/src/main/resources/codegen-resources/service-2.json index 666b832558ef..fdb7d01cc1bb 100644 --- a/services/fsx/src/main/resources/codegen-resources/service-2.json +++ b/services/fsx/src/main/resources/codegen-resources/service-2.json @@ -13,6 +13,21 @@ "uid":"fsx-2018-03-01" }, "operations":{ + "AssociateFileSystemAliases":{ + "name":"AssociateFileSystemAliases", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"AssociateFileSystemAliasesRequest"}, + "output":{"shape":"AssociateFileSystemAliasesResponse"}, + "errors":[ + {"shape":"BadRequest"}, + {"shape":"FileSystemNotFound"}, + {"shape":"InternalServerError"} + ], + "documentation":"

Use this action to associate one or more Domain Name Server (DNS) aliases with an existing Amazon FSx for Windows File Server file system. A file systen can have a maximum of 50 DNS aliases associated with it at any one time. If you try to associate a DNS alias that is already associated with the file system, FSx takes no action on that alias in the request. For more information, see Working with DNS Aliases and Walkthrough 5: Using DNS aliases to access your file system, including additional steps you must take to be able to access your file system using a DNS alias.

The system response shows the DNS aliases that Amazon FSx is attempting to associate with the file system. Use the API operation to monitor the status of the aliases Amazon FSx is associating with the file system.

" + }, "CancelDataRepositoryTask":{ "name":"CancelDataRepositoryTask", "http":{ @@ -183,6 +198,21 @@ ], "documentation":"

Returns the description of specific Amazon FSx for Lustre data repository tasks, if one or more TaskIds values are provided in the request, or if filters are used in the request. You can use filters to narrow the response to include just tasks for specific file systems, or tasks in a specific lifecycle state. Otherwise, it returns all data repository tasks owned by your AWS account in the AWS Region of the endpoint that you're calling.

When retrieving all tasks, you can paginate the response by using the optional MaxResults parameter to limit the number of tasks returned in a response. If more tasks remain, Amazon FSx returns a NextToken value in the response. In this case, send a later request with the NextToken request parameter set to the value of NextToken from the last response.

" }, + "DescribeFileSystemAliases":{ + "name":"DescribeFileSystemAliases", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeFileSystemAliasesRequest"}, + "output":{"shape":"DescribeFileSystemAliasesResponse"}, + "errors":[ + {"shape":"BadRequest"}, + {"shape":"FileSystemNotFound"}, + {"shape":"InternalServerError"} + ], + "documentation":"

Returns the DNS aliases that are associated with the specified Amazon FSx for Windows File Server file system. A history of all DNS aliases that have been associated with and disassociated from the file system is available in the list of AdministrativeAction provided in the DescribeFileSystems operation response.

" + }, "DescribeFileSystems":{ "name":"DescribeFileSystems", "http":{ @@ -198,6 +228,21 @@ ], "documentation":"

Returns the description of specific Amazon FSx file systems, if a FileSystemIds value is provided for that file system. Otherwise, it returns descriptions of all file systems owned by your AWS account in the AWS Region of the endpoint that you're calling.

When retrieving all file system descriptions, you can optionally specify the MaxResults parameter to limit the number of descriptions in a response. If more file system descriptions remain, Amazon FSx returns a NextToken value in the response. In this case, send a later request with the NextToken request parameter set to the value of NextToken from the last response.

This action is used in an iterative process to retrieve a list of your file system descriptions. DescribeFileSystems is called first without a NextTokenvalue. Then the action continues to be called with the NextToken parameter set to the value of the last NextToken value until a response has no NextToken.

When using this action, keep the following in mind:

  • The implementation might return fewer than MaxResults file system descriptions while still including a NextToken value.

  • The order of file systems returned in the response of one DescribeFileSystems call and the order of file systems returned across the responses of a multicall iteration is unspecified.

" }, + "DisassociateFileSystemAliases":{ + "name":"DisassociateFileSystemAliases", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DisassociateFileSystemAliasesRequest"}, + "output":{"shape":"DisassociateFileSystemAliasesResponse"}, + "errors":[ + {"shape":"BadRequest"}, + {"shape":"FileSystemNotFound"}, + {"shape":"InternalServerError"} + ], + "documentation":"

Use this action to disassociate, or remove, one or more Domain Name Service (DNS) aliases from an Amazon FSx for Windows File Server file system. If you attempt to disassociate a DNS alias that is not associated with the file system, Amazon FSx responds with a 400 Bad Request. For more information, see Working with DNS Aliases.

The system generated response showing the DNS aliases that Amazon FSx is attempting to disassociate from the file system. Use the API operation to monitor the status of the aliases Amazon FSx is disassociating with the file system.

" + }, "ListTagsForResource":{ "name":"ListTagsForResource", "http":{ @@ -332,7 +377,7 @@ "AdministrativeActionType":{"shape":"AdministrativeActionType"}, "ProgressPercent":{ "shape":"ProgressPercent", - "documentation":"

Provides the percent complete of a STORAGE_OPTIMIZATION administrative action.

" + "documentation":"

Provides the percent complete of a STORAGE_OPTIMIZATION administrative action. Does not apply to any other administrative action type.

" }, "RequestTime":{ "shape":"RequestTime", @@ -344,7 +389,7 @@ }, "TargetFileSystemValues":{ "shape":"FileSystem", - "documentation":"

Describes the target StorageCapacity or ThroughputCapacity value provided in the UpdateFileSystem operation. Returned for FILE_SYSTEM_UPDATE administrative actions.

" + "documentation":"

Describes the target value for the administration action, provided in the UpdateFileSystem operation. Returned for FILE_SYSTEM_UPDATE administrative actions.

" }, "FailureDetails":{"shape":"AdministrativeActionFailureDetails"} }, @@ -355,17 +400,19 @@ "members":{ "Message":{ "shape":"ErrorMessage", - "documentation":"

Error message providing details about the failure.

" + "documentation":"

Error message providing details about the failed administrative action.

" } }, "documentation":"

Provides information about a failed administrative action.

" }, "AdministrativeActionType":{ "type":"string", - "documentation":"

Describes the type of administrative action, as follows:

  • FILE_SYSTEM_UPDATE - A file system update administrative action initiated by the user from the Amazon FSx console, API (UpdateFileSystem), or CLI (update-file-system). A

  • STORAGE_OPTIMIZATION - Once the FILE_SYSTEM_UPDATE task to increase a file system's storage capacity completes successfully, a STORAGE_OPTIMIZATION task starts. Storage optimization is the process of migrating the file system data to the new, larger disks. You can track the storage migration progress using the ProgressPercent property. When STORAGE_OPTIMIZATION completes successfully, the parent FILE_SYSTEM_UPDATE action status changes to COMPLETED. For more information, see Managing Storage Capacity.

", + "documentation":"

Describes the type of administrative action, as follows:

  • FILE_SYSTEM_UPDATE - A file system update administrative action initiated by the user from the Amazon FSx console, API (UpdateFileSystem), or CLI (update-file-system).

  • STORAGE_OPTIMIZATION - Once the FILE_SYSTEM_UPDATE task to increase a file system's storage capacity completes successfully, a STORAGE_OPTIMIZATION task starts. Storage optimization is the process of migrating the file system data to the new, larger disks. You can track the storage migration progress using the ProgressPercent property. When STORAGE_OPTIMIZATION completes successfully, the parent FILE_SYSTEM_UPDATE action status changes to COMPLETED. For more information, see Managing Storage Capacity.

  • FILE_SYSTEM_ALIAS_ASSOCIATION - A file system update to associate a new DNS alias with the file system. For more information, see .

  • FILE_SYSTEM_ALIAS_DISASSOCIATION - A file system update to disassociate a DNS alias from the file system. For more information, see .

", "enum":[ "FILE_SYSTEM_UPDATE", - "STORAGE_OPTIMIZATION" + "STORAGE_OPTIMIZATION", + "FILE_SYSTEM_ALIAS_ASSOCIATION", + "FILE_SYSTEM_ALIAS_DISASSOCIATION" ] }, "AdministrativeActions":{ @@ -373,12 +420,85 @@ "member":{"shape":"AdministrativeAction"}, "max":50 }, + "Alias":{ + "type":"structure", + "members":{ + "Name":{ + "shape":"AlternateDNSName", + "documentation":"

The name of the DNS alias. The alias name has to meet the following requirements:

  • Formatted as a fully-qualified domain name (FQDN), hostname.domain, for example, accounting.example.com.

  • Can contain alphanumeric characters and the hyphen (-).

  • Cannot start or end with a hyphen.

  • Can start with a numeric.

For DNS names, Amazon FSx stores alphabetic characters as lowercase letters (a-z), regardless of how you specify them: as uppercase letters, lowercase letters, or the corresponding letters in escape codes.

" + }, + "Lifecycle":{ + "shape":"AliasLifecycle", + "documentation":"

Describes the state of the DNS alias.

  • AVAILABLE - The DNS alias is associated with an Amazon FSx file system.

  • CREATING - Amazon FSx is creating the DNS alias and associating it with the file system.

  • CREATE_FAILED - Amazon FSx was unable to associate the DNS alias with the file system.

  • DELETING - Amazon FSx is disassociating the DNS alias from the file system and deleting it.

  • DELETE_FAILED - Amazon FSx was unable to disassocate the DNS alias from the file system.

" + } + }, + "documentation":"

A DNS alias that is associated with the file system. You can use a DNS alias to access a file system using user-defined DNS names, in addition to the default DNS name that Amazon FSx assigns to the file system. For more information, see DNS aliases in the FSx for Windows File Server User Guide.

" + }, + "AliasLifecycle":{ + "type":"string", + "enum":[ + "AVAILABLE", + "CREATING", + "DELETING", + "CREATE_FAILED", + "DELETE_FAILED" + ] + }, + "Aliases":{ + "type":"list", + "member":{"shape":"Alias"}, + "documentation":"

An array of one or more DNS aliases that are currently associated with the Amazon FSx file system. Aliases allow you to use existing DNS names to access the data in your Amazon FSx file system. You can associate up to 50 aliases with a file system at any time. You can associate additional DNS aliases after you create the file system using the AssociateFileSystemAliases operation. You can remove DNS aliases from the file system after it is created using the DisassociateFileSystemAliases operation. You only need to specify the alias name in the request payload. For more information, see DNS aliases.

", + "max":50 + }, + "AlternateDNSName":{ + "type":"string", + "max":253, + "min":4, + "pattern":"^[^\\u0000\\u0085\\u2028\\u2029\\r\\n]{4,253}$" + }, + "AlternateDNSNames":{ + "type":"list", + "member":{"shape":"AlternateDNSName"}, + "max":50 + }, "ArchivePath":{ "type":"string", - "max":900, + "max":4357, "min":3, "pattern":"^[^\\u0000\\u0085\\u2028\\u2029\\r\\n]{3,4357}$" }, + "AssociateFileSystemAliasesRequest":{ + "type":"structure", + "required":[ + "FileSystemId", + "Aliases" + ], + "members":{ + "ClientRequestToken":{ + "shape":"ClientRequestToken", + "idempotencyToken":true + }, + "FileSystemId":{ + "shape":"FileSystemId", + "documentation":"

Specifies the file system with which you want to associate one or more DNS aliases.

" + }, + "Aliases":{ + "shape":"AlternateDNSNames", + "documentation":"

An array of one or more DNS alias names to associate with the file system. The alias name has to comply with the following formatting requirements:

  • Formatted as a fully-qualified domain name (FQDN), hostname.domain , for example, accounting.corp.example.com.

  • Can contain alphanumeric characters and the hyphen (-).

  • Cannot start or end with a hyphen.

  • Can start with a numeric.

For DNS alias names, Amazon FSx stores alphabetic characters as lowercase letters (a-z), regardless of how you specify them: as uppercase letters, lowercase letters, or the corresponding letters in escape codes.

" + } + }, + "documentation":"

The request object specifying one or more DNS alias names to associate with an Amazon FSx for Windows File Server file system.

" + }, + "AssociateFileSystemAliasesResponse":{ + "type":"structure", + "members":{ + "Aliases":{ + "shape":"Aliases", + "documentation":"

An array of the DNS aliases that Amazon FSx is associating with the file system.

" + } + }, + "documentation":"

The system generated response showing the DNS aliases that Amazon FSx is attempting to associate with the file system. Use the API operation to monitor the status of the aliases Amazon FSx is associating with the file system. It can take up to 2.5 minutes for the alias status to change from CREATING to AVAILABLE.

" + }, "AutoImportPolicyType":{ "type":"string", "enum":[ @@ -514,7 +634,8 @@ "documentation":"

The type of the backup.

", "enum":[ "AUTOMATIC", - "USER_INITIATED" + "USER_INITIATED", + "AWS_BACKUP" ] }, "Backups":{ @@ -835,6 +956,10 @@ "CopyTagsToBackups":{ "shape":"Flag", "documentation":"

A boolean flag indicating whether tags for the file system should be copied to backups. This value defaults to false. If it's set to true, all tags for the file system are copied to all automatic and user-initiated backups where the user doesn't specify tags. If this value is true, and you specify one or more tags, only the specified tags are copied to backups. If you specify one or more tags when creating a user-initiated backup, no tags are copied from the file system, regardless of this value.

" + }, + "Aliases":{ + "shape":"AlternateDNSNames", + "documentation":"

An array of one or more DNS alias names that you want to associate with the Amazon FSx file system. Aliases allow you to use existing DNS names to access the data in your Amazon FSx file system. You can associate up to 50 aliases with a file system at any time. You can associate additional DNS aliases after you create the file system using the AssociateFileSystemAliases operation. You can remove DNS aliases from the file system after it is created using the DisassociateFileSystemAliases operation. You only need to specify the alias name in the request payload.

For more information, see Working with DNS Aliases and Walkthrough 5: Using DNS aliases to access your file system, including additional steps you must take to be able to access your file system using a DNS alias.

An alias name has to meet the following requirements:

  • Formatted as a fully-qualified domain name (FQDN), hostname.domain, for example, accounting.example.com.

  • Can contain alphanumeric characters and the hyphen (-).

  • Cannot start or end with a hyphen.

  • Can start with a numeric.

For DNS alias names, Amazon FSx stores alphabetic characters as lowercase letters (a-z), regardless of how you specify them: as uppercase letters, lowercase letters, or the corresponding letters in escape codes.

" } }, "documentation":"

The configuration object for the Microsoft Windows file system used in CreateFileSystem and CreateFileSystemFromBackup operations.

" @@ -1253,6 +1378,43 @@ "NextToken":{"shape":"NextToken"} } }, + "DescribeFileSystemAliasesRequest":{ + "type":"structure", + "required":["FileSystemId"], + "members":{ + "ClientRequestToken":{ + "shape":"ClientRequestToken", + "idempotencyToken":true + }, + "FileSystemId":{ + "shape":"FileSystemId", + "documentation":"

The ID of the file system to return the associated DNS aliases for (String).

" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

Maximum number of DNS aliases to return in the response (integer). This parameter value must be greater than 0. The number of items that Amazon FSx returns is the minimum of the MaxResults parameter specified in the request and the service's internal maximum number of items per page.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

Opaque pagination token returned from a previous DescribeFileSystemAliases operation (String). If a token is included in the request, the action continues the list from where the previous returning call left off.

" + } + }, + "documentation":"

The request object for DescribeFileSystemAliases operation.

" + }, + "DescribeFileSystemAliasesResponse":{ + "type":"structure", + "members":{ + "Aliases":{ + "shape":"Aliases", + "documentation":"

An array of one or more DNS aliases currently associated with the specified file system.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

Present if there are more DNS aliases than returned in the response (String). You can use the NextToken value in a later request to fetch additional descriptions.

" + } + }, + "documentation":"

The response object for DescribeFileSystemAliases operation.

" + }, "DescribeFileSystemsRequest":{ "type":"structure", "members":{ @@ -1304,6 +1466,38 @@ "min":1, "pattern":"^[^\\u0000\\u0085\\u2028\\u2029\\r\\n]{1,256}$" }, + "DisassociateFileSystemAliasesRequest":{ + "type":"structure", + "required":[ + "FileSystemId", + "Aliases" + ], + "members":{ + "ClientRequestToken":{ + "shape":"ClientRequestToken", + "idempotencyToken":true + }, + "FileSystemId":{ + "shape":"FileSystemId", + "documentation":"

Specifies the file system from which to disassociate the DNS aliases.

" + }, + "Aliases":{ + "shape":"AlternateDNSNames", + "documentation":"

An array of one or more DNS alias names to disassociate, or remove, from the file system.

" + } + }, + "documentation":"

The request object of DNS aliases to disassociate from an Amazon FSx for Windows File Server file system.

" + }, + "DisassociateFileSystemAliasesResponse":{ + "type":"structure", + "members":{ + "Aliases":{ + "shape":"Aliases", + "documentation":"

An array of one or more DNS aliases that Amazon FSx is attempting to disassociate from the file system.

" + } + }, + "documentation":"

The system generated response showing the DNS aliases that Amazon FSx is attempting to disassociate from the file system. Use the API operation to monitor the status of the aliases Amazon FSx is removing from the file system.

" + }, "DnsIps":{ "type":"list", "member":{"shape":"IpAddress"}, @@ -2204,7 +2398,8 @@ "CopyTagsToBackups":{ "shape":"Flag", "documentation":"

A boolean flag indicating whether tags on the file system should be copied to backups. This value defaults to false. If it's set to true, all tags on the file system are copied to all automatic backups and any user-initiated backups where the user doesn't specify any tags. If this value is true, and you specify one or more tags, only the specified tags are copied to backups. If you specify one or more tags when creating a user-initiated backup, no tags are copied from the file system, regardless of this value.

" - } + }, + "Aliases":{"shape":"Aliases"} }, "documentation":"

The configuration for this Microsoft Windows file system.

" } From 696f01e310332a55ceee19a0a8f7ac166efecc69 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 9 Nov 2020 17:10:29 +0000 Subject: [PATCH 150/339] Amazon Simple Storage Service Update: S3 Intelligent-Tiering adds support for Archive and Deep Archive Access tiers; S3 Replication adds replication metrics and failure notifications, brings feature parity for delete marker replication --- ...re-AmazonSimpleStorageService-09d20af.json | 6 + .../codegen-resources/service-2.json | 324 +++++++++++++++++- 2 files changed, 311 insertions(+), 19 deletions(-) create mode 100644 .changes/next-release/feature-AmazonSimpleStorageService-09d20af.json diff --git a/.changes/next-release/feature-AmazonSimpleStorageService-09d20af.json b/.changes/next-release/feature-AmazonSimpleStorageService-09d20af.json new file mode 100644 index 000000000000..31d15de32a22 --- /dev/null +++ b/.changes/next-release/feature-AmazonSimpleStorageService-09d20af.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Simple Storage Service", + "contributor": "", + "description": "S3 Intelligent-Tiering adds support for Archive and Deep Archive Access tiers; S3 Replication adds replication metrics and failure notifications, brings feature parity for delete marker replication" +} diff --git a/services/s3/src/main/resources/codegen-resources/service-2.json b/services/s3/src/main/resources/codegen-resources/service-2.json index f4d01e982985..22fa6397254f 100644 --- a/services/s3/src/main/resources/codegen-resources/service-2.json +++ b/services/s3/src/main/resources/codegen-resources/service-2.json @@ -124,6 +124,16 @@ "input":{"shape":"DeleteBucketEncryptionRequest"}, "documentation":"

This implementation of the DELETE operation removes default encryption from the bucket. For information about the Amazon S3 default encryption feature, see Amazon S3 Default Bucket Encryption in the Amazon Simple Storage Service Developer Guide.

To use this operation, you must have permissions to perform the s3:PutEncryptionConfiguration action. The bucket owner has this permission by default. The bucket owner can grant this permission to others. For more information about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to your Amazon S3 Resources in the Amazon Simple Storage Service Developer Guide.

Related Resources

" }, + "DeleteBucketIntelligentTieringConfiguration":{ + "name":"DeleteBucketIntelligentTieringConfiguration", + "http":{ + "method":"DELETE", + "requestUri":"/{Bucket}?intelligent-tiering", + "responseCode":204 + }, + "input":{"shape":"DeleteBucketIntelligentTieringConfigurationRequest"}, + "documentation":"

Deletes the S3 Intelligent-Tiering configuration from the specified bucket.

The S3 Intelligent-Tiering storage class is designed to optimize storage costs by automatically moving data to the most cost-effective storage access tier, without additional operational overhead. S3 Intelligent-Tiering delivers automatic cost savings by moving data between access tiers, when access patterns change.

The S3 Intelligent-Tiering storage class is suitable for objects larger than 128 KB that you plan to store for at least 30 days. If the size of an object is less than 128 KB, it is not eligible for auto-tiering. Smaller objects can be stored, but they are always charged at the frequent access tier rates in the S3 Intelligent-Tiering storage class.

If you delete an object before the end of the 30-day minimum storage duration period, you are charged for 30 days. For more information, see Storage class for automatically optimizing frequently and infrequently accessed objects.

Operations related to DeleteBucketIntelligentTieringConfiguration include:

" + }, "DeleteBucketInventoryConfiguration":{ "name":"DeleteBucketInventoryConfiguration", "http":{ @@ -306,6 +316,16 @@ "output":{"shape":"GetBucketEncryptionOutput"}, "documentation":"

Returns the default encryption configuration for an Amazon S3 bucket. For information about the Amazon S3 default encryption feature, see Amazon S3 Default Bucket Encryption.

To use this operation, you must have permission to perform the s3:GetEncryptionConfiguration action. The bucket owner has this permission by default. The bucket owner can grant this permission to others. For more information about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3 Resources.

The following operations are related to GetBucketEncryption:

" }, + "GetBucketIntelligentTieringConfiguration":{ + "name":"GetBucketIntelligentTieringConfiguration", + "http":{ + "method":"GET", + "requestUri":"/{Bucket}?intelligent-tiering" + }, + "input":{"shape":"GetBucketIntelligentTieringConfigurationRequest"}, + "output":{"shape":"GetBucketIntelligentTieringConfigurationOutput"}, + "documentation":"

Gets the S3 Intelligent-Tiering configuration from the specified bucket.

The S3 Intelligent-Tiering storage class is designed to optimize storage costs by automatically moving data to the most cost-effective storage access tier, without additional operational overhead. S3 Intelligent-Tiering delivers automatic cost savings by moving data between access tiers, when access patterns change.

The S3 Intelligent-Tiering storage class is suitable for objects larger than 128 KB that you plan to store for at least 30 days. If the size of an object is less than 128 KB, it is not eligible for auto-tiering. Smaller objects can be stored, but they are always charged at the frequent access tier rates in the S3 Intelligent-Tiering storage class.

If you delete an object before the end of the 30-day minimum storage duration period, you are charged for 30 days. For more information, see Storage class for automatically optimizing frequently and infrequently accessed objects.

Operations related to GetBucketIntelligentTieringConfiguration include:

" + }, "GetBucketInventoryConfiguration":{ "name":"GetBucketInventoryConfiguration", "http":{ @@ -486,10 +506,11 @@ "input":{"shape":"GetObjectRequest"}, "output":{"shape":"GetObjectOutput"}, "errors":[ - {"shape":"NoSuchKey"} + {"shape":"NoSuchKey"}, + {"shape":"InvalidObjectState"} ], "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectGET.html", - "documentation":"

Retrieves objects from Amazon S3. To use GET, you must have READ access to the object. If you grant READ access to the anonymous user, you can return the object without using an authorization header.

An Amazon S3 bucket has no directory hierarchy such as you would find in a typical computer file system. You can, however, create a logical hierarchy by using object key names that imply a folder structure. For example, instead of naming an object sample.jpg, you can name it photos/2006/February/sample.jpg.

To get an object from such a logical hierarchy, specify the full key name for the object in the GET operation. For a virtual hosted-style request example, if you have the object photos/2006/February/sample.jpg, specify the resource as /photos/2006/February/sample.jpg. For a path-style request example, if you have the object photos/2006/February/sample.jpg in the bucket named examplebucket, specify the resource as /examplebucket/photos/2006/February/sample.jpg. For more information about request types, see HTTP Host Header Bucket Specification.

To distribute large files to many people, you can save bandwidth costs by using BitTorrent. For more information, see Amazon S3 Torrent. For more information about returning the ACL of an object, see GetObjectAcl.

If the object you are retrieving is stored in the GLACIER or DEEP_ARCHIVE storage classes, before you can retrieve the object you must first restore a copy using RestoreObject. Otherwise, this operation returns an InvalidObjectStateError error. For information about restoring archived objects, see Restoring Archived Objects.

Encryption request headers, like x-amz-server-side-encryption, should not be sent for GET requests if your object uses server-side encryption with CMKs stored in AWS KMS (SSE-KMS) or server-side encryption with Amazon S3–managed encryption keys (SSE-S3). If your object does use these types of keys, you’ll get an HTTP 400 BadRequest error.

If you encrypt an object by using server-side encryption with customer-provided encryption keys (SSE-C) when you store the object in Amazon S3, then when you GET the object, you must use the following headers:

  • x-amz-server-side-encryption-customer-algorithm

  • x-amz-server-side-encryption-customer-key

  • x-amz-server-side-encryption-customer-key-MD5

For more information about SSE-C, see Server-Side Encryption (Using Customer-Provided Encryption Keys).

Assuming you have permission to read object tags (permission for the s3:GetObjectVersionTagging action), the response also returns the x-amz-tagging-count header that provides the count of number of tags associated with the object. You can use GetObjectTagging to retrieve the tag set associated with an object.

Permissions

You need the s3:GetObject permission for this operation. For more information, see Specifying Permissions in a Policy. If the object you request does not exist, the error Amazon S3 returns depends on whether you also have the s3:ListBucket permission.

  • If you have the s3:ListBucket permission on the bucket, Amazon S3 will return an HTTP status code 404 (\"no such key\") error.

  • If you don’t have the s3:ListBucket permission, Amazon S3 will return an HTTP status code 403 (\"access denied\") error.

Versioning

By default, the GET operation returns the current version of an object. To return a different version, use the versionId subresource.

If the current version of the object is a delete marker, Amazon S3 behaves as if the object was deleted and includes x-amz-delete-marker: true in the response.

For more information about versioning, see PutBucketVersioning.

Overriding Response Header Values

There are times when you want to override certain response header values in a GET response. For example, you might override the Content-Disposition response header value in your GET request.

You can override values for a set of response headers using the following query parameters. These response header values are sent only on a successful request, that is, when status code 200 OK is returned. The set of headers you can override using these parameters is a subset of the headers that Amazon S3 accepts when you create an object. The response headers that you can override for the GET response are Content-Type, Content-Language, Expires, Cache-Control, Content-Disposition, and Content-Encoding. To override these header values in the GET response, you use the following request parameters.

You must sign the request, either using an Authorization header or a presigned URL, when using these parameters. They cannot be used with an unsigned (anonymous) request.

  • response-content-type

  • response-content-language

  • response-expires

  • response-cache-control

  • response-content-disposition

  • response-content-encoding

Additional Considerations about Request Headers

If both of the If-Match and If-Unmodified-Since headers are present in the request as follows: If-Match condition evaluates to true, and; If-Unmodified-Since condition evaluates to false; then, S3 returns 200 OK and the data requested.

If both of the If-None-Match and If-Modified-Since headers are present in the request as follows: If-None-Match condition evaluates to false, and; If-Modified-Since condition evaluates to true; then, S3 returns 304 Not Modified response code.

For more information about conditional requests, see RFC 7232.

The following operations are related to GetObject:

" + "documentation":"

Retrieves objects from Amazon S3. To use GET, you must have READ access to the object. If you grant READ access to the anonymous user, you can return the object without using an authorization header.

An Amazon S3 bucket has no directory hierarchy such as you would find in a typical computer file system. You can, however, create a logical hierarchy by using object key names that imply a folder structure. For example, instead of naming an object sample.jpg, you can name it photos/2006/February/sample.jpg.

To get an object from such a logical hierarchy, specify the full key name for the object in the GET operation. For a virtual hosted-style request example, if you have the object photos/2006/February/sample.jpg, specify the resource as /photos/2006/February/sample.jpg. For a path-style request example, if you have the object photos/2006/February/sample.jpg in the bucket named examplebucket, specify the resource as /examplebucket/photos/2006/February/sample.jpg. For more information about request types, see HTTP Host Header Bucket Specification.

To distribute large files to many people, you can save bandwidth costs by using BitTorrent. For more information, see Amazon S3 Torrent. For more information about returning the ACL of an object, see GetObjectAcl.

If the object you are retrieving is stored in the S3 Glacier, S3 Glacier Deep Archive, S3 Intelligent-Tiering Archive, or S3 Intelligent-Tiering Deep Archive storage classes, before you can retrieve the object you must first restore a copy using RestoreObject. Otherwise, this operation returns an InvalidObjectStateError error. For information about restoring archived objects, see Restoring Archived Objects.

Encryption request headers, like x-amz-server-side-encryption, should not be sent for GET requests if your object uses server-side encryption with CMKs stored in AWS KMS (SSE-KMS) or server-side encryption with Amazon S3–managed encryption keys (SSE-S3). If your object does use these types of keys, you’ll get an HTTP 400 BadRequest error.

If you encrypt an object by using server-side encryption with customer-provided encryption keys (SSE-C) when you store the object in Amazon S3, then when you GET the object, you must use the following headers:

  • x-amz-server-side-encryption-customer-algorithm

  • x-amz-server-side-encryption-customer-key

  • x-amz-server-side-encryption-customer-key-MD5

For more information about SSE-C, see Server-Side Encryption (Using Customer-Provided Encryption Keys).

Assuming you have permission to read object tags (permission for the s3:GetObjectVersionTagging action), the response also returns the x-amz-tagging-count header that provides the count of number of tags associated with the object. You can use GetObjectTagging to retrieve the tag set associated with an object.

Permissions

You need the s3:GetObject permission for this operation. For more information, see Specifying Permissions in a Policy. If the object you request does not exist, the error Amazon S3 returns depends on whether you also have the s3:ListBucket permission.

  • If you have the s3:ListBucket permission on the bucket, Amazon S3 will return an HTTP status code 404 (\"no such key\") error.

  • If you don’t have the s3:ListBucket permission, Amazon S3 will return an HTTP status code 403 (\"access denied\") error.

Versioning

By default, the GET operation returns the current version of an object. To return a different version, use the versionId subresource.

If the current version of the object is a delete marker, Amazon S3 behaves as if the object was deleted and includes x-amz-delete-marker: true in the response.

For more information about versioning, see PutBucketVersioning.

Overriding Response Header Values

There are times when you want to override certain response header values in a GET response. For example, you might override the Content-Disposition response header value in your GET request.

You can override values for a set of response headers using the following query parameters. These response header values are sent only on a successful request, that is, when status code 200 OK is returned. The set of headers you can override using these parameters is a subset of the headers that Amazon S3 accepts when you create an object. The response headers that you can override for the GET response are Content-Type, Content-Language, Expires, Cache-Control, Content-Disposition, and Content-Encoding. To override these header values in the GET response, you use the following request parameters.

You must sign the request, either using an Authorization header or a presigned URL, when using these parameters. They cannot be used with an unsigned (anonymous) request.

  • response-content-type

  • response-content-language

  • response-expires

  • response-cache-control

  • response-content-disposition

  • response-content-encoding

Additional Considerations about Request Headers

If both of the If-Match and If-Unmodified-Since headers are present in the request as follows: If-Match condition evaluates to true, and; If-Unmodified-Since condition evaluates to false; then, S3 returns 200 OK and the data requested.

If both of the If-None-Match and If-Modified-Since headers are present in the request as follows: If-None-Match condition evaluates to false, and; If-Modified-Since condition evaluates to true; then, S3 returns 304 Not Modified response code.

For more information about conditional requests, see RFC 7232.

The following operations are related to GetObject:

" }, "GetObjectAcl":{ "name":"GetObjectAcl", @@ -603,6 +624,16 @@ "output":{"shape":"ListBucketAnalyticsConfigurationsOutput"}, "documentation":"

Lists the analytics configurations for the bucket. You can have up to 1,000 analytics configurations per bucket.

This operation supports list pagination and does not return more than 100 configurations at a time. You should always check the IsTruncated element in the response. If there are no more configurations to list, IsTruncated is set to false. If there are more configurations to list, IsTruncated is set to true, and there will be a value in NextContinuationToken. You use the NextContinuationToken value to continue the pagination of the list by passing the value in continuation-token in the request to GET the next page.

To use this operation, you must have permissions to perform the s3:GetAnalyticsConfiguration action. The bucket owner has this permission by default. The bucket owner can grant this permission to others. For more information about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3 Resources.

For information about Amazon S3 analytics feature, see Amazon S3 Analytics – Storage Class Analysis.

The following operations are related to ListBucketAnalyticsConfigurations:

" }, + "ListBucketIntelligentTieringConfigurations":{ + "name":"ListBucketIntelligentTieringConfigurations", + "http":{ + "method":"GET", + "requestUri":"/{Bucket}?intelligent-tiering" + }, + "input":{"shape":"ListBucketIntelligentTieringConfigurationsRequest"}, + "output":{"shape":"ListBucketIntelligentTieringConfigurationsOutput"}, + "documentation":"

Lists the S3 Intelligent-Tiering configuration from the specified bucket.

The S3 Intelligent-Tiering storage class is designed to optimize storage costs by automatically moving data to the most cost-effective storage access tier, without additional operational overhead. S3 Intelligent-Tiering delivers automatic cost savings by moving data between access tiers, when access patterns change.

The S3 Intelligent-Tiering storage class is suitable for objects larger than 128 KB that you plan to store for at least 30 days. If the size of an object is less than 128 KB, it is not eligible for auto-tiering. Smaller objects can be stored, but they are always charged at the frequent access tier rates in the S3 Intelligent-Tiering storage class.

If you delete an object before the end of the 30-day minimum storage duration period, you are charged for 30 days. For more information, see Storage class for automatically optimizing frequently and infrequently accessed objects.

Operations related to ListBucketIntelligentTieringConfigurations include:

" + }, "ListBucketInventoryConfigurations":{ "name":"ListBucketInventoryConfigurations", "http":{ @@ -746,6 +777,15 @@ "documentation":"

This implementation of the PUT operation uses the encryption subresource to set the default encryption state of an existing bucket.

This implementation of the PUT operation sets default encryption for a bucket using server-side encryption with Amazon S3-managed keys SSE-S3 or AWS KMS customer master keys (CMKs) (SSE-KMS). For information about the Amazon S3 default encryption feature, see Amazon S3 Default Bucket Encryption.

This operation requires AWS Signature Version 4. For more information, see Authenticating Requests (AWS Signature Version 4).

To use this operation, you must have permissions to perform the s3:PutEncryptionConfiguration action. The bucket owner has this permission by default. The bucket owner can grant this permission to others. For more information about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3 Resources in the Amazon Simple Storage Service Developer Guide.

Related Resources

", "httpChecksumRequired":true }, + "PutBucketIntelligentTieringConfiguration":{ + "name":"PutBucketIntelligentTieringConfiguration", + "http":{ + "method":"PUT", + "requestUri":"/{Bucket}?intelligent-tiering" + }, + "input":{"shape":"PutBucketIntelligentTieringConfigurationRequest"}, + "documentation":"

Puts a S3 Intelligent-Tiering configuration to the specified bucket.

The S3 Intelligent-Tiering storage class is designed to optimize storage costs by automatically moving data to the most cost-effective storage access tier, without additional operational overhead. S3 Intelligent-Tiering delivers automatic cost savings by moving data between access tiers, when access patterns change.

The S3 Intelligent-Tiering storage class is suitable for objects larger than 128 KB that you plan to store for at least 30 days. If the size of an object is less than 128 KB, it is not eligible for auto-tiering. Smaller objects can be stored, but they are always charged at the frequent access tier rates in the S3 Intelligent-Tiering storage class.

If you delete an object before the end of the 30-day minimum storage duration period, you are charged for 30 days. For more information, see Storage class for automatically optimizing frequently and infrequently accessed objects.

Operations related to PutBucketIntelligentTieringConfiguration include:

" + }, "PutBucketInventoryConfiguration":{ "name":"PutBucketInventoryConfiguration", "http":{ @@ -825,7 +865,7 @@ "requestUri":"/{Bucket}?ownershipControls" }, "input":{"shape":"PutBucketOwnershipControlsRequest"}, - "documentation":"

Creates or modifies OwnershipControls for an Amazon S3 bucket. To use this operation, you must have the s3:GetBucketOwnershipControls permission. For more information about Amazon S3 permissions, see Specifying Permissions in a Policy.

For information about Amazon S3 Object Ownership, see Using Object Ownership.

The following operations are related to GetBucketOwnershipControls:

" + "documentation":"

Creates or modifies OwnershipControls for an Amazon S3 bucket. To use this operation, you must have the s3:PutBucketOwnershipControls permission. For more information about Amazon S3 permissions, see Specifying Permissions in a Policy.

For information about Amazon S3 Object Ownership, see Using Object Ownership.

The following operations are related to PutBucketOwnershipControls:

" }, "PutBucketPolicy":{ "name":"PutBucketPolicy", @@ -984,7 +1024,7 @@ {"shape":"ObjectAlreadyInActiveTierError"} ], "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectRestore.html", - "documentation":"

Restores an archived copy of an object back into Amazon S3

This action is not supported by Amazon S3 on Outposts.

This action performs the following types of requests:

  • select - Perform a select query on an archived object

  • restore an archive - Restore an archived object

To use this operation, you must have permissions to perform the s3:RestoreObject action. The bucket owner has this permission by default and can grant this permission to others. For more information about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3 Resources in the Amazon Simple Storage Service Developer Guide.

Querying Archives with Select Requests

You use a select type of request to perform SQL queries on archived objects. The archived objects that are being queried by the select request must be formatted as uncompressed comma-separated values (CSV) files. You can run queries and custom analytics on your archived data without having to restore your data to a hotter Amazon S3 tier. For an overview about select requests, see Querying Archived Objects in the Amazon Simple Storage Service Developer Guide.

When making a select request, do the following:

  • Define an output location for the select query's output. This must be an Amazon S3 bucket in the same AWS Region as the bucket that contains the archive object that is being queried. The AWS account that initiates the job must have permissions to write to the S3 bucket. You can specify the storage class and encryption for the output objects stored in the bucket. For more information about output, see Querying Archived Objects in the Amazon Simple Storage Service Developer Guide.

    For more information about the S3 structure in the request body, see the following:

  • Define the SQL expression for the SELECT type of restoration for your query in the request body's SelectParameters structure. You can use expressions like the following examples.

    • The following expression returns all records from the specified object.

      SELECT * FROM Object

    • Assuming that you are not using any headers for data stored in the object, you can specify columns with positional headers.

      SELECT s._1, s._2 FROM Object s WHERE s._3 > 100

    • If you have headers and you set the fileHeaderInfo in the CSV structure in the request body to USE, you can specify headers in the query. (If you set the fileHeaderInfo field to IGNORE, the first row is skipped for the query.) You cannot mix ordinal positions with header column names.

      SELECT s.Id, s.FirstName, s.SSN FROM S3Object s

For more information about using SQL with S3 Glacier Select restore, see SQL Reference for Amazon S3 Select and S3 Glacier Select in the Amazon Simple Storage Service Developer Guide.

When making a select request, you can also do the following:

  • To expedite your queries, specify the Expedited tier. For more information about tiers, see \"Restoring Archives,\" later in this topic.

  • Specify details about the data serialization format of both the input object that is being queried and the serialization of the CSV-encoded query results.

The following are additional important facts about the select feature:

  • The output results are new Amazon S3 objects. Unlike archive retrievals, they are stored until explicitly deleted-manually or through a lifecycle policy.

  • You can issue more than one select request on the same Amazon S3 object. Amazon S3 doesn't deduplicate requests, so avoid issuing duplicate requests.

  • Amazon S3 accepts a select request even if the object has already been restored. A select request doesn’t return error response 409.

Restoring Archives

Objects in the GLACIER and DEEP_ARCHIVE storage classes are archived. To access an archived object, you must first initiate a restore request. This restores a temporary copy of the archived object. In a restore request, you specify the number of days that you want the restored copy to exist. After the specified period, Amazon S3 deletes the temporary copy but the object remains archived in the GLACIER or DEEP_ARCHIVE storage class that object was restored from.

To restore a specific object version, you can provide a version ID. If you don't provide a version ID, Amazon S3 restores the current version.

The time it takes restore jobs to finish depends on which storage class the object is being restored from and which data access tier you specify.

When restoring an archived object (or using a select request), you can specify one of the following data access tier options in the Tier element of the request body:

  • Expedited - Expedited retrievals allow you to quickly access your data stored in the GLACIER storage class when occasional urgent requests for a subset of archives are required. For all but the largest archived objects (250 MB+), data accessed using Expedited retrievals are typically made available within 1–5 minutes. Provisioned capacity ensures that retrieval capacity for Expedited retrievals is available when you need it. Expedited retrievals and provisioned capacity are not available for the DEEP_ARCHIVE storage class.

  • Standard - S3 Standard retrievals allow you to access any of your archived objects within several hours. This is the default option for the GLACIER and DEEP_ARCHIVE retrieval requests that do not specify the retrieval option. S3 Standard retrievals typically complete within 3-5 hours from the GLACIER storage class and typically complete within 12 hours from the DEEP_ARCHIVE storage class.

  • Bulk - Bulk retrievals are Amazon S3 Glacier’s lowest-cost retrieval option, enabling you to retrieve large amounts, even petabytes, of data inexpensively in a day. Bulk retrievals typically complete within 5-12 hours from the GLACIER storage class and typically complete within 48 hours from the DEEP_ARCHIVE storage class.

For more information about archive retrieval options and provisioned capacity for Expedited data access, see Restoring Archived Objects in the Amazon Simple Storage Service Developer Guide.

You can use Amazon S3 restore speed upgrade to change the restore speed to a faster speed while it is in progress. You upgrade the speed of an in-progress restoration by issuing another restore request to the same object, setting a new Tier request element. When issuing a request to upgrade the restore tier, you must choose a tier that is faster than the tier that the in-progress restore is using. You must not change any other parameters, such as the Days request element. For more information, see Upgrading the Speed of an In-Progress Restore in the Amazon Simple Storage Service Developer Guide.

To get the status of object restoration, you can send a HEAD request. Operations return the x-amz-restore header, which provides information about the restoration status, in the response. You can use Amazon S3 event notifications to notify you when a restore is initiated or completed. For more information, see Configuring Amazon S3 Event Notifications in the Amazon Simple Storage Service Developer Guide.

After restoring an archived object, you can update the restoration period by reissuing the request with a new period. Amazon S3 updates the restoration period relative to the current time and charges only for the request-there are no data transfer charges. You cannot update the restoration period when Amazon S3 is actively processing your current restore request for the object.

If your bucket has a lifecycle configuration with a rule that includes an expiration action, the object expiration overrides the life span that you specify in a restore request. For example, if you restore an object copy for 10 days, but the object is scheduled to expire in 3 days, Amazon S3 deletes the object in 3 days. For more information about lifecycle configuration, see PutBucketLifecycleConfiguration and Object Lifecycle Management in Amazon Simple Storage Service Developer Guide.

Responses

A successful operation returns either the 200 OK or 202 Accepted status code.

  • If the object copy is not previously restored, then Amazon S3 returns 202 Accepted in the response.

  • If the object copy is previously restored, Amazon S3 returns 200 OK in the response.

Special Errors

    • Code: RestoreAlreadyInProgress

    • Cause: Object restore is already in progress. (This error does not apply to SELECT type requests.)

    • HTTP Status Code: 409 Conflict

    • SOAP Fault Code Prefix: Client

    • Code: GlacierExpeditedRetrievalNotAvailable

    • Cause: S3 Glacier expedited retrievals are currently not available. Try again later. (Returned if there is insufficient capacity to process the Expedited request. This error applies only to Expedited retrievals and not to S3 Standard or Bulk retrievals.)

    • HTTP Status Code: 503

    • SOAP Fault Code Prefix: N/A

Related Resources

", + "documentation":"

Restores an archived copy of an object back into Amazon S3

This action is not supported by Amazon S3 on Outposts.

This action performs the following types of requests:

  • select - Perform a select query on an archived object

  • restore an archive - Restore an archived object

To use this operation, you must have permissions to perform the s3:RestoreObject action. The bucket owner has this permission by default and can grant this permission to others. For more information about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3 Resources in the Amazon Simple Storage Service Developer Guide.

Querying Archives with Select Requests

You use a select type of request to perform SQL queries on archived objects. The archived objects that are being queried by the select request must be formatted as uncompressed comma-separated values (CSV) files. You can run queries and custom analytics on your archived data without having to restore your data to a hotter Amazon S3 tier. For an overview about select requests, see Querying Archived Objects in the Amazon Simple Storage Service Developer Guide.

When making a select request, do the following:

  • Define an output location for the select query's output. This must be an Amazon S3 bucket in the same AWS Region as the bucket that contains the archive object that is being queried. The AWS account that initiates the job must have permissions to write to the S3 bucket. You can specify the storage class and encryption for the output objects stored in the bucket. For more information about output, see Querying Archived Objects in the Amazon Simple Storage Service Developer Guide.

    For more information about the S3 structure in the request body, see the following:

  • Define the SQL expression for the SELECT type of restoration for your query in the request body's SelectParameters structure. You can use expressions like the following examples.

    • The following expression returns all records from the specified object.

      SELECT * FROM Object

    • Assuming that you are not using any headers for data stored in the object, you can specify columns with positional headers.

      SELECT s._1, s._2 FROM Object s WHERE s._3 > 100

    • If you have headers and you set the fileHeaderInfo in the CSV structure in the request body to USE, you can specify headers in the query. (If you set the fileHeaderInfo field to IGNORE, the first row is skipped for the query.) You cannot mix ordinal positions with header column names.

      SELECT s.Id, s.FirstName, s.SSN FROM S3Object s

For more information about using SQL with S3 Glacier Select restore, see SQL Reference for Amazon S3 Select and S3 Glacier Select in the Amazon Simple Storage Service Developer Guide.

When making a select request, you can also do the following:

  • To expedite your queries, specify the Expedited tier. For more information about tiers, see \"Restoring Archives,\" later in this topic.

  • Specify details about the data serialization format of both the input object that is being queried and the serialization of the CSV-encoded query results.

The following are additional important facts about the select feature:

  • The output results are new Amazon S3 objects. Unlike archive retrievals, they are stored until explicitly deleted-manually or through a lifecycle policy.

  • You can issue more than one select request on the same Amazon S3 object. Amazon S3 doesn't deduplicate requests, so avoid issuing duplicate requests.

  • Amazon S3 accepts a select request even if the object has already been restored. A select request doesn’t return error response 409.

Restoring Archives

Objects that you archive to the S3 Glacier, S3 Glacier Deep Archive, S3 Intelligent-Tiering Archive, or S3 Intelligent-Tiering Deep Archive storage classes are not accessible in real time. For objects in Archive Access tier or Deep Archive Access tier you must first initiate a restore request, and then wait until the object is moved into the Frequent Access tier. For objects in S3 Glacier or S3 Glacier Deep Archive you must first initiate a restore request, and then wait until a temporary copy of the object is available. To access an archived object, you must restore the object for the duration (number of days) that you specify.

To restore a specific object version, you can provide a version ID. If you don't provide a version ID, Amazon S3 restores the current version.

When restoring an archived object (or using a select request), you can specify one of the following data access tier options in the Tier element of the request body:

  • Expedited - Expedited retrievals allow you to quickly access your data stored in the S3 Glacier or S3 Intelligent-Tiering Archive storage class when occasional urgent requests for a subset of archives are required. For all but the largest archived objects (250 MB+), data accessed using Expedited retrievals is typically made available within 1–5 minutes. Provisioned capacity ensures that retrieval capacity for Expedited retrievals is available when you need it. Expedited retrievals and provisioned capacity are not available for objects stored in the S3 Glacier Deep Archive or S3 Intelligent-Tiering Deep Archive storage class.

  • Standard - Standard retrievals allow you to access any of your archived objects within several hours. This is the default option for retrieval requests that do not specify the retrieval option. Standard retrievals typically finish within 3–5 hours for objects stored in the S3 Glacier or S3 Intelligent-Tiering Archive storage class. They typically finish within 12 hours for objects stored in the S3 Glacier Deep Archive or S3 Intelligent-Tiering Deep Archive storage class. Standard retrievals are free for objects stored in S3 Intelligent-Tiering.

  • Bulk - Bulk retrievals are the lowest-cost retrieval option in S3 Glacier, enabling you to retrieve large amounts, even petabytes, of data inexpensively. Bulk retrievals typically finish within 5–12 hours for objects stored in the S3 Glacier or S3 Intelligent-Tiering Archive storage class. They typically finish within 48 hours for objects stored in the S3 Glacier Deep Archive or S3 Intelligent-Tiering Deep Archive storage class. Bulk retrievals are free for objects stored in S3 Intelligent-Tiering.

For more information about archive retrieval options and provisioned capacity for Expedited data access, see Restoring Archived Objects in the Amazon Simple Storage Service Developer Guide.

You can use Amazon S3 restore speed upgrade to change the restore speed to a faster speed while it is in progress. For more information, see Upgrading the speed of an in-progress restore in the Amazon Simple Storage Service Developer Guide.

To get the status of object restoration, you can send a HEAD request. Operations return the x-amz-restore header, which provides information about the restoration status, in the response. You can use Amazon S3 event notifications to notify you when a restore is initiated or completed. For more information, see Configuring Amazon S3 Event Notifications in the Amazon Simple Storage Service Developer Guide.

After restoring an archived object, you can update the restoration period by reissuing the request with a new period. Amazon S3 updates the restoration period relative to the current time and charges only for the request-there are no data transfer charges. You cannot update the restoration period when Amazon S3 is actively processing your current restore request for the object.

If your bucket has a lifecycle configuration with a rule that includes an expiration action, the object expiration overrides the life span that you specify in a restore request. For example, if you restore an object copy for 10 days, but the object is scheduled to expire in 3 days, Amazon S3 deletes the object in 3 days. For more information about lifecycle configuration, see PutBucketLifecycleConfiguration and Object Lifecycle Management in Amazon Simple Storage Service Developer Guide.

Responses

A successful operation returns either the 200 OK or 202 Accepted status code.

  • If the object is not previously restored, then Amazon S3 returns 202 Accepted in the response.

  • If the object is previously restored, Amazon S3 returns 200 OK in the response.

Special Errors

    • Code: RestoreAlreadyInProgress

    • Cause: Object restore is already in progress. (This error does not apply to SELECT type requests.)

    • HTTP Status Code: 409 Conflict

    • SOAP Fault Code Prefix: Client

    • Code: GlacierExpeditedRetrievalNotAvailable

    • Cause: expedited retrievals are currently not available. Try again later. (Returned if there is insufficient capacity to process the Expedited request. This error applies only to Expedited retrievals and not to S3 Standard or Bulk retrievals.)

    • HTTP Status Code: 503

    • SOAP Fault Code Prefix: N/A

Related Resources

", "alias":"PostObjectRestore" }, "SelectObjectContent":{ @@ -1246,6 +1286,13 @@ "type":"string", "enum":["CSV"] }, + "ArchiveStatus":{ + "type":"string", + "enum":[ + "ARCHIVE_ACCESS", + "DEEP_ARCHIVE_ACCESS" + ] + }, "Body":{"type":"blob"}, "Bucket":{ "type":"structure", @@ -2462,6 +2509,27 @@ } } }, + "DeleteBucketIntelligentTieringConfigurationRequest":{ + "type":"structure", + "required":[ + "Bucket", + "Id" + ], + "members":{ + "Bucket":{ + "shape":"BucketName", + "documentation":"

The name of the Amazon S3 bucket whose configuration you want to modify or retrieve.

", + "location":"uri", + "locationName":"Bucket" + }, + "Id":{ + "shape":"IntelligentTieringId", + "documentation":"

The ID used to identify the S3 Intelligent-Tiering configuration.

", + "location":"querystring", + "locationName":"id" + } + } + }, "DeleteBucketInventoryConfigurationRequest":{ "type":"structure", "required":[ @@ -2546,6 +2614,7 @@ }, "ExpectedBucketOwner":{ "shape":"AccountId", + "documentation":"

The account id of the expected bucket owner. If the bucket is owned by a different account, the request will fail with an HTTP 403 (Access Denied) error.

", "location":"header", "locationName":"x-amz-expected-bucket-owner" } @@ -2673,10 +2742,10 @@ "members":{ "Status":{ "shape":"DeleteMarkerReplicationStatus", - "documentation":"

Indicates whether to replicate delete markers.

In the current implementation, Amazon S3 doesn't replicate the delete markers. The status must be Disabled.

" + "documentation":"

Indicates whether to replicate delete markers.

Indicates whether to replicate delete markers.

" } }, - "documentation":"

Specifies whether Amazon S3 replicates the delete markers. If you specify a Filter, you must specify this element. However, in the latest version of replication configuration (when Filter is specified), Amazon S3 doesn't replicate delete markers. Therefore, the DeleteMarkerReplication element can contain only <Status>Disabled</Status>. For an example configuration, see Basic Rule Configuration.

If you don't specify the Filter element, Amazon S3 assumes that the replication configuration is the earlier version, V1. In the earlier version, Amazon S3 handled replication of delete markers differently. For more information, see Backward Compatibility.

" + "documentation":"

Specifies whether Amazon S3 replicates delete markers. If you specify a Filter in your replication configuration, you must also include a DeleteMarkerReplication element. If your Filter includes a Tag element, the DeleteMarkerReplication Status must be set to Disabled, because Amazon S3 does not support replicating delete markers for tag-based rules. For an example configuration, see Basic Rule Configuration.

For more information about delete marker replication, see Basic Rule Configuration.

If you are using an earlier version of the replication configuration, Amazon S3 handles replication of delete markers differently. For more information, see Backward Compatibility.

" }, "DeleteMarkerReplicationStatus":{ "type":"string", @@ -2948,7 +3017,7 @@ }, "Metrics":{ "shape":"Metrics", - "documentation":"

A container specifying replication metrics-related settings enabling metrics and Amazon S3 events for S3 Replication Time Control (S3 RTC). Must be specified together with a ReplicationTime block.

" + "documentation":"

A container specifying replication metrics-related settings enabling replication metrics and events.

" } }, "documentation":"

Specifies information about where to publish analysis or configuration results for an Amazon S3 bucket and S3 Replication Time Control (S3 RTC).

" @@ -3291,6 +3360,37 @@ } } }, + "GetBucketIntelligentTieringConfigurationOutput":{ + "type":"structure", + "members":{ + "IntelligentTieringConfiguration":{ + "shape":"IntelligentTieringConfiguration", + "documentation":"

Container for S3 Intelligent-Tiering configuration.

" + } + }, + "payload":"IntelligentTieringConfiguration" + }, + "GetBucketIntelligentTieringConfigurationRequest":{ + "type":"structure", + "required":[ + "Bucket", + "Id" + ], + "members":{ + "Bucket":{ + "shape":"BucketName", + "documentation":"

The name of the Amazon S3 bucket whose configuration you want to modify or retrieve.

", + "location":"uri", + "locationName":"Bucket" + }, + "Id":{ + "shape":"IntelligentTieringId", + "documentation":"

The ID used to identify the S3 Intelligent-Tiering configuration.

", + "location":"querystring", + "locationName":"id" + } + } + }, "GetBucketInventoryConfigurationOutput":{ "type":"structure", "members":{ @@ -3512,6 +3612,7 @@ }, "ExpectedBucketOwner":{ "shape":"AccountId", + "documentation":"

The account id of the expected bucket owner. If the bucket is owned by a different account, the request will fail with an HTTP 403 (Access Denied) error.

", "location":"header", "locationName":"x-amz-expected-bucket-owner" } @@ -4354,7 +4455,7 @@ "members":{ "Tier":{ "shape":"Tier", - "documentation":"

S3 Glacier retrieval tier at which the restore will be processed.

" + "documentation":"

Retrieval tier at which the restore will be processed.

" } }, "documentation":"

Container for S3 Glacier job parameters.

" @@ -4463,6 +4564,12 @@ "location":"header", "locationName":"x-amz-restore" }, + "ArchiveStatus":{ + "shape":"ArchiveStatus", + "documentation":"

The archive state of the head object.

", + "location":"header", + "locationName":"x-amz-archive-status" + }, "LastModified":{ "shape":"LastModified", "documentation":"

Last modified date of the object

", @@ -4756,6 +4863,95 @@ }, "documentation":"

Describes the serialization format of the object.

" }, + "IntelligentTieringAccessTier":{ + "type":"string", + "enum":[ + "ARCHIVE_ACCESS", + "DEEP_ARCHIVE_ACCESS" + ] + }, + "IntelligentTieringAndOperator":{ + "type":"structure", + "members":{ + "Prefix":{ + "shape":"Prefix", + "documentation":"

An object key name prefix that identifies the subset of objects to which the configuration applies.

" + }, + "Tags":{ + "shape":"TagSet", + "documentation":"

All of these tags must exist in the object's tag set in order for the configuration to apply.

", + "flattened":true, + "locationName":"Tag" + } + }, + "documentation":"

A container for specifying S3 Intelligent-Tiering filters. The filters determine the subset of objects to which the rule applies.

" + }, + "IntelligentTieringConfiguration":{ + "type":"structure", + "required":[ + "Id", + "Status", + "Tierings" + ], + "members":{ + "Id":{ + "shape":"IntelligentTieringId", + "documentation":"

The ID used to identify the S3 Intelligent-Tiering configuration.

" + }, + "Filter":{ + "shape":"IntelligentTieringFilter", + "documentation":"

Specifies a bucket filter. The configuration only includes objects that meet the filter's criteria.

" + }, + "Status":{ + "shape":"IntelligentTieringStatus", + "documentation":"

Specifies the status of the configuration.

" + }, + "Tierings":{ + "shape":"TieringList", + "documentation":"

Specifies the S3 Intelligent-Tiering storage class tier of the configuration.

", + "locationName":"Tiering" + } + }, + "documentation":"

Specifies the S3 Intelligent-Tiering configuration for an Amazon S3 bucket.

For information about the S3 Intelligent-Tiering storage class, see Storage class for automatically optimizing frequently and infrequently accessed objects.

" + }, + "IntelligentTieringConfigurationList":{ + "type":"list", + "member":{"shape":"IntelligentTieringConfiguration"}, + "flattened":true + }, + "IntelligentTieringDays":{"type":"integer"}, + "IntelligentTieringFilter":{ + "type":"structure", + "members":{ + "Prefix":{ + "shape":"Prefix", + "documentation":"

An object key name prefix that identifies the subset of objects to which the rule applies.

" + }, + "Tag":{"shape":"Tag"}, + "And":{ + "shape":"IntelligentTieringAndOperator", + "documentation":"

A conjunction (logical AND) of predicates, which is used in evaluating a metrics filter. The operator must have at least two predicates, and an object must match all of the predicates in order for the filter to apply.

" + } + }, + "documentation":"

The Filter is used to identify objects that the S3 Intelligent-Tiering configuration applies to.

" + }, + "IntelligentTieringId":{"type":"string"}, + "IntelligentTieringStatus":{ + "type":"string", + "enum":[ + "Enabled", + "Disabled" + ] + }, + "InvalidObjectState":{ + "type":"structure", + "members":{ + "StorageClass":{"shape":"StorageClass"}, + "AccessTier":{"shape":"IntelligentTieringAccessTier"} + }, + "documentation":"

Object is archived and inaccessible until restored.

", + "exception":true + }, "InventoryConfiguration":{ "type":"structure", "required":[ @@ -5140,6 +5336,46 @@ } } }, + "ListBucketIntelligentTieringConfigurationsOutput":{ + "type":"structure", + "members":{ + "IsTruncated":{ + "shape":"IsTruncated", + "documentation":"

Indicates whether the returned list of analytics configurations is complete. A value of true indicates that the list is not complete and the NextContinuationToken will be provided for a subsequent request.

" + }, + "ContinuationToken":{ + "shape":"Token", + "documentation":"

The ContinuationToken that represents a placeholder from where this request should begin.

" + }, + "NextContinuationToken":{ + "shape":"NextToken", + "documentation":"

The marker used to continue this inventory configuration listing. Use the NextContinuationToken from this response to continue the listing in a subsequent request. The continuation token is an opaque value that Amazon S3 understands.

" + }, + "IntelligentTieringConfigurationList":{ + "shape":"IntelligentTieringConfigurationList", + "documentation":"

The list of S3 Intelligent-Tiering configurations for a bucket.

", + "locationName":"IntelligentTieringConfiguration" + } + } + }, + "ListBucketIntelligentTieringConfigurationsRequest":{ + "type":"structure", + "required":["Bucket"], + "members":{ + "Bucket":{ + "shape":"BucketName", + "documentation":"

The name of the Amazon S3 bucket whose configuration you want to modify or retrieve.

", + "location":"uri", + "locationName":"Bucket" + }, + "ContinuationToken":{ + "shape":"Token", + "documentation":"

The ContinuationToken that represents a placeholder from where this request should begin.

", + "location":"querystring", + "locationName":"continuation-token" + } + } + }, "ListBucketInventoryConfigurationsOutput":{ "type":"structure", "members":{ @@ -5874,10 +6110,7 @@ "MetadataValue":{"type":"string"}, "Metrics":{ "type":"structure", - "required":[ - "Status", - "EventThreshold" - ], + "required":["Status"], "members":{ "Status":{ "shape":"MetricsStatus", @@ -5888,7 +6121,7 @@ "documentation":"

A container specifying the time threshold for emitting the s3:Replication:OperationMissedThreshold event.

" } }, - "documentation":"

A container specifying replication metrics-related settings enabling metrics and Amazon S3 events for S3 Replication Time Control (S3 RTC). Must be specified together with a ReplicationTime block.

" + "documentation":"

A container specifying replication metrics-related settings enabling replication metrics and events.

" }, "MetricsAndOperator":{ "type":"structure", @@ -6522,7 +6755,7 @@ }, "RestrictPublicBuckets":{ "shape":"Setting", - "documentation":"

Specifies whether Amazon S3 should restrict public bucket policies for this bucket. Setting this element to TRUE restricts access to this bucket to only AWS services and authorized users within this account if the bucket has a public policy.

Enabling this setting doesn't affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked.

", + "documentation":"

Specifies whether Amazon S3 should restrict public bucket policies for this bucket. Setting this element to TRUE restricts access to this bucket to only AWS service principals and authorized users within this account if the bucket has a public policy.

Enabling this setting doesn't affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked.

", "locationName":"RestrictPublicBuckets" } }, @@ -6731,6 +6964,35 @@ }, "payload":"ServerSideEncryptionConfiguration" }, + "PutBucketIntelligentTieringConfigurationRequest":{ + "type":"structure", + "required":[ + "Bucket", + "Id", + "IntelligentTieringConfiguration" + ], + "members":{ + "Bucket":{ + "shape":"BucketName", + "documentation":"

The name of the Amazon S3 bucket whose configuration you want to modify or retrieve.

", + "location":"uri", + "locationName":"Bucket" + }, + "Id":{ + "shape":"IntelligentTieringId", + "documentation":"

The ID used to identify the S3 Intelligent-Tiering configuration.

", + "location":"querystring", + "locationName":"id" + }, + "IntelligentTieringConfiguration":{ + "shape":"IntelligentTieringConfiguration", + "documentation":"

Container for S3 Intelligent-Tiering configuration.

", + "locationName":"IntelligentTieringConfiguration", + "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"} + } + }, + "payload":"IntelligentTieringConfiguration" + }, "PutBucketInventoryConfigurationRequest":{ "type":"structure", "required":[ @@ -6979,6 +7241,7 @@ }, "ExpectedBucketOwner":{ "shape":"AccountId", + "documentation":"

The account id of the expected bucket owner. If the bucket is owned by a different account, the request will fail with an HTTP 403 (Access Denied) error.

", "location":"header", "locationName":"x-amz-expected-bucket-owner" }, @@ -7059,7 +7322,7 @@ }, "Token":{ "shape":"ObjectLockToken", - "documentation":"

", + "documentation":"

A token to allow Object Lock to be enabled for an existing bucket.

", "location":"header", "locationName":"x-amz-bucket-object-lock-token" }, @@ -8003,7 +8266,7 @@ }, "Priority":{ "shape":"Priority", - "documentation":"

The priority associated with the rule. If you specify multiple rules in a replication configuration, Amazon S3 prioritizes the rules to prevent conflicts when filtering. If two or more rules identify the same object based on a specified filter, the rule with higher priority takes precedence. For example:

  • Same object quality prefix-based filter criteria if prefixes you specified in multiple rules overlap

  • Same object qualify tag-based filter criteria specified in multiple rules

For more information, see Replication in the Amazon Simple Storage Service Developer Guide.

" + "documentation":"

The priority associated with the rule. If you specify multiple rules in a replication configuration, Amazon S3 prioritizes the rules to prevent conflicts when filtering. If two or more rules identify the same object based on a specified filter, the rule with higher priority takes precedence. For example:

  • Same object quality prefix-based filter criteria if prefixes you specified in multiple rules overlap

  • Same object qualify tag-based filter criteria specified in multiple rules

For more information, see Replication in the Amazon Simple Storage Service Developer Guide.

" }, "Prefix":{ "shape":"Prefix", @@ -8184,7 +8447,7 @@ "members":{ "Bucket":{ "shape":"BucketName", - "documentation":"

The bucket name or containing the object to restore.

When using this API with an access point, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this operation with an access point through the AWS SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using Access Points in the Amazon Simple Storage Service Developer Guide.

When using this API with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com. When using this operation using S3 on Outposts through the AWS SDKs, you provide the Outposts bucket ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see Using S3 on Outposts in the Amazon Simple Storage Service Developer Guide.

", + "documentation":"

The bucket name containing the object to restore.

When using this API with an access point, you must direct requests to the access point hostname. The access point hostname takes the form AccessPointName-AccountId.s3-accesspoint.Region.amazonaws.com. When using this operation with an access point through the AWS SDKs, you provide the access point ARN in place of the bucket name. For more information about access point ARNs, see Using Access Points in the Amazon Simple Storage Service Developer Guide.

When using this API with Amazon S3 on Outposts, you must direct requests to the S3 on Outposts hostname. The S3 on Outposts hostname takes the form AccessPointName-AccountId.outpostID.s3-outposts.Region.amazonaws.com. When using this operation using S3 on Outposts through the AWS SDKs, you provide the Outposts bucket ARN in place of the bucket name. For more information about S3 on Outposts ARNs, see Using S3 on Outposts in the Amazon Simple Storage Service Developer Guide.

", "location":"uri", "locationName":"Bucket" }, @@ -8225,7 +8488,7 @@ "members":{ "Days":{ "shape":"Days", - "documentation":"

Lifetime of the active copy in days. Do not use with restores that specify OutputLocation.

" + "documentation":"

Lifetime of the active copy in days. Do not use with restores that specify OutputLocation.

The Days element is required for regular restores, and must not be provided for select requests.

" }, "GlacierJobParameters":{ "shape":"GlacierJobParameters", @@ -8237,7 +8500,7 @@ }, "Tier":{ "shape":"Tier", - "documentation":"

S3 Glacier retrieval tier at which the restore will be processed.

" + "documentation":"

Retrieval tier at which the restore will be processed.

" }, "Description":{ "shape":"Description", @@ -8787,6 +9050,29 @@ "Expedited" ] }, + "Tiering":{ + "type":"structure", + "required":[ + "Days", + "AccessTier" + ], + "members":{ + "Days":{ + "shape":"IntelligentTieringDays", + "documentation":"

The number of days that you want your archived data to be accessible. The minimum number of days specified in the restore request must be at least 90 days. If a smaller value is specifed it will be ignored.

" + }, + "AccessTier":{ + "shape":"IntelligentTieringAccessTier", + "documentation":"

S3 Intelligent-Tiering access tier. See Storage class for automatically optimizing frequently and infrequently accessed objects for a list of access tiers in the S3 Intelligent-Tiering storage class.

" + } + }, + "documentation":"

The S3 Intelligent-Tiering storage class is designed to optimize storage costs by automatically moving data to the most cost-effective storage access tier, without additional operational overhead.

" + }, + "TieringList":{ + "type":"list", + "member":{"shape":"Tiering"}, + "flattened":true + }, "Token":{"type":"string"}, "TopicArn":{"type":"string"}, "TopicConfiguration":{ From d6c8091f85a6640451d299e8bcb2b55d6682737c Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 9 Nov 2020 17:10:34 +0000 Subject: [PATCH 151/339] Amazon Macie 2 Update: Sensitive data findings in Amazon Macie now include enhanced location data for Apache Avro object containers and Apache Parquet files. --- .../feature-AmazonMacie2-f96feab.json | 6 ++++++ .../codegen-resources/service-2.json | 21 ++++++++++++------- 2 files changed, 19 insertions(+), 8 deletions(-) create mode 100644 .changes/next-release/feature-AmazonMacie2-f96feab.json diff --git a/.changes/next-release/feature-AmazonMacie2-f96feab.json b/.changes/next-release/feature-AmazonMacie2-f96feab.json new file mode 100644 index 000000000000..b9ebb985b427 --- /dev/null +++ b/.changes/next-release/feature-AmazonMacie2-f96feab.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Macie 2", + "contributor": "", + "description": "Sensitive data findings in Amazon Macie now include enhanced location data for Apache Avro object containers and Apache Parquet files." +} diff --git a/services/macie2/src/main/resources/codegen-resources/service-2.json b/services/macie2/src/main/resources/codegen-resources/service-2.json index 82db5685358b..145d3b0ad1c9 100644 --- a/services/macie2/src/main/resources/codegen-resources/service-2.json +++ b/services/macie2/src/main/resources/codegen-resources/service-2.json @@ -3288,7 +3288,7 @@ "eqExactMatch": { "shape": "__listOf__string", "locationName": "eqExactMatch", - "documentation": "

A condition that requires an array field on a finding to exactly match the specified property values. You can use this operator with the following properties:

  • customDataIdentifiers.detections.arn

  • customDataIdentifiers.detections.name

  • resourcesAffected.s3Bucket.tags.key

  • resourcesAffected.s3Bucket.tags.value

  • resourcesAffected.s3Object.tags.key

  • resourcesAffected.s3Object.tags.value

  • sensitiveData.category

  • sensitiveData.detections.type

" + "documentation": "

A condition that requires an array field of a finding to exactly match the specified property values. You can use this operator with the following properties: customDataIdentifiers.detections.arn, customDataIdentifiers.detections.name, resourcesAffected.s3Bucket.tags.key, resourcesAffected.s3Bucket.tags.value, resourcesAffected.s3Object.tags.key, resourcesAffected.s3Object.tags.value, sensitiveData.category, and sensitiveData.detections.type.

" }, "gt": { "shape": "__long", @@ -5398,12 +5398,12 @@ "cells": { "shape": "Cells", "locationName": "cells", - "documentation": "

An array of objects, one for each occurrence of sensitive data in a Microsoft Excel workbook, CSV file, or TSV file. Each object specifies the cell that contains the data. This value is null for all other types of files.

" + "documentation": "

An array of objects, one for each occurrence of sensitive data in a Microsoft Excel workbook, CSV file, or TSV file. Each object specifies the cell or field that contains the data. This value is null for all other types of files.

" }, "lineRanges": { "shape": "Ranges", "locationName": "lineRanges", - "documentation": "

An array of objects, one for each occurrence of sensitive data in an Apache Avro object container, Microsoft Word document, or non-binary text file, such as an HTML, JSON, TXT, or XML file. Each object specifies the line that contains the data, and the position of the data on that line.

This value is often null for file types that are supported by Cell, Page, or Record objects. Exceptions are the locations of: full names and addresses in a Microsoft Excel workbook, CSV file, or TSV file; data in unstructured sections of an otherwise structured file, such as a comment in a file; and, data in a malformed file that Amazon Macie analyzes as plain text.

" + "documentation": "

An array of objects, one for each occurrence of sensitive data in a Microsoft Word document or non-binary text file, such as an HTML, JSON, TXT, or XML file. Each object specifies the line that contains the data, and the position of the data on that line.

This value is often null for file types that are supported by Cell, Page, or Record objects. Exceptions are the locations of: data in unstructured sections of an otherwise structured file, such as a comment in a file; and, data in a malformed file that Amazon Macie analyzes as plain text.

" }, "offsetRanges": { "shape": "Ranges", @@ -5418,7 +5418,7 @@ "records": { "shape": "Records", "locationName": "records", - "documentation": "

An array of objects, one for each occurrence of sensitive data in an Apache Parquet file. Each object specifies the row that contains the data. This value is null for all other types of files.

" + "documentation": "

An array of objects, one for each occurrence of sensitive data in an Apache Avro object container or Apache Parquet file. Each object specifies the field or record that contains the data. This value is null for all other types of files.

" } }, "documentation": "

Provides the location of 1-15 occurrences of sensitive data that was detected by managed data identifiers or a custom data identifier and produced a sensitive data finding.

" @@ -5516,11 +5516,11 @@ "documentation": "

The column number for the column that contains the data, if the file contains structured data.

" } }, - "documentation": "

Provides details about the location of an occurrence of sensitive data in an Adobe Portable Document Format file, Apache Avro object container, Microsoft Word document, or non-binary text file.

" + "documentation": "

Provides details about the location of an occurrence of sensitive data in an Adobe Portable Document Format file, Microsoft Word document, or non-binary text file.

" }, "Ranges": { "type": "list", - "documentation": "

Provides details about the location of occurrences of sensitive data in an Adobe Portable Document Format file, Apache Avro object container, Microsoft Word document, or non-binary text file.

", + "documentation": "

Provides details about the location of occurrences of sensitive data in an Adobe Portable Document Format file, Microsoft Word document, or non-binary text file.

", "member": { "shape": "Range" } @@ -5528,13 +5528,18 @@ "Record": { "type": "structure", "members": { + "jsonPath": { + "shape": "__string", + "locationName": "jsonPath", + "documentation": "

The path, as a JSONPath expression, to the field (in an Apache Avro object container) or record (in an Apache Parquet file) that contains the data.

If the name of an element exceeds 20 characters, Amazon Macie truncates the name by removing characters from the beginning of the name. If the resulting full path exceeds 250 characters, Macie also truncates the path, starting with the first element in the path, until the path contains 250 or fewer characters.

" + }, "recordIndex": { "shape": "__long", "locationName": "recordIndex", - "documentation": "

The row index, starting from 0, for the row that contains the data.

" + "documentation": "

The record index, starting from 0, for the record that contains the data.

" } }, - "documentation": "

Specifies the location of an occurrence of sensitive data in an Apache Parquet file.

" + "documentation": "

Specifies the location of an occurrence of sensitive data in an Apache Avro object container or Apache Parquet file.

" }, "Records": { "type": "list", From 2273296fb5dab07d0265b07e6562c61eeb5ef631 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 9 Nov 2020 17:10:29 +0000 Subject: [PATCH 152/339] Amazon Simple Systems Manager (SSM) Update: add a new filter to allow customer to filter automation executions by using resource-group which used for execute automation --- .../feature-AmazonSimpleSystemsManagerSSM-9f1e206.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-AmazonSimpleSystemsManagerSSM-9f1e206.json diff --git a/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-9f1e206.json b/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-9f1e206.json new file mode 100644 index 000000000000..8412cee2111c --- /dev/null +++ b/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-9f1e206.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Simple Systems Manager (SSM)", + "contributor": "", + "description": "add a new filter to allow customer to filter automation executions by using resource-group which used for execute automation" +} diff --git a/services/ssm/src/main/resources/codegen-resources/service-2.json b/services/ssm/src/main/resources/codegen-resources/service-2.json index 8969f93a7549..ec5937ed94b8 100644 --- a/services/ssm/src/main/resources/codegen-resources/service-2.json +++ b/services/ssm/src/main/resources/codegen-resources/service-2.json @@ -2432,7 +2432,7 @@ "members":{ "key":{ "shape":"AssociationFilterKey", - "documentation":"

The name of the filter.

InstanceId has been deprecated.

" + "documentation":"

The name of the filter.

" }, "value":{ "shape":"AssociationFilterValue", @@ -2924,7 +2924,8 @@ "StartTimeBefore", "StartTimeAfter", "AutomationType", - "TagKey" + "TagKey", + "TargetResourceGroup" ] }, "AutomationExecutionFilterList":{ @@ -8845,7 +8846,7 @@ "members":{ "AssociationFilterList":{ "shape":"AssociationFilterList", - "documentation":"

One or more filters. Use a filter to return a more specific list of results.

Filtering associations using the InstanceID attribute only returns legacy associations created using the InstanceID attribute. Associations targeting the instance that are part of the Target Attributes ResourceGroup or Tags are not returned.

" + "documentation":"

One or more filters. Use a filter to return a more specific list of results.

" }, "MaxResults":{ "shape":"MaxResults", From 032e3664bfc25496d817914a81a229bb444318d1 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 9 Nov 2020 17:10:28 +0000 Subject: [PATCH 153/339] AWS IoT Analytics Update: AWS IoT Analytics now supports Late Data Notifications for datasets, dataset content creation using previous version IDs, and includes the LastMessageArrivalTime attribute for channels and datastores. --- .../feature-AWSIoTAnalytics-fb34c2e.json | 6 + .../codegen-resources/service-2.json | 409 +++++++++++------- 2 files changed, 253 insertions(+), 162 deletions(-) create mode 100644 .changes/next-release/feature-AWSIoTAnalytics-fb34c2e.json diff --git a/.changes/next-release/feature-AWSIoTAnalytics-fb34c2e.json b/.changes/next-release/feature-AWSIoTAnalytics-fb34c2e.json new file mode 100644 index 000000000000..deb2084a7dab --- /dev/null +++ b/.changes/next-release/feature-AWSIoTAnalytics-fb34c2e.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS IoT Analytics", + "contributor": "", + "description": "AWS IoT Analytics now supports Late Data Notifications for datasets, dataset content creation using previous version IDs, and includes the LastMessageArrivalTime attribute for channels and datastores." +} diff --git a/services/iotanalytics/src/main/resources/codegen-resources/service-2.json b/services/iotanalytics/src/main/resources/codegen-resources/service-2.json index 3b4e49144c73..508b6a032c54 100644 --- a/services/iotanalytics/src/main/resources/codegen-resources/service-2.json +++ b/services/iotanalytics/src/main/resources/codegen-resources/service-2.json @@ -82,7 +82,7 @@ {"shape":"ThrottlingException"}, {"shape":"LimitExceededException"} ], - "documentation":"

Creates a data set. A data set stores data retrieved from a data store by applying a \"queryAction\" (a SQL query) or a \"containerAction\" (executing a containerized application). This operation creates the skeleton of a data set. The data set can be populated manually by calling \"CreateDatasetContent\" or automatically according to a \"trigger\" you specify.

" + "documentation":"

Creates a dataset. A dataset stores data retrieved from a data store by applying a queryAction (a SQL query) or a containerAction (executing a containerized application). This operation creates the skeleton of a dataset. The dataset can be populated manually by calling CreateDatasetContent or automatically according to a trigger you specify.

" }, "CreateDatasetContent":{ "name":"CreateDatasetContent", @@ -99,7 +99,7 @@ {"shape":"ServiceUnavailableException"}, {"shape":"ThrottlingException"} ], - "documentation":"

Creates the content of a data set by applying a \"queryAction\" (a SQL query) or a \"containerAction\" (executing a containerized application).

" + "documentation":"

Creates the content of a data set by applying a queryAction (a SQL query) or a containerAction (executing a containerized application).

" }, "CreateDatastore":{ "name":"CreateDatastore", @@ -171,7 +171,7 @@ {"shape":"ServiceUnavailableException"}, {"shape":"ThrottlingException"} ], - "documentation":"

Deletes the specified data set.

You do not have to delete the content of the data set before you perform this operation.

" + "documentation":"

Deletes the specified dataset.

You do not have to delete the content of the dataset before you perform this operation.

" }, "DeleteDatasetContent":{ "name":"DeleteDatasetContent", @@ -188,7 +188,7 @@ {"shape":"ServiceUnavailableException"}, {"shape":"ThrottlingException"} ], - "documentation":"

Deletes the content of the specified data set.

" + "documentation":"

Deletes the content of the specified dataset.

" }, "DeleteDatastore":{ "name":"DeleteDatastore", @@ -256,7 +256,7 @@ {"shape":"ServiceUnavailableException"}, {"shape":"ThrottlingException"} ], - "documentation":"

Retrieves information about a data set.

" + "documentation":"

Retrieves information about a dataset.

" }, "DescribeDatastore":{ "name":"DescribeDatastore", @@ -324,7 +324,7 @@ {"shape":"ServiceUnavailableException"}, {"shape":"ThrottlingException"} ], - "documentation":"

Retrieves the contents of a data set as pre-signed URIs.

" + "documentation":"

Retrieves the contents of a data set as presigned URIs.

" }, "ListChannels":{ "name":"ListChannels", @@ -423,7 +423,7 @@ {"shape":"LimitExceededException"}, {"shape":"ResourceNotFoundException"} ], - "documentation":"

Lists the tags (metadata) which you have assigned to the resource.

" + "documentation":"

Lists the tags (metadata) that you have assigned to the resource.

" }, "PutLoggingOptions":{ "name":"PutLoggingOptions", @@ -438,7 +438,7 @@ {"shape":"ServiceUnavailableException"}, {"shape":"ThrottlingException"} ], - "documentation":"

Sets or updates the AWS IoT Analytics logging options.

Note that if you update the value of any loggingOptions field, it takes up to one minute for the change to take effect. Also, if you change the policy attached to the role you specified in the roleArn field (for example, to correct an invalid policy) it takes up to 5 minutes for that change to take effect.

" + "documentation":"

Sets or updates the AWS IoT Analytics logging options.

If you update the value of any loggingOptions field, it takes up to one minute for the change to take effect. Also, if you change the policy attached to the role you specified in the roleArn field (for example, to correct an invalid policy), it takes up to five minutes for that change to take effect.

" }, "RunPipelineActivity":{ "name":"RunPipelineActivity", @@ -508,7 +508,7 @@ {"shape":"LimitExceededException"}, {"shape":"ResourceNotFoundException"} ], - "documentation":"

Adds to or modifies the tags of the given resource. Tags are metadata which can be used to manage a resource.

" + "documentation":"

Adds to or modifies the tags of the given resource. Tags are metadata that can be used to manage a resource.

" }, "UntagResource":{ "name":"UntagResource", @@ -615,11 +615,11 @@ "members":{ "name":{ "shape":"ActivityName", - "documentation":"

The name of the 'addAttributes' activity.

" + "documentation":"

The name of the addAttributes activity.

" }, "attributes":{ "shape":"AttributeNameMapping", - "documentation":"

A list of 1-50 \"AttributeNameMapping\" objects that map an existing attribute to a new attribute.

The existing attributes remain in the message, so if you want to remove the originals, use \"RemoveAttributeActivity\".

" + "documentation":"

A list of 1-50 AttributeNameMapping objects that map an existing attribute to a new attribute.

The existing attributes remain in the message, so if you want to remove the originals, use RemoveAttributeActivity.

" }, "next":{ "shape":"ActivityName", @@ -655,7 +655,7 @@ "members":{ "messageId":{ "shape":"MessageId", - "documentation":"

The ID of the message that caused the error. (See the value corresponding to the \"messageId\" key in the message object.)

" + "documentation":"

The ID of the message that caused the error. See the value corresponding to the messageId key in the message object.

" }, "errorCode":{ "shape":"ErrorCode", @@ -681,7 +681,7 @@ }, "messages":{ "shape":"Messages", - "documentation":"

The list of messages to be sent. Each message has format: '{ \"messageId\": \"string\", \"payload\": \"string\"}'.

Note that the field names of message payloads (data) that you send to AWS IoT Analytics:

  • Must contain only alphanumeric characters and undescores (_); no other special characters are allowed.

  • Must begin with an alphabetic character or single underscore (_).

  • Cannot contain hyphens (-).

  • In regular expression terms: \"^[A-Za-z_]([A-Za-z0-9]*|[A-Za-z0-9][A-Za-z0-9_]*)$\".

  • Cannot be greater than 255 characters.

  • Are case-insensitive. (Fields named \"foo\" and \"FOO\" in the same payload are considered duplicates.)

For example, {\"temp_01\": 29} or {\"_temp_01\": 29} are valid, but {\"temp-01\": 29}, {\"01_temp\": 29} or {\"__temp_01\": 29} are invalid in message payloads.

" + "documentation":"

The list of messages to be sent. Each message has the format: { \"messageId\": \"string\", \"payload\": \"string\"}.

The field names of message payloads (data) that you send to AWS IoT Analytics:

  • Must contain only alphanumeric characters and undescores (_). No other special characters are allowed.

  • Must begin with an alphabetic character or single underscore (_).

  • Cannot contain hyphens (-).

  • In regular expression terms: \"^[A-Za-z_]([A-Za-z0-9]*|[A-Za-z0-9][A-Za-z0-9_]*)$\".

  • Cannot be more than 255 characters.

  • Are case insensitive. (Fields named foo and FOO in the same payload are considered duplicates.)

For example, {\"temp_01\": 29} or {\"_temp_01\": 29} are valid, but {\"temp-01\": 29}, {\"01_temp\": 29} or {\"__temp_01\": 29} are invalid in message payloads.

" } } }, @@ -721,7 +721,7 @@ }, "reprocessingId":{ "shape":"ReprocessingId", - "documentation":"

The ID of the reprocessing task (returned by \"StartPipelineReprocessing\").

", + "documentation":"

The ID of the reprocessing task (returned by StartPipelineReprocessing).

", "location":"uri", "locationName":"reprocessingId" } @@ -741,7 +741,7 @@ }, "storage":{ "shape":"ChannelStorage", - "documentation":"

Where channel data is stored. You may choose one of \"serviceManagedS3\" or \"customerManagedS3\" storage. If not specified, the default is \"serviceManagedS3\". This cannot be changed after creation of the channel.

" + "documentation":"

Where channel data is stored. You can choose one of serviceManagedS3 or customerManagedS3 storage. If not specified, the default is serviceManagedS3. You cannot change this storage option after the channel is created.

" }, "arn":{ "shape":"ChannelArn", @@ -762,6 +762,10 @@ "lastUpdateTime":{ "shape":"Timestamp", "documentation":"

When the channel was last updated.

" + }, + "lastMessageArrivalTime":{ + "shape":"Timestamp", + "documentation":"

The last time when a new message arrived in the channel.

AWS IoT Analytics updates this value at most once per minute for one channel. Hence, the lastMessageArrivalTime value is an approximation.

This feature only applies to messages that arrived in the data store after October 23, 2020.

" } }, "documentation":"

A collection of data from an MQTT topic. Channels archive the raw, unprocessed messages before publishing the data to a pipeline.

" @@ -775,7 +779,7 @@ "members":{ "name":{ "shape":"ActivityName", - "documentation":"

The name of the 'channel' activity.

" + "documentation":"

The name of the channel activity.

" }, "channelName":{ "shape":"ChannelName", @@ -818,21 +822,21 @@ "members":{ "serviceManagedS3":{ "shape":"ServiceManagedChannelS3Storage", - "documentation":"

Use this to store channel data in an S3 bucket managed by the AWS IoT Analytics service. The choice of service-managed or customer-managed S3 storage cannot be changed after creation of the channel.

" + "documentation":"

Use this to store channel data in an S3 bucket managed by AWS IoT Analytics. You cannot change the choice of service-managed or customer-managed S3 storage after the channel is created.

" }, "customerManagedS3":{ "shape":"CustomerManagedChannelS3Storage", - "documentation":"

Use this to store channel data in an S3 bucket that you manage. If customer managed storage is selected, the \"retentionPeriod\" parameter is ignored. The choice of service-managed or customer-managed S3 storage cannot be changed after creation of the channel.

" + "documentation":"

Use this to store channel data in an S3 bucket that you manage. If customer managed storage is selected, the retentionPeriod parameter is ignored. You cannot change the choice of service-managed or customer-managed S3 storage after the channel is created.

" } }, - "documentation":"

Where channel data is stored. You may choose one of \"serviceManagedS3\" or \"customerManagedS3\" storage. If not specified, the default is \"serviceManagedS3\". This cannot be changed after creation of the channel.

" + "documentation":"

Where channel data is stored. You may choose one of serviceManagedS3 or customerManagedS3 storage. If not specified, the default is serviceManagedS3. This cannot be changed after creation of the channel.

" }, "ChannelStorageSummary":{ "type":"structure", "members":{ "serviceManagedS3":{ "shape":"ServiceManagedChannelS3StorageSummary", - "documentation":"

Used to store channel data in an S3 bucket managed by the AWS IoT Analytics service.

" + "documentation":"

Used to store channel data in an S3 bucket managed by AWS IoT Analytics.

" }, "customerManagedS3":{ "shape":"CustomerManagedChannelS3StorageSummary", @@ -867,6 +871,10 @@ "lastUpdateTime":{ "shape":"Timestamp", "documentation":"

The last time the channel was updated.

" + }, + "lastMessageArrivalTime":{ + "shape":"Timestamp", + "documentation":"

The last time when a new message arrived in the channel.

AWS IoT Analytics updates this value at most once per minute for one channel. Hence, the lastMessageArrivalTime value is an approximation.

This feature only applies to messages that arrived in the data store after October 23, 2020.

" } }, "documentation":"

A summary of information about a channel.

" @@ -888,22 +896,22 @@ "members":{ "image":{ "shape":"Image", - "documentation":"

The ARN of the Docker container stored in your account. The Docker container contains an application and needed support libraries and is used to generate data set contents.

" + "documentation":"

The ARN of the Docker container stored in your account. The Docker container contains an application and required support libraries and is used to generate dataset contents.

" }, "executionRoleArn":{ "shape":"RoleArn", - "documentation":"

The ARN of the role which gives permission to the system to access needed resources in order to run the \"containerAction\". This includes, at minimum, permission to retrieve the data set contents which are the input to the containerized application.

" + "documentation":"

The ARN of the role that gives permission to the system to access required resources to run the containerAction. This includes, at minimum, permission to retrieve the dataset contents that are the input to the containerized application.

" }, "resourceConfiguration":{ "shape":"ResourceConfiguration", - "documentation":"

Configuration of the resource which executes the \"containerAction\".

" + "documentation":"

Configuration of the resource that executes the containerAction.

" }, "variables":{ "shape":"Variables", - "documentation":"

The values of variables used within the context of the execution of the containerized application (basically, parameters passed to the application). Each variable must have a name and a value given by one of \"stringValue\", \"datasetContentVersionValue\", or \"outputFileUriValue\".

" + "documentation":"

The values of variables used in the context of the execution of the containerized application (basically, parameters passed to the application). Each variable must have a name and a value given by one of stringValue, datasetContentVersionValue, or outputFileUriValue.

" } }, - "documentation":"

Information needed to run the \"containerAction\" to produce data set contents.

" + "documentation":"

Information required to run the containerAction to produce dataset contents.

" }, "CreateChannelRequest":{ "type":"structure", @@ -915,11 +923,11 @@ }, "channelStorage":{ "shape":"ChannelStorage", - "documentation":"

Where channel data is stored. You may choose one of \"serviceManagedS3\" or \"customerManagedS3\" storage. If not specified, the default is \"serviceManagedS3\". This cannot be changed after creation of the channel.

" + "documentation":"

Where channel data is stored. You can choose one of serviceManagedS3 or customerManagedS3 storage. If not specified, the default is serviceManagedS3. You cannot change this storage option after the channel is created.

" }, "retentionPeriod":{ "shape":"RetentionPeriod", - "documentation":"

How long, in days, message data is kept for the channel. When \"customerManagedS3\" storage is selected, this parameter is ignored.

" + "documentation":"

How long, in days, message data is kept for the channel. When customerManagedS3 storage is selected, this parameter is ignored.

" }, "tags":{ "shape":"TagList", @@ -950,9 +958,13 @@ "members":{ "datasetName":{ "shape":"DatasetName", - "documentation":"

The name of the data set.

", + "documentation":"

The name of the dataset.

", "location":"uri", "locationName":"datasetName" + }, + "versionId":{ + "shape":"DatasetContentVersion", + "documentation":"

The version ID of the dataset content. To specify versionId for a dataset content, the dataset must use a DeltaTimer filter.

" } } }, @@ -961,7 +973,7 @@ "members":{ "versionId":{ "shape":"DatasetContentVersion", - "documentation":"

The version ID of the data set contents which are being created.

" + "documentation":"

The version ID of the dataset contents that are being created.

" } } }, @@ -982,23 +994,27 @@ }, "triggers":{ "shape":"DatasetTriggers", - "documentation":"

A list of triggers. A trigger causes data set contents to be populated at a specified time interval or when another data set's contents are created. The list of triggers can be empty or contain up to five DataSetTrigger objects.

" + "documentation":"

A list of triggers. A trigger causes data set contents to be populated at a specified time interval or when another data set's contents are created. The list of triggers can be empty or contain up to five DataSetTrigger objects.

" }, "contentDeliveryRules":{ "shape":"DatasetContentDeliveryRules", - "documentation":"

When data set contents are created they are delivered to destinations specified here.

" + "documentation":"

When dataset contents are created, they are delivered to destinations specified here.

" }, "retentionPeriod":{ "shape":"RetentionPeriod", - "documentation":"

[Optional] How long, in days, versions of data set contents are kept for the data set. If not specified or set to null, versions of data set contents are retained for at most 90 days. The number of versions of data set contents retained is determined by the versioningConfiguration parameter. (For more information, see https://docs.aws.amazon.com/iotanalytics/latest/userguide/getting-started.html#aws-iot-analytics-dataset-versions)

" + "documentation":"

Optional. How long, in days, versions of dataset contents are kept for the dataset. If not specified or set to null, versions of dataset contents are retained for at most 90 days. The number of versions of dataset contents retained is determined by the versioningConfiguration parameter. For more information, see Keeping Multiple Versions of AWS IoT Analytics Data Sets in the AWS IoT Analytics User Guide.

" }, "versioningConfiguration":{ "shape":"VersioningConfiguration", - "documentation":"

[Optional] How many versions of data set contents are kept. If not specified or set to null, only the latest version plus the latest succeeded version (if they are different) are kept for the time period specified by the \"retentionPeriod\" parameter. (For more information, see https://docs.aws.amazon.com/iotanalytics/latest/userguide/getting-started.html#aws-iot-analytics-dataset-versions)

" + "documentation":"

Optional. How many versions of dataset contents are kept. If not specified or set to null, only the latest version plus the latest succeeded version (if they are different) are kept for the time period specified by the retentionPeriod parameter. For more information, see Keeping Multiple Versions of AWS IoT Analytics Data Sets in the AWS IoT Analytics User Guide.

" }, "tags":{ "shape":"TagList", "documentation":"

Metadata which can be used to manage the data set.

" + }, + "lateDataRules":{ + "shape":"LateDataRules", + "documentation":"

A list of data rules that send notifications to Amazon CloudWatch, when data arrives late. To specify lateDataRules, the dataset must use a DeltaTimer filter.

" } } }, @@ -1007,15 +1023,15 @@ "members":{ "datasetName":{ "shape":"DatasetName", - "documentation":"

The name of the data set.

" + "documentation":"

The name of the dataset.

" }, "datasetArn":{ "shape":"DatasetArn", - "documentation":"

The ARN of the data set.

" + "documentation":"

The ARN of the dataset.

" }, "retentionPeriod":{ "shape":"RetentionPeriod", - "documentation":"

How long, in days, data set contents are kept for the data set.

" + "documentation":"

How long, in days, dataset contents are kept for the dataset.

" } } }, @@ -1029,11 +1045,11 @@ }, "datastoreStorage":{ "shape":"DatastoreStorage", - "documentation":"

Where data store data is stored. You may choose one of \"serviceManagedS3\" or \"customerManagedS3\" storage. If not specified, the default is \"serviceManagedS3\". This cannot be changed after the data store is created.

" + "documentation":"

Where data store data is stored. You can choose one of serviceManagedS3 or customerManagedS3 storage. If not specified, the default is serviceManagedS3. You cannot change this storage option after the data store is created.

" }, "retentionPeriod":{ "shape":"RetentionPeriod", - "documentation":"

How long, in days, message data is kept for the data store. When \"customerManagedS3\" storage is selected, this parameter is ignored.

" + "documentation":"

How long, in days, message data is kept for the data store. When customerManagedS3 storage is selected, this parameter is ignored.

" }, "tags":{ "shape":"TagList", @@ -1071,7 +1087,7 @@ }, "pipelineActivities":{ "shape":"PipelineActivities", - "documentation":"

A list of \"PipelineActivity\" objects. Activities perform transformations on your messages, such as removing, renaming or adding message attributes; filtering messages based on attribute values; invoking your Lambda functions on messages for advanced processing; or performing mathematical transformations to normalize device data.

The list can be 2-25 PipelineActivity objects and must contain both a channel and a datastore activity. Each entry in the list must contain only one activity, for example:

pipelineActivities = [ { \"channel\": { ... } }, { \"lambda\": { ... } }, ... ]

" + "documentation":"

A list of PipelineActivity objects. Activities perform transformations on your messages, such as removing, renaming or adding message attributes; filtering messages based on attribute values; invoking your Lambda functions on messages for advanced processing; or performing mathematical transformations to normalize device data.

The list can be 2-25 PipelineActivity objects and must contain both a channel and a datastore activity. Each entry in the list must contain only one activity. For example:

pipelineActivities = [ { \"channel\": { ... } }, { \"lambda\": { ... } }, ... ]

" }, "tags":{ "shape":"TagList", @@ -1101,33 +1117,33 @@ "members":{ "bucket":{ "shape":"BucketName", - "documentation":"

The name of the Amazon S3 bucket in which channel data is stored.

" + "documentation":"

The name of the S3 bucket in which channel data is stored.

" }, "keyPrefix":{ "shape":"S3KeyPrefix", - "documentation":"

[Optional] The prefix used to create the keys of the channel data objects. Each object in an Amazon S3 bucket has a key that is its unique identifier within the bucket (each object in a bucket has exactly one key). The prefix must end with a '/'.

" + "documentation":"

Optional. The prefix used to create the keys of the channel data objects. Each object in an S3 bucket has a key that is its unique identifier in the bucket. Each object in a bucket has exactly one key. The prefix must end with a forward slash (/).

" }, "roleArn":{ "shape":"RoleArn", - "documentation":"

The ARN of the role which grants AWS IoT Analytics permission to interact with your Amazon S3 resources.

" + "documentation":"

The ARN of the role that grants AWS IoT Analytics permission to interact with your Amazon S3 resources.

" } }, - "documentation":"

Use this to store channel data in an S3 bucket that you manage. If customer managed storage is selected, the \"retentionPeriod\" parameter is ignored. The choice of service-managed or customer-managed S3 storage cannot be changed after creation of the channel.

" + "documentation":"

Use this to store channel data in an S3 bucket that you manage. If customer managed storage is selected, the retentionPeriod parameter is ignored. You cannot change the choice of service-managed or customer-managed S3 storage after the channel is created.

" }, "CustomerManagedChannelS3StorageSummary":{ "type":"structure", "members":{ "bucket":{ "shape":"BucketName", - "documentation":"

The name of the Amazon S3 bucket in which channel data is stored.

" + "documentation":"

The name of the S3 bucket in which channel data is stored.

" }, "keyPrefix":{ "shape":"S3KeyPrefix", - "documentation":"

[Optional] The prefix used to create the keys of the channel data objects. Each object in an Amazon S3 bucket has a key that is its unique identifier within the bucket (each object in a bucket has exactly one key). The prefix must end with a '/'.

" + "documentation":"

Optional. The prefix used to create the keys of the channel data objects. Each object in an S3 bucket has a key that is its unique identifier within the bucket (each object in a bucket has exactly one key). The prefix must end with a forward slash (/).

" }, "roleArn":{ "shape":"RoleArn", - "documentation":"

The ARN of the role which grants AWS IoT Analytics permission to interact with your Amazon S3 resources.

" + "documentation":"

The ARN of the role that grants AWS IoT Analytics permission to interact with your Amazon S3 resources.

" } }, "documentation":"

Used to store channel data in an S3 bucket that you manage.

" @@ -1141,33 +1157,33 @@ "members":{ "bucket":{ "shape":"BucketName", - "documentation":"

The name of the Amazon S3 bucket in which data store data is stored.

" + "documentation":"

The name of the S3 bucket in which data store data is stored.

" }, "keyPrefix":{ "shape":"S3KeyPrefix", - "documentation":"

[Optional] The prefix used to create the keys of the data store data objects. Each object in an Amazon S3 bucket has a key that is its unique identifier within the bucket (each object in a bucket has exactly one key). The prefix must end with a '/'.

" + "documentation":"

Optional. The prefix used to create the keys of the data store data objects. Each object in an S3 bucket has a key that is its unique identifier in the bucket. Each object in a bucket has exactly one key. The prefix must end with a forward slash (/).

" }, "roleArn":{ "shape":"RoleArn", - "documentation":"

The ARN of the role which grants AWS IoT Analytics permission to interact with your Amazon S3 resources.

" + "documentation":"

The ARN of the role that grants AWS IoT Analytics permission to interact with your Amazon S3 resources.

" } }, - "documentation":"

Use this to store data store data in an S3 bucket that you manage. When customer managed storage is selected, the \"retentionPeriod\" parameter is ignored. The choice of service-managed or customer-managed S3 storage cannot be changed after creation of the data store.

" + "documentation":"

Use this to store data store data in an S3 bucket that you manage. When customer-managed storage is selected, the retentionPeriod parameter is ignored. You cannot change the choice of service-managed or customer-managed S3 storage after the data store is created.

" }, "CustomerManagedDatastoreS3StorageSummary":{ "type":"structure", "members":{ "bucket":{ "shape":"BucketName", - "documentation":"

The name of the Amazon S3 bucket in which data store data is stored.

" + "documentation":"

The name of the S3 bucket in which data store data is stored.

" }, "keyPrefix":{ "shape":"S3KeyPrefix", - "documentation":"

[Optional] The prefix used to create the keys of the data store data objects. Each object in an Amazon S3 bucket has a key that is its unique identifier within the bucket (each object in a bucket has exactly one key). The prefix must end with a '/'.

" + "documentation":"

Optional. The prefix used to create the keys of the data store data objects. Each object in an S3 bucket has a key that is its unique identifier in the bucket. Each object in a bucket has exactly one key. The prefix must end with a forward slash (/).

" }, "roleArn":{ "shape":"RoleArn", - "documentation":"

The ARN of the role which grants AWS IoT Analytics permission to interact with your Amazon S3 resources.

" + "documentation":"

The ARN of the role that grants AWS IoT Analytics permission to interact with your Amazon S3 resources.

" } }, "documentation":"

Used to store data store data in an S3 bucket that you manage.

" @@ -1185,15 +1201,15 @@ }, "actions":{ "shape":"DatasetActions", - "documentation":"

The \"DatasetAction\" objects that automatically create the data set contents.

" + "documentation":"

The DatasetAction objects that automatically create the data set contents.

" }, "triggers":{ "shape":"DatasetTriggers", - "documentation":"

The \"DatasetTrigger\" objects that specify when the data set is automatically updated.

" + "documentation":"

The DatasetTrigger objects that specify when the data set is automatically updated.

" }, "contentDeliveryRules":{ "shape":"DatasetContentDeliveryRules", - "documentation":"

When data set contents are created they are delivered to destinations specified here.

" + "documentation":"

When dataset contents are created they are delivered to destinations specified here.

" }, "status":{ "shape":"DatasetStatus", @@ -1209,11 +1225,15 @@ }, "retentionPeriod":{ "shape":"RetentionPeriod", - "documentation":"

[Optional] How long, in days, message data is kept for the data set.

" + "documentation":"

Optional. How long, in days, message data is kept for the data set.

" }, "versioningConfiguration":{ "shape":"VersioningConfiguration", - "documentation":"

[Optional] How many versions of data set contents are kept. If not specified or set to null, only the latest version plus the latest succeeded version (if they are different) are kept for the time period specified by the \"retentionPeriod\" parameter. (For more information, see https://docs.aws.amazon.com/iotanalytics/latest/userguide/getting-started.html#aws-iot-analytics-dataset-versions)

" + "documentation":"

Optional. How many versions of dataset contents are kept. If not specified or set to null, only the latest version plus the latest succeeded version (if they are different) are kept for the time period specified by the retentionPeriod parameter. For more information, see Keeping Multiple Versions of AWS IoT Analytics Data Sets in the AWS IoT Analytics User Guide.

" + }, + "lateDataRules":{ + "shape":"LateDataRules", + "documentation":"

A list of data rules that send notifications to Amazon CloudWatch, when data arrives late. To specify lateDataRules, the dataset must use a DeltaTimer filter.

" } }, "documentation":"

Information about a data set.

" @@ -1227,14 +1247,14 @@ }, "queryAction":{ "shape":"SqlQueryDatasetAction", - "documentation":"

An \"SqlQueryDatasetAction\" object that uses an SQL query to automatically create data set contents.

" + "documentation":"

An SqlQueryDatasetAction object that uses an SQL query to automatically create data set contents.

" }, "containerAction":{ "shape":"ContainerDatasetAction", - "documentation":"

Information which allows the system to run a containerized application in order to create the data set contents. The application must be in a Docker container along with any needed support libraries.

" + "documentation":"

Information that allows the system to run a containerized application to create the dataset contents. The application must be in a Docker container along with any required support libraries.

" } }, - "documentation":"

A \"DatasetAction\" object that specifies how data set contents are automatically created.

" + "documentation":"

A DatasetAction object that specifies how data set contents are automatically created.

" }, "DatasetActionName":{ "type":"string", @@ -1253,14 +1273,14 @@ "members":{ "actionName":{ "shape":"DatasetActionName", - "documentation":"

The name of the action which automatically creates the data set's contents.

" + "documentation":"

The name of the action that automatically creates the dataset's contents.

" }, "actionType":{ "shape":"DatasetActionType", - "documentation":"

The type of action by which the data set's contents are automatically created.

" + "documentation":"

The type of action by which the dataset's contents are automatically created.

" } }, - "documentation":"

Information about the action which automatically creates the data set's contents.

" + "documentation":"

Information about the action that automatically creates the dataset's contents.

" }, "DatasetActionType":{ "type":"string", @@ -1281,14 +1301,14 @@ "members":{ "iotEventsDestinationConfiguration":{ "shape":"IotEventsDestinationConfiguration", - "documentation":"

Configuration information for delivery of data set contents to AWS IoT Events.

" + "documentation":"

Configuration information for delivery of dataset contents to AWS IoT Events.

" }, "s3DestinationConfiguration":{ "shape":"S3DestinationConfiguration", - "documentation":"

Configuration information for delivery of data set contents to Amazon S3.

" + "documentation":"

Configuration information for delivery of dataset contents to Amazon S3.

" } }, - "documentation":"

The destination to which data set contents are delivered.

" + "documentation":"

The destination to which dataset contents are delivered.

" }, "DatasetContentDeliveryRule":{ "type":"structure", @@ -1296,14 +1316,14 @@ "members":{ "entryName":{ "shape":"EntryName", - "documentation":"

The name of the data set content delivery rules entry.

" + "documentation":"

The name of the dataset content delivery rules entry.

" }, "destination":{ "shape":"DatasetContentDeliveryDestination", - "documentation":"

The destination to which data set contents are delivered.

" + "documentation":"

The destination to which dataset contents are delivered.

" } }, - "documentation":"

When data set contents are created they are delivered to destination specified here.

" + "documentation":"

When dataset contents are created, they are delivered to destination specified here.

" }, "DatasetContentDeliveryRules":{ "type":"list", @@ -1324,7 +1344,7 @@ "members":{ "state":{ "shape":"DatasetContentState", - "documentation":"

The state of the data set contents. Can be one of \"READY\", \"CREATING\", \"SUCCEEDED\" or \"FAILED\".

" + "documentation":"

The state of the data set contents. Can be one of READY, CREATING, SUCCEEDED, or FAILED.

" }, "reason":{ "shape":"Reason", @@ -1342,7 +1362,7 @@ "members":{ "version":{ "shape":"DatasetContentVersion", - "documentation":"

The version of the data set contents.

" + "documentation":"

The version of the dataset contents.

" }, "status":{ "shape":"DatasetContentStatus", @@ -1350,18 +1370,18 @@ }, "creationTime":{ "shape":"Timestamp", - "documentation":"

The actual time the creation of the data set contents was started.

" + "documentation":"

The actual time the creation of the dataset contents was started.

" }, "scheduleTime":{ "shape":"Timestamp", - "documentation":"

The time the creation of the data set contents was scheduled to start.

" + "documentation":"

The time the creation of the dataset contents was scheduled to start.

" }, "completionTime":{ "shape":"Timestamp", "documentation":"

The time the dataset content status was updated to SUCCEEDED or FAILED.

" } }, - "documentation":"

Summary information about data set contents.

" + "documentation":"

Summary information about dataset contents.

" }, "DatasetContentVersion":{ "type":"string", @@ -1374,10 +1394,10 @@ "members":{ "datasetName":{ "shape":"DatasetName", - "documentation":"

The name of the data set whose latest contents are used as input to the notebook or application.

" + "documentation":"

The name of the dataset whose latest contents are used as input to the notebook or application.

" } }, - "documentation":"

The data set whose latest contents are used as input to the notebook or application.

" + "documentation":"

The dataset whose latest contents are used as input to the notebook or application.

" }, "DatasetEntries":{ "type":"list", @@ -1392,7 +1412,7 @@ }, "dataURI":{ "shape":"PresignedURI", - "documentation":"

The pre-signed URI of the data set item.

" + "documentation":"

The presigned URI of the data set item.

" } }, "documentation":"

The reference to a data set entry.

" @@ -1436,11 +1456,11 @@ }, "triggers":{ "shape":"DatasetTriggers", - "documentation":"

A list of triggers. A trigger causes data set content to be populated at a specified time interval or when another data set is populated. The list of triggers can be empty or contain up to five DataSetTrigger objects

" + "documentation":"

A list of triggers. A trigger causes data set content to be populated at a specified time interval or when another data set is populated. The list of triggers can be empty or contain up to five DataSetTrigger objects

" }, "actions":{ "shape":"DatasetActionSummaries", - "documentation":"

A list of \"DataActionSummary\" objects.

" + "documentation":"

A list of DataActionSummary objects.

" } }, "documentation":"

A summary of information about a data set.

" @@ -1450,14 +1470,14 @@ "members":{ "schedule":{ "shape":"Schedule", - "documentation":"

The \"Schedule\" when the trigger is initiated.

" + "documentation":"

The Schedule when the trigger is initiated.

" }, "dataset":{ "shape":"TriggeringDataset", "documentation":"

The data set whose content creation triggers the creation of this data set's contents.

" } }, - "documentation":"

The \"DatasetTrigger\" that specifies when the data set is automatically updated.

" + "documentation":"

The DatasetTrigger that specifies when the data set is automatically updated.

" }, "DatasetTriggers":{ "type":"list", @@ -1474,7 +1494,7 @@ }, "storage":{ "shape":"DatastoreStorage", - "documentation":"

Where data store data is stored. You may choose one of \"serviceManagedS3\" or \"customerManagedS3\" storage. If not specified, the default is \"serviceManagedS3\". This cannot be changed after the data store is created.

" + "documentation":"

Where data store data is stored. You can choose one of serviceManagedS3 or customerManagedS3 storage. If not specified, the default is serviceManagedS3. You cannot change this storage option after the data store is created.

" }, "arn":{ "shape":"DatastoreArn", @@ -1486,7 +1506,7 @@ }, "retentionPeriod":{ "shape":"RetentionPeriod", - "documentation":"

How long, in days, message data is kept for the data store. When \"customerManagedS3\" storage is selected, this parameter is ignored.

" + "documentation":"

How long, in days, message data is kept for the data store. When customerManagedS3 storage is selected, this parameter is ignored.

" }, "creationTime":{ "shape":"Timestamp", @@ -1495,6 +1515,10 @@ "lastUpdateTime":{ "shape":"Timestamp", "documentation":"

The last time the data store was updated.

" + }, + "lastMessageArrivalTime":{ + "shape":"Timestamp", + "documentation":"

The last time when a new message arrived in the data store.

AWS IoT Analytics updates this value at most once per minute for one data store. Hence, the lastMessageArrivalTime value is an approximation.

This feature only applies to messages that arrived in the data store after October 23, 2020.

" } }, "documentation":"

Information about a data store.

" @@ -1508,14 +1532,14 @@ "members":{ "name":{ "shape":"ActivityName", - "documentation":"

The name of the 'datastore' activity.

" + "documentation":"

The name of the datastore activity.

" }, "datastoreName":{ "shape":"DatastoreName", "documentation":"

The name of the data store where processed messages are stored.

" } }, - "documentation":"

The 'datastore' activity that specifies where to store the processed data.

" + "documentation":"

The datastore activity that specifies where to store the processed data.

" }, "DatastoreArn":{"type":"string"}, "DatastoreName":{ @@ -1547,21 +1571,21 @@ "members":{ "serviceManagedS3":{ "shape":"ServiceManagedDatastoreS3Storage", - "documentation":"

Use this to store data store data in an S3 bucket managed by the AWS IoT Analytics service. The choice of service-managed or customer-managed S3 storage cannot be changed after creation of the data store.

" + "documentation":"

Use this to store data store data in an S3 bucket managed by AWS IoT Analytics. You cannot change the choice of service-managed or customer-managed S3 storage after the data store is created.

" }, "customerManagedS3":{ "shape":"CustomerManagedDatastoreS3Storage", - "documentation":"

Use this to store data store data in an S3 bucket that you manage. When customer managed storage is selected, the \"retentionPeriod\" parameter is ignored. The choice of service-managed or customer-managed S3 storage cannot be changed after creation of the data store.

" + "documentation":"

Use this to store data store data in an S3 bucket that you manage. When customer managed storage is selected, the retentionPeriod parameter is ignored. The choice of service-managed or customer-managed S3 storage cannot be changed after creation of the data store.

" } }, - "documentation":"

Where data store data is stored. You may choose one of \"serviceManagedS3\" or \"customerManagedS3\" storage. If not specified, the default is \"serviceManagedS3\". This cannot be changed after the data store is created.

" + "documentation":"

Where data store data is stored. You can choose one of serviceManagedS3 or customerManagedS3 storage. If not specified, the default is serviceManagedS3. You cannot change this storage option after the data store is created.

" }, "DatastoreStorageSummary":{ "type":"structure", "members":{ "serviceManagedS3":{ "shape":"ServiceManagedDatastoreS3StorageSummary", - "documentation":"

Used to store data store data in an S3 bucket managed by the AWS IoT Analytics service.

" + "documentation":"

Used to store data store data in an S3 bucket managed by AWS IoT Analytics.

" }, "customerManagedS3":{ "shape":"CustomerManagedDatastoreS3StorageSummary", @@ -1596,6 +1620,10 @@ "lastUpdateTime":{ "shape":"Timestamp", "documentation":"

The last time the data store was updated.

" + }, + "lastMessageArrivalTime":{ + "shape":"Timestamp", + "documentation":"

The last time when a new message arrived in the data store.

AWS IoT Analytics updates this value at most once per minute for one data store. Hence, the lastMessageArrivalTime value is an approximation.

This feature only applies to messages that arrived in the data store after October 23, 2020.

" } }, "documentation":"

A summary of information about a data store.

" @@ -1618,13 +1646,13 @@ "members":{ "datasetName":{ "shape":"DatasetName", - "documentation":"

The name of the data set whose content is deleted.

", + "documentation":"

The name of the dataset whose content is deleted.

", "location":"uri", "locationName":"datasetName" }, "versionId":{ "shape":"DatasetContentVersion", - "documentation":"

The version of the data set whose content is deleted. You can also use the strings \"$LATEST\" or \"$LATEST_SUCCEEDED\" to delete the latest or latest successfully completed data set. If not specified, \"$LATEST_SUCCEEDED\" is the default.

", + "documentation":"

The version of the dataset whose content is deleted. You can also use the strings \"$LATEST\" or \"$LATEST_SUCCEEDED\" to delete the latest or latest successfully completed data set. If not specified, \"$LATEST_SUCCEEDED\" is the default.

", "location":"querystring", "locationName":"versionId" } @@ -1675,15 +1703,26 @@ "members":{ "offsetSeconds":{ "shape":"OffsetSeconds", - "documentation":"

The number of seconds of estimated \"in flight\" lag time of message data. When you create data set contents using message data from a specified time frame, some message data may still be \"in flight\" when processing begins, and so will not arrive in time to be processed. Use this field to make allowances for the \"in flight\" time of your message data, so that data not processed from a previous time frame will be included with the next time frame. Without this, missed message data would be excluded from processing during the next time frame as well, because its timestamp places it within the previous time frame.

" + "documentation":"

The number of seconds of estimated in-flight lag time of message data. When you create dataset contents using message data from a specified timeframe, some message data might still be in flight when processing begins, and so do not arrive in time to be processed. Use this field to make allowances for the in flight time of your message data, so that data not processed from a previous timeframe is included with the next timeframe. Otherwise, missed message data would be excluded from processing during the next timeframe too, because its timestamp places it within the previous timeframe.

" }, "timeExpression":{ "shape":"TimeExpression", - "documentation":"

An expression by which the time of the message data may be determined. This may be the name of a timestamp field, or a SQL expression which is used to derive the time the message data was generated.

" + "documentation":"

An expression by which the time of the message data might be determined. This can be the name of a timestamp field or a SQL expression that is used to derive the time the message data was generated.

" } }, "documentation":"

Used to limit data to that which has arrived since the last execution of the action.

" }, + "DeltaTimeSessionWindowConfiguration":{ + "type":"structure", + "required":["timeoutInMinutes"], + "members":{ + "timeoutInMinutes":{ + "shape":"SessionTimeoutInMinutes", + "documentation":"

A time interval. You can use timeoutInMinutes so that AWS IoT Analytics can batch up late data notifications that have been generated since the last execution. AWS IoT Analytics sends one batch of notifications to Amazon CloudWatch Events at one time.

For more information about how to write a timestamp expression, see Date and Time Functions and Operators, in the Presto 0.172 Documentation.

" + } + }, + "documentation":"

A structure that contains the configuration information of a delta time session window.

DeltaTime specifies a time interval. You can use DeltaTime to create dataset contents with data that has arrived in the data store since the last execution. For an example of DeltaTime, see Creating a SQL dataset with a delta window (CLI) in the AWS IoT Analytics User Guide.

" + }, "DescribeChannelRequest":{ "type":"structure", "required":["channelName"], @@ -1711,7 +1750,7 @@ }, "statistics":{ "shape":"ChannelStatistics", - "documentation":"

Statistics about the channel. Included if the 'includeStatistics' parameter is set to true in the request.

" + "documentation":"

Statistics about the channel. Included if the includeStatistics parameter is set to true in the request.

" } } }, @@ -1763,7 +1802,7 @@ }, "statistics":{ "shape":"DatastoreStatistics", - "documentation":"

Additional statistical information about the data store. Included if the 'includeStatistics' parameter is set to true in the request.

" + "documentation":"

Additional statistical information about the data store. Included if the includeStatistics parameter is set to true in the request.

" } } }, @@ -1798,7 +1837,7 @@ "members":{ "pipeline":{ "shape":"Pipeline", - "documentation":"

A \"Pipeline\" object that contains information about the pipeline.

" + "documentation":"

A Pipeline object that contains information about the pipeline.

" } } }, @@ -1813,7 +1852,7 @@ "members":{ "name":{ "shape":"ActivityName", - "documentation":"

The name of the 'deviceRegistryEnrich' activity.

" + "documentation":"

The name of the deviceRegistryEnrich activity.

" }, "attribute":{ "shape":"AttributeName", @@ -1845,7 +1884,7 @@ "members":{ "name":{ "shape":"ActivityName", - "documentation":"

The name of the 'deviceShadowEnrich' activity.

" + "documentation":"

The name of the deviceShadowEnrich activity.

" }, "attribute":{ "shape":"AttributeName", @@ -1864,7 +1903,7 @@ "documentation":"

The next activity in the pipeline.

" } }, - "documentation":"

An activity that adds information from the AWS IoT Device Shadows service to a message.

" + "documentation":"

An activity that adds information from the AWS IoT Device Shadow service to a message.

" }, "DoubleValue":{"type":"double"}, "EndTime":{"type":"timestamp"}, @@ -1876,7 +1915,7 @@ "members":{ "estimatedSizeInBytes":{ "shape":"SizeInBytes", - "documentation":"

The estimated size of the resource in bytes.

" + "documentation":"

The estimated size of the resource, in bytes.

" }, "estimatedOn":{ "shape":"Timestamp", @@ -1894,11 +1933,11 @@ "members":{ "name":{ "shape":"ActivityName", - "documentation":"

The name of the 'filter' activity.

" + "documentation":"

The name of the filter activity.

" }, "filter":{ "shape":"FilterExpression", - "documentation":"

An expression that looks like a SQL WHERE clause that must return a Boolean value.

" + "documentation":"

An expression that looks like a SQL WHERE clause that must return a Boolean value. Messages that satisfy the condition are passed to the next activity.

" }, "next":{ "shape":"ActivityName", @@ -1935,7 +1974,7 @@ "members":{ "entries":{ "shape":"DatasetEntries", - "documentation":"

A list of \"DatasetEntry\" objects.

" + "documentation":"

A list of DatasetEntry objects.

" }, "timestamp":{ "shape":"Timestamp", @@ -1956,14 +1995,14 @@ "members":{ "tableName":{ "shape":"GlueTableName", - "documentation":"

The name of the table in your AWS Glue Data Catalog which is used to perform the ETL (extract, transform and load) operations. (An AWS Glue Data Catalog table contains partitioned data and descriptions of data sources and targets.)

" + "documentation":"

The name of the table in your AWS Glue Data Catalog that is used to perform the ETL operations. An AWS Glue Data Catalog table contains partitioned data and descriptions of data sources and targets.

" }, "databaseName":{ "shape":"GlueDatabaseName", - "documentation":"

The name of the database in your AWS Glue Data Catalog in which the table is located. (An AWS Glue Data Catalog database contains Glue Data tables.)

" + "documentation":"

The name of the database in your AWS Glue Data Catalog in which the table is located. An AWS Glue Data Catalog database contains metadata tables.

" } }, - "documentation":"

Configuration information for coordination with the AWS Glue ETL (extract, transform and load) service.

" + "documentation":"

Configuration information for coordination with AWS Glue, a fully managed extract, transform and load (ETL) service.

" }, "GlueDatabaseName":{ "type":"string", @@ -2010,14 +2049,14 @@ "members":{ "inputName":{ "shape":"IotEventsInputName", - "documentation":"

The name of the AWS IoT Events input to which data set contents are delivered.

" + "documentation":"

The name of the AWS IoT Events input to which dataset contents are delivered.

" }, "roleArn":{ "shape":"RoleArn", - "documentation":"

The ARN of the role which grants AWS IoT Analytics permission to deliver data set contents to an AWS IoT Events input.

" + "documentation":"

The ARN of the role that grants AWS IoT Analytics permission to deliver dataset contents to an AWS IoT Events input.

" } }, - "documentation":"

Configuration information for delivery of data set contents to AWS IoT Events.

" + "documentation":"

Configuration information for delivery of dataset contents to AWS IoT Events.

" }, "IotEventsInputName":{ "type":"string", @@ -2035,7 +2074,7 @@ "members":{ "name":{ "shape":"ActivityName", - "documentation":"

The name of the 'lambda' activity.

" + "documentation":"

The name of the lambda activity.

" }, "lambdaName":{ "shape":"LambdaName", @@ -2043,7 +2082,7 @@ }, "batchSize":{ "shape":"ActivityBatchSize", - "documentation":"

The number of messages passed to the Lambda function for processing.

The AWS Lambda function must be able to process all of these messages within five minutes, which is the maximum timeout duration for Lambda functions.

" + "documentation":"

The number of messages passed to the Lambda function for processing.

The Lambda function must be able to process all of these messages within five minutes, which is the maximum timeout duration for Lambda functions.

" }, "next":{ "shape":"ActivityName", @@ -2058,6 +2097,43 @@ "min":1, "pattern":"^[a-zA-Z0-9_-]+$" }, + "LateDataRule":{ + "type":"structure", + "required":["ruleConfiguration"], + "members":{ + "ruleName":{ + "shape":"LateDataRuleName", + "documentation":"

The name of the late data rule.

" + }, + "ruleConfiguration":{ + "shape":"LateDataRuleConfiguration", + "documentation":"

The information needed to configure the late data rule.

" + } + }, + "documentation":"

A structure that contains the name and configuration information of a late data rule.

" + }, + "LateDataRuleConfiguration":{ + "type":"structure", + "members":{ + "deltaTimeSessionWindowConfiguration":{ + "shape":"DeltaTimeSessionWindowConfiguration", + "documentation":"

The information needed to configure a delta time session window.

" + } + }, + "documentation":"

The information needed to configure a delta time session window.

" + }, + "LateDataRuleName":{ + "type":"string", + "max":128, + "min":1, + "pattern":"^[a-zA-Z0-9_]+$" + }, + "LateDataRules":{ + "type":"list", + "member":{"shape":"LateDataRule"}, + "max":1, + "min":1 + }, "LimitExceededException":{ "type":"structure", "members":{ @@ -2089,7 +2165,7 @@ "members":{ "channelSummaries":{ "shape":"ChannelSummaries", - "documentation":"

A list of \"ChannelSummary\" objects.

" + "documentation":"

A list of ChannelSummary objects.

" }, "nextToken":{ "shape":"NextToken", @@ -2121,13 +2197,13 @@ }, "scheduledOnOrAfter":{ "shape":"Timestamp", - "documentation":"

A filter to limit results to those data set contents whose creation is scheduled on or after the given time. See the field triggers.schedule in the CreateDataset request. (timestamp)

", + "documentation":"

A filter to limit results to those data set contents whose creation is scheduled on or after the given time. See the field triggers.schedule in the CreateDataset request. (timestamp)

", "location":"querystring", "locationName":"scheduledOnOrAfter" }, "scheduledBefore":{ "shape":"Timestamp", - "documentation":"

A filter to limit results to those data set contents whose creation is scheduled before the given time. See the field triggers.schedule in the CreateDataset request. (timestamp)

", + "documentation":"

A filter to limit results to those data set contents whose creation is scheduled before the given time. See the field triggers.schedule in the CreateDataset request. (timestamp)

", "location":"querystring", "locationName":"scheduledBefore" } @@ -2168,7 +2244,7 @@ "members":{ "datasetSummaries":{ "shape":"DatasetSummaries", - "documentation":"

A list of \"DatasetSummary\" objects.

" + "documentation":"

A list of DatasetSummary objects.

" }, "nextToken":{ "shape":"NextToken", @@ -2198,7 +2274,7 @@ "members":{ "datastoreSummaries":{ "shape":"DatastoreSummaries", - "documentation":"

A list of \"DatastoreSummary\" objects.

" + "documentation":"

A list of DatastoreSummary objects.

" }, "nextToken":{ "shape":"NextToken", @@ -2228,7 +2304,7 @@ "members":{ "pipelineSummaries":{ "shape":"PipelineSummaries", - "documentation":"

A list of \"PipelineSummary\" objects.

" + "documentation":"

A list of PipelineSummary objects.

" }, "nextToken":{ "shape":"NextToken", @@ -2253,7 +2329,7 @@ "members":{ "tags":{ "shape":"TagList", - "documentation":"

The tags (metadata) which you have assigned to the resource.

" + "documentation":"

The tags (metadata) that you have assigned to the resource.

" } } }, @@ -2277,7 +2353,7 @@ }, "level":{ "shape":"LoggingLevel", - "documentation":"

The logging level. Currently, only \"ERROR\" is supported.

" + "documentation":"

The logging level. Currently, only ERROR is supported.

" }, "enabled":{ "shape":"LoggingEnabled", @@ -2296,7 +2372,7 @@ "members":{ "name":{ "shape":"ActivityName", - "documentation":"

The name of the 'math' activity.

" + "documentation":"

The name of the math activity.

" }, "attribute":{ "shape":"AttributeName", @@ -2342,11 +2418,11 @@ "members":{ "messageId":{ "shape":"MessageId", - "documentation":"

The ID you wish to assign to the message. Each \"messageId\" must be unique within each batch sent.

" + "documentation":"

The ID you want to assign to the message. Each messageId must be unique within each batch sent.

" }, "payload":{ "shape":"MessagePayload", - "documentation":"

The payload of the message. This may be a JSON string or a Base64-encoded string representing binary data (in which case you must decode it by means of a pipeline activity).

" + "documentation":"

The payload of the message. This can be a JSON string or a base64-encoded string representing binary data, in which case you must decode it by means of a pipeline activity.

" } }, "documentation":"

Information about a message.

" @@ -2379,7 +2455,7 @@ "members":{ "fileName":{ "shape":"OutputFileName", - "documentation":"

The URI of the location where data set contents are stored, usually the URI of a file in an S3 bucket.

" + "documentation":"

The URI of the location where dataset contents are stored, usually the URI of a file in an S3 bucket.

" } }, "documentation":"

The value of the variable as a structure that specifies an output file URI.

" @@ -2461,7 +2537,7 @@ }, "deviceShadowEnrich":{ "shape":"DeviceShadowEnrichActivity", - "documentation":"

Adds information from the AWS IoT Device Shadows service to a message.

" + "documentation":"

Adds information from the AWS IoT Device Shadow service to a message.

" } }, "documentation":"

An activity that performs a transformation on a message.

" @@ -2518,7 +2594,7 @@ "documentation":"

Used to limit data to that which has arrived since the last execution of the action.

" } }, - "documentation":"

Information which is used to filter message data, to segregate it according to the time frame in which it arrives.

" + "documentation":"

Information that is used to filter message data, to segregate it according to the timeframe in which it arrives.

" }, "QueryFilters":{ "type":"list", @@ -2536,7 +2612,7 @@ "members":{ "name":{ "shape":"ActivityName", - "documentation":"

The name of the 'removeAttributes' activity.

" + "documentation":"

The name of the removeAttributes activity.

" }, "attributes":{ "shape":"AttributeNames", @@ -2568,7 +2644,7 @@ "members":{ "id":{ "shape":"ReprocessingId", - "documentation":"

The 'reprocessingId' returned by \"StartPipelineReprocessing\".

" + "documentation":"

The reprocessingId returned by StartPipelineReprocessing.

" }, "status":{ "shape":"ReprocessingStatus", @@ -2612,14 +2688,14 @@ "members":{ "computeType":{ "shape":"ComputeType", - "documentation":"

The type of the compute resource used to execute the \"containerAction\". Possible values are: ACU_1 (vCPU=4, memory=16GiB) or ACU_2 (vCPU=8, memory=32GiB).

" + "documentation":"

The type of the compute resource used to execute the containerAction. Possible values are: ACU_1 (vCPU=4, memory=16 GiB) or ACU_2 (vCPU=8, memory=32 GiB).

" }, "volumeSizeInGB":{ "shape":"VolumeSizeInGB", - "documentation":"

The size (in GB) of the persistent storage available to the resource instance used to execute the \"containerAction\" (min: 1, max: 50).

" + "documentation":"

The size, in GB, of the persistent storage available to the resource instance used to execute the containerAction (min: 1, max: 50).

" } }, - "documentation":"

The configuration of the resource used to execute the \"containerAction\".

" + "documentation":"

The configuration of the resource used to execute the containerAction.

" }, "ResourceNotFoundException":{ "type":"structure", @@ -2639,7 +2715,7 @@ }, "numberOfDays":{ "shape":"RetentionPeriodInDays", - "documentation":"

The number of days that message data is kept. The \"unlimited\" parameter must be false.

" + "documentation":"

The number of days that message data is kept. The unlimited parameter must be false.

" } }, "documentation":"

How long, in days, message data is kept.

" @@ -2662,7 +2738,7 @@ "members":{ "pipelineActivity":{ "shape":"PipelineActivity", - "documentation":"

The pipeline activity that is run. This must not be a 'channel' activity or a 'datastore' activity because these activities are used in a pipeline only to load the original message and to store the (possibly) transformed message. If a 'lambda' activity is specified, only short-running Lambda functions (those with a timeout of less than 30 seconds or less) can be used.

" + "documentation":"

The pipeline activity that is run. This must not be a channel activity or a datastore activity because these activities are used in a pipeline only to load the original message and to store the (possibly) transformed message. If a lambda activity is specified, only short-running Lambda functions (those with a timeout of less than 30 seconds or less) can be used.

" }, "payloads":{ "shape":"MessagePayloads", @@ -2693,22 +2769,22 @@ "members":{ "bucket":{ "shape":"BucketName", - "documentation":"

The name of the Amazon S3 bucket to which data set contents are delivered.

" + "documentation":"

The name of the S3 bucket to which dataset contents are delivered.

" }, "key":{ "shape":"BucketKeyExpression", - "documentation":"

The key of the data set contents object. Each object in an Amazon S3 bucket has a key that is its unique identifier within the bucket (each object in a bucket has exactly one key). To produce a unique key, you can use \"!{iotanalytics:scheduledTime}\" to insert the time of the scheduled SQL query run, or \"!{iotanalytics:versioned} to insert a unique hash identifying the data set, for example: \"/DataSet/!{iotanalytics:scheduledTime}/!{iotanalytics:versioned}.csv\".

" + "documentation":"

The key of the dataset contents object in an S3 bucket. Each object has a key that is a unique identifier. Each object has exactly one key.

You can create a unique key with the following options:

  • Use !{iotanalytics:scheduleTime} to insert the time of a scheduled SQL query run.

  • Use !{iotanalytics:versionId} to insert a unique hash that identifies a dataset content.

  • Use !{iotanalytics:creationTime} to insert the creation time of a dataset content.

The following example creates a unique key for a CSV file: dataset/mydataset/!{iotanalytics:scheduleTime}/!{iotanalytics:versionId}.csv

If you don't use !{iotanalytics:versionId} to specify the key, you might get duplicate keys. For example, you might have two dataset contents with the same scheduleTime but different versionIds. This means that one dataset content overwrites the other.

" }, "glueConfiguration":{ "shape":"GlueConfiguration", - "documentation":"

Configuration information for coordination with the AWS Glue ETL (extract, transform and load) service.

" + "documentation":"

Configuration information for coordination with AWS Glue, a fully managed extract, transform and load (ETL) service.

" }, "roleArn":{ "shape":"RoleArn", - "documentation":"

The ARN of the role which grants AWS IoT Analytics permission to interact with your Amazon S3 and AWS Glue resources.

" + "documentation":"

The ARN of the role that grants AWS IoT Analytics permission to interact with your Amazon S3 and AWS Glue resources.

" } }, - "documentation":"

Configuration information for delivery of data set contents to Amazon S3.

" + "documentation":"

Configuration information for delivery of dataset contents to Amazon Simple Storage Service (Amazon S3).

" }, "S3KeyPrefix":{ "type":"string", @@ -2728,7 +2804,7 @@ }, "maxMessages":{ "shape":"MaxMessages", - "documentation":"

The number of sample messages to be retrieved. The limit is 10, the default is also 10.

", + "documentation":"

The number of sample messages to be retrieved. The limit is 10. The default is also 10.

", "location":"querystring", "locationName":"maxMessages" }, @@ -2760,7 +2836,7 @@ "members":{ "expression":{ "shape":"ScheduleExpression", - "documentation":"

The expression that defines when to trigger an update. For more information, see Schedule Expressions for Rules in the Amazon CloudWatch Events User Guide.

" + "documentation":"

The expression that defines when to trigger an update. For more information, see Schedule Expressions for Rules in the Amazon CloudWatch Events User Guide.

" } }, "documentation":"

The schedule for when to trigger an update.

" @@ -2775,7 +2851,7 @@ "members":{ "name":{ "shape":"ActivityName", - "documentation":"

The name of the 'selectAttributes' activity.

" + "documentation":"

The name of the selectAttributes activity.

" }, "attributes":{ "shape":"AttributeNames", @@ -2792,25 +2868,25 @@ "type":"structure", "members":{ }, - "documentation":"

Use this to store channel data in an S3 bucket managed by the AWS IoT Analytics service. The choice of service-managed or customer-managed S3 storage cannot be changed after creation of the channel.

" + "documentation":"

Use this to store channel data in an S3 bucket managed by AWS IoT Analytics. You cannot change the choice of service-managed or customer-managed S3 storage after the channel is created.

" }, "ServiceManagedChannelS3StorageSummary":{ "type":"structure", "members":{ }, - "documentation":"

Used to store channel data in an S3 bucket managed by the AWS IoT Analytics service.

" + "documentation":"

Used to store channel data in an S3 bucket managed by AWS IoT Analytics.

" }, "ServiceManagedDatastoreS3Storage":{ "type":"structure", "members":{ }, - "documentation":"

Use this to store data store data in an S3 bucket managed by the AWS IoT Analytics service. The choice of service-managed or customer-managed S3 storage cannot be changed after creation of the data store.

" + "documentation":"

Use this to store data store data in an S3 bucket managed by AWS IoT Analytics. You cannot change the choice of service-managed or customer-managed S3 storage after the data store is created.

" }, "ServiceManagedDatastoreS3StorageSummary":{ "type":"structure", "members":{ }, - "documentation":"

Used to store data store data in an S3 bucket managed by the AWS IoT Analytics service.

" + "documentation":"

Used to store data store data in an S3 bucket managed by AWS IoT Analytics.

" }, "ServiceUnavailableException":{ "type":"structure", @@ -2822,6 +2898,11 @@ "exception":true, "fault":true }, + "SessionTimeoutInMinutes":{ + "type":"integer", + "max":60, + "min":1 + }, "SizeInBytes":{"type":"double"}, "SqlQuery":{"type":"string"}, "SqlQueryDatasetAction":{ @@ -2834,7 +2915,7 @@ }, "filters":{ "shape":"QueryFilters", - "documentation":"

Pre-filters applied to message data.

" + "documentation":"

Prefilters applied to message data.

" } }, "documentation":"

The SQL query to modify the message.

" @@ -2890,7 +2971,7 @@ "documentation":"

The tag's value.

" } }, - "documentation":"

A set of key/value pairs which are used to manage the resource.

" + "documentation":"

A set of key-value pairs that are used to manage the resource.

" }, "TagKey":{ "type":"string", @@ -2955,10 +3036,10 @@ "members":{ "name":{ "shape":"DatasetName", - "documentation":"

The name of the data set whose content generation triggers the new data set content generation.

" + "documentation":"

The name of the dataset whose content generation triggers the new dataset content generation.

" } }, - "documentation":"

Information about the data set whose content generation triggers the new data set content generation.

" + "documentation":"

Information about the dataset whose content generation triggers the new dataset content generation.

" }, "UnlimitedRetentionPeriod":{"type":"boolean"}, "UnlimitedVersioning":{"type":"boolean"}, @@ -3000,7 +3081,7 @@ }, "channelStorage":{ "shape":"ChannelStorage", - "documentation":"

Where channel data is stored. You may choose one of \"serviceManagedS3\" or \"customerManagedS3\" storage. If not specified, the default is \"serviceManagedS3\". This cannot be changed after creation of the channel.

" + "documentation":"

Where channel data is stored. You can choose one of serviceManagedS3 or customerManagedS3 storage. If not specified, the default is serviceManagedS3. You cannot change this storage option after the channel is created.

" }, "retentionPeriod":{ "shape":"RetentionPeriod", @@ -3023,23 +3104,27 @@ }, "actions":{ "shape":"DatasetActions", - "documentation":"

A list of \"DatasetAction\" objects.

" + "documentation":"

A list of DatasetAction objects.

" }, "triggers":{ "shape":"DatasetTriggers", - "documentation":"

A list of \"DatasetTrigger\" objects. The list can be empty or can contain up to five DataSetTrigger objects.

" + "documentation":"

A list of DatasetTrigger objects. The list can be empty or can contain up to five DatasetTrigger objects.

" }, "contentDeliveryRules":{ "shape":"DatasetContentDeliveryRules", - "documentation":"

When data set contents are created they are delivered to destinations specified here.

" + "documentation":"

When dataset contents are created, they are delivered to destinations specified here.

" }, "retentionPeriod":{ "shape":"RetentionPeriod", - "documentation":"

How long, in days, data set contents are kept for the data set.

" + "documentation":"

How long, in days, dataset contents are kept for the dataset.

" }, "versioningConfiguration":{ "shape":"VersioningConfiguration", - "documentation":"

[Optional] How many versions of data set contents are kept. If not specified or set to null, only the latest version plus the latest succeeded version (if they are different) are kept for the time period specified by the \"retentionPeriod\" parameter. (For more information, see https://docs.aws.amazon.com/iotanalytics/latest/userguide/getting-started.html#aws-iot-analytics-dataset-versions)

" + "documentation":"

Optional. How many versions of dataset contents are kept. If not specified or set to null, only the latest version plus the latest succeeded version (if they are different) are kept for the time period specified by the retentionPeriod parameter. For more information, see Keeping Multiple Versions of AWS IoT Analytics Data Sets in the AWS IoT Analytics User Guide.

" + }, + "lateDataRules":{ + "shape":"LateDataRules", + "documentation":"

A list of data rules that send notifications to Amazon CloudWatch, when data arrives late. To specify lateDataRules, the dataset must use a DeltaTimer filter.

" } } }, @@ -3059,7 +3144,7 @@ }, "datastoreStorage":{ "shape":"DatastoreStorage", - "documentation":"

Where data store data is stored. You may choose one of \"serviceManagedS3\" or \"customerManagedS3\" storage. If not specified, the default is \"serviceManagedS3\". This cannot be changed after the data store is created.

" + "documentation":"

Where data store data is stored. You can choose one of serviceManagedS3 or customerManagedS3 storage. If not specified, the default isserviceManagedS3. You cannot change this storage option after the data store is created.

" } } }, @@ -3078,7 +3163,7 @@ }, "pipelineActivities":{ "shape":"PipelineActivities", - "documentation":"

A list of \"PipelineActivity\" objects. Activities perform transformations on your messages, such as removing, renaming or adding message attributes; filtering messages based on attribute values; invoking your Lambda functions on messages for advanced processing; or performing mathematical transformations to normalize device data.

The list can be 2-25 PipelineActivity objects and must contain both a channel and a datastore activity. Each entry in the list must contain only one activity, for example:

pipelineActivities = [ { \"channel\": { ... } }, { \"lambda\": { ... } }, ... ]

" + "documentation":"

A list of PipelineActivity objects. Activities perform transformations on your messages, such as removing, renaming or adding message attributes; filtering messages based on attribute values; invoking your Lambda functions on messages for advanced processing; or performing mathematical transformations to normalize device data.

The list can be 2-25 PipelineActivity objects and must contain both a channel and a datastore activity. Each entry in the list must contain only one activity. For example:

pipelineActivities = [ { \"channel\": { ... } }, { \"lambda\": { ... } }, ... ]

" } } }, @@ -3101,14 +3186,14 @@ }, "datasetContentVersionValue":{ "shape":"DatasetContentVersionValue", - "documentation":"

The value of the variable as a structure that specifies a data set content version.

" + "documentation":"

The value of the variable as a structure that specifies a dataset content version.

" }, "outputFileUriValue":{ "shape":"OutputFileUriValue", "documentation":"

The value of the variable as a structure that specifies an output file URI.

" } }, - "documentation":"

An instance of a variable to be passed to the \"containerAction\" execution. Each variable must have a name and a value given by one of \"stringValue\", \"datasetContentVersionValue\", or \"outputFileUriValue\".

" + "documentation":"

An instance of a variable to be passed to the containerAction execution. Each variable must have a name and a value given by one of stringValue, datasetContentVersionValue, or outputFileUriValue.

" }, "VariableName":{ "type":"string", @@ -3126,14 +3211,14 @@ "members":{ "unlimited":{ "shape":"UnlimitedVersioning", - "documentation":"

If true, unlimited versions of data set contents will be kept.

" + "documentation":"

If true, unlimited versions of dataset contents are kept.

" }, "maxVersions":{ "shape":"MaxVersions", - "documentation":"

How many versions of data set contents will be kept. The \"unlimited\" parameter must be false.

" + "documentation":"

How many versions of dataset contents are kept. The unlimited parameter must be false.

" } }, - "documentation":"

Information about the versioning of data set contents.

" + "documentation":"

Information about the versioning of dataset contents.

" }, "VolumeSizeInGB":{ "type":"integer", From 773a31c952913046f564d83b3eadc62a010a14a7 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 9 Nov 2020 17:10:31 +0000 Subject: [PATCH 154/339] AWS DataSync Update: DataSync now enables customers to adjust the network bandwidth used by a running AWS DataSync task. --- .../feature-AWSDataSync-7dec29a.json | 6 +++ .../codegen-resources/service-2.json | 53 +++++++++++++++---- 2 files changed, 49 insertions(+), 10 deletions(-) create mode 100644 .changes/next-release/feature-AWSDataSync-7dec29a.json diff --git a/.changes/next-release/feature-AWSDataSync-7dec29a.json b/.changes/next-release/feature-AWSDataSync-7dec29a.json new file mode 100644 index 000000000000..0549d9c10706 --- /dev/null +++ b/.changes/next-release/feature-AWSDataSync-7dec29a.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS DataSync", + "contributor": "", + "description": "DataSync now enables customers to adjust the network bandwidth used by a running AWS DataSync task." +} diff --git a/services/datasync/src/main/resources/codegen-resources/service-2.json b/services/datasync/src/main/resources/codegen-resources/service-2.json index cab337102dd3..bfbe17ba627d 100644 --- a/services/datasync/src/main/resources/codegen-resources/service-2.json +++ b/services/datasync/src/main/resources/codegen-resources/service-2.json @@ -447,6 +447,20 @@ {"shape":"InternalException"} ], "documentation":"

Updates the metadata associated with a task.

" + }, + "UpdateTaskExecution":{ + "name":"UpdateTaskExecution", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateTaskExecutionRequest"}, + "output":{"shape":"UpdateTaskExecutionResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InternalException"} + ], + "documentation":"

Updates execution of a task.

You can modify bandwidth throttling for a task execution that is running or queued. For more information, see Adjusting Bandwidth Throttling for a Task Execution.

The only Option that can be modified by UpdateTaskExecution is BytesPerSecond .

" } }, "shapes":{ @@ -657,7 +671,7 @@ "members":{ "Subdirectory":{ "shape":"NfsSubdirectory", - "documentation":"

The subdirectory in the NFS file system that is used to read data from the NFS source location or write data to the NFS destination. The NFS path should be a path that's exported by the NFS server, or a subdirectory of that path. The path should be such that it can be mounted by other NFS clients in your network.

To see all the paths exported by your NFS server. run \"showmount -e nfs-server-name\" from an NFS client that has access to your server. You can specify any directory that appears in the results, and any subdirectory of that directory. Ensure that the NFS export is accessible without Kerberos authentication.

To transfer all the data in the folder you specified, DataSync needs to have permissions to read all the data. To ensure this, either configure the NFS export with no_root_squash, or ensure that the permissions for all of the files that you want DataSync allow read access for all users. Doing either enables the agent to read the files. For the agent to access directories, you must additionally enable all execute access.

If you are copying data to or from your AWS Snowcone device, see NFS Server on AWS Snowcone for more information.

For information about NFS export configuration, see 18.7. The /etc/exports Configuration File in the Red Hat Enterprise Linux documentation.

" + "documentation":"

The subdirectory in the NFS file system that is used to read data from the NFS source location or write data to the NFS destination. The NFS path should be a path that's exported by the NFS server, or a subdirectory of that path. The path should be such that it can be mounted by other NFS clients in your network.

To see all the paths exported by your NFS server, run \"showmount -e nfs-server-name\" from an NFS client that has access to your server. You can specify any directory that appears in the results, and any subdirectory of that directory. Ensure that the NFS export is accessible without Kerberos authentication.

To transfer all the data in the folder you specified, DataSync needs to have permissions to read all the data. To ensure this, either configure the NFS export with no_root_squash, or ensure that the permissions for all of the files that you want DataSync allow read access for all users. Doing either enables the agent to read the files. For the agent to access directories, you must additionally enable all execute access.

If you are copying data to or from your AWS Snowcone device, see NFS Server on AWS Snowcone for more information.

For information about NFS export configuration, see 18.7. The /etc/exports Configuration File in the Red Hat Enterprise Linux documentation.

" }, "ServerHostname":{ "shape":"ServerHostname", @@ -758,16 +772,16 @@ }, "S3BucketArn":{ "shape":"S3BucketArn", - "documentation":"

The Amazon Resource Name (ARN) of the Amazon S3 bucket. If the bucket is on an AWS Outpost, this must be an access point ARN.

" + "documentation":"

The ARN of the Amazon S3 bucket. If the bucket is on an AWS Outpost, this must be an access point ARN.

" }, "S3StorageClass":{ "shape":"S3StorageClass", - "documentation":"

The Amazon S3 storage class that you want to store your files in when this location is used as a task destination. For buckets in AWS Regions, the storage class defaults to Standard. For buckets on AWS Outposts, the storage class defaults to AWS S3 Outposts.

For more information about S3 storage classes, see Amazon S3 Storage Classes in the Amazon Simple Storage Service Developer Guide. Some storage classes have behaviors that can affect your S3 storage cost. For detailed information, see using-storage-classes.

" + "documentation":"

The Amazon S3 storage class that you want to store your files in when this location is used as a task destination. For buckets in AWS Regions, the storage class defaults to Standard. For buckets on AWS Outposts, the storage class defaults to AWS S3 Outposts.

For more information about S3 storage classes, see Amazon S3 Storage Classes. Some storage classes have behaviors that can affect your S3 storage cost. For detailed information, see using-storage-classes.

" }, "S3Config":{"shape":"S3Config"}, "AgentArns":{ "shape":"AgentArnList", - "documentation":"

If you are using DataSync on an AWS Outpost, specify the Amazon Resource Names (ARNs) of the DataSync agents deployed on your AWS Outpost. For more information about launching a DataSync agent on an Amazon Outpost, see outposts-agent.

" + "documentation":"

If you are using DataSync on an AWS Outpost, specify the Amazon Resource Names (ARNs) of the DataSync agents deployed on your Outpost. For more information about launching a DataSync agent on an AWS Outpost, see outposts-agent.

" }, "Tags":{ "shape":"InputTagList", @@ -870,7 +884,7 @@ }, "Excludes":{ "shape":"FilterList", - "documentation":"

A list of filter rules that determines which files to exclude from a task. The list should contain a single filter string that consists of the patterns to exclude. The patterns are delimited by \"|\" (that is, a pipe), for example, \"/folder1|/folder2\"

" + "documentation":"

A list of filter rules that determines which files to exclude from a task. The list should contain a single filter string that consists of the patterns to exclude. The patterns are delimited by \"|\" (that is, a pipe), for example, \"/folder1|/folder2\".

" }, "Schedule":{ "shape":"TaskSchedule", @@ -1158,12 +1172,12 @@ }, "S3StorageClass":{ "shape":"S3StorageClass", - "documentation":"

The Amazon S3 storage class that you chose to store your files in when this location is used as a task destination. For more information about S3 storage classes, see Amazon S3 Storage Classes in the Amazon Simple Storage Service Developer Guide. Some storage classes have behaviors that can affect your S3 storage cost. For detailed information, see using-storage-classes.

" + "documentation":"

The Amazon S3 storage class that you chose to store your files in when this location is used as a task destination. For more information about S3 storage classes, see Amazon S3 Storage Classes. Some storage classes have behaviors that can affect your S3 storage cost. For detailed information, see using-storage-classes.

" }, "S3Config":{"shape":"S3Config"}, "AgentArns":{ "shape":"AgentArnList", - "documentation":"

If you are using DataSync on an Amazon Outpost, the Amazon Resource Name (ARNs) of the EC2 agents deployed on your AWS Outpost. For more information about launching a DataSync agent on an Amazon Outpost, see outposts-agent.

" + "documentation":"

If you are using DataSync on an AWS Outpost, the Amazon Resource Name (ARNs) of the EC2 agents deployed on your Outpost. For more information about launching a DataSync agent on an AWS Outpost, see outposts-agent.

" }, "CreationTime":{ "shape":"Time", @@ -1299,7 +1313,7 @@ }, "Status":{ "shape":"TaskStatus", - "documentation":"

The status of the task that was described.

For detailed information about task execution statuses, see Understanding Task Statuses in the AWS DataSync User Guide.

" + "documentation":"

The status of the task that was described.

For detailed information about task execution statuses, see Understanding Task Statuses in the AWS DataSync User Guide.

" }, "Name":{ "shape":"TagValue", @@ -2205,7 +2219,7 @@ }, "TransferStatus":{ "shape":"PhaseStatus", - "documentation":"

The status of the TRANSFERRING Phase.

" + "documentation":"

The status of the TRANSFERRING phase.

" }, "VerifyDuration":{ "shape":"Duration", @@ -2213,7 +2227,7 @@ }, "VerifyStatus":{ "shape":"PhaseStatus", - "documentation":"

The status of the VERIFYING Phase.

" + "documentation":"

The status of the VERIFYING phase.

" }, "ErrorCode":{ "shape":"string", @@ -2382,6 +2396,25 @@ "members":{ } }, + "UpdateTaskExecutionRequest":{ + "type":"structure", + "required":[ + "TaskExecutionArn", + "Options" + ], + "members":{ + "TaskExecutionArn":{ + "shape":"TaskExecutionArn", + "documentation":"

The Amazon Resource Name (ARN) of the specific task execution that is being updated.

" + }, + "Options":{"shape":"Options"} + } + }, + "UpdateTaskExecutionResponse":{ + "type":"structure", + "members":{ + } + }, "UpdateTaskRequest":{ "type":"structure", "required":["TaskArn"], From 3e32d3bd21988783dfc2718ecf01feb1b73dbaf6 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 9 Nov 2020 17:10:43 +0000 Subject: [PATCH 155/339] Amazon EC2 Container Service Update: This release provides native support for specifying Amazon FSx for Windows File Server file systems as volumes in your Amazon ECS task definitions. --- ...ure-AmazonEC2ContainerService-d2a417c.json | 6 + .../codegen-resources/service-2.json | 163 +++++++++++------- 2 files changed, 110 insertions(+), 59 deletions(-) create mode 100644 .changes/next-release/feature-AmazonEC2ContainerService-d2a417c.json diff --git a/.changes/next-release/feature-AmazonEC2ContainerService-d2a417c.json b/.changes/next-release/feature-AmazonEC2ContainerService-d2a417c.json new file mode 100644 index 000000000000..bfde68121a41 --- /dev/null +++ b/.changes/next-release/feature-AmazonEC2ContainerService-d2a417c.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon EC2 Container Service", + "contributor": "", + "description": "This release provides native support for specifying Amazon FSx for Windows File Server file systems as volumes in your Amazon ECS task definitions." +} diff --git a/services/ecs/src/main/resources/codegen-resources/service-2.json b/services/ecs/src/main/resources/codegen-resources/service-2.json index e2af225f7aaa..6cebe54cad6b 100644 --- a/services/ecs/src/main/resources/codegen-resources/service-2.json +++ b/services/ecs/src/main/resources/codegen-resources/service-2.json @@ -914,11 +914,11 @@ "members":{ "name":{ "shape":"String", - "documentation":"

The name of the attribute. Up to 128 letters (uppercase and lowercase), numbers, hyphens, underscores, and periods are allowed.

" + "documentation":"

The name of the attribute. The name must contain between 1 and 128 characters and name may contain letters (uppercase and lowercase), numbers, hyphens, underscores, forward slashes, back slashes, or periods.

" }, "value":{ "shape":"String", - "documentation":"

The value of the attribute. Up to 128 letters (uppercase and lowercase), numbers, hyphens, underscores, periods, at signs (@), forward slashes, colons, and spaces are allowed.

" + "documentation":"

The value of the attribute. The value must contain between 1 and 128 characters and may contain letters (uppercase and lowercase), numbers, hyphens, underscores, periods, at signs (@), forward slashes, back slashes, colons, or spaces. The value cannot contain any leading or trailing whitespace.

" }, "targetType":{ "shape":"TargetType", @@ -967,11 +967,11 @@ "members":{ "subnets":{ "shape":"StringList", - "documentation":"

The subnets associated with the task or service. There is a limit of 16 subnets that can be specified per AwsVpcConfiguration.

All specified subnets must be from the same VPC.

" + "documentation":"

The IDs of the subnets associated with the task or service. There is a limit of 16 subnets that can be specified per AwsVpcConfiguration.

All specified subnets must be from the same VPC.

" }, "securityGroups":{ "shape":"StringList", - "documentation":"

The security groups associated with the task or service. If you do not specify a security group, the default security group for the VPC is used. There is a limit of 5 security groups that can be specified per AwsVpcConfiguration.

All specified security groups must be from the same VPC.

" + "documentation":"

The IDs of the security groups associated with the task or service. If you do not specify a security group, the default security group for the VPC is used. There is a limit of 5 security groups that can be specified per AwsVpcConfiguration.

All specified security groups must be from the same VPC.

" }, "assignPublicIp":{ "shape":"AssignPublicIp", @@ -1329,11 +1329,11 @@ "members":{ "name":{ "shape":"String", - "documentation":"

The name of a container. If you are linking multiple containers together in a task definition, the name of one container can be entered in the links of another container to connect the containers. Up to 255 letters (uppercase and lowercase), numbers, and hyphens are allowed. This parameter maps to name in the Create a container section of the Docker Remote API and the --name option to docker run.

" + "documentation":"

The name of a container. If you are linking multiple containers together in a task definition, the name of one container can be entered in the links of another container to connect the containers. Up to 255 letters (uppercase and lowercase), numbers, and hyphens are allowed. This parameter maps to name in the Create a container section of the Docker Remote API and the --name option to docker run.

" }, "image":{ "shape":"String", - "documentation":"

The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with either repository-url/image:tag or repository-url/image@digest . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

  • When a new task starts, the Amazon ECS container agent pulls the latest version of the specified image and tag for the container to use. However, subsequent updates to a repository image are not propagated to already running tasks.

  • Images in Amazon ECR repositories can be specified by either using the full registry/repository:tag or registry/repository@digest. For example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>:latest or 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>@sha256:94afd1f2e64d908bc90dbca0035a5b567EXAMPLE.

  • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

  • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

  • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

" + "documentation":"

The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with either repository-url/image:tag or repository-url/image@digest . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

  • When a new task starts, the Amazon ECS container agent pulls the latest version of the specified image and tag for the container to use. However, subsequent updates to a repository image are not propagated to already running tasks.

  • Images in Amazon ECR repositories can be specified by either using the full registry/repository:tag or registry/repository@digest. For example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>:latest or 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>@sha256:94afd1f2e64d908bc90dbca0035a5b567EXAMPLE.

  • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

  • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

  • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

" }, "repositoryCredentials":{ "shape":"RepositoryCredentials", @@ -1341,23 +1341,23 @@ }, "cpu":{ "shape":"Integer", - "documentation":"

The number of cpu units reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run.

This field is optional for tasks using the Fargate launch type, and the only requirement is that the total amount of CPU reserved for all containers within a task be lower than the task-level cpu value.

You can determine the number of CPU units that are available per EC2 instance type by multiplying the vCPUs listed for that instance type on the Amazon EC2 Instances detail page by 1,024.

Linux containers share unallocated CPU units with other containers on the container instance with the same ratio as their allocated amount. For example, if you run a single-container task on a single-core instance type with 512 CPU units specified for that container, and that is the only task running on the container instance, that container could use the full 1,024 CPU unit share at any given time. However, if you launched another copy of the same task on that container instance, each task would be guaranteed a minimum of 512 CPU units when needed, and each container could float to higher CPU usage if the other container was not using it, but if both tasks were 100% active all of the time, they would be limited to 512 CPU units.

On Linux container instances, the Docker daemon on the container instance uses the CPU value to calculate the relative CPU share ratios for running containers. For more information, see CPU share constraint in the Docker documentation. The minimum valid CPU share value that the Linux kernel allows is 2. However, the CPU parameter is not required, and you can use CPU values below 2 in your container definitions. For CPU values below 2 (including null), the behavior varies based on your Amazon ECS container agent version:

  • Agent versions less than or equal to 1.1.0: Null and zero CPU values are passed to Docker as 0, which Docker then converts to 1,024 CPU shares. CPU values of 1 are passed to Docker as 1, which the Linux kernel converts to two CPU shares.

  • Agent versions greater than or equal to 1.2.0: Null, zero, and CPU values of 1 are passed to Docker as 2.

On Windows container instances, the CPU limit is enforced as an absolute limit, or a quota. Windows containers only have access to the specified amount of CPU that is described in the task definition.

" + "documentation":"

The number of cpu units reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run.

This field is optional for tasks using the Fargate launch type, and the only requirement is that the total amount of CPU reserved for all containers within a task be lower than the task-level cpu value.

You can determine the number of CPU units that are available per EC2 instance type by multiplying the vCPUs listed for that instance type on the Amazon EC2 Instances detail page by 1,024.

Linux containers share unallocated CPU units with other containers on the container instance with the same ratio as their allocated amount. For example, if you run a single-container task on a single-core instance type with 512 CPU units specified for that container, and that is the only task running on the container instance, that container could use the full 1,024 CPU unit share at any given time. However, if you launched another copy of the same task on that container instance, each task would be guaranteed a minimum of 512 CPU units when needed, and each container could float to higher CPU usage if the other container was not using it, but if both tasks were 100% active all of the time, they would be limited to 512 CPU units.

On Linux container instances, the Docker daemon on the container instance uses the CPU value to calculate the relative CPU share ratios for running containers. For more information, see CPU share constraint in the Docker documentation. The minimum valid CPU share value that the Linux kernel allows is 2. However, the CPU parameter is not required, and you can use CPU values below 2 in your container definitions. For CPU values below 2 (including null), the behavior varies based on your Amazon ECS container agent version:

  • Agent versions less than or equal to 1.1.0: Null and zero CPU values are passed to Docker as 0, which Docker then converts to 1,024 CPU shares. CPU values of 1 are passed to Docker as 1, which the Linux kernel converts to two CPU shares.

  • Agent versions greater than or equal to 1.2.0: Null, zero, and CPU values of 1 are passed to Docker as 2.

On Windows container instances, the CPU limit is enforced as an absolute limit, or a quota. Windows containers only have access to the specified amount of CPU that is described in the task definition. A null or zero CPU value is passed to Docker as 0, which Windows interprets as 1% of one CPU.

" }, "memory":{ "shape":"BoxedInteger", - "documentation":"

The amount (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. The total amount of memory reserved for all containers within a task must be lower than the task memory value, if one is specified. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.

If using the Fargate launch type, this parameter is optional.

If using the EC2 launch type, you must specify either a task-level memory value or a container-level memory value. If you specify both a container-level memory and memoryReservation value, memory must be greater than memoryReservation. If you specify memoryReservation, then that value is subtracted from the available memory resources for the container instance on which the container is placed. Otherwise, the value of memory is used.

The Docker daemon reserves a minimum of 4 MiB of memory for a container, so you should not specify fewer than 4 MiB of memory for your containers.

" + "documentation":"

The amount (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. The total amount of memory reserved for all containers within a task must be lower than the task memory value, if one is specified. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run.

If using the Fargate launch type, this parameter is optional.

If using the EC2 launch type, you must specify either a task-level memory value or a container-level memory value. If you specify both a container-level memory and memoryReservation value, memory must be greater than memoryReservation. If you specify memoryReservation, then that value is subtracted from the available memory resources for the container instance on which the container is placed. Otherwise, the value of memory is used.

The Docker daemon reserves a minimum of 4 MiB of memory for a container, so you should not specify fewer than 4 MiB of memory for your containers.

" }, "memoryReservation":{ "shape":"BoxedInteger", - "documentation":"

The soft limit (in MiB) of memory to reserve for the container. When system memory is under heavy contention, Docker attempts to keep the container memory to this soft limit. However, your container can consume more memory when it needs to, up to either the hard limit specified with the memory parameter (if applicable), or all of the available memory on the container instance, whichever comes first. This parameter maps to MemoryReservation in the Create a container section of the Docker Remote API and the --memory-reservation option to docker run.

If a task-level memory value is not specified, you must specify a non-zero integer for one or both of memory or memoryReservation in a container definition. If you specify both, memory must be greater than memoryReservation. If you specify memoryReservation, then that value is subtracted from the available memory resources for the container instance on which the container is placed. Otherwise, the value of memory is used.

For example, if your container normally uses 128 MiB of memory, but occasionally bursts to 256 MiB of memory for short periods of time, you can set a memoryReservation of 128 MiB, and a memory hard limit of 300 MiB. This configuration would allow the container to only reserve 128 MiB of memory from the remaining resources on the container instance, but also allow the container to consume more memory resources when needed.

The Docker daemon reserves a minimum of 4 MiB of memory for a container, so you should not specify fewer than 4 MiB of memory for your containers.

" + "documentation":"

The soft limit (in MiB) of memory to reserve for the container. When system memory is under heavy contention, Docker attempts to keep the container memory to this soft limit. However, your container can consume more memory when it needs to, up to either the hard limit specified with the memory parameter (if applicable), or all of the available memory on the container instance, whichever comes first. This parameter maps to MemoryReservation in the Create a container section of the Docker Remote API and the --memory-reservation option to docker run.

If a task-level memory value is not specified, you must specify a non-zero integer for one or both of memory or memoryReservation in a container definition. If you specify both, memory must be greater than memoryReservation. If you specify memoryReservation, then that value is subtracted from the available memory resources for the container instance on which the container is placed. Otherwise, the value of memory is used.

For example, if your container normally uses 128 MiB of memory, but occasionally bursts to 256 MiB of memory for short periods of time, you can set a memoryReservation of 128 MiB, and a memory hard limit of 300 MiB. This configuration would allow the container to only reserve 128 MiB of memory from the remaining resources on the container instance, but also allow the container to consume more memory resources when needed.

The Docker daemon reserves a minimum of 4 MiB of memory for a container, so you should not specify fewer than 4 MiB of memory for your containers.

" }, "links":{ "shape":"StringList", - "documentation":"

The links parameter allows containers to communicate with each other without the need for port mappings. This parameter is only supported if the network mode of a task definition is bridge. The name:internalName construct is analogous to name:alias in Docker links. Up to 255 letters (uppercase and lowercase), numbers, and hyphens are allowed. For more information about linking Docker containers, go to Legacy container links in the Docker documentation. This parameter maps to Links in the Create a container section of the Docker Remote API and the --link option to docker run.

This parameter is not supported for Windows containers.

Containers that are collocated on a single container instance may be able to communicate with each other without requiring links or host port mappings. Network isolation is achieved on the container instance using security groups and VPC settings.

" + "documentation":"

The links parameter allows containers to communicate with each other without the need for port mappings. This parameter is only supported if the network mode of a task definition is bridge. The name:internalName construct is analogous to name:alias in Docker links. Up to 255 letters (uppercase and lowercase), numbers, and hyphens are allowed. For more information about linking Docker containers, go to Legacy container links in the Docker documentation. This parameter maps to Links in the Create a container section of the Docker Remote API and the --link option to docker run.

This parameter is not supported for Windows containers or tasks that use the awsvpc network mode.

Containers that are collocated on a single container instance may be able to communicate with each other without requiring links or host port mappings. Network isolation is achieved on the container instance using security groups and VPC settings.

" }, "portMappings":{ "shape":"PortMappingList", - "documentation":"

The list of port mappings for the container. Port mappings allow containers to access ports on the host container instance to send or receive traffic.

For task definitions that use the awsvpc network mode, you should only specify the containerPort. The hostPort can be left blank or it must be the same value as the containerPort.

Port mappings on Windows use the NetNAT gateway address rather than localhost. There is no loopback for port mappings on Windows, so you cannot access a container's mapped port from the host itself.

This parameter maps to PortBindings in the Create a container section of the Docker Remote API and the --publish option to docker run. If the network mode of a task definition is set to none, then you can't specify port mappings. If the network mode of a task definition is set to host, then host ports must either be undefined or they must match the container port in the port mapping.

After a task reaches the RUNNING status, manual and automatic host and container port assignments are visible in the Network Bindings section of a container description for a selected task in the Amazon ECS console. The assignments are also visible in the networkBindings section DescribeTasks responses.

" + "documentation":"

The list of port mappings for the container. Port mappings allow containers to access ports on the host container instance to send or receive traffic.

For task definitions that use the awsvpc network mode, you should only specify the containerPort. The hostPort can be left blank or it must be the same value as the containerPort.

Port mappings on Windows use the NetNAT gateway address rather than localhost. There is no loopback for port mappings on Windows, so you cannot access a container's mapped port from the host itself.

This parameter maps to PortBindings in the Create a container section of the Docker Remote API and the --publish option to docker run. If the network mode of a task definition is set to none, then you can't specify port mappings. If the network mode of a task definition is set to host, then host ports must either be undefined or they must match the container port in the port mapping.

After a task reaches the RUNNING status, manual and automatic host and container port assignments are visible in the Network Bindings section of a container description for a selected task in the Amazon ECS console. The assignments are also visible in the networkBindings section DescribeTasks responses.

" }, "essential":{ "shape":"BoxedBoolean", @@ -1365,27 +1365,27 @@ }, "entryPoint":{ "shape":"StringList", - "documentation":"

Early versions of the Amazon ECS container agent do not properly handle entryPoint parameters. If you have problems using entryPoint, update your container agent or enter your commands and arguments as command array items instead.

The entry point that is passed to the container. This parameter maps to Entrypoint in the Create a container section of the Docker Remote API and the --entrypoint option to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#entrypoint.

" + "documentation":"

Early versions of the Amazon ECS container agent do not properly handle entryPoint parameters. If you have problems using entryPoint, update your container agent or enter your commands and arguments as command array items instead.

The entry point that is passed to the container. This parameter maps to Entrypoint in the Create a container section of the Docker Remote API and the --entrypoint option to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#entrypoint.

" }, "command":{ "shape":"StringList", - "documentation":"

The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd. If there are multiple arguments, each argument should be a separated string in the array.

" + "documentation":"

The command that is passed to the container. This parameter maps to Cmd in the Create a container section of the Docker Remote API and the COMMAND parameter to docker run. For more information, see https://docs.docker.com/engine/reference/builder/#cmd. If there are multiple arguments, each argument should be a separated string in the array.

" }, "environment":{ "shape":"EnvironmentVariables", - "documentation":"

The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

We do not recommend using plaintext environment variables for sensitive information, such as credential data.

" + "documentation":"

The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

We do not recommend using plaintext environment variables for sensitive information, such as credential data.

" }, "environmentFiles":{ "shape":"EnvironmentFiles", - "documentation":"

A list of files containing the environment variables to pass to a container. This parameter maps to the --env-file option to docker run.

You can specify up to ten environment files. The file must have a .env file extension. Each line in an environment file should contain an environment variable in VARIABLE=VALUE format. Lines beginning with # are treated as comments and are ignored. For more information on the environment variable file syntax, see Declare default environment variables in file.

If there are environment variables specified using the environment parameter in a container definition, they take precedence over the variables contained within an environment file. If multiple environment files are specified that contain the same variable, they are processed from the top down. It is recommended to use unique variable names. For more information, see Specifying Environment Variables in the Amazon Elastic Container Service Developer Guide.

This field is not valid for containers in tasks using the Fargate launch type.

" + "documentation":"

A list of files containing the environment variables to pass to a container. This parameter maps to the --env-file option to docker run.

You can specify up to ten environment files. The file must have a .env file extension. Each line in an environment file should contain an environment variable in VARIABLE=VALUE format. Lines beginning with # are treated as comments and are ignored. For more information on the environment variable file syntax, see Declare default environment variables in file.

If there are environment variables specified using the environment parameter in a container definition, they take precedence over the variables contained within an environment file. If multiple environment files are specified that contain the same variable, they are processed from the top down. It is recommended to use unique variable names. For more information, see Specifying Environment Variables in the Amazon Elastic Container Service Developer Guide.

This field is not valid for containers in tasks using the Fargate launch type.

" }, "mountPoints":{ "shape":"MountPointList", - "documentation":"

The mount points for data volumes in your container.

This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

Windows containers can mount whole directories on the same drive as $env:ProgramData. Windows containers cannot mount directories on a different drive, and mount point cannot be across drives.

" + "documentation":"

The mount points for data volumes in your container.

This parameter maps to Volumes in the Create a container section of the Docker Remote API and the --volume option to docker run.

Windows containers can mount whole directories on the same drive as $env:ProgramData. Windows containers cannot mount directories on a different drive, and mount point cannot be across drives.

" }, "volumesFrom":{ "shape":"VolumeFromList", - "documentation":"

Data volumes to mount from another container. This parameter maps to VolumesFrom in the Create a container section of the Docker Remote API and the --volumes-from option to docker run.

" + "documentation":"

Data volumes to mount from another container. This parameter maps to VolumesFrom in the Create a container section of the Docker Remote API and the --volumes-from option to docker run.

" }, "linuxParameters":{ "shape":"LinuxParameters", @@ -1401,7 +1401,7 @@ }, "startTimeout":{ "shape":"BoxedInteger", - "documentation":"

Time duration (in seconds) to wait before giving up on resolving dependencies for a container. For example, you specify two containers in a task definition with containerA having a dependency on containerB reaching a COMPLETE, SUCCESS, or HEALTHY status. If a startTimeout value is specified for containerB and it does not reach the desired status within that time then containerA will give up and not start. This results in the task transitioning to a STOPPED state.

For tasks using the Fargate launch type, this parameter requires that the task or service uses platform version 1.3.0 or later. If this parameter is not specified, the default value of 3 minutes is used.

For tasks using the EC2 launch type, if the startTimeout parameter is not specified, the value set for the Amazon ECS container agent configuration variable ECS_CONTAINER_START_TIMEOUT is used by default. If neither the startTimeout parameter or the ECS_CONTAINER_START_TIMEOUT agent configuration variable are set, then the default values of 3 minutes for Linux containers and 8 minutes on Windows containers are used. Your container instances require at least version 1.26.0 of the container agent to enable a container start timeout value. However, we recommend using the latest container agent version. For information about checking your agent version and updating to the latest version, see Updating the Amazon ECS Container Agent in the Amazon Elastic Container Service Developer Guide. If you are using an Amazon ECS-optimized Linux AMI, your instance needs at least version 1.26.0-1 of the ecs-init package. If your container instances are launched from version 20190301 or later, then they contain the required versions of the container agent and ecs-init. For more information, see Amazon ECS-optimized Linux AMI in the Amazon Elastic Container Service Developer Guide.

" + "documentation":"

Time duration (in seconds) to wait before giving up on resolving dependencies for a container. For example, you specify two containers in a task definition with containerA having a dependency on containerB reaching a COMPLETE, SUCCESS, or HEALTHY status. If a startTimeout value is specified for containerB and it does not reach the desired status within that time then containerA will give up and not start. This results in the task transitioning to a STOPPED state.

When the ECS_CONTAINER_START_TIMEOUT container agent configuration variable is used, it is enforced indendently from this start timeout value.

For tasks using the Fargate launch type, this parameter requires that the task or service uses platform version 1.3.0 or later.

For tasks using the EC2 launch type, your container instances require at least version 1.26.0 of the container agent to enable a container start timeout value. However, we recommend using the latest container agent version. For information about checking your agent version and updating to the latest version, see Updating the Amazon ECS Container Agent in the Amazon Elastic Container Service Developer Guide. If you are using an Amazon ECS-optimized Linux AMI, your instance needs at least version 1.26.0-1 of the ecs-init package. If your container instances are launched from version 20190301 or later, then they contain the required versions of the container agent and ecs-init. For more information, see Amazon ECS-optimized Linux AMI in the Amazon Elastic Container Service Developer Guide.

" }, "stopTimeout":{ "shape":"BoxedInteger", @@ -1409,71 +1409,71 @@ }, "hostname":{ "shape":"String", - "documentation":"

The hostname to use for your container. This parameter maps to Hostname in the Create a container section of the Docker Remote API and the --hostname option to docker run.

The hostname parameter is not supported if you are using the awsvpc network mode.

" + "documentation":"

The hostname to use for your container. This parameter maps to Hostname in the Create a container section of the Docker Remote API and the --hostname option to docker run.

The hostname parameter is not supported if you are using the awsvpc network mode.

" }, "user":{ "shape":"String", - "documentation":"

The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

You can use the following formats. If specifying a UID or GID, you must specify it as a positive integer.

  • user

  • user:group

  • uid

  • uid:gid

  • user:gid

  • uid:group

This parameter is not supported for Windows containers.

" + "documentation":"

The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

You can use the following formats. If specifying a UID or GID, you must specify it as a positive integer.

  • user

  • user:group

  • uid

  • uid:gid

  • user:gid

  • uid:group

This parameter is not supported for Windows containers or tasks that use the awsvpc network mode.

" }, "workingDirectory":{ "shape":"String", - "documentation":"

The working directory in which to run commands inside the container. This parameter maps to WorkingDir in the Create a container section of the Docker Remote API and the --workdir option to docker run.

" + "documentation":"

The working directory in which to run commands inside the container. This parameter maps to WorkingDir in the Create a container section of the Docker Remote API and the --workdir option to docker run.

" }, "disableNetworking":{ "shape":"BoxedBoolean", - "documentation":"

When this parameter is true, networking is disabled within the container. This parameter maps to NetworkDisabled in the Create a container section of the Docker Remote API.

This parameter is not supported for Windows containers.

" + "documentation":"

When this parameter is true, networking is disabled within the container. This parameter maps to NetworkDisabled in the Create a container section of the Docker Remote API.

This parameter is not supported for Windows containers or tasks that use the awsvpc network mode.

" }, "privileged":{ "shape":"BoxedBoolean", - "documentation":"

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.

This parameter is not supported for Windows containers or tasks using the Fargate launch type.

" + "documentation":"

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.

This parameter is not supported for Windows containers or tasks using the Fargate launch type.

" }, "readonlyRootFilesystem":{ "shape":"BoxedBoolean", - "documentation":"

When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.

This parameter is not supported for Windows containers.

" + "documentation":"

When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run.

This parameter is not supported for Windows containers or tasks that use the awsvpc network mode.

" }, "dnsServers":{ "shape":"StringList", - "documentation":"

A list of DNS servers that are presented to the container. This parameter maps to Dns in the Create a container section of the Docker Remote API and the --dns option to docker run.

This parameter is not supported for Windows containers.

" + "documentation":"

A list of DNS servers that are presented to the container. This parameter maps to Dns in the Create a container section of the Docker Remote API and the --dns option to docker run.

This parameter is not supported for Windows containers or tasks that use the awsvpc network mode.

" }, "dnsSearchDomains":{ "shape":"StringList", - "documentation":"

A list of DNS search domains that are presented to the container. This parameter maps to DnsSearch in the Create a container section of the Docker Remote API and the --dns-search option to docker run.

This parameter is not supported for Windows containers.

" + "documentation":"

A list of DNS search domains that are presented to the container. This parameter maps to DnsSearch in the Create a container section of the Docker Remote API and the --dns-search option to docker run.

This parameter is not supported for Windows containers or tasks that use the awsvpc network mode.

" }, "extraHosts":{ "shape":"HostEntryList", - "documentation":"

A list of hostnames and IP address mappings to append to the /etc/hosts file on the container. This parameter maps to ExtraHosts in the Create a container section of the Docker Remote API and the --add-host option to docker run.

This parameter is not supported for Windows containers or tasks that use the awsvpc network mode.

" + "documentation":"

A list of hostnames and IP address mappings to append to the /etc/hosts file on the container. This parameter maps to ExtraHosts in the Create a container section of the Docker Remote API and the --add-host option to docker run.

This parameter is not supported for Windows containers or tasks that use the awsvpc network mode.

" }, "dockerSecurityOptions":{ "shape":"StringList", - "documentation":"

A list of strings to provide custom labels for SELinux and AppArmor multi-level security systems. This field is not valid for containers in tasks using the Fargate launch type.

With Windows containers, this parameter can be used to reference a credential spec file when configuring a container for Active Directory authentication. For more information, see Using gMSAs for Windows Containers in the Amazon Elastic Container Service Developer Guide.

This parameter maps to SecurityOpt in the Create a container section of the Docker Remote API and the --security-opt option to docker run.

The Amazon ECS container agent running on a container instance must register with the ECS_SELINUX_CAPABLE=true or ECS_APPARMOR_CAPABLE=true environment variables before containers placed on that instance can use these security options. For more information, see Amazon ECS Container Agent Configuration in the Amazon Elastic Container Service Developer Guide.

" + "documentation":"

A list of strings to provide custom labels for SELinux and AppArmor multi-level security systems. This field is not valid for containers in tasks using the Fargate launch type.

With Windows containers, this parameter can be used to reference a credential spec file when configuring a container for Active Directory authentication. For more information, see Using gMSAs for Windows Containers in the Amazon Elastic Container Service Developer Guide.

This parameter maps to SecurityOpt in the Create a container section of the Docker Remote API and the --security-opt option to docker run.

The Amazon ECS container agent running on a container instance must register with the ECS_SELINUX_CAPABLE=true or ECS_APPARMOR_CAPABLE=true environment variables before containers placed on that instance can use these security options. For more information, see Amazon ECS Container Agent Configuration in the Amazon Elastic Container Service Developer Guide.

For more information about valid values, see Docker Run Security Configuration.

Valid values: \"no-new-privileges\" | \"apparmor:PROFILE\" | \"label:value\" | \"credentialspec:CredentialSpecFilePath\"

" }, "interactive":{ "shape":"BoxedBoolean", - "documentation":"

When this parameter is true, this allows you to deploy containerized applications that require stdin or a tty to be allocated. This parameter maps to OpenStdin in the Create a container section of the Docker Remote API and the --interactive option to docker run.

" + "documentation":"

When this parameter is true, this allows you to deploy containerized applications that require stdin or a tty to be allocated. This parameter maps to OpenStdin in the Create a container section of the Docker Remote API and the --interactive option to docker run.

" }, "pseudoTerminal":{ "shape":"BoxedBoolean", - "documentation":"

When this parameter is true, a TTY is allocated. This parameter maps to Tty in the Create a container section of the Docker Remote API and the --tty option to docker run.

" + "documentation":"

When this parameter is true, a TTY is allocated. This parameter maps to Tty in the Create a container section of the Docker Remote API and the --tty option to docker run.

" }, "dockerLabels":{ "shape":"DockerLabelsMap", - "documentation":"

A key/value map of labels to add to the container. This parameter maps to Labels in the Create a container section of the Docker Remote API and the --label option to docker run. This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format '{{.Server.APIVersion}}'

" + "documentation":"

A key/value map of labels to add to the container. This parameter maps to Labels in the Create a container section of the Docker Remote API and the --label option to docker run. This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format '{{.Server.APIVersion}}'

" }, "ulimits":{ "shape":"UlimitList", - "documentation":"

A list of ulimits to set in the container. If a ulimit value is specified in a task definition, it will override the default values set by Docker. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run. Valid naming values are displayed in the Ulimit data type. This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format '{{.Server.APIVersion}}'

This parameter is not supported for Windows containers.

" + "documentation":"

A list of ulimits to set in the container. If a ulimit value is specified in a task definition, it will override the default values set by Docker. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run. Valid naming values are displayed in the Ulimit data type. This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format '{{.Server.APIVersion}}'

This parameter is not supported for Windows containers or tasks that use the awsvpc network mode.

" }, "logConfiguration":{ "shape":"LogConfiguration", - "documentation":"

The log configuration specification for the container.

This parameter maps to LogConfig in the Create a container section of the Docker Remote API and the --log-driver option to docker run. By default, containers use the same logging driver that the Docker daemon uses. However the container may use a different logging driver than the Docker daemon by specifying a log driver with this parameter in the container definition. To use a different logging driver for a container, the log system must be configured properly on the container instance (or on a different log server for remote logging options). For more information on the options for different supported log drivers, see Configure logging drivers in the Docker documentation.

Amazon ECS currently supports a subset of the logging drivers available to the Docker daemon (shown in the LogConfiguration data type). Additional log drivers may be available in future releases of the Amazon ECS container agent.

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format '{{.Server.APIVersion}}'

The Amazon ECS container agent running on a container instance must register the logging drivers available on that instance with the ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on that instance can use these log configuration options. For more information, see Amazon ECS Container Agent Configuration in the Amazon Elastic Container Service Developer Guide.

" + "documentation":"

The log configuration specification for the container.

This parameter maps to LogConfig in the Create a container section of the Docker Remote API and the --log-driver option to docker run. By default, containers use the same logging driver that the Docker daemon uses. However the container may use a different logging driver than the Docker daemon by specifying a log driver with this parameter in the container definition. To use a different logging driver for a container, the log system must be configured properly on the container instance (or on a different log server for remote logging options). For more information on the options for different supported log drivers, see Configure logging drivers in the Docker documentation.

Amazon ECS currently supports a subset of the logging drivers available to the Docker daemon (shown in the LogConfiguration data type). Additional log drivers may be available in future releases of the Amazon ECS container agent.

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format '{{.Server.APIVersion}}'

The Amazon ECS container agent running on a container instance must register the logging drivers available on that instance with the ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on that instance can use these log configuration options. For more information, see Amazon ECS Container Agent Configuration in the Amazon Elastic Container Service Developer Guide.

" }, "healthCheck":{ "shape":"HealthCheck", - "documentation":"

The container health check command and associated configuration parameters for the container. This parameter maps to HealthCheck in the Create a container section of the Docker Remote API and the HEALTHCHECK parameter of docker run.

" + "documentation":"

The container health check command and associated configuration parameters for the container. This parameter maps to HealthCheck in the Create a container section of the Docker Remote API and the HEALTHCHECK parameter of docker run.

" }, "systemControls":{ "shape":"SystemControls", - "documentation":"

A list of namespaced kernel parameters to set in the container. This parameter maps to Sysctls in the Create a container section of the Docker Remote API and the --sysctl option to docker run.

It is not recommended that you specify network-related systemControls parameters for multiple containers in a single task that also uses either the awsvpc or host network modes. For tasks that use the awsvpc network mode, the container that is started last determines which systemControls parameters take effect. For tasks that use the host network mode, it changes the container instance's namespaced kernel parameters as well as the containers.

" + "documentation":"

A list of namespaced kernel parameters to set in the container. This parameter maps to Sysctls in the Create a container section of the Docker Remote API and the --sysctl option to docker run.

It is not recommended that you specify network-related systemControls parameters for multiple containers in a single task that also uses either the awsvpc or host network modes. For tasks that use the awsvpc network mode, the container that is started last determines which systemControls parameters take effect. For tasks that use the host network mode, it changes the container instance's namespaced kernel parameters as well as the containers.

" }, "resourceRequirements":{ "shape":"ResourceRequirements", @@ -1507,7 +1507,7 @@ }, "condition":{ "shape":"ContainerCondition", - "documentation":"

The dependency condition of the container. The following are the available conditions and their behavior:

  • START - This condition emulates the behavior of links and volumes today. It validates that a dependent container is started before permitting other containers to start.

  • COMPLETE - This condition validates that a dependent container runs to completion (exits) before permitting other containers to start. This can be useful for nonessential containers that run a script and then exit.

  • SUCCESS - This condition is the same as COMPLETE, but it also requires that the container exits with a zero status.

  • HEALTHY - This condition validates that the dependent container passes its Docker health check before permitting other containers to start. This requires that the dependent container has health checks configured. This condition is confirmed only at task startup.

" + "documentation":"

The dependency condition of the container. The following are the available conditions and their behavior:

  • START - This condition emulates the behavior of links and volumes today. It validates that a dependent container is started before permitting other containers to start.

  • COMPLETE - This condition validates that a dependent container runs to completion (exits) before permitting other containers to start. This can be useful for nonessential containers that run a script and then exit. This condition cannot be set on an essential container.

  • SUCCESS - This condition is the same as COMPLETE, but it also requires that the container exits with a zero status. This condition cannot be set on an essential container.

  • HEALTHY - This condition validates that the dependent container passes its Docker health check before permitting other containers to start. This requires that the dependent container has health checks configured. This condition is confirmed only at task startup.

" } }, "documentation":"

The dependencies defined for container startup and shutdown. A container can contain multiple dependencies. When a dependency is defined for container startup, for container shutdown it is reversed.

Your Amazon ECS container instances require at least version 1.26.0 of the container agent to enable container dependencies. However, we recommend using the latest container agent version. For information about checking your agent version and updating to the latest version, see Updating the Amazon ECS Container Agent in the Amazon Elastic Container Service Developer Guide. If you are using an Amazon ECS-optimized Linux AMI, your instance needs at least version 1.26.0-1 of the ecs-init package. If your container instances are launched from version 20190301 or later, then they contain the required versions of the container agent and ecs-init. For more information, see Amazon ECS-optimized Linux AMI in the Amazon Elastic Container Service Developer Guide.

For tasks using the Fargate launch type, this parameter requires that the task or service uses platform version 1.3.0 or later.

" @@ -1770,11 +1770,11 @@ }, "taskDefinition":{ "shape":"String", - "documentation":"

The family and revision (family:revision) or full ARN of the task definition to run in your service. If a revision is not specified, the latest ACTIVE revision is used.

A task definition must be specified if the service is using the ECS deployment controller.

" + "documentation":"

The family and revision (family:revision) or full ARN of the task definition to run in your service. If a revision is not specified, the latest ACTIVE revision is used.

A task definition must be specified if the service is using either the ECS or CODE_DEPLOY deployment controllers.

" }, "loadBalancers":{ "shape":"LoadBalancers", - "documentation":"

A load balancer object representing the load balancers to use with your service. For more information, see Service Load Balancing in the Amazon Elastic Container Service Developer Guide.

If the service is using the rolling update (ECS) deployment controller and using either an Application Load Balancer or Network Load Balancer, you can specify multiple target groups to attach to the service. The service-linked role is required for services that make use of multiple target groups. For more information, see Using Service-Linked Roles for Amazon ECS in the Amazon Elastic Container Service Developer Guide.

If the service is using the CODE_DEPLOY deployment controller, the service is required to use either an Application Load Balancer or Network Load Balancer. When creating an AWS CodeDeploy deployment group, you specify two target groups (referred to as a targetGroupPair). During a deployment, AWS CodeDeploy determines which task set in your service has the status PRIMARY and associates one target group with it, and then associates the other target group with the replacement task set. The load balancer can also have up to two listeners: a required listener for production traffic and an optional listener that allows you perform validation tests with Lambda functions before routing production traffic to it.

After you create a service using the ECS deployment controller, the load balancer name or target group ARN, container name, and container port specified in the service definition are immutable. If you are using the CODE_DEPLOY deployment controller, these values can be changed when updating the service.

For Application Load Balancers and Network Load Balancers, this object must contain the load balancer target group ARN, the container name (as it appears in a container definition), and the container port to access from the load balancer. When a task from this service is placed on a container instance, the container instance and port combination is registered as a target in the target group specified here.

For Classic Load Balancers, this object must contain the load balancer name, the container name (as it appears in a container definition), and the container port to access from the load balancer. When a task from this service is placed on a container instance, the container instance is registered with the load balancer specified here.

Services with tasks that use the awsvpc network mode (for example, those with the Fargate launch type) only support Application Load Balancers and Network Load Balancers. Classic Load Balancers are not supported. Also, when you create any target groups for these services, you must choose ip as the target type, not instance, because tasks that use the awsvpc network mode are associated with an elastic network interface, not an Amazon EC2 instance.

" + "documentation":"

A load balancer object representing the load balancers to use with your service. For more information, see Service Load Balancing in the Amazon Elastic Container Service Developer Guide.

If the service is using the rolling update (ECS) deployment controller and using either an Application Load Balancer or Network Load Balancer, you must specify one or more target group ARNs to attach to the service. The service-linked role is required for services that make use of multiple target groups. For more information, see Using Service-Linked Roles for Amazon ECS in the Amazon Elastic Container Service Developer Guide.

If the service is using the CODE_DEPLOY deployment controller, the service is required to use either an Application Load Balancer or Network Load Balancer. When creating an AWS CodeDeploy deployment group, you specify two target groups (referred to as a targetGroupPair). During a deployment, AWS CodeDeploy determines which task set in your service has the status PRIMARY and associates one target group with it, and then associates the other target group with the replacement task set. The load balancer can also have up to two listeners: a required listener for production traffic and an optional listener that allows you perform validation tests with Lambda functions before routing production traffic to it.

After you create a service using the ECS deployment controller, the load balancer name or target group ARN, container name, and container port specified in the service definition are immutable. If you are using the CODE_DEPLOY deployment controller, these values can be changed when updating the service.

For Application Load Balancers and Network Load Balancers, this object must contain the load balancer target group ARN, the container name (as it appears in a container definition), and the container port to access from the load balancer. The load balancer name parameter must be omitted. When a task from this service is placed on a container instance, the container instance and port combination is registered as a target in the target group specified here.

For Classic Load Balancers, this object must contain the load balancer name, the container name (as it appears in a container definition), and the container port to access from the load balancer. The target group ARN parameter must be omitted. When a task from this service is placed on a container instance, the container instance is registered with the load balancer specified here.

Services with tasks that use the awsvpc network mode (for example, those with the Fargate launch type) only support Application Load Balancers and Network Load Balancers. Classic Load Balancers are not supported. Also, when you create any target groups for these services, you must choose ip as the target type, not instance, because tasks that use the awsvpc network mode are associated with an elastic network interface, not an Amazon EC2 instance.

" }, "serviceRegistries":{ "shape":"ServiceRegistries", @@ -2522,7 +2522,7 @@ "members":{ "accessPointId":{ "shape":"String", - "documentation":"

The Amazon EFS access point ID to use. If an access point is specified, the root directory value specified in the EFSVolumeConfiguration will be relative to the directory set for the access point. If an access point is used, transit encryption must be enabled in the EFSVolumeConfiguration. For more information, see Working with Amazon EFS Access Points in the Amazon Elastic File System User Guide.

" + "documentation":"

The Amazon EFS access point ID to use. If an access point is specified, the root directory value specified in the EFSVolumeConfiguration must either be omitted or set to / which will enforce the path set on the EFS access point. If an access point is used, transit encryption must be enabled in the EFSVolumeConfiguration. For more information, see Working with Amazon EFS Access Points in the Amazon Elastic File System User Guide.

" }, "iam":{ "shape":"EFSAuthorizationConfigIAM", @@ -2555,7 +2555,7 @@ }, "rootDirectory":{ "shape":"String", - "documentation":"

The directory within the Amazon EFS file system to mount as the root directory inside the host. If this parameter is omitted, the root of the Amazon EFS volume will be used. Specifying / will have the same effect as omitting this parameter.

" + "documentation":"

The directory within the Amazon EFS file system to mount as the root directory inside the host. If this parameter is omitted, the root of the Amazon EFS volume will be used. Specifying / will have the same effect as omitting this parameter.

If an EFS access point is specified in the authorizationConfig, the root directory parameter must either be omitted or set to / which will enforce the path set on the EFS access point.

" }, "transitEncryption":{ "shape":"EFSTransitEncryption", @@ -2602,6 +2602,47 @@ "type":"list", "member":{"shape":"KeyValuePair"} }, + "FSxWindowsFileServerAuthorizationConfig":{ + "type":"structure", + "required":[ + "credentialsParameter", + "domain" + ], + "members":{ + "credentialsParameter":{ + "shape":"String", + "documentation":"

The authorization credential option to use.

The authorization credential options can be provided using either the AWS Secrets Manager ARN or the AWS Systems Manager ARN. The ARNs refer to the stored credentials.

options:

" + }, + "domain":{ + "shape":"String", + "documentation":"

A fully qualified domain name hosted by an AWS Directory Service Managed Microsoft AD (Active Directory) or self-hosted EC2 AD.

" + } + }, + "documentation":"

The authorization configuration details for Amazon FSx for Windows File Server file system. See FSxWindowsFileServerVolumeConfiguration in the Amazon Elastic Container Service API Reference.

For more information and the input format, see Amazon FSx for Windows File Server Volumes in the Amazon Elastic Container Service Developer Guide.

" + }, + "FSxWindowsFileServerVolumeConfiguration":{ + "type":"structure", + "required":[ + "fileSystemId", + "rootDirectory", + "authorizationConfig" + ], + "members":{ + "fileSystemId":{ + "shape":"String", + "documentation":"

The Amazon FSx for Windows File Server file system ID to use.

" + }, + "rootDirectory":{ + "shape":"String", + "documentation":"

The directory within the Amazon FSx for Windows File Server file system to mount as the root directory inside the host.

" + }, + "authorizationConfig":{ + "shape":"FSxWindowsFileServerAuthorizationConfig", + "documentation":"

The authorization configuration details for the Amazon FSx for Windows File Server file system.

" + } + }, + "documentation":"

This parameter is specified when you are using Amazon FSx for Windows File Server file system for task storage.

For more information and the input format, see Amazon FSx for Windows File Server Volumes in the Amazon Elastic Container Service Developer Guide.

" + }, "Failure":{ "type":"structure", "members":{ @@ -2618,7 +2659,7 @@ "documentation":"

The details of the failure.

" } }, - "documentation":"

A failed resource.

" + "documentation":"

A failed resource. For a list of common causes, see API failure reasons in the Amazon Elastic Container Service Developer Guide.

" }, "Failures":{ "type":"list", @@ -2783,11 +2824,11 @@ "members":{ "add":{ "shape":"StringList", - "documentation":"

The Linux capabilities for the container that have been added to the default configuration provided by Docker. This parameter maps to CapAdd in the Create a container section of the Docker Remote API and the --cap-add option to docker run.

The SYS_PTRACE capability is supported for tasks that use the Fargate launch type if they are also using platform version 1.4.0. The other capabilities are not supported for any platform versions.

Valid values: \"ALL\" | \"AUDIT_CONTROL\" | \"AUDIT_WRITE\" | \"BLOCK_SUSPEND\" | \"CHOWN\" | \"DAC_OVERRIDE\" | \"DAC_READ_SEARCH\" | \"FOWNER\" | \"FSETID\" | \"IPC_LOCK\" | \"IPC_OWNER\" | \"KILL\" | \"LEASE\" | \"LINUX_IMMUTABLE\" | \"MAC_ADMIN\" | \"MAC_OVERRIDE\" | \"MKNOD\" | \"NET_ADMIN\" | \"NET_BIND_SERVICE\" | \"NET_BROADCAST\" | \"NET_RAW\" | \"SETFCAP\" | \"SETGID\" | \"SETPCAP\" | \"SETUID\" | \"SYS_ADMIN\" | \"SYS_BOOT\" | \"SYS_CHROOT\" | \"SYS_MODULE\" | \"SYS_NICE\" | \"SYS_PACCT\" | \"SYS_PTRACE\" | \"SYS_RAWIO\" | \"SYS_RESOURCE\" | \"SYS_TIME\" | \"SYS_TTY_CONFIG\" | \"SYSLOG\" | \"WAKE_ALARM\"

" + "documentation":"

The Linux capabilities for the container that have been added to the default configuration provided by Docker. This parameter maps to CapAdd in the Create a container section of the Docker Remote API and the --cap-add option to docker run.

Tasks launched on AWS Fargate only support adding the SYS_PTRACE kernel capability.

Valid values: \"ALL\" | \"AUDIT_CONTROL\" | \"AUDIT_WRITE\" | \"BLOCK_SUSPEND\" | \"CHOWN\" | \"DAC_OVERRIDE\" | \"DAC_READ_SEARCH\" | \"FOWNER\" | \"FSETID\" | \"IPC_LOCK\" | \"IPC_OWNER\" | \"KILL\" | \"LEASE\" | \"LINUX_IMMUTABLE\" | \"MAC_ADMIN\" | \"MAC_OVERRIDE\" | \"MKNOD\" | \"NET_ADMIN\" | \"NET_BIND_SERVICE\" | \"NET_BROADCAST\" | \"NET_RAW\" | \"SETFCAP\" | \"SETGID\" | \"SETPCAP\" | \"SETUID\" | \"SYS_ADMIN\" | \"SYS_BOOT\" | \"SYS_CHROOT\" | \"SYS_MODULE\" | \"SYS_NICE\" | \"SYS_PACCT\" | \"SYS_PTRACE\" | \"SYS_RAWIO\" | \"SYS_RESOURCE\" | \"SYS_TIME\" | \"SYS_TTY_CONFIG\" | \"SYSLOG\" | \"WAKE_ALARM\"

" }, "drop":{ "shape":"StringList", - "documentation":"

The Linux capabilities for the container that have been removed from the default configuration provided by Docker. This parameter maps to CapDrop in the Create a container section of the Docker Remote API and the --cap-drop option to docker run.

Valid values: \"ALL\" | \"AUDIT_CONTROL\" | \"AUDIT_WRITE\" | \"BLOCK_SUSPEND\" | \"CHOWN\" | \"DAC_OVERRIDE\" | \"DAC_READ_SEARCH\" | \"FOWNER\" | \"FSETID\" | \"IPC_LOCK\" | \"IPC_OWNER\" | \"KILL\" | \"LEASE\" | \"LINUX_IMMUTABLE\" | \"MAC_ADMIN\" | \"MAC_OVERRIDE\" | \"MKNOD\" | \"NET_ADMIN\" | \"NET_BIND_SERVICE\" | \"NET_BROADCAST\" | \"NET_RAW\" | \"SETFCAP\" | \"SETGID\" | \"SETPCAP\" | \"SETUID\" | \"SYS_ADMIN\" | \"SYS_BOOT\" | \"SYS_CHROOT\" | \"SYS_MODULE\" | \"SYS_NICE\" | \"SYS_PACCT\" | \"SYS_PTRACE\" | \"SYS_RAWIO\" | \"SYS_RESOURCE\" | \"SYS_TIME\" | \"SYS_TTY_CONFIG\" | \"SYSLOG\" | \"WAKE_ALARM\"

" + "documentation":"

The Linux capabilities for the container that have been removed from the default configuration provided by Docker. This parameter maps to CapDrop in the Create a container section of the Docker Remote API and the --cap-drop option to docker run.

Valid values: \"ALL\" | \"AUDIT_CONTROL\" | \"AUDIT_WRITE\" | \"BLOCK_SUSPEND\" | \"CHOWN\" | \"DAC_OVERRIDE\" | \"DAC_READ_SEARCH\" | \"FOWNER\" | \"FSETID\" | \"IPC_LOCK\" | \"IPC_OWNER\" | \"KILL\" | \"LEASE\" | \"LINUX_IMMUTABLE\" | \"MAC_ADMIN\" | \"MAC_OVERRIDE\" | \"MKNOD\" | \"NET_ADMIN\" | \"NET_BIND_SERVICE\" | \"NET_BROADCAST\" | \"NET_RAW\" | \"SETFCAP\" | \"SETGID\" | \"SETPCAP\" | \"SETUID\" | \"SYS_ADMIN\" | \"SYS_BOOT\" | \"SYS_CHROOT\" | \"SYS_MODULE\" | \"SYS_NICE\" | \"SYS_PACCT\" | \"SYS_PTRACE\" | \"SYS_RAWIO\" | \"SYS_RESOURCE\" | \"SYS_TIME\" | \"SYS_TTY_CONFIG\" | \"SYSLOG\" | \"WAKE_ALARM\"

" } }, "documentation":"

The Linux capabilities for the container that are added to or dropped from the default configuration provided by Docker. For more information on the default capabilities and the non-default available capabilities, see Runtime privilege and Linux capabilities in the Docker run reference. For more detailed information on these Linux capabilities, see the capabilities(7) Linux manual page.

" @@ -2829,27 +2870,27 @@ }, "devices":{ "shape":"DevicesList", - "documentation":"

Any host devices to expose to the container. This parameter maps to Devices in the Create a container section of the Docker Remote API and the --device option to docker run.

If you are using tasks that use the Fargate launch type, the devices parameter is not supported.

" + "documentation":"

Any host devices to expose to the container. This parameter maps to Devices in the Create a container section of the Docker Remote API and the --device option to docker run.

If you are using tasks that use the Fargate launch type, the devices parameter is not supported.

" }, "initProcessEnabled":{ "shape":"BoxedBoolean", - "documentation":"

Run an init process inside the container that forwards signals and reaps processes. This parameter maps to the --init option to docker run. This parameter requires version 1.25 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format '{{.Server.APIVersion}}'

" + "documentation":"

Run an init process inside the container that forwards signals and reaps processes. This parameter maps to the --init option to docker run. This parameter requires version 1.25 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: sudo docker version --format '{{.Server.APIVersion}}'

" }, "sharedMemorySize":{ "shape":"BoxedInteger", - "documentation":"

The value for the size (in MiB) of the /dev/shm volume. This parameter maps to the --shm-size option to docker run.

If you are using tasks that use the Fargate launch type, the sharedMemorySize parameter is not supported.

" + "documentation":"

The value for the size (in MiB) of the /dev/shm volume. This parameter maps to the --shm-size option to docker run.

If you are using tasks that use the Fargate launch type, the sharedMemorySize parameter is not supported.

" }, "tmpfs":{ "shape":"TmpfsList", - "documentation":"

The container path, mount options, and size (in MiB) of the tmpfs mount. This parameter maps to the --tmpfs option to docker run.

If you are using tasks that use the Fargate launch type, the tmpfs parameter is not supported.

" + "documentation":"

The container path, mount options, and size (in MiB) of the tmpfs mount. This parameter maps to the --tmpfs option to docker run.

If you are using tasks that use the Fargate launch type, the tmpfs parameter is not supported.

" }, "maxSwap":{ "shape":"BoxedInteger", - "documentation":"

The total amount of swap memory (in MiB) a container can use. This parameter will be translated to the --memory-swap option to docker run where the value would be the sum of the container memory plus the maxSwap value.

If a maxSwap value of 0 is specified, the container will not use swap. Accepted values are 0 or any positive integer. If the maxSwap parameter is omitted, the container will use the swap configuration for the container instance it is running on. A maxSwap value must be set for the swappiness parameter to be used.

If you are using tasks that use the Fargate launch type, the maxSwap parameter is not supported.

" + "documentation":"

The total amount of swap memory (in MiB) a container can use. This parameter will be translated to the --memory-swap option to docker run where the value would be the sum of the container memory plus the maxSwap value.

If a maxSwap value of 0 is specified, the container will not use swap. Accepted values are 0 or any positive integer. If the maxSwap parameter is omitted, the container will use the swap configuration for the container instance it is running on. A maxSwap value must be set for the swappiness parameter to be used.

If you are using tasks that use the Fargate launch type, the maxSwap parameter is not supported.

" }, "swappiness":{ "shape":"BoxedInteger", - "documentation":"

This allows you to tune a container's memory swappiness behavior. A swappiness value of 0 will cause swapping to not happen unless absolutely necessary. A swappiness value of 100 will cause pages to be swapped very aggressively. Accepted values are whole numbers between 0 and 100. If the swappiness parameter is not specified, a default value of 60 is used. If a value is not specified for maxSwap then this parameter is ignored. This parameter maps to the --memory-swappiness option to docker run.

If you are using tasks that use the Fargate launch type, the swappiness parameter is not supported.

" + "documentation":"

This allows you to tune a container's memory swappiness behavior. A swappiness value of 0 will cause swapping to not happen unless absolutely necessary. A swappiness value of 100 will cause pages to be swapped very aggressively. Accepted values are whole numbers between 0 and 100. If the swappiness parameter is not specified, a default value of 60 is used. If a value is not specified for maxSwap then this parameter is ignored. This parameter maps to the --memory-swappiness option to docker run.

If you are using tasks that use the Fargate launch type, the swappiness parameter is not supported.

" } }, "documentation":"

Linux-specific options that are applied to the container, such as Linux KernelCapabilities.

" @@ -3218,7 +3259,7 @@ "members":{ "logDriver":{ "shape":"LogDriver", - "documentation":"

The log driver to use for the container. The valid values listed earlier are log drivers that the Amazon ECS container agent can communicate with by default.

For tasks using the Fargate launch type, the supported log drivers are awslogs, splunk, and awsfirelens.

For tasks using the EC2 launch type, the supported log drivers are awslogs, fluentd, gelf, json-file, journald, logentries,syslog, splunk, and awsfirelens.

For more information about using the awslogs log driver, see Using the awslogs Log Driver in the Amazon Elastic Container Service Developer Guide.

For more information about using the awsfirelens log driver, see Custom Log Routing in the Amazon Elastic Container Service Developer Guide.

If you have a custom driver that is not listed, you can fork the Amazon ECS container agent project that is available on GitHub and customize it to work with that driver. We encourage you to submit pull requests for changes that you would like to have included. However, we do not currently provide support for running modified copies of this software.

" + "documentation":"

The log driver to use for the container.

For tasks on AWS Fargate, the supported log drivers are awslogs, splunk, and awsfirelens.

For tasks hosted on Amazon EC2 instances, the supported log drivers are awslogs, fluentd, gelf, json-file, journald, logentries,syslog, splunk, and awsfirelens.

For more information about using the awslogs log driver, see Using the awslogs log driver in the Amazon Elastic Container Service Developer Guide.

For more information about using the awsfirelens log driver, see Custom log routing in the Amazon Elastic Container Service Developer Guide.

If you have a custom driver that is not listed, you can fork the Amazon ECS container agent project that is available on GitHub and customize it to work with that driver. We encourage you to submit pull requests for changes that you would like to have included. However, we do not currently provide support for running modified copies of this software.

" }, "options":{ "shape":"LogConfigurationOptionsMap", @@ -3229,7 +3270,7 @@ "documentation":"

The secrets to pass to the log configuration. For more information, see Specifying Sensitive Data in the Amazon Elastic Container Service Developer Guide.

" } }, - "documentation":"

The log configuration specification for the container.

This parameter maps to LogConfig in the Create a container section of the Docker Remote API and the --log-driver option to docker run . By default, containers use the same logging driver that the Docker daemon uses; however the container may use a different logging driver than the Docker daemon by specifying a log driver with this parameter in the container definition. To use a different logging driver for a container, the log system must be configured properly on the container instance (or on a different log server for remote logging options). For more information on the options for different supported log drivers, see Configure logging drivers in the Docker documentation.

The following should be noted when specifying a log configuration for your containers:

  • Amazon ECS currently supports a subset of the logging drivers available to the Docker daemon (shown in the valid values below). Additional log drivers may be available in future releases of the Amazon ECS container agent.

  • This parameter requires version 1.18 of the Docker Remote API or greater on your container instance.

  • For tasks using the EC2 launch type, the Amazon ECS container agent running on a container instance must register the logging drivers available on that instance with the ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on that instance can use these log configuration options. For more information, see Amazon ECS Container Agent Configuration in the Amazon Elastic Container Service Developer Guide.

  • For tasks using the Fargate launch type, because you do not have access to the underlying infrastructure your tasks are hosted on, any additional software needed will have to be installed outside of the task. For example, the Fluentd output aggregators or a remote host running Logstash to send Gelf logs to.

" + "documentation":"

The log configuration for the container. This parameter maps to LogConfig in the Create a container section of the Docker Remote API and the --log-driver option to docker run .

By default, containers use the same logging driver that the Docker daemon uses; however the container may use a different logging driver than the Docker daemon by specifying a log driver configuration in the container definition. For more information on the options for different supported log drivers, see Configure logging drivers in the Docker documentation.

The following should be noted when specifying a log configuration for your containers:

  • Amazon ECS currently supports a subset of the logging drivers available to the Docker daemon (shown in the valid values below). Additional log drivers may be available in future releases of the Amazon ECS container agent.

  • This parameter requires version 1.18 of the Docker Remote API or greater on your container instance.

  • For tasks hosted on Amazon EC2 instances, the Amazon ECS container agent must register the available logging drivers with the ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on that instance can use these log configuration options. For more information, see Amazon ECS container agent configuration in the Amazon Elastic Container Service Developer Guide.

  • For tasks on AWS Fargate, because you do not have access to the underlying infrastructure your tasks are hosted on, any additional software needed will have to be installed outside of the task. For example, the Fluentd output aggregators or a remote host running Logstash to send Gelf logs to.

" }, "LogConfigurationOptionsMap":{ "type":"map", @@ -3263,11 +3304,11 @@ }, "minimumScalingStepSize":{ "shape":"ManagedScalingStepSize", - "documentation":"

The minimum number of container instances that Amazon ECS will scale in or scale out at one time. If this parameter is omitted, the default value of 1 is used.

" + "documentation":"

The minimum number of Amazon EC2 instances that Amazon ECS will scale out at one time. The scale in process is not affected by this parameter If this parameter is omitted, the default value of 1 is used.

When additional capacity is required, Amazon ECS will scale up the minimum scaling step size even if the actual demand is less than the minimum scaling step size.

If you use a capacity provider with an Auto Scaling group configured with more than one Amazon EC2 instance type or Availability Zone, Amazon ECS will scale up by the exact minimum scaling step size value and will ignore both the maximum scaling step size as well as the capacity demand.

" }, "maximumScalingStepSize":{ "shape":"ManagedScalingStepSize", - "documentation":"

The maximum number of container instances that Amazon ECS will scale in or scale out at one time. If this parameter is omitted, the default value of 10000 is used.

" + "documentation":"

The maximum number of Amazon EC2 instances that Amazon ECS will scale out at one time. The scale in process is not affected by this parameter. If this parameter is omitted, the default value of 10000 is used.

" } }, "documentation":"

The managed scaling settings for the Auto Scaling group capacity provider.

When managed scaling is enabled, Amazon ECS manages the scale-in and scale-out actions of the Auto Scaling group. Amazon ECS manages a target tracking scaling policy using an Amazon ECS-managed CloudWatch metric with the specified targetCapacity value as the target value for the metric. For more information, see Using Managed Scaling in the Amazon Elastic Container Service Developer Guide.

If managed scaling is disabled, the user must manage the scaling of the Auto Scaling group.

" @@ -3502,7 +3543,7 @@ "members":{ "containerPort":{ "shape":"BoxedInteger", - "documentation":"

The port number on the container that is bound to the user-specified or automatically assigned host port.

If you are using containers in a task with the awsvpc or host network mode, exposed ports should be specified using containerPort.

If you are using containers in a task with the bridge network mode and you specify a container port and not a host port, your container automatically receives a host port in the ephemeral port range. For more information, see hostPort. Port mappings that are automatically assigned in this way do not count toward the 100 reserved ports limit of a container instance.

You cannot expose the same container port for multiple protocols. An error will be returned if this is attempted.

" + "documentation":"

The port number on the container that is bound to the user-specified or automatically assigned host port.

If you are using containers in a task with the awsvpc or host network mode, exposed ports should be specified using containerPort.

If you are using containers in a task with the bridge network mode and you specify a container port and not a host port, your container automatically receives a host port in the ephemeral port range. For more information, see hostPort. Port mappings that are automatically assigned in this way do not count toward the 100 reserved ports limit of a container instance.

" }, "hostPort":{ "shape":"BoxedInteger", @@ -3744,7 +3785,7 @@ }, "requiresCompatibilities":{ "shape":"CompatibilityList", - "documentation":"

The launch type required by the task. If no value is specified, it defaults to EC2.

" + "documentation":"

The task launch type that Amazon ECS should validate the task definition against. This ensures that the task definition parameters are compatible with the specified launch type. If no value is specified, it defaults to EC2.

" }, "cpu":{ "shape":"String", @@ -4504,7 +4545,7 @@ "documentation":"

The value for the namespaced kernel parameter specified in namespace.

" } }, - "documentation":"

A list of namespaced kernel parameters to set in the container. This parameter maps to Sysctls in the Create a container section of the Docker Remote API and the --sysctl option to docker run.

It is not recommended that you specify network-related systemControls parameters for multiple containers in a single task that also uses either the awsvpc or host network mode for the following reasons:

  • For tasks that use the awsvpc network mode, if you set systemControls for any container, it applies to all containers in the task. If you set different systemControls for multiple containers in a single task, the container that is started last determines which systemControls take effect.

  • For tasks that use the host network mode, the systemControls parameter applies to the container instance's kernel parameter as well as that of all containers of any tasks running on that container instance.

" + "documentation":"

A list of namespaced kernel parameters to set in the container. This parameter maps to Sysctls in the Create a container section of the Docker Remote API and the --sysctl option to docker run.

It is not recommended that you specify network-related systemControls parameters for multiple containers in a single task that also uses either the awsvpc or host network mode for the following reasons:

  • For tasks that use the awsvpc network mode, if you set systemControls for any container, it applies to all containers in the task. If you set different systemControls for multiple containers in a single task, the container that is started last determines which systemControls take effect.

  • For tasks that use the host network mode, the systemControls parameter applies to the container instance's kernel parameter as well as that of all containers of any tasks running on that container instance.

" }, "SystemControls":{ "type":"list", @@ -4778,7 +4819,7 @@ }, "memory":{ "shape":"String", - "documentation":"

The amount (in MiB) of memory used by the task.

If using the EC2 launch type, this field is optional and any value can be used. If a task-level memory value is specified then the container-level memory value is optional.

If using the Fargate launch type, this field is required and you must use one of the following values, which determines your range of valid values for the cpu parameter:

  • 512 (0.5 GB), 1024 (1 GB), 2048 (2 GB) - Available cpu values: 256 (.25 vCPU)

  • 1024 (1 GB), 2048 (2 GB), 3072 (3 GB), 4096 (4 GB) - Available cpu values: 512 (.5 vCPU)

  • 2048 (2 GB), 3072 (3 GB), 4096 (4 GB), 5120 (5 GB), 6144 (6 GB), 7168 (7 GB), 8192 (8 GB) - Available cpu values: 1024 (1 vCPU)

  • Between 4096 (4 GB) and 16384 (16 GB) in increments of 1024 (1 GB) - Available cpu values: 2048 (2 vCPU)

  • Between 8192 (8 GB) and 30720 (30 GB) in increments of 1024 (1 GB) - Available cpu values: 4096 (4 vCPU)

" + "documentation":"

The amount (in MiB) of memory used by the task.

If using the EC2 launch type, you must specify either a task-level memory value or a container-level memory value. This field is optional and any value can be used. If a task-level memory value is specified then the container-level memory value is optional. For more information regarding container-level memory and memory reservation, see ContainerDefinition.

If using the Fargate launch type, this field is required and you must use one of the following values, which determines your range of valid values for the cpu parameter:

  • 512 (0.5 GB), 1024 (1 GB), 2048 (2 GB) - Available cpu values: 256 (.25 vCPU)

  • 1024 (1 GB), 2048 (2 GB), 3072 (3 GB), 4096 (4 GB) - Available cpu values: 512 (.5 vCPU)

  • 2048 (2 GB), 3072 (3 GB), 4096 (4 GB), 5120 (5 GB), 6144 (6 GB), 7168 (7 GB), 8192 (8 GB) - Available cpu values: 1024 (1 vCPU)

  • Between 4096 (4 GB) and 16384 (16 GB) in increments of 1024 (1 GB) - Available cpu values: 2048 (2 vCPU)

  • Between 8192 (8 GB) and 30720 (30 GB) in increments of 1024 (1 GB) - Available cpu values: 4096 (4 vCPU)

" }, "inferenceAccelerators":{ "shape":"InferenceAccelerators", @@ -5025,7 +5066,7 @@ }, "size":{ "shape":"Integer", - "documentation":"

The size (in MiB) of the tmpfs volume.

" + "documentation":"

The maximum size (in MiB) of the tmpfs volume.

" }, "mountOptions":{ "shape":"StringList", @@ -5362,9 +5403,13 @@ "efsVolumeConfiguration":{ "shape":"EFSVolumeConfiguration", "documentation":"

This parameter is specified when you are using an Amazon Elastic File System file system for task storage.

" + }, + "fsxWindowsFileServerVolumeConfiguration":{ + "shape":"FSxWindowsFileServerVolumeConfiguration", + "documentation":"

This parameter is specified when you are using Amazon FSx for Windows File Server file system for task storage.

" } }, - "documentation":"

A data volume used in a task definition. For tasks that use Amazon Elastic File System (Amazon EFS) file storage, specify an efsVolumeConfiguration. For tasks that use a Docker volume, specify a DockerVolumeConfiguration. For tasks that use a bind mount host volume, specify a host and optional sourcePath. For more information, see Using Data Volumes in Tasks.

" + "documentation":"

A data volume used in a task definition. For tasks that use the Amazon Elastic File System (Amazon EFS), specify an efsVolumeConfiguration. For Windows tasks that use Amazon FSx for Windows File Server file system, specify a fsxWindowsFileServerVolumeConfiguration. For tasks that use a Docker volume, specify a DockerVolumeConfiguration. For tasks that use a bind mount host volume, specify a host and optional sourcePath. For more information, see Using Data Volumes in Tasks.

" }, "VolumeFrom":{ "type":"structure", From 2cef87112268d4ac50e8ecf65a63491c627215a5 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 9 Nov 2020 17:10:36 +0000 Subject: [PATCH 156/339] Amazon Elasticsearch Service Update: Adding support for package versioning in Amazon Elasticsearch Service --- ...re-AmazonElasticsearchService-805abcd.json | 6 + .../codegen-resources/paginators-1.json | 5 + .../codegen-resources/service-2.json | 135 ++++++++++++++++++ 3 files changed, 146 insertions(+) create mode 100644 .changes/next-release/feature-AmazonElasticsearchService-805abcd.json diff --git a/.changes/next-release/feature-AmazonElasticsearchService-805abcd.json b/.changes/next-release/feature-AmazonElasticsearchService-805abcd.json new file mode 100644 index 000000000000..788df38be436 --- /dev/null +++ b/.changes/next-release/feature-AmazonElasticsearchService-805abcd.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Elasticsearch Service", + "contributor": "", + "description": "Adding support for package versioning in Amazon Elasticsearch Service" +} diff --git a/services/elasticsearch/src/main/resources/codegen-resources/paginators-1.json b/services/elasticsearch/src/main/resources/codegen-resources/paginators-1.json index 6a5c91f1c0a3..2ca3f2e67f7b 100755 --- a/services/elasticsearch/src/main/resources/codegen-resources/paginators-1.json +++ b/services/elasticsearch/src/main/resources/codegen-resources/paginators-1.json @@ -25,6 +25,11 @@ "output_token": "NextToken", "limit_key": "MaxResults" }, + "GetPackageVersionHistory": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults" + }, "GetUpgradeHistory": { "input_token": "NextToken", "output_token": "NextToken", diff --git a/services/elasticsearch/src/main/resources/codegen-resources/service-2.json b/services/elasticsearch/src/main/resources/codegen-resources/service-2.json index d8c37f24d4e0..d458ed43082d 100644 --- a/services/elasticsearch/src/main/resources/codegen-resources/service-2.json +++ b/services/elasticsearch/src/main/resources/codegen-resources/service-2.json @@ -380,6 +380,23 @@ ], "documentation":"

Returns a list of upgrade compatible Elastisearch versions. You can optionally pass a DomainName to get all upgrade compatible Elasticsearch versions for that specific domain.

" }, + "GetPackageVersionHistory":{ + "name":"GetPackageVersionHistory", + "http":{ + "method":"GET", + "requestUri":"/2015-01-01/packages/{PackageID}/history" + }, + "input":{"shape":"GetPackageVersionHistoryRequest"}, + "output":{"shape":"GetPackageVersionHistoryResponse"}, + "errors":[ + {"shape":"BaseException"}, + {"shape":"InternalException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Returns a list of versions of the package, along with their creation time and commit message.

" + }, "GetUpgradeHistory":{ "name":"GetUpgradeHistory", "http":{ @@ -589,6 +606,24 @@ ], "documentation":"

Modifies the cluster configuration of the specified Elasticsearch domain, setting as setting the instance type and the number of instances.

" }, + "UpdatePackage":{ + "name":"UpdatePackage", + "http":{ + "method":"POST", + "requestUri":"/2015-01-01/packages/update" + }, + "input":{"shape":"UpdatePackageRequest"}, + "output":{"shape":"UpdatePackageResponse"}, + "errors":[ + {"shape":"BaseException"}, + {"shape":"InternalException"}, + {"shape":"LimitExceededException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Updates a package for use with Amazon ES domains.

" + }, "UpgradeElasticsearchDomain":{ "name":"UpgradeElasticsearchDomain", "http":{ @@ -894,6 +929,10 @@ }, "documentation":"

Status of the Cognito options for the specified Elasticsearch domain.

" }, + "CommitMessage":{ + "type":"string", + "max":160 + }, "CompatibleElasticsearchVersionsList":{ "type":"list", "member":{"shape":"CompatibleVersionsMap"} @@ -1652,6 +1691,7 @@ "shape":"DomainPackageStatus", "documentation":"

State of the association. Values are ASSOCIATING/ASSOCIATION_FAILED/ACTIVE/DISSOCIATING/DISSOCIATION_FAILED.

" }, + "PackageVersion":{"shape":"PackageVersion"}, "ReferencePath":{ "shape":"ReferencePath", "documentation":"

The relative path on Amazon ES nodes, which can be used as synonym_path when the package is synonym file.

" @@ -2134,6 +2174,43 @@ }, "documentation":"

Container for response returned by GetCompatibleElasticsearchVersions operation.

" }, + "GetPackageVersionHistoryRequest":{ + "type":"structure", + "required":["PackageID"], + "members":{ + "PackageID":{ + "shape":"PackageID", + "documentation":"

Returns an audit history of versions of the package.

", + "location":"uri", + "locationName":"PackageID" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

Limits results to a maximum number of versions.

", + "location":"querystring", + "locationName":"maxResults" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

Used for pagination. Only necessary if a previous API call includes a non-null NextToken value. If provided, returns results for the next page.

", + "location":"querystring", + "locationName":"nextToken" + } + }, + "documentation":"

Container for request parameters to GetPackageVersionHistory operation.

" + }, + "GetPackageVersionHistoryResponse":{ + "type":"structure", + "members":{ + "PackageID":{"shape":"PackageID"}, + "PackageVersionHistoryList":{ + "shape":"PackageVersionHistoryList", + "documentation":"

List of PackageVersionHistory objects.

" + }, + "NextToken":{"shape":"String"} + }, + "documentation":"

Container for response returned by GetPackageVersionHistory operation.

" + }, "GetUpgradeHistoryRequest":{ "type":"structure", "required":["DomainName"], @@ -2768,6 +2845,8 @@ "shape":"CreatedAt", "documentation":"

Timestamp which tells creation date of the package.

" }, + "LastUpdatedAt":{"shape":"LastUpdated"}, + "AvailablePackageVersion":{"shape":"PackageVersion"}, "ErrorDetails":{ "shape":"ErrorDetails", "documentation":"

Additional information if the package is in an error state. Null otherwise.

" @@ -2817,6 +2896,29 @@ "type":"string", "enum":["TXT-DICTIONARY"] }, + "PackageVersion":{"type":"string"}, + "PackageVersionHistory":{ + "type":"structure", + "members":{ + "PackageVersion":{ + "shape":"PackageVersion", + "documentation":"

Version of the package.

" + }, + "CommitMessage":{ + "shape":"CommitMessage", + "documentation":"

A message associated with the version.

" + }, + "CreatedAt":{ + "shape":"CreatedAt", + "documentation":"

Timestamp which tells creation time of the package version.

" + } + }, + "documentation":"

Details of a package version.

" + }, + "PackageVersionHistoryList":{ + "type":"list", + "member":{"shape":"PackageVersionHistory"} + }, "Password":{ "type":"string", "min":8, @@ -3404,6 +3506,39 @@ }, "documentation":"

The result of an UpdateElasticsearchDomain request. Contains the status of the Elasticsearch domain being updated.

" }, + "UpdatePackageRequest":{ + "type":"structure", + "required":[ + "PackageID", + "PackageSource" + ], + "members":{ + "PackageID":{ + "shape":"PackageID", + "documentation":"

Unique identifier for the package.

" + }, + "PackageSource":{"shape":"PackageSource"}, + "PackageDescription":{ + "shape":"PackageDescription", + "documentation":"

New description of the package.

" + }, + "CommitMessage":{ + "shape":"CommitMessage", + "documentation":"

An info message for the new version which will be shown as part of GetPackageVersionHistoryResponse.

" + } + }, + "documentation":"

Container for request parameters to UpdatePackage operation.

" + }, + "UpdatePackageResponse":{ + "type":"structure", + "members":{ + "PackageDetails":{ + "shape":"PackageDetails", + "documentation":"

Information about the package PackageDetails.

" + } + }, + "documentation":"

Container for response returned by UpdatePackage operation.

" + }, "UpdateTimestamp":{"type":"timestamp"}, "UpgradeElasticsearchDomainRequest":{ "type":"structure", From 2089af54361dabb7be801859e94b591d55d979df Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 9 Nov 2020 17:10:32 +0000 Subject: [PATCH 157/339] AWS Storage Gateway Update: Added bandwidth rate limit schedule for Tape and Volume Gateways --- .../feature-AWSStorageGateway-7f9e412.json | 6 + .../codegen-resources/paginators-1.json | 6 + .../codegen-resources/service-2.json | 118 ++++++++++++++++++ 3 files changed, 130 insertions(+) create mode 100644 .changes/next-release/feature-AWSStorageGateway-7f9e412.json diff --git a/.changes/next-release/feature-AWSStorageGateway-7f9e412.json b/.changes/next-release/feature-AWSStorageGateway-7f9e412.json new file mode 100644 index 000000000000..30ae3de62946 --- /dev/null +++ b/.changes/next-release/feature-AWSStorageGateway-7f9e412.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Storage Gateway", + "contributor": "", + "description": "Added bandwidth rate limit schedule for Tape and Volume Gateways" +} diff --git a/services/storagegateway/src/main/resources/codegen-resources/paginators-1.json b/services/storagegateway/src/main/resources/codegen-resources/paginators-1.json index 78ba8622c246..921dfb4f541d 100644 --- a/services/storagegateway/src/main/resources/codegen-resources/paginators-1.json +++ b/services/storagegateway/src/main/resources/codegen-resources/paginators-1.json @@ -57,6 +57,12 @@ "output_token": "Marker", "result_key": "Tags" }, + "ListTapePools": { + "input_token": "Marker", + "limit_key": "Limit", + "output_token": "Marker", + "result_key": "PoolInfos" + }, "ListTapes": { "input_token": "Marker", "limit_key": "Limit", diff --git a/services/storagegateway/src/main/resources/codegen-resources/service-2.json b/services/storagegateway/src/main/resources/codegen-resources/service-2.json index 24663ef93b4d..1b32f80415cb 100644 --- a/services/storagegateway/src/main/resources/codegen-resources/service-2.json +++ b/services/storagegateway/src/main/resources/codegen-resources/service-2.json @@ -434,6 +434,20 @@ ], "documentation":"

Returns the bandwidth rate limits of a gateway. By default, these limits are not set, which means no bandwidth rate limiting is in effect. This operation is supported for the stored volume, cached volume, and tape gateway types.

This operation only returns a value for a bandwidth rate limit only if the limit is set. If no limits are set for the gateway, then this operation returns only the gateway ARN in the response body. To specify which gateway to describe, use the Amazon Resource Name (ARN) of the gateway in your request.

" }, + "DescribeBandwidthRateLimitSchedule":{ + "name":"DescribeBandwidthRateLimitSchedule", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeBandwidthRateLimitScheduleInput"}, + "output":{"shape":"DescribeBandwidthRateLimitScheduleOutput"}, + "errors":[ + {"shape":"InvalidGatewayRequestException"}, + {"shape":"InternalServerError"} + ], + "documentation":"

Returns information about the bandwidth rate limit schedule of a gateway. By default, gateways do not have bandwidth rate limit schedules, which means no bandwidth rate limiting is in effect. This operation is supported only in the volume and tape gateway types.

This operation returns information about a gateway's bandwidth rate limit schedule. A bandwidth rate limit schedule consists of one or more bandwidth rate limit intervals. A bandwidth rate limit interval defines a period of time on one or more days of the week, during which bandwidth rate limits are specified for uploading, downloading, or both.

A bandwidth rate limit interval consists of one or more days of the week, a start hour and minute, an ending hour and minute, and bandwidth rate limits for uploading and downloading

If no bandwidth rate limit schedule intervals are set for the gateway, this operation returns an empty response. To specify which gateway to describe, use the Amazon Resource Name (ARN) of the gateway in your request.

" + }, "DescribeCache":{ "name":"DescribeCache", "http":{ @@ -1022,6 +1036,20 @@ ], "documentation":"

Updates the bandwidth rate limits of a gateway. You can update both the upload and download bandwidth rate limit or specify only one of the two. If you don't set a bandwidth rate limit, the existing rate limit remains. This operation is supported for the stored volume, cached volume, and tape gateway types.

By default, a gateway's bandwidth rate limits are not set. If you don't set any limit, the gateway does not have any limitations on its bandwidth usage and could potentially use the maximum available bandwidth.

To specify which gateway to update, use the Amazon Resource Name (ARN) of the gateway in your request.

" }, + "UpdateBandwidthRateLimitSchedule":{ + "name":"UpdateBandwidthRateLimitSchedule", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateBandwidthRateLimitScheduleInput"}, + "output":{"shape":"UpdateBandwidthRateLimitScheduleOutput"}, + "errors":[ + {"shape":"InvalidGatewayRequestException"}, + {"shape":"InternalServerError"} + ], + "documentation":"

Updates the bandwidth rate limit schedule for a specified gateway. By default, gateways do not have bandwidth rate limit schedules, which means no bandwidth rate limiting is in effect. Use this to initiate or update a gateway's bandwidth rate limit schedule. This operation is supported in the volume and tape gateway types.

" + }, "UpdateChapCredentials":{ "name":"UpdateChapCredentials", "http":{ @@ -1472,6 +1500,53 @@ "type":"long", "min":102400 }, + "BandwidthRateLimitInterval":{ + "type":"structure", + "required":[ + "StartHourOfDay", + "StartMinuteOfHour", + "EndHourOfDay", + "EndMinuteOfHour", + "DaysOfWeek" + ], + "members":{ + "StartHourOfDay":{ + "shape":"HourOfDay", + "documentation":"

The hour of the day to start the bandwidth rate limit interval.

" + }, + "StartMinuteOfHour":{ + "shape":"MinuteOfHour", + "documentation":"

The minute of the hour to start the bandwidth rate limit interval. The interval begins at the start of that minute. To begin an interval exactly at the start of the hour, use the value 0.

" + }, + "EndHourOfDay":{ + "shape":"HourOfDay", + "documentation":"

The hour of the day to end the bandwidth rate limit interval.

" + }, + "EndMinuteOfHour":{ + "shape":"MinuteOfHour", + "documentation":"

The minute of the hour to end the bandwidth rate limit interval.

The bandwidth rate limit interval ends at the end of the minute. To end an interval at the end of an hour, use the value 59.

" + }, + "DaysOfWeek":{ + "shape":"DaysOfWeek", + "documentation":"

The days of the week component of the bandwidth rate limit interval, represented as ordinal numbers from 0 to 6, where 0 represents Sunday and 6 Saturday.

" + }, + "AverageUploadRateLimitInBitsPerSec":{ + "shape":"BandwidthUploadRateLimit", + "documentation":"

The average upload rate limit component of the bandwidth rate limit interval, in bits per second. This field does not appear in the response if the upload rate limit is not set.

" + }, + "AverageDownloadRateLimitInBitsPerSec":{ + "shape":"BandwidthDownloadRateLimit", + "documentation":"

The average download rate limit component of the bandwidth rate limit interval, in bits per second. This field does not appear in the response if the download rate limit is not set.

" + } + }, + "documentation":"

Describes a bandwidth rate limit interval for a gateway. A bandwidth rate limit schedule consists of one or more bandwidth rate limit intervals. A bandwidth rate limit interval defines a period of time on one or more days of the week, during which bandwidth rate limits are specified for uploading, downloading, or both.

" + }, + "BandwidthRateLimitIntervals":{ + "type":"list", + "member":{"shape":"BandwidthRateLimitInterval"}, + "max":20, + "min":0 + }, "BandwidthType":{ "type":"string", "max":25, @@ -2223,6 +2298,12 @@ "max":6, "min":0 }, + "DaysOfWeek":{ + "type":"list", + "member":{"shape":"DayOfWeek"}, + "max":7, + "min":1 + }, "DeleteAutomaticTapeCreationPolicyInput":{ "type":"structure", "required":["GatewayARN"], @@ -2495,6 +2576,23 @@ }, "documentation":"

A JSON object containing the following fields:

" }, + "DescribeBandwidthRateLimitScheduleInput":{ + "type":"structure", + "required":["GatewayARN"], + "members":{ + "GatewayARN":{"shape":"GatewayARN"} + } + }, + "DescribeBandwidthRateLimitScheduleOutput":{ + "type":"structure", + "members":{ + "GatewayARN":{"shape":"GatewayARN"}, + "BandwidthRateLimitIntervals":{ + "shape":"BandwidthRateLimitIntervals", + "documentation":"

An array that contains the bandwidth rate limit intervals for a tape or volume gateway.

" + } + } + }, "DescribeCacheInput":{ "type":"structure", "required":["GatewayARN"], @@ -4860,6 +4958,26 @@ }, "documentation":"

A JSON object containing the Amazon Resource Name (ARN) of the gateway whose throttle information was updated.

" }, + "UpdateBandwidthRateLimitScheduleInput":{ + "type":"structure", + "required":[ + "GatewayARN", + "BandwidthRateLimitIntervals" + ], + "members":{ + "GatewayARN":{"shape":"GatewayARN"}, + "BandwidthRateLimitIntervals":{ + "shape":"BandwidthRateLimitIntervals", + "documentation":"

An array containing bandwidth rate limit schedule intervals for a gateway. When no bandwidth rate limit intervals have been scheduled, the array is empty.

" + } + } + }, + "UpdateBandwidthRateLimitScheduleOutput":{ + "type":"structure", + "members":{ + "GatewayARN":{"shape":"GatewayARN"} + } + }, "UpdateChapCredentialsInput":{ "type":"structure", "required":[ From cab2fc0ec7e8d52df8282e6a3e29a4eb5ce2666e Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 9 Nov 2020 17:10:32 +0000 Subject: [PATCH 158/339] Amazon DynamoDB Update: This release adds supports for exporting Amazon DynamoDB table data to Amazon S3 to perform analytics at any scale. --- .../feature-AmazonDynamoDB-86ea39f.json | 6 + .../dynamodb/paginators-1.json | 5 + .../codegen-resources/dynamodb/service-2.json | 329 +++++++++++++++++- 3 files changed, 339 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AmazonDynamoDB-86ea39f.json diff --git a/.changes/next-release/feature-AmazonDynamoDB-86ea39f.json b/.changes/next-release/feature-AmazonDynamoDB-86ea39f.json new file mode 100644 index 000000000000..8d3181c4026f --- /dev/null +++ b/.changes/next-release/feature-AmazonDynamoDB-86ea39f.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon DynamoDB", + "contributor": "", + "description": "This release adds supports for exporting Amazon DynamoDB table data to Amazon S3 to perform analytics at any scale." +} diff --git a/services/dynamodb/src/main/resources/codegen-resources/dynamodb/paginators-1.json b/services/dynamodb/src/main/resources/codegen-resources/dynamodb/paginators-1.json index ab2d5c8c08f4..69fadc92a5e4 100755 --- a/services/dynamodb/src/main/resources/codegen-resources/dynamodb/paginators-1.json +++ b/services/dynamodb/src/main/resources/codegen-resources/dynamodb/paginators-1.json @@ -9,6 +9,11 @@ "limit_key": "MaxResults", "output_token": "NextToken" }, + "ListExports": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken" + }, "ListTables": { "input_token": "ExclusiveStartTableName", "limit_key": "Limit", diff --git a/services/dynamodb/src/main/resources/codegen-resources/dynamodb/service-2.json b/services/dynamodb/src/main/resources/codegen-resources/dynamodb/service-2.json index cfaf34c7ecb0..9b4eeec1326b 100755 --- a/services/dynamodb/src/main/resources/codegen-resources/dynamodb/service-2.json +++ b/services/dynamodb/src/main/resources/codegen-resources/dynamodb/service-2.json @@ -219,6 +219,21 @@ "documentation":"

Returns the regional endpoint information.

", "endpointoperation":true }, + "DescribeExport":{ + "name":"DescribeExport", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeExportInput"}, + "output":{"shape":"DescribeExportOutput"}, + "errors":[ + {"shape":"ExportNotFoundException"}, + {"shape":"LimitExceededException"}, + {"shape":"InternalServerError"} + ], + "documentation":"

Describes an existing table export.

" + }, "DescribeGlobalTable":{ "name":"DescribeGlobalTable", "http":{ @@ -312,6 +327,24 @@ "endpointdiscovery":{ } }, + "ExportTableToPointInTime":{ + "name":"ExportTableToPointInTime", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ExportTableToPointInTimeInput"}, + "output":{"shape":"ExportTableToPointInTimeOutput"}, + "errors":[ + {"shape":"TableNotFoundException"}, + {"shape":"PointInTimeRecoveryUnavailableException"}, + {"shape":"LimitExceededException"}, + {"shape":"InvalidExportTimeException"}, + {"shape":"ExportConflictException"}, + {"shape":"InternalServerError"} + ], + "documentation":"

Exports table data to an S3 bucket. The table must have point in time recovery enabled, and you can export data from any time within the point in time recovery window.

" + }, "GetItem":{ "name":"GetItem", "http":{ @@ -359,6 +392,20 @@ ], "documentation":"

Returns a list of ContributorInsightsSummary for a table and all its global secondary indexes.

" }, + "ListExports":{ + "name":"ListExports", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListExportsInput"}, + "output":{"shape":"ListExportsOutput"}, + "errors":[ + {"shape":"LimitExceededException"}, + {"shape":"InternalServerError"} + ], + "documentation":"

Lists completed exports within the past 90 days.

" + }, "ListGlobalTables":{ "name":"ListGlobalTables", "http":{ @@ -1252,6 +1299,10 @@ "max":25, "min":1 }, + "BilledSizeBytes":{ + "type":"long", + "min":0 + }, "BillingMode":{ "type":"string", "enum":[ @@ -1327,6 +1378,7 @@ "max":36, "min":1 }, + "ClientToken":{"type":"string"}, "Code":{"type":"string"}, "ComparisonOperator":{ "type":"string", @@ -1530,7 +1582,7 @@ "documentation":"

Describes the current status for contributor insights for the given table and index, if applicable.

" } }, - "documentation":"

Represents a Contributor Insights summary entry..

" + "documentation":"

Represents a Contributor Insights summary entry.

" }, "CreateBackupInput":{ "type":"structure", @@ -1986,6 +2038,25 @@ } } }, + "DescribeExportInput":{ + "type":"structure", + "required":["ExportArn"], + "members":{ + "ExportArn":{ + "shape":"ExportArn", + "documentation":"

The Amazon Resource Name (ARN) associated with the export.

" + } + } + }, + "DescribeExportOutput":{ + "type":"structure", + "members":{ + "ExportDescription":{ + "shape":"ExportDescription", + "documentation":"

Represents the properties of the export.

" + } + } + }, "DescribeGlobalTableInput":{ "type":"structure", "required":["GlobalTableName"], @@ -2168,6 +2239,202 @@ }, "documentation":"

Represents a condition to be compared with an attribute value. This condition can be used with DeleteItem, PutItem, or UpdateItem operations; if the comparison evaluates to true, the operation succeeds; if not, the operation fails. You can use ExpectedAttributeValue in one of two different ways:

  • Use AttributeValueList to specify one or more values to compare against an attribute. Use ComparisonOperator to specify how you want to perform the comparison. If the comparison evaluates to true, then the conditional operation succeeds.

  • Use Value to specify a value that DynamoDB will compare against an attribute. If the values match, then ExpectedAttributeValue evaluates to true and the conditional operation succeeds. Optionally, you can also set Exists to false, indicating that you do not expect to find the attribute value in the table. In this case, the conditional operation succeeds only if the comparison evaluates to false.

Value and Exists are incompatible with AttributeValueList and ComparisonOperator. Note that if you use both sets of parameters at once, DynamoDB will return a ValidationException exception.

" }, + "ExportArn":{ + "type":"string", + "max":1024, + "min":37 + }, + "ExportConflictException":{ + "type":"structure", + "members":{ + "message":{"shape":"ErrorMessage"} + }, + "documentation":"

There was a conflict when writing to the specified S3 bucket.

", + "exception":true + }, + "ExportDescription":{ + "type":"structure", + "members":{ + "ExportArn":{ + "shape":"ExportArn", + "documentation":"

The Amazon Resource Name (ARN) of the table export.

" + }, + "ExportStatus":{ + "shape":"ExportStatus", + "documentation":"

Export can be in one of the following states: IN_PROGRESS, COMPLETED, or FAILED.

" + }, + "StartTime":{ + "shape":"ExportStartTime", + "documentation":"

The time at which the export task began.

" + }, + "EndTime":{ + "shape":"ExportEndTime", + "documentation":"

The time at which the export task completed.

" + }, + "ExportManifest":{ + "shape":"ExportManifest", + "documentation":"

The name of the manifest file for the export task.

" + }, + "TableArn":{ + "shape":"TableArn", + "documentation":"

The Amazon Resource Name (ARN) of the table that was exported.

" + }, + "TableId":{ + "shape":"TableId", + "documentation":"

Unique ID of the table that was exported.

" + }, + "ExportTime":{ + "shape":"ExportTime", + "documentation":"

Point in time from which table data was exported.

" + }, + "ClientToken":{ + "shape":"ClientToken", + "documentation":"

The client token that was provided for the export task. A client token makes calls to ExportTableToPointInTimeInput idempotent, meaning that multiple identical calls have the same effect as one single call.

" + }, + "S3Bucket":{ + "shape":"S3Bucket", + "documentation":"

The name of the Amazon S3 bucket containing the export.

" + }, + "S3BucketOwner":{ + "shape":"S3BucketOwner", + "documentation":"

The ID of the AWS account that owns the bucket containing the export.

" + }, + "S3Prefix":{ + "shape":"S3Prefix", + "documentation":"

The Amazon S3 bucket prefix used as the file name and path of the exported snapshot.

" + }, + "S3SseAlgorithm":{ + "shape":"S3SseAlgorithm", + "documentation":"

Type of encryption used on the bucket where export data is stored. Valid values for S3SseAlgorithm are:

  • AES256 - server-side encryption with Amazon S3 managed keys

  • KMS - server-side encryption with AWS KMS managed keys

" + }, + "S3SseKmsKeyId":{ + "shape":"S3SseKmsKeyId", + "documentation":"

The ID of the AWS KMS managed key used to encrypt the S3 bucket where export data is stored (if applicable).

" + }, + "FailureCode":{ + "shape":"FailureCode", + "documentation":"

Status code for the result of the failed export.

" + }, + "FailureMessage":{ + "shape":"FailureMessage", + "documentation":"

Export failure reason description.

" + }, + "ExportFormat":{ + "shape":"ExportFormat", + "documentation":"

The format of the exported data. Valid values for ExportFormat are DYNAMODB_JSON or ION.

" + }, + "BilledSizeBytes":{ + "shape":"BilledSizeBytes", + "documentation":"

The billable size of the table export.

" + }, + "ItemCount":{ + "shape":"ItemCount", + "documentation":"

The number of items exported.

" + } + }, + "documentation":"

Represents the properties of the exported table.

" + }, + "ExportEndTime":{"type":"timestamp"}, + "ExportFormat":{ + "type":"string", + "enum":[ + "DYNAMODB_JSON", + "ION" + ] + }, + "ExportManifest":{"type":"string"}, + "ExportNextToken":{"type":"string"}, + "ExportNotFoundException":{ + "type":"structure", + "members":{ + "message":{"shape":"ErrorMessage"} + }, + "documentation":"

The specified export was not found.

", + "exception":true + }, + "ExportStartTime":{"type":"timestamp"}, + "ExportStatus":{ + "type":"string", + "enum":[ + "IN_PROGRESS", + "COMPLETED", + "FAILED" + ] + }, + "ExportSummaries":{ + "type":"list", + "member":{"shape":"ExportSummary"} + }, + "ExportSummary":{ + "type":"structure", + "members":{ + "ExportArn":{ + "shape":"ExportArn", + "documentation":"

The Amazon Resource Name (ARN) of the export.

" + }, + "ExportStatus":{ + "shape":"ExportStatus", + "documentation":"

Export can be in one of the following states: IN_PROGRESS, COMPLETED, or FAILED.

" + } + }, + "documentation":"

Summary information about an export task.

" + }, + "ExportTableToPointInTimeInput":{ + "type":"structure", + "required":[ + "TableArn", + "S3Bucket" + ], + "members":{ + "TableArn":{ + "shape":"TableArn", + "documentation":"

The Amazon Resource Name (ARN) associated with the table to export.

" + }, + "ExportTime":{ + "shape":"ExportTime", + "documentation":"

Time in the past from which to export table data. The table export will be a snapshot of the table's state at this point in time.

" + }, + "ClientToken":{ + "shape":"ClientToken", + "documentation":"

Providing a ClientToken makes the call to ExportTableToPointInTimeInput idempotent, meaning that multiple identical calls have the same effect as one single call.

A client token is valid for 8 hours after the first request that uses it is completed. After 8 hours, any request with the same client token is treated as a new request. Do not resubmit the same request with the same client token for more than 8 hours, or the result might not be idempotent.

If you submit a request with the same client token but a change in other parameters within the 8-hour idempotency window, DynamoDB returns an IdempotentParameterMismatch exception.

", + "idempotencyToken":true + }, + "S3Bucket":{ + "shape":"S3Bucket", + "documentation":"

The name of the Amazon S3 bucket to export the snapshot to.

" + }, + "S3BucketOwner":{ + "shape":"S3BucketOwner", + "documentation":"

The ID of the AWS account that owns the bucket the export will be stored in.

" + }, + "S3Prefix":{ + "shape":"S3Prefix", + "documentation":"

The Amazon S3 bucket prefix to use as the file name and path of the exported snapshot.

" + }, + "S3SseAlgorithm":{ + "shape":"S3SseAlgorithm", + "documentation":"

Type of encryption used on the bucket where export data will be stored. Valid values for S3SseAlgorithm are:

  • AES256 - server-side encryption with Amazon S3 managed keys

  • KMS - server-side encryption with AWS KMS managed keys

" + }, + "S3SseKmsKeyId":{ + "shape":"S3SseKmsKeyId", + "documentation":"

The ID of the AWS KMS managed key used to encrypt the S3 bucket where export data will be stored (if applicable).

" + }, + "ExportFormat":{ + "shape":"ExportFormat", + "documentation":"

The format for the exported data. Valid values for ExportFormat are DYNAMODB_JSON or ION.

" + } + } + }, + "ExportTableToPointInTimeOutput":{ + "type":"structure", + "members":{ + "ExportDescription":{ + "shape":"ExportDescription", + "documentation":"

Contains a description of the table export.

" + } + } + }, + "ExportTime":{"type":"timestamp"}, "ExpressionAttributeNameMap":{ "type":"map", "key":{"shape":"ExpressionAttributeNameVariable"}, @@ -2180,6 +2447,7 @@ "value":{"shape":"AttributeValue"} }, "ExpressionAttributeValueVariable":{"type":"string"}, + "FailureCode":{"type":"string"}, "FailureException":{ "type":"structure", "members":{ @@ -2194,6 +2462,7 @@ }, "documentation":"

Represents a failure a contributor insights operation.

" }, + "FailureMessage":{"type":"string"}, "FilterConditionMap":{ "type":"map", "key":{"shape":"AttributeName"}, @@ -2555,6 +2824,14 @@ "exception":true, "fault":true }, + "InvalidExportTimeException":{ + "type":"structure", + "members":{ + "message":{"shape":"ErrorMessage"} + }, + "documentation":"

The specified ExportTime is outside of the point in time recovery window.

", + "exception":true + }, "InvalidRestoreTimeException":{ "type":"structure", "members":{ @@ -2805,6 +3082,41 @@ } } }, + "ListExportsInput":{ + "type":"structure", + "members":{ + "TableArn":{ + "shape":"TableArn", + "documentation":"

The Amazon Resource Name (ARN) associated with the exported table.

" + }, + "MaxResults":{ + "shape":"ListExportsMaxLimit", + "documentation":"

Maximum number of results to return per page.

" + }, + "NextToken":{ + "shape":"ExportNextToken", + "documentation":"

An optional string that, if supplied, must be copied from the output of a previous call to ListExports. When provided in this manner, the API fetches the next page of results.

" + } + } + }, + "ListExportsMaxLimit":{ + "type":"integer", + "max":25, + "min":1 + }, + "ListExportsOutput":{ + "type":"structure", + "members":{ + "ExportSummaries":{ + "shape":"ExportSummaries", + "documentation":"

A list of ExportSummary objects.

" + }, + "NextToken":{ + "shape":"ExportNextToken", + "documentation":"

If this value is returned, there are additional results to be displayed. To retrieve them, call ListExports again, with NextToken set to this value.

" + } + } + }, "ListGlobalTablesInput":{ "type":"structure", "members":{ @@ -3933,6 +4245,21 @@ "NONE" ] }, + "S3Bucket":{"type":"string"}, + "S3BucketOwner":{"type":"string"}, + "S3Prefix":{"type":"string"}, + "S3SseAlgorithm":{ + "type":"string", + "enum":[ + "AES256", + "KMS" + ] + }, + "S3SseKmsKeyId":{ + "type":"string", + "max":2048, + "min":1 + }, "SSEDescription":{ "type":"structure", "members":{ From 7d07d6857c5a921ee50c554ff4930d53ee7956d3 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 9 Nov 2020 17:12:33 +0000 Subject: [PATCH 159/339] Release 2.15.24. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.24.json | 66 +++++++++++++++++++ .../feature-AWSDataSync-7dec29a.json | 6 -- .../feature-AWSIoTAnalytics-fb34c2e.json | 6 -- .../feature-AWSStorageGateway-7f9e412.json | 6 -- .../feature-AmazonDynamoDB-86ea39f.json | 6 -- ...ure-AmazonEC2ContainerService-d2a417c.json | 6 -- ...re-AmazonElasticsearchService-805abcd.json | 6 -- .../feature-AmazonFSx-907dfd6.json | 6 -- .../feature-AmazonMacie2-f96feab.json | 6 -- ...re-AmazonSimpleStorageService-09d20af.json | 6 -- ...AmazonSimpleSystemsManagerSSM-9f1e206.json | 6 -- CHANGELOG.md | 41 ++++++++++++ README.md | 8 +-- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- .../serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 293 files changed, 391 insertions(+), 344 deletions(-) create mode 100644 .changes/2.15.24.json delete mode 100644 .changes/next-release/feature-AWSDataSync-7dec29a.json delete mode 100644 .changes/next-release/feature-AWSIoTAnalytics-fb34c2e.json delete mode 100644 .changes/next-release/feature-AWSStorageGateway-7f9e412.json delete mode 100644 .changes/next-release/feature-AmazonDynamoDB-86ea39f.json delete mode 100644 .changes/next-release/feature-AmazonEC2ContainerService-d2a417c.json delete mode 100644 .changes/next-release/feature-AmazonElasticsearchService-805abcd.json delete mode 100644 .changes/next-release/feature-AmazonFSx-907dfd6.json delete mode 100644 .changes/next-release/feature-AmazonMacie2-f96feab.json delete mode 100644 .changes/next-release/feature-AmazonSimpleStorageService-09d20af.json delete mode 100644 .changes/next-release/feature-AmazonSimpleSystemsManagerSSM-9f1e206.json diff --git a/.changes/2.15.24.json b/.changes/2.15.24.json new file mode 100644 index 000000000000..47b0cda8e15c --- /dev/null +++ b/.changes/2.15.24.json @@ -0,0 +1,66 @@ +{ + "version": "2.15.24", + "date": "2020-11-09", + "entries": [ + { + "type": "feature", + "category": "Amazon Elasticsearch Service", + "contributor": "", + "description": "Adding support for package versioning in Amazon Elasticsearch Service" + }, + { + "type": "feature", + "category": "AWS Storage Gateway", + "contributor": "", + "description": "Added bandwidth rate limit schedule for Tape and Volume Gateways" + }, + { + "type": "feature", + "category": "Amazon DynamoDB", + "contributor": "", + "description": "This release adds supports for exporting Amazon DynamoDB table data to Amazon S3 to perform analytics at any scale." + }, + { + "type": "feature", + "category": "AWS DataSync", + "contributor": "", + "description": "DataSync now enables customers to adjust the network bandwidth used by a running AWS DataSync task." + }, + { + "type": "feature", + "category": "Amazon Simple Storage Service", + "contributor": "", + "description": "S3 Intelligent-Tiering adds support for Archive and Deep Archive Access tiers; S3 Replication adds replication metrics and failure notifications, brings feature parity for delete marker replication" + }, + { + "type": "feature", + "category": "Amazon FSx", + "contributor": "", + "description": "This release adds support for creating DNS aliases for Amazon FSx for Windows File Server, and using AWS Backup to automate scheduled, policy-driven backup plans for Amazon FSx file systems." + }, + { + "type": "feature", + "category": "Amazon Simple Systems Manager (SSM)", + "contributor": "", + "description": "add a new filter to allow customer to filter automation executions by using resource-group which used for execute automation" + }, + { + "type": "feature", + "category": "AWS IoT Analytics", + "contributor": "", + "description": "AWS IoT Analytics now supports Late Data Notifications for datasets, dataset content creation using previous version IDs, and includes the LastMessageArrivalTime attribute for channels and datastores." + }, + { + "type": "feature", + "category": "Amazon EC2 Container Service", + "contributor": "", + "description": "This release provides native support for specifying Amazon FSx for Windows File Server file systems as volumes in your Amazon ECS task definitions." + }, + { + "type": "feature", + "category": "Amazon Macie 2", + "contributor": "", + "description": "Sensitive data findings in Amazon Macie now include enhanced location data for Apache Avro object containers and Apache Parquet files." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSDataSync-7dec29a.json b/.changes/next-release/feature-AWSDataSync-7dec29a.json deleted file mode 100644 index 0549d9c10706..000000000000 --- a/.changes/next-release/feature-AWSDataSync-7dec29a.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS DataSync", - "contributor": "", - "description": "DataSync now enables customers to adjust the network bandwidth used by a running AWS DataSync task." -} diff --git a/.changes/next-release/feature-AWSIoTAnalytics-fb34c2e.json b/.changes/next-release/feature-AWSIoTAnalytics-fb34c2e.json deleted file mode 100644 index deb2084a7dab..000000000000 --- a/.changes/next-release/feature-AWSIoTAnalytics-fb34c2e.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS IoT Analytics", - "contributor": "", - "description": "AWS IoT Analytics now supports Late Data Notifications for datasets, dataset content creation using previous version IDs, and includes the LastMessageArrivalTime attribute for channels and datastores." -} diff --git a/.changes/next-release/feature-AWSStorageGateway-7f9e412.json b/.changes/next-release/feature-AWSStorageGateway-7f9e412.json deleted file mode 100644 index 30ae3de62946..000000000000 --- a/.changes/next-release/feature-AWSStorageGateway-7f9e412.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Storage Gateway", - "contributor": "", - "description": "Added bandwidth rate limit schedule for Tape and Volume Gateways" -} diff --git a/.changes/next-release/feature-AmazonDynamoDB-86ea39f.json b/.changes/next-release/feature-AmazonDynamoDB-86ea39f.json deleted file mode 100644 index 8d3181c4026f..000000000000 --- a/.changes/next-release/feature-AmazonDynamoDB-86ea39f.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon DynamoDB", - "contributor": "", - "description": "This release adds supports for exporting Amazon DynamoDB table data to Amazon S3 to perform analytics at any scale." -} diff --git a/.changes/next-release/feature-AmazonEC2ContainerService-d2a417c.json b/.changes/next-release/feature-AmazonEC2ContainerService-d2a417c.json deleted file mode 100644 index bfde68121a41..000000000000 --- a/.changes/next-release/feature-AmazonEC2ContainerService-d2a417c.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon EC2 Container Service", - "contributor": "", - "description": "This release provides native support for specifying Amazon FSx for Windows File Server file systems as volumes in your Amazon ECS task definitions." -} diff --git a/.changes/next-release/feature-AmazonElasticsearchService-805abcd.json b/.changes/next-release/feature-AmazonElasticsearchService-805abcd.json deleted file mode 100644 index 788df38be436..000000000000 --- a/.changes/next-release/feature-AmazonElasticsearchService-805abcd.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Elasticsearch Service", - "contributor": "", - "description": "Adding support for package versioning in Amazon Elasticsearch Service" -} diff --git a/.changes/next-release/feature-AmazonFSx-907dfd6.json b/.changes/next-release/feature-AmazonFSx-907dfd6.json deleted file mode 100644 index 7a04559faaca..000000000000 --- a/.changes/next-release/feature-AmazonFSx-907dfd6.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon FSx", - "contributor": "", - "description": "This release adds support for creating DNS aliases for Amazon FSx for Windows File Server, and using AWS Backup to automate scheduled, policy-driven backup plans for Amazon FSx file systems." -} diff --git a/.changes/next-release/feature-AmazonMacie2-f96feab.json b/.changes/next-release/feature-AmazonMacie2-f96feab.json deleted file mode 100644 index b9ebb985b427..000000000000 --- a/.changes/next-release/feature-AmazonMacie2-f96feab.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Macie 2", - "contributor": "", - "description": "Sensitive data findings in Amazon Macie now include enhanced location data for Apache Avro object containers and Apache Parquet files." -} diff --git a/.changes/next-release/feature-AmazonSimpleStorageService-09d20af.json b/.changes/next-release/feature-AmazonSimpleStorageService-09d20af.json deleted file mode 100644 index 31d15de32a22..000000000000 --- a/.changes/next-release/feature-AmazonSimpleStorageService-09d20af.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Simple Storage Service", - "contributor": "", - "description": "S3 Intelligent-Tiering adds support for Archive and Deep Archive Access tiers; S3 Replication adds replication metrics and failure notifications, brings feature parity for delete marker replication" -} diff --git a/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-9f1e206.json b/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-9f1e206.json deleted file mode 100644 index 8412cee2111c..000000000000 --- a/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-9f1e206.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Simple Systems Manager (SSM)", - "contributor": "", - "description": "add a new filter to allow customer to filter automation executions by using resource-group which used for execute automation" -} diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cae48565ba4..d18d984429d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,44 @@ +# __2.15.24__ __2020-11-09__ +## __AWS DataSync__ + - ### Features + - DataSync now enables customers to adjust the network bandwidth used by a running AWS DataSync task. + +## __AWS IoT Analytics__ + - ### Features + - AWS IoT Analytics now supports Late Data Notifications for datasets, dataset content creation using previous version IDs, and includes the LastMessageArrivalTime attribute for channels and datastores. + +## __AWS Storage Gateway__ + - ### Features + - Added bandwidth rate limit schedule for Tape and Volume Gateways + +## __Amazon DynamoDB__ + - ### Features + - This release adds supports for exporting Amazon DynamoDB table data to Amazon S3 to perform analytics at any scale. + +## __Amazon EC2 Container Service__ + - ### Features + - This release provides native support for specifying Amazon FSx for Windows File Server file systems as volumes in your Amazon ECS task definitions. + +## __Amazon Elasticsearch Service__ + - ### Features + - Adding support for package versioning in Amazon Elasticsearch Service + +## __Amazon FSx__ + - ### Features + - This release adds support for creating DNS aliases for Amazon FSx for Windows File Server, and using AWS Backup to automate scheduled, policy-driven backup plans for Amazon FSx file systems. + +## __Amazon Macie 2__ + - ### Features + - Sensitive data findings in Amazon Macie now include enhanced location data for Apache Avro object containers and Apache Parquet files. + +## __Amazon Simple Storage Service__ + - ### Features + - S3 Intelligent-Tiering adds support for Archive and Deep Archive Access tiers; S3 Replication adds replication metrics and failure notifications, brings feature parity for delete marker replication + +## __Amazon Simple Systems Manager (SSM)__ + - ### Features + - add a new filter to allow customer to filter automation executions by using resource-group which used for execute automation + # __2.15.23__ __2020-11-06__ ## __AWS Elemental MediaLive__ - ### Features diff --git a/README.md b/README.md index e1daa628b663..82b643051fa8 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.23 + 2.15.24 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.23 + 2.15.24 software.amazon.awssdk s3 - 2.15.23 + 2.15.24 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.23 + 2.15.24 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 986fc00b4aef..95ae02589044 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index f1f377e6f670..9df3f89d382d 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 07658fc037b1..028dba8cd41f 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.15.24-SNAPSHOT + 2.15.24 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index a635a59ff457..48932fa2df05 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index fb987414bac7..db9a16b94f39 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.24-SNAPSHOT + 2.15.24 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 36bfbe73aade..715a41507202 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.24-SNAPSHOT + 2.15.24 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index b3221c7e37fd..1a6798e20a61 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.15.24-SNAPSHOT + 2.15.24 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 723c95baddf0..5d7cc53c042d 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.24-SNAPSHOT + 2.15.24 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 0681f468237d..f00b1ee5f4a6 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.15.24-SNAPSHOT + 2.15.24 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index aea92a05db0d..d41ee2a1b696 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.24-SNAPSHOT + 2.15.24 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index dd3832c9ee91..1ecb447704a6 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index c8cadd3ebbbd..a5f8bbdd2e67 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index f80bfc5a2dac..b59431bedd96 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.24-SNAPSHOT + 2.15.24 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 95c8b7945c28..0553eb39d8b8 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.24-SNAPSHOT + 2.15.24 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 9cd1532d5a8d..60ab498474c0 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 3de7f2c3c304..3b8235e871a1 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 056d55b2b162..3fde2786bb43 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.24-SNAPSHOT + 2.15.24 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 441c781afab8..8909a3531fdc 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.15.24-SNAPSHOT + 2.15.24 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index fdfe21689c9d..0cc8899fc62c 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 06ae5baf5360..61bed627c34d 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.15.24-SNAPSHOT + 2.15.24 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 9e17aab9a9bc..a1dd0ea38bf5 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.15.24-SNAPSHOT + 2.15.24 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 22c956ffe585..b2e288fa7704 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.15.24-SNAPSHOT + 2.15.24 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 93d2d5b0f0fb..b0d703000adf 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index c2beadd933c5..9d71bac266fa 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 8ca25317dfec..eb6a6651c55d 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.24-SNAPSHOT + 2.15.24 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 64dd2f654896..ee8eb353822e 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.24-SNAPSHOT + 2.15.24 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 89d47797c027..c5900be6f448 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.15.24-SNAPSHOT + 2.15.24 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 feb27e8584c2..a1f3995e2439 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.15.24-SNAPSHOT + 2.15.24 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 3bb99eb1a92f..1b98977512e2 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.15.24-SNAPSHOT + 2.15.24 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index b2391e856793..073988482fd5 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.15.24-SNAPSHOT + 2.15.24 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index fe86242a9012..42ab6eaf6220 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 64b396ab54f4..687c54befe09 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.15.24-SNAPSHOT + 2.15.24 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index e6b41694d217..3679faeebc49 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.15.24-SNAPSHOT + 2.15.24 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 7b668e1cf8de..e8c9ad696636 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.24-SNAPSHOT + 2.15.24 metric-publishers diff --git a/pom.xml b/pom.xml index db917dbaba5b..89a5d1909c48 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.24-SNAPSHOT + 2.15.24 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 6fcc728fa12c..5f1395f9f843 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.24-SNAPSHOT + 2.15.24 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 346017773cd7..2a97172f1b63 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.15.24-SNAPSHOT + 2.15.24 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 5c02eb37c6cf..73551c549787 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.24-SNAPSHOT + 2.15.24 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 7937b6dcb5a5..55f9657eecc1 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index c020b34b4fc4..f5f262a29912 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index be0e58c41f06..63e10a05111a 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 168e6c9ab8fd..31f57a95d35a 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 49ef994e7be0..aa3b2fa679e1 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index e152bf07b99c..09320ab6c58a 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 5dbbf7f52b19..a900ba635aff 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 17205e6ab60d..12508c3c1602 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 2abb9235768d..ff1654832142 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 9410c8f7488f..de91503b5e72 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 421caff3aeec..9e77da47a8b4 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 715560737a3a..fd470cc09680 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 689d2170297b..04e236673699 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index f21ba4912484..3ef7ffcf2673 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index cbd95d9ed961..99ab671c07a2 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 34552b3ebea0..ccc0846cb8f2 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 03a0e697419b..86a02930fbad 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 0e970397a9c4..3ec69bae51c7 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index b940cae1e4ab..e21111b23195 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index ef390d74aa25..67bb3a42f6fe 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index bf122d1e9e1a..9449689ecbe2 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index b9318b9625f5..deec3875d416 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index dc89de877713..2b007da178e6 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 37549159e820..2d0fd3b6ed54 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index f1a7d0bb831a..0d3fd361755d 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index b834d9507a14..54f96d868863 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 00fed82e8f02..3655960ba5c8 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 4ed17b769c86..a0ef63ae42bc 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index c185840ad89c..eb70b111f0c7 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index e141a613b0b4..5418e878a5fc 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index e87a8a4b4553..5e5549a42112 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 99bab289f461..26a3e6f7adda 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 670d3d55f186..b6f2797a3e00 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index e2c450baf6fa..cc60a70fe339 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index fb60033c076b..88d62f697c51 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index f00af656d707..df6433519cdf 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 1e9fe5b47249..9f6ecd937f46 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index f2a00bb687cb..78876b617522 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 5b6a8a24b58e..3fa822527b36 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index c274b71827bd..2459dec62bfe 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 302534c72fb5..b338eb55fa1c 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 89174aa68dc7..656174eb2897 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index e91488439115..e42778793259 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 07360add3527..3988f2fb0673 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index d3c8c0788470..7770dd6ce3b1 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index a306df156c94..5982a4e2373d 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 6834e6fa2f77..00ac6ba76731 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 0a85715eef3b..61259d7a2f2b 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index b2e698a87f5a..9ad491723f01 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 6e9c9f6dc29a..f85c75dad300 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index c552789cdd12..a398221c8118 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 1a0c6e259fdc..4e507fedc7e6 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index da1611b43059..f804573e8306 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 0d3723f864de..04dc7e42c6e4 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index b7c4563c146b..5cbf37896472 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 4c6d7a1b158c..49d857540f40 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index f42d344e1151..68ce71f3efec 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index da181adc83c7..57e298cedd49 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index a3798fcd6a4d..9786be222693 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 8609fe83ee96..65ac6c887613 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 4e75d90469b9..f4bcc176a0dd 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 3fb983c35308..eaf42d910433 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index d2c65a9b16de..c302f7ad7235 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 23251639cc3d..eca776c60d91 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 40ed2f091ec5..e7510b505e8f 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index f3347152574b..19602e225322 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 9e8717758cf3..d021749cd93d 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 31616dc7860c..6757ddd63b3a 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index b70770355167..d20288ed4bf5 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index c03ded241609..8148d72ffd84 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index c26907e9c763..fd307b8c1e5a 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 9ec7e534d188..20d27f1d09e0 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index dcecb9d235cc..ed92a872c89b 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 704c5685cd0c..15f75bed9b39 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 4908ab43b908..153d543bc2cb 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index ad5d8a514d0f..658360597c33 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 61bc39809be5..818c8e31034b 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 8f844d33be9e..158c6361b51f 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index d33baa9e0984..5be1b05aad6e 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 6d6c28b6a38f..05e2f82d00d1 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 99be12b11a7d..a56dedf35cdc 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 9204a9a147c5..b5a52bd732dc 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 60fcc4582f89..831c29fca432 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 73ff6992949f..12fe85c1e235 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index faa366d22e96..d25439800078 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index d998ffc16d71..4374796594bb 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 973a88deab2c..8bb2247593d7 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index c41b811eae54..840accdb3aaa 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index e780cb983d32..7a4a614ecf00 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index bea1dc5f6345..865b60564e48 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index fcc91bd3a34a..41123dc2f843 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index a49991f44cfc..40e048307797 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index a38c351fb17e..a754bd763086 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index ae2895c86406..ee6d249d3be4 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 3ebf895a7ec5..e10614c51635 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 1df156262381..135828f076a6 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 1f86626ffb98..41244c6917b6 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 5a0ef4057e56..4e4be945a94b 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index c40b0e00eeb6..247bbce9c910 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index cf11e83efdf3..fb7bc7246214 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index d7ab8e7188e4..043784f68646 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index cfffff1371cb..9f17a7b0f15d 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 72ff1b18f26d..120014cf6dea 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 57b73b58030d..a0b9ddcc8969 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index d4f589368fbd..a6e4688960b0 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 1eea2fc4ce09..82dcf55a1467 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index ee68eac2d528..b62378f268c7 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 50db77d785cd..611530e463d3 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index deb33267cd82..1c90b5c953e7 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index de15f8d09ce8..f1189a055f23 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index a57c95aa1a8e..d4d8ba4f1952 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index dda94541721c..c8ed0ec7531d 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index f216e65a9055..48a52b4f03a5 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index f15de4d9e3e1..eb18d0e95c83 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index afd098979e2b..28c613e6f037 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 7dd81ebf3534..a2b9c567e27e 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 046311fe527d..e9014e236b19 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 7d44689928a3..5133f0a12af6 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 3165a3be465c..b072b6716974 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index e84e3006e4c9..5b67e188ec46 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 9e8b5f1d8dc6..0d54d39f4cf5 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index af100d4b7db4..9de7be684910 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index e8d313c8fdf7..d0e7c2d7d76b 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 0d122d347c46..f5762581cd0d 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 7c9cc686db43..acab9181fd34 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 8126d2058d4e..ff932f23f8f5 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 20213254042a..e809f7684b7e 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 133753793456..f233c72a1b58 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 140196805877..8ff685dd608c 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index d1ba675e6a1f..2b2ef6ed4ddb 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index ad4a11f86fa3..39cf593c976a 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 9e20ec3ee4ac..b6fc3c0ea827 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 51d3c2f7ce4f..95663d6eebfd 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 3bdd7b5430e5..2684961991b9 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 35c9e5a437cd..c4d52ca16a30 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 06b7c59533df..dafe791875a8 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 729bdfcdb4d7..36edebedf739 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 65b484d73204..9947dd441b57 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index e3681c39f0cf..af76fa015a7f 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 954fb9d0fd4c..6d61c23d2e6e 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 5f1a6bf01781..eeb8b48eef48 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 9dc6a7ad2449..6e972c0aca07 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index eed36c0a8497..3a11c2c762ef 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index e4f4eb3776f8..525debaa013e 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 6ec79b4609a6..15e9eaef619c 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index a7811a78369a..f2a83d4586fd 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 83d701b86b31..1caff8d9dc22 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 3299693607a5..acebebdaa158 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 524a80564bd9..16fdd159d056 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 5b0599e7c7b5..bc3b7ce0c070 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 055365e7de60..e3a9e7461a7b 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 736953899eed..f90130405b62 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 4ca806eb13e9..302498d8e75a 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index c34cbf324518..f4b3d659b618 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 75ad4a79c6a6..53072f373298 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 413cf228f15a..13c1e44dc5bf 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index ee5de5ef598c..8b786247a9d9 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 1a260a464725..0aefd1d9feca 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index d209bfe82b6e..4f80328fce3f 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index e7383802de1f..cd3461133969 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index aac115de62f6..fbd4dcff18dc 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 0f78dfbf81dd..a460e146d21c 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 2ea1a0a4eaf0..e71a8c647827 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index f41a3fa1336c..1db5a22efd1f 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index d2c70ab1c0cb..ac1f7ed6b26e 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 6f6adadb772f..e30b9f290e9d 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index ddf1a2f91de7..93c57bd90667 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 1fa23280a809..a337cef6f7f4 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.24-SNAPSHOT + 2.15.24 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index fd3c05e67196..82659624daf9 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index cbc56ea1de2e..7d9dea8cb4fc 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index fc64da78dce5..9196abefa794 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 5c6803810446..96de3dded65b 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 5e07d0420191..88fc97aff693 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index ac22cf7f64c7..2e6d0ad5139b 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 4f44f66fdac2..1cea9a677323 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index a9e2c91a354e..c7db866efa50 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 8db600f19d83..c61fbfe2eaeb 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 1d3e2cd0385e..86ee7e7ac481 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 8e1a2364343a..5a8b8d47c122 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 2bbfad196de5..dcc9197a705c 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index aa0c0979e4d0..afe8eb2c88cd 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 6bcdecdcad89..27ed5e2ab2bf 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 844c6f23bb8d..fdd3940e6891 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 30be3c46b434..c5058742c85d 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 811b7d636b6b..f579c58fa39c 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index b2c57d98d647..35541b1b3e6c 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index f74796403dbb..7acf18ab544d 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 36841c8e197c..47e00255b778 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index e38cc2b38c4e..796773f91f03 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 70529a15d35b..729f0d64bc4e 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 1709bcb9b8ca..7efa97946a81 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index bc6c576ed025..3e8a80e98fb4 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 0dd4e58cf86b..e7582dae2161 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index a8b74097a756..2a41b896095e 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 3ef13e4e8944..9ddec8b3df77 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index aca9ddfdc774..3c10a2b16bb5 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 9de47b91d61d..1e668c2035ba 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 5b865111865a..b7fcec7a1d25 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index aa1fdbbd340d..ce6bd529d2bc 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 1e1e92aaf40b..8167f0a6d6fb 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 7907502d799c..2837b6a2e8e9 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 3c456eb4b0fa..40f1bd5f1aff 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 53f105b9c76a..7036480892ba 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 9600f08930c8..bcc23a342986 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index c9be4cb321db..cda6b5cf0077 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 5e4ed65165c2..ad683657fdbe 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index f0a8c5ea3019..cebd04ee0d7d 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 0a1da5acd810..75a60787c558 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index be5244c910f7..c528b7c6ba3f 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index dad03c54d2f8..7af3cabd7e97 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 906550b0336d..fcec4795a8db 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index b12439b54210..7238ed144ef5 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 13dcdb399ee2..ce60674f646b 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index a9fc70e27bf2..9f5eb42a4b12 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 5260b073594b..b10bf42fc504 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 1e53415a2336..642dfb64e2fe 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 11ae8b2fdb85..54e1da524285 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 28cf482139e2..02a6a5b82214 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index d9ecbf71f998..0467f1fdd938 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 105a51a3e8bc..d2397bd42218 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index aa8a74129619..b6a2ad4c37db 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 58a7eaa6d327..39239de38610 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index aa6d6acd86df..68016ecfa47a 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 06995a13efc8..e98704db874a 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index ba32475df126..a9d56ad9d725 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 46fb6c9eefc3..9faea76a6f55 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index b256a18a8ac2..093cac124a6d 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 053ea87ff8c5..430ee3647954 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 02b4605ffdd2..152015d460ea 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 28f9f3482715..4d3532563807 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 430ed050df53..def277850d0c 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24-SNAPSHOT + 2.15.24 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 1ec77ea46b05..2f6812e3de3d 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.15.24-SNAPSHOT + 2.15.24 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 4c7b82361e68..15636576a675 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.15.24-SNAPSHOT + 2.15.24 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index c41327493336..f9d175fa6387 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.15.24-SNAPSHOT + 2.15.24 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index c1aea73b2658..237340942883 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.15.24-SNAPSHOT + 2.15.24 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 758be363c934..7daf272adf9f 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.15.24-SNAPSHOT + 2.15.24 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 913b863b3e03..2ef1277b9552 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.24-SNAPSHOT + 2.15.24 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index c0a3e7b1c0b9..965ef7b9f916 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.15.24-SNAPSHOT + 2.15.24 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 9efd01f3903f..d23765d7f037 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.15.24-SNAPSHOT + 2.15.24 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 8f69ba001eb1..b7d13e029c55 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.15.24-SNAPSHOT + 2.15.24 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 521b588f06a8..42e9d83db9f0 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.15.24-SNAPSHOT + 2.15.24 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 21114140002a..1344244ea61f 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.24-SNAPSHOT + 2.15.24 4.0.0 From 8f361fde4800451d99dce4a1a22c5557fee61aee Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 9 Nov 2020 18:06:51 +0000 Subject: [PATCH 160/339] Update to next snapshot version: 2.15.25-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 280 files changed, 280 insertions(+), 280 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 95ae02589044..6f0d001476e0 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 9df3f89d382d..957acf81e925 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 028dba8cd41f..f06a9c7def8b 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.15.24 + 2.15.25-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 48932fa2df05..65f32917b8bb 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index db9a16b94f39..3086d7430207 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.24 + 2.15.25-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 715a41507202..d73aecbe8b11 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.24 + 2.15.25-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 1a6798e20a61..204fedd446ba 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.15.24 + 2.15.25-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 5d7cc53c042d..ecb2fcdaf9dc 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.24 + 2.15.25-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index f00b1ee5f4a6..ce65eb31762d 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.15.24 + 2.15.25-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index d41ee2a1b696..87dc9bdea7e6 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.24 + 2.15.25-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 1ecb447704a6..3e1d1244ca57 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index a5f8bbdd2e67..b2269416c54b 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index b59431bedd96..3be75ebdda9c 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.24 + 2.15.25-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 0553eb39d8b8..ca99140e78df 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.24 + 2.15.25-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 60ab498474c0..edddf359c59c 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 3b8235e871a1..d7f033efa919 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 3fde2786bb43..8c4dd4e39325 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.24 + 2.15.25-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 8909a3531fdc..bacff59b8241 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.15.24 + 2.15.25-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 0cc8899fc62c..937ea9573ca1 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 61bed627c34d..3bdd7499ffa2 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.15.24 + 2.15.25-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index a1dd0ea38bf5..03025e7bca7d 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.15.24 + 2.15.25-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index b2e288fa7704..f165c5d314c1 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.15.24 + 2.15.25-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index b0d703000adf..d92222c3ab94 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 9d71bac266fa..2c978cbc00f0 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index eb6a6651c55d..5b7fd5d0e905 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.24 + 2.15.25-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index ee8eb353822e..3cd84f2f5a27 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.24 + 2.15.25-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index c5900be6f448..8532ed14b5c6 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.15.24 + 2.15.25-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index a1f3995e2439..4c576f28fc0e 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.15.24 + 2.15.25-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 1b98977512e2..4df266e1a0d2 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.15.24 + 2.15.25-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 073988482fd5..1145c1bf6d38 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.15.24 + 2.15.25-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 42ab6eaf6220..52e3cd7da88c 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 687c54befe09..0afe67920912 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.15.24 + 2.15.25-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 3679faeebc49..0afc728ec7d2 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.15.24 + 2.15.25-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index e8c9ad696636..f8fb4a3c3079 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.24 + 2.15.25-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 89a5d1909c48..12f8943059e3 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.24 + 2.15.25-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 5f1395f9f843..9b1b09e0ad1d 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.24 + 2.15.25-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 2a97172f1b63..0bdc09c673fe 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.15.24 + 2.15.25-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 73551c549787..5d15a395de63 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.24 + 2.15.25-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 55f9657eecc1..ed244b3a44ff 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index f5f262a29912..dba0acb7575a 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 63e10a05111a..850787f4ff38 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 31f57a95d35a..b7b3f7493fb6 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index aa3b2fa679e1..488d24b15490 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 09320ab6c58a..327f9b8d6351 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index a900ba635aff..03e6dff21d5c 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 12508c3c1602..b5fb48e68991 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index ff1654832142..29aade0e9528 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index de91503b5e72..9ceeaf6ced82 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 9e77da47a8b4..52f3755877d1 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index fd470cc09680..af91b80e3156 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 04e236673699..a9dcca38e543 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 3ef7ffcf2673..ed1f37e30246 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 99ab671c07a2..5d49dcaf4df0 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index ccc0846cb8f2..001b90682725 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 86a02930fbad..8441abadcb07 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 3ec69bae51c7..53d344186feb 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index e21111b23195..84f44d437f29 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 67bb3a42f6fe..551710761852 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 9449689ecbe2..68ef2bb96463 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index deec3875d416..046bfc138c5e 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 2b007da178e6..79f93b6db85f 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 2d0fd3b6ed54..74896f936be7 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 0d3fd361755d..2bd6c78fe148 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 54f96d868863..31be58fa0421 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 3655960ba5c8..09e242851aff 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index a0ef63ae42bc..28de02a25862 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index eb70b111f0c7..e69019e2cc8b 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 5418e878a5fc..fa1801c6cff7 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 5e5549a42112..21a1d9930964 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 26a3e6f7adda..b3c557a62349 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index b6f2797a3e00..0b1b3e7acd98 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index cc60a70fe339..03eb803928eb 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 88d62f697c51..39f1e8822174 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index df6433519cdf..3098550defeb 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 9f6ecd937f46..cd4ab69242dd 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 78876b617522..8c7ff9cd31a7 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 3fa822527b36..d7ad3f9fd612 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 2459dec62bfe..4db13e86fbcf 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index b338eb55fa1c..54ba0c02797c 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 656174eb2897..6a675dd948ed 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index e42778793259..b2d826a136c7 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 3988f2fb0673..fa58fcdc49c3 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 7770dd6ce3b1..cb9d743f82bb 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 5982a4e2373d..c215b3c36063 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 00ac6ba76731..61fc41c4605d 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 61259d7a2f2b..0f07f55212ef 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 9ad491723f01..d967163359bc 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index f85c75dad300..ffaac49f7903 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index a398221c8118..2320f0593873 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 4e507fedc7e6..9570369f7b6d 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index f804573e8306..5c59b734c6a2 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 04dc7e42c6e4..785ed2e4fa93 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 5cbf37896472..0134d53a18f8 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 49d857540f40..d253d3dae748 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 68ce71f3efec..1255eff560ca 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 57e298cedd49..de934df1fd86 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 9786be222693..9f4ac66d28a5 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 65ac6c887613..c188e836ac30 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index f4bcc176a0dd..fe19928bee3b 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index eaf42d910433..8b304ec6dc49 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index c302f7ad7235..8779b87734c1 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index eca776c60d91..184548fa3262 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index e7510b505e8f..28de5486bd35 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 19602e225322..82e80c379567 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index d021749cd93d..37075d332122 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 6757ddd63b3a..8ccbb835942d 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index d20288ed4bf5..7e54fff83283 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 8148d72ffd84..302b557d03c2 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index fd307b8c1e5a..4440a1422fa2 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 20d27f1d09e0..4556f867d0b9 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index ed92a872c89b..14c2ac20bf06 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 15f75bed9b39..5d42f6b23349 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 153d543bc2cb..2ed6fa479a72 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 658360597c33..dee97f3f0a0e 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 818c8e31034b..d46b0c2c2de9 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 158c6361b51f..bd2986939cf6 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 5be1b05aad6e..1c61cdb30b05 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 05e2f82d00d1..98faf45b3838 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index a56dedf35cdc..72c6496204eb 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index b5a52bd732dc..7a0d01084b0c 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 831c29fca432..a928b77a14a9 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 12fe85c1e235..3fc12f9e8236 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index d25439800078..a25ee9a07082 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 4374796594bb..0ced57e79e68 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 8bb2247593d7..99fab85ead39 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 840accdb3aaa..353651df7f1a 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 7a4a614ecf00..f6a20b0e26ff 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 865b60564e48..1dcb99dd74e9 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 41123dc2f843..c9696cc1ce22 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 40e048307797..94a5ab0b1de4 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index a754bd763086..a428d980bd8f 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index ee6d249d3be4..b284efcc65fc 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index e10614c51635..c78c24e6e902 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 135828f076a6..efe4e586e295 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 41244c6917b6..023fbeccf4ab 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 4e4be945a94b..6b1b7b6c4bbf 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 247bbce9c910..10dd25e3a2f8 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index fb7bc7246214..46c2e3476762 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 043784f68646..1bbb90697863 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 9f17a7b0f15d..4d701daca59c 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 120014cf6dea..bd7ab2949a0a 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index a0b9ddcc8969..7e19b43421e7 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index a6e4688960b0..22134b9f798c 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 82dcf55a1467..9b80932f2b77 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index b62378f268c7..d36a075ca867 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 611530e463d3..ce7c59eb0eb3 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 1c90b5c953e7..894c88631120 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index f1189a055f23..5ef15747f307 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index d4d8ba4f1952..3928b5272ff1 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index c8ed0ec7531d..265d56eee71d 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 48a52b4f03a5..3b41eacf632e 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index eb18d0e95c83..ef4eb2cae794 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 28c613e6f037..9de6b153adf3 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index a2b9c567e27e..2a6e537ff329 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index e9014e236b19..d5894e7e31dc 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 5133f0a12af6..5ce3d7d2ccbb 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index b072b6716974..a0e884e63a38 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 5b67e188ec46..38949e48ad83 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 0d54d39f4cf5..f213600490eb 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 9de7be684910..eb6b4827bc4c 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index d0e7c2d7d76b..2eb3af8b69cb 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index f5762581cd0d..6e74e632ecc3 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index acab9181fd34..70f67c0b9a9a 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index ff932f23f8f5..3a8ce5a067ad 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index e809f7684b7e..466646a9208b 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index f233c72a1b58..e64b65237300 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 8ff685dd608c..4ed6c40b5ac8 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 2b2ef6ed4ddb..b33bafd28ba0 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 39cf593c976a..a45985bdf367 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index b6fc3c0ea827..7668398bbe22 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 95663d6eebfd..688b8dc5c0d6 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 2684961991b9..fafeb4171d19 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index c4d52ca16a30..a90ce52b942a 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index dafe791875a8..b37875776704 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 36edebedf739..64196431a106 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 9947dd441b57..56c4b28aa62d 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index af76fa015a7f..1d54d5a300fa 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 6d61c23d2e6e..bd2f15fe055f 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index eeb8b48eef48..9132d3ced7bc 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 6e972c0aca07..97e7ac9a5f4b 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 3a11c2c762ef..985d6993aad9 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 525debaa013e..cfa88b16ed50 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 15e9eaef619c..b2f7483520bd 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index f2a83d4586fd..e7cb538cb6ad 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 1caff8d9dc22..276e77bf3530 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index acebebdaa158..e4d8f2f5ec6d 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 16fdd159d056..50bc5dd116b0 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index bc3b7ce0c070..2822ad4bd9b5 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index e3a9e7461a7b..7c24298ff04e 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index f90130405b62..6b80a36736ab 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 302498d8e75a..82f0031742c8 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index f4b3d659b618..68dd119d3451 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 53072f373298..4e4649554297 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 13c1e44dc5bf..a763c6847ba4 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 8b786247a9d9..f2fb1c862c39 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 0aefd1d9feca..a2adf76ca7b2 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 4f80328fce3f..ae9bf3a96736 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index cd3461133969..7d50aa3afc00 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index fbd4dcff18dc..1a3de84d8dd5 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index a460e146d21c..e7f53a5ed5fe 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index e71a8c647827..0f62663c1f0a 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 1db5a22efd1f..046b5266e830 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index ac1f7ed6b26e..54c0e91a65cd 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index e30b9f290e9d..af63285f9bc4 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 93c57bd90667..280d7b4c53ee 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index a337cef6f7f4..47be47022afa 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.24 + 2.15.25-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 82659624daf9..9e389e6ebd41 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 7d9dea8cb4fc..085e299884b2 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 9196abefa794..ed642b351a27 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 96de3dded65b..73e215bc2d94 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 88fc97aff693..0c805da72b7e 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 2e6d0ad5139b..03a425f94a2d 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 1cea9a677323..4d3889c7e497 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index c7db866efa50..83f1e5d50b4c 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index c61fbfe2eaeb..24d107682b18 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 86ee7e7ac481..eed2ce314197 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 5a8b8d47c122..e2dfdd17ca50 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index dcc9197a705c..64ef1121c708 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index afe8eb2c88cd..68c541d66d3c 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 27ed5e2ab2bf..385f8c3d7858 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index fdd3940e6891..6271a8df8f27 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index c5058742c85d..bb0437430fe0 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index f579c58fa39c..729cf236efb3 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 35541b1b3e6c..0148b953f0a6 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 7acf18ab544d..a831ec27ef1b 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 47e00255b778..25d216ae4feb 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 796773f91f03..36035cd9d216 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 729f0d64bc4e..b1514c4c18ed 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 7efa97946a81..3e33a787a78c 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 3e8a80e98fb4..27cc00bf66b5 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index e7582dae2161..702ade5a4b56 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 2a41b896095e..466fe23c89a8 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 9ddec8b3df77..539e27b8b8dc 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 3c10a2b16bb5..7980b4504c51 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 1e668c2035ba..d8f0cce66044 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index b7fcec7a1d25..d453c15c1d89 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index ce6bd529d2bc..d6820ce039f3 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 8167f0a6d6fb..7055f7daab0a 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 2837b6a2e8e9..9977cfc5beae 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 40f1bd5f1aff..98accd52bdc2 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 7036480892ba..b0ffe7104d99 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index bcc23a342986..84b08e30dfd0 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index cda6b5cf0077..8aff98d9f570 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index ad683657fdbe..ccbb0b6dffec 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index cebd04ee0d7d..03030edb224c 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 75a60787c558..c632359f6075 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index c528b7c6ba3f..000732426130 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 7af3cabd7e97..be9cb3f9a255 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index fcec4795a8db..83afd49808db 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 7238ed144ef5..a19cd551550e 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index ce60674f646b..813367662522 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 9f5eb42a4b12..ef52d07d3169 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index b10bf42fc504..cec9a74d407d 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 642dfb64e2fe..5e8bfcc91f47 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 54e1da524285..ab4397acde26 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 02a6a5b82214..87b40d9e7653 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 0467f1fdd938..998501fe339d 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index d2397bd42218..766b4888c0c7 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index b6a2ad4c37db..1fd176dadb75 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 39239de38610..c3cf0db3eb07 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 68016ecfa47a..4bd25165deac 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index e98704db874a..c54538455c36 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index a9d56ad9d725..112538d464e2 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 9faea76a6f55..7cff8f2c2649 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 093cac124a6d..3f356ecae1ee 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 430ee3647954..d124e5a9edda 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 152015d460ea..efbc77f5dc94 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 4d3532563807..30bf2cea7c5e 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index def277850d0c..fdac0248f364 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.24 + 2.15.25-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 2f6812e3de3d..82d284ab06c9 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.15.24 + 2.15.25-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 15636576a675..9f0f90d29f63 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.15.24 + 2.15.25-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index f9d175fa6387..60b2640abb78 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.15.24 + 2.15.25-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 237340942883..d9674060c280 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.15.24 + 2.15.25-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 7daf272adf9f..0f60ce0079b2 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.15.24 + 2.15.25-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 2ef1277b9552..7e85e954d8e7 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.24 + 2.15.25-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 965ef7b9f916..d0f8c35aa347 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.15.24 + 2.15.25-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index d23765d7f037..d1b3e6829577 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.15.24 + 2.15.25-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index b7d13e029c55..d3471f7e5d18 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.15.24 + 2.15.25-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 42e9d83db9f0..807b2a0df3b7 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.15.24 + 2.15.25-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 1344244ea61f..b526e750529a 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.24 + 2.15.25-SNAPSHOT 4.0.0 From 2a7b0a9e228c871139af8ac4a6298e34cebc8ad5 Mon Sep 17 00:00:00 2001 From: John Viegas Date: Fri, 6 Nov 2020 20:32:13 -0800 Subject: [PATCH 161/339] PR#2123 STS not on class path when using parallel stream --- .../bugfix-AWSSDKforJavav2-dc586b4.json | 6 ++++ .../amazon/awssdk/checkstyle-suppressions.xml | 5 +++ .../software/amazon/awssdk/checkstyle.xml | 8 +++++ .../internal/ProfileCredentialsUtils.java | 5 +-- .../internal/WebIdentityCredentialsUtils.java | 5 +-- ...dentityCredentialsProviderFactoryTest.java | 32 +++++++++++++++++++ 6 files changed, 57 insertions(+), 4 deletions(-) create mode 100644 .changes/next-release/bugfix-AWSSDKforJavav2-dc586b4.json create mode 100644 services/sts/src/test/java/software/amazon/awssdk/services/sts/internal/StsWebIdentityCredentialsProviderFactoryTest.java diff --git a/.changes/next-release/bugfix-AWSSDKforJavav2-dc586b4.json b/.changes/next-release/bugfix-AWSSDKforJavav2-dc586b4.json new file mode 100644 index 000000000000..a6ddd19deb03 --- /dev/null +++ b/.changes/next-release/bugfix-AWSSDKforJavav2-dc586b4.json @@ -0,0 +1,6 @@ +{ + "category": "AWS SDK for Java v2", + "contributor": "", + "type": "bugfix", + "description": "Replaced class loading from Thread.currentThread().getContextClassLoader() to ClassLoaderHelper in ProfileCredentialsUtils and WebIdentityCredentialsUtils, since it was causing Class not found error." +} diff --git a/build-tools/src/main/resources/software/amazon/awssdk/checkstyle-suppressions.xml b/build-tools/src/main/resources/software/amazon/awssdk/checkstyle-suppressions.xml index 394a616bb1ed..9ea21bd6e7a9 100644 --- a/build-tools/src/main/resources/software/amazon/awssdk/checkstyle-suppressions.xml +++ b/build-tools/src/main/resources/software/amazon/awssdk/checkstyle-suppressions.xml @@ -42,4 +42,9 @@ + + + + diff --git a/build-tools/src/main/resources/software/amazon/awssdk/checkstyle.xml b/build-tools/src/main/resources/software/amazon/awssdk/checkstyle.xml index 05001c3fba7b..0624de4e6fc6 100644 --- a/build-tools/src/main/resources/software/amazon/awssdk/checkstyle.xml +++ b/build-tools/src/main/resources/software/amazon/awssdk/checkstyle.xml @@ -373,6 +373,14 @@ + + + + + + + + diff --git a/core/auth/src/main/java/software/amazon/awssdk/auth/credentials/internal/ProfileCredentialsUtils.java b/core/auth/src/main/java/software/amazon/awssdk/auth/credentials/internal/ProfileCredentialsUtils.java index c57cfe17b6c9..2c432856b713 100644 --- a/core/auth/src/main/java/software/amazon/awssdk/auth/credentials/internal/ProfileCredentialsUtils.java +++ b/core/auth/src/main/java/software/amazon/awssdk/auth/credentials/internal/ProfileCredentialsUtils.java @@ -37,6 +37,7 @@ import software.amazon.awssdk.auth.credentials.ProcessCredentialsProvider; import software.amazon.awssdk.auth.credentials.StaticCredentialsProvider; import software.amazon.awssdk.auth.credentials.SystemPropertyCredentialsProvider; +import software.amazon.awssdk.core.internal.util.ClassLoaderHelper; import software.amazon.awssdk.profiles.Profile; import software.amazon.awssdk.profiles.ProfileProperty; import software.amazon.awssdk.utils.SdkAutoCloseable; @@ -252,8 +253,8 @@ private IllegalStateException noSourceCredentialsException() { */ private ChildProfileCredentialsProviderFactory stsCredentialsProviderFactory() { try { - Class stsCredentialsProviderFactory = Class.forName(STS_PROFILE_CREDENTIALS_PROVIDER_FACTORY, true, - Thread.currentThread().getContextClassLoader()); + Class stsCredentialsProviderFactory = ClassLoaderHelper.loadClass(STS_PROFILE_CREDENTIALS_PROVIDER_FACTORY, + getClass()); return (ChildProfileCredentialsProviderFactory) stsCredentialsProviderFactory.getConstructor().newInstance(); } catch (ClassNotFoundException e) { throw new IllegalStateException("To use assumed roles in the '" + name + "' profile, the 'sts' service module must " diff --git a/core/auth/src/main/java/software/amazon/awssdk/auth/credentials/internal/WebIdentityCredentialsUtils.java b/core/auth/src/main/java/software/amazon/awssdk/auth/credentials/internal/WebIdentityCredentialsUtils.java index b73f7ec1dfce..d14e28da54fb 100644 --- a/core/auth/src/main/java/software/amazon/awssdk/auth/credentials/internal/WebIdentityCredentialsUtils.java +++ b/core/auth/src/main/java/software/amazon/awssdk/auth/credentials/internal/WebIdentityCredentialsUtils.java @@ -18,6 +18,7 @@ import java.lang.reflect.InvocationTargetException; import software.amazon.awssdk.annotations.SdkInternalApi; import software.amazon.awssdk.auth.credentials.WebIdentityTokenCredentialsProviderFactory; +import software.amazon.awssdk.core.internal.util.ClassLoaderHelper; /** * Utility class used to configure credential providers based on JWT web identity tokens. @@ -39,8 +40,8 @@ private WebIdentityCredentialsUtils() { */ public static WebIdentityTokenCredentialsProviderFactory factory() { try { - Class stsCredentialsProviderFactory = Class.forName(STS_WEB_IDENTITY_CREDENTIALS_PROVIDER_FACTORY, true, - Thread.currentThread().getContextClassLoader()); + Class stsCredentialsProviderFactory = ClassLoaderHelper.loadClass(STS_WEB_IDENTITY_CREDENTIALS_PROVIDER_FACTORY, + WebIdentityCredentialsUtils.class); return (WebIdentityTokenCredentialsProviderFactory) stsCredentialsProviderFactory.getConstructor().newInstance(); } catch (ClassNotFoundException e) { throw new IllegalStateException("To use web identity tokens, the 'sts' service module must be on the class path.", e); diff --git a/services/sts/src/test/java/software/amazon/awssdk/services/sts/internal/StsWebIdentityCredentialsProviderFactoryTest.java b/services/sts/src/test/java/software/amazon/awssdk/services/sts/internal/StsWebIdentityCredentialsProviderFactoryTest.java new file mode 100644 index 000000000000..f55ad2f6b2f3 --- /dev/null +++ b/services/sts/src/test/java/software/amazon/awssdk/services/sts/internal/StsWebIdentityCredentialsProviderFactoryTest.java @@ -0,0 +1,32 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.sts.internal; + +import org.junit.Assert; +import org.junit.Test; +import software.amazon.awssdk.auth.credentials.WebIdentityTokenCredentialsProviderFactory; +import software.amazon.awssdk.auth.credentials.internal.WebIdentityCredentialsUtils; + +public class StsWebIdentityCredentialsProviderFactoryTest { + + + @Test + public void stsWebIdentityCredentialsProviderFactory_with_webIdentityCredentialsUtils() { + WebIdentityTokenCredentialsProviderFactory factory = WebIdentityCredentialsUtils.factory(); + Assert.assertNotNull(factory); + } + +} From 8bcbc17416e5b78eb1ef3aae6196b2e3c014037b Mon Sep 17 00:00:00 2001 From: Yosef Fertel Date: Mon, 9 Nov 2020 20:08:02 -0500 Subject: [PATCH 162/339] Add spaces between new lines in ClientBuilder error message --- .changes/next-release/bugfix-AWSSDKforJavav2-f7960d9.json | 6 ++++++ .../http/loader/DefaultSdkAsyncHttpClientBuilder.java | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 .changes/next-release/bugfix-AWSSDKforJavav2-f7960d9.json diff --git a/.changes/next-release/bugfix-AWSSDKforJavav2-f7960d9.json b/.changes/next-release/bugfix-AWSSDKforJavav2-f7960d9.json new file mode 100644 index 000000000000..96a12cba27bc --- /dev/null +++ b/.changes/next-release/bugfix-AWSSDKforJavav2-f7960d9.json @@ -0,0 +1,6 @@ +{ + "category": "AWS SDK for Java v2", + "contributor": "@frosforever", + "type": "bugfix", + "description": "Fix default client error to have spaces between words." +} diff --git a/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/http/loader/DefaultSdkAsyncHttpClientBuilder.java b/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/http/loader/DefaultSdkAsyncHttpClientBuilder.java index f96796277658..afcdce212ae9 100644 --- a/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/http/loader/DefaultSdkAsyncHttpClientBuilder.java +++ b/core/sdk-core/src/main/java/software/amazon/awssdk/core/internal/http/loader/DefaultSdkAsyncHttpClientBuilder.java @@ -43,9 +43,9 @@ public SdkAsyncHttpClient buildWithDefaults(AttributeMap serviceDefaults) { .map(f -> f.buildWithDefaults(serviceDefaults)) .orElseThrow( () -> SdkClientException.builder() - .message("Unable to load an HTTP implementation from any provider in the" + - "chain. You must declare a dependency on an appropriate HTTP" + - "implementation or pass in an SdkHttpClient explicitly to the" + + .message("Unable to load an HTTP implementation from any provider in the " + + "chain. You must declare a dependency on an appropriate HTTP " + + "implementation or pass in an SdkHttpClient explicitly to the " + "client builder.") .build()); } From 2f8db399897baa8a5829bd3fb120e80edd07a0f0 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 10 Nov 2020 19:03:55 +0000 Subject: [PATCH 163/339] Amazon Elastic Compute Cloud Update: This release adds support for Gateway Load Balancer VPC endpoints and VPC endpoint services --- ...ure-AmazonElasticComputeCloud-489f802.json | 6 ++ .../codegen-resources/service-2.json | 66 ++++++++++++++----- 2 files changed, 56 insertions(+), 16 deletions(-) create mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-489f802.json diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-489f802.json b/.changes/next-release/feature-AmazonElasticComputeCloud-489f802.json new file mode 100644 index 000000000000..b8e84f767d53 --- /dev/null +++ b/.changes/next-release/feature-AmazonElasticComputeCloud-489f802.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "This release adds support for Gateway Load Balancer VPC endpoints and VPC endpoint services" +} diff --git a/services/ec2/src/main/resources/codegen-resources/service-2.json b/services/ec2/src/main/resources/codegen-resources/service-2.json index 8d829c59b1c7..6dc0e9d9d716 100755 --- a/services/ec2/src/main/resources/codegen-resources/service-2.json +++ b/services/ec2/src/main/resources/codegen-resources/service-2.json @@ -922,7 +922,7 @@ }, "input":{"shape":"CreateVpcEndpointRequest"}, "output":{"shape":"CreateVpcEndpointResult"}, - "documentation":"

Creates a VPC endpoint for a specified service. An endpoint enables you to create a private connection between your VPC and the service. The service may be provided by AWS, an AWS Marketplace Partner, or another AWS account. For more information, see VPC Endpoints in the Amazon Virtual Private Cloud User Guide.

A gateway endpoint serves as a target for a route in your route table for traffic destined for the AWS service. You can specify an endpoint policy to attach to the endpoint, which will control access to the service from your VPC. You can also specify the VPC route tables that use the endpoint.

An interface endpoint is a network interface in your subnet that serves as an endpoint for communicating with the specified service. You can specify the subnets in which to create an endpoint, and the security groups to associate with the endpoint network interface.

Use DescribeVpcEndpointServices to get a list of supported services.

" + "documentation":"

Creates a VPC endpoint for a specified service. An endpoint enables you to create a private connection between your VPC and the service. The service may be provided by AWS, an AWS Marketplace Partner, or another AWS account. For more information, see VPC Endpoints in the Amazon Virtual Private Cloud User Guide.

A gateway endpoint serves as a target for a route in your route table for traffic destined for the AWS service. You can specify an endpoint policy to attach to the endpoint, which will control access to the service from your VPC. You can also specify the VPC route tables that use the endpoint.

An interface endpoint is a network interface in your subnet that serves as an endpoint for communicating with the specified service. You can specify the subnets in which to create an endpoint, and the security groups to associate with the endpoint network interface.

A GatewayLoadBalancer endpoint is a network interface in your subnet that serves an endpoint for communicating with a Gateway Load Balancer that you've configured as a VPC endpoint service.

Use DescribeVpcEndpointServices to get a list of supported services.

" }, "CreateVpcEndpointConnectionNotification":{ "name":"CreateVpcEndpointConnectionNotification", @@ -942,7 +942,7 @@ }, "input":{"shape":"CreateVpcEndpointServiceConfigurationRequest"}, "output":{"shape":"CreateVpcEndpointServiceConfigurationResult"}, - "documentation":"

Creates a VPC endpoint service configuration to which service consumers (AWS accounts, IAM users, and IAM roles) can connect. Service consumers can create an interface VPC endpoint to connect to your service.

To create an endpoint service configuration, you must first create a Network Load Balancer for your service. For more information, see VPC Endpoint Services in the Amazon Virtual Private Cloud User Guide.

If you set the private DNS name, you must prove that you own the private DNS domain name. For more information, see VPC Endpoint Service Private DNS Name Verification in the Amazon Virtual Private Cloud User Guide.

" + "documentation":"

Creates a VPC endpoint service configuration to which service consumers (AWS accounts, IAM users, and IAM roles) can connect.

To create an endpoint service configuration, you must first create one of the following for your service:

For more information, see VPC Endpoint Services in the Amazon Virtual Private Cloud User Guide.

If you set the private DNS name, you must prove that you own the private DNS domain name. For more information, see VPC Endpoint Service Private DNS Name Verification in the Amazon Virtual Private Cloud User Guide.

" }, "CreateVpcPeeringConnection":{ "name":"CreateVpcPeeringConnection", @@ -1424,7 +1424,7 @@ }, "input":{"shape":"DeleteVpcEndpointsRequest"}, "output":{"shape":"DeleteVpcEndpointsResult"}, - "documentation":"

Deletes one or more specified VPC endpoints. Deleting a gateway endpoint also deletes the endpoint routes in the route tables that were associated with the endpoint. Deleting an interface endpoint deletes the endpoint network interfaces.

" + "documentation":"

Deletes one or more specified VPC endpoints. Deleting a gateway endpoint also deletes the endpoint routes in the route tables that were associated with the endpoint. Deleting an interface endpoint or a Gateway Load Balancer endpoint deletes the endpoint network interfaces. Gateway Load Balancer endpoints can only be deleted if the routes that are associated with the endpoint are deleted.

" }, "DeleteVpcPeeringConnection":{ "name":"DeleteVpcPeeringConnection", @@ -3563,7 +3563,7 @@ }, "input":{"shape":"ModifyVpcEndpointRequest"}, "output":{"shape":"ModifyVpcEndpointResult"}, - "documentation":"

Modifies attributes of a specified VPC endpoint. The attributes that you can modify depend on the type of VPC endpoint (interface or gateway). For more information, see VPC Endpoints in the Amazon Virtual Private Cloud User Guide.

" + "documentation":"

Modifies attributes of a specified VPC endpoint. The attributes that you can modify depend on the type of VPC endpoint (interface, gateway, or Gateway Load Balancer). For more information, see VPC Endpoints in the Amazon Virtual Private Cloud User Guide.

" }, "ModifyVpcEndpointConnectionNotification":{ "name":"ModifyVpcEndpointConnectionNotification", @@ -3583,7 +3583,7 @@ }, "input":{"shape":"ModifyVpcEndpointServiceConfigurationRequest"}, "output":{"shape":"ModifyVpcEndpointServiceConfigurationResult"}, - "documentation":"

Modifies the attributes of your VPC endpoint service configuration. You can change the Network Load Balancers for your service, and you can specify whether acceptance is required for requests to connect to your endpoint service through an interface VPC endpoint.

If you set or modify the private DNS name, you must prove that you own the private DNS domain name. For more information, see VPC Endpoint Service Private DNS Name Verification in the Amazon Virtual Private Cloud User Guide.

" + "documentation":"

Modifies the attributes of your VPC endpoint service configuration. You can change the Network Load Balancers or Gateway Load Balancers for your service, and you can specify whether acceptance is required for requests to connect to your endpoint service through an interface VPC endpoint.

If you set or modify the private DNS name, you must prove that you own the private DNS domain name. For more information, see VPC Endpoint Service Private DNS Name Verification in the Amazon Virtual Private Cloud User Guide.

" }, "ModifyVpcEndpointServicePermissions":{ "name":"ModifyVpcEndpointServicePermissions", @@ -9368,6 +9368,10 @@ "documentation":"

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

", "locationName":"dryRun" }, + "VpcEndpointId":{ + "shape":"VpcEndpointId", + "documentation":"

The ID of a VPC endpoint. Supported for Gateway Load Balancer endpoints only.

" + }, "EgressOnlyInternetGatewayId":{ "shape":"EgressOnlyInternetGatewayId", "documentation":"

[IPv6 traffic only] The ID of an egress-only internet gateway.

", @@ -10343,7 +10347,7 @@ }, "PolicyDocument":{ "shape":"String", - "documentation":"

A policy to attach to the endpoint that controls access to the service. The policy must be in valid JSON format. If this parameter is not specified, we attach a default policy that allows full access to the service.

" + "documentation":"

(Interface and gateway endpoints) A policy to attach to the endpoint that controls access to the service. The policy must be in valid JSON format. If this parameter is not specified, we attach a default policy that allows full access to the service.

" }, "RouteTableIds":{ "shape":"VpcEndpointRouteTableIdList", @@ -10352,7 +10356,7 @@ }, "SubnetIds":{ "shape":"VpcEndpointSubnetIdList", - "documentation":"

(Interface endpoint) The ID of one or more subnets in which to create an endpoint network interface.

", + "documentation":"

(Interface and Gateway Load Balancer endpoints) The ID of one or more subnets in which to create an endpoint network interface. For a Gateway Load Balancer endpoint, you can specify one subnet only.

", "locationName":"SubnetId" }, "SecurityGroupIds":{ @@ -10394,7 +10398,6 @@ }, "CreateVpcEndpointServiceConfigurationRequest":{ "type":"structure", - "required":["NetworkLoadBalancerArns"], "members":{ "DryRun":{ "shape":"Boolean", @@ -10406,13 +10409,18 @@ }, "PrivateDnsName":{ "shape":"String", - "documentation":"

The private DNS name to assign to the VPC endpoint service.

" + "documentation":"

(Interface endpoint configuration) The private DNS name to assign to the VPC endpoint service.

" }, "NetworkLoadBalancerArns":{ "shape":"ValueStringList", "documentation":"

The Amazon Resource Names (ARNs) of one or more Network Load Balancers for your service.

", "locationName":"NetworkLoadBalancerArn" }, + "GatewayLoadBalancerArns":{ + "shape":"ValueStringList", + "documentation":"

The Amazon Resource Names (ARNs) of one or more Gateway Load Balancers.

", + "locationName":"GatewayLoadBalancerArn" + }, "ClientToken":{ "shape":"String", "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency.

" @@ -17082,7 +17090,7 @@ }, "Filters":{ "shape":"FilterList", - "documentation":"

One or more filters.

  • service-name - The name of the service.

  • vpc-id - The ID of the VPC in which the endpoint resides.

  • vpc-endpoint-id - The ID of the endpoint.

  • vpc-endpoint-state - The state of the endpoint (pendingAcceptance | pending | available | deleting | deleted | rejected | failed).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

", + "documentation":"

One or more filters.

  • service-name - The name of the service.

  • vpc-id - The ID of the VPC in which the endpoint resides.

  • vpc-endpoint-id - The ID of the endpoint.

  • vpc-endpoint-state - The state of the endpoint (pendingAcceptance | pending | available | deleting | deleted | rejected | failed).

  • vpc-endpoint-type - The type of VPC endpoint (Interface | Gateway | GatewayLoadBalancer).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

", "locationName":"Filter" }, "MaxResults":{ @@ -28164,7 +28172,7 @@ }, "PolicyDocument":{ "shape":"String", - "documentation":"

A policy to attach to the endpoint that controls access to the service. The policy must be in valid JSON format.

" + "documentation":"

(Interface and gateway endpoints) A policy to attach to the endpoint that controls access to the service. The policy must be in valid JSON format.

" }, "AddRouteTableIds":{ "shape":"VpcEndpointRouteTableIdList", @@ -28178,7 +28186,7 @@ }, "AddSubnetIds":{ "shape":"VpcEndpointSubnetIdList", - "documentation":"

(Interface endpoint) One or more subnet IDs in which to serve the endpoint.

", + "documentation":"

(Interface and Gateway Load Balancer endpoints) One or more subnet IDs in which to serve the endpoint. For a Gateway Load Balancer endpoint, you can specify only one subnet.

", "locationName":"AddSubnetId" }, "RemoveSubnetIds":{ @@ -28227,11 +28235,11 @@ }, "PrivateDnsName":{ "shape":"String", - "documentation":"

The private DNS name to assign to the endpoint service.

" + "documentation":"

(Interface endpoint configuration) The private DNS name to assign to the endpoint service.

" }, "RemovePrivateDnsName":{ "shape":"Boolean", - "documentation":"

Removes the private DNS name of the endpoint service.

" + "documentation":"

(Interface endpoint configuration) Removes the private DNS name of the endpoint service.

" }, "AcceptanceRequired":{ "shape":"Boolean", @@ -28246,6 +28254,16 @@ "shape":"ValueStringList", "documentation":"

The Amazon Resource Names (ARNs) of Network Load Balancers to remove from your service configuration.

", "locationName":"RemoveNetworkLoadBalancerArn" + }, + "AddGatewayLoadBalancerArns":{ + "shape":"ValueStringList", + "documentation":"

The Amazon Resource Names (ARNs) of Gateway Load Balancers to add to your service configuration.

", + "locationName":"AddGatewayLoadBalancerArn" + }, + "RemoveGatewayLoadBalancerArns":{ + "shape":"ValueStringList", + "documentation":"

The Amazon Resource Names (ARNs) of Gateway Load Balancers to remove from your service configuration.

", + "locationName":"RemoveGatewayLoadBalancerArn" } } }, @@ -31463,6 +31481,10 @@ "documentation":"

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

", "locationName":"dryRun" }, + "VpcEndpointId":{ + "shape":"VpcEndpointId", + "documentation":"

The ID of a VPC endpoint. Supported for Gateway Load Balancer endpoints only.

" + }, "EgressOnlyInternetGatewayId":{ "shape":"EgressOnlyInternetGatewayId", "documentation":"

[IPv6 traffic only] The ID of an egress-only internet gateway.

", @@ -34485,6 +34507,11 @@ "documentation":"

The Amazon Resource Names (ARNs) of the Network Load Balancers for the service.

", "locationName":"networkLoadBalancerArnSet" }, + "GatewayLoadBalancerArns":{ + "shape":"ValueStringList", + "documentation":"

The Amazon Resource Names (ARNs) of the Gateway Load Balancers for the service.

", + "locationName":"gatewayLoadBalancerArnSet" + }, "BaseEndpointDnsNames":{ "shape":"ValueStringList", "documentation":"

The DNS names for the service.

", @@ -34602,7 +34629,8 @@ "type":"string", "enum":[ "Interface", - "Gateway" + "Gateway", + "GatewayLoadBalancer" ] }, "ServiceTypeDetail":{ @@ -39401,6 +39429,11 @@ "shape":"ValueStringList", "documentation":"

The Amazon Resource Names (ARNs) of the network load balancers for the service.

", "locationName":"networkLoadBalancerArnSet" + }, + "GatewayLoadBalancerArns":{ + "shape":"ValueStringList", + "documentation":"

The Amazon Resource Names (ARNs) of the Gateway Load Balancers for the service.

", + "locationName":"gatewayLoadBalancerArnSet" } }, "documentation":"

Describes a VPC endpoint connection to a service.

" @@ -39460,7 +39493,8 @@ "type":"string", "enum":[ "Interface", - "Gateway" + "Gateway", + "GatewayLoadBalancer" ] }, "VpcFlowLogId":{"type":"string"}, From 5fa353421f68966abdaa8c0c513ef737e95cc143 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 10 Nov 2020 19:03:57 +0000 Subject: [PATCH 164/339] Elastic Load Balancing Update: Added support for Gateway Load Balancers, which make it easy to deploy, scale, and run third-party virtual networking appliances. --- .../feature-ElasticLoadBalancing-4445066.json | 6 + .../codegen-resources/service-2.json | 128 +++++++++--------- 2 files changed, 70 insertions(+), 64 deletions(-) create mode 100644 .changes/next-release/feature-ElasticLoadBalancing-4445066.json diff --git a/.changes/next-release/feature-ElasticLoadBalancing-4445066.json b/.changes/next-release/feature-ElasticLoadBalancing-4445066.json new file mode 100644 index 000000000000..8dca6cce9324 --- /dev/null +++ b/.changes/next-release/feature-ElasticLoadBalancing-4445066.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Elastic Load Balancing", + "contributor": "", + "description": "Added support for Gateway Load Balancers, which make it easy to deploy, scale, and run third-party virtual networking appliances." +} diff --git a/services/elasticloadbalancingv2/src/main/resources/codegen-resources/service-2.json b/services/elasticloadbalancingv2/src/main/resources/codegen-resources/service-2.json index 8666639c743a..c24a2dc546fb 100644 --- a/services/elasticloadbalancingv2/src/main/resources/codegen-resources/service-2.json +++ b/services/elasticloadbalancingv2/src/main/resources/codegen-resources/service-2.json @@ -28,7 +28,7 @@ {"shape":"TooManyCertificatesException"}, {"shape":"CertificateNotFoundException"} ], - "documentation":"

Adds the specified SSL server certificate to the certificate list for the specified HTTPS or TLS listener.

If the certificate in already in the certificate list, the call is successful but the certificate is not added again.

To get the certificate list for a listener, use DescribeListenerCertificates. To remove certificates from the certificate list for a listener, use RemoveListenerCertificates. To replace the default certificate for a listener, use ModifyListener.

For more information, see SSL Certificates in the Application Load Balancers Guide.

" + "documentation":"

Adds the specified SSL server certificate to the certificate list for the specified HTTPS or TLS listener.

If the certificate in already in the certificate list, the call is successful but the certificate is not added again.

For more information, see HTTPS listeners in the Application Load Balancers Guide or TLS listeners in the Network Load Balancers Guide.

" }, "AddTags":{ "name":"AddTags", @@ -47,7 +47,7 @@ {"shape":"LoadBalancerNotFoundException"}, {"shape":"TargetGroupNotFoundException"} ], - "documentation":"

Adds the specified tags to the specified Elastic Load Balancing resource. You can tag your Application Load Balancers, Network Load Balancers, target groups, listeners, and rules.

Each tag consists of a key and an optional value. If a resource already has a tag with the same key, AddTags updates its value.

To list the current tags for your resources, use DescribeTags. To remove tags from your resources, use RemoveTags.

" + "documentation":"

Adds the specified tags to the specified Elastic Load Balancing resource. You can tag your Application Load Balancers, Network Load Balancers, Gateway Load Balancers, target groups, listeners, and rules.

Each tag consists of a key and an optional value. If a resource already has a tag with the same key, AddTags updates its value.

" }, "CreateListener":{ "name":"CreateListener", @@ -80,7 +80,7 @@ {"shape":"ALPNPolicyNotSupportedException"}, {"shape":"TooManyTagsException"} ], - "documentation":"

Creates a listener for the specified Application Load Balancer or Network Load Balancer.

To update a listener, use ModifyListener. When you are finished with a listener, you can delete it using DeleteListener. If you are finished with both the listener and the load balancer, you can delete them both using DeleteLoadBalancer.

This operation is idempotent, which means that it completes at most one time. If you attempt to create multiple listeners with the same settings, each call succeeds.

For more information, see Listeners for Your Application Load Balancers in the Application Load Balancers Guide and Listeners for Your Network Load Balancers in the Network Load Balancers Guide.

" + "documentation":"

Creates a listener for the specified Application Load Balancer, Network Load Balancer. or Gateway Load Balancer.

For more information, see the following:

This operation is idempotent, which means that it completes at most one time. If you attempt to create multiple listeners with the same settings, each call succeeds.

" }, "CreateLoadBalancer":{ "name":"CreateLoadBalancer", @@ -108,7 +108,7 @@ {"shape":"AvailabilityZoneNotSupportedException"}, {"shape":"OperationNotPermittedException"} ], - "documentation":"

Creates an Application Load Balancer or a Network Load Balancer.

When you create a load balancer, you can specify security groups, public subnets, IP address type, and tags. Otherwise, you could do so later using SetSecurityGroups, SetSubnets, SetIpAddressType, and AddTags.

To create listeners for your load balancer, use CreateListener. To describe your current load balancers, see DescribeLoadBalancers. When you are finished with a load balancer, you can delete it using DeleteLoadBalancer.

For limit information, see Limits for Your Application Load Balancer in the Application Load Balancers Guide and Limits for Your Network Load Balancer in the Network Load Balancers Guide.

This operation is idempotent, which means that it completes at most one time. If you attempt to create multiple load balancers with the same settings, each call succeeds.

For more information, see Application Load Balancers in the Application Load Balancers Guide and Network Load Balancers in the Network Load Balancers Guide.

" + "documentation":"

Creates an Application Load Balancer, Network Load Balancer, or Gateway Load Balancer.

For more information, see the following:

This operation is idempotent, which means that it completes at most one time. If you attempt to create multiple load balancers with the same settings, each call succeeds.

" }, "CreateRule":{ "name":"CreateRule", @@ -138,7 +138,7 @@ {"shape":"TooManyUniqueTargetGroupsPerLoadBalancerException"}, {"shape":"TooManyTagsException"} ], - "documentation":"

Creates a rule for the specified listener. The listener must be associated with an Application Load Balancer.

Each rule consists of a priority, one or more actions, and one or more conditions. Rules are evaluated in priority order, from the lowest value to the highest value. When the conditions for a rule are met, its actions are performed. If the conditions for no rules are met, the actions for the default rule are performed. For more information, see Listener Rules in the Application Load Balancers Guide.

To view your current rules, use DescribeRules. To update a rule, use ModifyRule. To set the priorities of your rules, use SetRulePriorities. To delete a rule, use DeleteRule.

" + "documentation":"

Creates a rule for the specified listener. The listener must be associated with an Application Load Balancer.

Each rule consists of a priority, one or more actions, and one or more conditions. Rules are evaluated in priority order, from the lowest value to the highest value. When the conditions for a rule are met, its actions are performed. If the conditions for no rules are met, the actions for the default rule are performed. For more information, see Listener rules in the Application Load Balancers Guide.

" }, "CreateTargetGroup":{ "name":"CreateTargetGroup", @@ -157,7 +157,7 @@ {"shape":"InvalidConfigurationRequestException"}, {"shape":"TooManyTagsException"} ], - "documentation":"

Creates a target group.

To register targets with the target group, use RegisterTargets. To update the health check settings for the target group, use ModifyTargetGroup. To monitor the health of targets in the target group, use DescribeTargetHealth.

To route traffic to the targets in a target group, specify the target group in an action using CreateListener or CreateRule.

To delete a target group, use DeleteTargetGroup.

This operation is idempotent, which means that it completes at most one time. If you attempt to create multiple target groups with the same settings, each call succeeds.

For more information, see Target Groups for Your Application Load Balancers in the Application Load Balancers Guide or Target Groups for Your Network Load Balancers in the Network Load Balancers Guide.

" + "documentation":"

Creates a target group.

For more information, see the following:

This operation is idempotent, which means that it completes at most one time. If you attempt to create multiple target groups with the same settings, each call succeeds.

" }, "DeleteListener":{ "name":"DeleteListener", @@ -173,7 +173,7 @@ "errors":[ {"shape":"ListenerNotFoundException"} ], - "documentation":"

Deletes the specified listener.

Alternatively, your listener is deleted when you delete the load balancer to which it is attached, using DeleteLoadBalancer.

" + "documentation":"

Deletes the specified listener.

Alternatively, your listener is deleted when you delete the load balancer to which it is attached.

" }, "DeleteLoadBalancer":{ "name":"DeleteLoadBalancer", @@ -191,7 +191,7 @@ {"shape":"OperationNotPermittedException"}, {"shape":"ResourceInUseException"} ], - "documentation":"

Deletes the specified Application Load Balancer or Network Load Balancer and its attached listeners.

You can't delete a load balancer if deletion protection is enabled. If the load balancer does not exist or has already been deleted, the call succeeds.

Deleting a load balancer does not affect its registered targets. For example, your EC2 instances continue to run and are still registered to their target groups. If you no longer need these EC2 instances, you can stop or terminate them.

" + "documentation":"

Deletes the specified Application Load Balancer, Network Load Balancer, or Gateway Load Balancer. Deleting a load balancer also deletes its listeners.

You can't delete a load balancer if deletion protection is enabled. If the load balancer does not exist or has already been deleted, the call succeeds.

Deleting a load balancer does not affect its registered targets. For example, your EC2 instances continue to run and are still registered to their target groups. If you no longer need these EC2 instances, you can stop or terminate them.

" }, "DeleteRule":{ "name":"DeleteRule", @@ -224,7 +224,7 @@ "errors":[ {"shape":"ResourceInUseException"} ], - "documentation":"

Deletes the specified target group.

You can delete a target group if it is not referenced by any actions. Deleting a target group also deletes any associated health checks.

" + "documentation":"

Deletes the specified target group.

You can delete a target group if it is not referenced by any actions. Deleting a target group also deletes any associated health checks. Deleting a target group does not affect its registered targets. For example, any EC2 instances continue to run until you stop or terminate them.

" }, "DeregisterTargets":{ "name":"DeregisterTargets", @@ -254,7 +254,7 @@ "shape":"DescribeAccountLimitsOutput", "resultWrapper":"DescribeAccountLimitsResult" }, - "documentation":"

Describes the current Elastic Load Balancing resource limits for your AWS account.

For more information, see Limits for Your Application Load Balancers in the Application Load Balancer Guide or Limits for Your Network Load Balancers in the Network Load Balancers Guide.

" + "documentation":"

Describes the current Elastic Load Balancing resource limits for your AWS account.

For more information, see the following:

" }, "DescribeListenerCertificates":{ "name":"DescribeListenerCertificates", @@ -270,7 +270,7 @@ "errors":[ {"shape":"ListenerNotFoundException"} ], - "documentation":"

Describes the default certificate and the certificate list for the specified HTTPS or TLS listener.

If the default certificate is also in the certificate list, it appears twice in the results (once with IsDefault set to true and once with IsDefault set to false).

For more information, see SSL Certificates in the Application Load Balancers Guide.

" + "documentation":"

Describes the default certificate and the certificate list for the specified HTTPS or TLS listener.

If the default certificate is also in the certificate list, it appears twice in the results (once with IsDefault set to true and once with IsDefault set to false).

For more information, see SSL certificates in the Application Load Balancers Guide or Server certificates in the Network Load Balancers Guide.

" }, "DescribeListeners":{ "name":"DescribeListeners", @@ -288,7 +288,7 @@ {"shape":"LoadBalancerNotFoundException"}, {"shape":"UnsupportedProtocolException"} ], - "documentation":"

Describes the specified listeners or the listeners for the specified Application Load Balancer or Network Load Balancer. You must specify either a load balancer or one or more listeners.

For an HTTPS or TLS listener, the output includes the default certificate for the listener. To describe the certificate list for the listener, use DescribeListenerCertificates.

" + "documentation":"

Describes the specified listeners or the listeners for the specified Application Load Balancer, Network Load Balancer, or Gateway Load Balancer. You must specify either a load balancer or one or more listeners.

" }, "DescribeLoadBalancerAttributes":{ "name":"DescribeLoadBalancerAttributes", @@ -304,7 +304,7 @@ "errors":[ {"shape":"LoadBalancerNotFoundException"} ], - "documentation":"

Describes the attributes for the specified Application Load Balancer or Network Load Balancer.

For more information, see Load Balancer Attributes in the Application Load Balancers Guide or Load Balancer Attributes in the Network Load Balancers Guide.

" + "documentation":"

Describes the attributes for the specified Application Load Balancer, Network Load Balancer, or Gateway Load Balancer.

For more information, see the following:

" }, "DescribeLoadBalancers":{ "name":"DescribeLoadBalancers", @@ -320,7 +320,7 @@ "errors":[ {"shape":"LoadBalancerNotFoundException"} ], - "documentation":"

Describes the specified load balancers or all of your load balancers.

To describe the listeners for a load balancer, use DescribeListeners. To describe the attributes for a load balancer, use DescribeLoadBalancerAttributes.

" + "documentation":"

Describes the specified load balancers or all of your load balancers.

" }, "DescribeRules":{ "name":"DescribeRules", @@ -354,7 +354,7 @@ "errors":[ {"shape":"SSLPolicyNotFoundException"} ], - "documentation":"

Describes the specified policies or all policies used for SSL negotiation.

For more information, see Security Policies in the Application Load Balancers Guide.

" + "documentation":"

Describes the specified policies or all policies used for SSL negotiation.

For more information, see Security policies in the Application Load Balancers Guide or Security policies in the Network Load Balancers Guide.

" }, "DescribeTags":{ "name":"DescribeTags", @@ -373,7 +373,7 @@ {"shape":"ListenerNotFoundException"}, {"shape":"RuleNotFoundException"} ], - "documentation":"

Describes the tags for the specified Elastic Load Balancing resources. You can describe the tags for one or more Application Load Balancers, Network Load Balancers, target groups, listeners, or rules.

" + "documentation":"

Describes the tags for the specified Elastic Load Balancing resources. You can describe the tags for one or more Application Load Balancers, Network Load Balancers, Gateway Load Balancers, target groups, listeners, or rules.

" }, "DescribeTargetGroupAttributes":{ "name":"DescribeTargetGroupAttributes", @@ -389,7 +389,7 @@ "errors":[ {"shape":"TargetGroupNotFoundException"} ], - "documentation":"

Describes the attributes for the specified target group.

For more information, see Target Group Attributes in the Application Load Balancers Guide or Target Group Attributes in the Network Load Balancers Guide.

" + "documentation":"

Describes the attributes for the specified target group.

For more information, see the following:

" }, "DescribeTargetGroups":{ "name":"DescribeTargetGroups", @@ -406,7 +406,7 @@ {"shape":"LoadBalancerNotFoundException"}, {"shape":"TargetGroupNotFoundException"} ], - "documentation":"

Describes the specified target groups or all of your target groups. By default, all target groups are described. Alternatively, you can specify one of the following to filter the results: the ARN of the load balancer, the names of one or more target groups, or the ARNs of one or more target groups.

To describe the targets for a target group, use DescribeTargetHealth. To describe the attributes of a target group, use DescribeTargetGroupAttributes.

" + "documentation":"

Describes the specified target groups or all of your target groups. By default, all target groups are described. Alternatively, you can specify one of the following to filter the results: the ARN of the load balancer, the names of one or more target groups, or the ARNs of one or more target groups.

" }, "DescribeTargetHealth":{ "name":"DescribeTargetHealth", @@ -473,7 +473,7 @@ {"shape":"LoadBalancerNotFoundException"}, {"shape":"InvalidConfigurationRequestException"} ], - "documentation":"

Modifies the specified attributes of the specified Application Load Balancer or Network Load Balancer.

If any of the specified attributes can't be modified as requested, the call fails. Any existing attributes that you do not modify retain their current values.

" + "documentation":"

Modifies the specified attributes of the specified Application Load Balancer, Network Load Balancer, or Gateway Load Balancer.

If any of the specified attributes can't be modified as requested, the call fails. Any existing attributes that you do not modify retain their current values.

" }, "ModifyRule":{ "name":"ModifyRule", @@ -499,7 +499,7 @@ {"shape":"InvalidLoadBalancerActionException"}, {"shape":"TooManyUniqueTargetGroupsPerLoadBalancerException"} ], - "documentation":"

Replaces the specified properties of the specified rule. Any properties that you do not specify are unchanged.

To add an item to a list, remove an item from a list, or update an item in a list, you must provide the entire list. For example, to add an action, specify a list with the current actions plus the new action.

To modify the actions for the default rule, use ModifyListener.

" + "documentation":"

Replaces the specified properties of the specified rule. Any properties that you do not specify are unchanged.

To add an item to a list, remove an item from a list, or update an item in a list, you must provide the entire list. For example, to add an action, specify a list with the current actions plus the new action.

" }, "ModifyTargetGroup":{ "name":"ModifyTargetGroup", @@ -516,7 +516,7 @@ {"shape":"TargetGroupNotFoundException"}, {"shape":"InvalidConfigurationRequestException"} ], - "documentation":"

Modifies the health checks used when evaluating the health state of the targets in the specified target group.

To monitor the health of the targets, use DescribeTargetHealth.

" + "documentation":"

Modifies the health checks used when evaluating the health state of the targets in the specified target group.

" }, "ModifyTargetGroupAttributes":{ "name":"ModifyTargetGroupAttributes", @@ -552,7 +552,7 @@ {"shape":"InvalidTargetException"}, {"shape":"TooManyRegistrationsForTargetIdException"} ], - "documentation":"

Registers the specified targets with the specified target group.

If the target is an EC2 instance, it must be in the running state when you register it.

By default, the load balancer routes requests to registered targets using the protocol and port for the target group. Alternatively, you can override the port for a target when you register it. You can register each EC2 instance or IP address with the same target group multiple times using different ports.

With a Network Load Balancer, you cannot register instances by instance ID if they have the following instance types: C1, CC1, CC2, CG1, CG2, CR1, CS1, G1, G2, HI1, HS1, M1, M2, M3, and T1. You can register instances of these types by IP address.

To remove a target from a target group, use DeregisterTargets.

" + "documentation":"

Registers the specified targets with the specified target group.

If the target is an EC2 instance, it must be in the running state when you register it.

By default, the load balancer routes requests to registered targets using the protocol and port for the target group. Alternatively, you can override the port for a target when you register it. You can register each EC2 instance or IP address with the same target group multiple times using different ports.

With a Network Load Balancer, you cannot register instances by instance ID if they have the following instance types: C1, CC1, CC2, CG1, CG2, CR1, CS1, G1, G2, HI1, HS1, M1, M2, M3, and T1. You can register instances of these types by IP address.

" }, "RemoveListenerCertificates":{ "name":"RemoveListenerCertificates", @@ -569,7 +569,7 @@ {"shape":"ListenerNotFoundException"}, {"shape":"OperationNotPermittedException"} ], - "documentation":"

Removes the specified certificate from the certificate list for the specified HTTPS or TLS listener.

You can't remove the default certificate for a listener. To replace the default certificate, call ModifyListener.

To list the certificates for your listener, use DescribeListenerCertificates.

" + "documentation":"

Removes the specified certificate from the certificate list for the specified HTTPS or TLS listener.

" }, "RemoveTags":{ "name":"RemoveTags", @@ -589,7 +589,7 @@ {"shape":"RuleNotFoundException"}, {"shape":"TooManyTagsException"} ], - "documentation":"

Removes the specified tags from the specified Elastic Load Balancing resources. You can remove the tags for one or more Application Load Balancers, Network Load Balancers, target groups, listeners, or rules.

To list the current tags for your resources, use DescribeTags.

" + "documentation":"

Removes the specified tags from the specified Elastic Load Balancing resources. You can remove the tags for one or more Application Load Balancers, Network Load Balancers, Gateway Load Balancers, target groups, listeners, or rules.

" }, "SetIpAddressType":{ "name":"SetIpAddressType", @@ -643,7 +643,7 @@ {"shape":"InvalidConfigurationRequestException"}, {"shape":"InvalidSecurityGroupException"} ], - "documentation":"

Associates the specified security groups with the specified Application Load Balancer. The specified security groups override the previously associated security groups.

You can't specify a security group for a Network Load Balancer.

" + "documentation":"

Associates the specified security groups with the specified Application Load Balancer. The specified security groups override the previously associated security groups.

You can't specify a security group for a Network Load Balancer or Gateway Load Balancer.

" }, "SetSubnets":{ "name":"SetSubnets", @@ -664,7 +664,7 @@ {"shape":"AllocationIdNotFoundException"}, {"shape":"AvailabilityZoneNotSupportedException"} ], - "documentation":"

Enables the Availability Zones for the specified public subnets for the specified load balancer. The specified subnets replace the previously enabled subnets.

When you specify subnets for a Network Load Balancer, you must include all subnets that were enabled previously, with their existing configurations, plus any additional subnets.

" + "documentation":"

Enables the Availability Zones for the specified public subnets for the specified Application Load Balancer or Network Load Balancer. The specified subnets replace the previously enabled subnets.

When you specify subnets for a Network Load Balancer, you must include all subnets that were enabled previously, with their existing configurations, plus any additional subnets.

" } }, "shapes":{ @@ -1052,8 +1052,6 @@ "type":"structure", "required":[ "LoadBalancerArn", - "Protocol", - "Port", "DefaultActions" ], "members":{ @@ -1063,19 +1061,19 @@ }, "Protocol":{ "shape":"ProtocolEnum", - "documentation":"

The protocol for connections from clients to the load balancer. For Application Load Balancers, the supported protocols are HTTP and HTTPS. For Network Load Balancers, the supported protocols are TCP, TLS, UDP, and TCP_UDP.

" + "documentation":"

The protocol for connections from clients to the load balancer. For Application Load Balancers, the supported protocols are HTTP and HTTPS. For Network Load Balancers, the supported protocols are TCP, TLS, UDP, and TCP_UDP. You cannot specify a protocol for a Gateway Load Balancer.

" }, "Port":{ "shape":"Port", - "documentation":"

The port on which the load balancer is listening.

" + "documentation":"

The port on which the load balancer is listening. You cannot specify a port for a Gateway Load Balancer.

" }, "SslPolicy":{ "shape":"SslPolicyName", - "documentation":"

[HTTPS and TLS listeners] The security policy that defines which protocols and ciphers are supported. The following are the possible values:

  • ELBSecurityPolicy-2016-08

  • ELBSecurityPolicy-TLS-1-0-2015-04

  • ELBSecurityPolicy-TLS-1-1-2017-01

  • ELBSecurityPolicy-TLS-1-2-2017-01

  • ELBSecurityPolicy-TLS-1-2-Ext-2018-06

  • ELBSecurityPolicy-FS-2018-06

  • ELBSecurityPolicy-FS-1-1-2019-08

  • ELBSecurityPolicy-FS-1-2-2019-08

  • ELBSecurityPolicy-FS-1-2-Res-2019-08

For more information, see Security Policies in the Application Load Balancers Guide and Security Policies in the Network Load Balancers Guide.

" + "documentation":"

[HTTPS and TLS listeners] The security policy that defines which protocols and ciphers are supported.

For more information, see Security policies in the Application Load Balancers Guide and Security policies in the Network Load Balancers Guide.

" }, "Certificates":{ "shape":"CertificateList", - "documentation":"

[HTTPS and TLS listeners] The default certificate for the listener. You must provide exactly one certificate. Set CertificateArn to the certificate ARN but do not set IsDefault.

To create a certificate list for the listener, use AddListenerCertificates.

" + "documentation":"

[HTTPS and TLS listeners] The default certificate for the listener. You must provide exactly one certificate. Set CertificateArn to the certificate ARN but do not set IsDefault.

" }, "DefaultActions":{ "shape":"Actions", @@ -1083,7 +1081,7 @@ }, "AlpnPolicy":{ "shape":"AlpnPolicyName", - "documentation":"

[TLS listeners] The name of the Application-Layer Protocol Negotiation (ALPN) policy. You can specify one policy name. The following are the possible values:

  • HTTP1Only

  • HTTP2Only

  • HTTP2Optional

  • HTTP2Preferred

  • None

For more information, see ALPN Policies in the Network Load Balancers Guide.

" + "documentation":"

[TLS listeners] The name of the Application-Layer Protocol Negotiation (ALPN) policy. You can specify one policy name. The following are the possible values:

  • HTTP1Only

  • HTTP2Only

  • HTTP2Optional

  • HTTP2Preferred

  • None

For more information, see ALPN policies in the Network Load Balancers Guide.

" }, "Tags":{ "shape":"TagList", @@ -1110,11 +1108,11 @@ }, "Subnets":{ "shape":"Subnets", - "documentation":"

The IDs of the public subnets. You can specify only one subnet per Availability Zone. You must specify either subnets or subnet mappings.

[Application Load Balancers] You must specify subnets from at least two Availability Zones.

[Application Load Balancers on Outposts] You must specify one Outpost subnet.

[Application Load Balancers on Local Zones] You can specify subnets from one or more Local Zones.

[Network Load Balancers] You can specify subnets from one or more Availability Zones.

" + "documentation":"

The IDs of the public subnets. You can specify only one subnet per Availability Zone. You must specify either subnets or subnet mappings.

[Application Load Balancers] You must specify subnets from at least two Availability Zones.

[Application Load Balancers on Outposts] You must specify one Outpost subnet.

[Application Load Balancers on Local Zones] You can specify subnets from one or more Local Zones.

[Network Load Balancers] You can specify subnets from one or more Availability Zones.

[Gateway Load Balancers] You can specify subnets from one or more Availability Zones.

" }, "SubnetMappings":{ "shape":"SubnetMappings", - "documentation":"

The IDs of the public subnets. You can specify only one subnet per Availability Zone. You must specify either subnets or subnet mappings.

[Application Load Balancers] You must specify subnets from at least two Availability Zones. You cannot specify Elastic IP addresses for your subnets.

[Application Load Balancers on Outposts] You must specify one Outpost subnet.

[Application Load Balancers on Local Zones] You can specify subnets from one or more Local Zones.

[Network Load Balancers] You can specify subnets from one or more Availability Zones. You can specify one Elastic IP address per subnet if you need static IP addresses for your internet-facing load balancer. For internal load balancers, you can specify one private IP address per subnet from the IPv4 range of the subnet.

" + "documentation":"

The IDs of the public subnets. You can specify only one subnet per Availability Zone. You must specify either subnets or subnet mappings.

[Application Load Balancers] You must specify subnets from at least two Availability Zones. You cannot specify Elastic IP addresses for your subnets.

[Application Load Balancers on Outposts] You must specify one Outpost subnet.

[Application Load Balancers on Local Zones] You can specify subnets from one or more Local Zones.

[Network Load Balancers] You can specify subnets from one or more Availability Zones. You can specify one Elastic IP address per subnet if you need static IP addresses for your internet-facing load balancer. For internal load balancers, you can specify one private IP address per subnet from the IPv4 range of the subnet.

[Gateway Load Balancers] You can specify subnets from one or more Availability Zones. You cannot specify Elastic IP addresses for your subnets.

" }, "SecurityGroups":{ "shape":"SecurityGroups", @@ -1122,7 +1120,7 @@ }, "Scheme":{ "shape":"LoadBalancerSchemeEnum", - "documentation":"

The nodes of an Internet-facing load balancer have public IP addresses. The DNS name of an Internet-facing load balancer is publicly resolvable to the public IP addresses of the nodes. Therefore, Internet-facing load balancers can route requests from clients over the internet.

The nodes of an internal load balancer have only private IP addresses. The DNS name of an internal load balancer is publicly resolvable to the private IP addresses of the nodes. Therefore, internal load balancers can route requests only from clients with access to the VPC for the load balancer.

The default is an Internet-facing load balancer.

" + "documentation":"

The nodes of an Internet-facing load balancer have public IP addresses. The DNS name of an Internet-facing load balancer is publicly resolvable to the public IP addresses of the nodes. Therefore, Internet-facing load balancers can route requests from clients over the internet.

The nodes of an internal load balancer have only private IP addresses. The DNS name of an internal load balancer is publicly resolvable to the private IP addresses of the nodes. Therefore, internal load balancers can route requests only from clients with access to the VPC for the load balancer.

The default is an Internet-facing load balancer.

You cannot specify a scheme for a Gateway Load Balancer.

" }, "Tags":{ "shape":"TagList", @@ -1201,7 +1199,7 @@ }, "Protocol":{ "shape":"ProtocolEnum", - "documentation":"

The protocol to use for routing traffic to the targets. For Application Load Balancers, the supported protocols are HTTP and HTTPS. For Network Load Balancers, the supported protocols are TCP, TLS, UDP, or TCP_UDP. A TCP_UDP listener must be associated with a TCP_UDP target group. If the target is a Lambda function, this parameter does not apply.

" + "documentation":"

The protocol to use for routing traffic to the targets. For Application Load Balancers, the supported protocols are HTTP and HTTPS. For Network Load Balancers, the supported protocols are TCP, TLS, UDP, or TCP_UDP. For Gateway Load Balancers, the supported protocol is GENEVE. A TCP_UDP listener must be associated with a TCP_UDP target group. If the target is a Lambda function, this parameter does not apply.

" }, "ProtocolVersion":{ "shape":"ProtocolVersion", @@ -1209,7 +1207,7 @@ }, "Port":{ "shape":"Port", - "documentation":"

The port on which the targets receive traffic. This port is used unless you specify a port override when registering the target. If the target is a Lambda function, this parameter does not apply.

" + "documentation":"

The port on which the targets receive traffic. This port is used unless you specify a port override when registering the target. If the target is a Lambda function, this parameter does not apply. If the protocol is GENEVE, the supported port is 6081.

" }, "VpcId":{ "shape":"VpcId", @@ -1217,11 +1215,11 @@ }, "HealthCheckProtocol":{ "shape":"ProtocolEnum", - "documentation":"

The protocol the load balancer uses when performing health checks on targets. For Application Load Balancers, the default is HTTP. For Network Load Balancers, the default is TCP. The TCP protocol is supported for health checks only if the protocol of the target group is TCP, TLS, UDP, or TCP_UDP. The TLS, UDP, and TCP_UDP protocols are not supported for health checks.

" + "documentation":"

The protocol the load balancer uses when performing health checks on targets. For Application Load Balancers, the default is HTTP. For Network Load Balancers and Gateway Load Balancers, the default is TCP. The TCP protocol is not supported for health checks if the protocol of the target group is HTTP or HTTPS. The GENEVE, TLS, UDP, and TCP_UDP protocols are not supported for health checks.

" }, "HealthCheckPort":{ "shape":"HealthCheckPort", - "documentation":"

The port the load balancer uses when performing health checks on targets. The default is traffic-port, which is the port on which each target receives traffic from the load balancer.

" + "documentation":"

The port the load balancer uses when performing health checks on targets. If the protocol is HTTP, HTTPS, TCP, TLS, UDP, or TCP_UDP, the default is traffic-port, which is the port on which each target receives traffic from the load balancer. If the protocol is GENEVE, the default is port 80.

" }, "HealthCheckEnabled":{ "shape":"HealthCheckEnabled", @@ -1233,19 +1231,19 @@ }, "HealthCheckIntervalSeconds":{ "shape":"HealthCheckIntervalSeconds", - "documentation":"

The approximate amount of time, in seconds, between health checks of an individual target. For HTTP and HTTPS health checks, the range is 5–300 seconds. For TCP health checks, the supported values are 10 and 30 seconds. If the target type is instance or ip, the default is 30 seconds. If the target type is lambda, the default is 35 seconds.

" + "documentation":"

The approximate amount of time, in seconds, between health checks of an individual target. For TCP health checks, the supported values are 10 and 30 seconds. If the target type is instance or ip, the default is 30 seconds. If the target group protocol is GENEVE, the default is 10 seconds. If the target type is lambda, the default is 35 seconds.

" }, "HealthCheckTimeoutSeconds":{ "shape":"HealthCheckTimeoutSeconds", - "documentation":"

The amount of time, in seconds, during which no response from a target means a failed health check. For target groups with a protocol of HTTP or HTTPS, the default is 5 seconds. For target groups with a protocol of TCP or TLS, this value must be 6 seconds for HTTP health checks and 10 seconds for TCP and HTTPS health checks. If the target type is lambda, the default is 30 seconds.

" + "documentation":"

The amount of time, in seconds, during which no response from a target means a failed health check. For target groups with a protocol of HTTP, HTTPS, or GENEVE, the default is 5 seconds. For target groups with a protocol of TCP or TLS, this value must be 6 seconds for HTTP health checks and 10 seconds for TCP and HTTPS health checks. If the target type is lambda, the default is 30 seconds.

" }, "HealthyThresholdCount":{ "shape":"HealthCheckThresholdCount", - "documentation":"

The number of consecutive health checks successes required before considering an unhealthy target healthy. For target groups with a protocol of HTTP or HTTPS, the default is 5. For target groups with a protocol of TCP or TLS, the default is 3. If the target type is lambda, the default is 5.

" + "documentation":"

The number of consecutive health checks successes required before considering an unhealthy target healthy. For target groups with a protocol of HTTP or HTTPS, the default is 5. For target groups with a protocol of TCP, TLS, or GENEVE, the default is 3. If the target type is lambda, the default is 5.

" }, "UnhealthyThresholdCount":{ "shape":"HealthCheckThresholdCount", - "documentation":"

The number of consecutive health check failures required before considering a target unhealthy. For target groups with a protocol of HTTP or HTTPS, the default is 2. For target groups with a protocol of TCP or TLS, this value must be the same as the healthy threshold count. If the target type is lambda, the default is 2.

" + "documentation":"

The number of consecutive health check failures required before considering a target unhealthy. If the target group protocol is HTTP or HTTPS, the default is 2. If the target group protocol is TCP or TLS, this value must be the same as the healthy threshold count. If the target group protocol is GENEVE, the default is 3. If the target type is lambda, the default is 2.

" }, "Matcher":{ "shape":"Matcher", @@ -1253,7 +1251,7 @@ }, "TargetType":{ "shape":"TargetTypeEnum", - "documentation":"

The type of target that you must specify when registering targets with this target group. You can't specify targets for a target group using more than one target type.

  • instance - Targets are specified by instance ID. This is the default value.

  • ip - Targets are specified by IP address. You can specify IP addresses from the subnets of the virtual private cloud (VPC) for the target group, the RFC 1918 range (10.0.0.0/8, 172.16.0.0/12, and 192.168.0.0/16), and the RFC 6598 range (100.64.0.0/10). You can't specify publicly routable IP addresses.

  • lambda - The target groups contains a single Lambda function.

" + "documentation":"

The type of target that you must specify when registering targets with this target group. You can't specify targets for a target group using more than one target type.

  • instance - Register targets by instance ID. This is the default value.

  • ip - Register targets by IP address. You can specify IP addresses from the subnets of the virtual private cloud (VPC) for the target group, the RFC 1918 range (10.0.0.0/8, 172.16.0.0/12, and 192.168.0.0/16), and the RFC 6598 range (100.64.0.0/10). You can't specify publicly routable IP addresses.

  • lambda - Register a single Lambda function as a target.

" }, "Tags":{ "shape":"TagList", @@ -1926,7 +1924,7 @@ "members":{ "Name":{ "shape":"Name", - "documentation":"

The name of the limit. The possible values are:

  • application-load-balancers

  • listeners-per-application-load-balancer

  • listeners-per-network-load-balancer

  • network-load-balancers

  • rules-per-application-load-balancer

  • target-groups

  • target-groups-per-action-on-application-load-balancer

  • target-groups-per-action-on-network-load-balancer

  • target-groups-per-application-load-balancer

  • targets-per-application-load-balancer

  • targets-per-availability-zone-per-network-load-balancer

  • targets-per-network-load-balancer

" + "documentation":"

The name of the limit. The possible values are:

  • application-load-balancers

  • condition-values-per-alb-rule

  • condition-wildcards-per-alb-rule

  • gateway-load-balancers

  • gateway-load-balancers-per-vpc

  • geneve-target-groups

  • listeners-per-application-load-balancer

  • listeners-per-network-load-balancer

  • network-load-balancers

  • rules-per-application-load-balancer

  • target-groups

  • target-groups-per-action-on-application-load-balancer

  • target-groups-per-action-on-network-load-balancer

  • target-groups-per-application-load-balancer

  • targets-per-application-load-balancer

  • targets-per-availability-zone-per-gateway-load-balancer

  • targets-per-availability-zone-per-network-load-balancer

  • targets-per-network-load-balancer

" }, "Max":{ "shape":"Max", @@ -2092,7 +2090,7 @@ "members":{ "Key":{ "shape":"LoadBalancerAttributeKey", - "documentation":"

The name of the attribute.

The following attributes are supported by both Application Load Balancers and Network Load Balancers:

  • access_logs.s3.enabled - Indicates whether access logs are enabled. The value is true or false. The default is false.

  • access_logs.s3.bucket - The name of the S3 bucket for the access logs. This attribute is required if access logs are enabled. The bucket must exist in the same region as the load balancer and have a bucket policy that grants Elastic Load Balancing permissions to write to the bucket.

  • access_logs.s3.prefix - The prefix for the location in the S3 bucket for the access logs.

  • deletion_protection.enabled - Indicates whether deletion protection is enabled. The value is true or false. The default is false.

The following attributes are supported by only Application Load Balancers:

  • idle_timeout.timeout_seconds - The idle timeout value, in seconds. The valid range is 1-4000 seconds. The default is 60 seconds.

  • routing.http.desync_mitigation_mode - Determines how the load balancer handles requests that might pose a security risk to your application. The possible values are monitor, defensive, and strictest. The default is defensive.

  • routing.http.drop_invalid_header_fields.enabled - Indicates whether HTTP headers with invalid header fields are removed by the load balancer (true) or routed to targets (false). The default is false.

  • routing.http2.enabled - Indicates whether HTTP/2 is enabled. The value is true or false. The default is true. Elastic Load Balancing requires that message header names contain only alphanumeric characters and hyphens.

The following attributes are supported by only Network Load Balancers:

  • load_balancing.cross_zone.enabled - Indicates whether cross-zone load balancing is enabled. The value is true or false. The default is false.

" + "documentation":"

The name of the attribute.

The following attribute is supported by all load balancers:

  • deletion_protection.enabled - Indicates whether deletion protection is enabled. The value is true or false. The default is false.

The following attributes are supported by both Application Load Balancers and Network Load Balancers:

  • access_logs.s3.enabled - Indicates whether access logs are enabled. The value is true or false. The default is false.

  • access_logs.s3.bucket - The name of the S3 bucket for the access logs. This attribute is required if access logs are enabled. The bucket must exist in the same region as the load balancer and have a bucket policy that grants Elastic Load Balancing permissions to write to the bucket.

  • access_logs.s3.prefix - The prefix for the location in the S3 bucket for the access logs.

The following attributes are supported by only Application Load Balancers:

  • idle_timeout.timeout_seconds - The idle timeout value, in seconds. The valid range is 1-4000 seconds. The default is 60 seconds.

  • routing.http.desync_mitigation_mode - Determines how the load balancer handles requests that might pose a security risk to your application. The possible values are monitor, defensive, and strictest. The default is defensive.

  • routing.http.drop_invalid_header_fields.enabled - Indicates whether HTTP headers with invalid header fields are removed by the load balancer (true) or routed to targets (false). The default is false.

  • routing.http2.enabled - Indicates whether HTTP/2 is enabled. The value is true or false. The default is true. Elastic Load Balancing requires that message header names contain only alphanumeric characters and hyphens.

The following attribute is supported by Network Load Balancers and Gateway Load Balancers:

  • load_balancing.cross_zone.enabled - Indicates whether cross-zone load balancing is enabled. The value is true or false. The default is false.

" }, "Value":{ "shape":"LoadBalancerAttributeValue", @@ -2166,7 +2164,8 @@ "type":"string", "enum":[ "application", - "network" + "network", + "gateway" ] }, "LoadBalancers":{ @@ -2179,7 +2178,7 @@ "members":{ "HttpCode":{ "shape":"HttpCode", - "documentation":"

For Application Load Balancers, you can specify values between 200 and 499, and the default value is 200. You can specify multiple values (for example, \"200,202\") or a range of values (for example, \"200-299\").

For Network Load Balancers, this is \"200–399\".

" + "documentation":"

For Application Load Balancers, you can specify values between 200 and 499, and the default value is 200. You can specify multiple values (for example, \"200,202\") or a range of values (for example, \"200-299\").

For Network Load Balancers and Gateway Load Balancers, this must be \"200–399\".

" }, "GrpcCode":{ "shape":"GrpcCode", @@ -2199,19 +2198,19 @@ }, "Port":{ "shape":"Port", - "documentation":"

The port for connections from clients to the load balancer.

" + "documentation":"

The port for connections from clients to the load balancer. You cannot specify a port for a Gateway Load Balancer.

" }, "Protocol":{ "shape":"ProtocolEnum", - "documentation":"

The protocol for connections from clients to the load balancer. Application Load Balancers support the HTTP and HTTPS protocols. Network Load Balancers support the TCP, TLS, UDP, and TCP_UDP protocols.

" + "documentation":"

The protocol for connections from clients to the load balancer. Application Load Balancers support the HTTP and HTTPS protocols. Network Load Balancers support the TCP, TLS, UDP, and TCP_UDP protocols. You cannot specify a protocol for a Gateway Load Balancer.

" }, "SslPolicy":{ "shape":"SslPolicyName", - "documentation":"

[HTTPS and TLS listeners] The security policy that defines which protocols and ciphers are supported. The following are the possible values:

  • ELBSecurityPolicy-2016-08

  • ELBSecurityPolicy-TLS-1-0-2015-04

  • ELBSecurityPolicy-TLS-1-1-2017-01

  • ELBSecurityPolicy-TLS-1-2-2017-01

  • ELBSecurityPolicy-TLS-1-2-Ext-2018-06

  • ELBSecurityPolicy-FS-2018-06

  • ELBSecurityPolicy-FS-1-1-2019-08

  • ELBSecurityPolicy-FS-1-2-2019-08

  • ELBSecurityPolicy-FS-1-2-Res-2019-08

For more information, see Security Policies in the Application Load Balancers Guide and Security Policies in the Network Load Balancers Guide.

" + "documentation":"

[HTTPS and TLS listeners] The security policy that defines which protocols and ciphers are supported.

For more information, see Security policies in the Application Load Balancers Guide or Security policies in the Network Load Balancers Guide.

" }, "Certificates":{ "shape":"CertificateList", - "documentation":"

[HTTPS and TLS listeners] The default certificate for the listener. You must provide exactly one certificate. Set CertificateArn to the certificate ARN but do not set IsDefault.

To create a certificate list, use AddListenerCertificates.

" + "documentation":"

[HTTPS and TLS listeners] The default certificate for the listener. You must provide exactly one certificate. Set CertificateArn to the certificate ARN but do not set IsDefault.

" }, "DefaultActions":{ "shape":"Actions", @@ -2219,7 +2218,7 @@ }, "AlpnPolicy":{ "shape":"AlpnPolicyName", - "documentation":"

[TLS listeners] The name of the Application-Layer Protocol Negotiation (ALPN) policy. You can specify one policy name. The following are the possible values:

  • HTTP1Only

  • HTTP2Only

  • HTTP2Optional

  • HTTP2Preferred

  • None

For more information, see ALPN Policies in the Network Load Balancers Guide.

" + "documentation":"

[TLS listeners] The name of the Application-Layer Protocol Negotiation (ALPN) policy. You can specify one policy name. The following are the possible values:

  • HTTP1Only

  • HTTP2Only

  • HTTP2Optional

  • HTTP2Preferred

  • None

For more information, see ALPN policies in the Network Load Balancers Guide.

" } } }, @@ -2321,7 +2320,7 @@ }, "HealthCheckProtocol":{ "shape":"ProtocolEnum", - "documentation":"

The protocol the load balancer uses when performing health checks on targets. The TCP protocol is supported for health checks only if the protocol of the target group is TCP, TLS, UDP, or TCP_UDP. The TLS, UDP, and TCP_UDP protocols are not supported for health checks.

With Network Load Balancers, you can't modify this setting.

" + "documentation":"

The protocol the load balancer uses when performing health checks on targets. The TCP protocol is supported for health checks only if the protocol of the target group is TCP, TLS, UDP, or TCP_UDP. The GENEVE, TLS, UDP, and TCP_UDP protocols are not supported for health checks.

With Network Load Balancers, you can't modify this setting.

" }, "HealthCheckPort":{ "shape":"HealthCheckPort", @@ -2337,7 +2336,7 @@ }, "HealthCheckIntervalSeconds":{ "shape":"HealthCheckIntervalSeconds", - "documentation":"

The approximate amount of time, in seconds, between health checks of an individual target. For HTTP and HTTPS health checks, the range is 5 to 300 seconds. For TPC health checks, the supported values are 10 or 30 seconds.

With Network Load Balancers, you can't modify this setting.

" + "documentation":"

The approximate amount of time, in seconds, between health checks of an individual target. For TCP health checks, the supported values are 10 or 30 seconds.

With Network Load Balancers, you can't modify this setting.

" }, "HealthCheckTimeoutSeconds":{ "shape":"HealthCheckTimeoutSeconds", @@ -2426,7 +2425,8 @@ "TCP", "TLS", "UDP", - "TCP_UDP" + "TCP_UDP", + "GENEVE" ] }, "ProtocolVersion":{"type":"string"}, @@ -2741,7 +2741,7 @@ }, "IpAddressType":{ "shape":"IpAddressType", - "documentation":"

The IP address type. The possible values are ipv4 (for IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses). Internal load balancers must use ipv4. Network Load Balancers must use ipv4.

" + "documentation":"

The IP address type. The possible values are ipv4 (for IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses). Internal load balancers must use ipv4.

" } } }, @@ -2974,7 +2974,7 @@ }, "Port":{ "shape":"Port", - "documentation":"

The port on which the target is listening. Not used if the target is a Lambda function.

" + "documentation":"

The port on which the target is listening. If the target group protocol is GENEVE, the supported port is 6081. Not used if the target is a Lambda function.

" }, "AvailabilityZone":{ "shape":"ZoneName", @@ -3012,7 +3012,7 @@ }, "HealthCheckProtocol":{ "shape":"ProtocolEnum", - "documentation":"

The protocol to use to connect with the target.

" + "documentation":"

The protocol to use to connect with the target. The GENEVE, TLS, UDP, and TCP_UDP protocols are not supported for health checks.

" }, "HealthCheckPort":{ "shape":"HealthCheckPort", @@ -3052,7 +3052,7 @@ }, "TargetType":{ "shape":"TargetTypeEnum", - "documentation":"

The type of target that you must specify when registering targets with this target group. The possible values are instance (targets are specified by instance ID) or ip (targets are specified by IP address).

" + "documentation":"

The type of target that you must specify when registering targets with this target group. The possible values are instance (register targets by instance ID), ip (register targets by IP address), or lambda (register a single Lambda function as a target).

" }, "ProtocolVersion":{ "shape":"ProtocolVersion", @@ -3083,7 +3083,7 @@ "members":{ "Key":{ "shape":"TargetGroupAttributeKey", - "documentation":"

The name of the attribute.

The following attributes are supported by both Application Load Balancers and Network Load Balancers:

  • deregistration_delay.timeout_seconds - The amount of time, in seconds, for Elastic Load Balancing to wait before changing the state of a deregistering target from draining to unused. The range is 0-3600 seconds. The default value is 300 seconds. If the target is a Lambda function, this attribute is not supported.

  • stickiness.enabled - Indicates whether sticky sessions are enabled. The value is true or false. The default is false.

  • stickiness.type - The type of sticky sessions. The possible values are lb_cookie for Application Load Balancers or source_ip for Network Load Balancers.

The following attributes are supported only if the load balancer is an Application Load Balancer and the target is an instance or an IP address:

  • load_balancing.algorithm.type - The load balancing algorithm determines how the load balancer selects targets when routing requests. The value is round_robin or least_outstanding_requests. The default is round_robin.

  • slow_start.duration_seconds - The time period, in seconds, during which a newly registered target receives an increasing share of the traffic to the target group. After this time period ends, the target receives its full share of traffic. The range is 30-900 seconds (15 minutes). The default is 0 seconds (disabled).

  • stickiness.lb_cookie.duration_seconds - The time period, in seconds, during which requests from a client should be routed to the same target. After this time period expires, the load balancer-generated cookie is considered stale. The range is 1 second to 1 week (604800 seconds). The default value is 1 day (86400 seconds).

The following attribute is supported only if the load balancer is an Application Load Balancer and the target is a Lambda function:

  • lambda.multi_value_headers.enabled - Indicates whether the request and response headers that are exchanged between the load balancer and the Lambda function include arrays of values or strings. The value is true or false. The default is false. If the value is false and the request contains a duplicate header field name or query parameter key, the load balancer uses the last value sent by the client.

The following attribute is supported only by Network Load Balancers:

  • proxy_protocol_v2.enabled - Indicates whether Proxy Protocol version 2 is enabled. The value is true or false. The default is false.

" + "documentation":"

The name of the attribute.

The following attribute is supported by all load balancers:

  • deregistration_delay.timeout_seconds - The amount of time, in seconds, for Elastic Load Balancing to wait before changing the state of a deregistering target from draining to unused. The range is 0-3600 seconds. The default value is 300 seconds. If the target is a Lambda function, this attribute is not supported.

The following attributes are supported by both Application Load Balancers and Network Load Balancers:

  • stickiness.enabled - Indicates whether sticky sessions are enabled. The value is true or false. The default is false.

  • stickiness.type - The type of sticky sessions. The possible values are lb_cookie for Application Load Balancers or source_ip for Network Load Balancers.

The following attributes are supported only if the load balancer is an Application Load Balancer and the target is an instance or an IP address:

  • load_balancing.algorithm.type - The load balancing algorithm determines how the load balancer selects targets when routing requests. The value is round_robin or least_outstanding_requests. The default is round_robin.

  • slow_start.duration_seconds - The time period, in seconds, during which a newly registered target receives an increasing share of the traffic to the target group. After this time period ends, the target receives its full share of traffic. The range is 30-900 seconds (15 minutes). The default is 0 seconds (disabled).

  • stickiness.lb_cookie.duration_seconds - The time period, in seconds, during which requests from a client should be routed to the same target. After this time period expires, the load balancer-generated cookie is considered stale. The range is 1 second to 1 week (604800 seconds). The default value is 1 day (86400 seconds).

The following attribute is supported only if the load balancer is an Application Load Balancer and the target is a Lambda function:

  • lambda.multi_value_headers.enabled - Indicates whether the request and response headers that are exchanged between the load balancer and the Lambda function include arrays of values or strings. The value is true or false. The default is false. If the value is false and the request contains a duplicate header field name or query parameter key, the load balancer uses the last value sent by the client.

The following attribute is supported only by Network Load Balancers:

  • proxy_protocol_v2.enabled - Indicates whether Proxy Protocol version 2 is enabled. The value is true or false. The default is false.

" }, "Value":{ "shape":"TargetGroupAttributeValue", @@ -3167,7 +3167,7 @@ }, "Reason":{ "shape":"TargetHealthReasonEnum", - "documentation":"

The reason code.

If the target state is healthy, a reason code is not provided.

If the target state is initial, the reason code can be one of the following values:

  • Elb.RegistrationInProgress - The target is in the process of being registered with the load balancer.

  • Elb.InitialHealthChecking - The load balancer is still sending the target the minimum number of health checks required to determine its health status.

If the target state is unhealthy, the reason code can be one of the following values:

  • Target.ResponseCodeMismatch - The health checks did not return an expected HTTP code. Applies only to Application Load Balancers.

  • Target.Timeout - The health check requests timed out. Applies only to Application Load Balancers.

  • Target.FailedHealthChecks - The load balancer received an error while establishing a connection to the target or the target response was malformed.

  • Elb.InternalError - The health checks failed due to an internal error. Applies only to Application Load Balancers.

If the target state is unused, the reason code can be one of the following values:

  • Target.NotRegistered - The target is not registered with the target group.

  • Target.NotInUse - The target group is not used by any load balancer or the target is in an Availability Zone that is not enabled for its load balancer.

  • Target.InvalidState - The target is in the stopped or terminated state.

  • Target.IpUnusable - The target IP address is reserved for use by a load balancer.

If the target state is draining, the reason code can be the following value:

  • Target.DeregistrationInProgress - The target is in the process of being deregistered and the deregistration delay period has not expired.

If the target state is unavailable, the reason code can be the following value:

  • Target.HealthCheckDisabled - Health checks are disabled for the target group. Applies only to Application Load Balancers.

  • Elb.InternalError - Target health is unavailable due to an internal error. Applies only to Network Load Balancers.

" + "documentation":"

The reason code.

If the target state is healthy, a reason code is not provided.

If the target state is initial, the reason code can be one of the following values:

  • Elb.RegistrationInProgress - The target is in the process of being registered with the load balancer.

  • Elb.InitialHealthChecking - The load balancer is still sending the target the minimum number of health checks required to determine its health status.

If the target state is unhealthy, the reason code can be one of the following values:

  • Target.ResponseCodeMismatch - The health checks did not return an expected HTTP code. Applies only to Application Load Balancers and Gateway Load Balancers.

  • Target.Timeout - The health check requests timed out. Applies only to Application Load Balancers and Gateway Load Balancers.

  • Target.FailedHealthChecks - The load balancer received an error while establishing a connection to the target or the target response was malformed.

  • Elb.InternalError - The health checks failed due to an internal error. Applies only to Application Load Balancers.

If the target state is unused, the reason code can be one of the following values:

  • Target.NotRegistered - The target is not registered with the target group.

  • Target.NotInUse - The target group is not used by any load balancer or the target is in an Availability Zone that is not enabled for its load balancer.

  • Target.InvalidState - The target is in the stopped or terminated state.

  • Target.IpUnusable - The target IP address is reserved for use by a load balancer.

If the target state is draining, the reason code can be the following value:

  • Target.DeregistrationInProgress - The target is in the process of being deregistered and the deregistration delay period has not expired.

If the target state is unavailable, the reason code can be the following value:

  • Target.HealthCheckDisabled - Health checks are disabled for the target group. Applies only to Application Load Balancers.

  • Elb.InternalError - Target health is unavailable due to an internal error. Applies only to Network Load Balancers.

" }, "Description":{ "shape":"Description", @@ -3370,5 +3370,5 @@ "VpcId":{"type":"string"}, "ZoneName":{"type":"string"} }, - "documentation":"Elastic Load Balancing

A load balancer distributes incoming traffic across targets, such as your EC2 instances. This enables you to increase the availability of your application. The load balancer also monitors the health of its registered targets and ensures that it routes traffic only to healthy targets. You configure your load balancer to accept incoming traffic by specifying one or more listeners, which are configured with a protocol and port number for connections from clients to the load balancer. You configure a target group with a protocol and port number for connections from the load balancer to the targets, and with health check settings to be used when checking the health status of the targets.

Elastic Load Balancing supports the following types of load balancers: Application Load Balancers, Network Load Balancers, and Classic Load Balancers. This reference covers Application Load Balancers and Network Load Balancers.

An Application Load Balancer makes routing and load balancing decisions at the application layer (HTTP/HTTPS). A Network Load Balancer makes routing and load balancing decisions at the transport layer (TCP/TLS). Both Application Load Balancers and Network Load Balancers can route requests to one or more ports on each EC2 instance or container instance in your virtual private cloud (VPC). For more information, see the Elastic Load Balancing User Guide.

All Elastic Load Balancing operations are idempotent, which means that they complete at most one time. If you repeat an operation, it succeeds.

" + "documentation":"Elastic Load Balancing

A load balancer distributes incoming traffic across targets, such as your EC2 instances. This enables you to increase the availability of your application. The load balancer also monitors the health of its registered targets and ensures that it routes traffic only to healthy targets. You configure your load balancer to accept incoming traffic by specifying one or more listeners, which are configured with a protocol and port number for connections from clients to the load balancer. You configure a target group with a protocol and port number for connections from the load balancer to the targets, and with health check settings to be used when checking the health status of the targets.

Elastic Load Balancing supports the following types of load balancers: Application Load Balancers, Network Load Balancers, Gateway Load Balancers, and Classic Load Balancers. This reference covers the following load balancer types:

  • Application Load Balancer - Operates at the application layer (layer 7) and supports HTTP and HTTPS.

  • Network Load Balancer - Operates at the transport layer (layer 4) and supports TCP, TLS, and UDP.

  • Gateway Load Balancer - Operates at the network layer (layer 3).

For more information, see the Elastic Load Balancing User Guide.

All Elastic Load Balancing operations are idempotent, which means that they complete at most one time. If you repeat an operation, it succeeds.

" } From a1007af8c8cb29cd024887ba0445748bc344580d Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 10 Nov 2020 19:04:01 +0000 Subject: [PATCH 165/339] Amazon Simple Systems Manager (SSM) Update: Add SessionId as a filter for DescribeSessions API --- ...feature-AmazonSimpleSystemsManagerSSM-b7d3853.json | 6 ++++++ .../main/resources/codegen-resources/service-2.json | 11 ++++++----- 2 files changed, 12 insertions(+), 5 deletions(-) create mode 100644 .changes/next-release/feature-AmazonSimpleSystemsManagerSSM-b7d3853.json diff --git a/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-b7d3853.json b/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-b7d3853.json new file mode 100644 index 000000000000..02ae275aca70 --- /dev/null +++ b/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-b7d3853.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Simple Systems Manager (SSM)", + "contributor": "", + "description": "Add SessionId as a filter for DescribeSessions API" +} diff --git a/services/ssm/src/main/resources/codegen-resources/service-2.json b/services/ssm/src/main/resources/codegen-resources/service-2.json index ec5937ed94b8..e6817055cd36 100644 --- a/services/ssm/src/main/resources/codegen-resources/service-2.json +++ b/services/ssm/src/main/resources/codegen-resources/service-2.json @@ -2432,7 +2432,7 @@ "members":{ "key":{ "shape":"AssociationFilterKey", - "documentation":"

The name of the filter.

" + "documentation":"

The name of the filter.

InstanceId has been deprecated.

" }, "value":{ "shape":"AssociationFilterValue", @@ -8846,7 +8846,7 @@ "members":{ "AssociationFilterList":{ "shape":"AssociationFilterList", - "documentation":"

One or more filters. Use a filter to return a more specific list of results.

" + "documentation":"

One or more filters. Use a filter to return a more specific list of results.

Filtering associations using the InstanceID attribute only returns legacy associations created using the InstanceID attribute. Associations targeting the instance that are part of the Target Attributes ResourceGroup or Tags are not returned.

" }, "MaxResults":{ "shape":"MaxResults", @@ -12766,7 +12766,7 @@ }, "value":{ "shape":"SessionFilterValue", - "documentation":"

The filter value. Valid values for each filter key are as follows:

  • InvokedAfter: Specify a timestamp to limit your results. For example, specify 2018-08-29T00:00:00Z to see sessions that started August 29, 2018, and later.

  • InvokedBefore: Specify a timestamp to limit your results. For example, specify 2018-08-29T00:00:00Z to see sessions that started before August 29, 2018.

  • Target: Specify an instance to which session connections have been made.

  • Owner: Specify an AWS user account to see a list of sessions started by that user.

  • Status: Specify a valid session status to see a list of all sessions with that status. Status values you can specify include:

    • Connected

    • Connecting

    • Disconnected

    • Terminated

    • Terminating

    • Failed

" + "documentation":"

The filter value. Valid values for each filter key are as follows:

  • InvokedAfter: Specify a timestamp to limit your results. For example, specify 2018-08-29T00:00:00Z to see sessions that started August 29, 2018, and later.

  • InvokedBefore: Specify a timestamp to limit your results. For example, specify 2018-08-29T00:00:00Z to see sessions that started before August 29, 2018.

  • Target: Specify an instance to which session connections have been made.

  • Owner: Specify an AWS user account to see a list of sessions started by that user.

  • Status: Specify a valid session status to see a list of all sessions with that status. Status values you can specify include:

    • Connected

    • Connecting

    • Disconnected

    • Terminated

    • Terminating

    • Failed

  • SessionId: Specify a session ID to return details about the session.

" } }, "documentation":"

Describes a filter for Session Manager information.

" @@ -12778,13 +12778,14 @@ "InvokedBefore", "Target", "Owner", - "Status" + "Status", + "SessionId" ] }, "SessionFilterList":{ "type":"list", "member":{"shape":"SessionFilter"}, - "max":5, + "max":6, "min":1 }, "SessionFilterValue":{ From f67eed8a01e8fe9afa7d0b6f760c9a7603b2ae03 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 10 Nov 2020 19:03:58 +0000 Subject: [PATCH 166/339] Auto Scaling Update: Documentation updates and corrections for Amazon EC2 Auto Scaling API Reference and SDKs. --- .../feature-AutoScaling-546c9db.json | 6 + .../codegen-resources/service-2.json | 220 +++++++++--------- 2 files changed, 116 insertions(+), 110 deletions(-) create mode 100644 .changes/next-release/feature-AutoScaling-546c9db.json diff --git a/.changes/next-release/feature-AutoScaling-546c9db.json b/.changes/next-release/feature-AutoScaling-546c9db.json new file mode 100644 index 000000000000..64398ae537b5 --- /dev/null +++ b/.changes/next-release/feature-AutoScaling-546c9db.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Auto Scaling", + "contributor": "", + "description": "Documentation updates and corrections for Amazon EC2 Auto Scaling API Reference and SDKs." +} diff --git a/services/autoscaling/src/main/resources/codegen-resources/service-2.json b/services/autoscaling/src/main/resources/codegen-resources/service-2.json index c1b69c63e03a..3dbf0904b0f3 100644 --- a/services/autoscaling/src/main/resources/codegen-resources/service-2.json +++ b/services/autoscaling/src/main/resources/codegen-resources/service-2.json @@ -22,7 +22,7 @@ {"shape":"ResourceContentionFault"}, {"shape":"ServiceLinkedRoleFailure"} ], - "documentation":"

Attaches one or more EC2 instances to the specified Auto Scaling group.

When you attach instances, Amazon EC2 Auto Scaling increases the desired capacity of the group by the number of instances being attached. If the number of instances being attached plus the desired capacity of the group exceeds the maximum size of the group, the operation fails.

If there is a Classic Load Balancer attached to your Auto Scaling group, the instances are also registered with the load balancer. If there are target groups attached to your Auto Scaling group, the instances are also registered with the target groups.

For more information, see Attach EC2 Instances to Your Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Attaches one or more EC2 instances to the specified Auto Scaling group.

When you attach instances, Amazon EC2 Auto Scaling increases the desired capacity of the group by the number of instances being attached. If the number of instances being attached plus the desired capacity of the group exceeds the maximum size of the group, the operation fails.

If there is a Classic Load Balancer attached to your Auto Scaling group, the instances are also registered with the load balancer. If there are target groups attached to your Auto Scaling group, the instances are also registered with the target groups.

For more information, see Attach EC2 instances to your Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.

" }, "AttachLoadBalancerTargetGroups":{ "name":"AttachLoadBalancerTargetGroups", @@ -39,7 +39,7 @@ {"shape":"ResourceContentionFault"}, {"shape":"ServiceLinkedRoleFailure"} ], - "documentation":"

Attaches one or more target groups to the specified Auto Scaling group.

To describe the target groups for an Auto Scaling group, call the DescribeLoadBalancerTargetGroups API. To detach the target group from the Auto Scaling group, call the DetachLoadBalancerTargetGroups API.

With Application Load Balancers and Network Load Balancers, instances are registered as targets with a target group. With Classic Load Balancers, instances are registered with the load balancer. For more information, see Attaching a Load Balancer to Your Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Attaches one or more target groups to the specified Auto Scaling group.

To describe the target groups for an Auto Scaling group, call the DescribeLoadBalancerTargetGroups API. To detach the target group from the Auto Scaling group, call the DetachLoadBalancerTargetGroups API.

With Application Load Balancers and Network Load Balancers, instances are registered as targets with a target group. With Classic Load Balancers, instances are registered with the load balancer. For more information, see Attaching a load balancer to your Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.

" }, "AttachLoadBalancers":{ "name":"AttachLoadBalancers", @@ -56,7 +56,7 @@ {"shape":"ResourceContentionFault"}, {"shape":"ServiceLinkedRoleFailure"} ], - "documentation":"

To attach an Application Load Balancer or a Network Load Balancer, use the AttachLoadBalancerTargetGroups API operation instead.

Attaches one or more Classic Load Balancers to the specified Auto Scaling group. Amazon EC2 Auto Scaling registers the running instances with these Classic Load Balancers.

To describe the load balancers for an Auto Scaling group, call the DescribeLoadBalancers API. To detach the load balancer from the Auto Scaling group, call the DetachLoadBalancers API.

For more information, see Attaching a Load Balancer to Your Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

To attach an Application Load Balancer or a Network Load Balancer, use the AttachLoadBalancerTargetGroups API operation instead.

Attaches one or more Classic Load Balancers to the specified Auto Scaling group. Amazon EC2 Auto Scaling registers the running instances with these Classic Load Balancers.

To describe the load balancers for an Auto Scaling group, call the DescribeLoadBalancers API. To detach the load balancer from the Auto Scaling group, call the DetachLoadBalancers API.

For more information, see Attaching a load balancer to your Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.

" }, "BatchDeleteScheduledAction":{ "name":"BatchDeleteScheduledAction", @@ -124,7 +124,7 @@ "errors":[ {"shape":"ResourceContentionFault"} ], - "documentation":"

Completes the lifecycle action for the specified token or instance with the specified result.

This step is a part of the procedure for adding a lifecycle hook to an Auto Scaling group:

  1. (Optional) Create a Lambda function and a rule that allows CloudWatch Events to invoke your Lambda function when Amazon EC2 Auto Scaling launches or terminates instances.

  2. (Optional) Create a notification target and an IAM role. The target can be either an Amazon SQS queue or an Amazon SNS topic. The role allows Amazon EC2 Auto Scaling to publish lifecycle notifications to the target.

  3. Create the lifecycle hook. Specify whether the hook is used when the instances launch or terminate.

  4. If you need more time, record the lifecycle action heartbeat to keep the instance in a pending state.

  5. If you finish before the timeout period ends, complete the lifecycle action.

For more information, see Amazon EC2 Auto Scaling Lifecycle Hooks in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Completes the lifecycle action for the specified token or instance with the specified result.

This step is a part of the procedure for adding a lifecycle hook to an Auto Scaling group:

  1. (Optional) Create a Lambda function and a rule that allows CloudWatch Events to invoke your Lambda function when Amazon EC2 Auto Scaling launches or terminates instances.

  2. (Optional) Create a notification target and an IAM role. The target can be either an Amazon SQS queue or an Amazon SNS topic. The role allows Amazon EC2 Auto Scaling to publish lifecycle notifications to the target.

  3. Create the lifecycle hook. Specify whether the hook is used when the instances launch or terminate.

  4. If you need more time, record the lifecycle action heartbeat to keep the instance in a pending state.

  5. If you finish before the timeout period ends, complete the lifecycle action.

For more information, see Amazon EC2 Auto Scaling lifecycle hooks in the Amazon EC2 Auto Scaling User Guide.

" }, "CreateAutoScalingGroup":{ "name":"CreateAutoScalingGroup", @@ -139,7 +139,7 @@ {"shape":"ResourceContentionFault"}, {"shape":"ServiceLinkedRoleFailure"} ], - "documentation":"

Creates an Auto Scaling group with the specified name and attributes.

If you exceed your maximum limit of Auto Scaling groups, the call fails. To query this limit, call the DescribeAccountLimits API. For information about updating this limit, see Amazon EC2 Auto Scaling Service Quotas in the Amazon EC2 Auto Scaling User Guide.

For introductory exercises for creating an Auto Scaling group, see Getting Started with Amazon EC2 Auto Scaling and Tutorial: Set Up a Scaled and Load-Balanced Application in the Amazon EC2 Auto Scaling User Guide. For more information, see Auto Scaling Groups in the Amazon EC2 Auto Scaling User Guide.

Every Auto Scaling group has three size parameters (DesiredCapacity, MaxSize, and MinSize). Usually, you set these sizes based on a specific number of instances. However, if you configure a mixed instances policy that defines weights for the instance types, you must specify these sizes with the same units that you use for weighting instances.

" + "documentation":"

Creates an Auto Scaling group with the specified name and attributes.

If you exceed your maximum limit of Auto Scaling groups, the call fails. To query this limit, call the DescribeAccountLimits API. For information about updating this limit, see Amazon EC2 Auto Scaling service quotas in the Amazon EC2 Auto Scaling User Guide.

For introductory exercises for creating an Auto Scaling group, see Getting started with Amazon EC2 Auto Scaling and Tutorial: Set up a scaled and load-balanced application in the Amazon EC2 Auto Scaling User Guide. For more information, see Auto Scaling groups in the Amazon EC2 Auto Scaling User Guide.

Every Auto Scaling group has three size parameters (DesiredCapacity, MaxSize, and MinSize). Usually, you set these sizes based on a specific number of instances. However, if you configure a mixed instances policy that defines weights for the instance types, you must specify these sizes with the same units that you use for weighting instances.

" }, "CreateLaunchConfiguration":{ "name":"CreateLaunchConfiguration", @@ -153,7 +153,7 @@ {"shape":"LimitExceededFault"}, {"shape":"ResourceContentionFault"} ], - "documentation":"

Creates a launch configuration.

If you exceed your maximum limit of launch configurations, the call fails. To query this limit, call the DescribeAccountLimits API. For information about updating this limit, see Amazon EC2 Auto Scaling Service Quotas in the Amazon EC2 Auto Scaling User Guide.

For more information, see Launch Configurations in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Creates a launch configuration.

If you exceed your maximum limit of launch configurations, the call fails. To query this limit, call the DescribeAccountLimits API. For information about updating this limit, see Amazon EC2 Auto Scaling service quotas in the Amazon EC2 Auto Scaling User Guide.

For more information, see Launch configurations in the Amazon EC2 Auto Scaling User Guide.

" }, "CreateOrUpdateTags":{ "name":"CreateOrUpdateTags", @@ -168,7 +168,7 @@ {"shape":"ResourceContentionFault"}, {"shape":"ResourceInUseFault"} ], - "documentation":"

Creates or updates tags for the specified Auto Scaling group.

When you specify a tag with a key that already exists, the operation overwrites the previous tag definition, and you do not get an error message.

For more information, see Tagging Auto Scaling Groups and Instances in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Creates or updates tags for the specified Auto Scaling group.

When you specify a tag with a key that already exists, the operation overwrites the previous tag definition, and you do not get an error message.

For more information, see Tagging Auto Scaling groups and instances in the Amazon EC2 Auto Scaling User Guide.

" }, "DeleteAutoScalingGroup":{ "name":"DeleteAutoScalingGroup", @@ -236,7 +236,7 @@ {"shape":"ResourceContentionFault"}, {"shape":"ServiceLinkedRoleFailure"} ], - "documentation":"

Deletes the specified scaling policy.

Deleting either a step scaling policy or a simple scaling policy deletes the underlying alarm action, but does not delete the alarm, even if it no longer has an associated action.

For more information, see Deleting a Scaling Policy in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Deletes the specified scaling policy.

Deleting either a step scaling policy or a simple scaling policy deletes the underlying alarm action, but does not delete the alarm, even if it no longer has an associated action.

For more information, see Deleting a scaling policy in the Amazon EC2 Auto Scaling User Guide.

" }, "DeleteScheduledAction":{ "name":"DeleteScheduledAction", @@ -276,7 +276,7 @@ "errors":[ {"shape":"ResourceContentionFault"} ], - "documentation":"

Describes the current Amazon EC2 Auto Scaling resource quotas for your AWS account.

For information about requesting an increase, see Amazon EC2 Auto Scaling Service Quotas in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Describes the current Amazon EC2 Auto Scaling resource quotas for your AWS account.

For information about requesting an increase, see Amazon EC2 Auto Scaling service quotas in the Amazon EC2 Auto Scaling User Guide.

" }, "DescribeAdjustmentTypes":{ "name":"DescribeAdjustmentTypes", @@ -553,7 +553,7 @@ {"shape":"InvalidNextToken"}, {"shape":"ResourceContentionFault"} ], - "documentation":"

Describes the specified tags.

You can use filters to limit the results. For example, you can query for the tags for a specific Auto Scaling group. You can specify multiple values for a filter. A tag must match at least one of the specified values for it to be included in the results.

You can also specify multiple filters. The result includes information for a particular tag only if it matches all the filters. If there's no match, no special message is returned.

For more information, see Tagging Auto Scaling Groups and Instances in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Describes the specified tags.

You can use filters to limit the results. For example, you can query for the tags for a specific Auto Scaling group. You can specify multiple values for a filter. A tag must match at least one of the specified values for it to be included in the results.

You can also specify multiple filters. The result includes information for a particular tag only if it matches all the filters. If there's no match, no special message is returned.

For more information, see Tagging Auto Scaling groups and instances in the Amazon EC2 Auto Scaling User Guide.

" }, "DescribeTerminationPolicyTypes":{ "name":"DescribeTerminationPolicyTypes", @@ -568,7 +568,7 @@ "errors":[ {"shape":"ResourceContentionFault"} ], - "documentation":"

Describes the termination policies supported by Amazon EC2 Auto Scaling.

For more information, see Controlling Which Auto Scaling Instances Terminate During Scale In in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Describes the termination policies supported by Amazon EC2 Auto Scaling.

For more information, see Controlling which Auto Scaling instances terminate during scale in in the Amazon EC2 Auto Scaling User Guide.

" }, "DetachInstances":{ "name":"DetachInstances", @@ -584,7 +584,7 @@ "errors":[ {"shape":"ResourceContentionFault"} ], - "documentation":"

Removes one or more instances from the specified Auto Scaling group.

After the instances are detached, you can manage them independent of the Auto Scaling group.

If you do not specify the option to decrement the desired capacity, Amazon EC2 Auto Scaling launches instances to replace the ones that are detached.

If there is a Classic Load Balancer attached to the Auto Scaling group, the instances are deregistered from the load balancer. If there are target groups attached to the Auto Scaling group, the instances are deregistered from the target groups.

For more information, see Detach EC2 Instances from Your Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Removes one or more instances from the specified Auto Scaling group.

After the instances are detached, you can manage them independent of the Auto Scaling group.

If you do not specify the option to decrement the desired capacity, Amazon EC2 Auto Scaling launches instances to replace the ones that are detached.

If there is a Classic Load Balancer attached to the Auto Scaling group, the instances are deregistered from the load balancer. If there are target groups attached to the Auto Scaling group, the instances are deregistered from the target groups.

For more information, see Detach EC2 instances from your Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.

" }, "DetachLoadBalancerTargetGroups":{ "name":"DetachLoadBalancerTargetGroups", @@ -640,7 +640,7 @@ "errors":[ {"shape":"ResourceContentionFault"} ], - "documentation":"

Enables group metrics for the specified Auto Scaling group. For more information, see Monitoring Your Auto Scaling Groups and Instances in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Enables group metrics for the specified Auto Scaling group. For more information, see Monitoring CloudWatch metrics for your Auto Scaling groups and instances in the Amazon EC2 Auto Scaling User Guide.

" }, "EnterStandby":{ "name":"EnterStandby", @@ -656,7 +656,7 @@ "errors":[ {"shape":"ResourceContentionFault"} ], - "documentation":"

Moves the specified instances into the standby state.

If you choose to decrement the desired capacity of the Auto Scaling group, the instances can enter standby as long as the desired capacity of the Auto Scaling group after the instances are placed into standby is equal to or greater than the minimum capacity of the group.

If you choose not to decrement the desired capacity of the Auto Scaling group, the Auto Scaling group launches new instances to replace the instances on standby.

For more information, see Temporarily Removing Instances from Your Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Moves the specified instances into the standby state.

If you choose to decrement the desired capacity of the Auto Scaling group, the instances can enter standby as long as the desired capacity of the Auto Scaling group after the instances are placed into standby is equal to or greater than the minimum capacity of the group.

If you choose not to decrement the desired capacity of the Auto Scaling group, the Auto Scaling group launches new instances to replace the instances on standby.

For more information, see Temporarily removing instances from your Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.

" }, "ExecutePolicy":{ "name":"ExecutePolicy", @@ -685,7 +685,7 @@ "errors":[ {"shape":"ResourceContentionFault"} ], - "documentation":"

Moves the specified instances out of the standby state.

After you put the instances back in service, the desired capacity is incremented.

For more information, see Temporarily Removing Instances from Your Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Moves the specified instances out of the standby state.

After you put the instances back in service, the desired capacity is incremented.

For more information, see Temporarily removing instances from your Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.

" }, "PutLifecycleHook":{ "name":"PutLifecycleHook", @@ -702,7 +702,7 @@ {"shape":"LimitExceededFault"}, {"shape":"ResourceContentionFault"} ], - "documentation":"

Creates or updates a lifecycle hook for the specified Auto Scaling group.

A lifecycle hook tells Amazon EC2 Auto Scaling to perform an action on an instance when the instance launches (before it is put into service) or as the instance terminates (before it is fully terminated).

This step is a part of the procedure for adding a lifecycle hook to an Auto Scaling group:

  1. (Optional) Create a Lambda function and a rule that allows CloudWatch Events to invoke your Lambda function when Amazon EC2 Auto Scaling launches or terminates instances.

  2. (Optional) Create a notification target and an IAM role. The target can be either an Amazon SQS queue or an Amazon SNS topic. The role allows Amazon EC2 Auto Scaling to publish lifecycle notifications to the target.

  3. Create the lifecycle hook. Specify whether the hook is used when the instances launch or terminate.

  4. If you need more time, record the lifecycle action heartbeat to keep the instance in a pending state using the RecordLifecycleActionHeartbeat API call.

  5. If you finish before the timeout period ends, complete the lifecycle action using the CompleteLifecycleAction API call.

For more information, see Amazon EC2 Auto Scaling Lifecycle Hooks in the Amazon EC2 Auto Scaling User Guide.

If you exceed your maximum limit of lifecycle hooks, which by default is 50 per Auto Scaling group, the call fails.

You can view the lifecycle hooks for an Auto Scaling group using the DescribeLifecycleHooks API call. If you are no longer using a lifecycle hook, you can delete it by calling the DeleteLifecycleHook API.

" + "documentation":"

Creates or updates a lifecycle hook for the specified Auto Scaling group.

A lifecycle hook tells Amazon EC2 Auto Scaling to perform an action on an instance when the instance launches (before it is put into service) or as the instance terminates (before it is fully terminated).

This step is a part of the procedure for adding a lifecycle hook to an Auto Scaling group:

  1. (Optional) Create a Lambda function and a rule that allows CloudWatch Events to invoke your Lambda function when Amazon EC2 Auto Scaling launches or terminates instances.

  2. (Optional) Create a notification target and an IAM role. The target can be either an Amazon SQS queue or an Amazon SNS topic. The role allows Amazon EC2 Auto Scaling to publish lifecycle notifications to the target.

  3. Create the lifecycle hook. Specify whether the hook is used when the instances launch or terminate.

  4. If you need more time, record the lifecycle action heartbeat to keep the instance in a pending state using the RecordLifecycleActionHeartbeat API call.

  5. If you finish before the timeout period ends, complete the lifecycle action using the CompleteLifecycleAction API call.

For more information, see Amazon EC2 Auto Scaling lifecycle hooks in the Amazon EC2 Auto Scaling User Guide.

If you exceed your maximum limit of lifecycle hooks, which by default is 50 per Auto Scaling group, the call fails.

You can view the lifecycle hooks for an Auto Scaling group using the DescribeLifecycleHooks API call. If you are no longer using a lifecycle hook, you can delete it by calling the DeleteLifecycleHook API.

" }, "PutNotificationConfiguration":{ "name":"PutNotificationConfiguration", @@ -716,7 +716,7 @@ {"shape":"ResourceContentionFault"}, {"shape":"ServiceLinkedRoleFailure"} ], - "documentation":"

Configures an Auto Scaling group to send notifications when specified events take place. Subscribers to the specified topic can have messages delivered to an endpoint such as a web server or an email address.

This configuration overwrites any existing configuration.

For more information, see Getting Amazon SNS Notifications When Your Auto Scaling Group Scales in the Amazon EC2 Auto Scaling User Guide.

If you exceed your maximum limit of SNS topics, which is 10 per Auto Scaling group, the call fails.

" + "documentation":"

Configures an Auto Scaling group to send notifications when specified events take place. Subscribers to the specified topic can have messages delivered to an endpoint such as a web server or an email address.

This configuration overwrites any existing configuration.

For more information, see Getting Amazon SNS notifications when your Auto Scaling group scales in the Amazon EC2 Auto Scaling User Guide.

If you exceed your maximum limit of SNS topics, which is 10 per Auto Scaling group, the call fails.

" }, "PutScalingPolicy":{ "name":"PutScalingPolicy", @@ -734,7 +734,7 @@ {"shape":"ResourceContentionFault"}, {"shape":"ServiceLinkedRoleFailure"} ], - "documentation":"

Creates or updates a scaling policy for an Auto Scaling group.

For more information about using scaling policies to scale your Auto Scaling group, see Target Tracking Scaling Policies and Step and Simple Scaling Policies in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Creates or updates a scaling policy for an Auto Scaling group.

For more information about using scaling policies to scale your Auto Scaling group, see Target tracking scaling policies and Step and simple scaling policies in the Amazon EC2 Auto Scaling User Guide.

" }, "PutScheduledUpdateGroupAction":{ "name":"PutScheduledUpdateGroupAction", @@ -748,7 +748,7 @@ {"shape":"LimitExceededFault"}, {"shape":"ResourceContentionFault"} ], - "documentation":"

Creates or updates a scheduled scaling action for an Auto Scaling group. If you leave a parameter unspecified when updating a scheduled scaling action, the corresponding value remains unchanged.

For more information, see Scheduled Scaling in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Creates or updates a scheduled scaling action for an Auto Scaling group. If you leave a parameter unspecified when updating a scheduled scaling action, the corresponding value remains unchanged.

For more information, see Scheduled scaling in the Amazon EC2 Auto Scaling User Guide.

" }, "RecordLifecycleActionHeartbeat":{ "name":"RecordLifecycleActionHeartbeat", @@ -764,7 +764,7 @@ "errors":[ {"shape":"ResourceContentionFault"} ], - "documentation":"

Records a heartbeat for the lifecycle action associated with the specified token or instance. This extends the timeout by the length of time defined using the PutLifecycleHook API call.

This step is a part of the procedure for adding a lifecycle hook to an Auto Scaling group:

  1. (Optional) Create a Lambda function and a rule that allows CloudWatch Events to invoke your Lambda function when Amazon EC2 Auto Scaling launches or terminates instances.

  2. (Optional) Create a notification target and an IAM role. The target can be either an Amazon SQS queue or an Amazon SNS topic. The role allows Amazon EC2 Auto Scaling to publish lifecycle notifications to the target.

  3. Create the lifecycle hook. Specify whether the hook is used when the instances launch or terminate.

  4. If you need more time, record the lifecycle action heartbeat to keep the instance in a pending state.

  5. If you finish before the timeout period ends, complete the lifecycle action.

For more information, see Auto Scaling Lifecycle in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Records a heartbeat for the lifecycle action associated with the specified token or instance. This extends the timeout by the length of time defined using the PutLifecycleHook API call.

This step is a part of the procedure for adding a lifecycle hook to an Auto Scaling group:

  1. (Optional) Create a Lambda function and a rule that allows CloudWatch Events to invoke your Lambda function when Amazon EC2 Auto Scaling launches or terminates instances.

  2. (Optional) Create a notification target and an IAM role. The target can be either an Amazon SQS queue or an Amazon SNS topic. The role allows Amazon EC2 Auto Scaling to publish lifecycle notifications to the target.

  3. Create the lifecycle hook. Specify whether the hook is used when the instances launch or terminate.

  4. If you need more time, record the lifecycle action heartbeat to keep the instance in a pending state.

  5. If you finish before the timeout period ends, complete the lifecycle action.

For more information, see Auto Scaling lifecycle in the Amazon EC2 Auto Scaling User Guide.

" }, "ResumeProcesses":{ "name":"ResumeProcesses", @@ -777,7 +777,7 @@ {"shape":"ResourceInUseFault"}, {"shape":"ResourceContentionFault"} ], - "documentation":"

Resumes the specified suspended automatic scaling processes, or all suspended process, for the specified Auto Scaling group.

For more information, see Suspending and Resuming Scaling Processes in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Resumes the specified suspended auto scaling processes, or all suspended process, for the specified Auto Scaling group.

For more information, see Suspending and resuming scaling processes in the Amazon EC2 Auto Scaling User Guide.

" }, "SetDesiredCapacity":{ "name":"SetDesiredCapacity", @@ -790,7 +790,7 @@ {"shape":"ScalingActivityInProgressFault"}, {"shape":"ResourceContentionFault"} ], - "documentation":"

Sets the size of the specified Auto Scaling group.

If a scale-in activity occurs as a result of a new DesiredCapacity value that is lower than the current size of the group, the Auto Scaling group uses its termination policy to determine which instances to terminate.

For more information, see Manual Scaling in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Sets the size of the specified Auto Scaling group.

If a scale-in activity occurs as a result of a new DesiredCapacity value that is lower than the current size of the group, the Auto Scaling group uses its termination policy to determine which instances to terminate.

For more information, see Manual scaling in the Amazon EC2 Auto Scaling User Guide.

" }, "SetInstanceHealth":{ "name":"SetInstanceHealth", @@ -802,7 +802,7 @@ "errors":[ {"shape":"ResourceContentionFault"} ], - "documentation":"

Sets the health status of the specified instance.

For more information, see Health Checks for Auto Scaling Instances in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Sets the health status of the specified instance.

For more information, see Health checks for Auto Scaling instances in the Amazon EC2 Auto Scaling User Guide.

" }, "SetInstanceProtection":{ "name":"SetInstanceProtection", @@ -819,7 +819,7 @@ {"shape":"LimitExceededFault"}, {"shape":"ResourceContentionFault"} ], - "documentation":"

Updates the instance protection settings of the specified instances.

For more information about preventing instances that are part of an Auto Scaling group from terminating on scale in, see Instance Protection in the Amazon EC2 Auto Scaling User Guide.

If you exceed your maximum limit of instance IDs, which is 50 per Auto Scaling group, the call fails.

" + "documentation":"

Updates the instance protection settings of the specified instances.

For more information about preventing instances that are part of an Auto Scaling group from terminating on scale in, see Instance scale-in protection in the Amazon EC2 Auto Scaling User Guide.

If you exceed your maximum limit of instance IDs, which is 50 per Auto Scaling group, the call fails.

" }, "StartInstanceRefresh":{ "name":"StartInstanceRefresh", @@ -850,7 +850,7 @@ {"shape":"ResourceInUseFault"}, {"shape":"ResourceContentionFault"} ], - "documentation":"

Suspends the specified automatic scaling processes, or all processes, for the specified Auto Scaling group.

If you suspend either the Launch or Terminate process types, it can prevent other process types from functioning properly. For more information, see Suspending and Resuming Scaling Processes in the Amazon EC2 Auto Scaling User Guide.

To resume processes that have been suspended, call the ResumeProcesses API.

" + "documentation":"

Suspends the specified auto scaling processes, or all processes, for the specified Auto Scaling group.

If you suspend either the Launch or Terminate process types, it can prevent other process types from functioning properly. For more information, see Suspending and resuming scaling processes in the Amazon EC2 Auto Scaling User Guide.

To resume processes that have been suspended, call the ResumeProcesses API.

" }, "TerminateInstanceInAutoScalingGroup":{ "name":"TerminateInstanceInAutoScalingGroup", @@ -867,7 +867,7 @@ {"shape":"ScalingActivityInProgressFault"}, {"shape":"ResourceContentionFault"} ], - "documentation":"

Terminates the specified instance and optionally adjusts the desired group size.

This call simply makes a termination request. The instance is not terminated immediately. When an instance is terminated, the instance status changes to terminated. You can't connect to or start an instance after you've terminated it.

If you do not specify the option to decrement the desired capacity, Amazon EC2 Auto Scaling launches instances to replace the ones that are terminated.

By default, Amazon EC2 Auto Scaling balances instances across all Availability Zones. If you decrement the desired capacity, your Auto Scaling group can become unbalanced between Availability Zones. Amazon EC2 Auto Scaling tries to rebalance the group, and rebalancing might terminate instances in other zones. For more information, see Rebalancing Activities in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Terminates the specified instance and optionally adjusts the desired group size.

This call simply makes a termination request. The instance is not terminated immediately. When an instance is terminated, the instance status changes to terminated. You can't connect to or start an instance after you've terminated it.

If you do not specify the option to decrement the desired capacity, Amazon EC2 Auto Scaling launches instances to replace the ones that are terminated.

By default, Amazon EC2 Auto Scaling balances instances across all Availability Zones. If you decrement the desired capacity, your Auto Scaling group can become unbalanced between Availability Zones. Amazon EC2 Auto Scaling tries to rebalance the group, and rebalancing might terminate instances in other zones. For more information, see Rebalancing activities in the Amazon EC2 Auto Scaling User Guide.

" }, "UpdateAutoScalingGroup":{ "name":"UpdateAutoScalingGroup", @@ -1214,7 +1214,7 @@ }, "CapacityRebalance":{ "shape":"CapacityRebalanceEnabled", - "documentation":"

Indicates whether capacity rebalance is enabled.

" + "documentation":"

Indicates whether Capacity Rebalancing is enabled.

" } }, "documentation":"

Describes an Auto Scaling group.

" @@ -1231,7 +1231,7 @@ "members":{ "AutoScalingGroupNames":{ "shape":"AutoScalingGroupNames", - "documentation":"

The names of the Auto Scaling groups. Each name can be a maximum of 1600 characters. By default, you can only specify up to 50 names. You can optionally increase this limit using the MaxRecords parameter.

If you omit this parameter, all Auto Scaling groups are described.

" + "documentation":"

The names of the Auto Scaling groups. By default, you can only specify up to 50 names. You can optionally increase this limit using the MaxRecords parameter.

If you omit this parameter, all Auto Scaling groups are described.

" }, "NextToken":{ "shape":"XmlString", @@ -1511,19 +1511,19 @@ }, "LaunchConfigurationName":{ "shape":"ResourceName", - "documentation":"

The name of the launch configuration to use when an instance is launched. To get the launch configuration name, use the DescribeLaunchConfigurations API operation. New launch configurations can be created with the CreateLaunchConfiguration API.

You must specify one of the following parameters in your request: LaunchConfigurationName, LaunchTemplate, InstanceId, or MixedInstancesPolicy.

" + "documentation":"

The name of the launch configuration to use to launch instances.

Conditional: You must specify either a launch template (LaunchTemplate or MixedInstancesPolicy) or a launch configuration (LaunchConfigurationName or InstanceId).

" }, "LaunchTemplate":{ "shape":"LaunchTemplateSpecification", - "documentation":"

Parameters used to specify the launch template and version to use when an instance is launched.

For more information, see LaunchTemplateSpecification in the Amazon EC2 Auto Scaling API Reference.

You can alternatively associate a launch template to the Auto Scaling group by using the MixedInstancesPolicy parameter.

You must specify one of the following parameters in your request: LaunchConfigurationName, LaunchTemplate, InstanceId, or MixedInstancesPolicy.

" + "documentation":"

Parameters used to specify the launch template and version to use to launch instances.

Conditional: You must specify either a launch template (LaunchTemplate or MixedInstancesPolicy) or a launch configuration (LaunchConfigurationName or InstanceId).

The launch template that is specified must be configured for use with an Auto Scaling group. For more information, see Creating a launch template for an Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.

" }, "MixedInstancesPolicy":{ "shape":"MixedInstancesPolicy", - "documentation":"

An embedded object that specifies a mixed instances policy. The required parameters must be specified. If optional parameters are unspecified, their default values are used.

The policy includes parameters that not only define the distribution of On-Demand Instances and Spot Instances, the maximum price to pay for Spot Instances, and how the Auto Scaling group allocates instance types to fulfill On-Demand and Spot capacity, but also the parameters that specify the instance configuration information—the launch template and instance types.

For more information, see MixedInstancesPolicy in the Amazon EC2 Auto Scaling API Reference and Auto Scaling Groups with Multiple Instance Types and Purchase Options in the Amazon EC2 Auto Scaling User Guide.

You must specify one of the following parameters in your request: LaunchConfigurationName, LaunchTemplate, InstanceId, or MixedInstancesPolicy.

" + "documentation":"

An embedded object that specifies a mixed instances policy. The required parameters must be specified. If optional parameters are unspecified, their default values are used.

The policy includes parameters that not only define the distribution of On-Demand Instances and Spot Instances, the maximum price to pay for Spot Instances, and how the Auto Scaling group allocates instance types to fulfill On-Demand and Spot capacities, but also the parameters that specify the instance configuration information—the launch template and instance types. The policy can also include a weight for each instance type. For more information, see Auto Scaling groups with multiple instance types and purchase options in the Amazon EC2 Auto Scaling User Guide.

Conditional: You must specify either a launch template (LaunchTemplate or MixedInstancesPolicy) or a launch configuration (LaunchConfigurationName or InstanceId).

" }, "InstanceId":{ "shape":"XmlStringMaxLen19", - "documentation":"

The ID of the instance used to create a launch configuration for the group. To get the instance ID, use the Amazon EC2 DescribeInstances API operation.

When you specify an ID of an instance, Amazon EC2 Auto Scaling creates a new launch configuration and associates it with the group. This launch configuration derives its attributes from the specified instance, except for the block device mapping.

You must specify one of the following parameters in your request: LaunchConfigurationName, LaunchTemplate, InstanceId, or MixedInstancesPolicy.

" + "documentation":"

The ID of the instance used to base the launch configuration on. If specified, Amazon EC2 Auto Scaling uses the configuration values from the specified instance to create a new launch configuration. To get the instance ID, use the Amazon EC2 DescribeInstances API operation. For more information, see Creating an Auto Scaling group using an EC2 instance in the Amazon EC2 Auto Scaling User Guide.

" }, "MinSize":{ "shape":"AutoScalingGroupMinSize", @@ -1535,67 +1535,67 @@ }, "DesiredCapacity":{ "shape":"AutoScalingGroupDesiredCapacity", - "documentation":"

The desired capacity is the initial capacity of the Auto Scaling group at the time of its creation and the capacity it attempts to maintain. It can scale beyond this capacity if you configure automatic scaling.

This number must be greater than or equal to the minimum size of the group and less than or equal to the maximum size of the group. If you do not specify a desired capacity, the default is the minimum size of the group.

" + "documentation":"

The desired capacity is the initial capacity of the Auto Scaling group at the time of its creation and the capacity it attempts to maintain. It can scale beyond this capacity if you configure auto scaling. This number must be greater than or equal to the minimum size of the group and less than or equal to the maximum size of the group. If you do not specify a desired capacity, the default is the minimum size of the group.

" }, "DefaultCooldown":{ "shape":"Cooldown", - "documentation":"

The amount of time, in seconds, after a scaling activity completes before another scaling activity can start. The default value is 300.

This setting applies when using simple scaling policies, but not when using other scaling policies or scheduled scaling. For more information, see Scaling Cooldowns for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

The amount of time, in seconds, after a scaling activity completes before another scaling activity can start. The default value is 300. This setting applies when using simple scaling policies, but not when using other scaling policies or scheduled scaling. For more information, see Scaling cooldowns for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide.

" }, "AvailabilityZones":{ "shape":"AvailabilityZones", - "documentation":"

One or more Availability Zones for the group. This parameter is optional if you specify one or more subnets for VPCZoneIdentifier.

Conditional: If your account supports EC2-Classic and VPC, this parameter is required to launch instances into EC2-Classic.

" + "documentation":"

A list of Availability Zones where instances in the Auto Scaling group can be created. This parameter is optional if you specify one or more subnets for VPCZoneIdentifier.

Conditional: If your account supports EC2-Classic and VPC, this parameter is required to launch instances into EC2-Classic.

" }, "LoadBalancerNames":{ "shape":"LoadBalancerNames", - "documentation":"

A list of Classic Load Balancers associated with this Auto Scaling group. For Application Load Balancers and Network Load Balancers, specify a list of target groups using the TargetGroupARNs property instead.

For more information, see Using a Load Balancer with an Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

A list of Classic Load Balancers associated with this Auto Scaling group. For Application Load Balancers and Network Load Balancers, specify TargetGroupARNs instead.

" }, "TargetGroupARNs":{ "shape":"TargetGroupARNs", - "documentation":"

The Amazon Resource Names (ARN) of the target groups to associate with the Auto Scaling group. Instances are registered as targets in a target group, and traffic is routed to the target group.

For more information, see Using a Load Balancer with an Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

The Amazon Resource Names (ARN) of the target groups to associate with the Auto Scaling group. Instances are registered as targets in a target group, and traffic is routed to the target group. For more information, see Elastic Load Balancing and Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide.

" }, "HealthCheckType":{ "shape":"XmlStringMaxLen32", - "documentation":"

The service to use for the health checks. The valid values are EC2 and ELB. The default value is EC2. If you configure an Auto Scaling group to use ELB health checks, it considers the instance unhealthy if it fails either the EC2 status checks or the load balancer health checks.

For more information, see Health Checks for Auto Scaling Instances in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

The service to use for the health checks. The valid values are EC2 (default) and ELB. If you configure an Auto Scaling group to use load balancer (ELB) health checks, it considers the instance unhealthy if it fails either the EC2 status checks or the load balancer health checks. For more information, see Health checks for Auto Scaling instances in the Amazon EC2 Auto Scaling User Guide.

" }, "HealthCheckGracePeriod":{ "shape":"HealthCheckGracePeriod", - "documentation":"

The amount of time, in seconds, that Amazon EC2 Auto Scaling waits before checking the health status of an EC2 instance that has come into service. During this time, any health check failures for the instance are ignored. The default value is 0.

For more information, see Health Check Grace Period in the Amazon EC2 Auto Scaling User Guide.

Required if you are adding an ELB health check.

" + "documentation":"

The amount of time, in seconds, that Amazon EC2 Auto Scaling waits before checking the health status of an EC2 instance that has come into service. During this time, any health check failures for the instance are ignored. The default value is 0. For more information, see Health check grace period in the Amazon EC2 Auto Scaling User Guide.

Conditional: Required if you are adding an ELB health check.

" }, "PlacementGroup":{ "shape":"XmlStringMaxLen255", - "documentation":"

The name of the placement group into which to launch your instances, if any. A placement group is a logical grouping of instances within a single Availability Zone. You cannot specify multiple Availability Zones and a placement group. For more information, see Placement Groups in the Amazon EC2 User Guide for Linux Instances.

" + "documentation":"

The name of an existing placement group into which to launch your instances, if any. A placement group is a logical grouping of instances within a single Availability Zone. You cannot specify multiple Availability Zones and a placement group. For more information, see Placement Groups in the Amazon EC2 User Guide for Linux Instances.

" }, "VPCZoneIdentifier":{ "shape":"XmlStringMaxLen2047", - "documentation":"

A comma-separated list of subnet IDs for your virtual private cloud (VPC).

If you specify VPCZoneIdentifier with AvailabilityZones, the subnets that you specify for this parameter must reside in those Availability Zones.

Conditional: If your account supports EC2-Classic and VPC, this parameter is required to launch instances into a VPC.

" + "documentation":"

A comma-separated list of subnet IDs for a virtual private cloud (VPC) where instances in the Auto Scaling group can be created. If you specify VPCZoneIdentifier with AvailabilityZones, the subnets that you specify for this parameter must reside in those Availability Zones.

Conditional: If your account supports EC2-Classic and VPC, this parameter is required to launch instances into a VPC.

" }, "TerminationPolicies":{ "shape":"TerminationPolicies", - "documentation":"

One or more termination policies used to select the instance to terminate. These policies are executed in the order that they are listed.

For more information, see Controlling Which Instances Auto Scaling Terminates During Scale In in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

A policy or a list of policies that are used to select the instance to terminate. These policies are executed in the order that you list them. For more information, see Controlling which Auto Scaling instances terminate during scale in in the Amazon EC2 Auto Scaling User Guide.

" }, "NewInstancesProtectedFromScaleIn":{ "shape":"InstanceProtected", - "documentation":"

Indicates whether newly launched instances are protected from termination by Amazon EC2 Auto Scaling when scaling in.

For more information about preventing instances from terminating on scale in, see Instance Protection in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Indicates whether newly launched instances are protected from termination by Amazon EC2 Auto Scaling when scaling in. For more information about preventing instances from terminating on scale in, see Instance scale-in protection in the Amazon EC2 Auto Scaling User Guide.

" }, "CapacityRebalance":{ "shape":"CapacityRebalanceEnabled", - "documentation":"

Indicates whether capacity rebalance is enabled. Otherwise, capacity rebalance is disabled.

You can enable capacity rebalancing for your Auto Scaling groups when using Spot Instances. When you turn on capacity rebalancing, Amazon EC2 Auto Scaling attempts to launch a Spot Instance whenever Amazon EC2 predicts that a Spot Instance is at an elevated risk of interruption. After launching a new instance, it then terminates an old instance. For more information, see Amazon EC2 Auto Scaling capacity rebalancing in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Indicates whether Capacity Rebalancing is enabled. Otherwise, Capacity Rebalancing is disabled. When you turn on Capacity Rebalancing, Amazon EC2 Auto Scaling attempts to launch a Spot Instance whenever Amazon EC2 notifies that a Spot Instance is at an elevated risk of interruption. After launching a new instance, it then terminates an old instance. For more information, see Amazon EC2 Auto Scaling Capacity Rebalancing in the Amazon EC2 Auto Scaling User Guide.

" }, "LifecycleHookSpecificationList":{ "shape":"LifecycleHookSpecifications", - "documentation":"

One or more lifecycle hooks.

" + "documentation":"

One or more lifecycle hooks for the group, which specify actions to perform when Amazon EC2 Auto Scaling launches or terminates instances.

" }, "Tags":{ "shape":"Tags", - "documentation":"

One or more tags. You can tag your Auto Scaling group and propagate the tags to the Amazon EC2 instances it launches.

Tags are not propagated to Amazon EBS volumes. To add tags to Amazon EBS volumes, specify the tags in a launch template but use caution. If the launch template specifies an instance tag with a key that is also specified for the Auto Scaling group, Amazon EC2 Auto Scaling overrides the value of that instance tag with the value specified by the Auto Scaling group.

For more information, see Tagging Auto Scaling Groups and Instances in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

One or more tags. You can tag your Auto Scaling group and propagate the tags to the Amazon EC2 instances it launches. Tags are not propagated to Amazon EBS volumes. To add tags to Amazon EBS volumes, specify the tags in a launch template but use caution. If the launch template specifies an instance tag with a key that is also specified for the Auto Scaling group, Amazon EC2 Auto Scaling overrides the value of that instance tag with the value specified by the Auto Scaling group. For more information, see Tagging Auto Scaling groups and instances in the Amazon EC2 Auto Scaling User Guide.

" }, "ServiceLinkedRoleARN":{ "shape":"ResourceName", - "documentation":"

The Amazon Resource Name (ARN) of the service-linked role that the Auto Scaling group uses to call other AWS services on your behalf. By default, Amazon EC2 Auto Scaling uses a service-linked role named AWSServiceRoleForAutoScaling, which it creates if it does not exist. For more information, see Service-Linked Roles in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

The Amazon Resource Name (ARN) of the service-linked role that the Auto Scaling group uses to call other AWS services on your behalf. By default, Amazon EC2 Auto Scaling uses a service-linked role named AWSServiceRoleForAutoScaling, which it creates if it does not exist. For more information, see Service-linked roles in the Amazon EC2 Auto Scaling User Guide.

" }, "MaxInstanceLifetime":{ "shape":"MaxInstanceLifetime", - "documentation":"

The maximum amount of time, in seconds, that an instance can be in service. The default is null.

This parameter is optional, but if you specify a value for it, you must specify a value of at least 604,800 seconds (7 days). To clear a previously set value, specify a new value of 0.

For more information, see Replacing Auto Scaling Instances Based on Maximum Instance Lifetime in the Amazon EC2 Auto Scaling User Guide.

Valid Range: Minimum value of 0.

" + "documentation":"

The maximum amount of time, in seconds, that an instance can be in service. The default is null. If specified, the value must be either 0 or a number equal to or greater than 86,400 seconds (1 day). For more information, see Replacing Auto Scaling instances based on maximum instance lifetime in the Amazon EC2 Auto Scaling User Guide.

" } } }, @@ -1621,19 +1621,19 @@ }, "ClassicLinkVPCId":{ "shape":"XmlStringMaxLen255", - "documentation":"

The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances to. For more information, see ClassicLink in the Amazon EC2 User Guide for Linux Instances and Linking EC2-Classic Instances to a VPC in the Amazon EC2 Auto Scaling User Guide.

This parameter can only be used if you are launching EC2-Classic instances.

" + "documentation":"

The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances to. For more information, see ClassicLink in the Amazon EC2 User Guide for Linux Instances and Linking EC2-Classic instances to a VPC in the Amazon EC2 Auto Scaling User Guide.

This parameter can only be used if you are launching EC2-Classic instances.

" }, "ClassicLinkVPCSecurityGroups":{ "shape":"ClassicLinkVPCSecurityGroups", - "documentation":"

The IDs of one or more security groups for the specified ClassicLink-enabled VPC. For more information, see ClassicLink in the Amazon EC2 User Guide for Linux Instances and Linking EC2-Classic Instances to a VPC in the Amazon EC2 Auto Scaling User Guide.

If you specify the ClassicLinkVPCId parameter, you must specify this parameter.

" + "documentation":"

The IDs of one or more security groups for the specified ClassicLink-enabled VPC. For more information, see ClassicLink in the Amazon EC2 User Guide for Linux Instances and Linking EC2-Classic instances to a VPC in the Amazon EC2 Auto Scaling User Guide.

If you specify the ClassicLinkVPCId parameter, you must specify this parameter.

" }, "UserData":{ "shape":"XmlStringUserData", - "documentation":"

The Base64-encoded user data to make available to the launched EC2 instances. For more information, see Instance Metadata and User Data in the Amazon EC2 User Guide for Linux Instances.

" + "documentation":"

The Base64-encoded user data to make available to the launched EC2 instances. For more information, see Instance metadata and user data in the Amazon EC2 User Guide for Linux Instances.

" }, "InstanceId":{ "shape":"XmlStringMaxLen19", - "documentation":"

The ID of the instance to use to create the launch configuration. The new launch configuration derives attributes from the instance, except for the block device mapping.

To create a launch configuration with a block device mapping or override any other instance attributes, specify them as part of the same request.

For more information, see Create a Launch Configuration Using an EC2 Instance in the Amazon EC2 Auto Scaling User Guide.

If you do not specify InstanceId, you must specify both ImageId and InstanceType.

" + "documentation":"

The ID of the instance to use to create the launch configuration. The new launch configuration derives attributes from the instance, except for the block device mapping.

To create a launch configuration with a block device mapping or override any other instance attributes, specify them as part of the same request.

For more information, see Creating a launch configuration using an EC2 instance in the Amazon EC2 Auto Scaling User Guide.

If you do not specify InstanceId, you must specify both ImageId and InstanceType.

" }, "InstanceType":{ "shape":"XmlStringMaxLen255", @@ -1657,11 +1657,11 @@ }, "SpotPrice":{ "shape":"SpotPrice", - "documentation":"

The maximum hourly price to be paid for any Spot Instance launched to fulfill the request. Spot Instances are launched when the price you specify exceeds the current Spot price. For more information, see Launching Spot Instances in Your Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.

When you change your maximum price by creating a new launch configuration, running instances will continue to run as long as the maximum price for those running instances is higher than the current Spot price.

" + "documentation":"

The maximum hourly price to be paid for any Spot Instance launched to fulfill the request. Spot Instances are launched when the price you specify exceeds the current Spot price. For more information, see Requesting Spot Instances in the Amazon EC2 Auto Scaling User Guide.

When you change your maximum price by creating a new launch configuration, running instances will continue to run as long as the maximum price for those running instances is higher than the current Spot price.

" }, "IamInstanceProfile":{ "shape":"XmlStringMaxLen1600", - "documentation":"

The name or the Amazon Resource Name (ARN) of the instance profile associated with the IAM role for the instance. The instance profile contains the IAM role.

For more information, see IAM Role for Applications That Run on Amazon EC2 Instances in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

The name or the Amazon Resource Name (ARN) of the instance profile associated with the IAM role for the instance. The instance profile contains the IAM role.

For more information, see IAM role for applications that run on Amazon EC2 instances in the Amazon EC2 Auto Scaling User Guide.

" }, "EbsOptimized":{ "shape":"EbsOptimized", @@ -1669,11 +1669,11 @@ }, "AssociatePublicIpAddress":{ "shape":"AssociatePublicIpAddress", - "documentation":"

For Auto Scaling groups that are running in a virtual private cloud (VPC), specifies whether to assign a public IP address to the group's instances. If you specify true, each instance in the Auto Scaling group receives a unique public IP address. For more information, see Launching Auto Scaling Instances in a VPC in the Amazon EC2 Auto Scaling User Guide.

If you specify this parameter, you must specify at least one subnet for VPCZoneIdentifier when you create your group.

If the instance is launched into a default subnet, the default is to assign a public IP address, unless you disabled the option to assign a public IP address on the subnet. If the instance is launched into a nondefault subnet, the default is not to assign a public IP address, unless you enabled the option to assign a public IP address on the subnet.

" + "documentation":"

For Auto Scaling groups that are running in a virtual private cloud (VPC), specifies whether to assign a public IP address to the group's instances. If you specify true, each instance in the Auto Scaling group receives a unique public IP address. For more information, see Launching Auto Scaling instances in a VPC in the Amazon EC2 Auto Scaling User Guide.

If you specify this parameter, you must specify at least one subnet for VPCZoneIdentifier when you create your group.

If the instance is launched into a default subnet, the default is to assign a public IP address, unless you disabled the option to assign a public IP address on the subnet. If the instance is launched into a nondefault subnet, the default is not to assign a public IP address, unless you enabled the option to assign a public IP address on the subnet.

" }, "PlacementTenancy":{ "shape":"XmlStringMaxLen64", - "documentation":"

The tenancy of the instance. An instance with dedicated tenancy runs on isolated, single-tenant hardware and can only be launched into a VPC.

To launch dedicated instances into a shared tenancy VPC (a VPC with the instance placement tenancy attribute set to default), you must set the value of this parameter to dedicated.

If you specify PlacementTenancy, you must specify at least one subnet for VPCZoneIdentifier when you create your group.

For more information, see Instance Placement Tenancy in the Amazon EC2 Auto Scaling User Guide.

Valid Values: default | dedicated

" + "documentation":"

The tenancy of the instance. An instance with dedicated tenancy runs on isolated, single-tenant hardware and can only be launched into a VPC.

To launch dedicated instances into a shared tenancy VPC (a VPC with the instance placement tenancy attribute set to default), you must set the value of this parameter to dedicated.

If you specify PlacementTenancy, you must specify at least one subnet for VPCZoneIdentifier when you create your group.

For more information, see Configuring instance tenancy with Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide.

Valid Values: default | dedicated

" }, "MetadataOptions":{ "shape":"InstanceMetadataOptions", @@ -2260,7 +2260,7 @@ }, "Encrypted":{ "shape":"BlockDeviceEbsEncrypted", - "documentation":"

Specifies whether the volume should be encrypted. Encrypted EBS volumes can only be attached to instances that support Amazon EBS encryption. For more information, see Supported Instance Types. If your AMI uses encrypted volumes, you can also only launch it on supported instance types.

If you are creating a volume from a snapshot, you cannot specify an encryption value. Volumes that are created from encrypted snapshots are automatically encrypted, and volumes that are created from unencrypted snapshots are automatically unencrypted. By default, encrypted snapshots use the AWS managed CMK that is used for EBS encryption, but you can specify a custom CMK when you create the snapshot. The ability to encrypt a snapshot during copying also allows you to apply a new CMK to an already-encrypted snapshot. Volumes restored from the resulting copy are only accessible using the new CMK.

Enabling encryption by default results in all EBS volumes being encrypted with the AWS managed CMK or a customer managed CMK, whether or not the snapshot was encrypted.

For more information, see Using Encryption with EBS-Backed AMIs in the Amazon EC2 User Guide for Linux Instances and Required CMK Key Policy for Use with Encrypted Volumes in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Specifies whether the volume should be encrypted. Encrypted EBS volumes can only be attached to instances that support Amazon EBS encryption. For more information, see Supported Instance Types. If your AMI uses encrypted volumes, you can also only launch it on supported instance types.

If you are creating a volume from a snapshot, you cannot specify an encryption value. Volumes that are created from encrypted snapshots are automatically encrypted, and volumes that are created from unencrypted snapshots are automatically unencrypted. By default, encrypted snapshots use the AWS managed CMK that is used for EBS encryption, but you can specify a custom CMK when you create the snapshot. The ability to encrypt a snapshot during copying also allows you to apply a new CMK to an already-encrypted snapshot. Volumes restored from the resulting copy are only accessible using the new CMK.

Enabling encryption by default results in all EBS volumes being encrypted with the AWS managed CMK or a customer managed CMK, whether or not the snapshot was encrypted.

For more information, see Using Encryption with EBS-Backed AMIs in the Amazon EC2 User Guide for Linux Instances and Required CMK key policy for use with encrypted volumes in the Amazon EC2 Auto Scaling User Guide.

" } }, "documentation":"

Describes information used to set up an Amazon EBS volume specified in a block device mapping.

" @@ -2350,7 +2350,7 @@ }, "HonorCooldown":{ "shape":"HonorCooldown", - "documentation":"

Indicates whether Amazon EC2 Auto Scaling waits for the cooldown period to complete before executing the policy.

Valid only if the policy type is SimpleScaling. For more information, see Scaling Cooldowns for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Indicates whether Amazon EC2 Auto Scaling waits for the cooldown period to complete before executing the policy.

Valid only if the policy type is SimpleScaling. For more information, see Scaling cooldowns for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide.

" }, "MetricValue":{ "shape":"MetricScale", @@ -2420,7 +2420,7 @@ "documentation":"

One or more filter values. Filter values are case-sensitive.

" } }, - "documentation":"

Describes a filter that is used to return a more specific list of results when describing tags.

For more information, see Tagging Auto Scaling Groups and Instances in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Describes a filter that is used to return a more specific list of results when describing tags.

For more information, see Tagging Auto Scaling groups and instances in the Amazon EC2 Auto Scaling User Guide.

" }, "Filters":{ "type":"list", @@ -2611,30 +2611,30 @@ "members":{ "OnDemandAllocationStrategy":{ "shape":"XmlString", - "documentation":"

Indicates how to allocate instance types to fulfill On-Demand capacity.

The only valid value is prioritized, which is also the default value. This strategy uses the order of instance type overrides for the LaunchTemplate to define the launch priority of each instance type. The first instance type in the array is prioritized higher than the last. If all your On-Demand capacity cannot be fulfilled using your highest priority instance, then the Auto Scaling groups launches the remaining capacity using the second priority instance type, and so on.

" + "documentation":"

Indicates how to allocate instance types to fulfill On-Demand capacity. The only valid value is prioritized, which is also the default value. This strategy uses the order of instance types in the overrides to define the launch priority of each instance type. The first instance type in the array is prioritized higher than the last. If all your On-Demand capacity cannot be fulfilled using your highest priority instance, then the Auto Scaling groups launches the remaining capacity using the second priority instance type, and so on.

" }, "OnDemandBaseCapacity":{ "shape":"OnDemandBaseCapacity", - "documentation":"

The minimum amount of the Auto Scaling group's capacity that must be fulfilled by On-Demand Instances. This base portion is provisioned first as your group scales.

Default if not set is 0. If you leave it set to 0, On-Demand Instances are launched as a percentage of the Auto Scaling group's desired capacity, per the OnDemandPercentageAboveBaseCapacity setting.

An update to this setting means a gradual replacement of instances to maintain the specified number of On-Demand Instances for your base capacity. When replacing instances, Amazon EC2 Auto Scaling launches new instances before terminating the old ones.

" + "documentation":"

The minimum amount of the Auto Scaling group's capacity that must be fulfilled by On-Demand Instances. This base portion is provisioned first as your group scales. Defaults to 0 if not specified. If you specify weights for the instance types in the overrides, set the value of OnDemandBaseCapacity in terms of the number of capacity units, and not the number of instances.

" }, "OnDemandPercentageAboveBaseCapacity":{ "shape":"OnDemandPercentageAboveBaseCapacity", - "documentation":"

Controls the percentages of On-Demand Instances and Spot Instances for your additional capacity beyond OnDemandBaseCapacity.

Default if not set is 100. If you leave it set to 100, the percentages are 100% for On-Demand Instances and 0% for Spot Instances.

An update to this setting means a gradual replacement of instances to maintain the percentage of On-Demand Instances for your additional capacity above the base capacity. When replacing instances, Amazon EC2 Auto Scaling launches new instances before terminating the old ones.

Valid Range: Minimum value of 0. Maximum value of 100.

" + "documentation":"

Controls the percentages of On-Demand Instances and Spot Instances for your additional capacity beyond OnDemandBaseCapacity. Expressed as a number (for example, 20 specifies 20% On-Demand Instances, 80% Spot Instances). Defaults to 100 if not specified. If set to 100, only On-Demand Instances are provisioned.

" }, "SpotAllocationStrategy":{ "shape":"XmlString", - "documentation":"

Indicates how to allocate instances across Spot Instance pools.

If the allocation strategy is lowest-price, the Auto Scaling group launches instances using the Spot pools with the lowest price, and evenly allocates your instances across the number of Spot pools that you specify. If the allocation strategy is capacity-optimized, the Auto Scaling group launches instances using Spot pools that are optimally chosen based on the available Spot capacity.

The default Spot allocation strategy for calls that you make through the API, the AWS CLI, or the AWS SDKs is lowest-price. The default Spot allocation strategy for the AWS Management Console is capacity-optimized.

Valid values: lowest-price | capacity-optimized

" + "documentation":"

Indicates how to allocate instances across Spot Instance pools. If the allocation strategy is lowest-price, the Auto Scaling group launches instances using the Spot pools with the lowest price, and evenly allocates your instances across the number of Spot pools that you specify. If the allocation strategy is capacity-optimized, the Auto Scaling group launches instances using Spot pools that are optimally chosen based on the available Spot capacity. Defaults to lowest-price if not specified.

" }, "SpotInstancePools":{ "shape":"SpotInstancePools", - "documentation":"

The number of Spot Instance pools across which to allocate your Spot Instances. The Spot pools are determined from the different instance types in the Overrides array of LaunchTemplate. Default if not set is 2.

Used only when the Spot allocation strategy is lowest-price.

Valid Range: Minimum value of 1. Maximum value of 20.

" + "documentation":"

The number of Spot Instance pools across which to allocate your Spot Instances. The Spot pools are determined from the different instance types in the overrides. Defaults to 2 if not specified. Valid only when the Spot allocation strategy is lowest-price.

Valid Range: Minimum value of 1. Maximum value of 20.

" }, "SpotMaxPrice":{ "shape":"MixedInstanceSpotPrice", - "documentation":"

The maximum price per unit hour that you are willing to pay for a Spot Instance. If you leave the value of this parameter blank (which is the default), the maximum Spot price is set at the On-Demand price.

To remove a value that you previously set, include the parameter but leave the value blank.

" + "documentation":"

The maximum price per unit hour that you are willing to pay for a Spot Instance. If you leave the value of this parameter blank (which is the default), the maximum Spot price is set at the On-Demand price. To remove a value that you previously set, include the parameter but leave the value blank.

" } }, - "documentation":"

Describes an instances distribution for an Auto Scaling group with a MixedInstancesPolicy.

The instances distribution specifies the distribution of On-Demand Instances and Spot Instances, the maximum price to pay for Spot Instances, and how the Auto Scaling group allocates instance types to fulfill On-Demand and Spot capacity.

When you update SpotAllocationStrategy, SpotInstancePools, or SpotMaxPrice, this update action does not deploy any changes across the running Amazon EC2 instances in the group. Your existing Spot Instances continue to run as long as the maximum price for those instances is higher than the current Spot price. When scale out occurs, Amazon EC2 Auto Scaling launches instances based on the new settings. When scale in occurs, Amazon EC2 Auto Scaling terminates instances according to the group's termination policies.

" + "documentation":"

Describes an instances distribution for an Auto Scaling group with a MixedInstancesPolicy.

The instances distribution specifies the distribution of On-Demand Instances and Spot Instances, the maximum price to pay for Spot Instances, and how the Auto Scaling group allocates instance types to fulfill On-Demand and Spot capacities.

When you update SpotAllocationStrategy, SpotInstancePools, or SpotMaxPrice, this update action does not deploy any changes across the running Amazon EC2 instances in the group. Your existing Spot Instances continue to run as long as the maximum price for those instances is higher than the current Spot price. When scale out occurs, Amazon EC2 Auto Scaling launches instances based on the new settings. When scale in occurs, Amazon EC2 Auto Scaling terminates instances according to the group's termination policies.

" }, "InstancesToUpdate":{ "type":"integer", @@ -2680,7 +2680,7 @@ }, "ImageId":{ "shape":"XmlStringMaxLen255", - "documentation":"

The ID of the Amazon Machine Image (AMI) to use to launch your EC2 instances.

For more information, see Finding an AMI in the Amazon EC2 User Guide for Linux Instances.

" + "documentation":"

The ID of the Amazon Machine Image (AMI) to use to launch your EC2 instances. For more information, see Finding an AMI in the Amazon EC2 User Guide for Linux Instances.

" }, "KeyName":{ "shape":"XmlStringMaxLen255", @@ -2688,19 +2688,19 @@ }, "SecurityGroups":{ "shape":"SecurityGroups", - "documentation":"

A list that contains the security groups to assign to the instances in the Auto Scaling group.

For more information, see Security Groups for Your VPC in the Amazon Virtual Private Cloud User Guide.

" + "documentation":"

A list that contains the security groups to assign to the instances in the Auto Scaling group. For more information, see Security Groups for Your VPC in the Amazon Virtual Private Cloud User Guide.

" }, "ClassicLinkVPCId":{ "shape":"XmlStringMaxLen255", - "documentation":"

The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances to.

For more information, see ClassicLink in the Amazon EC2 User Guide for Linux Instances and Linking EC2-Classic Instances to a VPC in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

The ID of a ClassicLink-enabled VPC to link your EC2-Classic instances to. For more information, see ClassicLink in the Amazon EC2 User Guide for Linux Instances and Linking EC2-Classic instances to a VPC in the Amazon EC2 Auto Scaling User Guide.

" }, "ClassicLinkVPCSecurityGroups":{ "shape":"ClassicLinkVPCSecurityGroups", - "documentation":"

The IDs of one or more security groups for the VPC specified in ClassicLinkVPCId.

For more information, see ClassicLink in the Amazon EC2 User Guide for Linux Instances and Linking EC2-Classic Instances to a VPC in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

The IDs of one or more security groups for the VPC specified in ClassicLinkVPCId.

For more information, see ClassicLink in the Amazon EC2 User Guide for Linux Instances and Linking EC2-Classic instances to a VPC in the Amazon EC2 Auto Scaling User Guide.

" }, "UserData":{ "shape":"XmlStringUserData", - "documentation":"

The Base64-encoded user data to make available to the launched EC2 instances.

For more information, see Instance Metadata and User Data in the Amazon EC2 User Guide for Linux Instances.

" + "documentation":"

The Base64-encoded user data to make available to the launched EC2 instances. For more information, see Instance metadata and user data in the Amazon EC2 User Guide for Linux Instances.

" }, "InstanceType":{ "shape":"XmlStringMaxLen255", @@ -2716,7 +2716,7 @@ }, "BlockDeviceMappings":{ "shape":"BlockDeviceMappings", - "documentation":"

A block device mapping, which specifies the block devices for the instance.

For more information, see Block Device Mapping in the Amazon EC2 User Guide for Linux Instances.

" + "documentation":"

A block device mapping, which specifies the block devices for the instance. For more information, see Block Device Mapping in the Amazon EC2 User Guide for Linux Instances.

" }, "InstanceMonitoring":{ "shape":"InstanceMonitoring", @@ -2724,11 +2724,11 @@ }, "SpotPrice":{ "shape":"SpotPrice", - "documentation":"

The maximum hourly price to be paid for any Spot Instance launched to fulfill the request. Spot Instances are launched when the price you specify exceeds the current Spot price.

For more information, see Launching Spot Instances in Your Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

The maximum hourly price to be paid for any Spot Instance launched to fulfill the request. Spot Instances are launched when the price you specify exceeds the current Spot price. For more information, see Requesting Spot Instances in the Amazon EC2 Auto Scaling User Guide.

" }, "IamInstanceProfile":{ "shape":"XmlStringMaxLen1600", - "documentation":"

The name or the Amazon Resource Name (ARN) of the instance profile associated with the IAM role for the instance. The instance profile contains the IAM role.

For more information, see IAM Role for Applications That Run on Amazon EC2 Instances in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

The name or the Amazon Resource Name (ARN) of the instance profile associated with the IAM role for the instance. The instance profile contains the IAM role. For more information, see IAM role for applications that run on Amazon EC2 instances in the Amazon EC2 Auto Scaling User Guide.

" }, "CreatedTime":{ "shape":"TimestampType", @@ -2736,15 +2736,15 @@ }, "EbsOptimized":{ "shape":"EbsOptimized", - "documentation":"

Specifies whether the launch configuration is optimized for EBS I/O (true) or not (false).

For more information, see Amazon EBS-Optimized Instances in the Amazon EC2 User Guide for Linux Instances.

" + "documentation":"

Specifies whether the launch configuration is optimized for EBS I/O (true) or not (false). For more information, see Amazon EBS-Optimized Instances in the Amazon EC2 User Guide for Linux Instances.

" }, "AssociatePublicIpAddress":{ "shape":"AssociatePublicIpAddress", - "documentation":"

For Auto Scaling groups that are running in a VPC, specifies whether to assign a public IP address to the group's instances.

For more information, see Launching Auto Scaling Instances in a VPC in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

For Auto Scaling groups that are running in a VPC, specifies whether to assign a public IP address to the group's instances. For more information, see Launching Auto Scaling instances in a VPC in the Amazon EC2 Auto Scaling User Guide.

" }, "PlacementTenancy":{ "shape":"XmlStringMaxLen64", - "documentation":"

The tenancy of the instance, either default or dedicated. An instance with dedicated tenancy runs on isolated, single-tenant hardware and can only be launched into a VPC.

For more information, see Instance Placement Tenancy in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

The tenancy of the instance, either default or dedicated. An instance with dedicated tenancy runs on isolated, single-tenant hardware and can only be launched into a VPC.

For more information, see Configuring instance tenancy with Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide.

" }, "MetadataOptions":{ "shape":"InstanceMetadataOptions", @@ -2807,11 +2807,11 @@ "members":{ "LaunchTemplateSpecification":{ "shape":"LaunchTemplateSpecification", - "documentation":"

The launch template to use. You must specify either the launch template ID or launch template name in the request.

" + "documentation":"

The launch template to use.

" }, "Overrides":{ "shape":"Overrides", - "documentation":"

Any parameters that you specify override the same parameters in the launch template. Currently, the only supported override is instance type. You can specify between 1 and 20 instance types.

If not provided, Amazon EC2 Auto Scaling will use the instance type specified in the launch template to launch instances.

" + "documentation":"

Any parameters that you specify override the same parameters in the launch template. Currently, the only supported override is instance type. You can specify between 1 and 20 instance types. If not provided, Amazon EC2 Auto Scaling will use the instance type specified in the launch template when it launches an instance.

" } }, "documentation":"

Describes a launch template and overrides.

The overrides are used to override the instance type specified by the launch template with multiple instance types that can be used to launch On-Demand Instances and Spot Instances.

When you update the launch template or overrides, existing Amazon EC2 instances continue to run. When scale out occurs, Amazon EC2 Auto Scaling launches instances to match the new settings. When scale in occurs, Amazon EC2 Auto Scaling terminates instances according to the group's termination policies.

" @@ -2827,11 +2827,11 @@ "members":{ "InstanceType":{ "shape":"XmlStringMaxLen255", - "documentation":"

The instance type. You must use an instance type that is supported in your requested Region and Availability Zones.

For information about available instance types, see Available Instance Types in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

The instance type, such as m3.xlarge. You must use an instance type that is supported in your requested Region and Availability Zones. For information about available instance types, see Available instance types in the Amazon Elastic Compute Cloud User Guide.

" }, "WeightedCapacity":{ "shape":"XmlStringMaxLen32", - "documentation":"

The number of capacity units, which gives the instance type a proportional weight to other instance types. For example, larger instance types are generally weighted more than smaller instance types. These are the same units that you chose to set the desired capacity in terms of instances, or a performance attribute such as vCPUs, memory, or I/O.

For more information, see Instance Weighting for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide.

Valid Range: Minimum value of 1. Maximum value of 999.

" + "documentation":"

The number of capacity units provided by the specified instance type in terms of virtual CPUs, memory, storage, throughput, or other relative performance characteristic. When a Spot or On-Demand Instance is provisioned, the capacity units count toward the desired capacity. Amazon EC2 Auto Scaling provisions instances until the desired capacity is totally fulfilled, even if this results in an overage. For example, if there are 2 units remaining to fulfill capacity, and Amazon EC2 Auto Scaling can only provision an instance with a WeightedCapacity of 5 units, the instance is provisioned, and the desired capacity is exceeded by 3 units. For more information, see Instance weighting for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide.

Valid Range: Minimum value of 1. Maximum value of 999.

" } }, "documentation":"

Describes an override for a launch template. Currently, the only supported override is instance type.

The maximum number of instance type overrides that can be associated with an Auto Scaling group is 20.

" @@ -2841,18 +2841,18 @@ "members":{ "LaunchTemplateId":{ "shape":"XmlStringMaxLen255", - "documentation":"

The ID of the launch template. To get the template ID, use the Amazon EC2 DescribeLaunchTemplates API operation. New launch templates can be created using the Amazon EC2 CreateLaunchTemplate API.

You must specify either a template ID or a template name.

" + "documentation":"

The ID of the launch template. To get the template ID, use the Amazon EC2 DescribeLaunchTemplates API operation. New launch templates can be created using the Amazon EC2 CreateLaunchTemplate API. You must specify either a LaunchTemplateId or a LaunchTemplateName.

" }, "LaunchTemplateName":{ "shape":"LaunchTemplateName", - "documentation":"

The name of the launch template. To get the template name, use the Amazon EC2 DescribeLaunchTemplates API operation. New launch templates can be created using the Amazon EC2 CreateLaunchTemplate API.

You must specify either a template ID or a template name.

" + "documentation":"

The name of the launch template. To get the template name, use the Amazon EC2 DescribeLaunchTemplates API operation. New launch templates can be created using the Amazon EC2 CreateLaunchTemplate API. You must specify either a LaunchTemplateId or a LaunchTemplateName.

" }, "Version":{ "shape":"XmlStringMaxLen255", - "documentation":"

The version number, $Latest, or $Default. To get the version number, use the Amazon EC2 DescribeLaunchTemplateVersions API operation. New launch template versions can be created using the Amazon EC2 CreateLaunchTemplateVersion API.

If the value is $Latest, Amazon EC2 Auto Scaling selects the latest version of the launch template when launching instances. If the value is $Default, Amazon EC2 Auto Scaling selects the default version of the launch template when launching instances. The default value is $Default.

" + "documentation":"

The version number, $Latest, or $Default. To get the version number, use the Amazon EC2 DescribeLaunchTemplateVersions API operation. New launch template versions can be created using the Amazon EC2 CreateLaunchTemplateVersion API. If the value is $Latest, Amazon EC2 Auto Scaling selects the latest version of the launch template when launching instances. If the value is $Default, Amazon EC2 Auto Scaling selects the default version of the launch template when launching instances. The default value is $Default.

" } }, - "documentation":"

Describes the Amazon EC2 launch template and the launch template version that can be used by an Auto Scaling group to configure Amazon EC2 instances.

The launch template that is specified must be configured for use with an Auto Scaling group. For more information, see Creating a Launch Template for an Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Describes the Amazon EC2 launch template and the launch template version that can be used by an Auto Scaling group to configure Amazon EC2 instances.

The launch template that is specified must be configured for use with an Auto Scaling group. For more information, see Creating a launch template for an Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.

" }, "LifecycleActionResult":{"type":"string"}, "LifecycleActionToken":{ @@ -2943,7 +2943,7 @@ "documentation":"

The ARN of the IAM role that allows the Auto Scaling group to publish to the specified notification target, for example, an Amazon SNS topic or an Amazon SQS queue.

" } }, - "documentation":"

Describes information used to specify a lifecycle hook for an Auto Scaling group.

A lifecycle hook tells Amazon EC2 Auto Scaling to perform an action on an instance when the instance launches (before it is put into service) or as the instance terminates (before it is fully terminated).

This step is a part of the procedure for creating a lifecycle hook for an Auto Scaling group:

  1. (Optional) Create a Lambda function and a rule that allows CloudWatch Events to invoke your Lambda function when Amazon EC2 Auto Scaling launches or terminates instances.

  2. (Optional) Create a notification target and an IAM role. The target can be either an Amazon SQS queue or an Amazon SNS topic. The role allows Amazon EC2 Auto Scaling to publish lifecycle notifications to the target.

  3. Create the lifecycle hook. Specify whether the hook is used when the instances launch or terminate.

  4. If you need more time, record the lifecycle action heartbeat to keep the instance in a pending state.

  5. If you finish before the timeout period ends, complete the lifecycle action.

For more information, see Amazon EC2 Auto Scaling Lifecycle Hooks in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Describes information used to specify a lifecycle hook for an Auto Scaling group.

A lifecycle hook tells Amazon EC2 Auto Scaling to perform an action on an instance when the instance launches (before it is put into service) or as the instance terminates (before it is fully terminated).

This step is a part of the procedure for creating a lifecycle hook for an Auto Scaling group:

  1. (Optional) Create a Lambda function and a rule that allows CloudWatch Events to invoke your Lambda function when Amazon EC2 Auto Scaling launches or terminates instances.

  2. (Optional) Create a notification target and an IAM role. The target can be either an Amazon SQS queue or an Amazon SNS topic. The role allows Amazon EC2 Auto Scaling to publish lifecycle notifications to the target.

  3. Create the lifecycle hook. Specify whether the hook is used when the instances launch or terminate.

  4. If you need more time, record the lifecycle action heartbeat to keep the instance in a pending state.

  5. If you finish before the timeout period ends, complete the lifecycle action.

For more information, see Amazon EC2 Auto Scaling lifecycle hooks in the Amazon EC2 Auto Scaling User Guide.

" }, "LifecycleHookSpecifications":{ "type":"list", @@ -3126,14 +3126,14 @@ "members":{ "LaunchTemplate":{ "shape":"LaunchTemplate", - "documentation":"

The launch template and instance types (overrides).

Required when creating a mixed instances policy.

" + "documentation":"

Specifies the launch template to use and optionally the instance types (overrides) that are used to provision EC2 instances to fulfill On-Demand and Spot capacities. Required when creating a mixed instances policy.

" }, "InstancesDistribution":{ "shape":"InstancesDistribution", - "documentation":"

The instances distribution to use.

If you leave this parameter unspecified, the value for each parameter in InstancesDistribution uses a default value.

" + "documentation":"

Specifies the instances distribution. If not provided, the value for each parameter in InstancesDistribution uses a default value.

" } }, - "documentation":"

Describes a mixed instances policy for an Auto Scaling group. With mixed instances, your Auto Scaling group can provision a combination of On-Demand Instances and Spot Instances across multiple instance types. For more information, see Auto Scaling Groups with Multiple Instance Types and Purchase Options in the Amazon EC2 Auto Scaling User Guide.

You can create a mixed instances policy for a new Auto Scaling group, or you can create it for an existing group by updating the group to specify MixedInstancesPolicy as the top-level parameter instead of a launch configuration or launch template. For more information, see CreateAutoScalingGroup and UpdateAutoScalingGroup.

" + "documentation":"

Describes a mixed instances policy for an Auto Scaling group. With mixed instances, your Auto Scaling group can provision a combination of On-Demand Instances and Spot Instances across multiple instance types. For more information, see Auto Scaling Groups with Multiple Instance Types and Purchase Options in the Amazon EC2 Auto Scaling User Guide.

You can create a mixed instances policy for a new Auto Scaling group, or you can create it for an existing group by updating the group to specify MixedInstancesPolicy as the top-level parameter instead of a launch configuration or launch template.

" }, "MonitoringEnabled":{"type":"boolean"}, "NoDevice":{"type":"boolean"}, @@ -3237,7 +3237,7 @@ "documentation":"

One of the following processes:

  • Launch

  • Terminate

  • AddToLoadBalancer

  • AlarmNotification

  • AZRebalance

  • HealthCheck

  • InstanceRefresh

  • ReplaceUnhealthy

  • ScheduledActions

" } }, - "documentation":"

Describes a process type.

For more information, see Scaling Processes in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Describes a process type.

For more information, see Scaling processes in the Amazon EC2 Auto Scaling User Guide.

" }, "Processes":{ "type":"list", @@ -3344,7 +3344,7 @@ }, "AdjustmentType":{ "shape":"XmlStringMaxLen255", - "documentation":"

Specifies how the scaling adjustment is interpreted (for example, an absolute number or a percentage). The valid values are ChangeInCapacity, ExactCapacity, and PercentChangeInCapacity.

Required if the policy type is StepScaling or SimpleScaling. For more information, see Scaling Adjustment Types in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Specifies how the scaling adjustment is interpreted (for example, an absolute number or a percentage). The valid values are ChangeInCapacity, ExactCapacity, and PercentChangeInCapacity.

Required if the policy type is StepScaling or SimpleScaling. For more information, see Scaling adjustment types in the Amazon EC2 Auto Scaling User Guide.

" }, "MinAdjustmentStep":{ "shape":"MinAdjustmentStep", @@ -3352,7 +3352,7 @@ }, "MinAdjustmentMagnitude":{ "shape":"MinAdjustmentMagnitude", - "documentation":"

The minimum value to scale by when the adjustment type is PercentChangeInCapacity. For example, suppose that you create a step scaling policy to scale out an Auto Scaling group by 25 percent and you specify a MinAdjustmentMagnitude of 2. If the group has 4 instances and the scaling policy is performed, 25 percent of 4 is 1. However, because you specified a MinAdjustmentMagnitude of 2, Amazon EC2 Auto Scaling scales out the group by 2 instances.

Valid only if the policy type is StepScaling or SimpleScaling. For more information, see Scaling Adjustment Types in the Amazon EC2 Auto Scaling User Guide.

Some Auto Scaling groups use instance weights. In this case, set the MinAdjustmentMagnitude to a value that is at least as large as your largest instance weight.

" + "documentation":"

The minimum value to scale by when the adjustment type is PercentChangeInCapacity. For example, suppose that you create a step scaling policy to scale out an Auto Scaling group by 25 percent and you specify a MinAdjustmentMagnitude of 2. If the group has 4 instances and the scaling policy is performed, 25 percent of 4 is 1. However, because you specified a MinAdjustmentMagnitude of 2, Amazon EC2 Auto Scaling scales out the group by 2 instances.

Valid only if the policy type is StepScaling or SimpleScaling. For more information, see Scaling adjustment types in the Amazon EC2 Auto Scaling User Guide.

Some Auto Scaling groups use instance weights. In this case, set the MinAdjustmentMagnitude to a value that is at least as large as your largest instance weight.

" }, "ScalingAdjustment":{ "shape":"PolicyIncrement", @@ -3360,7 +3360,7 @@ }, "Cooldown":{ "shape":"Cooldown", - "documentation":"

The duration of the policy's cooldown period, in seconds. When a cooldown period is specified here, it overrides the default cooldown period defined for the Auto Scaling group.

Valid only if the policy type is SimpleScaling. For more information, see Scaling Cooldowns for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

The duration of the policy's cooldown period, in seconds. When a cooldown period is specified here, it overrides the default cooldown period defined for the Auto Scaling group.

Valid only if the policy type is SimpleScaling. For more information, see Scaling cooldowns for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide.

" }, "MetricAggregationType":{ "shape":"XmlStringMaxLen32", @@ -3380,7 +3380,7 @@ }, "Enabled":{ "shape":"ScalingPolicyEnabled", - "documentation":"

Indicates whether the scaling policy is enabled or disabled. The default is enabled. For more information, see Disabling a Scaling Policy for an Auto Scaling Group in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Indicates whether the scaling policy is enabled or disabled. The default is enabled. For more information, see Disabling a scaling policy for an Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.

" } } }, @@ -3573,7 +3573,7 @@ }, "PolicyType":{ "shape":"XmlStringMaxLen64", - "documentation":"

One of the following policy types:

  • TargetTrackingScaling

  • StepScaling

  • SimpleScaling (default)

For more information, see Target Tracking Scaling Policies and Step and Simple Scaling Policies in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

One of the following policy types:

  • TargetTrackingScaling

  • StepScaling

  • SimpleScaling (default)

For more information, see Target tracking scaling policies and Step and simple scaling policies in the Amazon EC2 Auto Scaling User Guide.

" }, "AdjustmentType":{ "shape":"XmlStringMaxLen255", @@ -3817,7 +3817,7 @@ "members":{ "InstanceIds":{ "shape":"InstanceIds", - "documentation":"

One or more instance IDs.

" + "documentation":"

One or more instance IDs. You can specify up to 50 instances.

" }, "AutoScalingGroupName":{ "shape":"ResourceName", @@ -3881,7 +3881,7 @@ "documentation":"

The amount by which to scale, based on the specified adjustment type. A positive value adds to the current capacity while a negative number removes from the current capacity.

" } }, - "documentation":"

Describes information used to create a step adjustment for a step scaling policy.

For the following examples, suppose that you have an alarm with a breach threshold of 50:

  • To trigger the adjustment when the metric is greater than or equal to 50 and less than 60, specify a lower bound of 0 and an upper bound of 10.

  • To trigger the adjustment when the metric is greater than 40 and less than or equal to 50, specify a lower bound of -10 and an upper bound of 0.

There are a few rules for the step adjustments for your step policy:

  • The ranges of your step adjustments can't overlap or have a gap.

  • At most, one step adjustment can have a null lower bound. If one step adjustment has a negative lower bound, then there must be a step adjustment with a null lower bound.

  • At most, one step adjustment can have a null upper bound. If one step adjustment has a positive upper bound, then there must be a step adjustment with a null upper bound.

  • The upper and lower bound can't be null in the same step adjustment.

For more information, see Step Adjustments in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Describes information used to create a step adjustment for a step scaling policy.

For the following examples, suppose that you have an alarm with a breach threshold of 50:

  • To trigger the adjustment when the metric is greater than or equal to 50 and less than 60, specify a lower bound of 0 and an upper bound of 10.

  • To trigger the adjustment when the metric is greater than 40 and less than or equal to 50, specify a lower bound of -10 and an upper bound of 0.

There are a few rules for the step adjustments for your step policy:

  • The ranges of your step adjustments can't overlap or have a gap.

  • At most, one step adjustment can have a null lower bound. If one step adjustment has a negative lower bound, then there must be a step adjustment with a null lower bound.

  • At most, one step adjustment can have a null upper bound. If one step adjustment has a positive upper bound, then there must be a step adjustment with a null upper bound.

  • The upper and lower bound can't be null in the same step adjustment.

For more information, see Step adjustments in the Amazon EC2 Auto Scaling User Guide.

" }, "StepAdjustments":{ "type":"list", @@ -3899,7 +3899,7 @@ "documentation":"

The reason that the process was suspended.

" } }, - "documentation":"

Describes an automatic scaling process that has been suspended.

For more information, see Scaling Processes in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Describes an auto scaling process that has been suspended.

For more information, see Scaling processes in the Amazon EC2 Auto Scaling User Guide.

" }, "SuspendedProcesses":{ "type":"list", @@ -4054,11 +4054,11 @@ }, "LaunchTemplate":{ "shape":"LaunchTemplateSpecification", - "documentation":"

The launch template and version to use to specify the updates. If you specify LaunchTemplate in your update request, you can't specify LaunchConfigurationName or MixedInstancesPolicy.

For more information, see LaunchTemplateSpecification in the Amazon EC2 Auto Scaling API Reference.

" + "documentation":"

The launch template and version to use to specify the updates. If you specify LaunchTemplate in your update request, you can't specify LaunchConfigurationName or MixedInstancesPolicy.

" }, "MixedInstancesPolicy":{ "shape":"MixedInstancesPolicy", - "documentation":"

An embedded object that specifies a mixed instances policy.

In your call to UpdateAutoScalingGroup, you can make changes to the policy that is specified. All optional parameters are left unchanged if not specified.

For more information, see MixedInstancesPolicy in the Amazon EC2 Auto Scaling API Reference and Auto Scaling Groups with Multiple Instance Types and Purchase Options in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

An embedded object that specifies a mixed instances policy. When you make changes to an existing policy, all optional parameters are left unchanged if not specified. For more information, see Auto Scaling Groups with Multiple Instance Types and Purchase Options in the Amazon EC2 Auto Scaling User Guide.

" }, "MinSize":{ "shape":"AutoScalingGroupMinSize", @@ -4070,11 +4070,11 @@ }, "DesiredCapacity":{ "shape":"AutoScalingGroupDesiredCapacity", - "documentation":"

The desired capacity is the initial capacity of the Auto Scaling group after this operation completes and the capacity it attempts to maintain.

This number must be greater than or equal to the minimum size of the group and less than or equal to the maximum size of the group.

" + "documentation":"

The desired capacity is the initial capacity of the Auto Scaling group after this operation completes and the capacity it attempts to maintain. This number must be greater than or equal to the minimum size of the group and less than or equal to the maximum size of the group.

" }, "DefaultCooldown":{ "shape":"Cooldown", - "documentation":"

The amount of time, in seconds, after a scaling activity completes before another scaling activity can start. The default value is 300.

This setting applies when using simple scaling policies, but not when using other scaling policies or scheduled scaling. For more information, see Scaling Cooldowns for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

The amount of time, in seconds, after a scaling activity completes before another scaling activity can start. The default value is 300. This setting applies when using simple scaling policies, but not when using other scaling policies or scheduled scaling. For more information, see Scaling cooldowns for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide.

" }, "AvailabilityZones":{ "shape":"AvailabilityZones", @@ -4086,35 +4086,35 @@ }, "HealthCheckGracePeriod":{ "shape":"HealthCheckGracePeriod", - "documentation":"

The amount of time, in seconds, that Amazon EC2 Auto Scaling waits before checking the health status of an EC2 instance that has come into service. The default value is 0.

For more information, see Health Check Grace Period in the Amazon EC2 Auto Scaling User Guide.

Required if you are adding an ELB health check.

" + "documentation":"

The amount of time, in seconds, that Amazon EC2 Auto Scaling waits before checking the health status of an EC2 instance that has come into service. The default value is 0. For more information, see Health check grace period in the Amazon EC2 Auto Scaling User Guide.

Conditional: Required if you are adding an ELB health check.

" }, "PlacementGroup":{ "shape":"XmlStringMaxLen255", - "documentation":"

The name of the placement group into which to launch your instances, if any. A placement group is a logical grouping of instances within a single Availability Zone. You cannot specify multiple Availability Zones and a placement group. For more information, see Placement Groups in the Amazon EC2 User Guide for Linux Instances.

" + "documentation":"

The name of an existing placement group into which to launch your instances, if any. A placement group is a logical grouping of instances within a single Availability Zone. You cannot specify multiple Availability Zones and a placement group. For more information, see Placement Groups in the Amazon EC2 User Guide for Linux Instances.

" }, "VPCZoneIdentifier":{ "shape":"XmlStringMaxLen2047", - "documentation":"

A comma-separated list of subnet IDs for virtual private cloud (VPC).

If you specify VPCZoneIdentifier with AvailabilityZones, the subnets that you specify for this parameter must reside in those Availability Zones.

" + "documentation":"

A comma-separated list of subnet IDs for a virtual private cloud (VPC). If you specify VPCZoneIdentifier with AvailabilityZones, the subnets that you specify for this parameter must reside in those Availability Zones.

" }, "TerminationPolicies":{ "shape":"TerminationPolicies", - "documentation":"

A standalone termination policy or a list of termination policies used to select the instance to terminate. The policies are executed in the order that they are listed.

For more information, see Controlling Which Instances Auto Scaling Terminates During Scale In in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

A policy or a list of policies that are used to select the instances to terminate. The policies are executed in the order that you list them. For more information, see Controlling which Auto Scaling instances terminate during scale in in the Amazon EC2 Auto Scaling User Guide.

" }, "NewInstancesProtectedFromScaleIn":{ "shape":"InstanceProtected", - "documentation":"

Indicates whether newly launched instances are protected from termination by Amazon EC2 Auto Scaling when scaling in.

For more information about preventing instances from terminating on scale in, see Instance Protection in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Indicates whether newly launched instances are protected from termination by Amazon EC2 Auto Scaling when scaling in. For more information about preventing instances from terminating on scale in, see Instance scale-in protection in the Amazon EC2 Auto Scaling User Guide.

" }, "ServiceLinkedRoleARN":{ "shape":"ResourceName", - "documentation":"

The Amazon Resource Name (ARN) of the service-linked role that the Auto Scaling group uses to call other AWS services on your behalf. For more information, see Service-Linked Roles in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

The Amazon Resource Name (ARN) of the service-linked role that the Auto Scaling group uses to call other AWS services on your behalf. For more information, see Service-linked roles in the Amazon EC2 Auto Scaling User Guide.

" }, "MaxInstanceLifetime":{ "shape":"MaxInstanceLifetime", - "documentation":"

The maximum amount of time, in seconds, that an instance can be in service. The default is null.

This parameter is optional, but if you specify a value for it, you must specify a value of at least 604,800 seconds (7 days). To clear a previously set value, specify a new value of 0.

For more information, see Replacing Auto Scaling Instances Based on Maximum Instance Lifetime in the Amazon EC2 Auto Scaling User Guide.

Valid Range: Minimum value of 0.

" + "documentation":"

The maximum amount of time, in seconds, that an instance can be in service. The default is null. If specified, the value must be either 0 or a number equal to or greater than 86,400 seconds (1 day). To clear a previously set value, specify a new value of 0. For more information, see Replacing Auto Scaling instances based on maximum instance lifetime in the Amazon EC2 Auto Scaling User Guide.

" }, "CapacityRebalance":{ "shape":"CapacityRebalanceEnabled", - "documentation":"

Enables or disables capacity rebalance.

You can enable capacity rebalancing for your Auto Scaling groups when using Spot Instances. When you turn on capacity rebalancing, Amazon EC2 Auto Scaling attempts to launch a Spot Instance whenever Amazon EC2 predicts that a Spot Instance is at an elevated risk of interruption. After launching a new instance, it then terminates an old instance. For more information, see Amazon EC2 Auto Scaling capacity rebalancing in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Enables or disables Capacity Rebalancing. For more information, see Amazon EC2 Auto Scaling Capacity Rebalancing in the Amazon EC2 Auto Scaling User Guide.

" } } }, From 274631f70061fd420b83b53851e686910f1143c0 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 10 Nov 2020 19:05:40 +0000 Subject: [PATCH 167/339] Release 2.15.25. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.25.json | 42 +++++++++++++++++++ .../bugfix-AWSSDKforJavav2-dc586b4.json | 6 --- .../bugfix-AWSSDKforJavav2-f7960d9.json | 6 --- ...ure-AmazonElasticComputeCloud-489f802.json | 6 --- ...AmazonSimpleSystemsManagerSSM-b7d3853.json | 6 --- .../feature-AutoScaling-546c9db.json | 6 --- .../feature-ElasticLoadBalancing-4445066.json | 6 --- CHANGELOG.md | 27 ++++++++++++ README.md | 8 ++-- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- .../serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 289 files changed, 353 insertions(+), 320 deletions(-) create mode 100644 .changes/2.15.25.json delete mode 100644 .changes/next-release/bugfix-AWSSDKforJavav2-dc586b4.json delete mode 100644 .changes/next-release/bugfix-AWSSDKforJavav2-f7960d9.json delete mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-489f802.json delete mode 100644 .changes/next-release/feature-AmazonSimpleSystemsManagerSSM-b7d3853.json delete mode 100644 .changes/next-release/feature-AutoScaling-546c9db.json delete mode 100644 .changes/next-release/feature-ElasticLoadBalancing-4445066.json diff --git a/.changes/2.15.25.json b/.changes/2.15.25.json new file mode 100644 index 000000000000..5dbb8443dabe --- /dev/null +++ b/.changes/2.15.25.json @@ -0,0 +1,42 @@ +{ + "version": "2.15.25", + "date": "2020-11-10", + "entries": [ + { + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "This release adds support for Gateway Load Balancer VPC endpoints and VPC endpoint services" + }, + { + "type": "feature", + "category": "Amazon Simple Systems Manager (SSM)", + "contributor": "", + "description": "Add SessionId as a filter for DescribeSessions API" + }, + { + "type": "feature", + "category": "Elastic Load Balancing", + "contributor": "", + "description": "Added support for Gateway Load Balancers, which make it easy to deploy, scale, and run third-party virtual networking appliances." + }, + { + "type": "feature", + "category": "Auto Scaling", + "contributor": "", + "description": "Documentation updates and corrections for Amazon EC2 Auto Scaling API Reference and SDKs." + }, + { + "type": "bugfix", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Replaced class loading from Thread.currentThread().getContextClassLoader() to ClassLoaderHelper in ProfileCredentialsUtils and WebIdentityCredentialsUtils, since it was causing Class not found error." + }, + { + "type": "bugfix", + "category": "AWS SDK for Java v2", + "contributor": "@frosforever", + "description": "Fix default client error to have spaces between words." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/bugfix-AWSSDKforJavav2-dc586b4.json b/.changes/next-release/bugfix-AWSSDKforJavav2-dc586b4.json deleted file mode 100644 index a6ddd19deb03..000000000000 --- a/.changes/next-release/bugfix-AWSSDKforJavav2-dc586b4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "category": "AWS SDK for Java v2", - "contributor": "", - "type": "bugfix", - "description": "Replaced class loading from Thread.currentThread().getContextClassLoader() to ClassLoaderHelper in ProfileCredentialsUtils and WebIdentityCredentialsUtils, since it was causing Class not found error." -} diff --git a/.changes/next-release/bugfix-AWSSDKforJavav2-f7960d9.json b/.changes/next-release/bugfix-AWSSDKforJavav2-f7960d9.json deleted file mode 100644 index 96a12cba27bc..000000000000 --- a/.changes/next-release/bugfix-AWSSDKforJavav2-f7960d9.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "category": "AWS SDK for Java v2", - "contributor": "@frosforever", - "type": "bugfix", - "description": "Fix default client error to have spaces between words." -} diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-489f802.json b/.changes/next-release/feature-AmazonElasticComputeCloud-489f802.json deleted file mode 100644 index b8e84f767d53..000000000000 --- a/.changes/next-release/feature-AmazonElasticComputeCloud-489f802.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Elastic Compute Cloud", - "contributor": "", - "description": "This release adds support for Gateway Load Balancer VPC endpoints and VPC endpoint services" -} diff --git a/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-b7d3853.json b/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-b7d3853.json deleted file mode 100644 index 02ae275aca70..000000000000 --- a/.changes/next-release/feature-AmazonSimpleSystemsManagerSSM-b7d3853.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Simple Systems Manager (SSM)", - "contributor": "", - "description": "Add SessionId as a filter for DescribeSessions API" -} diff --git a/.changes/next-release/feature-AutoScaling-546c9db.json b/.changes/next-release/feature-AutoScaling-546c9db.json deleted file mode 100644 index 64398ae537b5..000000000000 --- a/.changes/next-release/feature-AutoScaling-546c9db.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Auto Scaling", - "contributor": "", - "description": "Documentation updates and corrections for Amazon EC2 Auto Scaling API Reference and SDKs." -} diff --git a/.changes/next-release/feature-ElasticLoadBalancing-4445066.json b/.changes/next-release/feature-ElasticLoadBalancing-4445066.json deleted file mode 100644 index 8dca6cce9324..000000000000 --- a/.changes/next-release/feature-ElasticLoadBalancing-4445066.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Elastic Load Balancing", - "contributor": "", - "description": "Added support for Gateway Load Balancers, which make it easy to deploy, scale, and run third-party virtual networking appliances." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index d18d984429d6..3d39a7862a1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,30 @@ +# __2.15.25__ __2020-11-10__ +## __AWS SDK for Java v2__ + - ### Bugfixes + - Fix default client error to have spaces between words. + - Contributed by: @frosforever + - Replaced class loading from Thread.currentThread().getContextClassLoader() to ClassLoaderHelper in ProfileCredentialsUtils and WebIdentityCredentialsUtils, since it was causing Class not found error. + +## __Amazon Elastic Compute Cloud__ + - ### Features + - This release adds support for Gateway Load Balancer VPC endpoints and VPC endpoint services + +## __Amazon Simple Systems Manager (SSM)__ + - ### Features + - Add SessionId as a filter for DescribeSessions API + +## __Auto Scaling__ + - ### Features + - Documentation updates and corrections for Amazon EC2 Auto Scaling API Reference and SDKs. + +## __Elastic Load Balancing__ + - ### Features + - Added support for Gateway Load Balancers, which make it easy to deploy, scale, and run third-party virtual networking appliances. + +## __Contributors__ +Special thanks to the following contributors to this release: + +@frosforever # __2.15.24__ __2020-11-09__ ## __AWS DataSync__ - ### Features diff --git a/README.md b/README.md index 82b643051fa8..40c55b022a76 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.24 + 2.15.25 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.24 + 2.15.25 software.amazon.awssdk s3 - 2.15.24 + 2.15.25 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.24 + 2.15.25 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 6f0d001476e0..8eb8ea045ba6 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 957acf81e925..6f2557870841 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index f06a9c7def8b..30d38e5d5c71 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.15.25-SNAPSHOT + 2.15.25 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 65f32917b8bb..768b426b8f56 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 3086d7430207..fdd41bbe943e 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.25-SNAPSHOT + 2.15.25 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index d73aecbe8b11..03805bb37f17 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.25-SNAPSHOT + 2.15.25 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 204fedd446ba..8f47dfe44e14 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.15.25-SNAPSHOT + 2.15.25 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index ecb2fcdaf9dc..a3e9bde1d758 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.25-SNAPSHOT + 2.15.25 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index ce65eb31762d..6661b4f3a574 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.15.25-SNAPSHOT + 2.15.25 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 87dc9bdea7e6..f67134e3b633 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.25-SNAPSHOT + 2.15.25 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 3e1d1244ca57..6c86f0719be7 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index b2269416c54b..b8183a01c595 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 3be75ebdda9c..8f0310239bab 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.25-SNAPSHOT + 2.15.25 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index ca99140e78df..c6cb82284152 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.25-SNAPSHOT + 2.15.25 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index edddf359c59c..32a043f88a1b 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index d7f033efa919..23d2b9bce061 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 8c4dd4e39325..4e34c82c979e 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.25-SNAPSHOT + 2.15.25 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index bacff59b8241..f9af8c7514ba 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.15.25-SNAPSHOT + 2.15.25 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 937ea9573ca1..92e5401ab397 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 3bdd7499ffa2..73c18d650cf0 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.15.25-SNAPSHOT + 2.15.25 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 03025e7bca7d..5c94c6f3f0cc 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.15.25-SNAPSHOT + 2.15.25 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index f165c5d314c1..0a746228f444 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.15.25-SNAPSHOT + 2.15.25 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index d92222c3ab94..d6b34dca0e7f 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 2c978cbc00f0..9583c0461995 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 5b7fd5d0e905..55bfde6bb4e8 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.25-SNAPSHOT + 2.15.25 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 3cd84f2f5a27..f5fa84bbf0da 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.25-SNAPSHOT + 2.15.25 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 8532ed14b5c6..87e45162c9c4 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.15.25-SNAPSHOT + 2.15.25 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 4c576f28fc0e..43683e803bda 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.15.25-SNAPSHOT + 2.15.25 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 4df266e1a0d2..58671025422c 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.15.25-SNAPSHOT + 2.15.25 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 1145c1bf6d38..a3e12d7cc935 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.15.25-SNAPSHOT + 2.15.25 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 52e3cd7da88c..5f882e1d658e 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 0afe67920912..3c6d5164a174 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.15.25-SNAPSHOT + 2.15.25 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 0afc728ec7d2..7c42425d3ce8 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.15.25-SNAPSHOT + 2.15.25 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index f8fb4a3c3079..1f0b65418bb4 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.25-SNAPSHOT + 2.15.25 metric-publishers diff --git a/pom.xml b/pom.xml index 12f8943059e3..56d03fbc317e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.25-SNAPSHOT + 2.15.25 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 9b1b09e0ad1d..4c252eff4d9a 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.25-SNAPSHOT + 2.15.25 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 0bdc09c673fe..ace7c6288990 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.15.25-SNAPSHOT + 2.15.25 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 5d15a395de63..763a282fe0b5 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.25-SNAPSHOT + 2.15.25 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index ed244b3a44ff..c43c345e15d8 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index dba0acb7575a..6de375e97497 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 850787f4ff38..538e1ffc97ec 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index b7b3f7493fb6..9dd0a227ab32 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 488d24b15490..654bd0b34f75 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 327f9b8d6351..d61b4a52a0ab 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 03e6dff21d5c..afbb29269d95 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index b5fb48e68991..70cad41974a2 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 29aade0e9528..476c92a76e2b 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 9ceeaf6ced82..ee8170296408 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 52f3755877d1..8aa3c9b7bb04 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index af91b80e3156..2d7d9a7330b7 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index a9dcca38e543..d595ad5894e4 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index ed1f37e30246..45d5e3294d61 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 5d49dcaf4df0..0f545635f275 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 001b90682725..6bd0914ece9d 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 8441abadcb07..89f24a336e14 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 53d344186feb..e7d874d7d1bd 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 84f44d437f29..d76c876e9e87 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 551710761852..1bf23eb7788e 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 68ef2bb96463..c0731e6ddba1 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 046bfc138c5e..ed6c3a5c5971 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 79f93b6db85f..701f73cbf847 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 74896f936be7..0aacc367b2d5 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 2bd6c78fe148..9cf3a254afbd 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 31be58fa0421..ebca07277819 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 09e242851aff..a677fae47732 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 28de02a25862..ce098036b7dc 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index e69019e2cc8b..04085049aaa0 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index fa1801c6cff7..3ca63595e89e 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 21a1d9930964..1c2cbb4b5f0e 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index b3c557a62349..0a389f3ca312 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 0b1b3e7acd98..5c948b8b3103 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 03eb803928eb..fb68ac60a8eb 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 39f1e8822174..5f02e3f6c103 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 3098550defeb..f53aa2f33fc2 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index cd4ab69242dd..7bd2e985d25c 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 8c7ff9cd31a7..c9e09575f845 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index d7ad3f9fd612..1000f7613ac7 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 4db13e86fbcf..fd4888a18469 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 54ba0c02797c..46810a08ddd8 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 6a675dd948ed..e34b812563ea 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index b2d826a136c7..0155406d71d2 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index fa58fcdc49c3..577ca717a9c9 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index cb9d743f82bb..c97c0a147cb6 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index c215b3c36063..866207b18aaf 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 61fc41c4605d..264e3059bc8c 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 0f07f55212ef..60459e800bf2 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index d967163359bc..1792f10f2681 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index ffaac49f7903..bad8715e85ab 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 2320f0593873..5c1fe5ebdf6b 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 9570369f7b6d..fd7827ec5b3b 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 5c59b734c6a2..177ca373eca7 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 785ed2e4fa93..acd774ab6b2e 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 0134d53a18f8..387a6cdbc423 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index d253d3dae748..740748c0714f 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 1255eff560ca..61d2ba94a5ab 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index de934df1fd86..6a24de1f8caa 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 9f4ac66d28a5..9afc13a0ab95 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index c188e836ac30..94ebe0fef2bf 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index fe19928bee3b..eb8f80e06496 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 8b304ec6dc49..1406e4746f92 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 8779b87734c1..79995a296020 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 184548fa3262..bb72516bd85c 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 28de5486bd35..b18e1553b36f 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 82e80c379567..404ff16cb864 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 37075d332122..5a67fe956aed 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 8ccbb835942d..a39cd6ee8dd8 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 7e54fff83283..8f171fd29226 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 302b557d03c2..9b77baf152b8 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 4440a1422fa2..09cd54890368 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 4556f867d0b9..0e17c4be6f9c 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 14c2ac20bf06..4e2fada9a601 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 5d42f6b23349..d2aaa247f474 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 2ed6fa479a72..94fabb7b2cc1 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index dee97f3f0a0e..5b6f005888fc 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index d46b0c2c2de9..b862746a71ee 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index bd2986939cf6..abffcbae0429 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 1c61cdb30b05..166beb7d1012 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 98faf45b3838..51eb6d00def4 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 72c6496204eb..1514257e64ef 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 7a0d01084b0c..9a694a59c925 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index a928b77a14a9..b0fe45fe234b 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 3fc12f9e8236..6635d1e281f9 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index a25ee9a07082..6f1a089e21fd 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 0ced57e79e68..daec9535dbf5 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 99fab85ead39..73887cb45c0d 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 353651df7f1a..8e5fc142bf38 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index f6a20b0e26ff..d69963eaeb90 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 1dcb99dd74e9..c31cae42deac 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index c9696cc1ce22..98b687cc50d7 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 94a5ab0b1de4..e2251dd434c0 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index a428d980bd8f..4f4e85c98c59 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index b284efcc65fc..19bf29c89ccc 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index c78c24e6e902..ea4a877fd131 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index efe4e586e295..77637d2a5fc4 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 023fbeccf4ab..9edab18adc47 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 6b1b7b6c4bbf..6e663f343d05 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 10dd25e3a2f8..a5535765c194 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 46c2e3476762..c9f6d2e587a9 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 1bbb90697863..0fc8d10c7f3b 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 4d701daca59c..f95f24e8e2b5 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index bd7ab2949a0a..9c82a59669e4 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 7e19b43421e7..a0b8780a6314 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 22134b9f798c..3b540a7da961 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 9b80932f2b77..df6a314ebd7e 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index d36a075ca867..f7aa46475115 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index ce7c59eb0eb3..3bcb6e46c7f0 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 894c88631120..ebf40063b9ab 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 5ef15747f307..6f91b64cd631 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 3928b5272ff1..9fbc91f92600 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 265d56eee71d..e95c4d37dc1f 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 3b41eacf632e..0f2c05f3aa03 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index ef4eb2cae794..03990840f0c2 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 9de6b153adf3..136fe327f5cc 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 2a6e537ff329..f37b4f3e0c8e 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index d5894e7e31dc..ad3e7b53a714 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 5ce3d7d2ccbb..820a6c73f72e 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index a0e884e63a38..2ce2660146aa 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 38949e48ad83..e4af69c580b8 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index f213600490eb..46abc58d7e5a 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index eb6b4827bc4c..8d49b6e49ef7 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 2eb3af8b69cb..7585df25679c 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 6e74e632ecc3..a40809e141a8 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 70f67c0b9a9a..18a02e874595 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 3a8ce5a067ad..5492b6462db7 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 466646a9208b..4f112668b893 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index e64b65237300..a2abb55b8a07 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 4ed6c40b5ac8..1a734c513b13 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index b33bafd28ba0..e1dfea3b9a98 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index a45985bdf367..79b8ee04cbeb 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 7668398bbe22..42dcb99ee751 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 688b8dc5c0d6..d718d7ffd347 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index fafeb4171d19..dbff2f388c93 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index a90ce52b942a..f28368126694 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index b37875776704..cc3100e0a32d 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 64196431a106..d3b24cfdae1d 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 56c4b28aa62d..684ec3364db1 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 1d54d5a300fa..2604a0947ef7 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index bd2f15fe055f..3c91b565767f 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 9132d3ced7bc..cede6cf80d15 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 97e7ac9a5f4b..8d9c2c7a758b 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 985d6993aad9..fc7acb60a28c 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index cfa88b16ed50..02699a90741f 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index b2f7483520bd..fbe8c75eeda4 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index e7cb538cb6ad..e96e72a01f66 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 276e77bf3530..c40171a7be71 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index e4d8f2f5ec6d..6f8d97b1bee2 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 50bc5dd116b0..ee47cfb5486e 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 2822ad4bd9b5..ca1573daa296 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 7c24298ff04e..51a04a506625 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 6b80a36736ab..0206f2b57de2 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 82f0031742c8..6116fd28ab4e 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 68dd119d3451..21418c00bde5 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 4e4649554297..e8083325188d 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index a763c6847ba4..828c91b7e213 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index f2fb1c862c39..7b72f2fb7fa7 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index a2adf76ca7b2..54546195b083 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index ae9bf3a96736..c39a8831ad2e 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 7d50aa3afc00..a6762768ac1e 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 1a3de84d8dd5..c641d7aabd96 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index e7f53a5ed5fe..4d27f7d018bb 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 0f62663c1f0a..9c8e687884d1 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 046b5266e830..d902f28c20c0 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 54c0e91a65cd..7716492f9483 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index af63285f9bc4..7324d8f5b427 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 280d7b4c53ee..e602b5d940ac 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 47be47022afa..d95b4229f2af 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.25-SNAPSHOT + 2.15.25 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 9e389e6ebd41..5be2ad8b6ff3 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 085e299884b2..25b9fa545ffc 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index ed642b351a27..47d9b1ab634a 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 73e215bc2d94..2e0de6688f21 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 0c805da72b7e..95bf4f923f30 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 03a425f94a2d..3735378bf689 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 4d3889c7e497..a447706ae397 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 83f1e5d50b4c..f462e4733a2f 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 24d107682b18..a30012807300 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index eed2ce314197..30d235d3221f 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index e2dfdd17ca50..b4ade2fcdaeb 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 64ef1121c708..1f7f225357d8 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 68c541d66d3c..7f573cfcfbec 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 385f8c3d7858..61c63bbf4442 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 6271a8df8f27..9c742de7ded5 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index bb0437430fe0..62aec1eaec68 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 729cf236efb3..190b2dcd4ce1 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 0148b953f0a6..b523207a2a3f 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index a831ec27ef1b..8bfde765136f 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 25d216ae4feb..e2700be10145 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 36035cd9d216..09da32bc3c5f 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index b1514c4c18ed..d111b0f921dc 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 3e33a787a78c..dc39e4f492eb 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 27cc00bf66b5..7ea5effdf315 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 702ade5a4b56..738ec4890135 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 466fe23c89a8..5183d482abbf 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 539e27b8b8dc..1008daa76daa 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 7980b4504c51..4649cf7d414d 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index d8f0cce66044..39ce37fa1ca7 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index d453c15c1d89..993ddd6f6ff0 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index d6820ce039f3..2a7f3aea14f3 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 7055f7daab0a..1f1b18f2ea40 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 9977cfc5beae..1f80c783ec0f 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 98accd52bdc2..493b0708ee13 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index b0ffe7104d99..474d7407db75 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 84b08e30dfd0..f216cfd2652c 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 8aff98d9f570..6bfb6a342da3 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index ccbb0b6dffec..4ffbff28cc7d 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 03030edb224c..303fc4a52809 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index c632359f6075..d76dd58e0945 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 000732426130..5fe8d0d36ab6 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index be9cb3f9a255..0b383c387563 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 83afd49808db..3254d6495475 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index a19cd551550e..a7250a50ded4 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 813367662522..07c61555895c 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index ef52d07d3169..90c73f8aa03d 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index cec9a74d407d..5d8befee72de 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 5e8bfcc91f47..191e914cc153 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index ab4397acde26..cbe570cd33a4 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 87b40d9e7653..4991035897f9 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 998501fe339d..6ec76bdfdd5d 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 766b4888c0c7..c647c3eba7fb 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 1fd176dadb75..2a9218a82705 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index c3cf0db3eb07..28620797e676 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 4bd25165deac..e0d3304d8024 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index c54538455c36..5b44629aa758 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 112538d464e2..f4c1cff78b5e 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 7cff8f2c2649..3d3300b642b0 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 3f356ecae1ee..072b59e94aa7 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index d124e5a9edda..031e47cd0018 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index efbc77f5dc94..d056f575d140 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 30bf2cea7c5e..48ebeed41fb1 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index fdac0248f364..c5531eec3af6 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25-SNAPSHOT + 2.15.25 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 82d284ab06c9..8a462690da69 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.15.25-SNAPSHOT + 2.15.25 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 9f0f90d29f63..f486f7b2a0d5 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.15.25-SNAPSHOT + 2.15.25 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 60b2640abb78..dcbbb155186b 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.15.25-SNAPSHOT + 2.15.25 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index d9674060c280..bdf51b480bad 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.15.25-SNAPSHOT + 2.15.25 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 0f60ce0079b2..c0008285cfef 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.15.25-SNAPSHOT + 2.15.25 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 7e85e954d8e7..a1b6f30c725b 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.25-SNAPSHOT + 2.15.25 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index d0f8c35aa347..a5e2fab961d0 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.15.25-SNAPSHOT + 2.15.25 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index d1b3e6829577..6e41a1018089 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.15.25-SNAPSHOT + 2.15.25 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index d3471f7e5d18..5327c4918e9e 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.15.25-SNAPSHOT + 2.15.25 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 807b2a0df3b7..a04c3d6285b0 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.15.25-SNAPSHOT + 2.15.25 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index b526e750529a..8547d0582311 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.25-SNAPSHOT + 2.15.25 4.0.0 From b25ad4efde0d9541b3e4be88cc6c7848049630fe Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 10 Nov 2020 19:30:44 +0000 Subject: [PATCH 168/339] Update to next snapshot version: 2.15.26-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/pom.xml | 2 +- services/databasemigration/pom.xml | 2 +- services/dataexchange/pom.xml | 2 +- services/datapipeline/pom.xml | 2 +- services/datasync/pom.xml | 2 +- services/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 280 files changed, 280 insertions(+), 280 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 8eb8ea045ba6..cc54a7124535 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 6f2557870841..424195c4d7c4 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 30d38e5d5c71..c5ec4ec740cf 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.15.25 + 2.15.26-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 768b426b8f56..2fad4b69d6f7 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index fdd41bbe943e..d470f8f34ff1 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.25 + 2.15.26-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 03805bb37f17..065ac92c7599 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.25 + 2.15.26-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 8f47dfe44e14..6f1ec7a42c19 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.15.25 + 2.15.26-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index a3e9bde1d758..fb4ea5cbae3b 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.25 + 2.15.26-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 6661b4f3a574..1dbb9a6ea4cf 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.15.25 + 2.15.26-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index f67134e3b633..652b87467f67 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.25 + 2.15.26-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 6c86f0719be7..9d299ea0ae83 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index b8183a01c595..584e565fa0a0 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 8f0310239bab..7e902fd1128d 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.25 + 2.15.26-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index c6cb82284152..9f2b9f57d3d9 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.25 + 2.15.26-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 32a043f88a1b..055928a4337d 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 23d2b9bce061..ea79d267482c 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 4e34c82c979e..85fe1117511a 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.25 + 2.15.26-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index f9af8c7514ba..a793e8fe652c 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.15.25 + 2.15.26-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 92e5401ab397..8e6277d7efd8 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 73c18d650cf0..bf6ef1e20a0c 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.15.25 + 2.15.26-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 5c94c6f3f0cc..ae0e1e1f490c 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.15.25 + 2.15.26-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 0a746228f444..faa9baae8814 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.15.25 + 2.15.26-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index d6b34dca0e7f..8fde30f39562 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 9583c0461995..8b3c69a31c4e 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 55bfde6bb4e8..3ad2c0f20636 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.25 + 2.15.26-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index f5fa84bbf0da..d4ce9a3ae0bf 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.25 + 2.15.26-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 87e45162c9c4..346c9e26172f 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.15.25 + 2.15.26-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index 43683e803bda..d1ebf65b8491 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.15.25 + 2.15.26-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 58671025422c..cd7ea00a07eb 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.15.25 + 2.15.26-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index a3e12d7cc935..21c90a4d0c55 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.15.25 + 2.15.26-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 5f882e1d658e..f6fa6d53731a 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 3c6d5164a174..c1d4f61646ae 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.15.25 + 2.15.26-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 7c42425d3ce8..4c6915f4055f 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.15.25 + 2.15.26-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 1f0b65418bb4..4b809752319b 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.25 + 2.15.26-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 56d03fbc317e..fbf2dc33c0f5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.25 + 2.15.26-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 4c252eff4d9a..04ea678e0e29 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.25 + 2.15.26-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index ace7c6288990..264e56f47336 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.15.25 + 2.15.26-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 763a282fe0b5..dd153e0bee78 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.25 + 2.15.26-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index c43c345e15d8..286d4e82dd85 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 6de375e97497..0d49fa13f8df 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 538e1ffc97ec..18ca3d022776 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 9dd0a227ab32..a6d30eec0ed4 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 654bd0b34f75..b93c830783a4 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index d61b4a52a0ab..02198b01af22 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index afbb29269d95..ae73adec08d0 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 70cad41974a2..86cc18fa700a 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 476c92a76e2b..2df0df385a6e 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index ee8170296408..ef26e8eecea4 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 8aa3c9b7bb04..f1a54f206231 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 2d7d9a7330b7..831434b9109f 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index d595ad5894e4..a686d66e77d6 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 45d5e3294d61..5b475049bd66 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 0f545635f275..dd9c54ce46af 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 6bd0914ece9d..91d29d5d1313 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 89f24a336e14..9b2bef3a018a 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index e7d874d7d1bd..d0721142448f 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index d76c876e9e87..095445ad31d2 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 1bf23eb7788e..250d24b61acd 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index c0731e6ddba1..a0ae153fadd8 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index ed6c3a5c5971..27871b0f20df 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 701f73cbf847..1c67531d299e 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 0aacc367b2d5..e9b1eb45a7a3 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 9cf3a254afbd..439426c28c64 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index ebca07277819..30bd481b8444 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index a677fae47732..575c5575fd6f 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index ce098036b7dc..4d2359f20f72 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 04085049aaa0..78f6f81b51ec 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 3ca63595e89e..cfab74fd3d0f 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 1c2cbb4b5f0e..ed8d8e756a5e 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 0a389f3ca312..6941e58ba9af 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 5c948b8b3103..1a73634cdb58 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index fb68ac60a8eb..24c5bd950b21 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 5f02e3f6c103..21a281074641 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index f53aa2f33fc2..c535b7f72d7a 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 7bd2e985d25c..cc2d1d4e2ded 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index c9e09575f845..c06290f26957 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 1000f7613ac7..b85b4ad81007 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index fd4888a18469..28ec1b4a141d 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 46810a08ddd8..cee564a637c6 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index e34b812563ea..6cac20a58845 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 0155406d71d2..414e554b028f 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 577ca717a9c9..8acc1becda26 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index c97c0a147cb6..cbc0e97fc5e1 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 866207b18aaf..fce37f8945d6 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 264e3059bc8c..304c9233ef0d 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 60459e800bf2..97e1318e0087 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 1792f10f2681..82282d360bee 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index bad8715e85ab..780e40cd70a8 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 5c1fe5ebdf6b..a58f6cfbaa21 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index fd7827ec5b3b..0992c4485154 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 177ca373eca7..f7ce85c2e3e2 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index acd774ab6b2e..394ed6d839cb 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 387a6cdbc423..23872a963e3c 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 740748c0714f..a13650394806 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 61d2ba94a5ab..c91321fdf99a 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 6a24de1f8caa..d615411e678a 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 9afc13a0ab95..7d6a1539556f 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 94ebe0fef2bf..837a7e5824fb 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index eb8f80e06496..0c3909b90985 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 1406e4746f92..396d161656a6 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 79995a296020..bd28e0b112db 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index bb72516bd85c..3f28bf9824d8 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index b18e1553b36f..f08f1646f3d0 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 404ff16cb864..d17f5e333977 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 5a67fe956aed..b2bb0fa34c83 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index a39cd6ee8dd8..95ae49573100 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 8f171fd29226..9f8fde6f2c8c 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 9b77baf152b8..fcb2de06d78a 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 09cd54890368..c069c0a1af01 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 0e17c4be6f9c..577d2a0ae295 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 4e2fada9a601..7c0768e2b69f 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index d2aaa247f474..41d32f10dc11 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 94fabb7b2cc1..b2c36932bd00 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 5b6f005888fc..17c99dc6cf7d 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index b862746a71ee..00b143069f56 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index abffcbae0429..829b6c72e0c4 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 166beb7d1012..603401a7ae8f 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 51eb6d00def4..f3ef5ef6e6aa 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 1514257e64ef..87945f10aaab 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 9a694a59c925..784693d631f9 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index b0fe45fe234b..7ca1791944ec 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 6635d1e281f9..e55dba548203 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 6f1a089e21fd..1df54c72dcf6 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index daec9535dbf5..4e83f8a0af2b 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 73887cb45c0d..5ac792db7452 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 8e5fc142bf38..704abceecdcb 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index d69963eaeb90..a67cee0405e4 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index c31cae42deac..f5340420d0d1 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 98b687cc50d7..86367ff37c4f 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index e2251dd434c0..d62788c9e6db 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 4f4e85c98c59..cd083bf1caee 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 19bf29c89ccc..6b0079ef3d7d 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index ea4a877fd131..48ba1fab35a3 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 77637d2a5fc4..6e7395fd191d 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 9edab18adc47..af689c3e9342 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 6e663f343d05..44be7c3eae68 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index a5535765c194..9bcde5312f99 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index c9f6d2e587a9..3000199355d6 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 0fc8d10c7f3b..2f388e688ae0 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index f95f24e8e2b5..83d9feb8726f 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 9c82a59669e4..49ca0dc70530 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index a0b8780a6314..168aa7d70cd2 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 3b540a7da961..f49576087e99 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index df6a314ebd7e..7fd6788f62d7 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index f7aa46475115..0138e92e3660 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 3bcb6e46c7f0..8c80eb4b0127 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index ebf40063b9ab..0477de4f9583 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 6f91b64cd631..d2e24569e268 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 9fbc91f92600..4ffb5eb995a8 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index e95c4d37dc1f..37aaf3b2359b 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 0f2c05f3aa03..adfa19522be9 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 03990840f0c2..e2f9276308c4 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 136fe327f5cc..f17ce94fd018 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index f37b4f3e0c8e..6d914a777db0 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index ad3e7b53a714..e1cbc6d6eebf 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 820a6c73f72e..d773b512f1f9 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 2ce2660146aa..272d83a8ed95 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index e4af69c580b8..f6d30ece8c23 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 46abc58d7e5a..a5e734ff9cc8 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 8d49b6e49ef7..cadf9f004982 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 7585df25679c..864cc161f06f 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index a40809e141a8..98bcb6c01a15 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 18a02e874595..dbc22d092bce 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 5492b6462db7..7a73e61e9654 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 4f112668b893..59c98fc950c8 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index a2abb55b8a07..22c0d107fc26 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 1a734c513b13..3cd79c19c3a3 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index e1dfea3b9a98..f60f04b45b05 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 79b8ee04cbeb..2e5b405f69b2 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 42dcb99ee751..2a8836bb3827 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index d718d7ffd347..93e90c3833cf 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index dbff2f388c93..32429b804ac3 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index f28368126694..a191c54cee9a 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index cc3100e0a32d..ae8a76884545 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index d3b24cfdae1d..5d92bbb41359 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 684ec3364db1..7424ef8fa84e 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 2604a0947ef7..595e35d25087 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 3c91b565767f..856c29d3750e 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index cede6cf80d15..27c6e2b64356 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 8d9c2c7a758b..0778e328c479 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index fc7acb60a28c..ce1bf7c71eca 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 02699a90741f..c1988a9c30be 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index fbe8c75eeda4..e9ab32ab3bc9 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index e96e72a01f66..7b3e7f80da4a 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index c40171a7be71..9d86633b76c9 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 6f8d97b1bee2..46be625635e1 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index ee47cfb5486e..63f18cd680c6 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index ca1573daa296..60f98ef9c77a 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 51a04a506625..c7ddef34c774 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 0206f2b57de2..aa0f3aef6c77 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 6116fd28ab4e..3add2c86b8d0 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 21418c00bde5..40bcd9faed77 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index e8083325188d..9ac665a5a342 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 828c91b7e213..47702918f2ca 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 7b72f2fb7fa7..fca76f1bcacb 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 54546195b083..4dc1055f6e0d 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index c39a8831ad2e..d4b609a48d3f 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index a6762768ac1e..e9d57e1d471f 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index c641d7aabd96..f72060c51994 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 4d27f7d018bb..92d4c425963d 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 9c8e687884d1..af9931884c06 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index d902f28c20c0..7c03c9dfaa9b 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 7716492f9483..607d580ffe67 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 7324d8f5b427..c87b17326d5c 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index e602b5d940ac..a6e7d6c0f5dc 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index d95b4229f2af..3a878f0ef4b4 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.25 + 2.15.26-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 5be2ad8b6ff3..8e07eacf657a 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 25b9fa545ffc..7d1f0c898a47 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 47d9b1ab634a..663b03a6aa69 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 2e0de6688f21..a1707cdad51f 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 95bf4f923f30..f0b68a7c536d 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 3735378bf689..ee4d022c8c18 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index a447706ae397..6579af1f9a33 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index f462e4733a2f..abbf651b5887 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index a30012807300..747a627fab09 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 30d235d3221f..f50be6d70d23 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index b4ade2fcdaeb..a87c2a881dc0 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 1f7f225357d8..2a44b31a2644 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 7f573cfcfbec..f4902a7fed8d 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 61c63bbf4442..3bf713c46cd2 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 9c742de7ded5..dc9132318dda 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 62aec1eaec68..f4dc5f1e92bf 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 190b2dcd4ce1..452aa8b02de2 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index b523207a2a3f..d605d884f7df 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 8bfde765136f..2006beb86670 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index e2700be10145..1d590b95ddad 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 09da32bc3c5f..638e1910e42f 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index d111b0f921dc..e7eeeda8173f 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index dc39e4f492eb..c9a47c0655e4 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 7ea5effdf315..a9838366a69a 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 738ec4890135..defe33a76535 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 5183d482abbf..7bb4f8ea6ea2 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 1008daa76daa..86dcccbf8955 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 4649cf7d414d..66e8b478c00e 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 39ce37fa1ca7..48174ca1c4b1 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 993ddd6f6ff0..408aacfc3248 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 2a7f3aea14f3..0cec769421f4 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 1f1b18f2ea40..b913a97e1149 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 1f80c783ec0f..b08239bb1e8e 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 493b0708ee13..90a37d972f98 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 474d7407db75..b5eb5f6dafdb 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index f216cfd2652c..57c6007bb0e6 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 6bfb6a342da3..d4c9a6fe501d 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 4ffbff28cc7d..c90d63e7e0e4 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 303fc4a52809..bc80f5f004c8 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index d76dd58e0945..12e763a1dc13 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 5fe8d0d36ab6..a799cf2ff248 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 0b383c387563..73d75f8171ae 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 3254d6495475..68dcd1b16c3d 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index a7250a50ded4..5f675d453904 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 07c61555895c..f7eb886176cf 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 90c73f8aa03d..0736ae7c3062 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 5d8befee72de..1e0db91e9b41 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 191e914cc153..3e4735bdf16e 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index cbe570cd33a4..1f1ea48c86cb 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 4991035897f9..b0b7cf8429cf 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 6ec76bdfdd5d..663cc3aa1d01 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index c647c3eba7fb..463c51ee50d9 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 2a9218a82705..f3f4ff535bac 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 28620797e676..e491ebb4bcaf 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index e0d3304d8024..edb3c43ef0c3 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 5b44629aa758..3174de075ba5 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index f4c1cff78b5e..8fb22773f5f1 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 3d3300b642b0..bec05a7eff52 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 072b59e94aa7..028a9367dbea 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 031e47cd0018..5e2972ecf5e3 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index d056f575d140..592ca833928c 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 48ebeed41fb1..1a217f2c3b9f 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index c5531eec3af6..c37f65ac830c 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.25 + 2.15.26-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 8a462690da69..cc56ea0faea6 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.15.25 + 2.15.26-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index f486f7b2a0d5..6f18214bb26a 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.15.25 + 2.15.26-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index dcbbb155186b..1ed3bbc42b92 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.15.25 + 2.15.26-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index bdf51b480bad..6a6d5df7ad98 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.15.25 + 2.15.26-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index c0008285cfef..bddc8fd2b954 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.15.25 + 2.15.26-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index a1b6f30c725b..9d9f912d3abc 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.25 + 2.15.26-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index a5e2fab961d0..9a14aa73635d 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.15.25 + 2.15.26-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 6e41a1018089..0623d9f052d1 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.15.25 + 2.15.26-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 5327c4918e9e..5320cdab8848 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.15.25 + 2.15.26-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index a04c3d6285b0..182aab5b44fa 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.15.25 + 2.15.26-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 8547d0582311..2a54b82a2b33 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.25 + 2.15.26-SNAPSHOT 4.0.0 From f35284e2bafc6fc43d02c70f4bf6ad5a782b9483 Mon Sep 17 00:00:00 2001 From: Dongie Agnir Date: Fri, 30 Oct 2020 15:45:35 -0700 Subject: [PATCH 169/339] Released ignored HTTP content in Netty client When cancelling a subscrption, it's possible onNext() is still invoked by the publisher if it processes signals asynchronously. While the adapter ignores the content rather forwarding it to the downstream subscriber, it leaves a dangling reference on the input HttpCotent. Fix this issue by decrementing the reference before returning. --- .../bugfix-NettyNIOHTTPClient-e6d95c3.json | 6 ++ .../nio/netty/internal/ResponseHandler.java | 2 + .../netty/internal/PublisherAdapterTest.java | 72 +++++++++++++++++++ 3 files changed, 80 insertions(+) create mode 100644 .changes/next-release/bugfix-NettyNIOHTTPClient-e6d95c3.json diff --git a/.changes/next-release/bugfix-NettyNIOHTTPClient-e6d95c3.json b/.changes/next-release/bugfix-NettyNIOHTTPClient-e6d95c3.json new file mode 100644 index 000000000000..68ef6d2e15fd --- /dev/null +++ b/.changes/next-release/bugfix-NettyNIOHTTPClient-e6d95c3.json @@ -0,0 +1,6 @@ +{ + "type": "bugfix", + "category": "Netty NIO HTTP Client", + "contributor": "", + "description": "Fix a bug where the Netty HTTP client can leak memory when a response stream is cancelled prematurely but the upstream publisher continues to invoke onNext for some time before stopping. Fixes [#2051](https://github.com/aws/aws-sdk-java-v2/issues/2051)." +} diff --git a/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/ResponseHandler.java b/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/ResponseHandler.java index 8019d0816a93..c4745d8b1031 100644 --- a/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/ResponseHandler.java +++ b/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/ResponseHandler.java @@ -38,6 +38,7 @@ import io.netty.handler.codec.http.HttpUtil; import io.netty.handler.timeout.ReadTimeoutException; import io.netty.handler.timeout.WriteTimeoutException; +import io.netty.util.ReferenceCountUtil; import java.io.IOException; import java.nio.ByteBuffer; import java.util.List; @@ -251,6 +252,7 @@ private void onCancel() { public void onNext(HttpContent httpContent) { // isDone may be true if the subscriber cancelled if (isDone.get()) { + ReferenceCountUtil.release(httpContent); return; } diff --git a/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/internal/PublisherAdapterTest.java b/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/internal/PublisherAdapterTest.java index bed4a8063a65..62a639c727d2 100644 --- a/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/internal/PublisherAdapterTest.java +++ b/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/internal/PublisherAdapterTest.java @@ -20,6 +20,7 @@ import static org.mockito.Mockito.mock; import static org.mockito.Mockito.times; import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.verifyNoMoreInteractions; import static org.mockito.Mockito.when; import static software.amazon.awssdk.http.nio.netty.internal.ChannelAttributeKey.EXECUTE_FUTURE_KEY; import static software.amazon.awssdk.http.nio.netty.internal.ChannelAttributeKey.PROTOCOL_FUTURE; @@ -27,6 +28,7 @@ import io.netty.buffer.ByteBufAllocator; import io.netty.buffer.EmptyByteBuf; +import io.netty.buffer.Unpooled; import io.netty.channel.ChannelHandlerContext; import io.netty.channel.EventLoopGroup; import io.netty.handler.codec.http.DefaultHttpContent; @@ -43,6 +45,7 @@ import org.junit.runner.RunWith; import org.mockito.Mock; import org.mockito.runners.MockitoJUnitRunner; +import org.reactivestreams.Publisher; import org.reactivestreams.Subscriber; import org.reactivestreams.Subscription; import software.amazon.awssdk.http.Protocol; @@ -155,6 +158,75 @@ public void errorOccurred_shouldInvokeResponseHandler() { verify(responseHandler).onError(exception); } + @Test + public void subscriptionCancelled_upstreamPublisherCallsOnNext_httpContentReleased() { + HttpContent firstContent = mock(HttpContent.class); + when(firstContent.content()).thenReturn(Unpooled.EMPTY_BUFFER); + + HttpContent[] contentToIgnore = new HttpContent[8]; + for (int i = 0; i < contentToIgnore.length; ++i) { + contentToIgnore[i] = mock(HttpContent.class); + when(contentToIgnore[i].content()).thenReturn(Unpooled.EMPTY_BUFFER); + } + + Publisher publisher = subscriber -> subscriber.onSubscribe(new Subscription() { + @Override + public void request(long l) { + // We ignore any cancel signal and just publish all the content + subscriber.onNext(firstContent); + + for (int i = 0; i < l && i < contentToIgnore.length; ++i) { + subscriber.onNext(contentToIgnore[i]); + } + } + + @Override + public void cancel() { + // no-op + } + }); + + DefaultStreamedHttpResponse streamedResponse = new DefaultStreamedHttpResponse(HttpVersion.HTTP_1_1, + HttpResponseStatus.OK, publisher); + + Subscriber subscriber = new Subscriber() { + private Subscription subscription; + + @Override + public void onSubscribe(Subscription subscription) { + this.subscription = subscription; + subscription.request(Long.MAX_VALUE); + } + + @Override + public void onNext(ByteBuffer byteBuffer) { + subscription.cancel(); + } + + @Override + public void onError(Throwable throwable) { + } + + @Override + public void onComplete() { + } + }; + + ResponseHandler.PublisherAdapter publisherAdapter = new ResponseHandler.PublisherAdapter(streamedResponse, ctx, + requestContext, executeFuture); + + publisherAdapter.subscribe(subscriber); + + // First one should be accessed as normal + verify(firstContent).content(); + verify(firstContent).release(); + + for (int i = 0; i < contentToIgnore.length; ++i) { + verify(contentToIgnore[i]).release(); + verifyNoMoreInteractions(contentToIgnore[i]); + } + } + static final class TestSubscriber implements Subscriber { private Subscription subscription; From 8ebfd7bad39b5f5a1132b3bbc26f424c659100a5 Mon Sep 17 00:00:00 2001 From: Dongie Agnir Date: Mon, 2 Nov 2020 12:10:48 -0800 Subject: [PATCH 170/339] Upgrade Netty to 4.1.53.Final Also upgrade corresponding tcnative dependency to 2.0.34.Final. --- .../next-release/feature-NettyNIOHTTPClient-25169e0.json | 6 ++++++ pom.xml | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 .changes/next-release/feature-NettyNIOHTTPClient-25169e0.json diff --git a/.changes/next-release/feature-NettyNIOHTTPClient-25169e0.json b/.changes/next-release/feature-NettyNIOHTTPClient-25169e0.json new file mode 100644 index 000000000000..3d7745e0507e --- /dev/null +++ b/.changes/next-release/feature-NettyNIOHTTPClient-25169e0.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Netty NIO HTTP Client", + "contributor": "", + "description": "Upgrade Netty libraries to `4.1.53.Final`, and `netty-tcnative-boringssl-static` to `2.0.34.Final`." +} diff --git a/pom.xml b/pom.xml index fbf2dc33c0f5..17656ef7d42a 100644 --- a/pom.xml +++ b/pom.xml @@ -95,8 +95,8 @@ 2.5 3.1.13 - - 4.1.46.Final + + 4.1.53.Final 3.3 1.3 UTF-8 @@ -122,7 +122,7 @@ 1.1 7.1.0 2.3 - 2.0.29.Final + 2.0.34.Final 1.11.477 1.0.392 From 611d415bb1717761d817160c4681e0f088224ffb Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 11 Nov 2020 19:08:17 +0000 Subject: [PATCH 171/339] Amazon Forecast Service Update: Providing support of custom quantiles in CreatePredictor API. --- ...feature-AmazonForecastService-65472e6.json | 6 ++ .../codegen-resources/service-2.json | 56 +++++++++++++++---- 2 files changed, 52 insertions(+), 10 deletions(-) create mode 100644 .changes/next-release/feature-AmazonForecastService-65472e6.json diff --git a/.changes/next-release/feature-AmazonForecastService-65472e6.json b/.changes/next-release/feature-AmazonForecastService-65472e6.json new file mode 100644 index 000000000000..139952694762 --- /dev/null +++ b/.changes/next-release/feature-AmazonForecastService-65472e6.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Forecast Service", + "contributor": "", + "description": "Providing support of custom quantiles in CreatePredictor API." +} diff --git a/services/forecast/src/main/resources/codegen-resources/service-2.json b/services/forecast/src/main/resources/codegen-resources/service-2.json index 9537a6b4fab9..43df730e8051 100644 --- a/services/forecast/src/main/resources/codegen-resources/service-2.json +++ b/services/forecast/src/main/resources/codegen-resources/service-2.json @@ -43,7 +43,7 @@ {"shape":"ResourceInUseException"}, {"shape":"LimitExceededException"} ], - "documentation":"

Creates a dataset group, which holds a collection of related datasets. You can add datasets to the dataset group when you create the dataset group, or later by using the UpdateDatasetGroup operation.

After creating a dataset group and adding datasets, you use the dataset group when you create a predictor. For more information, see howitworks-datasets-groups.

To get a list of all your datasets groups, use the ListDatasetGroups operation.

The Status of a dataset group must be ACTIVE before you can create use the dataset group to create a predictor. To get the status, use the DescribeDatasetGroup operation.

" + "documentation":"

Creates a dataset group, which holds a collection of related datasets. You can add datasets to the dataset group when you create the dataset group, or later by using the UpdateDatasetGroup operation.

After creating a dataset group and adding datasets, you use the dataset group when you create a predictor. For more information, see howitworks-datasets-groups.

To get a list of all your datasets groups, use the ListDatasetGroups operation.

The Status of a dataset group must be ACTIVE before you can use the dataset group to create a predictor. To get the status, use the DescribeDatasetGroup operation.

" }, "CreateDatasetImportJob":{ "name":"CreateDatasetImportJob", @@ -111,7 +111,7 @@ {"shape":"ResourceInUseException"}, {"shape":"LimitExceededException"} ], - "documentation":"

Creates an Amazon Forecast predictor.

In the request, you provide a dataset group and either specify an algorithm or let Amazon Forecast choose the algorithm for you using AutoML. If you specify an algorithm, you also can override algorithm-specific hyperparameters.

Amazon Forecast uses the chosen algorithm to train a model using the latest version of the datasets in the specified dataset group. The result is called a predictor. You then generate a forecast using the CreateForecast operation.

After training a model, the CreatePredictor operation also evaluates it. To see the evaluation metrics, use the GetAccuracyMetrics operation. Always review the evaluation metrics before deciding to use the predictor to generate a forecast.

Optionally, you can specify a featurization configuration to fill and aggregate the data fields in the TARGET_TIME_SERIES dataset to improve model training. For more information, see FeaturizationConfig.

For RELATED_TIME_SERIES datasets, CreatePredictor verifies that the DataFrequency specified when the dataset was created matches the ForecastFrequency. TARGET_TIME_SERIES datasets don't have this restriction. Amazon Forecast also verifies the delimiter and timestamp format. For more information, see howitworks-datasets-groups.

AutoML

If you want Amazon Forecast to evaluate each algorithm and choose the one that minimizes the objective function, set PerformAutoML to true. The objective function is defined as the mean of the weighted p10, p50, and p90 quantile losses. For more information, see EvaluationResult.

When AutoML is enabled, the following properties are disallowed:

  • AlgorithmArn

  • HPOConfig

  • PerformHPO

  • TrainingParameters

To get a list of all of your predictors, use the ListPredictors operation.

Before you can use the predictor to create a forecast, the Status of the predictor must be ACTIVE, signifying that training has completed. To get the status, use the DescribePredictor operation.

" + "documentation":"

Creates an Amazon Forecast predictor.

In the request, provide a dataset group and either specify an algorithm or let Amazon Forecast choose an algorithm for you using AutoML. If you specify an algorithm, you also can override algorithm-specific hyperparameters.

Amazon Forecast uses the algorithm to train a predictor using the latest version of the datasets in the specified dataset group. You can then generate a forecast using the CreateForecast operation.

To see the evaluation metrics, use the GetAccuracyMetrics operation.

You can specify a featurization configuration to fill and aggregate the data fields in the TARGET_TIME_SERIES dataset to improve model training. For more information, see FeaturizationConfig.

For RELATED_TIME_SERIES datasets, CreatePredictor verifies that the DataFrequency specified when the dataset was created matches the ForecastFrequency. TARGET_TIME_SERIES datasets don't have this restriction. Amazon Forecast also verifies the delimiter and timestamp format. For more information, see howitworks-datasets-groups.

By default, predictors are trained and evaluated at the 0.1 (P10), 0.5 (P50), and 0.9 (P90) quantiles. You can choose custom forecast types to train and evaluate your predictor by setting the ForecastTypes.

AutoML

If you want Amazon Forecast to evaluate each algorithm and choose the one that minimizes the objective function, set PerformAutoML to true. The objective function is defined as the mean of the weighted losses over the forecast types. By default, these are the p10, p50, and p90 quantile losses. For more information, see EvaluationResult.

When AutoML is enabled, the following properties are disallowed:

  • AlgorithmArn

  • HPOConfig

  • PerformHPO

  • TrainingParameters

To get a list of all of your predictors, use the ListPredictors operation.

Before you can use the predictor to create a forecast, the Status of the predictor must be ACTIVE, signifying that training has completed. To get the status, use the DescribePredictor operation.

" }, "DeleteDataset":{ "name":"DeleteDataset", @@ -306,7 +306,7 @@ {"shape":"ResourceNotFoundException"}, {"shape":"ResourceInUseException"} ], - "documentation":"

Provides metrics on the accuracy of the models that were trained by the CreatePredictor operation. Use metrics to see how well the model performed and to decide whether to use the predictor to generate a forecast. For more information, see metrics.

This operation generates metrics for each backtest window that was evaluated. The number of backtest windows (NumberOfBacktestWindows) is specified using the EvaluationParameters object, which is optionally included in the CreatePredictor request. If NumberOfBacktestWindows isn't specified, the number defaults to one.

The parameters of the filling method determine which items contribute to the metrics. If you want all items to contribute, specify zero. If you want only those items that have complete data in the range being evaluated to contribute, specify nan. For more information, see FeaturizationMethod.

Before you can get accuracy metrics, the Status of the predictor must be ACTIVE, signifying that training has completed. To get the status, use the DescribePredictor operation.

", + "documentation":"

Provides metrics on the accuracy of the models that were trained by the CreatePredictor operation. Use metrics to see how well the model performed and to decide whether to use the predictor to generate a forecast. For more information, see Predictor Metrics.

This operation generates metrics for each backtest window that was evaluated. The number of backtest windows (NumberOfBacktestWindows) is specified using the EvaluationParameters object, which is optionally included in the CreatePredictor request. If NumberOfBacktestWindows isn't specified, the number defaults to one.

The parameters of the filling method determine which items contribute to the metrics. If you want all items to contribute, specify zero. If you want only those items that have complete data in the range being evaluated to contribute, specify nan. For more information, see FeaturizationMethod.

Before you can get accuracy metrics, the Status of the predictor must be ACTIVE, signifying that training has completed. To get the status, use the DescribePredictor operation.

", "idempotent":true }, "ListDatasetGroups":{ @@ -739,19 +739,23 @@ }, "AlgorithmArn":{ "shape":"Arn", - "documentation":"

The Amazon Resource Name (ARN) of the algorithm to use for model training. Required if PerformAutoML is not set to true.

Supported algorithms:

  • arn:aws:forecast:::algorithm/ARIMA

  • arn:aws:forecast:::algorithm/Deep_AR_Plus

    Supports hyperparameter optimization (HPO)

  • arn:aws:forecast:::algorithm/ETS

  • arn:aws:forecast:::algorithm/NPTS

  • arn:aws:forecast:::algorithm/Prophet

" + "documentation":"

The Amazon Resource Name (ARN) of the algorithm to use for model training. Required if PerformAutoML is not set to true.

Supported algorithms:

  • arn:aws:forecast:::algorithm/ARIMA

  • arn:aws:forecast:::algorithm/CNN-QR

  • arn:aws:forecast:::algorithm/Deep_AR_Plus

  • arn:aws:forecast:::algorithm/ETS

  • arn:aws:forecast:::algorithm/NPTS

  • arn:aws:forecast:::algorithm/Prophet

" }, "ForecastHorizon":{ "shape":"Integer", "documentation":"

Specifies the number of time-steps that the model is trained to predict. The forecast horizon is also called the prediction length.

For example, if you configure a dataset for daily data collection (using the DataFrequency parameter of the CreateDataset operation) and set the forecast horizon to 10, the model returns predictions for 10 days.

The maximum forecast horizon is the lesser of 500 time-steps or 1/3 of the TARGET_TIME_SERIES dataset length.

" }, + "ForecastTypes":{ + "shape":"ForecastTypes", + "documentation":"

Specifies the forecast types used to train a predictor. You can specify up to five forecast types. Forecast types can be quantiles from 0.01 to 0.99, by increments of 0.01 or higher. You can also specify the mean forecast with mean.

The default value is [\"0.10\", \"0.50\", \"0.9\"].

" + }, "PerformAutoML":{ "shape":"Boolean", "documentation":"

Whether to perform AutoML. When Amazon Forecast performs AutoML, it evaluates the algorithms it provides and chooses the best algorithm and configuration for your training dataset.

The default value is false. In this case, you are required to specify an algorithm.

Set PerformAutoML to true to have Amazon Forecast perform AutoML. This is a good option if you aren't sure which algorithm is suitable for your training data. In this case, PerformHPO must be false.

" }, "PerformHPO":{ "shape":"Boolean", - "documentation":"

Whether to perform hyperparameter optimization (HPO). HPO finds optimal hyperparameter values for your training data. The process of performing HPO is known as running a hyperparameter tuning job.

The default value is false. In this case, Amazon Forecast uses default hyperparameter values from the chosen algorithm.

To override the default values, set PerformHPO to true and, optionally, supply the HyperParameterTuningJobConfig object. The tuning job specifies a metric to optimize, which hyperparameters participate in tuning, and the valid range for each tunable hyperparameter. In this case, you are required to specify an algorithm and PerformAutoML must be false.

The following algorithm supports HPO:

  • DeepAR+

" + "documentation":"

Whether to perform hyperparameter optimization (HPO). HPO finds optimal hyperparameter values for your training data. The process of performing HPO is known as running a hyperparameter tuning job.

The default value is false. In this case, Amazon Forecast uses default hyperparameter values from the chosen algorithm.

To override the default values, set PerformHPO to true and, optionally, supply the HyperParameterTuningJobConfig object. The tuning job specifies a metric to optimize, which hyperparameters participate in tuning, and the valid range for each tunable hyperparameter. In this case, you are required to specify an algorithm and PerformAutoML must be false.

The following algorithms support HPO:

  • DeepAR+

  • CNN-QR

" }, "TrainingParameters":{ "shape":"TrainingParameters", @@ -1264,6 +1268,10 @@ "shape":"Integer", "documentation":"

The number of time-steps of the forecast. The forecast horizon is also called the prediction length.

" }, + "ForecastTypes":{ + "shape":"ForecastTypes", + "documentation":"

The forecast types used during predictor training. Default value is [\"0.1\",\"0.5\",\"0.9\"]

" + }, "PerformAutoML":{ "shape":"Boolean", "documentation":"

Whether the predictor is set to perform AutoML.

" @@ -1274,7 +1282,7 @@ }, "TrainingParameters":{ "shape":"TrainingParameters", - "documentation":"

The default training parameters or overrides selected during model training. If using the AutoML algorithm or if HPO is turned on while using the DeepAR+ algorithms, the optimized values for the chosen hyperparameters are returned. For more information, see aws-forecast-choosing-recipes.

" + "documentation":"

The default training parameters or overrides selected during model training. When running AutoML or choosing HPO with CNN-QR or DeepAR+, the optimized values for the chosen hyperparameters are returned. For more information, see aws-forecast-choosing-recipes.

" }, "EvaluationParameters":{ "shape":"EvaluationParameters", @@ -1358,6 +1366,28 @@ "documentation":"

An AWS Key Management Service (KMS) key and an AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the key. You can specify this optional object in the CreateDataset and CreatePredictor requests.

" }, "ErrorMessage":{"type":"string"}, + "ErrorMetric":{ + "type":"structure", + "members":{ + "ForecastType":{ + "shape":"ForecastType", + "documentation":"

Forecast types can be quantiles from 0.01 to 0.99 (by increments of 0.01), and the mean.

" + }, + "WAPE":{ + "shape":"Double", + "documentation":"

The weighted absolute percentage error (WAPE).

" + }, + "RMSE":{ + "shape":"Double", + "documentation":"

The root-mean-square error (RMSE).

" + } + }, + "documentation":"

Provides detailed error metrics to evaluate the performance of a predictor. This object is part of the Metrics object.

" + }, + "ErrorMetrics":{ + "type":"list", + "member":{"shape":"ErrorMetric"} + }, "EvaluationParameters":{ "type":"structure", "members":{ @@ -1437,7 +1467,7 @@ }, "FeaturizationMethodParameters":{ "shape":"FeaturizationMethodParameters", - "documentation":"

The method parameters (key-value pairs), which are a map of override parameters. Specify these parameters to override the default values. Related Time Series attributes do not accept aggregation parameters.

The following list shows the parameters and their valid values for the \"filling\" featurization method for a Target Time Series dataset. Bold signifies the default value.

  • aggregation: sum, avg, first, min, max

  • frontfill: none

  • middlefill: zero, nan (not a number), value, median, mean, min, max

  • backfill: zero, nan, value, median, mean, min, max

The following list shows the parameters and their valid values for a Related Time Series featurization method (there are no defaults):

  • middlefill: zero, value, median, mean, min, max

  • backfill: zero, value, median, mean, min, max

  • futurefill: zero, value, median, mean, min, max

" + "documentation":"

The method parameters (key-value pairs), which are a map of override parameters. Specify these parameters to override the default values. Related Time Series attributes do not accept aggregation parameters.

The following list shows the parameters and their valid values for the \"filling\" featurization method for a Target Time Series dataset. Bold signifies the default value.

  • aggregation: sum, avg, first, min, max

  • frontfill: none

  • middlefill: zero, nan (not a number), value, median, mean, min, max

  • backfill: zero, nan, value, median, mean, min, max

The following list shows the parameters and their valid values for a Related Time Series featurization method (there are no defaults):

  • middlefill: zero, value, median, mean, min, max

  • backfill: zero, value, median, mean, min, max

  • futurefill: zero, value, median, mean, min, max

To set a filling method to a specific value, set the fill parameter to value and define the value in a corresponding _value parameter. For example, to set backfilling to a value of 2, include the following: \"backfill\": \"value\" and \"backfill_value\":\"2\".

" } }, "documentation":"

Provides information about the method that featurizes (transforms) a dataset field. The method is part of the FeaturizationPipeline of the Featurization object.

The following is an example of how you specify a FeaturizationMethod object.

{

\"FeaturizationMethodName\": \"filling\",

\"FeaturizationMethodParameters\": {\"aggregation\": \"sum\", \"middlefill\": \"zero\", \"backfill\": \"zero\"}

}

" @@ -1913,11 +1943,17 @@ "members":{ "RMSE":{ "shape":"Double", - "documentation":"

The root mean square error (RMSE).

" + "documentation":"

The root-mean-square error (RMSE).

", + "deprecated":true, + "deprecatedMessage":"This property is deprecated, please refer to ErrorMetrics for both RMSE and WAPE" }, "WeightedQuantileLosses":{ "shape":"WeightedQuantileLosses", "documentation":"

An array of weighted quantile losses. Quantiles divide a probability distribution into regions of equal probability. The distribution in this case is the loss function.

" + }, + "ErrorMetrics":{ + "shape":"ErrorMetrics", + "documentation":"

Provides detailed error metrics on forecast type, root-mean square-error (RMSE), and weighted average percentage error (WAPE).

" } }, "documentation":"

Provides metrics that are used to evaluate the performance of a predictor. This object is part of the WindowSummary object.

" @@ -2182,10 +2218,10 @@ }, "Value":{ "shape":"Value", - "documentation":"

One of the following 2 letter country codes:

  • \"AR\" - ARGENTINA

  • \"AT\" - AUSTRIA

  • \"AU\" - AUSTRALIA

  • \"BE\" - BELGIUM

  • \"BR\" - BRAZIL

  • \"CA\" - CANADA

  • \"CN\" - CHINA

  • \"CZ\" - CZECH REPUBLIC

  • \"DK\" - DENMARK

  • \"EC\" - ECUADOR

  • \"FI\" - FINLAND

  • \"FR\" - FRANCE

  • \"DE\" - GERMANY

  • \"HU\" - HUNGARY

  • \"IE\" - IRELAND

  • \"IN\" - INDIA

  • \"IT\" - ITALY

  • \"JP\" - JAPAN

  • \"KR\" - KOREA

  • \"LU\" - LUXEMBOURG

  • \"MX\" - MEXICO

  • \"NL\" - NETHERLANDS

  • \"NO\" - NORWAY

  • \"PL\" - POLAND

  • \"PT\" - PORTUGAL

  • \"RU\" - RUSSIA

  • \"ZA\" - SOUTH AFRICA

  • \"ES\" - SPAIN

  • \"SE\" - SWEDEN

  • \"CH\" - SWITZERLAND

  • \"US\" - UNITED STATES

  • \"UK\" - UNITED KINGDOM

" + "documentation":"

One of the following 2 letter country codes:

  • \"AL\" - ALBANIA

  • \"AR\" - ARGENTINA

  • \"AT\" - AUSTRIA

  • \"AU\" - AUSTRALIA

  • \"BA\" - BOSNIA HERZEGOVINA

  • \"BE\" - BELGIUM

  • \"BG\" - BULGARIA

  • \"BO\" - BOLIVIA

  • \"BR\" - BRAZIL

  • \"BY\" - BELARUS

  • \"CA\" - CANADA

  • \"CL\" - CHILE

  • \"CO\" - COLOMBIA

  • \"CR\" - COSTA RICA

  • \"HR\" - CROATIA

  • \"CZ\" - CZECH REPUBLIC

  • \"DK\" - DENMARK

  • \"EC\" - ECUADOR

  • \"EE\" - ESTONIA

  • \"ET\" - ETHIOPIA

  • \"FI\" - FINLAND

  • \"FR\" - FRANCE

  • \"DE\" - GERMANY

  • \"GR\" - GREECE

  • \"HU\" - HUNGARY

  • \"IS\" - ICELAND

  • \"IN\" - INDIA

  • \"IE\" - IRELAND

  • \"IT\" - ITALY

  • \"JP\" - JAPAN

  • \"KZ\" - KAZAKHSTAN

  • \"KR\" - KOREA

  • \"LV\" - LATVIA

  • \"LI\" - LIECHTENSTEIN

  • \"LT\" - LITHUANIA

  • \"LU\" - LUXEMBOURG

  • \"MK\" - MACEDONIA

  • \"MT\" - MALTA

  • \"MX\" - MEXICO

  • \"MD\" - MOLDOVA

  • \"ME\" - MONTENEGRO

  • \"NL\" - NETHERLANDS

  • \"NZ\" - NEW ZEALAND

  • \"NI\" - NICARAGUA

  • \"NG\" - NIGERIA

  • \"NO\" - NORWAY

  • \"PA\" - PANAMA

  • \"PY\" - PARAGUAY

  • \"PE\" - PERU

  • \"PL\" - POLAND

  • \"PT\" - PORTUGAL

  • \"RO\" - ROMANIA

  • \"RU\" - RUSSIA

  • \"RS\" - SERBIA

  • \"SK\" - SLOVAKIA

  • \"SI\" - SLOVENIA

  • \"ZA\" - SOUTH AFRICA

  • \"ES\" - SPAIN

  • \"SE\" - SWEDEN

  • \"CH\" - SWITZERLAND

  • \"UA\" - UKRAINE

  • \"AE\" - UNITED ARAB EMIRATES

  • \"US\" - UNITED STATES

  • \"UK\" - UNITED KINGDOM

  • \"UY\" - URUGUAY

  • \"VE\" - VENEZUELA

" } }, - "documentation":"

Describes a supplementary feature of a dataset group. This object is part of the InputDataConfig object.

The only supported feature is a holiday calendar. If you use the calendar, all data in the datasets should belong to the same country as the calendar. For the holiday calendar data, see the Jollyday web site.

India and Korea's holidays are not included in the Jollyday library, but both are supported by Amazon Forecast. Their holidays are:

\"IN\" - INDIA

  • JANUARY 26 - REPUBLIC DAY

  • AUGUST 15 - INDEPENDENCE DAY

  • OCTOBER 2 GANDHI'S BIRTHDAY

\"KR\" - KOREA

  • JANUARY 1 - NEW YEAR

  • MARCH 1 - INDEPENDENCE MOVEMENT DAY

  • MAY 5 - CHILDREN'S DAY

  • JUNE 6 - MEMORIAL DAY

  • AUGUST 15 - LIBERATION DAY

  • OCTOBER 3 - NATIONAL FOUNDATION DAY

  • OCTOBER 9 - HANGEUL DAY

  • DECEMBER 25 - CHRISTMAS DAY

" + "documentation":"

Describes a supplementary feature of a dataset group. This object is part of the InputDataConfig object.

The only supported feature is Holidays. If you use the calendar, all data in the datasets should belong to the same country as the calendar. For the holiday calendar data, see the Jollyday website.

" }, "SupplementaryFeatures":{ "type":"list", From be9d6f7a1671cc0466431fef553777fd20e6e003 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 11 Nov 2020 19:08:17 +0000 Subject: [PATCH 172/339] AWS Elemental MediaConvert Update: AWS Elemental MediaConvert SDK has added support for Automated ABR encoding and improved the reliability of embedded captions in accelerated outputs. --- ...ture-AWSElementalMediaConvert-b3e1632.json | 6 ++ .../codegen-resources/service-2.json | 64 ++++++++++++++++--- 2 files changed, 62 insertions(+), 8 deletions(-) create mode 100644 .changes/next-release/feature-AWSElementalMediaConvert-b3e1632.json diff --git a/.changes/next-release/feature-AWSElementalMediaConvert-b3e1632.json b/.changes/next-release/feature-AWSElementalMediaConvert-b3e1632.json new file mode 100644 index 000000000000..870e709691ee --- /dev/null +++ b/.changes/next-release/feature-AWSElementalMediaConvert-b3e1632.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Elemental MediaConvert", + "contributor": "", + "description": "AWS Elemental MediaConvert SDK has added support for Automated ABR encoding and improved the reliability of embedded captions in accelerated outputs." +} diff --git a/services/mediaconvert/src/main/resources/codegen-resources/service-2.json b/services/mediaconvert/src/main/resources/codegen-resources/service-2.json index d1baa265ebfe..729d2555eec1 100644 --- a/services/mediaconvert/src/main/resources/codegen-resources/service-2.json +++ b/services/mediaconvert/src/main/resources/codegen-resources/service-2.json @@ -1721,6 +1721,38 @@ "USE_CONFIGURED" ] }, + "AutomatedAbrSettings": { + "type": "structure", + "members": { + "MaxAbrBitrate": { + "shape": "__integerMin100000Max100000000", + "locationName": "maxAbrBitrate", + "documentation": "Optional. The maximum target bit rate used in your automated ABR stack. Use this value to set an upper limit on the bandwidth consumed by the highest-quality rendition. This is the rendition that is delivered to viewers with the fastest internet connections. If you don't specify a value, MediaConvert uses 8,000,000 (8 mb/s) by default." + }, + "MaxRenditions": { + "shape": "__integerMin3Max15", + "locationName": "maxRenditions", + "documentation": "Optional. The maximum number of renditions that MediaConvert will create in your automated ABR stack. The number of renditions is determined automatically, based on analysis of each job, but will never exceed this limit. When you set this to Auto in the console, which is equivalent to excluding it from your JSON job specification, MediaConvert defaults to a limit of 15." + }, + "MinAbrBitrate": { + "shape": "__integerMin100000Max100000000", + "locationName": "minAbrBitrate", + "documentation": "Optional. The minimum target bitrate used in your automated ABR stack. Use this value to set a lower limit on the bitrate of video delivered to viewers with slow internet connections. If you don't specify a value, MediaConvert uses 600,000 (600 kb/s) by default." + } + }, + "documentation": "Use automated ABR to have MediaConvert set up the renditions in your ABR package for you automatically, based on characteristics of your input video. This feature optimizes video quality while minimizing the overall size of your ABR package." + }, + "AutomatedEncodingSettings": { + "type": "structure", + "members": { + "AbrSettings": { + "shape": "AutomatedAbrSettings", + "locationName": "abrSettings", + "documentation": "Use automated ABR to have MediaConvert set up the renditions in your ABR package for you automatically, based on characteristics of your input video. This feature optimizes video quality while minimizing the overall size of your ABR package." + } + }, + "documentation": "Use automated encoding to have MediaConvert choose your encoding settings for you, based on characteristics of your input video." + }, "Av1AdaptiveQuantization": { "type": "string", "documentation": "Specify the strength of any adaptive quantization filters that you enable. The value that you choose here applies to Spatial adaptive quantization (spatialAdaptiveQuantization).", @@ -4426,9 +4458,10 @@ }, "H264AdaptiveQuantization": { "type": "string", - "documentation": "Specify the strength of any adaptive quantization filters that you enable. The value that you choose here applies to the following settings: Flicker adaptive quantization (flickerAdaptiveQuantization), Spatial adaptive quantization (spatialAdaptiveQuantization), and Temporal adaptive quantization (temporalAdaptiveQuantization).", + "documentation": "Keep the default value, Auto (AUTO), for this setting to have MediaConvert automatically apply the best types of quantization for your video content. When you want to apply your quantization settings manually, you must set H264AdaptiveQuantization to a value other than Auto (AUTO). Use this setting to specify the strength of any adaptive quantization filters that you enable. If you don't want MediaConvert to do any adaptive quantization in this transcode, set Adaptive quantization (H264AdaptiveQuantization) to Off (OFF). Related settings: The value that you choose here applies to the following settings: H264FlickerAdaptiveQuantization, H264SpatialAdaptiveQuantization, and H264TemporalAdaptiveQuantization.", "enum": [ "OFF", + "AUTO", "LOW", "MEDIUM", "HIGH", @@ -4497,7 +4530,7 @@ }, "H264FlickerAdaptiveQuantization": { "type": "string", - "documentation": "Enable this setting to have the encoder reduce I-frame pop. I-frame pop appears as a visual flicker that can arise when the encoder saves bits by copying some macroblocks many times from frame to frame, and then refreshes them at the I-frame. When you enable this setting, the encoder updates these macroblocks slightly more often to smooth out the flicker. This setting is disabled by default. Related setting: In addition to enabling this setting, you must also set adaptiveQuantization to a value other than Off (OFF).", + "documentation": "Only use this setting when you change the default value, AUTO, for the setting H264AdaptiveQuantization. When you keep all defaults, excluding H264AdaptiveQuantization and all other adaptive quantization from your JSON job specification, MediaConvert automatically applies the best types of quantization for your video content. When you set H264AdaptiveQuantization to a value other than AUTO, the default value for H264FlickerAdaptiveQuantization is Disabled (DISABLED). Change this value to Enabled (ENABLED) to reduce I-frame pop. I-frame pop appears as a visual flicker that can arise when the encoder saves bits by copying some macroblocks many times from frame to frame, and then refreshes them at the I-frame. When you enable this setting, the encoder updates these macroblocks slightly more often to smooth out the flicker. To manually enable or disable H264FlickerAdaptiveQuantization, you must set Adaptive quantization (H264AdaptiveQuantization) to a value other than AUTO.", "enum": [ "DISABLED", "ENABLED" @@ -4617,7 +4650,7 @@ "AdaptiveQuantization": { "shape": "H264AdaptiveQuantization", "locationName": "adaptiveQuantization", - "documentation": "Specify the strength of any adaptive quantization filters that you enable. The value that you choose here applies to the following settings: Flicker adaptive quantization (flickerAdaptiveQuantization), Spatial adaptive quantization (spatialAdaptiveQuantization), and Temporal adaptive quantization (temporalAdaptiveQuantization)." + "documentation": "Keep the default value, Auto (AUTO), for this setting to have MediaConvert automatically apply the best types of quantization for your video content. When you want to apply your quantization settings manually, you must set H264AdaptiveQuantization to a value other than Auto (AUTO). Use this setting to specify the strength of any adaptive quantization filters that you enable. If you don't want MediaConvert to do any adaptive quantization in this transcode, set Adaptive quantization (H264AdaptiveQuantization) to Off (OFF). Related settings: The value that you choose here applies to the following settings: H264FlickerAdaptiveQuantization, H264SpatialAdaptiveQuantization, and H264TemporalAdaptiveQuantization." }, "Bitrate": { "shape": "__integerMin1000Max1152000000", @@ -4652,7 +4685,7 @@ "FlickerAdaptiveQuantization": { "shape": "H264FlickerAdaptiveQuantization", "locationName": "flickerAdaptiveQuantization", - "documentation": "Enable this setting to have the encoder reduce I-frame pop. I-frame pop appears as a visual flicker that can arise when the encoder saves bits by copying some macroblocks many times from frame to frame, and then refreshes them at the I-frame. When you enable this setting, the encoder updates these macroblocks slightly more often to smooth out the flicker. This setting is disabled by default. Related setting: In addition to enabling this setting, you must also set adaptiveQuantization to a value other than Off (OFF)." + "documentation": "Only use this setting when you change the default value, AUTO, for the setting H264AdaptiveQuantization. When you keep all defaults, excluding H264AdaptiveQuantization and all other adaptive quantization from your JSON job specification, MediaConvert automatically applies the best types of quantization for your video content. When you set H264AdaptiveQuantization to a value other than AUTO, the default value for H264FlickerAdaptiveQuantization is Disabled (DISABLED). Change this value to Enabled (ENABLED) to reduce I-frame pop. I-frame pop appears as a visual flicker that can arise when the encoder saves bits by copying some macroblocks many times from frame to frame, and then refreshes them at the I-frame. When you enable this setting, the encoder updates these macroblocks slightly more often to smooth out the flicker. To manually enable or disable H264FlickerAdaptiveQuantization, you must set Adaptive quantization (H264AdaptiveQuantization) to a value other than AUTO." }, "FramerateControl": { "shape": "H264FramerateControl", @@ -4787,7 +4820,7 @@ "SpatialAdaptiveQuantization": { "shape": "H264SpatialAdaptiveQuantization", "locationName": "spatialAdaptiveQuantization", - "documentation": "Keep the default value, Enabled (ENABLED), to adjust quantization within each frame based on spatial variation of content complexity. When you enable this feature, the encoder uses fewer bits on areas that can sustain more distortion with no noticeable visual degradation and uses more bits on areas where any small distortion will be noticeable. For example, complex textured blocks are encoded with fewer bits and smooth textured blocks are encoded with more bits. Enabling this feature will almost always improve your video quality. Note, though, that this feature doesn't take into account where the viewer's attention is likely to be. If viewers are likely to be focusing their attention on a part of the screen with a lot of complex texture, you might choose to disable this feature. Related setting: When you enable spatial adaptive quantization, set the value for Adaptive quantization (adaptiveQuantization) depending on your content. For homogeneous content, such as cartoons and video games, set it to Low. For content with a wider variety of textures, set it to High or Higher." + "documentation": "Only use this setting when you change the default value, Auto (AUTO), for the setting H264AdaptiveQuantization. When you keep all defaults, excluding H264AdaptiveQuantization and all other adaptive quantization from your JSON job specification, MediaConvert automatically applies the best types of quantization for your video content. When you set H264AdaptiveQuantization to a value other than AUTO, the default value for H264SpatialAdaptiveQuantization is Enabled (ENABLED). Keep this default value to adjust quantization within each frame based on spatial variation of content complexity. When you enable this feature, the encoder uses fewer bits on areas that can sustain more distortion with no noticeable visual degradation and uses more bits on areas where any small distortion will be noticeable. For example, complex textured blocks are encoded with fewer bits and smooth textured blocks are encoded with more bits. Enabling this feature will almost always improve your video quality. Note, though, that this feature doesn't take into account where the viewer's attention is likely to be. If viewers are likely to be focusing their attention on a part of the screen with a lot of complex texture, you might choose to set H264SpatialAdaptiveQuantization to Disabled (DISABLED). Related setting: When you enable spatial adaptive quantization, set the value for Adaptive quantization (H264AdaptiveQuantization) depending on your content. For homogeneous content, such as cartoons and video games, set it to Low. For content with a wider variety of textures, set it to High or Higher. To manually enable or disable H264SpatialAdaptiveQuantization, you must set Adaptive quantization (H264AdaptiveQuantization) to a value other than AUTO." }, "Syntax": { "shape": "H264Syntax", @@ -4802,7 +4835,7 @@ "TemporalAdaptiveQuantization": { "shape": "H264TemporalAdaptiveQuantization", "locationName": "temporalAdaptiveQuantization", - "documentation": "Keep the default value, Enabled (ENABLED), to adjust quantization within each frame based on temporal variation of content complexity. When you enable this feature, the encoder uses fewer bits on areas of the frame that aren't moving and uses more bits on complex objects with sharp edges that move a lot. For example, this feature improves the readability of text tickers on newscasts and scoreboards on sports matches. Enabling this feature will almost always improve your video quality. Note, though, that this feature doesn't take into account where the viewer's attention is likely to be. If viewers are likely to be focusing their attention on a part of the screen that doesn't have moving objects with sharp edges, such as sports athletes' faces, you might choose to disable this feature. Related setting: When you enable temporal quantization, adjust the strength of the filter with the setting Adaptive quantization (adaptiveQuantization)." + "documentation": "Only use this setting when you change the default value, AUTO, for the setting H264AdaptiveQuantization. When you keep all defaults, excluding H264AdaptiveQuantization and all other adaptive quantization from your JSON job specification, MediaConvert automatically applies the best types of quantization for your video content. When you set H264AdaptiveQuantization to a value other than AUTO, the default value for H264TemporalAdaptiveQuantization is Enabled (ENABLED). Keep this default value to adjust quantization within each frame based on temporal variation of content complexity. When you enable this feature, the encoder uses fewer bits on areas of the frame that aren't moving and uses more bits on complex objects with sharp edges that move a lot. For example, this feature improves the readability of text tickers on newscasts and scoreboards on sports matches. Enabling this feature will almost always improve your video quality. Note, though, that this feature doesn't take into account where the viewer's attention is likely to be. If viewers are likely to be focusing their attention on a part of the screen that doesn't have moving objects with sharp edges, such as sports athletes' faces, you might choose to set H264TemporalAdaptiveQuantization to Disabled (DISABLED). Related setting: When you enable temporal quantization, adjust the strength of the filter with the setting Adaptive quantization (adaptiveQuantization). To manually enable or disable H264TemporalAdaptiveQuantization, you must set Adaptive quantization (H264AdaptiveQuantization) to a value other than AUTO." }, "UnregisteredSeiTimecode": { "shape": "H264UnregisteredSeiTimecode", @@ -4822,7 +4855,7 @@ }, "H264SpatialAdaptiveQuantization": { "type": "string", - "documentation": "Keep the default value, Enabled (ENABLED), to adjust quantization within each frame based on spatial variation of content complexity. When you enable this feature, the encoder uses fewer bits on areas that can sustain more distortion with no noticeable visual degradation and uses more bits on areas where any small distortion will be noticeable. For example, complex textured blocks are encoded with fewer bits and smooth textured blocks are encoded with more bits. Enabling this feature will almost always improve your video quality. Note, though, that this feature doesn't take into account where the viewer's attention is likely to be. If viewers are likely to be focusing their attention on a part of the screen with a lot of complex texture, you might choose to disable this feature. Related setting: When you enable spatial adaptive quantization, set the value for Adaptive quantization (adaptiveQuantization) depending on your content. For homogeneous content, such as cartoons and video games, set it to Low. For content with a wider variety of textures, set it to High or Higher.", + "documentation": "Only use this setting when you change the default value, Auto (AUTO), for the setting H264AdaptiveQuantization. When you keep all defaults, excluding H264AdaptiveQuantization and all other adaptive quantization from your JSON job specification, MediaConvert automatically applies the best types of quantization for your video content. When you set H264AdaptiveQuantization to a value other than AUTO, the default value for H264SpatialAdaptiveQuantization is Enabled (ENABLED). Keep this default value to adjust quantization within each frame based on spatial variation of content complexity. When you enable this feature, the encoder uses fewer bits on areas that can sustain more distortion with no noticeable visual degradation and uses more bits on areas where any small distortion will be noticeable. For example, complex textured blocks are encoded with fewer bits and smooth textured blocks are encoded with more bits. Enabling this feature will almost always improve your video quality. Note, though, that this feature doesn't take into account where the viewer's attention is likely to be. If viewers are likely to be focusing their attention on a part of the screen with a lot of complex texture, you might choose to set H264SpatialAdaptiveQuantization to Disabled (DISABLED). Related setting: When you enable spatial adaptive quantization, set the value for Adaptive quantization (H264AdaptiveQuantization) depending on your content. For homogeneous content, such as cartoons and video games, set it to Low. For content with a wider variety of textures, set it to High or Higher. To manually enable or disable H264SpatialAdaptiveQuantization, you must set Adaptive quantization (H264AdaptiveQuantization) to a value other than AUTO.", "enum": [ "DISABLED", "ENABLED" @@ -4847,7 +4880,7 @@ }, "H264TemporalAdaptiveQuantization": { "type": "string", - "documentation": "Keep the default value, Enabled (ENABLED), to adjust quantization within each frame based on temporal variation of content complexity. When you enable this feature, the encoder uses fewer bits on areas of the frame that aren't moving and uses more bits on complex objects with sharp edges that move a lot. For example, this feature improves the readability of text tickers on newscasts and scoreboards on sports matches. Enabling this feature will almost always improve your video quality. Note, though, that this feature doesn't take into account where the viewer's attention is likely to be. If viewers are likely to be focusing their attention on a part of the screen that doesn't have moving objects with sharp edges, such as sports athletes' faces, you might choose to disable this feature. Related setting: When you enable temporal quantization, adjust the strength of the filter with the setting Adaptive quantization (adaptiveQuantization).", + "documentation": "Only use this setting when you change the default value, AUTO, for the setting H264AdaptiveQuantization. When you keep all defaults, excluding H264AdaptiveQuantization and all other adaptive quantization from your JSON job specification, MediaConvert automatically applies the best types of quantization for your video content. When you set H264AdaptiveQuantization to a value other than AUTO, the default value for H264TemporalAdaptiveQuantization is Enabled (ENABLED). Keep this default value to adjust quantization within each frame based on temporal variation of content complexity. When you enable this feature, the encoder uses fewer bits on areas of the frame that aren't moving and uses more bits on complex objects with sharp edges that move a lot. For example, this feature improves the readability of text tickers on newscasts and scoreboards on sports matches. Enabling this feature will almost always improve your video quality. Note, though, that this feature doesn't take into account where the viewer's attention is likely to be. If viewers are likely to be focusing their attention on a part of the screen that doesn't have moving objects with sharp edges, such as sports athletes' faces, you might choose to set H264TemporalAdaptiveQuantization to Disabled (DISABLED). Related setting: When you enable temporal quantization, adjust the strength of the filter with the setting Adaptive quantization (adaptiveQuantization). To manually enable or disable H264TemporalAdaptiveQuantization, you must set Adaptive quantization (H264AdaptiveQuantization) to a value other than AUTO.", "enum": [ "DISABLED", "ENABLED" @@ -8525,6 +8558,11 @@ "OutputGroup": { "type": "structure", "members": { + "AutomatedEncodingSettings": { + "shape": "AutomatedEncodingSettings", + "locationName": "automatedEncodingSettings", + "documentation": "Use automated encoding to have MediaConvert choose your encoding settings for you, based on characteristics of your input video." + }, "CustomName": { "shape": "__string", "locationName": "customName", @@ -10521,6 +10559,11 @@ "min": 0, "max": 99 }, + "__integerMin100000Max100000000": { + "type": "integer", + "min": 100000, + "max": 100000000 + }, "__integerMin1000Max1152000000": { "type": "integer", "min": 1000, @@ -10706,6 +10749,11 @@ "min": 384000, "max": 768000 }, + "__integerMin3Max15": { + "type": "integer", + "min": 3, + "max": 15 + }, "__integerMin48000Max48000": { "type": "integer", "min": 48000, From 0c3fe05f1fa8a51d777773e91a73b0a8d279818a Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 11 Nov 2020 19:08:18 +0000 Subject: [PATCH 173/339] Amazon QuickSight Update: QuickSight now supports Column-level security and connecting to Oracle data source. --- .../feature-AmazonQuickSight-d1bc378.json | 6 ++ .../codegen-resources/service-2.json | 89 +++++++++++++++++-- 2 files changed, 87 insertions(+), 8 deletions(-) create mode 100644 .changes/next-release/feature-AmazonQuickSight-d1bc378.json diff --git a/.changes/next-release/feature-AmazonQuickSight-d1bc378.json b/.changes/next-release/feature-AmazonQuickSight-d1bc378.json new file mode 100644 index 000000000000..df1b6ba12298 --- /dev/null +++ b/.changes/next-release/feature-AmazonQuickSight-d1bc378.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon QuickSight", + "contributor": "", + "description": "QuickSight now supports Column-level security and connecting to Oracle data source." +} diff --git a/services/quicksight/src/main/resources/codegen-resources/service-2.json b/services/quicksight/src/main/resources/codegen-resources/service-2.json index ea21922be157..719f978390de 100644 --- a/services/quicksight/src/main/resources/codegen-resources/service-2.json +++ b/services/quicksight/src/main/resources/codegen-resources/service-2.json @@ -184,7 +184,7 @@ {"shape":"ConcurrentUpdatingException"}, {"shape":"InternalFailureException"} ], - "documentation":"

Creates an assignment with one specified IAM policy, identified by its Amazon Resource Name (ARN). This policy will be assigned to specified groups or users of Amazon QuickSight. The users and groups need to be in the same namespace.

" + "documentation":"

Creates an assignment with one specified IAM policy, identified by its Amazon Resource Name (ARN). This policy assignment is attached to the specified groups or users of Amazon QuickSight. Assignment names are unique per AWS account. To avoid overwriting rules in other namespaces, use assignment names that are unique.

" }, "CreateIngestion":{ "name":"CreateIngestion", @@ -1716,7 +1716,7 @@ {"shape":"ConcurrentUpdatingException"}, {"shape":"InternalFailureException"} ], - "documentation":"

Updates an existing IAM policy assignment. This operation updates only the optional parameter or parameters that are specified in the request.

" + "documentation":"

Updates an existing IAM policy assignment. This operation updates only the optional parameter or parameters that are specified in the request. This overwrites all of the users included in Identities.

" }, "UpdateTemplate":{ "name":"UpdateTemplate", @@ -2421,6 +2421,25 @@ "max":64, "min":1 }, + "ColumnLevelPermissionRule":{ + "type":"structure", + "members":{ + "Principals":{ + "shape":"PrincipalList", + "documentation":"

An array of Amazon Resource Names (ARNs) for QuickSight users or groups.

" + }, + "ColumnNames":{ + "shape":"ColumnNameList", + "documentation":"

An array of column names.

" + } + }, + "documentation":"

A rule defined to grant access on one or more restricted columns. Each dataset can have multiple rules. To create a restricted column, you add it to one or more rules. Each rule must contain at least one column and at least one user or group. To be able to see a restricted column, a user or group needs to be added to a rule for that column.

" + }, + "ColumnLevelPermissionRuleList":{ + "type":"list", + "member":{"shape":"ColumnLevelPermissionRule"}, + "min":1 + }, "ColumnList":{ "type":"list", "member":{"shape":"ColumnName"}, @@ -2432,6 +2451,11 @@ "max":128, "min":1 }, + "ColumnNameList":{ + "type":"list", + "member":{"shape":"String"}, + "min":1 + }, "ColumnSchema":{ "type":"structure", "members":{ @@ -2778,6 +2802,10 @@ "shape":"RowLevelPermissionDataSet", "documentation":"

The row-level security configuration for the data that you want to create.

" }, + "ColumnLevelPermissionRules":{ + "shape":"ColumnLevelPermissionRuleList", + "documentation":"

A set of one or more definitions of a ColumnLevelPermissionRule .

" + }, "Tags":{ "shape":"TagList", "documentation":"

Contains a map of the key-value pairs for the resource tag or tags assigned to the dataset.

" @@ -3013,7 +3041,7 @@ }, "AssignmentName":{ "shape":"IAMPolicyAssignmentName", - "documentation":"

The name of the assignment. It must be unique within an AWS account.

" + "documentation":"

The name of the assignment, also called a rule. It must be unique within an AWS account.

" }, "AssignmentStatus":{ "shape":"AssignmentStatus", @@ -3841,6 +3869,10 @@ "RowLevelPermissionDataSet":{ "shape":"RowLevelPermissionDataSet", "documentation":"

The row-level security configuration for the dataset.

" + }, + "ColumnLevelPermissionRules":{ + "shape":"ColumnLevelPermissionRuleList", + "documentation":"

A set of one or more definitions of a ColumnLevelPermissionRule .

" } }, "documentation":"

Dataset.

" @@ -3948,6 +3980,10 @@ "RowLevelPermissionDataSet":{ "shape":"RowLevelPermissionDataSet", "documentation":"

The row-level security configuration for the dataset.

" + }, + "ColumnLevelPermissionRulesApplied":{ + "shape":"Boolean", + "documentation":"

Indicates if the dataset has column level permission configured.

" } }, "documentation":"

Dataset summary.

" @@ -4091,6 +4127,10 @@ "shape":"MySqlParameters", "documentation":"

MySQL parameters.

" }, + "OracleParameters":{ + "shape":"OracleParameters", + "documentation":"

Oracle parameters.

" + }, "PostgreSqlParameters":{ "shape":"PostgreSqlParameters", "documentation":"

PostgreSQL parameters.

" @@ -4157,6 +4197,7 @@ "JIRA", "MARIADB", "MYSQL", + "ORACLE", "POSTGRESQL", "PRESTO", "REDSHIFT", @@ -5418,7 +5459,7 @@ }, "AssignmentName":{ "shape":"IAMPolicyAssignmentName", - "documentation":"

The name of the assignment.

", + "documentation":"

The name of the assignment, also called a rule.

", "location":"uri", "locationName":"AssignmentName" }, @@ -7895,6 +7936,28 @@ "max":65535, "min":0 }, + "OracleParameters":{ + "type":"structure", + "required":[ + "Host", + "Port", + "Database" + ], + "members":{ + "Host":{ + "shape":"Host", + "documentation":"

An Oracle host.

" + }, + "Port":{ + "shape":"Port", + "documentation":"

Port.

" + }, + "Database":{ + "shape":"Database", + "documentation":"

Database.

" + } + } + }, "OutputColumn":{ "type":"structure", "members":{ @@ -8048,6 +8111,12 @@ "max":256, "min":1 }, + "PrincipalList":{ + "type":"list", + "member":{"shape":"String"}, + "max":100, + "min":1 + }, "ProjectOperation":{ "type":"structure", "required":["ProjectedColumns"], @@ -8328,7 +8397,7 @@ }, "Actions":{ "shape":"ActionList", - "documentation":"

The IAM action to grant or revoke permissions on, for example \"quicksight:DescribeDashboard\".

" + "documentation":"

The IAM action to grant or revoke permissions on.

" } }, "documentation":"

Permission for the resource.

" @@ -10080,6 +10149,10 @@ "RowLevelPermissionDataSet":{ "shape":"RowLevelPermissionDataSet", "documentation":"

The row-level security configuration for the data you want to create.

" + }, + "ColumnLevelPermissionRules":{ + "shape":"ColumnLevelPermissionRuleList", + "documentation":"

A set of one or more definitions of a ColumnLevelPermissionRule .

" } } }, @@ -10292,13 +10365,13 @@ "members":{ "AwsAccountId":{ "shape":"AwsAccountId", - "documentation":"

The ID of the AWS account that contains the IAM policy assignment.

", + "documentation":"

The ID of the AWS account that contains the IAM policy assignment.

", "location":"uri", "locationName":"AwsAccountId" }, "AssignmentName":{ "shape":"IAMPolicyAssignmentName", - "documentation":"

The name of the assignment. This name must be unique within an AWS account.

", + "documentation":"

The name of the assignment, also called a rule. This name must be unique within an AWS account.

", "location":"uri", "locationName":"AssignmentName" }, @@ -10327,7 +10400,7 @@ "members":{ "AssignmentName":{ "shape":"IAMPolicyAssignmentName", - "documentation":"

The name of the assignment.

" + "documentation":"

The name of the assignment or rule.

" }, "AssignmentId":{ "shape":"String", From f162d46a912fd66f807288e2d05a6fffbd09e8e3 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 11 Nov 2020 19:08:33 +0000 Subject: [PATCH 174/339] AWS Service Catalog Update: Adding support to remove a Provisioned Product launch role via UpdateProvisionedProductProperties --- .../next-release/feature-AWSServiceCatalog-3033314.json | 6 ++++++ .../src/main/resources/codegen-resources/service-2.json | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AWSServiceCatalog-3033314.json diff --git a/.changes/next-release/feature-AWSServiceCatalog-3033314.json b/.changes/next-release/feature-AWSServiceCatalog-3033314.json new file mode 100644 index 000000000000..67df89c7d301 --- /dev/null +++ b/.changes/next-release/feature-AWSServiceCatalog-3033314.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Service Catalog", + "contributor": "", + "description": "Adding support to remove a Provisioned Product launch role via UpdateProvisionedProductProperties" +} diff --git a/services/servicecatalog/src/main/resources/codegen-resources/service-2.json b/services/servicecatalog/src/main/resources/codegen-resources/service-2.json index fe6445082479..31dd633f49e6 100644 --- a/services/servicecatalog/src/main/resources/codegen-resources/service-2.json +++ b/services/servicecatalog/src/main/resources/codegen-resources/service-2.json @@ -4243,7 +4243,7 @@ "PropertyValue":{ "type":"string", "max":1024, - "min":1 + "min":0 }, "ProviderName":{ "type":"string", @@ -6127,7 +6127,7 @@ }, "ProvisionedProductProperties":{ "shape":"ProvisionedProductProperties", - "documentation":"

A map that contains the provisioned product properties to be updated.

The LAUNCH_ROLE key accepts user ARNs and role ARNs. This key allows an administrator to call UpdateProvisionedProductProperties to update the launch role that is associated with a provisioned product. This role is used when an end-user calls a provisioning operation such as UpdateProvisionedProduct, TerminateProvisionedProduct, or ExecuteProvisionedProductServiceAction. Only an ARN role or null is valid. A user ARN is invalid. For example, if an admin user passes null as the value for the key LAUNCH_ROLE, the admin removes the launch role that is associated with the provisioned product. As a result, the end user operations use the credentials of the end user.

The OWNER key accepts user ARNs and role ARNs. The owner is the user that has permission to see, update, terminate, and execute service actions in the provisioned product.

The administrator can change the owner of a provisioned product to another IAM user within the same account. Both end user owners and administrators can see ownership history of the provisioned product using the ListRecordHistory API. The new owner can describe all past records for the provisioned product using the DescribeRecord API. The previous owner can no longer use DescribeRecord, but can still see the product's history from when he was an owner using ListRecordHistory.

If a provisioned product ownership is assigned to an end user, they can see and perform any action through the API or Service Catalog console such as update, terminate, and execute service actions. If an end user provisions a product and the owner is updated to someone else, they will no longer be able to see or perform any actions through API or the Service Catalog console on that provisioned product.

" + "documentation":"

A map that contains the provisioned product properties to be updated.

The LAUNCH_ROLE key accepts role ARNs. This key allows an administrator to call UpdateProvisionedProductProperties to update the launch role that is associated with a provisioned product. This role is used when an end user calls a provisioning operation such as UpdateProvisionedProduct, TerminateProvisionedProduct, or ExecuteProvisionedProductServiceAction. Only a role ARN or an empty string \"\" is valid. A user ARN is invalid. if an admin user passes an empty string \"\" as the value for the key LAUNCH_ROLE, the admin removes the launch role that is associated with the provisioned product. As a result, the end user operations use the credentials of the end user.

The OWNER key accepts user ARNs and role ARNs. The owner is the user that has permission to see, update, terminate, and execute service actions in the provisioned product.

The administrator can change the owner of a provisioned product to another IAM user within the same account. Both end user owners and administrators can see ownership history of the provisioned product using the ListRecordHistory API. The new owner can describe all past records for the provisioned product using the DescribeRecord API. The previous owner can no longer use DescribeRecord, but can still see the product's history from when he was an owner using ListRecordHistory.

If a provisioned product ownership is assigned to an end user, they can see and perform any action through the API or Service Catalog console such as update, terminate, and execute service actions. If an end user provisions a product and the owner is updated to someone else, they will no longer be able to see or perform any actions through API or the Service Catalog console on that provisioned product.

" }, "IdempotencyToken":{ "shape":"IdempotencyToken", From 43845e94183e83282a07317d2ff758ce3aa65b93 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 11 Nov 2020 19:08:34 +0000 Subject: [PATCH 175/339] AWS Amplify Update: Whereas previously custom headers were set via the app's buildspec, custom headers can now be set directly on the Amplify app for both ci/cd and manual deploy apps. --- .../feature-AWSAmplify-a324e93.json | 6 +++ .../codegen-resources/service-2.json | 54 ++++++++++++------- 2 files changed, 42 insertions(+), 18 deletions(-) create mode 100644 .changes/next-release/feature-AWSAmplify-a324e93.json diff --git a/.changes/next-release/feature-AWSAmplify-a324e93.json b/.changes/next-release/feature-AWSAmplify-a324e93.json new file mode 100644 index 000000000000..4e44ee447952 --- /dev/null +++ b/.changes/next-release/feature-AWSAmplify-a324e93.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Amplify", + "contributor": "", + "description": "Whereas previously custom headers were set via the app's buildspec, custom headers can now be set directly on the Amplify app for both ci/cd and manual deploy apps." +} diff --git a/services/amplify/src/main/resources/codegen-resources/service-2.json b/services/amplify/src/main/resources/codegen-resources/service-2.json index 699b0b33e928..a3e337323558 100644 --- a/services/amplify/src/main/resources/codegen-resources/service-2.json +++ b/services/amplify/src/main/resources/codegen-resources/service-2.json @@ -726,6 +726,10 @@ "shape":"BuildSpec", "documentation":"

Describes the content of the build specification (build spec) for the Amplify app.

" }, + "customHeaders":{ + "shape":"CustomHeaders", + "documentation":"

Describes the custom HTTP headers for the Amplify app.

" + }, "enableAutoBranchCreation":{ "shape":"EnableAutoBranchCreation", "documentation":"

Enables automated branch creation for the Amplify app.

" @@ -747,8 +751,9 @@ }, "AppId":{ "type":"string", - "max":255, - "min":1 + "max":20, + "min":1, + "pattern":"d[a-z0-9]+" }, "Apps":{ "type":"list", @@ -830,7 +835,7 @@ }, "enablePerformanceMode":{ "shape":"EnablePerformanceMode", - "documentation":"

Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer interval. Enabling performance mode will mean that hosting configuration or code changes can take up to 10 minutes to roll out.

" + "documentation":"

Enables performance mode for the branch.

Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer interval. When performance mode is enabled, hosting configuration or code changes can take up to 10 minutes to roll out.

" }, "buildSpec":{ "shape":"BuildSpec", @@ -838,7 +843,7 @@ }, "enablePullRequestPreview":{ "shape":"EnablePullRequestPreview", - "documentation":"

Enables pull request preview for the autocreated branch.

" + "documentation":"

Enables pull request previews for the autocreated branch.

" }, "pullRequestEnvironmentName":{ "shape":"PullRequestEnvironmentName", @@ -1017,7 +1022,7 @@ }, "enablePerformanceMode":{ "shape":"EnablePerformanceMode", - "documentation":"

Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer interval. Enabling performance mode will mean that hosting configuration or code changes can take up to 10 minutes to roll out.

" + "documentation":"

Enables performance mode for the branch.

Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer interval. When performance mode is enabled, hosting configuration or code changes can take up to 10 minutes to roll out.

" }, "thumbnailUrl":{ "shape":"ThumbnailUrl", @@ -1041,7 +1046,7 @@ }, "enablePullRequestPreview":{ "shape":"EnablePullRequestPreview", - "documentation":"

Enables pull request preview for the branch.

" + "documentation":"

Enables pull request previews for the branch.

" }, "pullRequestEnvironmentName":{ "shape":"PullRequestEnvironmentName", @@ -1108,7 +1113,7 @@ "members":{ "name":{ "shape":"Name", - "documentation":"

The name for the Amplify app.

" + "documentation":"

The name for an Amplify app.

" }, "description":{ "shape":"Description", @@ -1166,17 +1171,21 @@ "shape":"BuildSpec", "documentation":"

The build specification (build spec) for an Amplify app.

" }, + "customHeaders":{ + "shape":"CustomHeaders", + "documentation":"

The custom HTTP headers for an Amplify app.

" + }, "enableAutoBranchCreation":{ "shape":"EnableAutoBranchCreation", - "documentation":"

Enables automated branch creation for the Amplify app.

" + "documentation":"

Enables automated branch creation for an Amplify app.

" }, "autoBranchCreationPatterns":{ "shape":"AutoBranchCreationPatterns", - "documentation":"

The automated branch creation glob patterns for the Amplify app.

" + "documentation":"

The automated branch creation glob patterns for an Amplify app.

" }, "autoBranchCreationConfig":{ "shape":"AutoBranchCreationConfig", - "documentation":"

The automated branch creation configuration for the Amplify app.

" + "documentation":"

The automated branch creation configuration for an Amplify app.

" } }, "documentation":"

The request structure used to create apps in Amplify.

" @@ -1278,7 +1287,7 @@ }, "enablePerformanceMode":{ "shape":"EnablePerformanceMode", - "documentation":"

Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer interval. Enabling performance mode will mean that hosting configuration or code changes can take up to 10 minutes to roll out.

" + "documentation":"

Enables performance mode for the branch.

Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer interval. When performance mode is enabled, hosting configuration or code changes can take up to 10 minutes to roll out.

" }, "tags":{ "shape":"TagMap", @@ -1298,7 +1307,7 @@ }, "enablePullRequestPreview":{ "shape":"EnablePullRequestPreview", - "documentation":"

Enables pull request preview for this branch.

" + "documentation":"

Enables pull request previews for this branch.

" }, "pullRequestEnvironmentName":{ "shape":"PullRequestEnvironmentName", @@ -1463,6 +1472,11 @@ "member":{"shape":"CustomDomain"}, "max":255 }, + "CustomHeaders":{ + "type":"string", + "max":25000, + "min":1 + }, "CustomRule":{ "type":"structure", "required":[ @@ -2541,7 +2555,7 @@ "MaxResults":{ "type":"integer", "max":100, - "min":1 + "min":0 }, "Name":{ "type":"string", @@ -3086,17 +3100,21 @@ "shape":"BuildSpec", "documentation":"

The build specification (build spec) for an Amplify app.

" }, + "customHeaders":{ + "shape":"CustomHeaders", + "documentation":"

The custom HTTP headers for an Amplify app.

" + }, "enableAutoBranchCreation":{ "shape":"EnableAutoBranchCreation", - "documentation":"

Enables automated branch creation for the Amplify app.

" + "documentation":"

Enables automated branch creation for an Amplify app.

" }, "autoBranchCreationPatterns":{ "shape":"AutoBranchCreationPatterns", - "documentation":"

Describes the automated branch creation glob patterns for the Amplify app.

" + "documentation":"

Describes the automated branch creation glob patterns for an Amplify app.

" }, "autoBranchCreationConfig":{ "shape":"AutoBranchCreationConfig", - "documentation":"

The automated branch creation configuration for the Amplify app.

" + "documentation":"

The automated branch creation configuration for an Amplify app.

" }, "repository":{ "shape":"Repository", @@ -3177,7 +3195,7 @@ }, "enablePerformanceMode":{ "shape":"EnablePerformanceMode", - "documentation":"

Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer interval. Enabling performance mode will mean that hosting configuration or code changes can take up to 10 minutes to roll out.

" + "documentation":"

Enables performance mode for the branch.

Performance mode optimizes for faster hosting performance by keeping content cached at the edge for a longer interval. When performance mode is enabled, hosting configuration or code changes can take up to 10 minutes to roll out.

" }, "buildSpec":{ "shape":"BuildSpec", @@ -3193,7 +3211,7 @@ }, "enablePullRequestPreview":{ "shape":"EnablePullRequestPreview", - "documentation":"

Enables pull request preview for this branch.

" + "documentation":"

Enables pull request previews for this branch.

" }, "pullRequestEnvironmentName":{ "shape":"PullRequestEnvironmentName", From db7c21e59361566739f0e8b7117a7e0d9e96ec33 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 11 Nov 2020 19:08:45 +0000 Subject: [PATCH 176/339] AWS Glue DataBrew Update: This is the initial SDK release for AWS Glue DataBrew. DataBrew is a visual data preparation tool that enables users to clean and normalize data without writing any code. --- .../feature-AWSGlueDataBrew-30f4aca.json | 6 + aws-sdk-java/pom.xml | 5 + bom/pom.xml | 5 + services/databrew/pom.xml | 60 + .../codegen-resources/paginators-1.json | 46 + .../codegen-resources/service-2.json | 3099 +++++++++++++++++ services/pom.xml | 1 + 7 files changed, 3222 insertions(+) create mode 100644 .changes/next-release/feature-AWSGlueDataBrew-30f4aca.json create mode 100644 services/databrew/pom.xml create mode 100644 services/databrew/src/main/resources/codegen-resources/paginators-1.json create mode 100644 services/databrew/src/main/resources/codegen-resources/service-2.json diff --git a/.changes/next-release/feature-AWSGlueDataBrew-30f4aca.json b/.changes/next-release/feature-AWSGlueDataBrew-30f4aca.json new file mode 100644 index 000000000000..dad2a8537db0 --- /dev/null +++ b/.changes/next-release/feature-AWSGlueDataBrew-30f4aca.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Glue DataBrew", + "contributor": "", + "description": "This is the initial SDK release for AWS Glue DataBrew. DataBrew is a visual data preparation tool that enables users to clean and normalize data without writing any code." +} diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index c5ec4ec740cf..c0f07f7c19bb 100644 --- a/aws-sdk-java/pom.xml +++ b/aws-sdk-java/pom.xml @@ -1178,6 +1178,11 @@ Amazon AutoScaling, etc).
s3outposts ${awsjavasdk.version} + + software.amazon.awssdk + databrew + ${awsjavasdk.version} + ${project.artifactId}-${project.version} diff --git a/bom/pom.xml b/bom/pom.xml index d470f8f34ff1..048e6431fed5 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -1303,6 +1303,11 @@ metrics-spi ${awsjavasdk.version} + + software.amazon.awssdk + databrew + ${awsjavasdk.version} + diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml new file mode 100644 index 000000000000..e30933f9c0db --- /dev/null +++ b/services/databrew/pom.xml @@ -0,0 +1,60 @@ + + + + + 4.0.0 + + software.amazon.awssdk + services + 2.15.26-SNAPSHOT + + databrew + AWS Java SDK :: Services :: Data Brew + The AWS Java SDK for Data Brew module holds the client classes that are used for + communicating with Data Brew. + + https://aws.amazon.com/sdkforjava + + + + org.apache.maven.plugins + maven-jar-plugin + + + + software.amazon.awssdk.services.databrew + + + + + + + + + + software.amazon.awssdk + protocol-core + ${awsjavasdk.version} + + + software.amazon.awssdk + aws-json-protocol + ${awsjavasdk.version} + + + diff --git a/services/databrew/src/main/resources/codegen-resources/paginators-1.json b/services/databrew/src/main/resources/codegen-resources/paginators-1.json new file mode 100644 index 000000000000..d9620b8c4cd3 --- /dev/null +++ b/services/databrew/src/main/resources/codegen-resources/paginators-1.json @@ -0,0 +1,46 @@ +{ + "pagination": { + "ListDatasets": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "Datasets" + }, + "ListJobRuns": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "JobRuns" + }, + "ListJobs": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "Jobs" + }, + "ListProjects": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "Projects" + }, + "ListRecipeVersions": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "Recipes" + }, + "ListRecipes": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "Recipes" + }, + "ListSchedules": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "Schedules" + } + } +} \ No newline at end of file diff --git a/services/databrew/src/main/resources/codegen-resources/service-2.json b/services/databrew/src/main/resources/codegen-resources/service-2.json new file mode 100644 index 000000000000..7b61b3922202 --- /dev/null +++ b/services/databrew/src/main/resources/codegen-resources/service-2.json @@ -0,0 +1,3099 @@ +{ + "version":"2.0", + "metadata":{ + "apiVersion":"2017-07-25", + "endpointPrefix":"databrew", + "jsonVersion":"1.1", + "protocol":"rest-json", + "serviceFullName":"AWS Glue DataBrew", + "serviceId":"DataBrew", + "signatureVersion":"v4", + "signingName":"databrew", + "uid":"databrew-2017-07-25" + }, + "operations":{ + "BatchDeleteRecipeVersion":{ + "name":"BatchDeleteRecipeVersion", + "http":{ + "method":"POST", + "requestUri":"/recipes/{name}/batchDeleteRecipeVersion" + }, + "input":{"shape":"BatchDeleteRecipeVersionRequest"}, + "output":{"shape":"BatchDeleteRecipeVersionResponse"}, + "errors":[ + {"shape":"ConflictException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Deletes one or more versions of a recipe at a time.

" + }, + "CreateDataset":{ + "name":"CreateDataset", + "http":{ + "method":"POST", + "requestUri":"/datasets" + }, + "input":{"shape":"CreateDatasetRequest"}, + "output":{"shape":"CreateDatasetResponse"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"ConflictException"}, + {"shape":"ServiceQuotaExceededException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Creates a new AWS Glue DataBrew dataset for this AWS account.

" + }, + "CreateProfileJob":{ + "name":"CreateProfileJob", + "http":{ + "method":"POST", + "requestUri":"/profileJobs" + }, + "input":{"shape":"CreateProfileJobRequest"}, + "output":{"shape":"CreateProfileJobResponse"}, + "errors":[ + {"shape":"ValidationException"} + ], + "documentation":"

Creates a new job to profile an AWS Glue DataBrew dataset that exists in the current AWS account.

" + }, + "CreateProject":{ + "name":"CreateProject", + "http":{ + "method":"POST", + "requestUri":"/projects" + }, + "input":{"shape":"CreateProjectRequest"}, + "output":{"shape":"CreateProjectResponse"}, + "errors":[ + {"shape":"ConflictException"}, + {"shape":"InternalServerException"}, + {"shape":"ServiceQuotaExceededException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Creates a new AWS Glue DataBrew project in the current AWS account.

" + }, + "CreateRecipe":{ + "name":"CreateRecipe", + "http":{ + "method":"POST", + "requestUri":"/recipes" + }, + "input":{"shape":"CreateRecipeRequest"}, + "output":{"shape":"CreateRecipeResponse"}, + "errors":[ + {"shape":"ConflictException"}, + {"shape":"ServiceQuotaExceededException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Creates a new AWS Glue DataBrew recipe for the current AWS account.

" + }, + "CreateRecipeJob":{ + "name":"CreateRecipeJob", + "http":{ + "method":"POST", + "requestUri":"/recipeJobs" + }, + "input":{"shape":"CreateRecipeJobRequest"}, + "output":{"shape":"CreateRecipeJobResponse"}, + "errors":[ + {"shape":"ValidationException"} + ], + "documentation":"

Creates a new job for an existing AWS Glue DataBrew recipe in the current AWS account. You can create a standalone job using either a project, or a combination of a recipe and a dataset.

" + }, + "CreateSchedule":{ + "name":"CreateSchedule", + "http":{ + "method":"POST", + "requestUri":"/schedules" + }, + "input":{"shape":"CreateScheduleRequest"}, + "output":{"shape":"CreateScheduleResponse"}, + "errors":[ + {"shape":"ValidationException"} + ], + "documentation":"

Creates a new schedule for one or more AWS Glue DataBrew jobs. Jobs can be run at a specific date and time, or at regular intervals.

" + }, + "DeleteDataset":{ + "name":"DeleteDataset", + "http":{ + "method":"DELETE", + "requestUri":"/datasets/{name}" + }, + "input":{"shape":"DeleteDatasetRequest"}, + "output":{"shape":"DeleteDatasetResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Deletes a dataset from AWS Glue DataBrew.

" + }, + "DeleteJob":{ + "name":"DeleteJob", + "http":{ + "method":"DELETE", + "requestUri":"/jobs/{name}" + }, + "input":{"shape":"DeleteJobRequest"}, + "output":{"shape":"DeleteJobResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Deletes the specified AWS Glue DataBrew job from the current AWS account. The job can be for a recipe or for a profile.

" + }, + "DeleteProject":{ + "name":"DeleteProject", + "http":{ + "method":"DELETE", + "requestUri":"/projects/{name}" + }, + "input":{"shape":"DeleteProjectRequest"}, + "output":{"shape":"DeleteProjectResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Deletes an existing AWS Glue DataBrew project from the current AWS account.

" + }, + "DeleteRecipeVersion":{ + "name":"DeleteRecipeVersion", + "http":{ + "method":"DELETE", + "requestUri":"/recipes/{name}/recipeVersion/{recipeVersion}" + }, + "input":{"shape":"DeleteRecipeVersionRequest"}, + "output":{"shape":"DeleteRecipeVersionResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Deletes a single version of an AWS Glue DataBrew recipe.

" + }, + "DeleteSchedule":{ + "name":"DeleteSchedule", + "http":{ + "method":"DELETE", + "requestUri":"/schedules/{name}" + }, + "input":{"shape":"DeleteScheduleRequest"}, + "output":{"shape":"DeleteScheduleResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Deletes the specified AWS Glue DataBrew schedule from the current AWS account.

" + }, + "DescribeDataset":{ + "name":"DescribeDataset", + "http":{ + "method":"GET", + "requestUri":"/datasets/{name}" + }, + "input":{"shape":"DescribeDatasetRequest"}, + "output":{"shape":"DescribeDatasetResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Returns the definition of a specific AWS Glue DataBrew dataset that is in the current AWS account.

" + }, + "DescribeJob":{ + "name":"DescribeJob", + "http":{ + "method":"GET", + "requestUri":"/jobs/{name}" + }, + "input":{"shape":"DescribeJobRequest"}, + "output":{"shape":"DescribeJobResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Returns the definition of a specific AWS Glue DataBrew job that is in the current AWS account.

" + }, + "DescribeProject":{ + "name":"DescribeProject", + "http":{ + "method":"GET", + "requestUri":"/projects/{name}" + }, + "input":{"shape":"DescribeProjectRequest"}, + "output":{"shape":"DescribeProjectResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Returns the definition of a specific AWS Glue DataBrew project that is in the current AWS account.

" + }, + "DescribeRecipe":{ + "name":"DescribeRecipe", + "http":{ + "method":"GET", + "requestUri":"/recipes/{name}" + }, + "input":{"shape":"DescribeRecipeRequest"}, + "output":{"shape":"DescribeRecipeResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Returns the definition of a specific AWS Glue DataBrew recipe that is in the current AWS account.

" + }, + "DescribeSchedule":{ + "name":"DescribeSchedule", + "http":{ + "method":"GET", + "requestUri":"/schedules/{name}" + }, + "input":{"shape":"DescribeScheduleRequest"}, + "output":{"shape":"DescribeScheduleResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Returns the definition of a specific AWS Glue DataBrew schedule that is in the current AWS account.

" + }, + "ListDatasets":{ + "name":"ListDatasets", + "http":{ + "method":"GET", + "requestUri":"/datasets" + }, + "input":{"shape":"ListDatasetsRequest"}, + "output":{"shape":"ListDatasetsResponse"}, + "errors":[ + {"shape":"ValidationException"} + ], + "documentation":"

Lists all of the AWS Glue DataBrew datasets for the current AWS account.

" + }, + "ListJobRuns":{ + "name":"ListJobRuns", + "http":{ + "method":"GET", + "requestUri":"/jobs/{name}/jobRuns" + }, + "input":{"shape":"ListJobRunsRequest"}, + "output":{"shape":"ListJobRunsResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Lists all of the previous runs of a particular AWS Glue DataBrew job in the current AWS account.

" + }, + "ListJobs":{ + "name":"ListJobs", + "http":{ + "method":"GET", + "requestUri":"/jobs" + }, + "input":{"shape":"ListJobsRequest"}, + "output":{"shape":"ListJobsResponse"}, + "errors":[ + {"shape":"ValidationException"} + ], + "documentation":"

Lists the AWS Glue DataBrew jobs in the current AWS account.

" + }, + "ListProjects":{ + "name":"ListProjects", + "http":{ + "method":"GET", + "requestUri":"/projects" + }, + "input":{"shape":"ListProjectsRequest"}, + "output":{"shape":"ListProjectsResponse"}, + "errors":[ + {"shape":"ValidationException"} + ], + "documentation":"

Lists all of the DataBrew projects in the current AWS account.

" + }, + "ListRecipeVersions":{ + "name":"ListRecipeVersions", + "http":{ + "method":"GET", + "requestUri":"/recipeVersions" + }, + "input":{"shape":"ListRecipeVersionsRequest"}, + "output":{"shape":"ListRecipeVersionsResponse"}, + "errors":[ + {"shape":"ValidationException"} + ], + "documentation":"

Lists all of the versions of a particular AWS Glue DataBrew recipe in the current AWS account.

" + }, + "ListRecipes":{ + "name":"ListRecipes", + "http":{ + "method":"GET", + "requestUri":"/recipes" + }, + "input":{"shape":"ListRecipesRequest"}, + "output":{"shape":"ListRecipesResponse"}, + "errors":[ + {"shape":"ValidationException"} + ], + "documentation":"

Lists all of the AWS Glue DataBrew recipes in the current AWS account.

" + }, + "ListSchedules":{ + "name":"ListSchedules", + "http":{ + "method":"GET", + "requestUri":"/schedules" + }, + "input":{"shape":"ListSchedulesRequest"}, + "output":{"shape":"ListSchedulesResponse"}, + "errors":[ + {"shape":"ValidationException"} + ], + "documentation":"

Lists the AWS Glue DataBrew schedules in the current AWS account.

" + }, + "ListTagsForResource":{ + "name":"ListTagsForResource", + "http":{ + "method":"GET", + "requestUri":"/tags/{ResourceArn}" + }, + "input":{"shape":"ListTagsForResourceRequest"}, + "output":{"shape":"ListTagsForResourceResponse"}, + "errors":[ + {"shape":"InternalServerException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Lists all the tags for an AWS Glue DataBrew resource.

" + }, + "PublishRecipe":{ + "name":"PublishRecipe", + "http":{ + "method":"POST", + "requestUri":"/recipes/{name}/publishRecipe" + }, + "input":{"shape":"PublishRecipeRequest"}, + "output":{"shape":"PublishRecipeResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"ResourceNotFoundException"} + ], + "documentation":"

Publishes a new major version of an AWS Glue DataBrew recipe that exists in the current AWS account.

" + }, + "SendProjectSessionAction":{ + "name":"SendProjectSessionAction", + "http":{ + "method":"PUT", + "requestUri":"/projects/{name}/sendProjectSessionAction" + }, + "input":{"shape":"SendProjectSessionActionRequest"}, + "output":{"shape":"SendProjectSessionActionResponse"}, + "errors":[ + {"shape":"ConflictException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Performs a recipe step within an interactive AWS Glue DataBrew session that's currently open.

" + }, + "StartJobRun":{ + "name":"StartJobRun", + "http":{ + "method":"POST", + "requestUri":"/jobs/{name}/startJobRun" + }, + "input":{"shape":"StartJobRunRequest"}, + "output":{"shape":"StartJobRunResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Runs an AWS Glue DataBrew job that exists in the current AWS account.

" + }, + "StartProjectSession":{ + "name":"StartProjectSession", + "http":{ + "method":"PUT", + "requestUri":"/projects/{name}/startProjectSession" + }, + "input":{"shape":"StartProjectSessionRequest"}, + "output":{"shape":"StartProjectSessionResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Creates an interactive session, enabling you to manipulate an AWS Glue DataBrew project.

" + }, + "StopJobRun":{ + "name":"StopJobRun", + "http":{ + "method":"POST", + "requestUri":"/jobs/{name}/jobRun/{runId}/stopJobRun" + }, + "input":{"shape":"StopJobRunRequest"}, + "output":{"shape":"StopJobRunResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Stops the specified job from running in the current AWS account.

" + }, + "TagResource":{ + "name":"TagResource", + "http":{ + "method":"POST", + "requestUri":"/tags/{ResourceArn}" + }, + "input":{"shape":"TagResourceRequest"}, + "output":{"shape":"TagResourceResponse"}, + "errors":[ + {"shape":"InternalServerException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Adds metadata tags to an AWS Glue DataBrew resource, such as a dataset, job, project, or recipe.

" + }, + "UntagResource":{ + "name":"UntagResource", + "http":{ + "method":"DELETE", + "requestUri":"/tags/{ResourceArn}" + }, + "input":{"shape":"UntagResourceRequest"}, + "output":{"shape":"UntagResourceResponse"}, + "errors":[ + {"shape":"InternalServerException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Removes metadata tags from an AWS Glue DataBrew resource.

" + }, + "UpdateDataset":{ + "name":"UpdateDataset", + "http":{ + "method":"PUT", + "requestUri":"/datasets/{name}" + }, + "input":{"shape":"UpdateDatasetRequest"}, + "output":{"shape":"UpdateDatasetResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Modifies the definition of an existing AWS Glue DataBrew dataset in the current AWS account.

" + }, + "UpdateProfileJob":{ + "name":"UpdateProfileJob", + "http":{ + "method":"PUT", + "requestUri":"/profileJobs/{name}" + }, + "input":{"shape":"UpdateProfileJobRequest"}, + "output":{"shape":"UpdateProfileJobResponse"}, + "errors":[ + {"shape":"ValidationException"} + ], + "documentation":"

Modifies the definition of an existing AWS Glue DataBrew job in the current AWS account.

" + }, + "UpdateProject":{ + "name":"UpdateProject", + "http":{ + "method":"PUT", + "requestUri":"/projects/{name}" + }, + "input":{"shape":"UpdateProjectRequest"}, + "output":{"shape":"UpdateProjectResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Modifies the definition of an existing AWS Glue DataBrew project in the current AWS account.

" + }, + "UpdateRecipe":{ + "name":"UpdateRecipe", + "http":{ + "method":"PUT", + "requestUri":"/recipes/{name}" + }, + "input":{"shape":"UpdateRecipeRequest"}, + "output":{"shape":"UpdateRecipeResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"ResourceNotFoundException"} + ], + "documentation":"

Modifies the definition of the latest working version of an AWS Glue DataBrew recipe in the current AWS account.

" + }, + "UpdateRecipeJob":{ + "name":"UpdateRecipeJob", + "http":{ + "method":"PUT", + "requestUri":"/recipeJobs/{name}" + }, + "input":{"shape":"UpdateRecipeJobRequest"}, + "output":{"shape":"UpdateRecipeJobResponse"}, + "errors":[ + {"shape":"ValidationException"} + ], + "documentation":"

Modifies the definition of an existing AWS Glue DataBrew recipe job in the current AWS account.

" + }, + "UpdateSchedule":{ + "name":"UpdateSchedule", + "http":{ + "method":"PUT", + "requestUri":"/schedules/{name}" + }, + "input":{"shape":"UpdateScheduleRequest"}, + "output":{"shape":"UpdateScheduleResponse"}, + "errors":[ + {"shape":"ValidationException"} + ], + "documentation":"

Modifies the definition of an existing AWS Glue DataBrew schedule in the current AWS account.

" + } + }, + "shapes":{ + "AccessDeniedException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

Access to the specified resource was denied.

", + "error":{"httpStatusCode":403}, + "exception":true + }, + "AccountId":{ + "type":"string", + "max":255 + }, + "ActionId":{"type":"integer"}, + "Arn":{ + "type":"string", + "max":2048, + "min":20 + }, + "AssumeControl":{"type":"boolean"}, + "Attempt":{"type":"integer"}, + "BatchDeleteRecipeVersionRequest":{ + "type":"structure", + "required":[ + "Name", + "RecipeVersions" + ], + "members":{ + "Name":{ + "shape":"RecipeName", + "documentation":"

The name of the recipe to be modified.

", + "location":"uri", + "locationName":"name" + }, + "RecipeVersions":{ + "shape":"RecipeVersionList", + "documentation":"

An array of version identifiers to be deleted.

" + } + } + }, + "BatchDeleteRecipeVersionResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"RecipeName", + "documentation":"

The name of the recipe that was modified.

" + }, + "Errors":{ + "shape":"RecipeErrorList", + "documentation":"

Errors, if any, that were encountered when deleting the recipe versions.

" + } + } + }, + "Bucket":{ + "type":"string", + "max":63, + "min":3 + }, + "CatalogId":{ + "type":"string", + "max":255, + "min":1 + }, + "ClientSessionId":{ + "type":"string", + "max":255, + "min":1, + "pattern":"^[a-zA-Z0-9][a-zA-Z0-9-]*$" + }, + "ColumnName":{ + "type":"string", + "max":255, + "min":1 + }, + "ColumnNameList":{ + "type":"list", + "member":{"shape":"ColumnName"}, + "max":200 + }, + "ColumnRange":{ + "type":"integer", + "max":20, + "min":0 + }, + "CompressionFormat":{ + "type":"string", + "enum":[ + "GZIP", + "LZ4", + "SNAPPY", + "BZIP2", + "DEFLATE", + "LZO", + "BROTLI", + "ZSTD", + "ZLIB" + ] + }, + "Condition":{ + "type":"string", + "max":128, + "min":1, + "pattern":"^[A-Z\\_]+$" + }, + "ConditionExpression":{ + "type":"structure", + "required":[ + "Condition", + "TargetColumn" + ], + "members":{ + "Condition":{ + "shape":"Condition", + "documentation":"

A specific condition to apply to a recipe action. For more information, see Recipe structure in the AWS Glue DataBrew Developer Guide.

" + }, + "Value":{ + "shape":"ConditionValue", + "documentation":"

A value that the condition must evaluate to for the condition to succeed.

" + }, + "TargetColumn":{ + "shape":"TargetColumn", + "documentation":"

A column to apply this condition to, within an AWS Glue DataBrew dataset.

" + } + }, + "documentation":"

Represents an individual condition that evaluates to true or false.

Conditions are used with recipe actions: The action is only performed for column values where the condition evaluates to true.

If a recipe requires more than one condition, then the recipe must specify multiple ConditionExpression elements. Each condition is applied to the rows in a dataset first, before the recipe action is performed.

" + }, + "ConditionExpressionList":{ + "type":"list", + "member":{"shape":"ConditionExpression"} + }, + "ConditionValue":{ + "type":"string", + "max":1024 + }, + "ConflictException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

Updating or deleting a resource can cause an inconsistent state.

", + "error":{"httpStatusCode":409}, + "exception":true + }, + "CreateDatasetRequest":{ + "type":"structure", + "required":[ + "Name", + "Input" + ], + "members":{ + "Name":{ + "shape":"DatasetName", + "documentation":"

The name of the dataset to be created.

" + }, + "FormatOptions":{"shape":"FormatOptions"}, + "Input":{"shape":"Input"}, + "Tags":{ + "shape":"TagMap", + "documentation":"

Metadata tags to apply to this dataset.

" + } + } + }, + "CreateDatasetResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"DatasetName", + "documentation":"

The name of the dataset that you created.

" + } + } + }, + "CreateProfileJobRequest":{ + "type":"structure", + "required":[ + "DatasetName", + "Name", + "OutputLocation", + "RoleArn" + ], + "members":{ + "DatasetName":{ + "shape":"DatasetName", + "documentation":"

The name of the dataset that this job is to act upon.

" + }, + "EncryptionKeyArn":{ + "shape":"EncryptionKeyArn", + "documentation":"

The Amazon Resource Name (ARN) of an encryption key that is used to protect the job.

" + }, + "EncryptionMode":{ + "shape":"EncryptionMode", + "documentation":"

The encryption mode for the job, which can be one of the following:

  • SSE-KMS - para>SSE-KMS - server-side encryption with AWS KMS-managed keys.

  • SSE-S3 - Server-side encryption with keys managed by Amazon S3.

" + }, + "Name":{ + "shape":"JobName", + "documentation":"

The name of the job to be created.

" + }, + "LogSubscription":{ + "shape":"LogSubscription", + "documentation":"

A value that enables or disables Amazon CloudWatch logging for the current AWS account. If logging is enabled, CloudWatch writes one log stream for each job run.

" + }, + "MaxCapacity":{ + "shape":"MaxCapacity", + "documentation":"

The maximum number of nodes that DataBrew can use when the job processes data.

" + }, + "MaxRetries":{ + "shape":"MaxRetries", + "documentation":"

The maximum number of times to retry the job after a job run fails.

" + }, + "OutputLocation":{"shape":"S3Location"}, + "RoleArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be assumed for this request.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

Metadata tags to apply to this job.

" + }, + "Timeout":{ + "shape":"Timeout", + "documentation":"

The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a status of TIMEOUT.

" + } + } + }, + "CreateProfileJobResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"JobName", + "documentation":"

The name of the job that was created.

" + } + } + }, + "CreateProjectRequest":{ + "type":"structure", + "required":[ + "DatasetName", + "Name", + "RecipeName", + "RoleArn" + ], + "members":{ + "DatasetName":{ + "shape":"DatasetName", + "documentation":"

The name of the dataset to associate this project with.

" + }, + "Name":{ + "shape":"ProjectName", + "documentation":"

A unique name for the new project.

" + }, + "RecipeName":{ + "shape":"RecipeName", + "documentation":"

The name of an existing recipe to associate with the project.

" + }, + "Sample":{"shape":"Sample"}, + "RoleArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be assumed for this request.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

Metadata tags to apply to this project.

" + } + } + }, + "CreateProjectResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"ProjectName", + "documentation":"

The name of the project that you created.

" + } + } + }, + "CreateRecipeJobRequest":{ + "type":"structure", + "required":[ + "Name", + "Outputs", + "RoleArn" + ], + "members":{ + "DatasetName":{ + "shape":"DatasetName", + "documentation":"

The name of the dataset that this job processes.

" + }, + "EncryptionKeyArn":{ + "shape":"EncryptionKeyArn", + "documentation":"

The Amazon Resource Name (ARN) of an encryption key that is used to protect the job.

" + }, + "EncryptionMode":{ + "shape":"EncryptionMode", + "documentation":"

The encryption mode for the job, which can be one of the following:

  • SSE-KMS - Server-side encryption with AWS KMS-managed keys.

  • SSE-S3 - Server-side encryption with keys managed by Amazon S3.

" + }, + "Name":{ + "shape":"JobName", + "documentation":"

A unique name for the job.

" + }, + "LogSubscription":{ + "shape":"LogSubscription", + "documentation":"

A value that enables or disables Amazon CloudWatch logging for the current AWS account. If logging is enabled, CloudWatch writes one log stream for each job run.

" + }, + "MaxCapacity":{ + "shape":"MaxCapacity", + "documentation":"

The maximum number of nodes that DataBrew can consume when the job processes data.

" + }, + "MaxRetries":{ + "shape":"MaxRetries", + "documentation":"

The maximum number of times to retry the job after a job run fails.

" + }, + "Outputs":{ + "shape":"OutputList", + "documentation":"

One or more artifacts that represent the output from running the job.

" + }, + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

Either the name of an existing project, or a combination of a recipe and a dataset to associate with the recipe.

" + }, + "RecipeReference":{"shape":"RecipeReference"}, + "RoleArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be assumed for this request.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

Metadata tags to apply to this job dataset.

" + }, + "Timeout":{ + "shape":"Timeout", + "documentation":"

The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a status of TIMEOUT.

" + } + } + }, + "CreateRecipeJobResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"JobName", + "documentation":"

The name of the job that you created.

" + } + } + }, + "CreateRecipeRequest":{ + "type":"structure", + "required":[ + "Name", + "Steps" + ], + "members":{ + "Description":{ + "shape":"RecipeDescription", + "documentation":"

A description for the recipe.

" + }, + "Name":{ + "shape":"RecipeName", + "documentation":"

A unique name for the recipe.

" + }, + "Steps":{ + "shape":"RecipeStepList", + "documentation":"

An array containing the steps to be performed by the recipe. Each recipe step consists of one recipe action and (optionally) an array of condition expressions.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

Metadata tags to apply to this recipe.

" + } + } + }, + "CreateRecipeResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"RecipeName", + "documentation":"

The name of the recipe that you created.

" + } + } + }, + "CreateScheduleRequest":{ + "type":"structure", + "required":[ + "CronExpression", + "Name" + ], + "members":{ + "JobNames":{ + "shape":"JobNameList", + "documentation":"

The name or names of one or more jobs to be run.

" + }, + "CronExpression":{ + "shape":"CronExpression", + "documentation":"

The date or dates and time or times, in cron format, when the jobs are to be run.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

Metadata tags to apply to this schedule.

" + }, + "Name":{ + "shape":"ScheduleName", + "documentation":"

A unique name for the schedule.

" + } + } + }, + "CreateScheduleResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"ScheduleName", + "documentation":"

The name of the schedule that was created.

" + } + } + }, + "CreatedBy":{"type":"string"}, + "CronExpression":{ + "type":"string", + "max":512, + "min":1 + }, + "DataCatalogInputDefinition":{ + "type":"structure", + "required":[ + "DatabaseName", + "TableName" + ], + "members":{ + "CatalogId":{ + "shape":"CatalogId", + "documentation":"

The unique identifier of the AWS account that holds the Data Catalog that stores the data.

" + }, + "DatabaseName":{ + "shape":"DatabaseName", + "documentation":"

The name of a database in the Data Catalog.

" + }, + "TableName":{ + "shape":"TableName", + "documentation":"

The name of a database table in the Data Catalog. This table corresponds to a DataBrew dataset.

" + }, + "TempDirectory":{ + "shape":"S3Location", + "documentation":"

An Amazon location that AWS Glue Data Catalog can use as a temporary directory.

" + } + }, + "documentation":"

Represents how metadata stored in the AWS Glue Data Catalog is defined in an AWS Glue DataBrew dataset.

" + }, + "DatabaseName":{ + "type":"string", + "max":255, + "min":1 + }, + "Dataset":{ + "type":"structure", + "required":[ + "Name", + "Input" + ], + "members":{ + "AccountId":{ + "shape":"AccountId", + "documentation":"

The ID of the AWS account that owns the dataset.

" + }, + "CreatedBy":{ + "shape":"CreatedBy", + "documentation":"

The identifier (the user name) of the user who created the dataset.

" + }, + "CreateDate":{ + "shape":"Date", + "documentation":"

The date and time that the dataset was created.

" + }, + "Name":{ + "shape":"DatasetName", + "documentation":"

The unique name of the dataset.

" + }, + "FormatOptions":{ + "shape":"FormatOptions", + "documentation":"

Options that define how DataBrew interprets the data in the dataset.

" + }, + "Input":{ + "shape":"Input", + "documentation":"

Information on how DataBrew can find the dataset, in either the AWS Glue Data Catalog or Amazon S3.

" + }, + "LastModifiedDate":{ + "shape":"Date", + "documentation":"

The last modification date and time of the dataset.

" + }, + "LastModifiedBy":{ + "shape":"LastModifiedBy", + "documentation":"

The identifier (the user name) of the user who last modified the dataset.

" + }, + "Source":{ + "shape":"Source", + "documentation":"

The location of the data for the dataset, either Amazon S3 or the AWS Glue Data Catalog.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

Metadata tags that have been applied to the dataset.

" + }, + "ResourceArn":{ + "shape":"Arn", + "documentation":"

The unique Amazon Resource Name (ARN) for the dataset.

" + } + }, + "documentation":"

Represents a dataset that can be processed by AWS Glue DataBrew.

" + }, + "DatasetList":{ + "type":"list", + "member":{"shape":"Dataset"} + }, + "DatasetName":{ + "type":"string", + "max":255, + "min":1 + }, + "Date":{"type":"timestamp"}, + "DeleteDatasetRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"DatasetName", + "documentation":"

The name of the dataset to be deleted.

", + "location":"uri", + "locationName":"name" + } + } + }, + "DeleteDatasetResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"DatasetName", + "documentation":"

The name of the dataset that you deleted.

" + } + } + }, + "DeleteJobRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"JobName", + "documentation":"

The name of the job to be deleted.

", + "location":"uri", + "locationName":"name" + } + } + }, + "DeleteJobResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"JobName", + "documentation":"

The name of the job that you deleted.

" + } + } + }, + "DeleteProjectRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"ProjectName", + "documentation":"

The name of the project to be deleted.

", + "location":"uri", + "locationName":"name" + } + } + }, + "DeleteProjectResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"ProjectName", + "documentation":"

The name of the project that you deleted.

" + } + } + }, + "DeleteRecipeVersionRequest":{ + "type":"structure", + "required":[ + "Name", + "RecipeVersion" + ], + "members":{ + "Name":{ + "shape":"RecipeName", + "documentation":"

The name of the recipe to be deleted.

", + "location":"uri", + "locationName":"name" + }, + "RecipeVersion":{ + "shape":"RecipeVersion", + "documentation":"

The version of the recipe to be deleted.

", + "location":"uri", + "locationName":"recipeVersion" + } + } + }, + "DeleteRecipeVersionResponse":{ + "type":"structure", + "required":[ + "Name", + "RecipeVersion" + ], + "members":{ + "Name":{ + "shape":"RecipeName", + "documentation":"

The name of the recipe that was deleted.

" + }, + "RecipeVersion":{ + "shape":"RecipeVersion", + "documentation":"

The version of the recipe that was deleted.

" + } + } + }, + "DeleteScheduleRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"ScheduleName", + "documentation":"

The name of the schedule to be deleted.

", + "location":"uri", + "locationName":"name" + } + } + }, + "DeleteScheduleResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"ScheduleName", + "documentation":"

The name of the schedule that was deleted.

" + } + } + }, + "DescribeDatasetRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"DatasetName", + "documentation":"

The name of the dataset to be described.

", + "location":"uri", + "locationName":"name" + } + } + }, + "DescribeDatasetResponse":{ + "type":"structure", + "required":[ + "Name", + "Input" + ], + "members":{ + "CreatedBy":{ + "shape":"CreatedBy", + "documentation":"

The identifier (user name) of the user who created the dataset.

" + }, + "CreateDate":{ + "shape":"Date", + "documentation":"

The date and time that the dataset was created.

" + }, + "Name":{ + "shape":"DatasetName", + "documentation":"

The name of the dataset.

" + }, + "FormatOptions":{"shape":"FormatOptions"}, + "Input":{"shape":"Input"}, + "LastModifiedDate":{ + "shape":"Date", + "documentation":"

The date and time that the dataset was last modified.

" + }, + "LastModifiedBy":{ + "shape":"LastModifiedBy", + "documentation":"

The identifier (user name) of the user who last modified the dataset.

" + }, + "Source":{ + "shape":"Source", + "documentation":"

The location of the data for this dataset, Amazon S3 or the AWS Glue Data Catalog.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

Metadata tags associated with this dataset.

" + }, + "ResourceArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the dataset.

" + } + } + }, + "DescribeJobRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"JobName", + "documentation":"

The name of the job to be described.

", + "location":"uri", + "locationName":"name" + } + } + }, + "DescribeJobResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "CreateDate":{ + "shape":"Date", + "documentation":"

The date and time that the job was created.

" + }, + "CreatedBy":{ + "shape":"CreatedBy", + "documentation":"

The identifier (user name) of the user associated with the creation of the job.

" + }, + "DatasetName":{ + "shape":"DatasetName", + "documentation":"

The dataset that the job acts upon.

" + }, + "EncryptionKeyArn":{ + "shape":"EncryptionKeyArn", + "documentation":"

The Amazon Resource Name (ARN) of an encryption key that is used to protect the job.

" + }, + "EncryptionMode":{ + "shape":"EncryptionMode", + "documentation":"

The encryption mode for the job, which can be one of the following:

  • SSE-KMS - Server-side encryption with AWS KMS-managed keys.

  • SSE-S3 - Server-side encryption with keys managed by Amazon S3.

" + }, + "Name":{ + "shape":"JobName", + "documentation":"

The name of the job.

" + }, + "Type":{ + "shape":"JobType", + "documentation":"

The job type, which must be one of the following:

  • PROFILE - The job analyzes the dataset to determine its size, data types, data distribution, and more.

  • RECIPE - The job applies one or more transformations to a dataset.

" + }, + "LastModifiedBy":{ + "shape":"LastModifiedBy", + "documentation":"

The identifier (user name) of the user who last modified the job.

" + }, + "LastModifiedDate":{ + "shape":"Date", + "documentation":"

The date and time that the job was last modified.

" + }, + "LogSubscription":{ + "shape":"LogSubscription", + "documentation":"

A value that indicates whether Amazon CloudWatch logging is enabled for this job.

" + }, + "MaxCapacity":{ + "shape":"MaxCapacity", + "documentation":"

The maximum number of nodes that AWS Glue DataBrew can consume when the job processes data.

" + }, + "MaxRetries":{ + "shape":"MaxRetries", + "documentation":"

The maximum number of times to retry the job after a job run fails.

" + }, + "Outputs":{ + "shape":"OutputList", + "documentation":"

One or more artifacts that represent the output from running the job.

" + }, + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

The DataBrew project associated with this job.

" + }, + "RecipeReference":{"shape":"RecipeReference"}, + "ResourceArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the job.

" + }, + "RoleArn":{ + "shape":"Arn", + "documentation":"

The ARN of the AWS Identity and Access Management (IAM) role that was assumed for this request.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

Metadata tags associated with this job.

" + }, + "Timeout":{ + "shape":"Timeout", + "documentation":"

The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a status of TIMEOUT.

" + } + } + }, + "DescribeProjectRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"ProjectName", + "documentation":"

The name of the project to be described.

", + "location":"uri", + "locationName":"name" + } + } + }, + "DescribeProjectResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "CreateDate":{ + "shape":"Date", + "documentation":"

The date and time that the project was created.

" + }, + "CreatedBy":{ + "shape":"CreatedBy", + "documentation":"

The identifier (user name) of the user who created the project.

" + }, + "DatasetName":{ + "shape":"DatasetName", + "documentation":"

The dataset associated with the project.

" + }, + "LastModifiedDate":{ + "shape":"Date", + "documentation":"

The date and time that the project was last modified.

" + }, + "LastModifiedBy":{ + "shape":"LastModifiedBy", + "documentation":"

The identifier (user name) of the user who last modified the project.

" + }, + "Name":{ + "shape":"ProjectName", + "documentation":"

The name of the project.

" + }, + "RecipeName":{ + "shape":"RecipeName", + "documentation":"

The recipe associated with this job.

" + }, + "ResourceArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the project.

" + }, + "Sample":{"shape":"Sample"}, + "RoleArn":{ + "shape":"Arn", + "documentation":"

The ARN of the AWS Identity and Access Management (IAM) role that was assumed for this request.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

Metadata tags associated with this project.

" + }, + "SessionStatus":{ + "shape":"SessionStatus", + "documentation":"

Describes the current state of the session:

  • PROVISIONING - allocating resources for the session.

  • INITIALIZING - getting the session ready for first use.

  • ASSIGNED - the session is ready for use.

" + }, + "OpenedBy":{ + "shape":"OpenedBy", + "documentation":"

The identifier (user name) of the user that opened the project for use.

" + }, + "OpenDate":{ + "shape":"Date", + "documentation":"

The date and time when the project was opened.

" + } + } + }, + "DescribeRecipeRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"RecipeName", + "documentation":"

The name of the recipe to be described.

", + "location":"uri", + "locationName":"name" + }, + "RecipeVersion":{ + "shape":"RecipeVersion", + "documentation":"

The recipe version identifier. If this parameter isn't specified, then the latest published version is returned.

", + "location":"querystring", + "locationName":"recipeVersion" + } + } + }, + "DescribeRecipeResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "CreatedBy":{ + "shape":"CreatedBy", + "documentation":"

The identifier (user name) of the user who created the recipe.

" + }, + "CreateDate":{ + "shape":"Date", + "documentation":"

The date and time that the recipe was created.

" + }, + "LastModifiedBy":{ + "shape":"LastModifiedBy", + "documentation":"

The identifier (user name) of the user who last modified the recipe.

" + }, + "LastModifiedDate":{ + "shape":"Date", + "documentation":"

The date and time that the recipe was last modified.

" + }, + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

The name of the project associated with this recipe.

" + }, + "PublishedBy":{ + "shape":"PublishedBy", + "documentation":"

The identifier (user name) of the user who last published the recipe.

" + }, + "PublishedDate":{ + "shape":"Date", + "documentation":"

The date and time when the recipe was last published.

" + }, + "Description":{ + "shape":"RecipeDescription", + "documentation":"

The description of the recipe.

" + }, + "Name":{ + "shape":"RecipeName", + "documentation":"

The name of the recipe.

" + }, + "Steps":{ + "shape":"RecipeStepList", + "documentation":"

One or more steps to be performed by the recipe. Each step consists of an action, and the conditions under which the action should succeed.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

Metadata tags associated with this project.

" + }, + "ResourceArn":{ + "shape":"Arn", + "documentation":"

The ARN of the recipe.

" + }, + "RecipeVersion":{ + "shape":"RecipeVersion", + "documentation":"

The recipe version identifier.

" + } + } + }, + "DescribeScheduleRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"ScheduleName", + "documentation":"

The name of the schedule to be described.

", + "location":"uri", + "locationName":"name" + } + } + }, + "DescribeScheduleResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "CreateDate":{ + "shape":"Date", + "documentation":"

The date and time that the schedule was created.

" + }, + "CreatedBy":{ + "shape":"CreatedBy", + "documentation":"

The identifier (user name) of the user who created the schedule.

" + }, + "JobNames":{ + "shape":"JobNameList", + "documentation":"

The name or names of one or more jobs to be run by using the schedule.

" + }, + "LastModifiedBy":{ + "shape":"LastModifiedBy", + "documentation":"

The identifier (user name) of the user who last modified the schedule.

" + }, + "LastModifiedDate":{ + "shape":"Date", + "documentation":"

The date and time that the schedule was last modified.

" + }, + "ResourceArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the schedule.

" + }, + "CronExpression":{ + "shape":"CronExpression", + "documentation":"

The date or dates and time or times, in cron format, when the jobs are to be run for the schedule.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

Metadata tags associated with this schedule.

" + }, + "Name":{ + "shape":"ScheduleName", + "documentation":"

The name of the schedule.

" + } + } + }, + "EncryptionKeyArn":{ + "type":"string", + "max":2048, + "min":20 + }, + "EncryptionMode":{ + "type":"string", + "enum":[ + "SSE-KMS", + "SSE-S3" + ] + }, + "ErrorCode":{ + "type":"string", + "pattern":"^[1-5][0-9][0-9]$" + }, + "ExcelOptions":{ + "type":"structure", + "members":{ + "SheetNames":{ + "shape":"SheetNameList", + "documentation":"

Specifies one or more named sheets in the Excel file, which will be included in the dataset.

" + }, + "SheetIndexes":{ + "shape":"SheetIndexList", + "documentation":"

Specifies one or more sheet numbers in the Excel file, which will be included in the dataset.

" + } + }, + "documentation":"

Options that define how DataBrew will interpret a Microsoft Excel file, when creating a dataset from that file.

" + }, + "ExecutionTime":{"type":"integer"}, + "FormatOptions":{ + "type":"structure", + "members":{ + "Json":{ + "shape":"JsonOptions", + "documentation":"

Options that define how JSON input is to be interpreted by DataBrew.

" + }, + "Excel":{ + "shape":"ExcelOptions", + "documentation":"

Options that define how Excel input is to be interpreted by DataBrew.

" + } + }, + "documentation":"

Options that define how Microsoft Excel input is to be interpreted by DataBrew.

" + }, + "HiddenColumnList":{ + "type":"list", + "member":{"shape":"ColumnName"} + }, + "Input":{ + "type":"structure", + "members":{ + "S3InputDefinition":{ + "shape":"S3Location", + "documentation":"

The Amazon S3 location where the data is stored.

" + }, + "DataCatalogInputDefinition":{ + "shape":"DataCatalogInputDefinition", + "documentation":"

The AWS Glue Data Catalog parameters for the data.

" + } + }, + "documentation":"

Information on how AWS Glue DataBrew can find data, in either the AWS Glue Data Catalog or Amazon S3.

" + }, + "InternalServerException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

An internal service failure occurred.

", + "error":{"httpStatusCode":500}, + "exception":true + }, + "Job":{ + "type":"structure", + "required":["Name"], + "members":{ + "AccountId":{ + "shape":"AccountId", + "documentation":"

The ID of the AWS account that owns the job.

" + }, + "CreatedBy":{ + "shape":"CreatedBy", + "documentation":"

The identifier (the user name) of the user who created the job.

" + }, + "CreateDate":{ + "shape":"Date", + "documentation":"

The date and time that the job was created.

" + }, + "DatasetName":{ + "shape":"DatasetName", + "documentation":"

A dataset that the job is to process.

" + }, + "EncryptionKeyArn":{ + "shape":"EncryptionKeyArn", + "documentation":"

The Amazon Resource Name (ARN) of an encryption key that is used to protect a job.

" + }, + "EncryptionMode":{ + "shape":"EncryptionMode", + "documentation":"

The encryption mode for the job, which can be one of the following:

  • SSE-KMS - Server-side encryption with AWS KMS-managed keys.

  • SSE-S3 - Server-side encryption with keys managed by Amazon S3.

" + }, + "Name":{ + "shape":"JobName", + "documentation":"

The unique name of the job.

" + }, + "Type":{ + "shape":"JobType", + "documentation":"

The job type of the job, which must be one of the following:

  • PROFILE - A job to analyze a dataset, to determine its size, data types, data distribution, and more.

  • RECIPE - A job to apply one or more transformations to a dataset.

" + }, + "LastModifiedBy":{ + "shape":"LastModifiedBy", + "documentation":"

The identifier (the user name) of the user who last modified the job.

" + }, + "LastModifiedDate":{ + "shape":"Date", + "documentation":"

The modification date and time of the job.

" + }, + "LogSubscription":{ + "shape":"LogSubscription", + "documentation":"

The current status of Amazon CloudWatch logging for the job.

" + }, + "MaxCapacity":{ + "shape":"MaxCapacity", + "documentation":"

The maximum number of nodes that can be consumed when the job processes data.

" + }, + "MaxRetries":{ + "shape":"MaxRetries", + "documentation":"

The maximum number of times to retry the job after a job run fails.

" + }, + "Outputs":{ + "shape":"OutputList", + "documentation":"

One or more artifacts that represent output from running the job.

" + }, + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

The name of the project that the job is associated with.

" + }, + "RecipeReference":{ + "shape":"RecipeReference", + "documentation":"

A set of steps that the job runs.

" + }, + "ResourceArn":{ + "shape":"Arn", + "documentation":"

The unique Amazon Resource Name (ARN) for the job.

" + }, + "RoleArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the role that will be assumed for this job.

" + }, + "Timeout":{ + "shape":"Timeout", + "documentation":"

The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a status of TIMEOUT.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

Metadata tags that have been applied to the job.

" + } + }, + "documentation":"

Represents all of the attributes of an AWS Glue DataBrew job.

" + }, + "JobList":{ + "type":"list", + "member":{"shape":"Job"} + }, + "JobName":{ + "type":"string", + "max":240, + "min":1 + }, + "JobNameList":{ + "type":"list", + "member":{"shape":"JobName"}, + "max":50 + }, + "JobRun":{ + "type":"structure", + "members":{ + "Attempt":{ + "shape":"Attempt", + "documentation":"

The number of times that DataBrew has attempted to run the job.

" + }, + "CompletedOn":{ + "shape":"Date", + "documentation":"

The date and time when the job completed processing.

" + }, + "DatasetName":{ + "shape":"DatasetName", + "documentation":"

The name of the dataset for the job to process.

" + }, + "ErrorMessage":{ + "shape":"JobRunErrorMessage", + "documentation":"

A message indicating an error (if any) that was encountered when the job ran.

" + }, + "ExecutionTime":{ + "shape":"ExecutionTime", + "documentation":"

The amount of time, in seconds, during which a job run consumed resources.

" + }, + "JobName":{ + "shape":"JobName", + "documentation":"

The name of the job being processed during this run.

" + }, + "RunId":{ + "shape":"JobRunId", + "documentation":"

The unique identifier of the job run.

" + }, + "State":{ + "shape":"JobRunState", + "documentation":"

The current state of the job run entity itself.

" + }, + "LogSubscription":{ + "shape":"LogSubscription", + "documentation":"

The current status of Amazon CloudWatch logging for the job run.

" + }, + "LogGroupName":{ + "shape":"LogGroupName", + "documentation":"

The name of an Amazon CloudWatch log group, where the job writes diagnostic messages when it runs.

" + }, + "Outputs":{ + "shape":"OutputList", + "documentation":"

One or more output artifacts from a job run.

" + }, + "RecipeReference":{ + "shape":"RecipeReference", + "documentation":"

The set of steps processed by the job.

" + }, + "StartedBy":{ + "shape":"StartedBy", + "documentation":"

The identifier (the user name) of the user who initiated the job run.

" + }, + "StartedOn":{ + "shape":"Date", + "documentation":"

The date and time when the job run began.

" + } + }, + "documentation":"

Represents one run of an AWS Glue DataBrew job.

" + }, + "JobRunErrorMessage":{"type":"string"}, + "JobRunId":{ + "type":"string", + "max":255, + "min":1 + }, + "JobRunList":{ + "type":"list", + "member":{"shape":"JobRun"} + }, + "JobRunState":{ + "type":"string", + "enum":[ + "STARTING", + "RUNNING", + "STOPPING", + "STOPPED", + "SUCCEEDED", + "FAILED", + "TIMEOUT" + ] + }, + "JobType":{ + "type":"string", + "enum":[ + "PROFILE", + "RECIPE" + ] + }, + "JsonOptions":{ + "type":"structure", + "members":{ + "MultiLine":{ + "shape":"MultiLine", + "documentation":"

A value that specifies whether JSON input contains embedded new line characters.

" + } + }, + "documentation":"

Represents the JSON-specific options that define how input is to be interpreted by AWS Glue DataBrew.

" + }, + "Key":{ + "type":"string", + "max":1280, + "min":1 + }, + "LastModifiedBy":{"type":"string"}, + "ListDatasetsRequest":{ + "type":"structure", + "members":{ + "MaxResults":{ + "shape":"MaxResults100", + "documentation":"

The maximum number of results to return in this request.

", + "location":"querystring", + "locationName":"maxResults" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A token generated by DataBrew that specifies where to continue pagination if a previous request was truncated. To get the next set of pages, pass in the NextToken value from the response object of the previous page call.

", + "location":"querystring", + "locationName":"nextToken" + } + } + }, + "ListDatasetsResponse":{ + "type":"structure", + "required":["Datasets"], + "members":{ + "Datasets":{ + "shape":"DatasetList", + "documentation":"

A list of datasets that are defined in the current AWS account.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A token generated by DataBrew that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call.

" + } + } + }, + "ListJobRunsRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"JobName", + "documentation":"

The name of the job.

", + "location":"uri", + "locationName":"name" + }, + "MaxResults":{ + "shape":"MaxResults100", + "documentation":"

The maximum number of results to return in this request.

", + "location":"querystring", + "locationName":"maxResults" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A token generated by AWS Glue DataBrew that specifies where to continue pagination if a previous request was truncated. To get the next set of pages, pass in the NextToken value from the response object of the previous page call.

", + "location":"querystring", + "locationName":"nextToken" + } + } + }, + "ListJobRunsResponse":{ + "type":"structure", + "required":["JobRuns"], + "members":{ + "JobRuns":{ + "shape":"JobRunList", + "documentation":"

A list of job runs that have occurred for the specified job.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A token generated by DataBrew that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call.

" + } + } + }, + "ListJobsRequest":{ + "type":"structure", + "members":{ + "DatasetName":{ + "shape":"DatasetName", + "documentation":"

The name of a dataset. Using this parameter indicates to return only those jobs that act on the specified dataset.

", + "location":"querystring", + "locationName":"datasetName" + }, + "MaxResults":{ + "shape":"MaxResults100", + "documentation":"

The maximum number of results to return in this request.

", + "location":"querystring", + "locationName":"maxResults" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A token generated by DataBrew that specifies where to continue pagination if a previous request was truncated. To get the next set of pages, pass in the NextToken value from the response object of the previous page call.

", + "location":"querystring", + "locationName":"nextToken" + }, + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

The name of a project. Using this parameter indicates to return only those jobs that are associated with the specified project.

", + "location":"querystring", + "locationName":"projectName" + } + } + }, + "ListJobsResponse":{ + "type":"structure", + "required":["Jobs"], + "members":{ + "Jobs":{ + "shape":"JobList", + "documentation":"

A list of jobs that are defined in the current AWS account.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A token generated by DataBrew that specifies where to continue pagination if a previous request was truncated. To obtain the next set of pages, pass in the NextToken from the response object of the previous page call.

" + } + } + }, + "ListProjectsRequest":{ + "type":"structure", + "members":{ + "NextToken":{ + "shape":"NextToken", + "documentation":"

A pagination token that can be used in a subsequent request.

", + "location":"querystring", + "locationName":"nextToken" + }, + "MaxResults":{ + "shape":"MaxResults100", + "documentation":"

The maximum number of results to return in this request.

", + "location":"querystring", + "locationName":"maxResults" + } + } + }, + "ListProjectsResponse":{ + "type":"structure", + "required":["Projects"], + "members":{ + "Projects":{ + "shape":"ProjectList", + "documentation":"

A list of projects that are defined in the current AWS account.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A token generated by DataBrew that specifies where to continue pagination if a previous request was truncated. To get the next set of pages, pass in the NextToken value from the response object of the previous page call.

" + } + } + }, + "ListRecipeVersionsRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "MaxResults":{ + "shape":"MaxResults100", + "documentation":"

The maximum number of results to return in this request.

", + "location":"querystring", + "locationName":"maxResults" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A pagination token that can be used in a subsequent request.

", + "location":"querystring", + "locationName":"nextToken" + }, + "Name":{ + "shape":"RecipeName", + "documentation":"

The name of the recipe for which to return version information.

", + "location":"querystring", + "locationName":"name" + } + } + }, + "ListRecipeVersionsResponse":{ + "type":"structure", + "required":["Recipes"], + "members":{ + "NextToken":{ + "shape":"NextToken", + "documentation":"

A token generated by DataBrew that specifies where to continue pagination if a previous request was truncated. To get the next set of pages, pass in the NextToken value from the response object of the previous page call.

" + }, + "Recipes":{ + "shape":"RecipeList", + "documentation":"

A list of versions for the specified recipe.

" + } + } + }, + "ListRecipesRequest":{ + "type":"structure", + "members":{ + "MaxResults":{ + "shape":"MaxResults100", + "documentation":"

The maximum number of results to return in this request.

", + "location":"querystring", + "locationName":"maxResults" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A pagination token that can be used in a subsequent request.

", + "location":"querystring", + "locationName":"nextToken" + }, + "RecipeVersion":{ + "shape":"RecipeVersion", + "documentation":"

A version identifier. Using this parameter indicates to return only those recipes that have this version identifier.

", + "location":"querystring", + "locationName":"recipeVersion" + } + } + }, + "ListRecipesResponse":{ + "type":"structure", + "required":["Recipes"], + "members":{ + "Recipes":{ + "shape":"RecipeList", + "documentation":"

A list of recipes that are defined in the current AWS account.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A token generated by DataBrew that specifies where to continue pagination if a previous request was truncated. To get the next set of pages, pass in the NextToken value from the response object of the previous page call.

" + } + } + }, + "ListSchedulesRequest":{ + "type":"structure", + "members":{ + "JobName":{ + "shape":"JobName", + "documentation":"

The name of the job that these schedules apply to.

", + "location":"querystring", + "locationName":"jobName" + }, + "MaxResults":{ + "shape":"MaxResults100", + "documentation":"

The maximum number of results to return in this request.

", + "location":"querystring", + "locationName":"maxResults" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A pagination token that can be used in a subsequent request.

", + "location":"querystring", + "locationName":"nextToken" + } + } + }, + "ListSchedulesResponse":{ + "type":"structure", + "required":["Schedules"], + "members":{ + "Schedules":{ + "shape":"ScheduleList", + "documentation":"

A list of schedules in the current AWS account.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A token generated by DataBrew that specifies where to continue pagination if a previous request was truncated. To get the next set of pages, pass in the NextToken value from the response object of the previous page call.

" + } + } + }, + "ListTagsForResourceRequest":{ + "type":"structure", + "required":["ResourceArn"], + "members":{ + "ResourceArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) string that uniquely identifies the DataBrew resource.

", + "location":"uri", + "locationName":"ResourceArn" + } + } + }, + "ListTagsForResourceResponse":{ + "type":"structure", + "members":{ + "Tags":{ + "shape":"TagMap", + "documentation":"

A list of tags associated with the DataBrew resource.

" + } + } + }, + "LogGroupName":{ + "type":"string", + "max":512, + "min":1 + }, + "LogSubscription":{ + "type":"string", + "enum":[ + "ENABLE", + "DISABLE" + ] + }, + "MaxCapacity":{"type":"integer"}, + "MaxResults100":{ + "type":"integer", + "max":100, + "min":1 + }, + "MaxRetries":{ + "type":"integer", + "min":0 + }, + "Message":{"type":"string"}, + "MultiLine":{"type":"boolean"}, + "NextToken":{ + "type":"string", + "max":2000, + "min":1 + }, + "OpenedBy":{"type":"string"}, + "Operation":{ + "type":"string", + "max":128, + "min":1, + "pattern":"^[A-Z\\_]+$" + }, + "Output":{ + "type":"structure", + "required":["Location"], + "members":{ + "CompressionFormat":{ + "shape":"CompressionFormat", + "documentation":"

The compression algorithm used to compress the output text of the job.

" + }, + "Format":{ + "shape":"OutputFormat", + "documentation":"

The data format of the output of the job.

" + }, + "PartitionColumns":{ + "shape":"ColumnNameList", + "documentation":"

The names of one or more partition columns for the output of the job.

" + }, + "Location":{ + "shape":"S3Location", + "documentation":"

The location in Amazon S3 where the job writes its output.

" + }, + "Overwrite":{ + "shape":"OverwriteOutput", + "documentation":"

A value that, if true, means that any data in the location specified for output is overwritten with new output.

" + } + }, + "documentation":"

Represents individual output from a particular job run.

" + }, + "OutputFormat":{ + "type":"string", + "enum":[ + "CSV", + "JSON", + "PARQUET", + "GLUEPARQUET", + "AVRO", + "ORC", + "XML" + ] + }, + "OutputList":{ + "type":"list", + "member":{"shape":"Output"}, + "min":1 + }, + "OverwriteOutput":{"type":"boolean"}, + "ParameterMap":{ + "type":"map", + "key":{"shape":"ParameterName"}, + "value":{"shape":"ParameterValue"} + }, + "ParameterName":{ + "type":"string", + "max":128, + "min":1, + "pattern":"^[A-Za-z0-9]+$" + }, + "ParameterValue":{ + "type":"string", + "max":8192, + "min":1 + }, + "Preview":{"type":"boolean"}, + "Project":{ + "type":"structure", + "required":[ + "Name", + "RecipeName" + ], + "members":{ + "AccountId":{ + "shape":"AccountId", + "documentation":"

The ID of the AWS account that owns the project.

" + }, + "CreateDate":{ + "shape":"Date", + "documentation":"

The date and time that the project was created.

" + }, + "CreatedBy":{ + "shape":"CreatedBy", + "documentation":"

The identifier (the user name) of the user who crated the project.

" + }, + "DatasetName":{ + "shape":"DatasetName", + "documentation":"

The dataset that the project is to act upon.

" + }, + "LastModifiedDate":{ + "shape":"Date", + "documentation":"

The last modification date and time for the project.

" + }, + "LastModifiedBy":{ + "shape":"LastModifiedBy", + "documentation":"

The identifier (user name) of the user who last modified the project.

" + }, + "Name":{ + "shape":"ProjectName", + "documentation":"

The unique name of a project.

" + }, + "RecipeName":{ + "shape":"RecipeName", + "documentation":"

The name of a recipe that will be developed during a project session.

" + }, + "ResourceArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) for the project.

" + }, + "Sample":{ + "shape":"Sample", + "documentation":"

The sample size and sampling type to apply to the data. If this parameter isn't specified, then the sample will consiste of the first 500 rows from the dataset.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

Metadata tags that have been applied to the project.

" + }, + "RoleArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the role that will be assumed for this project.

" + }, + "OpenedBy":{ + "shape":"OpenedBy", + "documentation":"

The identifier (the user name) of the user that opened the project for use.

" + }, + "OpenDate":{ + "shape":"Date", + "documentation":"

The date and time when the project was opened.

" + } + }, + "documentation":"

Represents all of the attributes of an AWS Glue DataBrew project.

" + }, + "ProjectList":{ + "type":"list", + "member":{"shape":"Project"} + }, + "ProjectName":{ + "type":"string", + "max":255, + "min":1 + }, + "PublishRecipeRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Description":{ + "shape":"RecipeDescription", + "documentation":"

A description of the recipe to be published, for this version of the recipe.

" + }, + "Name":{ + "shape":"RecipeName", + "documentation":"

The name of the recipe to be published.

", + "location":"uri", + "locationName":"name" + } + } + }, + "PublishRecipeResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"RecipeName", + "documentation":"

The name of the recipe that you published.

" + } + } + }, + "PublishedBy":{"type":"string"}, + "Recipe":{ + "type":"structure", + "required":["Name"], + "members":{ + "CreatedBy":{ + "shape":"CreatedBy", + "documentation":"

The identifier (the user name) of the user who created the recipe.

" + }, + "CreateDate":{ + "shape":"Date", + "documentation":"

The date and time that the recipe was created.

" + }, + "LastModifiedBy":{ + "shape":"LastModifiedBy", + "documentation":"

The identifier (user name) of the user who last modified the recipe.

" + }, + "LastModifiedDate":{ + "shape":"Date", + "documentation":"

The last modification date and time of the recipe.

" + }, + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

The name of the project that the recipe is associated with.

" + }, + "PublishedBy":{ + "shape":"PublishedBy", + "documentation":"

The identifier (the user name) of the user who published the recipe.

" + }, + "PublishedDate":{ + "shape":"Date", + "documentation":"

The date and time when the recipe was published.

" + }, + "Description":{ + "shape":"RecipeDescription", + "documentation":"

The description of the recipe.

" + }, + "Name":{ + "shape":"RecipeName", + "documentation":"

The unique name for the recipe.

" + }, + "ResourceArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) for the recipe.

" + }, + "Steps":{ + "shape":"RecipeStepList", + "documentation":"

A list of steps that are defined by the recipe.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

Metadata tags that have been applied to the recipe.

" + }, + "RecipeVersion":{ + "shape":"RecipeVersion", + "documentation":"

The identifier for the version for the recipe.

" + } + }, + "documentation":"

Represents one or more actions to be performed on an AWS Glue DataBrew dataset.

" + }, + "RecipeAction":{ + "type":"structure", + "required":["Operation"], + "members":{ + "Operation":{ + "shape":"Operation", + "documentation":"

The name of a valid DataBrew transformation to be performed on the data.

" + }, + "Parameters":{ + "shape":"ParameterMap", + "documentation":"

Contextual parameters for the transformation.

" + } + }, + "documentation":"

Represents a transformation and associated parameters that are used to apply a change to an AWS Glue DataBrew dataset. For more information, see Recipe structure and ecipe actions reference .

" + }, + "RecipeDescription":{ + "type":"string", + "max":1024 + }, + "RecipeErrorList":{ + "type":"list", + "member":{"shape":"RecipeVersionErrorDetail"} + }, + "RecipeErrorMessage":{"type":"string"}, + "RecipeList":{ + "type":"list", + "member":{"shape":"Recipe"} + }, + "RecipeName":{ + "type":"string", + "max":255, + "min":1 + }, + "RecipeReference":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"RecipeName", + "documentation":"

The name of the recipe.

" + }, + "RecipeVersion":{ + "shape":"RecipeVersion", + "documentation":"

The identifier for the version for the recipe.

" + } + }, + "documentation":"

Represents all of the attributes of an AWS Glue DataBrew recipe.

" + }, + "RecipeStep":{ + "type":"structure", + "required":["Action"], + "members":{ + "Action":{ + "shape":"RecipeAction", + "documentation":"

The particular action to be performed in the recipe step.

" + }, + "ConditionExpressions":{ + "shape":"ConditionExpressionList", + "documentation":"

One or more conditions that must be met, in order for the recipe step to succeed.

All of the conditions in the array must be met. In other words, all of the conditions must be combined using a logical AND operation.

" + } + }, + "documentation":"

Represents a single step to be performed in an AWS Glue DataBrew recipe.

" + }, + "RecipeStepList":{ + "type":"list", + "member":{"shape":"RecipeStep"} + }, + "RecipeVersion":{ + "type":"string", + "max":16, + "min":1 + }, + "RecipeVersionErrorDetail":{ + "type":"structure", + "members":{ + "ErrorCode":{ + "shape":"ErrorCode", + "documentation":"

The HTTP status code for the error.

" + }, + "ErrorMessage":{ + "shape":"RecipeErrorMessage", + "documentation":"

The text of the error message.

" + }, + "RecipeVersion":{ + "shape":"RecipeVersion", + "documentation":"

The identifier for the recipe version associated with this error.

" + } + }, + "documentation":"

Represents any errors encountered when attempting to delete multiple recipe versions.

" + }, + "RecipeVersionList":{ + "type":"list", + "member":{"shape":"RecipeVersion"}, + "max":50, + "min":1 + }, + "ResourceNotFoundException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

One or more resources can't be found.

", + "error":{"httpStatusCode":404}, + "exception":true + }, + "Result":{"type":"string"}, + "S3Location":{ + "type":"structure", + "required":["Bucket"], + "members":{ + "Bucket":{ + "shape":"Bucket", + "documentation":"

The S3 bucket name.

" + }, + "Key":{ + "shape":"Key", + "documentation":"

The unique name of the object in the bucket.

" + } + }, + "documentation":"

An Amazon S3 location (bucket name an object key) where DataBrew can read input data, or write output from a job.

" + }, + "Sample":{ + "type":"structure", + "required":["Type"], + "members":{ + "Size":{ + "shape":"SampleSize", + "documentation":"

The number of rows in the sample.

" + }, + "Type":{ + "shape":"SampleType", + "documentation":"

The way in which DataBrew obtains rows from a dataset.

" + } + }, + "documentation":"

Represents the sample size and sampling type for AWS Glue DataBrew to use for interactive data analysis.

" + }, + "SampleSize":{ + "type":"integer", + "max":5000, + "min":1 + }, + "SampleType":{ + "type":"string", + "enum":[ + "FIRST_N", + "LAST_N", + "RANDOM" + ] + }, + "Schedule":{ + "type":"structure", + "required":["Name"], + "members":{ + "AccountId":{ + "shape":"AccountId", + "documentation":"

The ID of the AWS account that owns the schedule.

" + }, + "CreatedBy":{ + "shape":"CreatedBy", + "documentation":"

The identifier (the user name) of the user who created the schedule.

" + }, + "CreateDate":{ + "shape":"Date", + "documentation":"

The date and time that the schedule was created.

" + }, + "JobNames":{ + "shape":"JobNameList", + "documentation":"

A list of jobs to be run, according to the schedule.

" + }, + "LastModifiedBy":{ + "shape":"LastModifiedBy", + "documentation":"

The identifier (the user name) of the user who last modified the schedule.

" + }, + "LastModifiedDate":{ + "shape":"Date", + "documentation":"

The date and time when the schedule was last modified.

" + }, + "ResourceArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the schedule.

" + }, + "CronExpression":{ + "shape":"CronExpression", + "documentation":"

The date(s) and time(s), in cron format, when the job will run.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

Metadata tags that have been applied to the schedule.

" + }, + "Name":{ + "shape":"ScheduleName", + "documentation":"

The name of the schedule.

" + } + }, + "documentation":"

Represents one or more dates and times when a job is to run.

" + }, + "ScheduleList":{ + "type":"list", + "member":{"shape":"Schedule"} + }, + "ScheduleName":{ + "type":"string", + "max":255, + "min":1 + }, + "SendProjectSessionActionRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Preview":{ + "shape":"Preview", + "documentation":"

Returns the result of the recipe step, without applying it. The result isn't added to the view frame stack.

" + }, + "Name":{ + "shape":"ProjectName", + "documentation":"

The name of the project to apply the action to.

", + "location":"uri", + "locationName":"name" + }, + "RecipeStep":{"shape":"RecipeStep"}, + "StepIndex":{ + "shape":"StepIndex", + "documentation":"

The index from which to preview a step. This index is used to preview the result of steps that have already been applied, so that the resulting view frame is from earlier in the view frame stack.

" + }, + "ClientSessionId":{ + "shape":"ClientSessionId", + "documentation":"

A unique identifier for an interactive session that's currently open and ready for work. The action will be performed on this session.

" + }, + "ViewFrame":{"shape":"ViewFrame"} + } + }, + "SendProjectSessionActionResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "Result":{ + "shape":"Result", + "documentation":"

A message indicating the result of performing the action.

" + }, + "Name":{ + "shape":"ProjectName", + "documentation":"

The name of the project that was affected by the action.

" + }, + "ActionId":{ + "shape":"ActionId", + "documentation":"

A unique identifier for the action that was performed.

" + } + } + }, + "ServiceQuotaExceededException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

A service quota is exceeded.

", + "error":{"httpStatusCode":402}, + "exception":true + }, + "SessionStatus":{ + "type":"string", + "enum":[ + "ASSIGNED", + "FAILED", + "INITIALIZING", + "PROVISIONING", + "READY", + "RECYCLING", + "ROTATING", + "TERMINATED", + "TERMINATING", + "UPDATING" + ] + }, + "SheetIndex":{ + "type":"integer", + "max":200, + "min":0 + }, + "SheetIndexList":{ + "type":"list", + "member":{"shape":"SheetIndex"}, + "max":1, + "min":1 + }, + "SheetName":{ + "type":"string", + "max":31, + "min":1 + }, + "SheetNameList":{ + "type":"list", + "member":{"shape":"SheetName"}, + "max":1, + "min":1 + }, + "Source":{ + "type":"string", + "enum":[ + "S3", + "DATA-CATALOG" + ] + }, + "StartColumnIndex":{ + "type":"integer", + "min":0 + }, + "StartJobRunRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"JobName", + "documentation":"

The name of the job to be run.

", + "location":"uri", + "locationName":"name" + } + } + }, + "StartJobRunResponse":{ + "type":"structure", + "required":["RunId"], + "members":{ + "RunId":{ + "shape":"JobRunId", + "documentation":"

A system-generated identifier for this particular job run.

" + } + } + }, + "StartProjectSessionRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"ProjectName", + "documentation":"

The name of the project to act upon.

", + "location":"uri", + "locationName":"name" + }, + "AssumeControl":{ + "shape":"AssumeControl", + "documentation":"

A value that, if true, enables you to take control of a session, even if a different client is currently accessing the project.

" + } + } + }, + "StartProjectSessionResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"ProjectName", + "documentation":"

The name of the project to be acted upon.

" + }, + "ClientSessionId":{ + "shape":"ClientSessionId", + "documentation":"

A system-generated identifier for the session.

" + } + } + }, + "StartedBy":{"type":"string"}, + "StepIndex":{ + "type":"integer", + "min":0 + }, + "StopJobRunRequest":{ + "type":"structure", + "required":[ + "Name", + "RunId" + ], + "members":{ + "Name":{ + "shape":"JobName", + "documentation":"

The name of the job to be stopped.

", + "location":"uri", + "locationName":"name" + }, + "RunId":{ + "shape":"JobRunId", + "documentation":"

The ID of the job run to be stopped.

", + "location":"uri", + "locationName":"runId" + } + } + }, + "StopJobRunResponse":{ + "type":"structure", + "required":["RunId"], + "members":{ + "RunId":{ + "shape":"JobRunId", + "documentation":"

The ID of the job run that you stopped.

" + } + } + }, + "TableName":{ + "type":"string", + "max":255, + "min":1 + }, + "TagKey":{ + "type":"string", + "max":128, + "min":1 + }, + "TagKeyList":{ + "type":"list", + "member":{"shape":"TagKey"}, + "max":200, + "min":1 + }, + "TagMap":{ + "type":"map", + "key":{"shape":"TagKey"}, + "value":{"shape":"TagValue"}, + "max":200, + "min":1 + }, + "TagResourceRequest":{ + "type":"structure", + "required":[ + "ResourceArn", + "Tags" + ], + "members":{ + "ResourceArn":{ + "shape":"Arn", + "documentation":"

The DataBrew resource to which tags should be added. The value for this parameter is an Amazon Resource Name (ARN). For DataBrew, you can tag a dataset, a job, a project, or a recipe.

", + "location":"uri", + "locationName":"ResourceArn" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

One or more tags to be assigned to the resource.

" + } + } + }, + "TagResourceResponse":{ + "type":"structure", + "members":{ + } + }, + "TagValue":{ + "type":"string", + "max":256 + }, + "TargetColumn":{ + "type":"string", + "max":1024, + "min":1 + }, + "Timeout":{ + "type":"integer", + "min":0 + }, + "UntagResourceRequest":{ + "type":"structure", + "required":[ + "ResourceArn", + "TagKeys" + ], + "members":{ + "ResourceArn":{ + "shape":"Arn", + "documentation":"

An DataBrew resource from which you want to remove a tag or tags. The value for this parameter is an Amazon Resource Name (ARN).

", + "location":"uri", + "locationName":"ResourceArn" + }, + "TagKeys":{ + "shape":"TagKeyList", + "documentation":"

The tag keys (names) of one or more tags to be removed.

", + "location":"querystring", + "locationName":"tagKeys" + } + } + }, + "UntagResourceResponse":{ + "type":"structure", + "members":{ + } + }, + "UpdateDatasetRequest":{ + "type":"structure", + "required":[ + "Name", + "Input" + ], + "members":{ + "Name":{ + "shape":"DatasetName", + "documentation":"

The name of the dataset to be updated.

", + "location":"uri", + "locationName":"name" + }, + "FormatOptions":{"shape":"FormatOptions"}, + "Input":{"shape":"Input"} + } + }, + "UpdateDatasetResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"DatasetName", + "documentation":"

The name of the dataset that you updated.

" + } + } + }, + "UpdateProfileJobRequest":{ + "type":"structure", + "required":[ + "Name", + "OutputLocation", + "RoleArn" + ], + "members":{ + "EncryptionKeyArn":{ + "shape":"EncryptionKeyArn", + "documentation":"

The Amazon Resource Name (ARN) of an encryption key that is used to protect the job.

" + }, + "EncryptionMode":{ + "shape":"EncryptionMode", + "documentation":"

The encryption mode for the job, which can be one of the following:

  • SSE-KMS - Server-side encryption with AWS KMS-managed keys.

  • SSE-S3 - Server-side encryption with keys managed by Amazon S3.

" + }, + "Name":{ + "shape":"JobName", + "documentation":"

The name of the job to be updated.

", + "location":"uri", + "locationName":"name" + }, + "LogSubscription":{ + "shape":"LogSubscription", + "documentation":"

A value that enables or disables Amazon CloudWatch logging for the current AWS account. If logging is enabled, CloudWatch writes one log stream for each job run.

" + }, + "MaxCapacity":{ + "shape":"MaxCapacity", + "documentation":"

The maximum number of nodes that DataBrew can use when the job processes data.

" + }, + "MaxRetries":{ + "shape":"MaxRetries", + "documentation":"

The maximum number of times to retry the job after a job run fails.

" + }, + "OutputLocation":{"shape":"S3Location"}, + "RoleArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be assumed for this request.

" + }, + "Timeout":{ + "shape":"Timeout", + "documentation":"

The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a status of TIMEOUT.

" + } + } + }, + "UpdateProfileJobResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"JobName", + "documentation":"

The name of the job that was updated.

" + } + } + }, + "UpdateProjectRequest":{ + "type":"structure", + "required":[ + "RoleArn", + "Name" + ], + "members":{ + "Sample":{"shape":"Sample"}, + "RoleArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the IAM role to be assumed for this request.

" + }, + "Name":{ + "shape":"ProjectName", + "documentation":"

The name of the project to be updated.

", + "location":"uri", + "locationName":"name" + } + } + }, + "UpdateProjectResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "LastModifiedDate":{ + "shape":"Date", + "documentation":"

The date and time that the project was last modified.

" + }, + "Name":{ + "shape":"ProjectName", + "documentation":"

The name of the project that you updated.

" + } + } + }, + "UpdateRecipeJobRequest":{ + "type":"structure", + "required":[ + "Name", + "Outputs", + "RoleArn" + ], + "members":{ + "EncryptionKeyArn":{ + "shape":"EncryptionKeyArn", + "documentation":"

The Amazon Resource Name (ARN) of an encryption key that is used to protect the job.

" + }, + "EncryptionMode":{ + "shape":"EncryptionMode", + "documentation":"

The encryption mode for the job, which can be one of the following:

  • SSE-KMS - Server-side encryption with AWS KMS-managed keys.

  • SSE-S3 - Server-side encryption with keys managed by Amazon S3.

" + }, + "Name":{ + "shape":"JobName", + "documentation":"

The name of the job to update.

", + "location":"uri", + "locationName":"name" + }, + "LogSubscription":{ + "shape":"LogSubscription", + "documentation":"

A value that enables or disables Amazon CloudWatch logging for the current AWS account. If logging is enabled, CloudWatch writes one log stream for each job run.

" + }, + "MaxCapacity":{ + "shape":"MaxCapacity", + "documentation":"

The maximum number of nodes that DataBrew can consume when the job processes data.

" + }, + "MaxRetries":{ + "shape":"MaxRetries", + "documentation":"

The maximum number of times to retry the job after a job run fails.

" + }, + "Outputs":{ + "shape":"OutputList", + "documentation":"

One or more artifacts that represent the output from running the job.

" + }, + "RoleArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be assumed for this request.

" + }, + "Timeout":{ + "shape":"Timeout", + "documentation":"

The job's timeout in minutes. A job that attempts to run longer than this timeout period ends with a status of TIMEOUT.

" + } + } + }, + "UpdateRecipeJobResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"JobName", + "documentation":"

The name of the job that you updated.

" + } + } + }, + "UpdateRecipeRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Description":{ + "shape":"RecipeDescription", + "documentation":"

A description of the recipe.

" + }, + "Name":{ + "shape":"RecipeName", + "documentation":"

The name of the recipe to be updated.

", + "location":"uri", + "locationName":"name" + }, + "Steps":{ + "shape":"RecipeStepList", + "documentation":"

One or more steps to be performed by the recipe. Each step consists of an action, and the conditions under which the action should succeed.

" + } + } + }, + "UpdateRecipeResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"RecipeName", + "documentation":"

The name of the recipe that was updated.

" + } + } + }, + "UpdateScheduleRequest":{ + "type":"structure", + "required":[ + "CronExpression", + "Name" + ], + "members":{ + "JobNames":{ + "shape":"JobNameList", + "documentation":"

The name or names of one or more jobs to be run for this schedule.

" + }, + "CronExpression":{ + "shape":"CronExpression", + "documentation":"

The date or dates and time or times, in cron format, when the jobs are to be run.

" + }, + "Name":{ + "shape":"ScheduleName", + "documentation":"

The name of the schedule to update.

", + "location":"uri", + "locationName":"name" + } + } + }, + "UpdateScheduleResponse":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"ScheduleName", + "documentation":"

The name of the schedule that was updated.

" + } + } + }, + "ValidationException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

The input parameters for this request failed validation.

", + "error":{"httpStatusCode":400}, + "exception":true + }, + "ViewFrame":{ + "type":"structure", + "required":["StartColumnIndex"], + "members":{ + "StartColumnIndex":{ + "shape":"StartColumnIndex", + "documentation":"

The starting index for the range of columns to return in the view frame.

" + }, + "ColumnRange":{ + "shape":"ColumnRange", + "documentation":"

The number of columns to include in the view frame, beginning with the StartColumnIndex value and ignoring any columns in the HiddenColumns list.

" + }, + "HiddenColumns":{ + "shape":"HiddenColumnList", + "documentation":"

A list of columns to hide in the view frame.

" + } + }, + "documentation":"

Represents the data being being transformed during an AWS Glue DataBrew project session.

" + } + }, + "documentation":"

AWS Glue DataBrew is a visual, cloud-scale data-preparation service. DataBrew simplifies data preparation tasks, targeting data issues that are hard to spot and time-consuming to fix. DataBrew empowers users of all technical levels to visualize the data and perform one-click data transformations, with no coding required.

" +} diff --git a/services/pom.xml b/services/pom.xml index 3a878f0ef4b4..2d50a566277b 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -253,6 +253,7 @@ timestreamwrite timestreamquery s3outposts + databrew The AWS Java SDK services https://aws.amazon.com/sdkforjava From ce03ea6d11e1992623383dd7653ea2a03dc2ebd4 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 11 Nov 2020 19:10:17 +0000 Subject: [PATCH 177/339] Release 2.15.26. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.26.json | 54 +++++++++++++++++++ .../bugfix-NettyNIOHTTPClient-e6d95c3.json | 6 --- .../feature-AWSAmplify-a324e93.json | 6 --- ...ture-AWSElementalMediaConvert-b3e1632.json | 6 --- .../feature-AWSGlueDataBrew-30f4aca.json | 6 --- .../feature-AWSServiceCatalog-3033314.json | 6 --- ...feature-AmazonForecastService-65472e6.json | 6 --- .../feature-AmazonQuickSight-d1bc378.json | 6 --- .../feature-NettyNIOHTTPClient-25169e0.json | 6 --- CHANGELOG.md | 32 +++++++++++ README.md | 8 +-- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- .../serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 292 files changed, 371 insertions(+), 333 deletions(-) create mode 100644 .changes/2.15.26.json delete mode 100644 .changes/next-release/bugfix-NettyNIOHTTPClient-e6d95c3.json delete mode 100644 .changes/next-release/feature-AWSAmplify-a324e93.json delete mode 100644 .changes/next-release/feature-AWSElementalMediaConvert-b3e1632.json delete mode 100644 .changes/next-release/feature-AWSGlueDataBrew-30f4aca.json delete mode 100644 .changes/next-release/feature-AWSServiceCatalog-3033314.json delete mode 100644 .changes/next-release/feature-AmazonForecastService-65472e6.json delete mode 100644 .changes/next-release/feature-AmazonQuickSight-d1bc378.json delete mode 100644 .changes/next-release/feature-NettyNIOHTTPClient-25169e0.json diff --git a/.changes/2.15.26.json b/.changes/2.15.26.json new file mode 100644 index 000000000000..57558403b69d --- /dev/null +++ b/.changes/2.15.26.json @@ -0,0 +1,54 @@ +{ + "version": "2.15.26", + "date": "2020-11-11", + "entries": [ + { + "type": "feature", + "category": "AWS Service Catalog", + "contributor": "", + "description": "Adding support to remove a Provisioned Product launch role via UpdateProvisionedProductProperties" + }, + { + "type": "feature", + "category": "Netty NIO HTTP Client", + "contributor": "", + "description": "Upgrade Netty libraries to `4.1.53.Final`, and `netty-tcnative-boringssl-static` to `2.0.34.Final`." + }, + { + "type": "feature", + "category": "AWS Glue DataBrew", + "contributor": "", + "description": "This is the initial SDK release for AWS Glue DataBrew. DataBrew is a visual data preparation tool that enables users to clean and normalize data without writing any code." + }, + { + "type": "feature", + "category": "AWS Elemental MediaConvert", + "contributor": "", + "description": "AWS Elemental MediaConvert SDK has added support for Automated ABR encoding and improved the reliability of embedded captions in accelerated outputs." + }, + { + "type": "bugfix", + "category": "Netty NIO HTTP Client", + "contributor": "", + "description": "Fix a bug where the Netty HTTP client can leak memory when a response stream is cancelled prematurely but the upstream publisher continues to invoke onNext for some time before stopping. Fixes [#2051](https://github.com/aws/aws-sdk-java-v2/issues/2051)." + }, + { + "type": "feature", + "category": "AWS Amplify", + "contributor": "", + "description": "Whereas previously custom headers were set via the app's buildspec, custom headers can now be set directly on the Amplify app for both ci/cd and manual deploy apps." + }, + { + "type": "feature", + "category": "Amazon Forecast Service", + "contributor": "", + "description": "Providing support of custom quantiles in CreatePredictor API." + }, + { + "type": "feature", + "category": "Amazon QuickSight", + "contributor": "", + "description": "QuickSight now supports Column-level security and connecting to Oracle data source." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/bugfix-NettyNIOHTTPClient-e6d95c3.json b/.changes/next-release/bugfix-NettyNIOHTTPClient-e6d95c3.json deleted file mode 100644 index 68ef6d2e15fd..000000000000 --- a/.changes/next-release/bugfix-NettyNIOHTTPClient-e6d95c3.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "bugfix", - "category": "Netty NIO HTTP Client", - "contributor": "", - "description": "Fix a bug where the Netty HTTP client can leak memory when a response stream is cancelled prematurely but the upstream publisher continues to invoke onNext for some time before stopping. Fixes [#2051](https://github.com/aws/aws-sdk-java-v2/issues/2051)." -} diff --git a/.changes/next-release/feature-AWSAmplify-a324e93.json b/.changes/next-release/feature-AWSAmplify-a324e93.json deleted file mode 100644 index 4e44ee447952..000000000000 --- a/.changes/next-release/feature-AWSAmplify-a324e93.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Amplify", - "contributor": "", - "description": "Whereas previously custom headers were set via the app's buildspec, custom headers can now be set directly on the Amplify app for both ci/cd and manual deploy apps." -} diff --git a/.changes/next-release/feature-AWSElementalMediaConvert-b3e1632.json b/.changes/next-release/feature-AWSElementalMediaConvert-b3e1632.json deleted file mode 100644 index 870e709691ee..000000000000 --- a/.changes/next-release/feature-AWSElementalMediaConvert-b3e1632.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Elemental MediaConvert", - "contributor": "", - "description": "AWS Elemental MediaConvert SDK has added support for Automated ABR encoding and improved the reliability of embedded captions in accelerated outputs." -} diff --git a/.changes/next-release/feature-AWSGlueDataBrew-30f4aca.json b/.changes/next-release/feature-AWSGlueDataBrew-30f4aca.json deleted file mode 100644 index dad2a8537db0..000000000000 --- a/.changes/next-release/feature-AWSGlueDataBrew-30f4aca.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Glue DataBrew", - "contributor": "", - "description": "This is the initial SDK release for AWS Glue DataBrew. DataBrew is a visual data preparation tool that enables users to clean and normalize data without writing any code." -} diff --git a/.changes/next-release/feature-AWSServiceCatalog-3033314.json b/.changes/next-release/feature-AWSServiceCatalog-3033314.json deleted file mode 100644 index 67df89c7d301..000000000000 --- a/.changes/next-release/feature-AWSServiceCatalog-3033314.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Service Catalog", - "contributor": "", - "description": "Adding support to remove a Provisioned Product launch role via UpdateProvisionedProductProperties" -} diff --git a/.changes/next-release/feature-AmazonForecastService-65472e6.json b/.changes/next-release/feature-AmazonForecastService-65472e6.json deleted file mode 100644 index 139952694762..000000000000 --- a/.changes/next-release/feature-AmazonForecastService-65472e6.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Forecast Service", - "contributor": "", - "description": "Providing support of custom quantiles in CreatePredictor API." -} diff --git a/.changes/next-release/feature-AmazonQuickSight-d1bc378.json b/.changes/next-release/feature-AmazonQuickSight-d1bc378.json deleted file mode 100644 index df1b6ba12298..000000000000 --- a/.changes/next-release/feature-AmazonQuickSight-d1bc378.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon QuickSight", - "contributor": "", - "description": "QuickSight now supports Column-level security and connecting to Oracle data source." -} diff --git a/.changes/next-release/feature-NettyNIOHTTPClient-25169e0.json b/.changes/next-release/feature-NettyNIOHTTPClient-25169e0.json deleted file mode 100644 index 3d7745e0507e..000000000000 --- a/.changes/next-release/feature-NettyNIOHTTPClient-25169e0.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Netty NIO HTTP Client", - "contributor": "", - "description": "Upgrade Netty libraries to `4.1.53.Final`, and `netty-tcnative-boringssl-static` to `2.0.34.Final`." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d39a7862a1d..7fa21535527f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,35 @@ +# __2.15.26__ __2020-11-11__ +## __AWS Amplify__ + - ### Features + - Whereas previously custom headers were set via the app's buildspec, custom headers can now be set directly on the Amplify app for both ci/cd and manual deploy apps. + +## __AWS Elemental MediaConvert__ + - ### Features + - AWS Elemental MediaConvert SDK has added support for Automated ABR encoding and improved the reliability of embedded captions in accelerated outputs. + +## __AWS Glue DataBrew__ + - ### Features + - This is the initial SDK release for AWS Glue DataBrew. DataBrew is a visual data preparation tool that enables users to clean and normalize data without writing any code. + +## __AWS Service Catalog__ + - ### Features + - Adding support to remove a Provisioned Product launch role via UpdateProvisionedProductProperties + +## __Amazon Forecast Service__ + - ### Features + - Providing support of custom quantiles in CreatePredictor API. + +## __Amazon QuickSight__ + - ### Features + - QuickSight now supports Column-level security and connecting to Oracle data source. + +## __Netty NIO HTTP Client__ + - ### Features + - Upgrade Netty libraries to `4.1.53.Final`, and `netty-tcnative-boringssl-static` to `2.0.34.Final`. + + - ### Bugfixes + - Fix a bug where the Netty HTTP client can leak memory when a response stream is cancelled prematurely but the upstream publisher continues to invoke onNext for some time before stopping. Fixes [#2051](https://github.com/aws/aws-sdk-java-v2/issues/2051). + # __2.15.25__ __2020-11-10__ ## __AWS SDK for Java v2__ - ### Bugfixes diff --git a/README.md b/README.md index 40c55b022a76..0b60d67d697e 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.25 + 2.15.26 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.25 + 2.15.26 software.amazon.awssdk s3 - 2.15.25 + 2.15.26 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.25 + 2.15.26 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index cc54a7124535..323d4f3e70c4 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 424195c4d7c4..885ce042fc6b 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index c0f07f7c19bb..c56ead128858 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.15.26-SNAPSHOT + 2.15.26 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 2fad4b69d6f7..c8e98b963506 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 048e6431fed5..fc29889aca1d 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.26-SNAPSHOT + 2.15.26 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 065ac92c7599..cd3e8824452a 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.26-SNAPSHOT + 2.15.26 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 6f1ec7a42c19..61adfb7501c4 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.15.26-SNAPSHOT + 2.15.26 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index fb4ea5cbae3b..67b76a3b7885 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.26-SNAPSHOT + 2.15.26 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 1dbb9a6ea4cf..8e50ff09541f 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.15.26-SNAPSHOT + 2.15.26 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 652b87467f67..46bf81b38239 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.26-SNAPSHOT + 2.15.26 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 9d299ea0ae83..65f205dc8710 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 584e565fa0a0..b66a9d823bbb 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 7e902fd1128d..09665845a125 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.26-SNAPSHOT + 2.15.26 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 9f2b9f57d3d9..30ade47aa077 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.26-SNAPSHOT + 2.15.26 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 055928a4337d..7696d794840c 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index ea79d267482c..dad60e516df8 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 85fe1117511a..f6112c191c97 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.26-SNAPSHOT + 2.15.26 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index a793e8fe652c..93791d76747d 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.15.26-SNAPSHOT + 2.15.26 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 8e6277d7efd8..7acaebeb144a 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index bf6ef1e20a0c..5cda5e5d2f97 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.15.26-SNAPSHOT + 2.15.26 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index ae0e1e1f490c..3f2cee947dab 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.15.26-SNAPSHOT + 2.15.26 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index faa9baae8814..e16817911551 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.15.26-SNAPSHOT + 2.15.26 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 8fde30f39562..07fb653353a1 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 8b3c69a31c4e..3b72ddb16eab 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 3ad2c0f20636..55d71eecd537 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.26-SNAPSHOT + 2.15.26 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index d4ce9a3ae0bf..c5bc029aee19 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.26-SNAPSHOT + 2.15.26 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 346c9e26172f..4bc5ce68cef2 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.15.26-SNAPSHOT + 2.15.26 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 d1ebf65b8491..9ff3cc765792 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.15.26-SNAPSHOT + 2.15.26 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index cd7ea00a07eb..9952ac5b2602 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.15.26-SNAPSHOT + 2.15.26 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 21c90a4d0c55..e26d7aa91f51 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.15.26-SNAPSHOT + 2.15.26 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index f6fa6d53731a..1171f3c6faae 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index c1d4f61646ae..41931aa3ca73 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.15.26-SNAPSHOT + 2.15.26 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 4c6915f4055f..a2ea538a0355 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.15.26-SNAPSHOT + 2.15.26 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 4b809752319b..58afc76d35a6 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.26-SNAPSHOT + 2.15.26 metric-publishers diff --git a/pom.xml b/pom.xml index 17656ef7d42a..d683e5934837 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.26-SNAPSHOT + 2.15.26 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 04ea678e0e29..c684a46f0946 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.26-SNAPSHOT + 2.15.26 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 264e56f47336..cc586ad6b37d 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.15.26-SNAPSHOT + 2.15.26 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index dd153e0bee78..487590ec1298 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.26-SNAPSHOT + 2.15.26 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 286d4e82dd85..f9eb86f6cb5a 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 0d49fa13f8df..e0593ec5c9fa 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 18ca3d022776..350d00219a78 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index a6d30eec0ed4..e869bc39e342 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index b93c830783a4..df30e976f06f 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 02198b01af22..a6466e7c5235 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index ae73adec08d0..8885be9fa3ed 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 86cc18fa700a..9985e340bdc2 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 2df0df385a6e..7089f997766c 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index ef26e8eecea4..804ee95a3302 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index f1a54f206231..fb01add26187 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 831434b9109f..49c211eb3e56 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index a686d66e77d6..fd1c9a9b1b92 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 5b475049bd66..585f0fd4a64f 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index dd9c54ce46af..4c63191322c0 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 91d29d5d1313..8ca1324e4340 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 9b2bef3a018a..55ffbc2e4f33 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index d0721142448f..5c21d18cb3b4 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 095445ad31d2..db6f4e266fe5 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 250d24b61acd..a9f798425f98 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index a0ae153fadd8..98a3732c9eff 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 27871b0f20df..b153dd532107 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 1c67531d299e..7cd58c71990b 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index e9b1eb45a7a3..e3bad7d2b98c 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 439426c28c64..3fd96b4668a7 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 30bd481b8444..b9bd5143a9b6 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 575c5575fd6f..da3462f832dd 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 4d2359f20f72..54c6bfc1a165 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 78f6f81b51ec..30d4501762fe 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index cfab74fd3d0f..73be2a48168c 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index ed8d8e756a5e..a7fb31e2978e 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 6941e58ba9af..e5bda24504f2 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 1a73634cdb58..5e8b3ae0be3b 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 24c5bd950b21..dc5538854866 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 21a281074641..1d9aab653b22 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index c535b7f72d7a..08887ed4eff3 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index cc2d1d4e2ded..10919bd93d7a 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index c06290f26957..2de635cb30ec 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index b85b4ad81007..e29f28fc2e42 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 28ec1b4a141d..83a2ca2af7dd 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index cee564a637c6..4f7376323a2f 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 6cac20a58845..f6366acb3fbb 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 414e554b028f..03f1ad72701f 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 8acc1becda26..9c82726e4718 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index cbc0e97fc5e1..71645c874a34 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index fce37f8945d6..e84c717101f8 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 304c9233ef0d..926e8926745a 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 97e1318e0087..16a3f5d1c4d9 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 82282d360bee..95f27c20c173 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 780e40cd70a8..5b3b5924216a 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index a58f6cfbaa21..cbbaa129d8ab 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 0992c4485154..3400b8e8331e 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index f7ce85c2e3e2..aae450561ea6 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 394ed6d839cb..4997f7d9c165 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 23872a963e3c..33d0d2222567 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index a13650394806..75b38007f847 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index c91321fdf99a..f25df4c2c355 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index d615411e678a..482aa97fe88c 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index e30933f9c0db..5cb7b83f3c94 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 7d6a1539556f..c2ab72a3c98f 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 837a7e5824fb..5d048e3420d6 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 0c3909b90985..6659d075e44d 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 396d161656a6..62de58373d35 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index bd28e0b112db..c765b8bfa843 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 3f28bf9824d8..76f53d046425 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index f08f1646f3d0..8fa009fd0d28 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index d17f5e333977..c4eabaa383c9 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index b2bb0fa34c83..e371621956ea 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 95ae49573100..0a1036bd1c63 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 9f8fde6f2c8c..e182a1eef2b0 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index fcb2de06d78a..cc6ed2d7c8ca 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index c069c0a1af01..97ecd6e55c24 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 577d2a0ae295..f9013c1118cb 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 7c0768e2b69f..f9a94d8ceb3c 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 41d32f10dc11..cf13c3956af3 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index b2c36932bd00..1425f8c2063d 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 17c99dc6cf7d..c5c4735ef13c 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 00b143069f56..fb3e6aaa95f6 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 829b6c72e0c4..4a704c9ef4c2 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 603401a7ae8f..3e1a7d88530e 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index f3ef5ef6e6aa..1fc9fe89ea94 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 87945f10aaab..1f1a32d7af50 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 784693d631f9..4714d10e3351 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 7ca1791944ec..817b3b27eb21 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index e55dba548203..3c2b25f46746 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 1df54c72dcf6..260ce9e6163f 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 4e83f8a0af2b..a414490f1a62 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 5ac792db7452..691e5a32c5e4 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 704abceecdcb..41b672b05840 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index a67cee0405e4..24e850b2d5db 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index f5340420d0d1..0708b03f6441 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 86367ff37c4f..bdcf63e5e63f 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index d62788c9e6db..1bd543388124 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index cd083bf1caee..bbd8b66a4f87 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 6b0079ef3d7d..b4f6d0ea690d 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 48ba1fab35a3..f579387c91e7 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 6e7395fd191d..8a114604e173 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index af689c3e9342..3c7d2ab8de43 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 44be7c3eae68..cdcdb87e4a24 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 9bcde5312f99..5120bbae79e7 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 3000199355d6..ff94fc260f3b 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 2f388e688ae0..8caff7d90c33 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 83d9feb8726f..5d0b72f48642 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 49ca0dc70530..40893df91a82 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 168aa7d70cd2..2490729ca336 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index f49576087e99..07c310950202 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 7fd6788f62d7..8f995f38ef93 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 0138e92e3660..db94f3af4f06 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 8c80eb4b0127..b076df8309e8 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 0477de4f9583..db08cab294f4 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index d2e24569e268..cfa0a9b77188 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 4ffb5eb995a8..a10e0c9907e1 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 37aaf3b2359b..8a445e93a015 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index adfa19522be9..018e26737f6c 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index e2f9276308c4..ae80a4bad353 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index f17ce94fd018..0f88f5949e45 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 6d914a777db0..0e2988b361a8 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index e1cbc6d6eebf..eb604b1e0d1a 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index d773b512f1f9..b4e1eebf105f 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 272d83a8ed95..fc493e7d1fbb 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index f6d30ece8c23..3196770c8a25 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index a5e734ff9cc8..304a7e630e90 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index cadf9f004982..e7a2cb6c545e 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 864cc161f06f..e2833a22a64e 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 98bcb6c01a15..073152654c19 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index dbc22d092bce..4c6eee373d44 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 7a73e61e9654..82e052ec4944 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 59c98fc950c8..1068c1a7d53f 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 22c0d107fc26..43408b773ea4 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 3cd79c19c3a3..e6a79189fde6 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index f60f04b45b05..a58311de2b65 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 2e5b405f69b2..21dcbf81022b 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 2a8836bb3827..c88c0ae2a7b3 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 93e90c3833cf..077454b9a25d 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 32429b804ac3..0a6cad049f55 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index a191c54cee9a..6e0be308573c 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index ae8a76884545..b0575fdebee1 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 5d92bbb41359..e6c8c6e361c3 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 7424ef8fa84e..9cf865b2aade 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 595e35d25087..b77577d97a3b 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 856c29d3750e..3cdaf6abcad8 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 27c6e2b64356..274e7236b705 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 0778e328c479..43fdc05a3640 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index ce1bf7c71eca..5bf249d014f2 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index c1988a9c30be..21a251f6a61b 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index e9ab32ab3bc9..9e1ef3236551 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 7b3e7f80da4a..0012cfe3d775 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 9d86633b76c9..65746ea95693 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 46be625635e1..d087ecd11da1 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 63f18cd680c6..77c034cac4a3 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 60f98ef9c77a..ec43506f81b7 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index c7ddef34c774..90f1896c3d2e 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index aa0f3aef6c77..5bb8ada5da23 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 3add2c86b8d0..eea37f2c67c5 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 40bcd9faed77..345ac9f0b08e 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 9ac665a5a342..62730a6bbf49 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 47702918f2ca..89c306f71763 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index fca76f1bcacb..773b8d020e10 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 4dc1055f6e0d..899a1afccf6b 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index d4b609a48d3f..9e773b14b724 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index e9d57e1d471f..40771c97d7d3 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index f72060c51994..bc7f959fa170 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 92d4c425963d..5e0d0713a549 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index af9931884c06..896dd0dccad8 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 7c03c9dfaa9b..62757e1e0cd7 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 607d580ffe67..b3e62a3ca7cd 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index c87b17326d5c..1554c9e20ee8 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index a6e7d6c0f5dc..d18308c5d96c 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 2d50a566277b..0e0dc60fa64a 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.26-SNAPSHOT + 2.15.26 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 8e07eacf657a..402129945592 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 7d1f0c898a47..34a9c8827e82 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 663b03a6aa69..cf63f485551c 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index a1707cdad51f..7ea7806f0c5a 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index f0b68a7c536d..2b62860e2694 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index ee4d022c8c18..61a5a92e4bec 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 6579af1f9a33..571b598095c5 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index abbf651b5887..fcf9a37fe360 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 747a627fab09..a8a800327b17 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index f50be6d70d23..d258ff327382 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index a87c2a881dc0..9ead90a3ae81 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 2a44b31a2644..894494e820e1 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index f4902a7fed8d..3650ae85ac7a 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 3bf713c46cd2..a14fb05fe3ba 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index dc9132318dda..6b1000749bb9 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index f4dc5f1e92bf..26f40c4342a7 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 452aa8b02de2..ac7a097a875d 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index d605d884f7df..9e20cf46d74e 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 2006beb86670..f8623f520c92 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 1d590b95ddad..0944181196b0 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 638e1910e42f..7b16625a5dc8 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index e7eeeda8173f..a722e63e20d6 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index c9a47c0655e4..bab7177c76f1 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index a9838366a69a..dd89ce44c100 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index defe33a76535..3737e6820107 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 7bb4f8ea6ea2..bae900eacaaf 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 86dcccbf8955..bb7c1392f16e 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 66e8b478c00e..b0a4979828ce 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 48174ca1c4b1..278761fde67b 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 408aacfc3248..8cdb107bd8da 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 0cec769421f4..9735c935167f 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index b913a97e1149..6d0c34a265f8 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index b08239bb1e8e..f5716c67ef65 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 90a37d972f98..de9fede33473 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index b5eb5f6dafdb..29a846cb0b35 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 57c6007bb0e6..1acd9973f3c6 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index d4c9a6fe501d..efe209e7d1f9 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index c90d63e7e0e4..8b28e41b6161 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index bc80f5f004c8..10dbccbd3eab 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 12e763a1dc13..dca76885e207 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index a799cf2ff248..a1eebcd4fd6e 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 73d75f8171ae..b5068ff3c556 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 68dcd1b16c3d..72f6ac6c376a 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 5f675d453904..de1099356593 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index f7eb886176cf..d09b19c2449f 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 0736ae7c3062..aa12bee6daac 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 1e0db91e9b41..3a124dfde53c 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 3e4735bdf16e..015a97c0ac47 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 1f1ea48c86cb..1f9b81550d57 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index b0b7cf8429cf..5dd9bbfe7897 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 663cc3aa1d01..7dabca4f0305 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 463c51ee50d9..879fdf5994b0 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index f3f4ff535bac..82229c5efd6e 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index e491ebb4bcaf..10df6882eef3 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index edb3c43ef0c3..eb30974a3c0d 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 3174de075ba5..83b47748f208 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 8fb22773f5f1..d7d00630d942 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index bec05a7eff52..59c3b044e002 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 028a9367dbea..a9d74f6ad05d 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 5e2972ecf5e3..3fdb4815d82a 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 592ca833928c..fd75574b7df8 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 1a217f2c3b9f..0bda2893aea5 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index c37f65ac830c..102664192336 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26-SNAPSHOT + 2.15.26 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index cc56ea0faea6..6206e3edff12 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.15.26-SNAPSHOT + 2.15.26 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 6f18214bb26a..d2ade1ffc46d 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.15.26-SNAPSHOT + 2.15.26 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 1ed3bbc42b92..205c24fc17c6 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.15.26-SNAPSHOT + 2.15.26 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 6a6d5df7ad98..ec98a089a4a3 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.15.26-SNAPSHOT + 2.15.26 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index bddc8fd2b954..58aea0a4ee04 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.15.26-SNAPSHOT + 2.15.26 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 9d9f912d3abc..1b5150ad67d0 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.26-SNAPSHOT + 2.15.26 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 9a14aa73635d..0670a90b0fb5 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.15.26-SNAPSHOT + 2.15.26 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 0623d9f052d1..7e88e7711be8 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.15.26-SNAPSHOT + 2.15.26 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 5320cdab8848..f3085782abba 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.15.26-SNAPSHOT + 2.15.26 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 182aab5b44fa..bc187de9580d 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.15.26-SNAPSHOT + 2.15.26 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 2a54b82a2b33..b81bf72b71a4 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.26-SNAPSHOT + 2.15.26 4.0.0 From 53da07a0825b82e0f773723a0da3fbf3346ade00 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 11 Nov 2020 19:36:47 +0000 Subject: [PATCH 178/339] Update to next snapshot version: 2.15.27-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 281 files changed, 281 insertions(+), 281 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 323d4f3e70c4..f25e598ddc77 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 885ce042fc6b..b88e279a11ca 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index c56ead128858..382f7d3cfc99 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.15.26 + 2.15.27-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index c8e98b963506..6471adbae141 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index fc29889aca1d..a523a5e011b3 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.26 + 2.15.27-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index cd3e8824452a..2aac25590198 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.26 + 2.15.27-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 61adfb7501c4..80075e01e1a0 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.15.26 + 2.15.27-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 67b76a3b7885..943eb6cfdfae 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.26 + 2.15.27-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 8e50ff09541f..25a7924ae88c 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.15.26 + 2.15.27-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 46bf81b38239..333adf43b0b6 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.26 + 2.15.27-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 65f205dc8710..051e5f493944 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index b66a9d823bbb..13cc699ea8db 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 09665845a125..598d05594147 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.26 + 2.15.27-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 30ade47aa077..4e5daf4f1788 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.26 + 2.15.27-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 7696d794840c..b601b99b712e 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index dad60e516df8..d46961088382 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index f6112c191c97..c8f0d8dc5e94 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.26 + 2.15.27-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 93791d76747d..522ad1427da1 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.15.26 + 2.15.27-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 7acaebeb144a..d94f79bcd593 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 5cda5e5d2f97..716af72d5117 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.15.26 + 2.15.27-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 3f2cee947dab..189d29c19e4f 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.15.26 + 2.15.27-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index e16817911551..aeaa606e02c5 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.15.26 + 2.15.27-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 07fb653353a1..a3f7b3ede551 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 3b72ddb16eab..f2fe636a04a5 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 55d71eecd537..bb398aeeb2f4 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.26 + 2.15.27-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index c5bc029aee19..05645f720f07 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.26 + 2.15.27-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 4bc5ce68cef2..aa12facf95c3 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.15.26 + 2.15.27-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index 9ff3cc765792..975374f24f80 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.15.26 + 2.15.27-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 9952ac5b2602..95fa7d0db65e 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.15.26 + 2.15.27-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index e26d7aa91f51..406901c16892 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.15.26 + 2.15.27-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 1171f3c6faae..20a5ce9365a9 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 41931aa3ca73..bc2a9fa357cf 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.15.26 + 2.15.27-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index a2ea538a0355..72a697e4a6ce 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.15.26 + 2.15.27-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 58afc76d35a6..4f88acdc1eb9 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.26 + 2.15.27-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index d683e5934837..f2a8b543fc84 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.26 + 2.15.27-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index c684a46f0946..66bd4dcef28a 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.26 + 2.15.27-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index cc586ad6b37d..a28e83348584 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.15.26 + 2.15.27-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 487590ec1298..8a9fc272f40c 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.26 + 2.15.27-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index f9eb86f6cb5a..57813608ad90 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index e0593ec5c9fa..a82ebea8e6a4 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 350d00219a78..6addb723a4df 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index e869bc39e342..9056d899718e 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index df30e976f06f..364167132c64 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index a6466e7c5235..7037d886d670 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 8885be9fa3ed..daeb6501fa02 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 9985e340bdc2..5c61e456857d 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 7089f997766c..cb931bb3cf1e 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 804ee95a3302..b39d36e411c4 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index fb01add26187..b74f99a8959c 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 49c211eb3e56..21470b1b3a37 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index fd1c9a9b1b92..0c7af1f98440 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 585f0fd4a64f..a8fe05da8854 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 4c63191322c0..d5e0fb9c8a0a 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 8ca1324e4340..7a4db8b78121 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 55ffbc2e4f33..f77251214e6d 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 5c21d18cb3b4..748852dda3f0 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index db6f4e266fe5..cf51c4db0dc8 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index a9f798425f98..078aa6a95312 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 98a3732c9eff..57555834e0ff 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index b153dd532107..8ab6e38b3f22 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 7cd58c71990b..72a701e70736 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index e3bad7d2b98c..a43409c67220 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 3fd96b4668a7..1b667475e805 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index b9bd5143a9b6..2e91185f4e27 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index da3462f832dd..0a993c734bf0 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 54c6bfc1a165..c7ef18bbe4f3 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 30d4501762fe..49b5690d3fc7 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 73be2a48168c..0ffde63b1460 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index a7fb31e2978e..c64abface691 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index e5bda24504f2..3cc07151e75c 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 5e8b3ae0be3b..10950aeb173a 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index dc5538854866..8a72f8bcdefe 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 1d9aab653b22..bbb611739883 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 08887ed4eff3..c94f8c109837 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 10919bd93d7a..e4893f02ca51 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 2de635cb30ec..1569080b9cad 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index e29f28fc2e42..f1fa21a59ca5 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 83a2ca2af7dd..03b04067a741 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 4f7376323a2f..0d1e7186850e 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index f6366acb3fbb..615f40e66fd6 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 03f1ad72701f..2023033af5e8 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 9c82726e4718..a5832962bc71 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 71645c874a34..85e4d78dd640 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index e84c717101f8..92cfd181fd30 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 926e8926745a..44cdb915bff6 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 16a3f5d1c4d9..092d0936ea79 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 95f27c20c173..bc9bcf4dac3b 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 5b3b5924216a..819f263c8941 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index cbbaa129d8ab..1201bcdfe973 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 3400b8e8331e..c70f6f2c2757 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index aae450561ea6..37554b5ef75f 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 4997f7d9c165..1c2fb45be692 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 33d0d2222567..c994d8592570 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 75b38007f847..dbba09179abc 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index f25df4c2c355..e25adf9bfbad 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 482aa97fe88c..94094f4b63ca 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index 5cb7b83f3c94..8f1fcee887ed 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index c2ab72a3c98f..7a7abb9346e2 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 5d048e3420d6..abbfd8ef51d9 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 6659d075e44d..5f54b14fbb27 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 62de58373d35..d8ac65e76a99 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index c765b8bfa843..cfa7619ae4dd 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 76f53d046425..c5ce600dc850 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 8fa009fd0d28..6a4eddf15711 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index c4eabaa383c9..04042b62a5af 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index e371621956ea..069c1f2caf2f 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 0a1036bd1c63..e81f40b490ad 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index e182a1eef2b0..f0409b702b43 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index cc6ed2d7c8ca..8e26b0f50050 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 97ecd6e55c24..08dd064e973e 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index f9013c1118cb..93dac2675e84 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index f9a94d8ceb3c..b1e0bcfef506 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index cf13c3956af3..0621ab92d58b 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 1425f8c2063d..fa9099f9a3e4 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index c5c4735ef13c..3114a4e419eb 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index fb3e6aaa95f6..8fde6af134ff 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 4a704c9ef4c2..c4e211f113ba 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 3e1a7d88530e..e57c07ff1bb7 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 1fc9fe89ea94..cef19bcf4135 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 1f1a32d7af50..67ccad01a88b 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 4714d10e3351..1cd6b21cfda3 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 817b3b27eb21..32ae028d1d30 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 3c2b25f46746..be6209fc53aa 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 260ce9e6163f..e47eb2a67c98 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index a414490f1a62..be1459389084 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 691e5a32c5e4..5e7a6f4e8bb8 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 41b672b05840..c68191ff7ec1 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 24e850b2d5db..99b5f0ca2723 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 0708b03f6441..9d1739f87095 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index bdcf63e5e63f..12a54e777197 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 1bd543388124..1b5402bee1e6 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index bbd8b66a4f87..2a1e6428f1e0 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index b4f6d0ea690d..a34c3a478b99 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index f579387c91e7..5a90b6ba79cb 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 8a114604e173..2b4de4088acd 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 3c7d2ab8de43..3b7bc51fae3a 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index cdcdb87e4a24..f7793584bf6a 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 5120bbae79e7..30bdc5a8181d 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index ff94fc260f3b..b0372ac6c11f 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 8caff7d90c33..d5f962ec8a4b 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 5d0b72f48642..82b6a1ac290f 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 40893df91a82..bc0e9c1b0e11 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 2490729ca336..71fae282c8e3 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 07c310950202..064fb937fbe6 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 8f995f38ef93..eb492e873bdd 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index db94f3af4f06..8fa22e135050 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index b076df8309e8..6ba9215e641c 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index db08cab294f4..33e1246aa040 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index cfa0a9b77188..a0174b707e13 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index a10e0c9907e1..65b2a95525d7 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 8a445e93a015..01d512ea69b7 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 018e26737f6c..27bb23a11a43 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index ae80a4bad353..773235fe2e02 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 0f88f5949e45..d7b70a1daba7 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 0e2988b361a8..d3deed3bbacc 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index eb604b1e0d1a..1db6c2bf9521 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index b4e1eebf105f..9ef88ca1ecd4 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index fc493e7d1fbb..65775c1b098e 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 3196770c8a25..0a09e7743413 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 304a7e630e90..988a3afbc3a6 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index e7a2cb6c545e..7d0449cbeca0 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index e2833a22a64e..e600b88c41ca 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 073152654c19..9cd86c81b6fc 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 4c6eee373d44..a3cf14bd7d0c 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 82e052ec4944..392b76153ca6 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 1068c1a7d53f..9314f9964a15 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 43408b773ea4..c9b1f9c47d2f 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index e6a79189fde6..038cf277f647 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index a58311de2b65..a28e7b911d60 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 21dcbf81022b..fbfd936151ab 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index c88c0ae2a7b3..e5a59ba150cd 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 077454b9a25d..49aae6b33f7e 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 0a6cad049f55..46b8b89e5ec4 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 6e0be308573c..e938675f225b 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index b0575fdebee1..b564e7a08527 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index e6c8c6e361c3..b4b73c324e45 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 9cf865b2aade..b058d7be7d86 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index b77577d97a3b..8b77a10b0b27 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 3cdaf6abcad8..e6bc0dfc31d1 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 274e7236b705..6314fdc611b9 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 43fdc05a3640..3866c1c5df9c 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 5bf249d014f2..32a114ab1344 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 21a251f6a61b..202bdaafe4b7 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 9e1ef3236551..2e4bbb7083ce 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 0012cfe3d775..88a79f4c7c65 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 65746ea95693..606731ea8a36 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index d087ecd11da1..7593da6d0581 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 77c034cac4a3..fd1f60538d1d 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index ec43506f81b7..9a8f8caf5254 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 90f1896c3d2e..22bf3676fba9 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 5bb8ada5da23..ed4b20b8f8bf 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index eea37f2c67c5..908ff737128f 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 345ac9f0b08e..3263eafc6bf4 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 62730a6bbf49..4d2c322639d0 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 89c306f71763..393afc80fb80 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 773b8d020e10..c47bb7a57065 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 899a1afccf6b..6515539e8a10 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 9e773b14b724..650a4ffc296d 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 40771c97d7d3..4d717e4accbe 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index bc7f959fa170..835fd11fe209 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 5e0d0713a549..d574a754e5b7 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 896dd0dccad8..aab39ae15091 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 62757e1e0cd7..2d6b612efb19 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index b3e62a3ca7cd..7cde8c06088c 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 1554c9e20ee8..7399777ffb11 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index d18308c5d96c..77f8f13b7702 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 0e0dc60fa64a..cf368bbd57c1 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.26 + 2.15.27-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 402129945592..a63b53d2e320 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 34a9c8827e82..e717ee916994 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index cf63f485551c..405472d4d16b 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 7ea7806f0c5a..bb5447ce8428 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 2b62860e2694..f840970b889d 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 61a5a92e4bec..fb521193392f 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 571b598095c5..5f967ee9e529 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index fcf9a37fe360..2a23b573f0fa 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index a8a800327b17..ca5a32e8fa1f 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index d258ff327382..6c8bf8c55269 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 9ead90a3ae81..b64af53ed663 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 894494e820e1..ab1974adcb8c 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 3650ae85ac7a..052a531e6fbe 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index a14fb05fe3ba..80ba7452291a 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 6b1000749bb9..f63fe833ba04 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 26f40c4342a7..88cab059694c 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index ac7a097a875d..f006d38dd400 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 9e20cf46d74e..d9e8ee170953 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index f8623f520c92..2fcd29d7dd4c 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 0944181196b0..63b0a6a21ce6 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 7b16625a5dc8..c523b78dd7b7 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index a722e63e20d6..a00d594eb4d1 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index bab7177c76f1..2b3f27214be3 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index dd89ce44c100..36f600ea1aca 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 3737e6820107..684fe214c834 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index bae900eacaaf..eeb6fa99d82f 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index bb7c1392f16e..e24b5a42e491 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index b0a4979828ce..2be6fb669de0 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 278761fde67b..58c6173daf33 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 8cdb107bd8da..4300d4b5d646 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 9735c935167f..7c1918b5e3ea 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 6d0c34a265f8..967f8cf52360 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index f5716c67ef65..14a24b154619 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index de9fede33473..8015e9717661 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 29a846cb0b35..30aa00a357be 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 1acd9973f3c6..241934324840 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index efe209e7d1f9..c3c5db8e0b26 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 8b28e41b6161..7d0eba7f8bf0 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 10dbccbd3eab..5e8a6494b2bc 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index dca76885e207..8b3b3a0f8f44 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index a1eebcd4fd6e..2d958ef0bf95 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index b5068ff3c556..3488e5675b64 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 72f6ac6c376a..ef843cd7c984 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index de1099356593..07e8e4f65903 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index d09b19c2449f..4cd199b6bb5c 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index aa12bee6daac..f3021ffd7743 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 3a124dfde53c..bdf4cb0c6b35 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 015a97c0ac47..e4ca55ccb801 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 1f9b81550d57..b7117ef0b45d 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 5dd9bbfe7897..d5e6b2d81698 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 7dabca4f0305..b67da6c1b304 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 879fdf5994b0..3863d0b4ce56 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 82229c5efd6e..3a38a34329dd 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 10df6882eef3..ec06d789d85f 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index eb30974a3c0d..cf7a36f097ea 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 83b47748f208..757d32a6073b 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index d7d00630d942..5090a3e82c1c 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 59c3b044e002..0ef3fbbd02e9 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index a9d74f6ad05d..28241e6f0904 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 3fdb4815d82a..d381147a99ae 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index fd75574b7df8..d7e5983378e4 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 0bda2893aea5..a1ef158cf75e 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 102664192336..85219d555ca4 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.26 + 2.15.27-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 6206e3edff12..3e23c8fbf649 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.15.26 + 2.15.27-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index d2ade1ffc46d..eae99967db9d 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.15.26 + 2.15.27-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 205c24fc17c6..5ec1aaca491e 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.15.26 + 2.15.27-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index ec98a089a4a3..8f0fc8d99cc6 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.15.26 + 2.15.27-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 58aea0a4ee04..a773ae589a61 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.15.26 + 2.15.27-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 1b5150ad67d0..6b44eb966dfb 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.26 + 2.15.27-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 0670a90b0fb5..2e610a3ed02a 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.15.26 + 2.15.27-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 7e88e7711be8..3930dba07e4b 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.15.26 + 2.15.27-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index f3085782abba..07d7b97b83c8 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.15.26 + 2.15.27-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index bc187de9580d..9cf7f09a7e30 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.15.26 + 2.15.27-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index b81bf72b71a4..b35125c7b089 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.26 + 2.15.27-SNAPSHOT 4.0.0 From 3574234d9263c2bb5bf44b0096e017ed59282bf4 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 12 Nov 2020 19:16:19 +0000 Subject: [PATCH 179/339] Amazon Lightsail Update: This release adds support for Amazon Lightsail container services. You can now create a Lightsail container service, and deploy Docker images to it. --- .../feature-AmazonLightsail-d6e9288.json | 6 + .../codegen-resources/service-2.json | 1143 ++++++++++++++++- 2 files changed, 1088 insertions(+), 61 deletions(-) create mode 100644 .changes/next-release/feature-AmazonLightsail-d6e9288.json diff --git a/.changes/next-release/feature-AmazonLightsail-d6e9288.json b/.changes/next-release/feature-AmazonLightsail-d6e9288.json new file mode 100644 index 000000000000..14ce6b2e2774 --- /dev/null +++ b/.changes/next-release/feature-AmazonLightsail-d6e9288.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Lightsail", + "contributor": "", + "description": "This release adds support for Amazon Lightsail container services. You can now create a Lightsail container service, and deploy Docker images to it." +} diff --git a/services/lightsail/src/main/resources/codegen-resources/service-2.json b/services/lightsail/src/main/resources/codegen-resources/service-2.json index a3f5cf8033ac..05606d936550 100644 --- a/services/lightsail/src/main/resources/codegen-resources/service-2.json +++ b/services/lightsail/src/main/resources/codegen-resources/service-2.json @@ -217,6 +217,57 @@ ], "documentation":"

Creates an email or SMS text message contact method.

A contact method is used to send you notifications about your Amazon Lightsail resources. You can add one email address and one mobile phone number contact method in each AWS Region. However, SMS text messaging is not supported in some AWS Regions, and SMS text messages cannot be sent to some countries/regions. For more information, see Notifications in Amazon Lightsail.

" }, + "CreateContainerService":{ + "name":"CreateContainerService", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateContainerServiceRequest"}, + "output":{"shape":"CreateContainerServiceResult"}, + "errors":[ + {"shape":"ServiceException"}, + {"shape":"InvalidInputException"}, + {"shape":"NotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"UnauthenticatedException"} + ], + "documentation":"

Creates an Amazon Lightsail container service.

A Lightsail container service is a compute resource to which you can deploy containers. For more information, see Container services in Amazon Lightsail in the Lightsail Dev Guide.

" + }, + "CreateContainerServiceDeployment":{ + "name":"CreateContainerServiceDeployment", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateContainerServiceDeploymentRequest"}, + "output":{"shape":"CreateContainerServiceDeploymentResult"}, + "errors":[ + {"shape":"ServiceException"}, + {"shape":"InvalidInputException"}, + {"shape":"NotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"UnauthenticatedException"} + ], + "documentation":"

Creates a deployment for your Amazon Lightsail container service.

A deployment specifies the containers that will be launched on the container service and their settings, such as the ports to open, the environment variables to apply, and the launch command to run. It also specifies the container that will serve as the public endpoint of the deployment and its settings, such as the HTTP or HTTPS port to use, and the health check configuration.

You can deploy containers to your container service using container images from a public registry like Docker Hub, or from your local machine. For more information, see Creating container images for your Amazon Lightsail container services in the Lightsail Dev Guide.

" + }, + "CreateContainerServiceRegistryLogin":{ + "name":"CreateContainerServiceRegistryLogin", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateContainerServiceRegistryLoginRequest"}, + "output":{"shape":"CreateContainerServiceRegistryLoginResult"}, + "errors":[ + {"shape":"ServiceException"}, + {"shape":"InvalidInputException"}, + {"shape":"NotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"UnauthenticatedException"} + ], + "documentation":"

Creates a temporary set of log in credentials that you can use to log in to the Docker process on your local machine. After you're logged in, you can use the native Docker commands to push your local container images to the container image registry of your Amazon Lightsail account so that you can use them with your Lightsail container service. The log in credentials expire 12 hours after they are created, at which point you will need to create a new set of log in credentials.

You can only push container images to the container service registry of your Lightsail account. You cannot pull container images perform any other container image management actions on the container service registry of your Lightsail account.

After you push your container images to the container image registry of your Lightsail account, use the RegisterContainerImage action to register the pushed images to a specific Lightsail container service.

This action is not required if you install and use the Lightsail Control (lightsailctl) plugin to push container images to your Lightsail container service. For more information, see Pushing and managing container images on your Amazon Lightsail container services in the Lightsail Dev Guide.

" + }, "CreateDisk":{ "name":"CreateDisk", "http":{ @@ -290,7 +341,7 @@ {"shape":"AccessDeniedException"}, {"shape":"UnauthenticatedException"} ], - "documentation":"

Creates an Amazon Lightsail content delivery network (CDN) distribution.

A distribution is a globally distributed network of caching servers that improve the performance of your website or web application hosted on a Lightsail instance. For more information, see Content delivery networks in Amazon Lightsail.

" + "documentation":"

Creates an Amazon Lightsail content delivery network (CDN) distribution.

A distribution is a globally distributed network of caching servers that improve the performance of your website or web application hosted on a Lightsail instance. For more information, see Content delivery networks in Amazon Lightsail.

" }, "CreateDomain":{ "name":"CreateDomain", @@ -328,7 +379,7 @@ {"shape":"AccountSetupInProgressException"}, {"shape":"UnauthenticatedException"} ], - "documentation":"

Creates one of the following entry records associated with the domain: Address (A), canonical name (CNAME), mail exchanger (MX), name server (NS), start of authority (SOA), service locator (SRV), or text (TXT).

The create domain entry operation supports tag-based access control via resource tags applied to the resource identified by domain name. For more information, see the Lightsail Dev Guide.

" + "documentation":"

Creates one of the following domain name system (DNS) records in a domain DNS zone: Address (A), canonical name (CNAME), mail exchanger (MX), name server (NS), start of authority (SOA), service locator (SRV), or text (TXT).

The create domain entry operation supports tag-based access control via resource tags applied to the resource identified by domain name. For more information, see the Lightsail Dev Guide.

" }, "CreateInstanceSnapshot":{ "name":"CreateInstanceSnapshot", @@ -572,6 +623,40 @@ ], "documentation":"

Deletes a contact method.

A contact method is used to send you notifications about your Amazon Lightsail resources. You can add one email address and one mobile phone number contact method in each AWS Region. However, SMS text messaging is not supported in some AWS Regions, and SMS text messages cannot be sent to some countries/regions. For more information, see Notifications in Amazon Lightsail.

" }, + "DeleteContainerImage":{ + "name":"DeleteContainerImage", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteContainerImageRequest"}, + "output":{"shape":"DeleteContainerImageResult"}, + "errors":[ + {"shape":"ServiceException"}, + {"shape":"InvalidInputException"}, + {"shape":"NotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"UnauthenticatedException"} + ], + "documentation":"

Deletes a container image that is registered to your Amazon Lightsail container service.

" + }, + "DeleteContainerService":{ + "name":"DeleteContainerService", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteContainerServiceRequest"}, + "output":{"shape":"DeleteContainerServiceResult"}, + "errors":[ + {"shape":"ServiceException"}, + {"shape":"InvalidInputException"}, + {"shape":"NotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"UnauthenticatedException"} + ], + "documentation":"

Deletes your Amazon Lightsail container service.

" + }, "DeleteDisk":{ "name":"DeleteDisk", "http":{ @@ -1114,6 +1199,123 @@ ], "documentation":"

Returns information about the configured contact methods. Specify a protocol in your request to return information about a specific contact method.

A contact method is used to send you notifications about your Amazon Lightsail resources. You can add one email address and one mobile phone number contact method in each AWS Region. However, SMS text messaging is not supported in some AWS Regions, and SMS text messages cannot be sent to some countries/regions. For more information, see Notifications in Amazon Lightsail.

" }, + "GetContainerAPIMetadata":{ + "name":"GetContainerAPIMetadata", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetContainerAPIMetadataRequest"}, + "output":{"shape":"GetContainerAPIMetadataResult"}, + "errors":[ + {"shape":"ServiceException"}, + {"shape":"AccessDeniedException"}, + {"shape":"UnauthenticatedException"} + ], + "documentation":"

Returns information about Amazon Lightsail containers, such as the current version of the Lightsail Control (lightsailctl) plugin.

" + }, + "GetContainerImages":{ + "name":"GetContainerImages", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetContainerImagesRequest"}, + "output":{"shape":"GetContainerImagesResult"}, + "errors":[ + {"shape":"ServiceException"}, + {"shape":"InvalidInputException"}, + {"shape":"NotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"UnauthenticatedException"} + ], + "documentation":"

Returns the container images that are registered to your Amazon Lightsail container service.

If you created a deployment on your Lightsail container service that uses container images from a public registry like Docker Hub, those images are not returned as part of this action. Those images are not registered to your Lightsail container service.

" + }, + "GetContainerLog":{ + "name":"GetContainerLog", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetContainerLogRequest"}, + "output":{"shape":"GetContainerLogResult"}, + "errors":[ + {"shape":"ServiceException"}, + {"shape":"InvalidInputException"}, + {"shape":"NotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"UnauthenticatedException"} + ], + "documentation":"

Returns the log events of a container of your Amazon Lightsail container service.

If your container service has more than one node (i.e., a scale greater than 1), then the log events that are returned for the specified container are merged from all nodes on your container service.

Container logs are retained for a certain amount of time. For more information, see Amazon Lightsail endpoints and quotas in the AWS General Reference.

" + }, + "GetContainerServiceDeployments":{ + "name":"GetContainerServiceDeployments", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetContainerServiceDeploymentsRequest"}, + "output":{"shape":"GetContainerServiceDeploymentsResult"}, + "errors":[ + {"shape":"ServiceException"}, + {"shape":"InvalidInputException"}, + {"shape":"NotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"UnauthenticatedException"} + ], + "documentation":"

Returns the deployments for your Amazon Lightsail container service

A deployment specifies the settings, such as the ports and launch command, of containers that are deployed to your container service.

The deployments are ordered by version in ascending order. The newest version is listed at the top of the response.

A set number of deployments are kept before the oldest one is replaced with the newest one. For more information, see Amazon Lightsail endpoints and quotas in the AWS General Reference.

" + }, + "GetContainerServiceMetricData":{ + "name":"GetContainerServiceMetricData", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetContainerServiceMetricDataRequest"}, + "output":{"shape":"GetContainerServiceMetricDataResult"}, + "errors":[ + {"shape":"ServiceException"}, + {"shape":"InvalidInputException"}, + {"shape":"NotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"UnauthenticatedException"} + ], + "documentation":"

Returns the data points of a specific metric of your Amazon Lightsail container service.

Metrics report the utilization of your resources. Monitor and collect metric data regularly to maintain the reliability, availability, and performance of your resources.

" + }, + "GetContainerServicePowers":{ + "name":"GetContainerServicePowers", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetContainerServicePowersRequest"}, + "output":{"shape":"GetContainerServicePowersResult"}, + "errors":[ + {"shape":"ServiceException"}, + {"shape":"InvalidInputException"}, + {"shape":"NotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"UnauthenticatedException"} + ], + "documentation":"

Returns the list of powers that can be specified for your Amazon Lightsail container services.

The power specifies the amount of memory, the number of vCPUs, and the base price of the container service.

" + }, + "GetContainerServices":{ + "name":"GetContainerServices", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetContainerServicesRequest"}, + "output":{"shape":"ContainerServicesListResult"}, + "errors":[ + {"shape":"ServiceException"}, + {"shape":"InvalidInputException"}, + {"shape":"NotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"UnauthenticatedException"} + ], + "documentation":"

Returns information about one or more of your Amazon Lightsail container services.

" + }, "GetDisk":{ "name":"GetDisk", "http":{ @@ -2078,6 +2280,23 @@ ], "documentation":"

Restarts a specific database in Amazon Lightsail.

The reboot relational database operation supports tag-based access control via resource tags applied to the resource identified by relationalDatabaseName. For more information, see the Lightsail Dev Guide.

" }, + "RegisterContainerImage":{ + "name":"RegisterContainerImage", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RegisterContainerImageRequest"}, + "output":{"shape":"RegisterContainerImageResult"}, + "errors":[ + {"shape":"ServiceException"}, + {"shape":"InvalidInputException"}, + {"shape":"NotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"UnauthenticatedException"} + ], + "documentation":"

Registers a container image to your Amazon Lightsail container service.

This action is not required if you install and use the Lightsail Control (lightsailctl) plugin to push container images to your Lightsail container service. For more information, see Pushing and managing container images on your Amazon Lightsail container services in the Lightsail Dev Guide.

" + }, "ReleaseStaticIp":{ "name":"ReleaseStaticIp", "http":{ @@ -2284,6 +2503,23 @@ ], "documentation":"

Deletes the specified set of tag keys and their values from the specified Amazon Lightsail resource.

The untag resource operation supports tag-based access control via request tags and resource tags applied to the resource identified by resource name. For more information, see the Lightsail Dev Guide.

" }, + "UpdateContainerService":{ + "name":"UpdateContainerService", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateContainerServiceRequest"}, + "output":{"shape":"UpdateContainerServiceResult"}, + "errors":[ + {"shape":"ServiceException"}, + {"shape":"InvalidInputException"}, + {"shape":"NotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"UnauthenticatedException"} + ], + "documentation":"

Updates the configuration of your Amazon Lightsail container service, such as its power, scale, and public domain names.

" + }, "UpdateDistribution":{ "name":"UpdateDistribution", "http":{ @@ -3274,48 +3510,438 @@ "shape":"NonEmptyString", "documentation":"

The Amazon Resource Name (ARN) of the contact method.

" }, - "createdAt":{ + "createdAt":{ + "shape":"IsoDate", + "documentation":"

The timestamp when the contact method was created.

" + }, + "location":{"shape":"ResourceLocation"}, + "resourceType":{ + "shape":"ResourceType", + "documentation":"

The Lightsail resource type (e.g., ContactMethod).

" + }, + "supportCode":{ + "shape":"string", + "documentation":"

The support code. Include this code in your email to support when you have questions about your Lightsail contact method. This code enables our support team to look up your Lightsail information more easily.

" + } + }, + "documentation":"

Describes a contact method.

A contact method is a way to send you notifications. For more information, see Notifications in Amazon Lightsail.

" + }, + "ContactMethodStatus":{ + "type":"string", + "enum":[ + "PendingVerification", + "Valid", + "Invalid" + ] + }, + "ContactMethodVerificationProtocol":{ + "type":"string", + "enum":["Email"] + }, + "ContactMethodsList":{ + "type":"list", + "member":{"shape":"ContactMethod"} + }, + "ContactProtocol":{ + "type":"string", + "enum":[ + "Email", + "SMS" + ] + }, + "ContactProtocolsList":{ + "type":"list", + "member":{"shape":"ContactProtocol"} + }, + "Container":{ + "type":"structure", + "members":{ + "image":{ + "shape":"string", + "documentation":"

The name of the image used for the container.

Container images sourced from your Lightsail container service, that are registered and stored on your service, start with a colon (:). For example, :container-service-1.mystaticwebsite.1. Container images sourced from a public registry like Docker Hub don't start with a colon. For example, nginx:latest or nginx.

" + }, + "command":{ + "shape":"StringList", + "documentation":"

The launch command for the container.

" + }, + "environment":{ + "shape":"Environment", + "documentation":"

The environment variables of the container.

" + }, + "ports":{ + "shape":"PortMap", + "documentation":"

The open firewall ports of the container.

" + } + }, + "documentation":"

Describes the settings of a container that will be launched, or that is launched, to an Amazon Lightsail container service.

" + }, + "ContainerImage":{ + "type":"structure", + "members":{ + "image":{ + "shape":"string", + "documentation":"

The name of the container image.

" + }, + "digest":{ + "shape":"string", + "documentation":"

The digest of the container image.

" + }, + "createdAt":{ + "shape":"IsoDate", + "documentation":"

The timestamp when the container image was created.

" + } + }, + "documentation":"

Describes a container image that is registered to an Amazon Lightsail container service.

" + }, + "ContainerImageList":{ + "type":"list", + "member":{"shape":"ContainerImage"} + }, + "ContainerLabel":{ + "type":"string", + "max":53, + "min":1, + "pattern":"^[a-z0-9]{1,2}|[a-z0-9][a-z0-9-]+[a-z0-9]$" + }, + "ContainerMap":{ + "type":"map", + "key":{"shape":"ContainerName"}, + "value":{"shape":"Container"} + }, + "ContainerName":{ + "type":"string", + "max":53, + "min":1, + "pattern":"^[a-z0-9]{1,2}|[a-z0-9][a-z0-9-]+[a-z0-9]$" + }, + "ContainerService":{ + "type":"structure", + "members":{ + "containerServiceName":{ + "shape":"ContainerServiceName", + "documentation":"

The name of the container service.

" + }, + "arn":{ + "shape":"NonEmptyString", + "documentation":"

The Amazon Resource Name (ARN) of the container service.

" + }, + "createdAt":{ + "shape":"IsoDate", + "documentation":"

The timestamp when the container service was created.

" + }, + "location":{ + "shape":"ResourceLocation", + "documentation":"

An object that describes the location of the container service, such as the AWS Region and Availability Zone.

" + }, + "resourceType":{ + "shape":"ResourceType", + "documentation":"

The Lightsail resource type of the container service (i.e., ContainerService).

" + }, + "tags":{ + "shape":"TagList", + "documentation":"

The tag keys and optional values for the resource. For more information about tags in Lightsail, see the Lightsail Dev Guide.

" + }, + "power":{ + "shape":"ContainerServicePowerName", + "documentation":"

The power specification of the container service.

The power specifies the amount of RAM, the number of vCPUs, and the base price of the container service.

" + }, + "powerId":{ + "shape":"string", + "documentation":"

The ID of the power of the container service.

" + }, + "state":{ + "shape":"ContainerServiceState", + "documentation":"

The current state of the container service.

The state can be:

  • Pending - The container service is being created.

  • Ready - The container service is created but does not have a container deployment.

  • Disabled - The container service is disabled.

  • Updating - The container service capacity or other setting is being updated.

  • Deploying - The container service is launching a container deployment.

  • Running - The container service is created and it has a container deployment.

" + }, + "scale":{ + "shape":"ContainerServiceScale", + "documentation":"

The scale specification of the container service.

The scale specifies the allocated compute nodes of the container service.

" + }, + "currentDeployment":{ + "shape":"ContainerServiceDeployment", + "documentation":"

An object that describes the current container deployment of the container service.

" + }, + "nextDeployment":{ + "shape":"ContainerServiceDeployment", + "documentation":"

An object that describes the next deployment of the container service.

This value is null when there is no deployment in a pending state.

" + }, + "isDisabled":{ + "shape":"boolean", + "documentation":"

A Boolean value indicating whether the container service is disabled.

" + }, + "principalArn":{ + "shape":"string", + "documentation":"

The principal ARN of the container service.

The principal ARN can be used to create a trust relationship between your standard AWS account and your Lightsail container service. This allows you to give your service permission to access resources in your standard AWS account.

" + }, + "privateDomainName":{ + "shape":"string", + "documentation":"

The private domain name of the container service.

The private domain name is accessible only by other resources within the default virtual private cloud (VPC) of your Lightsail account.

" + }, + "publicDomainNames":{ + "shape":"ContainerServicePublicDomains", + "documentation":"

The public domain name of the container service, such as example.com and www.example.com.

You can specify up to four public domain names for a container service. The domain names that you specify are used when you create a deployment with a container configured as the public endpoint of your container service.

If you don't specify public domain names, then you can use the default domain of the container service.

You must create and validate an SSL/TLS certificate before you can use public domain names with your container service. Use the CreateCertificate action to create a certificate for the public domain names you want to use with your container service.

See CreateContainerService or UpdateContainerService for information about how to specify public domain names for your Lightsail container service.

" + }, + "url":{ + "shape":"string", + "documentation":"

The publicly accessible URL of the container service.

If no public endpoint is specified in the currentDeployment, this URL returns a 404 response.

" + } + }, + "documentation":"

Describes an Amazon Lightsail container service.

" + }, + "ContainerServiceDeployment":{ + "type":"structure", + "members":{ + "version":{ + "shape":"integer", + "documentation":"

The version number of the deployment.

" + }, + "state":{ + "shape":"ContainerServiceDeploymentState", + "documentation":"

The state of the deployment.

A deployment can be in one of the following states:

  • Activating - The deployment is being created.

  • Active - The deployment was successfully created, and it's currently running on the container service. The container service can have only one deployment in an active state at a time.

  • Inactive - The deployment was previously successfully created, but it is not currently running on the container service.

  • Failed - The deployment failed. Use the GetContainerLog action to view the log events for the containers in the deployment to try to determine the reason for the failure.

" + }, + "containers":{ + "shape":"ContainerMap", + "documentation":"

An object that describes the configuration for the containers of the deployment.

" + }, + "publicEndpoint":{ + "shape":"ContainerServiceEndpoint", + "documentation":"

An object that describes the endpoint of the deployment.

" + }, + "createdAt":{ + "shape":"IsoDate", + "documentation":"

The timestamp when the deployment was created.

" + } + }, + "documentation":"

Describes a container deployment configuration of an Amazon Lightsail container service.

A deployment specifies the settings, such as the ports and launch command, of containers that are deployed to your container service.

" + }, + "ContainerServiceDeploymentList":{ + "type":"list", + "member":{"shape":"ContainerServiceDeployment"} + }, + "ContainerServiceDeploymentRequest":{ + "type":"structure", + "members":{ + "containers":{ + "shape":"ContainerMap", + "documentation":"

An object that describes the configuration for the containers of the deployment.

" + }, + "publicEndpoint":{ + "shape":"EndpointRequest", + "documentation":"

An object that describes the endpoint of the deployment.

" + } + }, + "documentation":"

Describes a container deployment configuration of an Amazon Lightsail container service.

A deployment specifies the settings, such as the ports and launch command, of containers that are deployed to your container service.

" + }, + "ContainerServiceDeploymentState":{ + "type":"string", + "enum":[ + "ACTIVATING", + "ACTIVE", + "INACTIVE", + "FAILED" + ] + }, + "ContainerServiceEndpoint":{ + "type":"structure", + "members":{ + "containerName":{ + "shape":"string", + "documentation":"

The name of the container entry of the deployment that the endpoint configuration applies to.

" + }, + "containerPort":{ + "shape":"integer", + "documentation":"

The port of the specified container to which traffic is forwarded to.

" + }, + "healthCheck":{ + "shape":"ContainerServiceHealthCheckConfig", + "documentation":"

An object that describes the health check configuration of the container.

" + } + }, + "documentation":"

Describes the public endpoint configuration of a deployment of an Amazon Lightsail container service.

" + }, + "ContainerServiceHealthCheckConfig":{ + "type":"structure", + "members":{ + "healthyThreshold":{ + "shape":"integer", + "documentation":"

The number of consecutive health checks successes required before moving the container to the Healthy state.

" + }, + "unhealthyThreshold":{ + "shape":"integer", + "documentation":"

The number of consecutive health check failures required before moving the container to the Unhealthy state.

" + }, + "timeoutSeconds":{ + "shape":"integer", + "documentation":"

The amount of time, in seconds, during which no response means a failed health check. You may specify between 2 and 60 seconds.

" + }, + "intervalSeconds":{ + "shape":"integer", + "documentation":"

The approximate interval, in seconds, between health checks of an individual container. You may specify between 5 and 300 seconds.

" + }, + "path":{ + "shape":"string", + "documentation":"

The path on the container on which to perform the health check.

" + }, + "successCodes":{ + "shape":"string", + "documentation":"

The HTTP codes to use when checking for a successful response from a container. You can specify values between 200 and 499.

" + } + }, + "documentation":"

Describes the health check configuration of an Amazon Lightsail container service.

" + }, + "ContainerServiceList":{ + "type":"list", + "member":{"shape":"ContainerService"} + }, + "ContainerServiceLogEvent":{ + "type":"structure", + "members":{ + "createdAt":{ + "shape":"IsoDate", + "documentation":"

The timestamp when the container service log event was created.

" + }, + "message":{ + "shape":"string", + "documentation":"

The message of the container service log event.

" + } + }, + "documentation":"

Describes the log events of a container of an Amazon Lightsail container service.

" + }, + "ContainerServiceLogEventList":{ + "type":"list", + "member":{"shape":"ContainerServiceLogEvent"} + }, + "ContainerServiceMetadataEntry":{ + "type":"map", + "key":{"shape":"string"}, + "value":{"shape":"string"} + }, + "ContainerServiceMetadataEntryList":{ + "type":"list", + "member":{"shape":"ContainerServiceMetadataEntry"} + }, + "ContainerServiceMetricName":{ + "type":"string", + "enum":[ + "CPUUtilization", + "MemoryUtilization" + ] + }, + "ContainerServiceName":{ + "type":"string", + "max":63, + "min":1, + "pattern":"^[a-z0-9]{1,2}|[a-z0-9][a-z0-9-]+[a-z0-9]$" + }, + "ContainerServicePower":{ + "type":"structure", + "members":{ + "powerId":{ + "shape":"string", + "documentation":"

The ID of the power (e.g., nano-1).

" + }, + "price":{ + "shape":"float", + "documentation":"

The monthly price of the power in USD.

" + }, + "cpuCount":{ + "shape":"float", + "documentation":"

The number of vCPUs included in the power.

" + }, + "ramSizeInGb":{ + "shape":"float", + "documentation":"

The amount of RAM (in GB) of the power.

" + }, + "name":{ + "shape":"string", + "documentation":"

The friendly name of the power (e.g., nano).

" + }, + "isActive":{ + "shape":"boolean", + "documentation":"

A Boolean value indicating whether the power is active and can be specified for container services.

" + } + }, + "documentation":"

Describes the powers that can be specified for an Amazon Lightsail container service.

The power specifies the amount of RAM, the number of vCPUs, and the base price of the container service.

" + }, + "ContainerServicePowerList":{ + "type":"list", + "member":{"shape":"ContainerServicePower"} + }, + "ContainerServicePowerName":{ + "type":"string", + "enum":[ + "nano", + "micro", + "small", + "medium", + "large", + "xlarge" + ] + }, + "ContainerServiceProtocol":{ + "type":"string", + "enum":[ + "HTTP", + "HTTPS", + "TCP", + "UDP" + ] + }, + "ContainerServicePublicDomains":{ + "type":"map", + "key":{"shape":"string"}, + "value":{"shape":"ContainerServicePublicDomainsList"} + }, + "ContainerServicePublicDomainsList":{ + "type":"list", + "member":{"shape":"string"} + }, + "ContainerServiceRegistryLogin":{ + "type":"structure", + "members":{ + "username":{ + "shape":"string", + "documentation":"

The container service registry username to use to push container images to the container image registry of a Lightsail account.

" + }, + "password":{ + "shape":"string", + "documentation":"

The container service registry password to use to push container images to the container image registry of a Lightsail account

" + }, + "expiresAt":{ "shape":"IsoDate", - "documentation":"

The timestamp when the contact method was created.

" - }, - "location":{"shape":"ResourceLocation"}, - "resourceType":{ - "shape":"ResourceType", - "documentation":"

The Lightsail resource type (e.g., ContactMethod).

" + "documentation":"

The timestamp of when the container image registry username and password expire.

The log in credentials expire 12 hours after they are created, at which point you will need to create a new set of log in credentials using the CreateContainerServiceRegistryLogin action.

" }, - "supportCode":{ + "registry":{ "shape":"string", - "documentation":"

The support code. Include this code in your email to support when you have questions about your Lightsail contact method. This code enables our support team to look up your Lightsail information more easily.

" + "documentation":"

The address to use to push container images to the container image registry of a Lightsail account.

" } }, - "documentation":"

Describes a contact method.

A contact method is a way to send you notifications. For more information, see Notifications in Amazon Lightsail.

" - }, - "ContactMethodStatus":{ - "type":"string", - "enum":[ - "PendingVerification", - "Valid", - "Invalid" - ] - }, - "ContactMethodVerificationProtocol":{ - "type":"string", - "enum":["Email"] + "documentation":"

Describes the login information for the container image registry of an Amazon Lightsail account.

" }, - "ContactMethodsList":{ - "type":"list", - "member":{"shape":"ContactMethod"} + "ContainerServiceScale":{ + "type":"integer", + "max":20, + "min":1 }, - "ContactProtocol":{ + "ContainerServiceState":{ "type":"string", "enum":[ - "Email", - "SMS" + "PENDING", + "READY", + "RUNNING", + "UPDATING", + "DELETING", + "DISABLED" ] }, - "ContactProtocolsList":{ - "type":"list", - "member":{"shape":"ContactProtocol"} + "ContainerServicesListResult":{ + "type":"structure", + "members":{ + "containerServices":{ + "shape":"ContainerServiceList", + "documentation":"

An array of objects that describe one or more container services.

" + } + } }, "CookieObject":{ "type":"structure", @@ -3456,6 +4082,90 @@ } } }, + "CreateContainerServiceDeploymentRequest":{ + "type":"structure", + "required":["serviceName"], + "members":{ + "serviceName":{ + "shape":"ContainerServiceName", + "documentation":"

The name of the container service for which to create the deployment.

" + }, + "containers":{ + "shape":"ContainerMap", + "documentation":"

An object that describes the settings of the containers that will be launched on the container service.

" + }, + "publicEndpoint":{ + "shape":"EndpointRequest", + "documentation":"

An object that describes the settings of the public endpoint for the container service.

" + } + } + }, + "CreateContainerServiceDeploymentResult":{ + "type":"structure", + "members":{ + "containerService":{ + "shape":"ContainerService", + "documentation":"

An object that describes a container service.

" + } + } + }, + "CreateContainerServiceRegistryLoginRequest":{ + "type":"structure", + "members":{ + } + }, + "CreateContainerServiceRegistryLoginResult":{ + "type":"structure", + "members":{ + "registryLogin":{ + "shape":"ContainerServiceRegistryLogin", + "documentation":"

An object that describes the log in information for the container service registry of your Lightsail account.

" + } + } + }, + "CreateContainerServiceRequest":{ + "type":"structure", + "required":[ + "serviceName", + "power", + "scale" + ], + "members":{ + "serviceName":{ + "shape":"ContainerServiceName", + "documentation":"

The name for the container service.

The name that you specify for your container service will make up part of its default domain. The default domain of a container service is typically https://<ServiceName>.<RandomGUID>.<AWSRegion>.cs.amazonlightsail.com. If the name of your container service is container-service-1, and it's located in the US East (Ohio) AWS region (us-east-2), then the domain for your container service will be like the following example: https://container-service-1.ur4EXAMPLE2uq.us-east-2.cs.amazonlightsail.com

The following are the requirements for container service names:

  • Must be unique within each AWS Region in your Lightsail account.

  • Must contain 1 to 63 characters.

  • Must contain only alphanumeric characters and hyphens.

  • A hyphen (-) can separate words but cannot be at the start or end of the name.

" + }, + "power":{ + "shape":"ContainerServicePowerName", + "documentation":"

The power specification for the container service.

The power specifies the amount of memory, vCPUs, and base monthly cost of each node of the container service. The power and scale of a container service makes up its configured capacity. To determine the monthly price of your container service, multiply the base price of the power with the scale (the number of nodes) of the service.

Use the GetContainerServicePowers action to get a list of power options that you can specify using this parameter, and their base monthly cost.

" + }, + "scale":{ + "shape":"ContainerServiceScale", + "documentation":"

The scale specification for the container service.

The scale specifies the allocated compute nodes of the container service. The power and scale of a container service makes up its configured capacity. To determine the monthly price of your container service, multiply the base price of the power with the scale (the number of nodes) of the service.

" + }, + "tags":{ + "shape":"TagList", + "documentation":"

The tag keys and optional values for the container service.

For more information about tags in Lightsail, see the Lightsail Dev Guide.

" + }, + "publicDomainNames":{ + "shape":"ContainerServicePublicDomains", + "documentation":"

The public domain names to use with the container service, such as example.com and www.example.com.

You can specify up to four public domain names for a container service. The domain names that you specify are used when you create a deployment with a container configured as the public endpoint of your container service.

If you don't specify public domain names, then you can use the default domain of the container service.

You must create and validate an SSL/TLS certificate before you can use public domain names with your container service. Use the CreateCertificate action to create a certificate for the public domain names you want to use with your container service.

You can specify public domain names using a string to array map as shown in the example later on this page.

" + }, + "deployment":{ + "shape":"ContainerServiceDeploymentRequest", + "documentation":"

An object that describes a deployment for the container service.

A deployment specifies the containers that will be launched on the container service and their settings, such as the ports to open, the environment variables to apply, and the launch command to run. It also specifies the container that will serve as the public endpoint of the deployment and its settings, such as the HTTP or HTTPS port to use, and the health check configuration.

" + } + } + }, + "CreateContainerServiceResult":{ + "type":"structure", + "members":{ + "containerService":{ + "shape":"ContainerService", + "documentation":"

An object that describes a container service.

" + } + } + }, "CreateDiskFromSnapshotRequest":{ "type":"structure", "required":[ @@ -4185,6 +4895,43 @@ } } }, + "DeleteContainerImageRequest":{ + "type":"structure", + "required":[ + "serviceName", + "image" + ], + "members":{ + "serviceName":{ + "shape":"ContainerServiceName", + "documentation":"

The name of the container service for which to delete a registered container image.

" + }, + "image":{ + "shape":"string", + "documentation":"

The name of the container image to delete from the container service.

Use the GetContainerImages action to get the name of the container images that are registered to a container service.

Container images sourced from your Lightsail container service, that are registered and stored on your service, start with a colon (:). For example, :container-service-1.mystaticwebsite.1. Container images sourced from a public registry like Docker Hub don't start with a colon. For example, nginx:latest or nginx.

" + } + } + }, + "DeleteContainerImageResult":{ + "type":"structure", + "members":{ + } + }, + "DeleteContainerServiceRequest":{ + "type":"structure", + "required":["serviceName"], + "members":{ + "serviceName":{ + "shape":"ContainerServiceName", + "documentation":"

The name of the container service to delete.

" + } + } + }, + "DeleteContainerServiceResult":{ + "type":"structure", + "members":{ + } + }, "DeleteDiskRequest":{ "type":"structure", "required":["diskName"], @@ -4911,7 +5658,7 @@ }, "isAlias":{ "shape":"boolean", - "documentation":"

When true, specifies whether the domain entry is an alias used by the Lightsail load balancer. You can include an alias (A type) record in your request, which points to a load balancer DNS name and routes traffic to your load balancer

" + "documentation":"

When true, specifies whether the domain entry is an alias used by the Lightsail load balancer. You can include an alias (A type) record in your request, which points to a load balancer DNS name and routes traffic to your load balancer.

" }, "type":{ "shape":"DomainEntryType", @@ -5008,6 +5755,33 @@ } } }, + "EndpointRequest":{ + "type":"structure", + "required":[ + "containerName", + "containerPort" + ], + "members":{ + "containerName":{ + "shape":"string", + "documentation":"

The name of the container for the endpoint.

" + }, + "containerPort":{ + "shape":"integer", + "documentation":"

The port of the container to which traffic is forwarded to.

" + }, + "healthCheck":{ + "shape":"ContainerServiceHealthCheckConfig", + "documentation":"

An object that describes the health check configuration of the container.

" + } + }, + "documentation":"

Describes the settings of a public endpoint for an Amazon Lightsail container service.

" + }, + "Environment":{ + "type":"map", + "key":{"shape":"string"}, + "value":{"shape":"string"} + }, "ExportSnapshotRecord":{ "type":"structure", "members":{ @@ -5140,7 +5914,7 @@ }, "nextPageToken":{ "shape":"string", - "documentation":"

The token to advance to the next page of resutls from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetActiveNames request and specify the next page token using the pageToken parameter.

" + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetActiveNames request and specify the next page token using the pageToken parameter.

" } } }, @@ -5170,7 +5944,7 @@ }, "nextPageToken":{ "shape":"string", - "documentation":"

The token to advance to the next page of resutls from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetAlarms request and specify the next page token using the pageToken parameter.

" + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetAlarms request and specify the next page token using the pageToken parameter.

" } } }, @@ -5223,7 +5997,7 @@ }, "nextPageToken":{ "shape":"string", - "documentation":"

The token to advance to the next page of resutls from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetBlueprints request and specify the next page token using the pageToken parameter.

" + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetBlueprints request and specify the next page token using the pageToken parameter.

" } } }, @@ -5249,7 +6023,7 @@ }, "nextPageToken":{ "shape":"string", - "documentation":"

The token to advance to the next page of resutls from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetBundles request and specify the next page token using the pageToken parameter.

" + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetBundles request and specify the next page token using the pageToken parameter.

" } } }, @@ -5258,7 +6032,7 @@ "members":{ "certificateStatuses":{ "shape":"CertificateStatusList", - "documentation":"

The status of the certificates for which to return information.

For example, specify ISSUED to return only certificates with an ISSUED status.

When omitted, the response includes all of your certificates in the AWS region where the request is made, regardless of their current status.

" + "documentation":"

The status of the certificates for which to return information.

For example, specify ISSUED to return only certificates with an ISSUED status.

When omitted, the response includes all of your certificates in the AWS Region where the request is made, regardless of their current status.

" }, "includeCertificateDetails":{ "shape":"IncludeCertificateDetails", @@ -5266,7 +6040,7 @@ }, "certificateName":{ "shape":"CertificateName", - "documentation":"

The name for the certificate for which to return information.

When omitted, the response includes all of your certificates in the AWS region where the request is made.

" + "documentation":"

The name for the certificate for which to return information.

When omitted, the response includes all of your certificates in the AWS Region where the request is made.

" } } }, @@ -5297,7 +6071,7 @@ }, "nextPageToken":{ "shape":"string", - "documentation":"

The token to advance to the next page of resutls from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetCloudFormationStackRecords request and specify the next page token using the pageToken parameter.

" + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetCloudFormationStackRecords request and specify the next page token using the pageToken parameter.

" } } }, @@ -5319,6 +6093,177 @@ } } }, + "GetContainerAPIMetadataRequest":{ + "type":"structure", + "members":{ + } + }, + "GetContainerAPIMetadataResult":{ + "type":"structure", + "members":{ + "metadata":{ + "shape":"ContainerServiceMetadataEntryList", + "documentation":"

Metadata about Lightsail containers, such as the current version of the Lightsail Control (lightsailctl) plugin.

" + } + } + }, + "GetContainerImagesRequest":{ + "type":"structure", + "required":["serviceName"], + "members":{ + "serviceName":{ + "shape":"ContainerServiceName", + "documentation":"

The name of the container service for which to return registered container images.

" + } + } + }, + "GetContainerImagesResult":{ + "type":"structure", + "members":{ + "containerImages":{ + "shape":"ContainerImageList", + "documentation":"

An array of objects that describe container images that are registered to the container service.

" + } + } + }, + "GetContainerLogRequest":{ + "type":"structure", + "required":[ + "serviceName", + "containerName" + ], + "members":{ + "serviceName":{ + "shape":"ContainerServiceName", + "documentation":"

The name of the container service for which to get a container log.

" + }, + "containerName":{ + "shape":"string", + "documentation":"

The name of the container that is either running or previously ran on the container service for which to return a log.

" + }, + "startTime":{ + "shape":"IsoDate", + "documentation":"

The start of the time interval for which to get log data.

Constraints:

  • Specified in Coordinated Universal Time (UTC).

  • Specified in the Unix time format.

    For example, if you wish to use a start time of October 1, 2018, at 8 PM UTC, specify 1538424000 as the start time.

You can convert a human-friendly time to Unix time format using a converter like Epoch converter.

" + }, + "endTime":{ + "shape":"IsoDate", + "documentation":"

The end of the time interval for which to get log data.

Constraints:

  • Specified in Coordinated Universal Time (UTC).

  • Specified in the Unix time format.

    For example, if you wish to use an end time of October 1, 2018, at 9 PM UTC, specify 1538427600 as the end time.

You can convert a human-friendly time to Unix time format using a converter like Epoch converter.

" + }, + "filterPattern":{ + "shape":"string", + "documentation":"

The pattern to use to filter the returned log events to a specific term.

The following are a few examples of filter patterns that you can specify:

  • To return all log events, specify a filter pattern of \"\".

  • To exclude log events that contain the ERROR term, and return all other log events, specify a filter pattern of \"-ERROR\".

  • To return log events that contain the ERROR term, specify a filter pattern of \"ERROR\".

  • To return log events that contain both the ERROR and Exception terms, specify a filter pattern of \"ERROR Exception\".

  • To return log events that contain the ERROR or the Exception term, specify a filter pattern of \"?ERROR ?Exception\".

" + }, + "pageToken":{ + "shape":"string", + "documentation":"

The token to advance to the next page of results from your request.

To get a page token, perform an initial GetContainerLog request. If your results are paginated, the response will return a next page token that you can specify as the page token in a subsequent request.

" + } + } + }, + "GetContainerLogResult":{ + "type":"structure", + "members":{ + "logEvents":{ + "shape":"ContainerServiceLogEventList", + "documentation":"

An array of objects that describe the log events of a container.

" + }, + "nextPageToken":{ + "shape":"string", + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetContainerLog request and specify the next page token using the pageToken parameter.

" + } + } + }, + "GetContainerServiceDeploymentsRequest":{ + "type":"structure", + "required":["serviceName"], + "members":{ + "serviceName":{ + "shape":"ContainerServiceName", + "documentation":"

The name of the container service for which to return deployments.

" + } + } + }, + "GetContainerServiceDeploymentsResult":{ + "type":"structure", + "members":{ + "deployments":{ + "shape":"ContainerServiceDeploymentList", + "documentation":"

An array of objects that describe deployments for a container service.

" + } + } + }, + "GetContainerServiceMetricDataRequest":{ + "type":"structure", + "required":[ + "serviceName", + "metricName", + "startTime", + "endTime", + "period", + "statistics" + ], + "members":{ + "serviceName":{ + "shape":"ContainerServiceName", + "documentation":"

The name of the container service for which to get metric data.

" + }, + "metricName":{ + "shape":"ContainerServiceMetricName", + "documentation":"

The metric for which you want to return information.

Valid container service metric names are listed below, along with the most useful statistics to include in your request, and the published unit value.

  • CPUUtilization - The average percentage of compute units that are currently in use across all nodes of the container service. This metric identifies the processing power required to run containers on each node of the container service.

    Statistics: The most useful statistics are Maximum and Average.

    Unit: The published unit is Percent.

  • MemoryUtilization - The average percentage of available memory that is currently in use across all nodes of the container service. This metric identifies the memory required to run containers on each node of the container service.

    Statistics: The most useful statistics are Maximum and Average.

    Unit: The published unit is Percent.

" + }, + "startTime":{ + "shape":"IsoDate", + "documentation":"

The start time of the time period.

" + }, + "endTime":{ + "shape":"IsoDate", + "documentation":"

The end time of the time period.

" + }, + "period":{ + "shape":"MetricPeriod", + "documentation":"

The granularity, in seconds, of the returned data points.

All container service metric data is available in 5-minute (300 seconds) granularity.

" + }, + "statistics":{ + "shape":"MetricStatisticList", + "documentation":"

The statistic for the metric.

The following statistics are available:

  • Minimum - The lowest value observed during the specified period. Use this value to determine low volumes of activity for your application.

  • Maximum - The highest value observed during the specified period. Use this value to determine high volumes of activity for your application.

  • Sum - All values submitted for the matching metric added together. You can use this statistic to determine the total volume of a metric.

  • Average - The value of Sum / SampleCount during the specified period. By comparing this statistic with the Minimum and Maximum values, you can determine the full scope of a metric and how close the average use is to the Minimum and Maximum values. This comparison helps you to know when to increase or decrease your resources.

  • SampleCount - The count, or number, of data points used for the statistical calculation.

" + } + } + }, + "GetContainerServiceMetricDataResult":{ + "type":"structure", + "members":{ + "metricName":{ + "shape":"ContainerServiceMetricName", + "documentation":"

The name of the metric returned.

" + }, + "metricData":{ + "shape":"MetricDatapointList", + "documentation":"

An array of objects that describe the metric data returned.

" + } + } + }, + "GetContainerServicePowersRequest":{ + "type":"structure", + "members":{ + } + }, + "GetContainerServicePowersResult":{ + "type":"structure", + "members":{ + "powers":{ + "shape":"ContainerServicePowerList", + "documentation":"

An array of objects that describe the powers that can be specified for a container service.

" + } + } + }, + "GetContainerServicesRequest":{ + "type":"structure", + "members":{ + "serviceName":{ + "shape":"ContainerServiceName", + "documentation":"

The name of the container service for which to return information.

When omitted, the response includes all of your container services in the AWS Region where the request is made.

" + } + } + }, "GetDiskRequest":{ "type":"structure", "required":["diskName"], @@ -5375,7 +6320,7 @@ }, "nextPageToken":{ "shape":"string", - "documentation":"

The token to advance to the next page of resutls from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetDiskSnapshots request and specify the next page token using the pageToken parameter.

" + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetDiskSnapshots request and specify the next page token using the pageToken parameter.

" } } }, @@ -5397,7 +6342,7 @@ }, "nextPageToken":{ "shape":"string", - "documentation":"

The token to advance to the next page of resutls from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetDisks request and specify the next page token using the pageToken parameter.

" + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetDisks request and specify the next page token using the pageToken parameter.

" } } }, @@ -5555,7 +6500,7 @@ }, "nextPageToken":{ "shape":"string", - "documentation":"

The token to advance to the next page of resutls from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetDomains request and specify the next page token using the pageToken parameter.

" + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetDomains request and specify the next page token using the pageToken parameter.

" } } }, @@ -5577,7 +6522,7 @@ }, "nextPageToken":{ "shape":"string", - "documentation":"

The token to advance to the next page of resutls from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetExportSnapshotRecords request and specify the next page token using the pageToken parameter.

" + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetExportSnapshotRecords request and specify the next page token using the pageToken parameter.

" } } }, @@ -5734,7 +6679,7 @@ }, "nextPageToken":{ "shape":"string", - "documentation":"

The token to advance to the next page of resutls from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetInstanceSnapshots request and specify the next page token using the pageToken parameter.

" + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetInstanceSnapshots request and specify the next page token using the pageToken parameter.

" } } }, @@ -5775,7 +6720,7 @@ }, "nextPageToken":{ "shape":"string", - "documentation":"

The token to advance to the next page of resutls from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetInstances request and specify the next page token using the pageToken parameter.

" + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetInstances request and specify the next page token using the pageToken parameter.

" } } }, @@ -5816,7 +6761,7 @@ }, "nextPageToken":{ "shape":"string", - "documentation":"

The token to advance to the next page of resutls from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetKeyPairs request and specify the next page token using the pageToken parameter.

" + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetKeyPairs request and specify the next page token using the pageToken parameter.

" } } }, @@ -5931,7 +6876,7 @@ }, "nextPageToken":{ "shape":"string", - "documentation":"

The token to advance to the next page of resutls from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetLoadBalancers request and specify the next page token using the pageToken parameter.

" + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetLoadBalancers request and specify the next page token using the pageToken parameter.

" } } }, @@ -5982,7 +6927,7 @@ }, "nextPageToken":{ "shape":"string", - "documentation":"

The token to advance to the next page of resutls from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetOperationsForResource request and specify the next page token using the pageToken parameter.

" + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetOperationsForResource request and specify the next page token using the pageToken parameter.

" } } }, @@ -6004,7 +6949,7 @@ }, "nextPageToken":{ "shape":"string", - "documentation":"

The token to advance to the next page of resutls from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetOperations request and specify the next page token using the pageToken parameter.

" + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetOperations request and specify the next page token using the pageToken parameter.

" } } }, @@ -6017,7 +6962,7 @@ }, "includeRelationalDatabaseAvailabilityZones":{ "shape":"boolean", - "documentation":"

>A Boolean value indicating whether to also include Availability Zones for databases in your get regions request. Availability Zones are indicated with a letter (e.g., us-east-2a).

" + "documentation":"

A Boolean value indicating whether to also include Availability Zones for databases in your get regions request. Availability Zones are indicated with a letter (e.g., us-east-2a).

" } } }, @@ -6048,7 +6993,7 @@ }, "nextPageToken":{ "shape":"string", - "documentation":"

The token to advance to the next page of resutls from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetRelationalDatabaseBlueprints request and specify the next page token using the pageToken parameter.

" + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetRelationalDatabaseBlueprints request and specify the next page token using the pageToken parameter.

" } } }, @@ -6070,7 +7015,7 @@ }, "nextPageToken":{ "shape":"string", - "documentation":"

The token to advance to the next page of resutls from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetRelationalDatabaseBundles request and specify the next page token using the pageToken parameter.

" + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetRelationalDatabaseBundles request and specify the next page token using the pageToken parameter.

" } } }, @@ -6101,7 +7046,7 @@ }, "nextPageToken":{ "shape":"string", - "documentation":"

The token to advance to the next page of resutls from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetRelationalDatabaseEvents request and specify the next page token using the pageToken parameter.

" + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetRelationalDatabaseEvents request and specify the next page token using the pageToken parameter.

" } } }, @@ -6279,7 +7224,7 @@ }, "nextPageToken":{ "shape":"string", - "documentation":"

The token to advance to the next page of resutls from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetRelationalDatabaseParameters request and specify the next page token using the pageToken parameter.

" + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetRelationalDatabaseParameters request and specify the next page token using the pageToken parameter.

" } } }, @@ -6339,7 +7284,7 @@ }, "nextPageToken":{ "shape":"string", - "documentation":"

The token to advance to the next page of resutls from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetRelationalDatabaseSnapshots request and specify the next page token using the pageToken parameter.

" + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetRelationalDatabaseSnapshots request and specify the next page token using the pageToken parameter.

" } } }, @@ -6361,7 +7306,7 @@ }, "nextPageToken":{ "shape":"string", - "documentation":"

The token to advance to the next page of resutls from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetRelationalDatabases request and specify the next page token using the pageToken parameter.

" + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetRelationalDatabases request and specify the next page token using the pageToken parameter.

" } } }, @@ -6402,7 +7347,7 @@ }, "nextPageToken":{ "shape":"string", - "documentation":"

The token to advance to the next page of resutls from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetStaticIps request and specify the next page token using the pageToken parameter.

" + "documentation":"

The token to advance to the next page of results from your request.

A next page token is not returned if there are no more results to display.

To get the next page of results, perform another GetStaticIps request and specify the next page token using the pageToken parameter.

" } } }, @@ -7896,7 +8841,14 @@ "DetachCertificateFromDistribution", "UpdateDistributionBundle", "CreateCertificate", - "DeleteCertificate" + "DeleteCertificate", + "CreateContainerService", + "UpdateContainerService", + "DeleteContainerService", + "CreateContainerServiceDeployment", + "CreateContainerServiceRegistryLogin", + "RegisterContainerImage", + "DeleteContainerImage" ] }, "Origin":{ @@ -8051,6 +9003,11 @@ "type":"list", "member":{"shape":"Port"} }, + "PortMap":{ + "type":"map", + "key":{"shape":"string"}, + "value":{"shape":"ContainerServiceProtocol"} + }, "PortState":{ "type":"string", "enum":[ @@ -8263,6 +9220,34 @@ "ap-northeast-2" ] }, + "RegisterContainerImageRequest":{ + "type":"structure", + "required":[ + "serviceName", + "label", + "digest" + ], + "members":{ + "serviceName":{ + "shape":"ContainerServiceName", + "documentation":"

The name of the container service for which to register a container image.

" + }, + "label":{ + "shape":"ContainerLabel", + "documentation":"

The label for the container image when it's registered to the container service.

Use a descriptive label that you can use to track the different versions of your registered container images.

Use the GetContainerImages action to return the container images registered to a Lightsail container service. The label is the <imagelabel> portion of the following image name example:

  • :container-service-1.<imagelabel>.1

If the name of your container service is mycontainerservice, and the label that you specify is mystaticwebsite, then the name of the registered container image will be :mycontainerservice.mystaticwebsite.1.

The number at the end of these image name examples represents the version of the registered container image. If you push and register another container image to the same Lightsail container service, with the same label, then the version number for the new registered container image will be 2. If you push and register another container image, the version number will be 3, and so on.

" + }, + "digest":{ + "shape":"string", + "documentation":"

The digest of the container image to be registered.

" + } + } + }, + "RegisterContainerImageResult":{ + "type":"structure", + "members":{ + "containerImage":{"shape":"ContainerImage"} + } + }, "RelationalDatabase":{ "type":"structure", "members":{ @@ -8775,6 +9760,7 @@ "ResourceType":{ "type":"string", "enum":[ + "ContainerService", "Instance", "StaticIp", "KeyPair", @@ -9123,6 +10109,41 @@ } } }, + "UpdateContainerServiceRequest":{ + "type":"structure", + "required":["serviceName"], + "members":{ + "serviceName":{ + "shape":"ContainerServiceName", + "documentation":"

The name of the container service to update.

" + }, + "power":{ + "shape":"ContainerServicePowerName", + "documentation":"

The power for the container service.

The power specifies the amount of memory, vCPUs, and base monthly cost of each node of the container service. The power and scale of a container service makes up its configured capacity. To determine the monthly price of your container service, multiply the base price of the power with the scale (the number of nodes) of the service.

Use the GetContainerServicePowers action to view the specifications of each power option.

" + }, + "scale":{ + "shape":"ContainerServiceScale", + "documentation":"

The scale for the container service.

The scale specifies the allocated compute nodes of the container service. The power and scale of a container service makes up its configured capacity. To determine the monthly price of your container service, multiply the base price of the power with the scale (the number of nodes) of the service.

" + }, + "isDisabled":{ + "shape":"boolean", + "documentation":"

A Boolean value to indicate whether the container service is disabled.

" + }, + "publicDomainNames":{ + "shape":"ContainerServicePublicDomains", + "documentation":"

The public domain names to use with the container service, such as example.com and www.example.com.

You can specify up to four public domain names for a container service. The domain names that you specify are used when you create a deployment with a container configured as the public endpoint of your container service.

If you don't specify public domain names, then you can use the default domain of the container service.

You must create and validate an SSL/TLS certificate before you can use public domain names with your container service. Use the CreateCertificate action to create a certificate for the public domain names you want to use with your container service.

You can specify public domain names using a string to array map as shown in the example later on this page.

" + } + } + }, + "UpdateContainerServiceResult":{ + "type":"structure", + "members":{ + "containerService":{ + "shape":"ContainerService", + "documentation":"

An object that describes a container service.

" + } + } + }, "UpdateDistributionBundleRequest":{ "type":"structure", "members":{ @@ -9327,5 +10348,5 @@ "string":{"type":"string"}, "timestamp":{"type":"timestamp"} }, - "documentation":"

Amazon Lightsail is the easiest way to get started with Amazon Web Services (AWS) for developers who need to build websites or web applications. It includes everything you need to launch your project quickly – instances (virtual private servers), managed databases, SSD-based block storage, static IP addresses, load balancers, content delivery network (CDN) distributions, DNS management of registered domains, and snapshots (backups) – for a low, predictable monthly price.

You can manage your Lightsail resources using the Lightsail console, Lightsail API, AWS Command Line Interface (AWS CLI), or SDKs. For more information about Lightsail concepts and tasks, see the Lightsail Dev Guide.

This API Reference provides detailed information about the actions, data types, parameters, and errors of the Lightsail service. For more information about the supported AWS Regions, endpoints, and service quotas for the Lightsail service, see Amazon Lightsail Endpoints and Quotas in the AWS General Reference.

" + "documentation":"

Amazon Lightsail is the easiest way to get started with Amazon Web Services (AWS) for developers who need to build websites or web applications. It includes everything you need to launch your project quickly - instances (virtual private servers), container services, managed databases, SSD-based block storage, static IP addresses, load balancers, content delivery network (CDN) distributions, DNS management of registered domains, and resource snapshots (backups) - for a low, predictable monthly price.

You can manage your Lightsail resources using the Lightsail console, Lightsail API, AWS Command Line Interface (AWS CLI), or SDKs. For more information about Lightsail concepts and tasks, see the Lightsail Dev Guide.

This API Reference provides detailed information about the actions, data types, parameters, and errors of the Lightsail service. For more information about the supported AWS Regions, endpoints, and service quotas of the Lightsail service, see Amazon Lightsail Endpoints and Quotas in the AWS General Reference.

" } From b586679d2d5f82a32b155901941935153c99105c Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 12 Nov 2020 19:16:20 +0000 Subject: [PATCH 180/339] Amazon Polly Update: Amazon Polly adds new Australian English female voice - Olivia. Olivia is available as Neural voice only. --- .../next-release/feature-AmazonPolly-8f716d6.json | 6 ++++++ .../main/resources/codegen-resources/service-2.json | 13 ++++++++----- 2 files changed, 14 insertions(+), 5 deletions(-) create mode 100644 .changes/next-release/feature-AmazonPolly-8f716d6.json diff --git a/.changes/next-release/feature-AmazonPolly-8f716d6.json b/.changes/next-release/feature-AmazonPolly-8f716d6.json new file mode 100644 index 000000000000..4112e317ea32 --- /dev/null +++ b/.changes/next-release/feature-AmazonPolly-8f716d6.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Polly", + "contributor": "", + "description": "Amazon Polly adds new Australian English female voice - Olivia. Olivia is available as Neural voice only." +} diff --git a/services/polly/src/main/resources/codegen-resources/service-2.json b/services/polly/src/main/resources/codegen-resources/service-2.json index 314149d34c98..2617de828982 100644 --- a/services/polly/src/main/resources/codegen-resources/service-2.json +++ b/services/polly/src/main/resources/codegen-resources/service-2.json @@ -478,7 +478,10 @@ }, "documentation":"

Contains metadata describing the lexicon such as the number of lexemes, language code, and so on. For more information, see Managing Lexicons.

" }, - "LexiconContent":{"type":"string"}, + "LexiconContent":{ + "type":"string", + "sensitive":true + }, "LexiconDescription":{ "type":"structure", "members":{ @@ -499,8 +502,7 @@ }, "LexiconName":{ "type":"string", - "pattern":"[0-9A-Za-z]{1,20}", - "sensitive":true + "pattern":"[0-9A-Za-z]{1,20}" }, "LexiconNameList":{ "type":"list", @@ -637,7 +639,7 @@ }, "OutputS3KeyPrefix":{ "type":"string", - "pattern":"^[0-9a-zA-Z\\/\\!\\-_\\.\\*\\'\\(\\)]{0,800}$" + "pattern":"^[0-9a-zA-Z\\/\\!\\-_\\.\\*\\'\\(\\):;\\$@=+\\,\\?&]{0,800}$" }, "OutputUri":{"type":"string"}, "PutLexiconInput":{ @@ -861,7 +863,7 @@ "members":{ "Engine":{ "shape":"Engine", - "documentation":"

Specifies the engine (standard or neural) for Amazon Polly to use when processing input text for speech synthesis. Using a voice that is not supported for the engine selected will result in an error.

" + "documentation":"

Specifies the engine (standard or neural) for Amazon Polly to use when processing input text for speech synthesis. For information on Amazon Polly voices and which voices are available in standard-only, NTTS-only, and both standard and NTTS formats, see Available Voices.

NTTS-only voices

When using NTTS-only voices such as Kevin (en-US), this parameter is required and must be set to neural. If the engine is not specified, or is set to standard, this will result in an error.

Type: String

Valid Values: standard | neural

Required: Yes

Standard voices

For standard voices, this is not required; the engine parameter defaults to standard. If the engine is not specified, or is set to standard and an NTTS-only voice is selected, this will result in an error.

" }, "LanguageCode":{ "shape":"LanguageCode", @@ -1053,6 +1055,7 @@ "Mizuki", "Naja", "Nicole", + "Olivia", "Penelope", "Raveena", "Ricardo", From 8006f7c6c6faf22bfd02a3ccddac499e76c2af7d Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 12 Nov 2020 19:16:20 +0000 Subject: [PATCH 181/339] AWS IoT Update: This release adds a batchMode parameter to the IotEvents, IotAnalytics, and Firehose actions which allows customers to send an array of messages to the corresponding services --- .../next-release/feature-AWSIoT-90ab102.json | 6 ++++++ .../codegen-resources/service-2.json | 19 ++++++++++++++++--- 2 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 .changes/next-release/feature-AWSIoT-90ab102.json diff --git a/.changes/next-release/feature-AWSIoT-90ab102.json b/.changes/next-release/feature-AWSIoT-90ab102.json new file mode 100644 index 000000000000..64056672d63d --- /dev/null +++ b/.changes/next-release/feature-AWSIoT-90ab102.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS IoT", + "contributor": "", + "description": "This release adds a batchMode parameter to the IotEvents, IotAnalytics, and Firehose actions which allows customers to send an array of messages to the corresponding services" +} diff --git a/services/iot/src/main/resources/codegen-resources/service-2.json b/services/iot/src/main/resources/codegen-resources/service-2.json index 0a0c5d446587..37d2f6b29576 100644 --- a/services/iot/src/main/resources/codegen-resources/service-2.json +++ b/services/iot/src/main/resources/codegen-resources/service-2.json @@ -4933,6 +4933,7 @@ "documentation":"

Specifies the amount of time each device has to finish its execution of the job. A timer is started when the job execution status is set to IN_PROGRESS. If the job execution status is not set to another terminal state before the timer expires, it will be automatically set to TIMED_OUT.

" }, "AwsJobTimeoutInProgressTimeoutInMinutes":{"type":"long"}, + "BatchMode":{"type":"boolean"}, "Behavior":{ "type":"structure", "required":["name"], @@ -9082,6 +9083,10 @@ "separator":{ "shape":"FirehoseSeparator", "documentation":"

A character separator that will be used to separate records written to the Firehose stream. Valid values are: '\\n' (newline), '\\t' (tab), '\\r\\n' (Windows newline), ',' (comma).

" + }, + "batchMode":{ + "shape":"BatchMode", + "documentation":"

Whether to deliver the Kinesis Data Firehose stream as a batch by using PutRecordBatch . The default value is false.

When batchMode is true and the rule's SQL statement evaluates to an Array, each Array element forms one record in the PutRecordBatch request. The resulting array can't have more than 500 records.

" } }, "documentation":"

Describes an action that writes data to an Amazon Kinesis Firehose stream.

" @@ -9789,6 +9794,10 @@ "shape":"ChannelName", "documentation":"

The name of the IoT Analytics channel to which message data will be sent.

" }, + "batchMode":{ + "shape":"BatchMode", + "documentation":"

Whether to process the action as a batch. The default value is false.

When batchMode is true and the rule SQL statement evaluates to an Array, each Array element is delivered as a separate message when passed by BatchPutMessage to the AWS IoT Analytics channel. The resulting array can't have more than 100 messages.

" + }, "roleArn":{ "shape":"AwsArn", "documentation":"

The ARN of the role which has a policy that grants IoT Analytics permission to send message data via IoT Analytics (iotanalytics:BatchPutMessage).

" @@ -9809,7 +9818,11 @@ }, "messageId":{ "shape":"MessageId", - "documentation":"

[Optional] Use this to ensure that only one input (message) with a given messageId will be processed by an AWS IoT Events detector.

" + "documentation":"

The ID of the message. The default messageId is a new UUID value.

When batchMode is true, you can't specify a messageId--a new UUID value will be assigned.

Assign a value to this property to ensure that only one input (message) with a given messageId will be processed by an AWS IoT Events detector.

" + }, + "batchMode":{ + "shape":"BatchMode", + "documentation":"

Whether to process the event actions as a batch. The default value is false.

When batchMode is true, you can't specify a messageId.

When batchMode is true and the rule SQL statement evaluates to an Array, each Array element is treated as a separate message when it's sent to AWS IoT Events by calling BatchPutMessage . The resulting array can't have more than 10 messages.

" }, "roleArn":{ "shape":"AwsArn", @@ -13724,7 +13737,7 @@ }, "key":{ "shape":"Key", - "documentation":"

The object key.

" + "documentation":"

The object key. For more information, see Actions, resources, and condition keys for Amazon S3.

" }, "cannedAcl":{ "shape":"CannedAccessControlList", @@ -14141,7 +14154,7 @@ "documentation":"

The ARN of the signing role.

" } }, - "documentation":"

Use Sig V4 authorization.

" + "documentation":"

For more information, see Signature Version 4 signing process.

" }, "Signature":{"type":"blob"}, "SignatureAlgorithm":{"type":"string"}, From 569314cf1dcbf1ccfce354f8c710fc5370a2c017 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 12 Nov 2020 19:16:21 +0000 Subject: [PATCH 182/339] Amazon Personalize Runtime Update: Adds support to use dynamic filters with Personalize. --- ...ture-AmazonPersonalizeRuntime-770dd01.json | 6 ++++ .../codegen-resources/service-2.json | 28 +++++++++++++++++-- 2 files changed, 32 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AmazonPersonalizeRuntime-770dd01.json diff --git a/.changes/next-release/feature-AmazonPersonalizeRuntime-770dd01.json b/.changes/next-release/feature-AmazonPersonalizeRuntime-770dd01.json new file mode 100644 index 000000000000..68507b638637 --- /dev/null +++ b/.changes/next-release/feature-AmazonPersonalizeRuntime-770dd01.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Personalize Runtime", + "contributor": "", + "description": "Adds support to use dynamic filters with Personalize." +} diff --git a/services/personalizeruntime/src/main/resources/codegen-resources/service-2.json b/services/personalizeruntime/src/main/resources/codegen-resources/service-2.json index 1381a37f42ab..d8a8c3b84a3f 100644 --- a/services/personalizeruntime/src/main/resources/codegen-resources/service-2.json +++ b/services/personalizeruntime/src/main/resources/codegen-resources/service-2.json @@ -66,6 +66,22 @@ "max":150 }, "ErrorMessage":{"type":"string"}, + "FilterAttributeName":{ + "type":"string", + "max":50, + "pattern":"[A-Za-z0-9]+" + }, + "FilterAttributeValue":{ + "type":"string", + "max":1000, + "sensitive":true + }, + "FilterValues":{ + "type":"map", + "key":{"shape":"FilterAttributeName"}, + "value":{"shape":"FilterAttributeValue"}, + "max":25 + }, "GetPersonalizedRankingRequest":{ "type":"structure", "required":[ @@ -92,7 +108,11 @@ }, "filterArn":{ "shape":"Arn", - "documentation":"

The Amazon Resource Name (ARN) of a filter you created to include or exclude items from recommendations for a given user.

" + "documentation":"

The Amazon Resource Name (ARN) of a filter you created to include items or exclude items from recommendations for a given user. For more information, see Filtering Recommendations.

" + }, + "filterValues":{ + "shape":"FilterValues", + "documentation":"

The values to use when filtering recommendations. For each placeholder parameter in your filter expression, provide the parameter name (in matching case) as a key and the filter value(s) as the corresponding value. Separate multiple values for one parameter with a comma.

For filter expressions that use an INCLUDE element to include items, you must provide values for all parameters that are defined in the expression. For filters with expressions that use an EXCLUDE element to exclude items, you can omit the filter-values.In this case, Amazon Personalize doesn't use that portion of the expression to filter recommendations.

For more information, see Filtering Recommendations.

" } } }, @@ -135,7 +155,11 @@ }, "filterArn":{ "shape":"Arn", - "documentation":"

The ARN of the filter to apply to the returned recommendations. For more information, see Using Filters with Amazon Personalize.

When using this parameter, be sure the filter resource is ACTIVE.

" + "documentation":"

The ARN of the filter to apply to the returned recommendations. For more information, see Filtering Recommendations.

When using this parameter, be sure the filter resource is ACTIVE.

" + }, + "filterValues":{ + "shape":"FilterValues", + "documentation":"

The values to use when filtering recommendations. For each placeholder parameter in your filter expression, provide the parameter name (in matching case) as a key and the filter value(s) as the corresponding value. Separate multiple values for one parameter with a comma.

For filter expressions that use an INCLUDE element to include items, you must provide values for all parameters that are defined in the expression. For filters with expressions that use an EXCLUDE element to exclude items, you can omit the filter-values.In this case, Amazon Personalize doesn't use that portion of the expression to filter recommendations.

For more information, see Filtering Recommendations.

" } } }, From b06b62dbf2cbe2b8bb1d420c849c6fc2df34ca4b Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 12 Nov 2020 19:16:26 +0000 Subject: [PATCH 183/339] AWS RoboMaker Update: This release introduces Robomaker Worldforge TagsOnCreate which allows customers to tag worlds as they are being generated by providing the tags while configuring a world generation job. --- .../next-release/feature-AWSRoboMaker-019cb8a.json | 6 ++++++ .../resources/codegen-resources/service-2.json | 14 +++++++++++++- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AWSRoboMaker-019cb8a.json diff --git a/.changes/next-release/feature-AWSRoboMaker-019cb8a.json b/.changes/next-release/feature-AWSRoboMaker-019cb8a.json new file mode 100644 index 000000000000..3cb4a4c2ed39 --- /dev/null +++ b/.changes/next-release/feature-AWSRoboMaker-019cb8a.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS RoboMaker", + "contributor": "", + "description": "This release introduces Robomaker Worldforge TagsOnCreate which allows customers to tag worlds as they are being generated by providing the tags while configuring a world generation job." +} diff --git a/services/robomaker/src/main/resources/codegen-resources/service-2.json b/services/robomaker/src/main/resources/codegen-resources/service-2.json index 9dd3ea9b4c9f..6695a55fbf69 100644 --- a/services/robomaker/src/main/resources/codegen-resources/service-2.json +++ b/services/robomaker/src/main/resources/codegen-resources/service-2.json @@ -1728,7 +1728,7 @@ }, "failureCode":{ "shape":"WorldExportJobErrorCode", - "documentation":"

The failure code of the world export job if it failed:

InternalServiceError

Internal service error.

LimitExceeded

The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed.

ResourceNotFound

The specified resource could not be found.

RequestThrottled

The request was throttled.

InvalidInput

An input parameter in the request is not valid.

" + "documentation":"

The failure code of the world export job if it failed:

InternalServiceError

Internal service error.

LimitExceeded

The requested resource exceeds the maximum number allowed, or the number of concurrent stream requests exceeds the maximum number allowed.

ResourceNotFound

The specified resource could not be found.

RequestThrottled

The request was throttled.

InvalidInput

An input parameter in the request is not valid.

AllWorldGenerationFailed

All of the worlds in the world generation job failed. This can happen if your worldCount is greater than 50 or less than 1.

For more information about troubleshooting WorldForge, see Troubleshooting Simulation WorldForge.

" }, "clientRequestToken":{ "shape":"ClientRequestToken", @@ -1768,6 +1768,10 @@ "tags":{ "shape":"TagMap", "documentation":"

A map that contains tag keys and tag values that are attached to the world generator job.

" + }, + "worldTags":{ + "shape":"TagMap", + "documentation":"

A map that contains tag keys and tag values that are attached to the generated worlds.

" } } }, @@ -1805,6 +1809,10 @@ "tags":{ "shape":"TagMap", "documentation":"

A map that contains tag keys and tag values that are attached to the world generator job.

" + }, + "worldTags":{ + "shape":"TagMap", + "documentation":"

A map that contains tag keys and tag values that are attached to the generated worlds.

" } } }, @@ -2728,6 +2736,10 @@ "tags":{ "shape":"TagMap", "documentation":"

A map that contains tag keys and tag values that are attached to the world generation job.

" + }, + "worldTags":{ + "shape":"TagMap", + "documentation":"

A map that contains tag keys and tag values that are attached to the generated worlds.

" } } }, From beaa75868e10c2f3c0eb45f7587f8fc4450c16c5 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 12 Nov 2020 19:16:23 +0000 Subject: [PATCH 184/339] AWS Service Catalog App Registry Update: AWS Service Catalog AppRegistry provides a repository of your applications, their resources, and the application metadata that you use within your enterprise. --- ...-AWSServiceCatalogAppRegistry-14c15f3.json | 6 + aws-sdk-java/pom.xml | 5 + bom/pom.xml | 5 + services/pom.xml | 1 + services/servicecatalogappregistry/pom.xml | 60 + .../codegen-resources/paginators-1.json | 28 + .../codegen-resources/service-2.json | 1145 +++++++++++++++++ 7 files changed, 1250 insertions(+) create mode 100644 .changes/next-release/feature-AWSServiceCatalogAppRegistry-14c15f3.json create mode 100644 services/servicecatalogappregistry/pom.xml create mode 100644 services/servicecatalogappregistry/src/main/resources/codegen-resources/paginators-1.json create mode 100644 services/servicecatalogappregistry/src/main/resources/codegen-resources/service-2.json diff --git a/.changes/next-release/feature-AWSServiceCatalogAppRegistry-14c15f3.json b/.changes/next-release/feature-AWSServiceCatalogAppRegistry-14c15f3.json new file mode 100644 index 000000000000..50e2e1e10bc5 --- /dev/null +++ b/.changes/next-release/feature-AWSServiceCatalogAppRegistry-14c15f3.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Service Catalog App Registry", + "contributor": "", + "description": "AWS Service Catalog AppRegistry provides a repository of your applications, their resources, and the application metadata that you use within your enterprise." +} diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 382f7d3cfc99..11fe5f66e949 100644 --- a/aws-sdk-java/pom.xml +++ b/aws-sdk-java/pom.xml @@ -1183,6 +1183,11 @@ Amazon AutoScaling, etc).
databrew ${awsjavasdk.version} + + software.amazon.awssdk + servicecatalogappregistry + ${awsjavasdk.version} + ${project.artifactId}-${project.version} diff --git a/bom/pom.xml b/bom/pom.xml index a523a5e011b3..99fb898f71d2 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -1308,6 +1308,11 @@ databrew ${awsjavasdk.version} + + software.amazon.awssdk + servicecatalogappregistry + ${awsjavasdk.version} + diff --git a/services/pom.xml b/services/pom.xml index cf368bbd57c1..af6aa0e302c2 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -254,6 +254,7 @@ timestreamquery s3outposts databrew + servicecatalogappregistry The AWS Java SDK services https://aws.amazon.com/sdkforjava diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml new file mode 100644 index 000000000000..7cb96d8d80df --- /dev/null +++ b/services/servicecatalogappregistry/pom.xml @@ -0,0 +1,60 @@ + + + + + 4.0.0 + + software.amazon.awssdk + services + 2.15.27-SNAPSHOT + + servicecatalogappregistry + AWS Java SDK :: Services :: Service Catalog App Registry + The AWS Java SDK for Service Catalog App Registry module holds the client classes that are used for + communicating with Service Catalog App Registry. + + https://aws.amazon.com/sdkforjava + + + + org.apache.maven.plugins + maven-jar-plugin + + + + software.amazon.awssdk.services.servicecatalogappregistry + + + + + + + + + + software.amazon.awssdk + protocol-core + ${awsjavasdk.version} + + + software.amazon.awssdk + aws-json-protocol + ${awsjavasdk.version} + + + diff --git a/services/servicecatalogappregistry/src/main/resources/codegen-resources/paginators-1.json b/services/servicecatalogappregistry/src/main/resources/codegen-resources/paginators-1.json new file mode 100644 index 000000000000..8c9a3bd7c9f8 --- /dev/null +++ b/services/servicecatalogappregistry/src/main/resources/codegen-resources/paginators-1.json @@ -0,0 +1,28 @@ +{ + "pagination": { + "ListApplications": { + "input_token": "nextToken", + "output_token": "nextToken", + "limit_key": "maxResults", + "result_key": "applications" + }, + "ListAssociatedAttributeGroups": { + "input_token": "nextToken", + "output_token": "nextToken", + "limit_key": "maxResults", + "result_key": "attributeGroups" + }, + "ListAssociatedResources": { + "input_token": "nextToken", + "output_token": "nextToken", + "limit_key": "maxResults", + "result_key": "resources" + }, + "ListAttributeGroups": { + "input_token": "nextToken", + "output_token": "nextToken", + "limit_key": "maxResults", + "result_key": "attributeGroups" + } + } +} diff --git a/services/servicecatalogappregistry/src/main/resources/codegen-resources/service-2.json b/services/servicecatalogappregistry/src/main/resources/codegen-resources/service-2.json new file mode 100644 index 000000000000..9b4e6bb0007d --- /dev/null +++ b/services/servicecatalogappregistry/src/main/resources/codegen-resources/service-2.json @@ -0,0 +1,1145 @@ +{ + "version":"2.0", + "metadata":{ + "apiVersion":"2020-06-24", + "endpointPrefix":"servicecatalog-appregistry", + "jsonVersion":"1.1", + "protocol":"rest-json", + "serviceAbbreviation":"AppRegistry", + "serviceFullName":"AWS Service Catalog App Registry", + "serviceId":"Service Catalog AppRegistry", + "signatureVersion":"v4", + "signingName":"servicecatalog", + "uid":"AWS242AppRegistry" + }, + "operations":{ + "AssociateAttributeGroup":{ + "name":"AssociateAttributeGroup", + "http":{ + "method":"PUT", + "requestUri":"/applications/{application}/attribute-groups/{attributeGroup}" + }, + "input":{"shape":"AssociateAttributeGroupRequest"}, + "output":{"shape":"AssociateAttributeGroupResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"}, + {"shape":"InternalServerException"}, + {"shape":"ServiceQuotaExceededException"} + ], + "documentation":"

Associates an attribute group with an application to augment the application's metadata with the group's attributes. This way applications can be described with user-defined details which are machine-readable (e.g. for third-party integrations).

" + }, + "AssociateResource":{ + "name":"AssociateResource", + "http":{ + "method":"PUT", + "requestUri":"/applications/{application}/resources/{resourceType}/{resource}" + }, + "input":{"shape":"AssociateResourceRequest"}, + "output":{"shape":"AssociateResourceResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServerException"}, + {"shape":"ServiceQuotaExceededException"}, + {"shape":"ConflictException"} + ], + "documentation":"

Associates a resource with an application. Both the resource and the application can be specified either by ID or name.

" + }, + "CreateApplication":{ + "name":"CreateApplication", + "http":{ + "method":"POST", + "requestUri":"/applications", + "responseCode":201 + }, + "input":{"shape":"CreateApplicationRequest"}, + "output":{"shape":"CreateApplicationResponse"}, + "errors":[ + {"shape":"ServiceQuotaExceededException"}, + {"shape":"ConflictException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Creates a new application that is the top-level node in a hierarchy of related cloud resource abstractions.

" + }, + "CreateAttributeGroup":{ + "name":"CreateAttributeGroup", + "http":{ + "method":"POST", + "requestUri":"/attribute-groups", + "responseCode":201 + }, + "input":{"shape":"CreateAttributeGroupRequest"}, + "output":{"shape":"CreateAttributeGroupResponse"}, + "errors":[ + {"shape":"ServiceQuotaExceededException"}, + {"shape":"ConflictException"}, + {"shape":"ValidationException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Creates a new attribute group as a container for user-defined attributes. This approach enables users to have full control over their cloud application's metadata in a rich machine-readable format to facilitate integration with automated workflows and third-party tools.

" + }, + "DeleteApplication":{ + "name":"DeleteApplication", + "http":{ + "method":"DELETE", + "requestUri":"/applications/{application}" + }, + "input":{"shape":"DeleteApplicationRequest"}, + "output":{"shape":"DeleteApplicationResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Delete an application, specified either by its application ID or name.

" + }, + "DeleteAttributeGroup":{ + "name":"DeleteAttributeGroup", + "http":{ + "method":"DELETE", + "requestUri":"/attribute-groups/{attributeGroup}" + }, + "input":{"shape":"DeleteAttributeGroupRequest"}, + "output":{"shape":"DeleteAttributeGroupResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Deletes an attribute group, specified either by its attribute group ID or name.

" + }, + "DisassociateAttributeGroup":{ + "name":"DisassociateAttributeGroup", + "http":{ + "method":"DELETE", + "requestUri":"/applications/{application}/attribute-groups/{attributeGroup}" + }, + "input":{"shape":"DisassociateAttributeGroupRequest"}, + "output":{"shape":"DisassociateAttributeGroupResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Disassociates an attribute group from an application to remove the extra attributes contained in the attribute group from the application's metadata. This operation reverts AssociateAttributeGroup.

" + }, + "DisassociateResource":{ + "name":"DisassociateResource", + "http":{ + "method":"DELETE", + "requestUri":"/applications/{application}/resources/{resourceType}/{resource}" + }, + "input":{"shape":"DisassociateResourceRequest"}, + "output":{"shape":"DisassociateResourceResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Disassociates a resource from application. Both the resource and the application can be specified either by ID or name.

" + }, + "GetApplication":{ + "name":"GetApplication", + "http":{ + "method":"GET", + "requestUri":"/applications/{application}" + }, + "input":{"shape":"GetApplicationRequest"}, + "output":{"shape":"GetApplicationResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Retrieves metadata information about one of your applications. The application can be specified either by its unique ID or by its name (which is unique within one account in one region at a given point in time). Specify by ID in automated workflows if you want to make sure that the exact same application is returned or a ResourceNotFoundException is thrown, avoiding the ABA addressing problem.

" + }, + "GetAttributeGroup":{ + "name":"GetAttributeGroup", + "http":{ + "method":"GET", + "requestUri":"/attribute-groups/{attributeGroup}" + }, + "input":{"shape":"GetAttributeGroupRequest"}, + "output":{"shape":"GetAttributeGroupResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Retrieves an attribute group, either by its name or its ID.

" + }, + "ListApplications":{ + "name":"ListApplications", + "http":{ + "method":"GET", + "requestUri":"/applications" + }, + "input":{"shape":"ListApplicationsRequest"}, + "output":{"shape":"ListApplicationsResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Retrieves a list of all of your applications. Results are paginated.

", + "idempotent":true + }, + "ListAssociatedAttributeGroups":{ + "name":"ListAssociatedAttributeGroups", + "http":{ + "method":"GET", + "requestUri":"/applications/{application}/attribute-groups" + }, + "input":{"shape":"ListAssociatedAttributeGroupsRequest"}, + "output":{"shape":"ListAssociatedAttributeGroupsResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Lists all attribute groups that are associated with specified application. Results are paginated.

", + "idempotent":true + }, + "ListAssociatedResources":{ + "name":"ListAssociatedResources", + "http":{ + "method":"GET", + "requestUri":"/applications/{application}/resources" + }, + "input":{"shape":"ListAssociatedResourcesRequest"}, + "output":{"shape":"ListAssociatedResourcesResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Lists all resources that are associated with specified application. Results are paginated.

", + "idempotent":true + }, + "ListAttributeGroups":{ + "name":"ListAttributeGroups", + "http":{ + "method":"GET", + "requestUri":"/attribute-groups" + }, + "input":{"shape":"ListAttributeGroupsRequest"}, + "output":{"shape":"ListAttributeGroupsResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Lists all attribute groups which you have access to. Results are paginated.

", + "idempotent":true + }, + "UpdateApplication":{ + "name":"UpdateApplication", + "http":{ + "method":"PATCH", + "requestUri":"/applications/{application}" + }, + "input":{"shape":"UpdateApplicationRequest"}, + "output":{"shape":"UpdateApplicationResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ConflictException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Updates an existing application with new attributes.

" + }, + "UpdateAttributeGroup":{ + "name":"UpdateAttributeGroup", + "http":{ + "method":"PATCH", + "requestUri":"/attribute-groups/{attributeGroup}" + }, + "input":{"shape":"UpdateAttributeGroupRequest"}, + "output":{"shape":"UpdateAttributeGroupResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"}, + {"shape":"ConflictException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Updates an existing attribute group with new details.

" + } + }, + "shapes":{ + "Application":{ + "type":"structure", + "members":{ + "id":{ + "shape":"ApplicationId", + "documentation":"

The identifier of the application.

" + }, + "arn":{ + "shape":"ApplicationArn", + "documentation":"

The Amazon resource name (ARN) that specifies the application across services.

" + }, + "name":{ + "shape":"Name", + "documentation":"

The name of the application. The name must be unique in the region in which you are creating the application.

" + }, + "description":{ + "shape":"Description", + "documentation":"

The description of the application.

" + }, + "creationTime":{ + "shape":"Timestamp", + "documentation":"

The ISO-8601 formatted timestamp of the moment when the application was created.

" + }, + "lastUpdateTime":{ + "shape":"Timestamp", + "documentation":"

The ISO-8601 formatted timestamp of the moment when the application was last updated.

" + }, + "tags":{ + "shape":"Tags", + "documentation":"

Key-value pairs you can use to associate with the application.

" + } + }, + "documentation":"

Represents a Service Catalog AppRegistry application that is the top-level node in a hierarchy of related cloud resource abstractions.

" + }, + "ApplicationArn":{ + "type":"string", + "pattern":"arn:aws[-a-z]*:servicecatalog:[a-z]{2}(-gov)?-[a-z]+-\\d:\\d{12}:/applications/[a-z0-9]+" + }, + "ApplicationId":{ + "type":"string", + "pattern":"[a-z0-9]{12}" + }, + "ApplicationSpecifier":{ + "type":"string", + "max":256, + "min":1, + "pattern":"\\w+" + }, + "ApplicationSummaries":{ + "type":"list", + "member":{"shape":"ApplicationSummary"} + }, + "ApplicationSummary":{ + "type":"structure", + "members":{ + "id":{ + "shape":"ApplicationId", + "documentation":"

The identifier of the application.

" + }, + "arn":{ + "shape":"ApplicationArn", + "documentation":"

The Amazon resource name (ARN) that specifies the application across services.

" + }, + "name":{ + "shape":"Name", + "documentation":"

The name of the application. The name must be unique in the region in which you are creating the application.

" + }, + "description":{ + "shape":"Description", + "documentation":"

The description of the application.

" + }, + "creationTime":{ + "shape":"Timestamp", + "documentation":"

The ISO-8601 formatted timestamp of the moment when the application was created.

" + }, + "lastUpdateTime":{ + "shape":"Timestamp", + "documentation":"

The ISO-8601 formatted timestamp of the moment when the application was last updated.

" + } + }, + "documentation":"

Summary of a Service Catalog AppRegistry application.

" + }, + "Arn":{ + "type":"string", + "max":1600, + "min":1, + "pattern":"arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\\-])+:([a-z]{2}(-gov)?-[a-z]+-\\d{1})?:(\\d{12})?:(.*)" + }, + "AssociateAttributeGroupRequest":{ + "type":"structure", + "required":[ + "application", + "attributeGroup" + ], + "members":{ + "application":{ + "shape":"ApplicationSpecifier", + "documentation":"

The name or ID of the application.

", + "location":"uri", + "locationName":"application" + }, + "attributeGroup":{ + "shape":"AttributeGroupSpecifier", + "documentation":"

The name or ID of the attribute group that holds the attributes to describe the application.

", + "location":"uri", + "locationName":"attributeGroup" + } + } + }, + "AssociateAttributeGroupResponse":{ + "type":"structure", + "members":{ + "applicationArn":{ + "shape":"ApplicationArn", + "documentation":"

The Amazon resource name (ARN) of the application that was augmented with attributes.

" + }, + "attributeGroupArn":{ + "shape":"AttributeGroupArn", + "documentation":"

The Amazon resource name (ARN) of the attribute group that contains the application's new attributes.

" + } + } + }, + "AssociateResourceRequest":{ + "type":"structure", + "required":[ + "application", + "resourceType", + "resource" + ], + "members":{ + "application":{ + "shape":"ApplicationSpecifier", + "documentation":"

The name or ID of the application.

", + "location":"uri", + "locationName":"application" + }, + "resourceType":{ + "shape":"ResourceType", + "location":"uri", + "locationName":"resourceType" + }, + "resource":{ + "shape":"ResourceSpecifier", + "documentation":"

The name or ID of the resource of which the application will be associated.

", + "location":"uri", + "locationName":"resource" + } + } + }, + "AssociateResourceResponse":{ + "type":"structure", + "members":{ + "applicationArn":{ + "shape":"ApplicationArn", + "documentation":"

The Amazon resource name (ARN) of the application that was augmented with attributes.

" + }, + "resourceArn":{ + "shape":"Arn", + "documentation":"

The Amazon resource name (ARN) that specifies the resource.

" + } + } + }, + "AssociationCount":{ + "type":"integer", + "min":0 + }, + "AttributeGroup":{ + "type":"structure", + "members":{ + "id":{ + "shape":"AttributeGroupId", + "documentation":"

The globally unique attribute group identifier of the attribute group.

" + }, + "arn":{ + "shape":"AttributeGroupArn", + "documentation":"

The Amazon resource name (ARN) that specifies the application across services.

" + }, + "name":{ + "shape":"Name", + "documentation":"

The name of the attribute group.

" + }, + "description":{ + "shape":"Description", + "documentation":"

The description of the attribute group that the user provides.

" + }, + "creationTime":{ + "shape":"Timestamp", + "documentation":"

The ISO-8601 formatted timestamp of the moment the attribute group was created.

" + }, + "lastUpdateTime":{ + "shape":"Timestamp", + "documentation":"

The ISO-8601 formatted timestamp of the moment the attribute group was last updated. This time is the same as the creationTime for a newly created attribute group.

" + }, + "tags":{ + "shape":"Tags", + "documentation":"

Key-value pairs you can use to associate with the attribute group.

" + } + }, + "documentation":"

Represents a Service Catalog AppRegistry attribute group that is rich metadata which describes an application and its components.

" + }, + "AttributeGroupArn":{ + "type":"string", + "pattern":"arn:aws[-a-z]*:servicecatalog:[a-z]{2}(-gov)?-[a-z]+-\\d:\\d{12}:/attribute-groups/[a-z0-9]+" + }, + "AttributeGroupId":{ + "type":"string", + "max":100, + "min":1, + "pattern":"[a-z0-9]{12}" + }, + "AttributeGroupIds":{ + "type":"list", + "member":{"shape":"AttributeGroupId"} + }, + "AttributeGroupSpecifier":{ + "type":"string", + "max":256, + "min":1, + "pattern":"\\w+" + }, + "AttributeGroupSummaries":{ + "type":"list", + "member":{"shape":"AttributeGroupSummary"} + }, + "AttributeGroupSummary":{ + "type":"structure", + "members":{ + "id":{ + "shape":"AttributeGroupId", + "documentation":"

The globally unique attribute group identifier of the attribute group.

" + }, + "arn":{ + "shape":"AttributeGroupArn", + "documentation":"

The Amazon resource name (ARN) that specifies the application across services.

" + }, + "name":{ + "shape":"Name", + "documentation":"

The name of the attribute group.

" + }, + "description":{ + "shape":"Description", + "documentation":"

The description of the attribute group that the user provides.

" + }, + "creationTime":{ + "shape":"Timestamp", + "documentation":"

The ISO-8601 formatted timestamp of the moment the attribute group was created.

" + }, + "lastUpdateTime":{ + "shape":"Timestamp", + "documentation":"

The ISO-8601 formatted timestamp of the moment the attribute group was last updated. This time is the same as the creationTime for a newly created attribute group.

" + } + }, + "documentation":"

Summary of a Service Catalog AppRegistry attribute group.

" + }, + "Attributes":{ + "type":"string", + "max":8000, + "min":1, + "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+" + }, + "ClientToken":{ + "type":"string", + "max":128, + "min":1, + "pattern":"[a-zA-Z0-9][a-zA-Z0-9_-]*" + }, + "ConflictException":{ + "type":"structure", + "members":{ + "message":{"shape":"String"} + }, + "documentation":"

There was a conflict when processing the request (for example, a resource with the given name already exists within the account).

", + "error":{"httpStatusCode":409}, + "exception":true + }, + "CreateApplicationRequest":{ + "type":"structure", + "required":[ + "name", + "clientToken" + ], + "members":{ + "name":{ + "shape":"Name", + "documentation":"

The name of the application. The name must be unique in the region in which you are creating the application.

" + }, + "description":{ + "shape":"Description", + "documentation":"

The description of the application.

" + }, + "tags":{ + "shape":"Tags", + "documentation":"

Key-value pairs you can use to associate with the application.

" + }, + "clientToken":{ + "shape":"ClientToken", + "documentation":"

A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the clientToken, the same response is returned for each repeated request.

", + "idempotencyToken":true + } + } + }, + "CreateApplicationResponse":{ + "type":"structure", + "members":{ + "application":{ + "shape":"Application", + "documentation":"

The name or ID of the application.

" + } + } + }, + "CreateAttributeGroupRequest":{ + "type":"structure", + "required":[ + "name", + "attributes", + "clientToken" + ], + "members":{ + "name":{ + "shape":"Name", + "documentation":"

The name of the attribute group.

" + }, + "description":{ + "shape":"Description", + "documentation":"

The description of the attribute group that the user provides.

" + }, + "attributes":{ + "shape":"Attributes", + "documentation":"

A JSON string in the form of nested key-value pairs that represent the attributes in the group and describes an application and its components.

" + }, + "tags":{ + "shape":"Tags", + "documentation":"

Key-value pairs you can use to associate with the attribute group.

" + }, + "clientToken":{ + "shape":"ClientToken", + "documentation":"

A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the clientToken, the same response is returned for each repeated request.

", + "idempotencyToken":true + } + } + }, + "CreateAttributeGroupResponse":{ + "type":"structure", + "members":{ + "attributeGroup":{ + "shape":"AttributeGroup", + "documentation":"

The name or ID of the attribute group that holds the attributes to describe the application.

" + } + } + }, + "DeleteApplicationRequest":{ + "type":"structure", + "required":["application"], + "members":{ + "application":{ + "shape":"ApplicationSpecifier", + "documentation":"

The name or ID of the application.

", + "location":"uri", + "locationName":"application" + } + } + }, + "DeleteApplicationResponse":{ + "type":"structure", + "members":{ + "application":{ + "shape":"ApplicationSummary", + "documentation":"

The name or ID of the application.

" + } + } + }, + "DeleteAttributeGroupRequest":{ + "type":"structure", + "required":["attributeGroup"], + "members":{ + "attributeGroup":{ + "shape":"AttributeGroupSpecifier", + "documentation":"

The name or ID of the attribute group that holds the attributes to describe the application.

", + "location":"uri", + "locationName":"attributeGroup" + } + } + }, + "DeleteAttributeGroupResponse":{ + "type":"structure", + "members":{ + "attributeGroup":{ + "shape":"AttributeGroupSummary", + "documentation":"

The name or ID of the attribute group that holds the attributes to describe the application.

" + } + } + }, + "Description":{ + "type":"string", + "max":1024 + }, + "DisassociateAttributeGroupRequest":{ + "type":"structure", + "required":[ + "application", + "attributeGroup" + ], + "members":{ + "application":{ + "shape":"ApplicationSpecifier", + "documentation":"

The name or ID of the application.

", + "location":"uri", + "locationName":"application" + }, + "attributeGroup":{ + "shape":"AttributeGroupSpecifier", + "documentation":"

The name or ID of the attribute group that holds the attributes to describe the application.

", + "location":"uri", + "locationName":"attributeGroup" + } + } + }, + "DisassociateAttributeGroupResponse":{ + "type":"structure", + "members":{ + "applicationArn":{ + "shape":"ApplicationArn", + "documentation":"

The Amazon resource name (ARN) of the application that was augmented with attributes.

" + }, + "attributeGroupArn":{ + "shape":"AttributeGroupArn", + "documentation":"

The Amazon resource name (ARN) of the attribute group that contains the application's new attributes.

" + } + } + }, + "DisassociateResourceRequest":{ + "type":"structure", + "required":[ + "application", + "resourceType", + "resource" + ], + "members":{ + "application":{ + "shape":"ApplicationSpecifier", + "documentation":"

The name or ID of the application.

", + "location":"uri", + "locationName":"application" + }, + "resourceType":{ + "shape":"ResourceType", + "documentation":"

The type of the resource that's being disassociated.

", + "location":"uri", + "locationName":"resourceType" + }, + "resource":{ + "shape":"ResourceSpecifier", + "documentation":"

The name or ID of the resource of which the application will be associated.

", + "location":"uri", + "locationName":"resource" + } + } + }, + "DisassociateResourceResponse":{ + "type":"structure", + "members":{ + "applicationArn":{ + "shape":"ApplicationArn", + "documentation":"

The Amazon resource name (ARN) of the application that was augmented with attributes.

" + }, + "resourceArn":{ + "shape":"Arn", + "documentation":"

The Amazon resource name (ARN) that specifies the resource.

" + } + } + }, + "GetApplicationRequest":{ + "type":"structure", + "required":["application"], + "members":{ + "application":{ + "shape":"ApplicationSpecifier", + "documentation":"

The name or ID of the application.

", + "location":"uri", + "locationName":"application" + } + } + }, + "GetApplicationResponse":{ + "type":"structure", + "members":{ + "id":{ + "shape":"ApplicationId", + "documentation":"

The identifier of the application.

" + }, + "arn":{ + "shape":"ApplicationArn", + "documentation":"

The Amazon resource name (ARN) that specifies the application across services.

" + }, + "name":{ + "shape":"Name", + "documentation":"

The name of the application. The name must be unique in the region in which you are creating the application.

" + }, + "description":{ + "shape":"Description", + "documentation":"

The description of the application.

" + }, + "creationTime":{ + "shape":"Timestamp", + "documentation":"

The ISO-8601 formatted timestamp of the moment when the application was created.

" + }, + "lastUpdateTime":{ + "shape":"Timestamp", + "documentation":"

The ISO-8601 formatted timestamp of the moment when the application was last updated.

" + }, + "associatedResourceCount":{ + "shape":"AssociationCount", + "documentation":"

The number of top-level resources that were registered as part of this application.

" + }, + "tags":{ + "shape":"Tags", + "documentation":"

Key-value pairs you can use to associate with the application.

" + } + } + }, + "GetAttributeGroupRequest":{ + "type":"structure", + "required":["attributeGroup"], + "members":{ + "attributeGroup":{ + "shape":"AttributeGroupSpecifier", + "documentation":"

The name or ID of the attribute group that holds the attributes to describe the application.

", + "location":"uri", + "locationName":"attributeGroup" + } + } + }, + "GetAttributeGroupResponse":{ + "type":"structure", + "members":{ + "id":{ + "shape":"AttributeGroupId", + "documentation":"

The identifier of the application.

" + }, + "arn":{ + "shape":"AttributeGroupArn", + "documentation":"

The Amazon resource name (ARN) that specifies the application across services.

" + }, + "name":{ + "shape":"Name", + "documentation":"

The name of the attribute group.

" + }, + "description":{ + "shape":"Description", + "documentation":"

The description of the attribute group that the user provides.

" + }, + "attributes":{ + "shape":"Attributes", + "documentation":"

A JSON string in the form of nested key-value pairs that represent the attributes in the group and describes an application and its components.

" + }, + "creationTime":{ + "shape":"Timestamp", + "documentation":"

The ISO-8601 formatted timestamp of the moment the attribute group was created.

" + }, + "lastUpdateTime":{ + "shape":"Timestamp", + "documentation":"

The ISO-8601 formatted timestamp of the moment the attribute group was last updated. This time is the same as the creationTime for a newly created attribute group.

" + }, + "tags":{ + "shape":"Tags", + "documentation":"

Key-value pairs you can use to associate with the attribute group.

" + } + } + }, + "InternalServerException":{ + "type":"structure", + "members":{ + "message":{"shape":"String"} + }, + "documentation":"

The service is experiencing internal problems.

", + "error":{"httpStatusCode":500}, + "exception":true, + "fault":true + }, + "ListApplicationsRequest":{ + "type":"structure", + "members":{ + "nextToken":{ + "shape":"NextToken", + "documentation":"

The token to use to get the next page of results after a previous API call.

", + "location":"querystring", + "locationName":"nextToken" + }, + "maxResults":{ + "shape":"MaxResults", + "documentation":"

The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.

", + "box":true, + "location":"querystring", + "locationName":"maxResults" + } + } + }, + "ListApplicationsResponse":{ + "type":"structure", + "members":{ + "applications":{ + "shape":"ApplicationSummaries", + "documentation":"

The name or ID of the application.

" + }, + "nextToken":{ + "shape":"NextToken", + "documentation":"

The token to use to get the next page of results after a previous API call.

" + } + } + }, + "ListAssociatedAttributeGroupsRequest":{ + "type":"structure", + "required":["application"], + "members":{ + "application":{ + "shape":"ApplicationSpecifier", + "documentation":"

The name or ID of the application.

", + "location":"uri", + "locationName":"application" + }, + "nextToken":{ + "shape":"NextToken", + "documentation":"

The token to use to get the next page of results after a previous API call.

", + "location":"querystring", + "locationName":"nextToken" + }, + "maxResults":{ + "shape":"MaxResults", + "documentation":"

The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.

", + "box":true, + "location":"querystring", + "locationName":"maxResults" + } + } + }, + "ListAssociatedAttributeGroupsResponse":{ + "type":"structure", + "members":{ + "attributeGroups":{ + "shape":"AttributeGroupIds", + "documentation":"

A list of attribute group IDs.

" + }, + "nextToken":{ + "shape":"NextToken", + "documentation":"

The token to use to get the next page of results after a previous API call.

" + } + } + }, + "ListAssociatedResourcesRequest":{ + "type":"structure", + "required":["application"], + "members":{ + "application":{ + "shape":"ApplicationSpecifier", + "documentation":"

The name or ID of the application.

", + "location":"uri", + "locationName":"application" + }, + "nextToken":{ + "shape":"NextToken", + "documentation":"

The token to use to get the next page of results after a previous API call.

", + "location":"querystring", + "locationName":"nextToken" + }, + "maxResults":{ + "shape":"MaxResults", + "documentation":"

The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.

", + "box":true, + "location":"querystring", + "locationName":"maxResults" + } + } + }, + "ListAssociatedResourcesResponse":{ + "type":"structure", + "members":{ + "resources":{ + "shape":"Resources", + "documentation":"

The name or ID of the resource of which the application will be associated.

" + }, + "nextToken":{ + "shape":"NextToken", + "documentation":"

The token to use to get the next page of results after a previous API call.

" + } + } + }, + "ListAttributeGroupsRequest":{ + "type":"structure", + "members":{ + "nextToken":{ + "shape":"NextToken", + "documentation":"

The token to use to get the next page of results after a previous API call.

", + "location":"querystring", + "locationName":"nextToken" + }, + "maxResults":{ + "shape":"MaxResults", + "documentation":"

The upper bound of the number of results to return (cannot exceed 25). If this parameter is omitted, it defaults to 25. This value is optional.

", + "box":true, + "location":"querystring", + "locationName":"maxResults" + } + } + }, + "ListAttributeGroupsResponse":{ + "type":"structure", + "members":{ + "attributeGroups":{ + "shape":"AttributeGroupSummaries", + "documentation":"

A list of attribute group IDs.

" + }, + "nextToken":{ + "shape":"NextToken", + "documentation":"

The token to use to get the next page of results after a previous API call.

" + } + } + }, + "MaxResults":{ + "type":"integer", + "max":25, + "min":1 + }, + "Name":{ + "type":"string", + "max":256, + "min":1, + "pattern":"\\w+" + }, + "NextToken":{ + "type":"string", + "max":2024, + "min":1, + "pattern":"[A-Za-z0-9+/=]+" + }, + "ResourceInfo":{ + "type":"structure", + "members":{ + "name":{ + "shape":"ResourceSpecifier", + "documentation":"

The name of the resource.

" + }, + "arn":{ + "shape":"StackArn", + "documentation":"

The Amazon resource name (ARN) that specifies the application across services.

" + } + }, + "documentation":"

Information about the resource.

" + }, + "ResourceNotFoundException":{ + "type":"structure", + "members":{ + "message":{"shape":"String"} + }, + "documentation":"

The specified resource does not exist.

", + "error":{"httpStatusCode":404}, + "exception":true + }, + "ResourceSpecifier":{ + "type":"string", + "max":256, + "min":1, + "pattern":"\\S+" + }, + "ResourceType":{ + "type":"string", + "enum":["CFN_STACK"] + }, + "Resources":{ + "type":"list", + "member":{"shape":"ResourceInfo"} + }, + "ServiceQuotaExceededException":{ + "type":"structure", + "members":{ + "message":{"shape":"String"} + }, + "documentation":"

The maximum number of resources per account has been reached.

", + "error":{"httpStatusCode":402}, + "exception":true + }, + "StackArn":{ + "type":"string", + "pattern":"arn:aws[-a-z]*:cloudformation:[a-z]{2}(-gov)?-[a-z]+-\\d:\\d{12}:stack/[a-zA-Z][-A-Za-z0-9]{0,127}/[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}" + }, + "String":{"type":"string"}, + "TagKey":{ + "type":"string", + "max":128, + "min":1, + "pattern":"(?!aws:)[a-zA-Z+-=._:/]+" + }, + "TagValue":{ + "type":"string", + "max":256, + "pattern":"[\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*" + }, + "Tags":{ + "type":"map", + "key":{"shape":"TagKey"}, + "value":{"shape":"TagValue"}, + "max":50, + "min":0 + }, + "Timestamp":{ + "type":"timestamp", + "timestampFormat":"iso8601" + }, + "UpdateApplicationRequest":{ + "type":"structure", + "required":["application"], + "members":{ + "application":{ + "shape":"ApplicationSpecifier", + "documentation":"

The name or ID of the application. The name must be unique in the region in which you are updating the attribute group.

", + "location":"uri", + "locationName":"application" + }, + "name":{ + "shape":"Name", + "documentation":"

The anme of the application. The name must be unique in the region in which you are creating the application.

" + }, + "description":{ + "shape":"Description", + "documentation":"

The description of the application.

" + } + } + }, + "UpdateApplicationResponse":{ + "type":"structure", + "members":{ + "application":{ + "shape":"Application", + "documentation":"

The name or ID of the application.

" + } + } + }, + "UpdateAttributeGroupRequest":{ + "type":"structure", + "required":["attributeGroup"], + "members":{ + "attributeGroup":{ + "shape":"AttributeGroupSpecifier", + "documentation":"

The name or ID of the attribute group that holds the attributes to describe the application.

", + "location":"uri", + "locationName":"attributeGroup" + }, + "name":{ + "shape":"Name", + "documentation":"

The new name of the attribute group. The name must be unique in the region in which you are updating the attribute group.

" + }, + "description":{ + "shape":"Description", + "documentation":"

The description of the attribute group that the user provides.

" + }, + "attributes":{ + "shape":"Attributes", + "documentation":"

A JSON string in the form of nested key-value pairs that represent the attributes in the group and describes an application and its components.

" + } + } + }, + "UpdateAttributeGroupResponse":{ + "type":"structure", + "members":{ + "attributeGroup":{ + "shape":"AttributeGroup", + "documentation":"

The name or ID of the attribute group that holds the attributes to describe the application.

" + } + } + }, + "ValidationException":{ + "type":"structure", + "members":{ + "message":{"shape":"String"} + }, + "documentation":"

The request has invalid or missing parameters.

", + "error":{"httpStatusCode":400}, + "exception":true + } + }, + "documentation":"

AWS Service Catalog AppRegistry enables organizations to understand the application context of their AWS resources. AppRegistry provides a repository of your applications, their resources, and the application metadata that you use within your enterprise.

" +} From 2f40f61042086328b5648d27ecc3840752ecdcf9 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 12 Nov 2020 19:16:29 +0000 Subject: [PATCH 185/339] Amazon Lex Model Building Service Update: Lex now supports es-ES, it-IT, fr-FR and fr-CA locales --- .../feature-AmazonLexModelBuildingService-bbd0a5e.json | 6 ++++++ .../src/main/resources/codegen-resources/service-2.json | 6 +++++- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AmazonLexModelBuildingService-bbd0a5e.json diff --git a/.changes/next-release/feature-AmazonLexModelBuildingService-bbd0a5e.json b/.changes/next-release/feature-AmazonLexModelBuildingService-bbd0a5e.json new file mode 100644 index 000000000000..8269c11d3af9 --- /dev/null +++ b/.changes/next-release/feature-AmazonLexModelBuildingService-bbd0a5e.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Lex Model Building Service", + "contributor": "", + "description": "Lex now supports es-ES, it-IT, fr-FR and fr-CA locales" +} diff --git a/services/lexmodelbuilding/src/main/resources/codegen-resources/service-2.json b/services/lexmodelbuilding/src/main/resources/codegen-resources/service-2.json index d3071c5fef32..51781fa9d2a9 100644 --- a/services/lexmodelbuilding/src/main/resources/codegen-resources/service-2.json +++ b/services/lexmodelbuilding/src/main/resources/codegen-resources/service-2.json @@ -2656,7 +2656,11 @@ "en-AU", "en-GB", "en-US", - "es-US" + "es-ES", + "es-US", + "fr-FR", + "fr-CA", + "it-IT" ] }, "LocaleList":{ From 8b37753712d8426f00d03b665bbe7d79f938028a Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 12 Nov 2020 19:18:19 +0000 Subject: [PATCH 186/339] Release 2.15.27. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.27.json | 48 +++++++++++++++++++ .../next-release/feature-AWSIoT-90ab102.json | 6 --- .../feature-AWSRoboMaker-019cb8a.json | 6 --- ...-AWSServiceCatalogAppRegistry-14c15f3.json | 6 --- ...AmazonLexModelBuildingService-bbd0a5e.json | 6 --- .../feature-AmazonLightsail-d6e9288.json | 6 --- ...ture-AmazonPersonalizeRuntime-770dd01.json | 6 --- .../feature-AmazonPolly-8f716d6.json | 6 --- CHANGELOG.md | 29 +++++++++++ README.md | 8 ++-- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 292 files changed, 363 insertions(+), 328 deletions(-) create mode 100644 .changes/2.15.27.json delete mode 100644 .changes/next-release/feature-AWSIoT-90ab102.json delete mode 100644 .changes/next-release/feature-AWSRoboMaker-019cb8a.json delete mode 100644 .changes/next-release/feature-AWSServiceCatalogAppRegistry-14c15f3.json delete mode 100644 .changes/next-release/feature-AmazonLexModelBuildingService-bbd0a5e.json delete mode 100644 .changes/next-release/feature-AmazonLightsail-d6e9288.json delete mode 100644 .changes/next-release/feature-AmazonPersonalizeRuntime-770dd01.json delete mode 100644 .changes/next-release/feature-AmazonPolly-8f716d6.json diff --git a/.changes/2.15.27.json b/.changes/2.15.27.json new file mode 100644 index 000000000000..cc9e30fd7cbf --- /dev/null +++ b/.changes/2.15.27.json @@ -0,0 +1,48 @@ +{ + "version": "2.15.27", + "date": "2020-11-12", + "entries": [ + { + "type": "feature", + "category": "AWS IoT", + "contributor": "", + "description": "This release adds a batchMode parameter to the IotEvents, IotAnalytics, and Firehose actions which allows customers to send an array of messages to the corresponding services" + }, + { + "type": "feature", + "category": "Amazon Personalize Runtime", + "contributor": "", + "description": "Adds support to use dynamic filters with Personalize." + }, + { + "type": "feature", + "category": "Amazon Lex Model Building Service", + "contributor": "", + "description": "Lex now supports es-ES, it-IT, fr-FR and fr-CA locales" + }, + { + "type": "feature", + "category": "AWS RoboMaker", + "contributor": "", + "description": "This release introduces Robomaker Worldforge TagsOnCreate which allows customers to tag worlds as they are being generated by providing the tags while configuring a world generation job." + }, + { + "type": "feature", + "category": "AWS Service Catalog App Registry", + "contributor": "", + "description": "AWS Service Catalog AppRegistry provides a repository of your applications, their resources, and the application metadata that you use within your enterprise." + }, + { + "type": "feature", + "category": "Amazon Lightsail", + "contributor": "", + "description": "This release adds support for Amazon Lightsail container services. You can now create a Lightsail container service, and deploy Docker images to it." + }, + { + "type": "feature", + "category": "Amazon Polly", + "contributor": "", + "description": "Amazon Polly adds new Australian English female voice - Olivia. Olivia is available as Neural voice only." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSIoT-90ab102.json b/.changes/next-release/feature-AWSIoT-90ab102.json deleted file mode 100644 index 64056672d63d..000000000000 --- a/.changes/next-release/feature-AWSIoT-90ab102.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS IoT", - "contributor": "", - "description": "This release adds a batchMode parameter to the IotEvents, IotAnalytics, and Firehose actions which allows customers to send an array of messages to the corresponding services" -} diff --git a/.changes/next-release/feature-AWSRoboMaker-019cb8a.json b/.changes/next-release/feature-AWSRoboMaker-019cb8a.json deleted file mode 100644 index 3cb4a4c2ed39..000000000000 --- a/.changes/next-release/feature-AWSRoboMaker-019cb8a.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS RoboMaker", - "contributor": "", - "description": "This release introduces Robomaker Worldforge TagsOnCreate which allows customers to tag worlds as they are being generated by providing the tags while configuring a world generation job." -} diff --git a/.changes/next-release/feature-AWSServiceCatalogAppRegistry-14c15f3.json b/.changes/next-release/feature-AWSServiceCatalogAppRegistry-14c15f3.json deleted file mode 100644 index 50e2e1e10bc5..000000000000 --- a/.changes/next-release/feature-AWSServiceCatalogAppRegistry-14c15f3.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Service Catalog App Registry", - "contributor": "", - "description": "AWS Service Catalog AppRegistry provides a repository of your applications, their resources, and the application metadata that you use within your enterprise." -} diff --git a/.changes/next-release/feature-AmazonLexModelBuildingService-bbd0a5e.json b/.changes/next-release/feature-AmazonLexModelBuildingService-bbd0a5e.json deleted file mode 100644 index 8269c11d3af9..000000000000 --- a/.changes/next-release/feature-AmazonLexModelBuildingService-bbd0a5e.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Lex Model Building Service", - "contributor": "", - "description": "Lex now supports es-ES, it-IT, fr-FR and fr-CA locales" -} diff --git a/.changes/next-release/feature-AmazonLightsail-d6e9288.json b/.changes/next-release/feature-AmazonLightsail-d6e9288.json deleted file mode 100644 index 14ce6b2e2774..000000000000 --- a/.changes/next-release/feature-AmazonLightsail-d6e9288.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Lightsail", - "contributor": "", - "description": "This release adds support for Amazon Lightsail container services. You can now create a Lightsail container service, and deploy Docker images to it." -} diff --git a/.changes/next-release/feature-AmazonPersonalizeRuntime-770dd01.json b/.changes/next-release/feature-AmazonPersonalizeRuntime-770dd01.json deleted file mode 100644 index 68507b638637..000000000000 --- a/.changes/next-release/feature-AmazonPersonalizeRuntime-770dd01.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Personalize Runtime", - "contributor": "", - "description": "Adds support to use dynamic filters with Personalize." -} diff --git a/.changes/next-release/feature-AmazonPolly-8f716d6.json b/.changes/next-release/feature-AmazonPolly-8f716d6.json deleted file mode 100644 index 4112e317ea32..000000000000 --- a/.changes/next-release/feature-AmazonPolly-8f716d6.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Polly", - "contributor": "", - "description": "Amazon Polly adds new Australian English female voice - Olivia. Olivia is available as Neural voice only." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fa21535527f..e72db5ba870a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,32 @@ +# __2.15.27__ __2020-11-12__ +## __AWS IoT__ + - ### Features + - This release adds a batchMode parameter to the IotEvents, IotAnalytics, and Firehose actions which allows customers to send an array of messages to the corresponding services + +## __AWS RoboMaker__ + - ### Features + - This release introduces Robomaker Worldforge TagsOnCreate which allows customers to tag worlds as they are being generated by providing the tags while configuring a world generation job. + +## __AWS Service Catalog App Registry__ + - ### Features + - AWS Service Catalog AppRegistry provides a repository of your applications, their resources, and the application metadata that you use within your enterprise. + +## __Amazon Lex Model Building Service__ + - ### Features + - Lex now supports es-ES, it-IT, fr-FR and fr-CA locales + +## __Amazon Lightsail__ + - ### Features + - This release adds support for Amazon Lightsail container services. You can now create a Lightsail container service, and deploy Docker images to it. + +## __Amazon Personalize Runtime__ + - ### Features + - Adds support to use dynamic filters with Personalize. + +## __Amazon Polly__ + - ### Features + - Amazon Polly adds new Australian English female voice - Olivia. Olivia is available as Neural voice only. + # __2.15.26__ __2020-11-11__ ## __AWS Amplify__ - ### Features diff --git a/README.md b/README.md index 0b60d67d697e..d543d2ba557b 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.26 + 2.15.27 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.26 + 2.15.27 software.amazon.awssdk s3 - 2.15.26 + 2.15.27 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.26 + 2.15.27 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index f25e598ddc77..e6c5b1889676 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index b88e279a11ca..a6f8579e0df3 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 11fe5f66e949..0030466b5c0a 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.15.27-SNAPSHOT + 2.15.27 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 6471adbae141..95cb846460e7 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 99fb898f71d2..f5e989adf76b 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.27-SNAPSHOT + 2.15.27 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 2aac25590198..b5a1138d1397 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.27-SNAPSHOT + 2.15.27 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 80075e01e1a0..7a611e426516 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.15.27-SNAPSHOT + 2.15.27 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 943eb6cfdfae..b24b10747a2b 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.27-SNAPSHOT + 2.15.27 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 25a7924ae88c..15113fc5ab06 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.15.27-SNAPSHOT + 2.15.27 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 333adf43b0b6..11c20d23a4ca 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.27-SNAPSHOT + 2.15.27 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 051e5f493944..145b76cfff38 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 13cc699ea8db..1580e0a0a198 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 598d05594147..6cc9584d063c 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.27-SNAPSHOT + 2.15.27 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 4e5daf4f1788..e5cf40817e23 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.27-SNAPSHOT + 2.15.27 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index b601b99b712e..f851940fe682 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index d46961088382..9e3eb1fcd3aa 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index c8f0d8dc5e94..aea14cd1a83a 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.27-SNAPSHOT + 2.15.27 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 522ad1427da1..20df1b8e0137 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.15.27-SNAPSHOT + 2.15.27 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index d94f79bcd593..60fd5ab98b59 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 716af72d5117..563bcc08cf5f 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.15.27-SNAPSHOT + 2.15.27 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 189d29c19e4f..7f9feaddd2dd 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.15.27-SNAPSHOT + 2.15.27 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index aeaa606e02c5..6d24bfefc3b3 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.15.27-SNAPSHOT + 2.15.27 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index a3f7b3ede551..0fc233591567 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index f2fe636a04a5..87d9f9be90dd 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index bb398aeeb2f4..a06e2000b425 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.27-SNAPSHOT + 2.15.27 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 05645f720f07..fa7ec1538df0 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.27-SNAPSHOT + 2.15.27 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index aa12facf95c3..6ecfdfff0c48 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.15.27-SNAPSHOT + 2.15.27 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 975374f24f80..c24bdcfde1f6 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.15.27-SNAPSHOT + 2.15.27 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 95fa7d0db65e..ed6616fa5c9c 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.15.27-SNAPSHOT + 2.15.27 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 406901c16892..f806323eb745 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.15.27-SNAPSHOT + 2.15.27 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 20a5ce9365a9..01537093684f 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index bc2a9fa357cf..ea641fb7ab09 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.15.27-SNAPSHOT + 2.15.27 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 72a697e4a6ce..4957094a73d6 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.15.27-SNAPSHOT + 2.15.27 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 4f88acdc1eb9..1db43f591168 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.27-SNAPSHOT + 2.15.27 metric-publishers diff --git a/pom.xml b/pom.xml index f2a8b543fc84..8d6d736446da 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.27-SNAPSHOT + 2.15.27 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 66bd4dcef28a..4169bec1d5eb 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.27-SNAPSHOT + 2.15.27 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index a28e83348584..87f5061eb305 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.15.27-SNAPSHOT + 2.15.27 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 8a9fc272f40c..63f91d9d4426 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.27-SNAPSHOT + 2.15.27 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 57813608ad90..ffc847d0eb1f 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index a82ebea8e6a4..497f8bb78733 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 6addb723a4df..d01f31edee51 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 9056d899718e..40c031e0fcce 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 364167132c64..90fc4a62b8d2 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 7037d886d670..620f3e4948de 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index daeb6501fa02..a43cdc7ce3f2 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 5c61e456857d..d8e45e45daed 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index cb931bb3cf1e..e0600e7e220d 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index b39d36e411c4..42171fe4673c 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index b74f99a8959c..d9e7035ef84e 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 21470b1b3a37..456dad6dfcb9 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 0c7af1f98440..2d62f1a25e26 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index a8fe05da8854..39006889a9ba 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index d5e0fb9c8a0a..0e391cf442e0 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 7a4db8b78121..05946066223b 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index f77251214e6d..c8de36a10b4e 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 748852dda3f0..30517b47ec0d 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index cf51c4db0dc8..c3ca3e949fca 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 078aa6a95312..a0ed50cd4d95 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 57555834e0ff..d9a85a826b4e 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 8ab6e38b3f22..0d86b20ffd67 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 72a701e70736..0c14f3138533 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index a43409c67220..135ca5db0f30 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 1b667475e805..071206997cf7 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 2e91185f4e27..b5dade43df65 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 0a993c734bf0..49c6d2e19f13 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index c7ef18bbe4f3..01c596c68c34 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 49b5690d3fc7..4ca9791dcebb 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 0ffde63b1460..3921af26f329 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index c64abface691..11dce635cea9 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 3cc07151e75c..66093d006370 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 10950aeb173a..0df295fab4d7 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 8a72f8bcdefe..9228106d1389 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index bbb611739883..ccbaf8f7a5c3 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index c94f8c109837..e0c8744658b8 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index e4893f02ca51..b1dece967bfb 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 1569080b9cad..c2668bab6957 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index f1fa21a59ca5..dec03a4620e1 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 03b04067a741..553be3b5d0fd 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 0d1e7186850e..12b831a1cefd 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 615f40e66fd6..c29c0617a546 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 2023033af5e8..285eb5b210a4 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index a5832962bc71..dfd933b76714 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 85e4d78dd640..ba55d83c8b56 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 92cfd181fd30..a7930dfc885c 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 44cdb915bff6..2c1e68a091be 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 092d0936ea79..f33d9e321469 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index bc9bcf4dac3b..7eb95bd2d567 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 819f263c8941..4b8706a5e540 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 1201bcdfe973..55f7db8095b0 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index c70f6f2c2757..52a596849e38 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 37554b5ef75f..daf63c54366d 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 1c2fb45be692..b34f2188835e 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index c994d8592570..8dab4c5cb3ee 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index dbba09179abc..e3dc76d03fa9 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index e25adf9bfbad..fb56448cbff4 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 94094f4b63ca..0c8db5969319 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index 8f1fcee887ed..e98f0203d27d 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 7a7abb9346e2..010ad0b35682 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index abbfd8ef51d9..01e62a854669 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 5f54b14fbb27..cb1c9a8455f3 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index d8ac65e76a99..034abb8fddda 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index cfa7619ae4dd..b17688e5505d 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index c5ce600dc850..faeb56065d63 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 6a4eddf15711..7cc64fcd0b94 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 04042b62a5af..64638dfcfb7a 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 069c1f2caf2f..c36bf201ec79 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index e81f40b490ad..b4f4ed5807ff 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index f0409b702b43..e0d286734119 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 8e26b0f50050..7f454d3492bd 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 08dd064e973e..8ceef257a9f7 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 93dac2675e84..a1b0f03c14a0 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index b1e0bcfef506..29cef6a1e449 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 0621ab92d58b..4a5740e7c80d 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index fa9099f9a3e4..64f471749fbc 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 3114a4e419eb..4c13e3907183 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 8fde6af134ff..5f981314cde2 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index c4e211f113ba..7dc0ee448f84 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index e57c07ff1bb7..a9e9d34a9e4a 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index cef19bcf4135..6173b105c71d 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 67ccad01a88b..4005e1b1ea77 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 1cd6b21cfda3..a09bc6f9054e 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 32ae028d1d30..e6de2f5cf282 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index be6209fc53aa..076e1f107c96 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index e47eb2a67c98..0339397a6ef2 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index be1459389084..937f8d7d52b2 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 5e7a6f4e8bb8..44dd799cc63d 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index c68191ff7ec1..ea2428d78dea 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 99b5f0ca2723..66d33fd048b8 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 9d1739f87095..3e0c18264d32 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 12a54e777197..517503d16a62 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 1b5402bee1e6..34c994ebb66b 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 2a1e6428f1e0..1ed31da37626 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index a34c3a478b99..2514ba80426a 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 5a90b6ba79cb..8bf0cd617a74 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 2b4de4088acd..3233dab8f132 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 3b7bc51fae3a..6839de6a3bad 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index f7793584bf6a..c3605e3fac9f 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 30bdc5a8181d..f29e28195eae 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index b0372ac6c11f..ffe196dd91cb 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index d5f962ec8a4b..eabba58854c7 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 82b6a1ac290f..21204ef4a19b 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index bc0e9c1b0e11..bd512d91a150 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 71fae282c8e3..6e0a145d31ad 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 064fb937fbe6..b426a1b180f0 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index eb492e873bdd..ccc802c5245f 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 8fa22e135050..8536ff687e43 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 6ba9215e641c..5c38cb7aa8cc 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 33e1246aa040..de4569c021f3 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index a0174b707e13..08cae6e35b3b 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 65b2a95525d7..8b442b654c15 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 01d512ea69b7..ff1ef41460dc 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 27bb23a11a43..10a28ea8220c 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 773235fe2e02..0bae50444e0c 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index d7b70a1daba7..c74b3111751c 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index d3deed3bbacc..a8881f2fd6d7 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 1db6c2bf9521..6e844c9d8346 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 9ef88ca1ecd4..aa80b6d6ebb9 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 65775c1b098e..74e2f24e7586 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 0a09e7743413..27c691773f76 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 988a3afbc3a6..046f90f7b1bc 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 7d0449cbeca0..9349ab002fe7 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index e600b88c41ca..0acb8580fa25 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 9cd86c81b6fc..768df9fdc5b6 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index a3cf14bd7d0c..08988f4ed72c 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 392b76153ca6..6ad7e2c4416a 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 9314f9964a15..32dfcd4a3364 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index c9b1f9c47d2f..224a4e77350a 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 038cf277f647..2e4486ddd672 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index a28e7b911d60..2da5c957071f 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index fbfd936151ab..f83a85f7c0bc 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index e5a59ba150cd..805a6b716838 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 49aae6b33f7e..4b2763b088ae 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 46b8b89e5ec4..273e3badec79 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index e938675f225b..2c4cca488d0e 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index b564e7a08527..dba532eb207b 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index b4b73c324e45..0300bf1da1a7 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index b058d7be7d86..f3e85ca20741 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 8b77a10b0b27..f7b2e06a6eee 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index e6bc0dfc31d1..1c478bfdf179 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 6314fdc611b9..bf22da74ff21 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 3866c1c5df9c..ec14031edb1d 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 32a114ab1344..07a3797fbd2d 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 202bdaafe4b7..9309a089341f 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 2e4bbb7083ce..53479f6231ad 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 88a79f4c7c65..628df6e451fd 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 606731ea8a36..c38f1539d21c 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 7593da6d0581..0c1754fd29db 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index fd1f60538d1d..b2084dbdf5c3 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 9a8f8caf5254..0ed3e60a5f98 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 22bf3676fba9..a0a301fce762 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index ed4b20b8f8bf..cea64895700c 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 908ff737128f..086698ef64fc 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 3263eafc6bf4..b979b61f4b7e 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 4d2c322639d0..d6e4f468cf48 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 393afc80fb80..1adad26610c5 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index c47bb7a57065..3f34cf535d43 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 6515539e8a10..dd4cb79ea17a 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 650a4ffc296d..def6c487e2b8 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 4d717e4accbe..3ac5901946c5 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 835fd11fe209..0b9da3115a27 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index d574a754e5b7..45a289cf0e7f 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index aab39ae15091..ee74dd16966c 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 2d6b612efb19..bf3d6aedafee 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 7cde8c06088c..c1cc39cc53ca 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 7399777ffb11..52d642372791 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 77f8f13b7702..bb9b948c66b4 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index af6aa0e302c2..d9bb169cfdd8 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.27-SNAPSHOT + 2.15.27 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index a63b53d2e320..f067f1b79390 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index e717ee916994..d80ca9be4660 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 405472d4d16b..471aa379d3a9 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index bb5447ce8428..96db4521f087 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index f840970b889d..70fe30c3ed1d 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index fb521193392f..49afd09f707f 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 5f967ee9e529..3e161887888c 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 2a23b573f0fa..64a1184adf79 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index ca5a32e8fa1f..9b378c5caba0 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 6c8bf8c55269..9aaddac32c11 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index b64af53ed663..9d1edd8452b4 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index ab1974adcb8c..7c5a979bad01 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 052a531e6fbe..f1e6edc09129 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 80ba7452291a..48b638ee1235 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index f63fe833ba04..b69d666a7061 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 88cab059694c..2ff1e1379eb0 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index f006d38dd400..58a2793af3b8 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index d9e8ee170953..b021b32d41e7 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 2fcd29d7dd4c..79b00fed7f36 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 63b0a6a21ce6..d8009ff1837a 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index c523b78dd7b7..5c12bed11432 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index a00d594eb4d1..c7373c07c43e 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 2b3f27214be3..7c5c7b75a63d 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 36f600ea1aca..cf6f6972a973 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 684fe214c834..0e68ab9a3218 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index eeb6fa99d82f..223f8ff46809 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index e24b5a42e491..c6bfc6ff5268 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 2be6fb669de0..4b1dd5a3e499 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index 7cb96d8d80df..ed9c8c9cdd1b 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 58c6173daf33..12a242adc9f9 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 4300d4b5d646..c56b63860b65 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 7c1918b5e3ea..4055908b6d29 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 967f8cf52360..80e750bae475 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 14a24b154619..4f84a0bbde76 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 8015e9717661..7781d4d4d58c 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 30aa00a357be..901d8fe82a93 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 241934324840..bce278a5217c 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index c3c5db8e0b26..fc55ecfb8722 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 7d0eba7f8bf0..f69410b0f28a 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 5e8a6494b2bc..2e03d50ff70e 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 8b3b3a0f8f44..6eed4ba5cf5a 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 2d958ef0bf95..69f1eb870a96 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 3488e5675b64..2315342534fd 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index ef843cd7c984..686e9024f6e0 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 07e8e4f65903..f4e83ebcb0fb 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 4cd199b6bb5c..3c29e91b3fc0 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index f3021ffd7743..cc21038aa877 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index bdf4cb0c6b35..638cc472911a 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index e4ca55ccb801..ba5b0a427daf 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index b7117ef0b45d..114fac572288 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index d5e6b2d81698..5ad7123fba10 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index b67da6c1b304..af739c2eeef9 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 3863d0b4ce56..f7566fb29cc7 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 3a38a34329dd..8b78a1c8c6bd 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index ec06d789d85f..48fd8ea0db8e 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index cf7a36f097ea..3cbcfdd208ba 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 757d32a6073b..a56866df3c0b 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 5090a3e82c1c..2cf6e2ce5550 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 0ef3fbbd02e9..a551e6fda73d 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 28241e6f0904..39bb569af127 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index d381147a99ae..a7881e74fc58 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index d7e5983378e4..6e6199f47fa0 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index a1ef158cf75e..6193dcb781ba 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 85219d555ca4..59f011a2e649 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27-SNAPSHOT + 2.15.27 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 3e23c8fbf649..31ca760c4788 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.15.27-SNAPSHOT + 2.15.27 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index eae99967db9d..b78fd7c4e5ee 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.15.27-SNAPSHOT + 2.15.27 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 5ec1aaca491e..ebcdaa58ce92 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.15.27-SNAPSHOT + 2.15.27 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 8f0fc8d99cc6..b7225cf49524 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.15.27-SNAPSHOT + 2.15.27 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index a773ae589a61..7a623cd425d1 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.15.27-SNAPSHOT + 2.15.27 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 6b44eb966dfb..6e45d25b8f63 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.27-SNAPSHOT + 2.15.27 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 2e610a3ed02a..5dc2b87c64e4 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.15.27-SNAPSHOT + 2.15.27 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 3930dba07e4b..317cda39b036 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.15.27-SNAPSHOT + 2.15.27 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 07d7b97b83c8..f127d18b0c26 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.15.27-SNAPSHOT + 2.15.27 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 9cf7f09a7e30..6929d94e3afd 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.15.27-SNAPSHOT + 2.15.27 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index b35125c7b089..876a918cbc88 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.27-SNAPSHOT + 2.15.27 4.0.0 From c21bede2fe8ae97ca79d3950fc46b64e5beefc3b Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 12 Nov 2020 19:53:19 +0000 Subject: [PATCH 187/339] Update to next snapshot version: 2.15.28-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/pom.xml | 2 +- services/servicecatalogappregistry/pom.xml | 2 +- services/servicediscovery/pom.xml | 2 +- services/servicequotas/pom.xml | 2 +- services/ses/pom.xml | 2 +- services/sesv2/pom.xml | 2 +- services/sfn/pom.xml | 2 +- services/shield/pom.xml | 2 +- services/signer/pom.xml | 2 +- services/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 282 files changed, 282 insertions(+), 282 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index e6c5b1889676..8fa3e95dd4bd 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index a6f8579e0df3..d940ceca4a37 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 0030466b5c0a..135e5bce39b9 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.15.27 + 2.15.28-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 95cb846460e7..8200735accb0 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index f5e989adf76b..ac8bcfba96fb 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.27 + 2.15.28-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index b5a1138d1397..3a08ea6ca7d3 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.27 + 2.15.28-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 7a611e426516..faa9f77eb87d 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.15.27 + 2.15.28-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index b24b10747a2b..516dd8669be4 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.27 + 2.15.28-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 15113fc5ab06..7932c8c345d4 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.15.27 + 2.15.28-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 11c20d23a4ca..05f4b4600486 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.27 + 2.15.28-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 145b76cfff38..13f68d6bb762 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 1580e0a0a198..e5945787820e 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 6cc9584d063c..ac9af464a688 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.27 + 2.15.28-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index e5cf40817e23..133eee4b0a5f 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.27 + 2.15.28-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index f851940fe682..cde365b9e5cf 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 9e3eb1fcd3aa..b133a4ff2145 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index aea14cd1a83a..152a1fbb40bc 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.27 + 2.15.28-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 20df1b8e0137..4b43d085f871 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.15.27 + 2.15.28-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 60fd5ab98b59..9cb00844b85c 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 563bcc08cf5f..fb38d02c1378 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.15.27 + 2.15.28-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 7f9feaddd2dd..361a7910f808 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.15.27 + 2.15.28-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 6d24bfefc3b3..45e66e25136c 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.15.27 + 2.15.28-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 0fc233591567..f3682199f41a 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 87d9f9be90dd..eb6100aa1207 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index a06e2000b425..1102972a339b 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.27 + 2.15.28-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index fa7ec1538df0..1fa1fc9d0d90 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.27 + 2.15.28-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 6ecfdfff0c48..44aad8adba0e 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.15.27 + 2.15.28-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index c24bdcfde1f6..0cc78f7b8e77 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.15.27 + 2.15.28-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index ed6616fa5c9c..01d00c4eff28 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.15.27 + 2.15.28-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index f806323eb745..51e64fb9a4cc 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.15.27 + 2.15.28-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 01537093684f..277069e0122f 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index ea641fb7ab09..6e9cebec2a03 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.15.27 + 2.15.28-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 4957094a73d6..2a3085f33b8d 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.15.27 + 2.15.28-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 1db43f591168..2c4a258ef4bc 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.27 + 2.15.28-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 8d6d736446da..703a329ff1ef 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.27 + 2.15.28-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 4169bec1d5eb..c516cca5fbf9 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.27 + 2.15.28-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 87f5061eb305..4718a53c2f2b 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.15.27 + 2.15.28-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 63f91d9d4426..261da8fb5f67 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.27 + 2.15.28-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index ffc847d0eb1f..a410a224df35 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 497f8bb78733..4c7d7c506aa9 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index d01f31edee51..cfbf8d46a8c5 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 40c031e0fcce..dd86040b78ee 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 90fc4a62b8d2..b1e5d7e85df3 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 620f3e4948de..d2fe44b89e4a 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index a43cdc7ce3f2..193ecc54cfc1 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index d8e45e45daed..8eaab85db0df 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index e0600e7e220d..e02b367b144c 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 42171fe4673c..456a352b67a4 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index d9e7035ef84e..243983b06d4d 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 456dad6dfcb9..6589803250be 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 2d62f1a25e26..3045ba416441 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 39006889a9ba..30c0eac59e23 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 0e391cf442e0..861906347ee0 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 05946066223b..e0ef9924dc50 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index c8de36a10b4e..6c1975a75a17 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 30517b47ec0d..378497aae518 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index c3ca3e949fca..bb063c120270 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index a0ed50cd4d95..cfde3704ae96 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index d9a85a826b4e..0db1b05d2d3c 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 0d86b20ffd67..8984235a02fd 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 0c14f3138533..4f13ad41426f 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 135ca5db0f30..24df7d63de86 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 071206997cf7..5713a2fa504f 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index b5dade43df65..214029e88a75 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 49c6d2e19f13..84d5a1b9b053 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 01c596c68c34..109c0ea28fc9 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 4ca9791dcebb..6a10af768d1d 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 3921af26f329..db97c516e651 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 11dce635cea9..944c8d11845b 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 66093d006370..ecf7b02d8132 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 0df295fab4d7..bcfdefd1aa25 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 9228106d1389..4abebf6fd7ac 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index ccbaf8f7a5c3..1e4d1af98862 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index e0c8744658b8..2dd83f8925e1 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index b1dece967bfb..094699a04ebf 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index c2668bab6957..51dcdbec2ad7 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index dec03a4620e1..891322fda206 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 553be3b5d0fd..fe6d782c2179 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 12b831a1cefd..d99459649d9a 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index c29c0617a546..9b60b34756b6 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 285eb5b210a4..7f96f350a206 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index dfd933b76714..123fc4d6b772 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index ba55d83c8b56..d589c5fac751 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index a7930dfc885c..168d1c17dbd3 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 2c1e68a091be..9f2f0e6c28c0 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index f33d9e321469..7845034f696c 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 7eb95bd2d567..8536208c75ca 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 4b8706a5e540..b6d1be98bb45 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 55f7db8095b0..ce6fc439f8f2 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 52a596849e38..3f8165f35fae 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index daf63c54366d..f0dbfd6b46bf 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index b34f2188835e..a9e203546d08 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 8dab4c5cb3ee..7d0f873972a2 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index e3dc76d03fa9..af612cbc9deb 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index fb56448cbff4..926a1381fbc5 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 0c8db5969319..52d75fb8b591 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index e98f0203d27d..3eed1442e2b7 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 010ad0b35682..944e06388d5a 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 01e62a854669..307f49111b3e 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index cb1c9a8455f3..7c44a97ad497 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 034abb8fddda..65d9c65b48d5 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index b17688e5505d..210043ced887 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index faeb56065d63..e3d57e95fa0b 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 7cc64fcd0b94..609f0709074d 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 64638dfcfb7a..723167f578e6 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index c36bf201ec79..868f68e77053 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index b4f4ed5807ff..31ff3898c5ee 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index e0d286734119..e9e49d19debb 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 7f454d3492bd..5b8e0e6f120d 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 8ceef257a9f7..3a29398cf82a 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index a1b0f03c14a0..d623065a4b2b 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 29cef6a1e449..0678859de5d5 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 4a5740e7c80d..82d5b0506876 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 64f471749fbc..0cbd96e11ac0 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 4c13e3907183..4b597f04f1da 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 5f981314cde2..41795bd98165 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 7dc0ee448f84..de8fe902c89d 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index a9e9d34a9e4a..2e18b15a2a4a 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 6173b105c71d..60ea3e1c5444 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 4005e1b1ea77..1bdac72da304 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index a09bc6f9054e..606bac148dd5 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index e6de2f5cf282..3756a779b4b6 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 076e1f107c96..b3e9ab9d6abf 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 0339397a6ef2..06bce519cdaf 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 937f8d7d52b2..2c167106d7b2 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 44dd799cc63d..33a87d52238b 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index ea2428d78dea..a4b9461b919f 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 66d33fd048b8..17429724a342 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 3e0c18264d32..fc171aa78d5d 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 517503d16a62..bc1a09568eb4 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 34c994ebb66b..4f4b30f58a3f 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 1ed31da37626..01e35e3d1028 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 2514ba80426a..2f0b899490a3 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 8bf0cd617a74..3ca9034f3d54 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 3233dab8f132..602c9c5681c0 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 6839de6a3bad..38fbad6ea4ee 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index c3605e3fac9f..5a1ce44a6602 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index f29e28195eae..b143a5c1d8de 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index ffe196dd91cb..8e5033fef737 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index eabba58854c7..dd44410f88fd 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 21204ef4a19b..ddf03eab3505 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index bd512d91a150..70be4dac5258 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 6e0a145d31ad..8cf25c61b176 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index b426a1b180f0..1bc758f880b0 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index ccc802c5245f..6afd77af0422 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 8536ff687e43..ee378913346a 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 5c38cb7aa8cc..f9648d926dde 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index de4569c021f3..f6aa430aecdf 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 08cae6e35b3b..49a8d543eccf 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 8b442b654c15..b389a3ca2590 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index ff1ef41460dc..fce75c915ae3 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 10a28ea8220c..0af74b56a6ef 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 0bae50444e0c..3cb88a692f91 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index c74b3111751c..4b13b3b0a11c 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index a8881f2fd6d7..e036f6d51f56 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 6e844c9d8346..3d5f7782bbea 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index aa80b6d6ebb9..71e0522e92c5 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 74e2f24e7586..f70725dabc5c 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 27c691773f76..d39c00439efd 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 046f90f7b1bc..a871ea356668 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 9349ab002fe7..6e36b1bf9974 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 0acb8580fa25..0b680276b269 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 768df9fdc5b6..265872dc4806 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 08988f4ed72c..606e2a70bd54 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 6ad7e2c4416a..272c0eb7c213 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 32dfcd4a3364..b2eb99aa541a 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 224a4e77350a..927e215ea1d7 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 2e4486ddd672..635093d922b4 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 2da5c957071f..b1084b909df3 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index f83a85f7c0bc..2bbde4e84611 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 805a6b716838..32bfa83b112f 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 4b2763b088ae..b974b2127273 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 273e3badec79..9600280ee14a 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 2c4cca488d0e..248d7d2fb263 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index dba532eb207b..51455025e666 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 0300bf1da1a7..653bc08cd909 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index f3e85ca20741..b7660393e23e 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index f7b2e06a6eee..73d9a1487fa8 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 1c478bfdf179..1a50e36f2dad 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index bf22da74ff21..a9369b9749ee 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index ec14031edb1d..0afad1590422 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 07a3797fbd2d..963ccb76151b 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 9309a089341f..516df9b5acb0 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 53479f6231ad..7f2d3dfc7f04 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 628df6e451fd..c051d6468911 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index c38f1539d21c..8e27bb58bb98 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 0c1754fd29db..d88422cb7091 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index b2084dbdf5c3..42a2f9701ddd 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 0ed3e60a5f98..c094bbc8e5d6 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index a0a301fce762..06955dfb180e 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index cea64895700c..7cafaa3e0879 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 086698ef64fc..8fb06b684120 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index b979b61f4b7e..af26cb2f69bb 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index d6e4f468cf48..b4c837b76908 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 1adad26610c5..335d17bd0a3a 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 3f34cf535d43..4ea993c459f2 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index dd4cb79ea17a..8774f76e00b3 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index def6c487e2b8..532fd8f0f3bb 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 3ac5901946c5..d2d3ee15e8cb 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 0b9da3115a27..86bc403a3271 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 45a289cf0e7f..1b8d5c7f25f8 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index ee74dd16966c..34c01a8abcf7 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index bf3d6aedafee..9d31bb7e0368 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index c1cc39cc53ca..b2f5b7c3c488 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 52d642372791..88d3c6988a06 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index bb9b948c66b4..bbf912d65e18 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index d9bb169cfdd8..6bc8d4475938 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.27 + 2.15.28-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index f067f1b79390..448da135d730 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index d80ca9be4660..115255aebde3 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 471aa379d3a9..b91d07da49a6 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 96db4521f087..bae9281cac43 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 70fe30c3ed1d..3e6e2df9a9c4 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 49afd09f707f..c8f9de5a28a4 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 3e161887888c..e42e7b6f0338 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 64a1184adf79..98fdf5f5a077 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 9b378c5caba0..71b82697fee2 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 9aaddac32c11..731e0da44e74 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 9d1edd8452b4..0c75a205d824 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 7c5a979bad01..3636cb41b2d8 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index f1e6edc09129..4ef228a3e431 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 48b638ee1235..39497c1d90f0 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index b69d666a7061..40d4a49031e0 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 2ff1e1379eb0..99f5ae4efd78 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 58a2793af3b8..e7e045dd1e9c 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index b021b32d41e7..c63638df8a0a 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 79b00fed7f36..3bf8e26fe37b 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index d8009ff1837a..67a13d2d86c7 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 5c12bed11432..0ed8c433f322 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index c7373c07c43e..924140606436 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 7c5c7b75a63d..219c19d3e835 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index cf6f6972a973..2d6be07a1fe9 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 0e68ab9a3218..dbca37653f71 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 223f8ff46809..e12b2027f975 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index c6bfc6ff5268..1b40ef7d80ab 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 4b1dd5a3e499..a0b990a1e02c 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index ed9c8c9cdd1b..a85ee52b75cc 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 12a242adc9f9..28862c3342d0 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index c56b63860b65..0ccd1af93dd8 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 4055908b6d29..3558a5da7c48 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 80e750bae475..33890c327669 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 4f84a0bbde76..5306abcf6e22 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 7781d4d4d58c..5cc8c653874a 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 901d8fe82a93..c4b428a1ebdb 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index bce278a5217c..925d0d7bb661 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index fc55ecfb8722..b4c67e4403e1 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index f69410b0f28a..2a2ad24d5e25 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 2e03d50ff70e..665ca23423c2 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 6eed4ba5cf5a..a1c241e94eca 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 69f1eb870a96..463fc726f468 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 2315342534fd..f55e55fa6091 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 686e9024f6e0..98da457cffa7 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index f4e83ebcb0fb..a8969312b41f 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 3c29e91b3fc0..b730606eb08b 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index cc21038aa877..590338718e3a 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 638cc472911a..73800a3bca1c 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index ba5b0a427daf..6d890225734f 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 114fac572288..4eef9af4fc9b 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 5ad7123fba10..38a86b25b66a 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index af739c2eeef9..26c4ca94d31f 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index f7566fb29cc7..93dc23865b91 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 8b78a1c8c6bd..6323f46fcff9 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 48fd8ea0db8e..7e77ac9c7c5d 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 3cbcfdd208ba..11c43973bef9 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index a56866df3c0b..ef28f93c77bb 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 2cf6e2ce5550..a004ef030726 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index a551e6fda73d..6cda2804cb02 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 39bb569af127..cafedd91d8df 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index a7881e74fc58..9c6c8c824863 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 6e6199f47fa0..f88501653688 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 6193dcb781ba..73a7e051a6b1 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 59f011a2e649..a3a6e744650d 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.27 + 2.15.28-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 31ca760c4788..ad416dd9bdd1 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.15.27 + 2.15.28-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index b78fd7c4e5ee..f7abd967866b 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.15.27 + 2.15.28-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index ebcdaa58ce92..ed441be240d6 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.15.27 + 2.15.28-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index b7225cf49524..7ddbfdbe62a3 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.15.27 + 2.15.28-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 7a623cd425d1..1efd4c5b1220 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.15.27 + 2.15.28-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 6e45d25b8f63..3b51819beefd 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.27 + 2.15.28-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 5dc2b87c64e4..3fc5b3296360 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.15.27 + 2.15.28-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 317cda39b036..12e1a2a08e60 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.15.27 + 2.15.28-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index f127d18b0c26..cfa24da84527 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.15.27 + 2.15.28-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 6929d94e3afd..ab2cd2760fec 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.15.27 + 2.15.28-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 876a918cbc88..619ed1a3c799 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.27 + 2.15.28-SNAPSHOT 4.0.0 From 1a00de22705e4bbe5bc6d17a12bd060530010c09 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 13 Nov 2020 19:09:17 +0000 Subject: [PATCH 188/339] Amazon Textract Update: AWS Textract now allows customers to specify their own KMS key to be used for asynchronous jobs output results, AWS Textract now also recognizes handwritten text from English documents. --- .../feature-AmazonTextract-b3c1be1.json | 6 ++++ .../codegen-resources/service-2.json | 36 ++++++++++++++++++- 2 files changed, 41 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AmazonTextract-b3c1be1.json diff --git a/.changes/next-release/feature-AmazonTextract-b3c1be1.json b/.changes/next-release/feature-AmazonTextract-b3c1be1.json new file mode 100644 index 000000000000..40a9d0a87544 --- /dev/null +++ b/.changes/next-release/feature-AmazonTextract-b3c1be1.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Textract", + "contributor": "", + "description": "AWS Textract now allows customers to specify their own KMS key to be used for asynchronous jobs output results, AWS Textract now also recognizes handwritten text from English documents." +} diff --git a/services/textract/src/main/resources/codegen-resources/service-2.json b/services/textract/src/main/resources/codegen-resources/service-2.json index 787addcff8ff..9b070d759948 100644 --- a/services/textract/src/main/resources/codegen-resources/service-2.json +++ b/services/textract/src/main/resources/codegen-resources/service-2.json @@ -104,6 +104,7 @@ "errors":[ {"shape":"InvalidParameterException"}, {"shape":"InvalidS3ObjectException"}, + {"shape":"InvalidKMSKeyException"}, {"shape":"UnsupportedDocumentException"}, {"shape":"DocumentTooLargeException"}, {"shape":"BadDocumentException"}, @@ -127,6 +128,7 @@ "errors":[ {"shape":"InvalidParameterException"}, {"shape":"InvalidS3ObjectException"}, + {"shape":"InvalidKMSKeyException"}, {"shape":"UnsupportedDocumentException"}, {"shape":"DocumentTooLargeException"}, {"shape":"BadDocumentException"}, @@ -212,6 +214,10 @@ "shape":"String", "documentation":"

The word or line of text that's recognized by Amazon Textract.

" }, + "TextType":{ + "shape":"TextType", + "documentation":"

The kind of text that Amazon Textract has detected. Can check for handwritten text and printed text.

" + }, "RowIndex":{ "shape":"UInteger", "documentation":"

The row in which a table cell is located. The first row position is 1. RowIndex isn't returned by DetectDocumentText and GetDocumentTextDetection.

" @@ -376,7 +382,7 @@ "type":"structure", "members":{ }, - "documentation":"

The document can't be processed because it's too large. The maximum document size for synchronous operations 5 MB. The maximum document size for asynchronous operations is 500 MB for PDF files.

", + "documentation":"

The document can't be processed because it's too large. The maximum document size for synchronous operations 10 MB. The maximum document size for asynchronous operations is 500 MB for PDF files.

", "exception":true }, "EntityType":{ @@ -644,6 +650,13 @@ "documentation":"

An invalid job identifier was passed to GetDocumentAnalysis or to GetDocumentAnalysis.

", "exception":true }, + "InvalidKMSKeyException":{ + "type":"structure", + "members":{ + }, + "documentation":"

Indicates you do not have decrypt permissions with the KMS key entered, or the KMS key was entered incorrectly.

", + "exception":true + }, "InvalidParameterException":{ "type":"structure", "members":{ @@ -679,6 +692,12 @@ "min":1, "pattern":"[a-zA-Z0-9_.\\-:]+" }, + "KMSKeyId":{ + "type":"string", + "max":2048, + "min":1, + "pattern":"^[A-Za-z0-9][A-Za-z0-9:_/+=,@.-]{0,2048}$" + }, "LimitExceededException":{ "type":"structure", "members":{ @@ -878,6 +897,10 @@ "OutputConfig":{ "shape":"OutputConfig", "documentation":"

Sets if the output will go to a customer defined bucket. By default, Amazon Textract will save the results internally to be accessed by the GetDocumentAnalysis operation.

" + }, + "KMSKeyId":{ + "shape":"KMSKeyId", + "documentation":"

The KMS key used to encrypt the inference results. This can be in either Key ID or Key Alias format. When a KMS key is provided, the KMS key will be used for server-side encryption of the objects in the customer bucket. When this parameter is not enabled, the result will be encrypted server side,using SSE-S3.

" } } }, @@ -913,6 +936,10 @@ "OutputConfig":{ "shape":"OutputConfig", "documentation":"

Sets if the output will go to a customer defined bucket. By default Amazon Textract will save the results internally to be accessed with the GetDocumentTextDetection operation.

" + }, + "KMSKeyId":{ + "shape":"KMSKeyId", + "documentation":"

The KMS key used to encrypt the inference results. This can be in either Key ID or Key Alias format. When a KMS key is provided, the KMS key will be used for server-side encryption of the objects in the customer bucket. When this parameter is not enabled, the result will be encrypted server side,using SSE-S3.

" } } }, @@ -927,6 +954,13 @@ }, "StatusMessage":{"type":"string"}, "String":{"type":"string"}, + "TextType":{ + "type":"string", + "enum":[ + "HANDWRITING", + "PRINTED" + ] + }, "ThrottlingException":{ "type":"structure", "members":{ From 290b18f95d833adb01948eea0d3f74b79b70602b Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 13 Nov 2020 19:09:18 +0000 Subject: [PATCH 189/339] Elastic Load Balancing Update: Adds dualstack support for Network Load Balancers (TCP/TLS only), an attribute for WAF fail open for Application Load Balancers, and an attribute for connection draining for Network Load Balancers. --- .../feature-ElasticLoadBalancing-51e955c.json | 6 ++++ .../codegen-resources/service-2.json | 35 ++++++++++++++----- 2 files changed, 32 insertions(+), 9 deletions(-) create mode 100644 .changes/next-release/feature-ElasticLoadBalancing-51e955c.json diff --git a/.changes/next-release/feature-ElasticLoadBalancing-51e955c.json b/.changes/next-release/feature-ElasticLoadBalancing-51e955c.json new file mode 100644 index 000000000000..0ed9fd9375b8 --- /dev/null +++ b/.changes/next-release/feature-ElasticLoadBalancing-51e955c.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Elastic Load Balancing", + "contributor": "", + "description": "Adds dualstack support for Network Load Balancers (TCP/TLS only), an attribute for WAF fail open for Application Load Balancers, and an attribute for connection draining for Network Load Balancers." +} diff --git a/services/elasticloadbalancingv2/src/main/resources/codegen-resources/service-2.json b/services/elasticloadbalancingv2/src/main/resources/codegen-resources/service-2.json index c24a2dc546fb..2ea2fdefef37 100644 --- a/services/elasticloadbalancingv2/src/main/resources/codegen-resources/service-2.json +++ b/services/elasticloadbalancingv2/src/main/resources/codegen-resources/service-2.json @@ -1061,7 +1061,7 @@ }, "Protocol":{ "shape":"ProtocolEnum", - "documentation":"

The protocol for connections from clients to the load balancer. For Application Load Balancers, the supported protocols are HTTP and HTTPS. For Network Load Balancers, the supported protocols are TCP, TLS, UDP, and TCP_UDP. You cannot specify a protocol for a Gateway Load Balancer.

" + "documentation":"

The protocol for connections from clients to the load balancer. For Application Load Balancers, the supported protocols are HTTP and HTTPS. For Network Load Balancers, the supported protocols are TCP, TLS, UDP, and TCP_UDP. You can’t specify the UDP or TCP_UDP protocol if dual-stack mode is enabled. You cannot specify a protocol for a Gateway Load Balancer.

" }, "Port":{ "shape":"Port", @@ -1112,7 +1112,7 @@ }, "SubnetMappings":{ "shape":"SubnetMappings", - "documentation":"

The IDs of the public subnets. You can specify only one subnet per Availability Zone. You must specify either subnets or subnet mappings.

[Application Load Balancers] You must specify subnets from at least two Availability Zones. You cannot specify Elastic IP addresses for your subnets.

[Application Load Balancers on Outposts] You must specify one Outpost subnet.

[Application Load Balancers on Local Zones] You can specify subnets from one or more Local Zones.

[Network Load Balancers] You can specify subnets from one or more Availability Zones. You can specify one Elastic IP address per subnet if you need static IP addresses for your internet-facing load balancer. For internal load balancers, you can specify one private IP address per subnet from the IPv4 range of the subnet.

[Gateway Load Balancers] You can specify subnets from one or more Availability Zones. You cannot specify Elastic IP addresses for your subnets.

" + "documentation":"

The IDs of the public subnets. You can specify only one subnet per Availability Zone. You must specify either subnets or subnet mappings.

[Application Load Balancers] You must specify subnets from at least two Availability Zones. You cannot specify Elastic IP addresses for your subnets.

[Application Load Balancers on Outposts] You must specify one Outpost subnet.

[Application Load Balancers on Local Zones] You can specify subnets from one or more Local Zones.

[Network Load Balancers] You can specify subnets from one or more Availability Zones. You can specify one Elastic IP address per subnet if you need static IP addresses for your internet-facing load balancer. For internal load balancers, you can specify one private IP address per subnet from the IPv4 range of the subnet. For internet-facing load balancer, you can specify one IPv6 address per subnet.

[Gateway Load Balancers] You can specify subnets from one or more Availability Zones. You cannot specify Elastic IP addresses for your subnets.

" }, "SecurityGroups":{ "shape":"SecurityGroups", @@ -1132,7 +1132,7 @@ }, "IpAddressType":{ "shape":"IpAddressType", - "documentation":"

[Application Load Balancers] The type of IP addresses used by the subnets for your load balancer. The possible values are ipv4 (for IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses). Internal load balancers must use ipv4.

" + "documentation":"

The type of IP addresses used by the subnets for your load balancer. The possible values are ipv4 (for IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses). Internal load balancers must use ipv4.

" }, "CustomerOwnedIpv4Pool":{ "shape":"CustomerOwnedIpv4Pool", @@ -1826,6 +1826,7 @@ }, "documentation":"

Information about an HTTP method condition.

HTTP defines a set of request methods, also referred to as HTTP verbs. For more information, see the HTTP Method Registry. You can also define custom HTTP methods.

" }, + "IPv6Address":{"type":"string"}, "IncompatibleProtocolsException":{ "type":"structure", "members":{ @@ -2072,6 +2073,10 @@ "PrivateIPv4Address":{ "shape":"PrivateIPv4Address", "documentation":"

[Network Load Balancers] The private IPv4 address for an internal load balancer.

" + }, + "IPv6Address":{ + "shape":"IPv6Address", + "documentation":"

[Network Load Balancers] The IPv6 address.

" } }, "documentation":"

Information about a static IP address for a load balancer.

" @@ -2090,7 +2095,7 @@ "members":{ "Key":{ "shape":"LoadBalancerAttributeKey", - "documentation":"

The name of the attribute.

The following attribute is supported by all load balancers:

  • deletion_protection.enabled - Indicates whether deletion protection is enabled. The value is true or false. The default is false.

The following attributes are supported by both Application Load Balancers and Network Load Balancers:

  • access_logs.s3.enabled - Indicates whether access logs are enabled. The value is true or false. The default is false.

  • access_logs.s3.bucket - The name of the S3 bucket for the access logs. This attribute is required if access logs are enabled. The bucket must exist in the same region as the load balancer and have a bucket policy that grants Elastic Load Balancing permissions to write to the bucket.

  • access_logs.s3.prefix - The prefix for the location in the S3 bucket for the access logs.

The following attributes are supported by only Application Load Balancers:

  • idle_timeout.timeout_seconds - The idle timeout value, in seconds. The valid range is 1-4000 seconds. The default is 60 seconds.

  • routing.http.desync_mitigation_mode - Determines how the load balancer handles requests that might pose a security risk to your application. The possible values are monitor, defensive, and strictest. The default is defensive.

  • routing.http.drop_invalid_header_fields.enabled - Indicates whether HTTP headers with invalid header fields are removed by the load balancer (true) or routed to targets (false). The default is false.

  • routing.http2.enabled - Indicates whether HTTP/2 is enabled. The value is true or false. The default is true. Elastic Load Balancing requires that message header names contain only alphanumeric characters and hyphens.

The following attribute is supported by Network Load Balancers and Gateway Load Balancers:

  • load_balancing.cross_zone.enabled - Indicates whether cross-zone load balancing is enabled. The value is true or false. The default is false.

" + "documentation":"

The name of the attribute.

The following attribute is supported by all load balancers:

  • deletion_protection.enabled - Indicates whether deletion protection is enabled. The value is true or false. The default is false.

The following attributes are supported by both Application Load Balancers and Network Load Balancers:

  • access_logs.s3.enabled - Indicates whether access logs are enabled. The value is true or false. The default is false.

  • access_logs.s3.bucket - The name of the S3 bucket for the access logs. This attribute is required if access logs are enabled. The bucket must exist in the same region as the load balancer and have a bucket policy that grants Elastic Load Balancing permissions to write to the bucket.

  • access_logs.s3.prefix - The prefix for the location in the S3 bucket for the access logs.

The following attributes are supported by only Application Load Balancers:

  • idle_timeout.timeout_seconds - The idle timeout value, in seconds. The valid range is 1-4000 seconds. The default is 60 seconds.

  • routing.http.desync_mitigation_mode - Determines how the load balancer handles requests that might pose a security risk to your application. The possible values are monitor, defensive, and strictest. The default is defensive.

  • routing.http.drop_invalid_header_fields.enabled - Indicates whether HTTP headers with invalid header fields are removed by the load balancer (true) or routed to targets (false). The default is false.

  • routing.http2.enabled - Indicates whether HTTP/2 is enabled. The value is true or false. The default is true. Elastic Load Balancing requires that message header names contain only alphanumeric characters and hyphens.

  • waf.fail_open.enabled - Indicates whether to allow a WAF-enabled load balancer to route requests to targets if it is unable to forward the request to AWS WAF. The value is true or false. The default is false.

The following attribute is supported by Network Load Balancers and Gateway Load Balancers:

  • load_balancing.cross_zone.enabled - Indicates whether cross-zone load balancing is enabled. The value is true or false. The default is false.

" }, "Value":{ "shape":"LoadBalancerAttributeValue", @@ -2202,7 +2207,7 @@ }, "Protocol":{ "shape":"ProtocolEnum", - "documentation":"

The protocol for connections from clients to the load balancer. Application Load Balancers support the HTTP and HTTPS protocols. Network Load Balancers support the TCP, TLS, UDP, and TCP_UDP protocols. You cannot specify a protocol for a Gateway Load Balancer.

" + "documentation":"

The protocol for connections from clients to the load balancer. Application Load Balancers support the HTTP and HTTPS protocols. Network Load Balancers support the TCP, TLS, UDP, and TCP_UDP protocols. You can’t change the protocol to UDP or TCP_UDP if dual-stack mode is enabled. You cannot specify a protocol for a Gateway Load Balancer.

" }, "SslPolicy":{ "shape":"SslPolicyName", @@ -2741,7 +2746,7 @@ }, "IpAddressType":{ "shape":"IpAddressType", - "documentation":"

The IP address type. The possible values are ipv4 (for IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses). Internal load balancers must use ipv4.

" + "documentation":"

The IP address type. The possible values are ipv4 (for IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses). Internal load balancers must use ipv4. You can’t specify dualstack for a load balancer with a UDP or TCP_UDP listener.

" } } }, @@ -2809,11 +2814,15 @@ }, "Subnets":{ "shape":"Subnets", - "documentation":"

The IDs of the public subnets. You must specify subnets from at least two Availability Zones. You can specify only one subnet per Availability Zone. You must specify either subnets or subnet mappings.

" + "documentation":"

The IDs of the public subnets. You can specify only one subnet per Availability Zone. You must specify either subnets or subnet mappings.

[Application Load Balancers] You must specify subnets from at least two Availability Zones.

[Application Load Balancers on Outposts] You must specify one Outpost subnet.

[Application Load Balancers on Local Zones] You can specify subnets from one or more Local Zones.

[Network Load Balancers] You can specify subnets from one or more Availability Zones.

" }, "SubnetMappings":{ "shape":"SubnetMappings", - "documentation":"

The IDs of the public subnets. You can specify only one subnet per Availability Zone. You must specify either subnets or subnet mappings.

[Application Load Balancers] You must specify subnets from at least two Availability Zones. You cannot specify Elastic IP addresses for your subnets.

[Network Load Balancers] You can specify subnets from one or more Availability Zones. If you need static IP addresses for your internet-facing load balancer, you can specify one Elastic IP address per subnet. For internal load balancers, you can specify one private IP address per subnet from the IPv4 range of the subnet.

" + "documentation":"

The IDs of the public subnets. You can specify only one subnet per Availability Zone. You must specify either subnets or subnet mappings.

[Application Load Balancers] You must specify subnets from at least two Availability Zones. You cannot specify Elastic IP addresses for your subnets.

[Application Load Balancers on Outposts] You must specify one Outpost subnet.

[Application Load Balancers on Local Zones] You can specify subnets from one or more Local Zones.

[Network Load Balancers] You can specify subnets from one or more Availability Zones. You can specify one Elastic IP address per subnet if you need static IP addresses for your internet-facing load balancer. For internal load balancers, you can specify one private IP address per subnet from the IPv4 range of the subnet. For internet-facing load balancer, you can specify one IPv6 address per subnet.

" + }, + "IpAddressType":{ + "shape":"IpAddressType", + "documentation":"

[Network Load Balancers] The type of IP addresses used by the subnets for your load balancer. The possible values are ipv4 (for IPv4 addresses) and dualstack (for IPv4 and IPv6 addresses). You can’t specify dualstack for a load balancer with a UDP or TCP_UDP listener. Internal load balancers must use ipv4.

" } } }, @@ -2823,6 +2832,10 @@ "AvailabilityZones":{ "shape":"AvailabilityZones", "documentation":"

Information about the subnets.

" + }, + "IpAddressType":{ + "shape":"IpAddressType", + "documentation":"

[Network Load Balancers] The IP address type.

" } } }, @@ -2886,6 +2899,10 @@ "PrivateIPv4Address":{ "shape":"PrivateIPv4Address", "documentation":"

[Network Load Balancers] The private IPv4 address for an internal load balancer.

" + }, + "IPv6Address":{ + "shape":"IPv6Address", + "documentation":"

[Network Load Balancers] The IPv6 address.

" } }, "documentation":"

Information about a subnet mapping.

" @@ -3083,7 +3100,7 @@ "members":{ "Key":{ "shape":"TargetGroupAttributeKey", - "documentation":"

The name of the attribute.

The following attribute is supported by all load balancers:

  • deregistration_delay.timeout_seconds - The amount of time, in seconds, for Elastic Load Balancing to wait before changing the state of a deregistering target from draining to unused. The range is 0-3600 seconds. The default value is 300 seconds. If the target is a Lambda function, this attribute is not supported.

The following attributes are supported by both Application Load Balancers and Network Load Balancers:

  • stickiness.enabled - Indicates whether sticky sessions are enabled. The value is true or false. The default is false.

  • stickiness.type - The type of sticky sessions. The possible values are lb_cookie for Application Load Balancers or source_ip for Network Load Balancers.

The following attributes are supported only if the load balancer is an Application Load Balancer and the target is an instance or an IP address:

  • load_balancing.algorithm.type - The load balancing algorithm determines how the load balancer selects targets when routing requests. The value is round_robin or least_outstanding_requests. The default is round_robin.

  • slow_start.duration_seconds - The time period, in seconds, during which a newly registered target receives an increasing share of the traffic to the target group. After this time period ends, the target receives its full share of traffic. The range is 30-900 seconds (15 minutes). The default is 0 seconds (disabled).

  • stickiness.lb_cookie.duration_seconds - The time period, in seconds, during which requests from a client should be routed to the same target. After this time period expires, the load balancer-generated cookie is considered stale. The range is 1 second to 1 week (604800 seconds). The default value is 1 day (86400 seconds).

The following attribute is supported only if the load balancer is an Application Load Balancer and the target is a Lambda function:

  • lambda.multi_value_headers.enabled - Indicates whether the request and response headers that are exchanged between the load balancer and the Lambda function include arrays of values or strings. The value is true or false. The default is false. If the value is false and the request contains a duplicate header field name or query parameter key, the load balancer uses the last value sent by the client.

The following attribute is supported only by Network Load Balancers:

  • proxy_protocol_v2.enabled - Indicates whether Proxy Protocol version 2 is enabled. The value is true or false. The default is false.

" + "documentation":"

The name of the attribute.

The following attribute is supported by all load balancers:

  • deregistration_delay.timeout_seconds - The amount of time, in seconds, for Elastic Load Balancing to wait before changing the state of a deregistering target from draining to unused. The range is 0-3600 seconds. The default value is 300 seconds. If the target is a Lambda function, this attribute is not supported.

The following attributes are supported by both Application Load Balancers and Network Load Balancers:

  • stickiness.enabled - Indicates whether sticky sessions are enabled. The value is true or false. The default is false.

  • stickiness.type - The type of sticky sessions. The possible values are lb_cookie for Application Load Balancers or source_ip for Network Load Balancers.

The following attributes are supported only if the load balancer is an Application Load Balancer and the target is an instance or an IP address:

  • load_balancing.algorithm.type - The load balancing algorithm determines how the load balancer selects targets when routing requests. The value is round_robin or least_outstanding_requests. The default is round_robin.

  • slow_start.duration_seconds - The time period, in seconds, during which a newly registered target receives an increasing share of the traffic to the target group. After this time period ends, the target receives its full share of traffic. The range is 30-900 seconds (15 minutes). The default is 0 seconds (disabled).

  • stickiness.lb_cookie.duration_seconds - The time period, in seconds, during which requests from a client should be routed to the same target. After this time period expires, the load balancer-generated cookie is considered stale. The range is 1 second to 1 week (604800 seconds). The default value is 1 day (86400 seconds).

The following attribute is supported only if the load balancer is an Application Load Balancer and the target is a Lambda function:

  • lambda.multi_value_headers.enabled - Indicates whether the request and response headers that are exchanged between the load balancer and the Lambda function include arrays of values or strings. The value is true or false. The default is false. If the value is false and the request contains a duplicate header field name or query parameter key, the load balancer uses the last value sent by the client.

The following attributes are supported only by Network Load Balancers:

  • deregistration_delay.connection_termination.enabled - Indicates whether the load balancer terminates connections at the end of the deregistration timeout. The value is true or false. The default is false.

  • proxy_protocol_v2.enabled - Indicates whether Proxy Protocol version 2 is enabled. The value is true or false. The default is false.

" }, "Value":{ "shape":"TargetGroupAttributeValue", From 02e0814938e91e1e32829836d3e2e61393cf78e9 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 13 Nov 2020 19:09:18 +0000 Subject: [PATCH 190/339] AWS Shield Update: This release adds APIs for two new features: 1) Allow customers to bundle resources into protection groups and treat as a single unit. 2) Provide per-account event summaries to all AWS customers. --- .../feature-AWSShield-dc0d624.json | 6 + .../codegen-resources/paginators-1.json | 10 + .../codegen-resources/service-2.json | 561 +++++++++++++++++- 3 files changed, 564 insertions(+), 13 deletions(-) create mode 100644 .changes/next-release/feature-AWSShield-dc0d624.json diff --git a/.changes/next-release/feature-AWSShield-dc0d624.json b/.changes/next-release/feature-AWSShield-dc0d624.json new file mode 100644 index 000000000000..87be937ef343 --- /dev/null +++ b/.changes/next-release/feature-AWSShield-dc0d624.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Shield", + "contributor": "", + "description": "This release adds APIs for two new features: 1) Allow customers to bundle resources into protection groups and treat as a single unit. 2) Provide per-account event summaries to all AWS customers." +} diff --git a/services/shield/src/main/resources/codegen-resources/paginators-1.json b/services/shield/src/main/resources/codegen-resources/paginators-1.json index cffb14b68194..362ad5d7198b 100644 --- a/services/shield/src/main/resources/codegen-resources/paginators-1.json +++ b/services/shield/src/main/resources/codegen-resources/paginators-1.json @@ -6,11 +6,21 @@ "output_token": "NextToken", "result_key": "AttackSummaries" }, + "ListProtectionGroups": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken" + }, "ListProtections": { "input_token": "NextToken", "limit_key": "MaxResults", "output_token": "NextToken", "result_key": "Protections" + }, + "ListResourcesInProtectionGroup": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken" } } } \ No newline at end of file diff --git a/services/shield/src/main/resources/codegen-resources/service-2.json b/services/shield/src/main/resources/codegen-resources/service-2.json index a37e6df3f89e..b0cc654c6796 100644 --- a/services/shield/src/main/resources/codegen-resources/service-2.json +++ b/services/shield/src/main/resources/codegen-resources/service-2.json @@ -104,6 +104,24 @@ ], "documentation":"

Enables AWS Shield Advanced for a specific AWS resource. The resource can be an Amazon CloudFront distribution, Elastic Load Balancing load balancer, AWS Global Accelerator accelerator, Elastic IP Address, or an Amazon Route 53 hosted zone.

You can add protection to only a single resource with each CreateProtection request. If you want to add protection to multiple resources at once, use the AWS WAF console. For more information see Getting Started with AWS Shield Advanced and Add AWS Shield Advanced Protection to more AWS Resources.

" }, + "CreateProtectionGroup":{ + "name":"CreateProtectionGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateProtectionGroupRequest"}, + "output":{"shape":"CreateProtectionGroupResponse"}, + "errors":[ + {"shape":"InternalErrorException"}, + {"shape":"ResourceAlreadyExistsException"}, + {"shape":"OptimisticLockException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InvalidParameterException"}, + {"shape":"LimitsExceededException"} + ], + "documentation":"

Creates a grouping of protected resources so they can be handled as a collective. This resource grouping improves the accuracy of detection and reduces false positives.

" + }, "CreateSubscription":{ "name":"CreateSubscription", "http":{ @@ -133,6 +151,21 @@ ], "documentation":"

Deletes an AWS Shield Advanced Protection.

" }, + "DeleteProtectionGroup":{ + "name":"DeleteProtectionGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteProtectionGroupRequest"}, + "output":{"shape":"DeleteProtectionGroupResponse"}, + "errors":[ + {"shape":"InternalErrorException"}, + {"shape":"OptimisticLockException"}, + {"shape":"ResourceNotFoundException"} + ], + "documentation":"

Removes the specified protection group.

" + }, "DeleteSubscription":{ "name":"DeleteSubscription", "http":{ @@ -163,6 +196,19 @@ ], "documentation":"

Describes the details of a DDoS attack.

" }, + "DescribeAttackStatistics":{ + "name":"DescribeAttackStatistics", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeAttackStatisticsRequest"}, + "output":{"shape":"DescribeAttackStatisticsResponse"}, + "errors":[ + {"shape":"InternalErrorException"} + ], + "documentation":"

Provides information about the number and type of attacks AWS Shield has detected in the last year for all resources that belong to your account, regardless of whether you've defined Shield protections for them. This operation is available to Shield customers as well as to Shield Advanced customers.

The operation returns data for the time range of midnight UTC, one year ago, to midnight UTC, today. For example, if the current time is 2020-10-26 15:39:32 PDT, equal to 2020-10-26 22:39:32 UTC, then the time range for the attack data returned is from 2019-10-26 00:00:00 UTC to 2020-10-26 00:00:00 UTC.

The time range indicates the period covered by the attack statistics data items.

" + }, "DescribeDRTAccess":{ "name":"DescribeDRTAccess", "http":{ @@ -206,6 +252,20 @@ ], "documentation":"

Lists the details of a Protection object.

" }, + "DescribeProtectionGroup":{ + "name":"DescribeProtectionGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeProtectionGroupRequest"}, + "output":{"shape":"DescribeProtectionGroupResponse"}, + "errors":[ + {"shape":"InternalErrorException"}, + {"shape":"ResourceNotFoundException"} + ], + "documentation":"

Returns the specification for the specified protection group.

" + }, "DescribeSubscription":{ "name":"DescribeSubscription", "http":{ @@ -332,6 +392,21 @@ ], "documentation":"

Returns all ongoing DDoS attacks or all DDoS attacks during a specified time period.

" }, + "ListProtectionGroups":{ + "name":"ListProtectionGroups", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListProtectionGroupsRequest"}, + "output":{"shape":"ListProtectionGroupsResponse"}, + "errors":[ + {"shape":"InternalErrorException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InvalidPaginationTokenException"} + ], + "documentation":"

Retrieves the ProtectionGroup objects for the account.

" + }, "ListProtections":{ "name":"ListProtections", "http":{ @@ -347,6 +422,21 @@ ], "documentation":"

Lists all Protection objects for the account.

" }, + "ListResourcesInProtectionGroup":{ + "name":"ListResourcesInProtectionGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListResourcesInProtectionGroupRequest"}, + "output":{"shape":"ListResourcesInProtectionGroupResponse"}, + "errors":[ + {"shape":"InternalErrorException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InvalidPaginationTokenException"} + ], + "documentation":"

Retrieves the resources that are included in the protection group.

" + }, "UpdateEmergencyContactSettings":{ "name":"UpdateEmergencyContactSettings", "http":{ @@ -363,6 +453,22 @@ ], "documentation":"

Updates the details of the list of email addresses and phone numbers that the DDoS Response Team (DRT) can use to contact you if you have proactive engagement enabled, for escalations to the DRT and to initiate proactive customer support.

" }, + "UpdateProtectionGroup":{ + "name":"UpdateProtectionGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateProtectionGroupRequest"}, + "output":{"shape":"UpdateProtectionGroupResponse"}, + "errors":[ + {"shape":"InternalErrorException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"OptimisticLockException"}, + {"shape":"InvalidParameterException"} + ], + "documentation":"

Updates an existing protection group. A protection group is a grouping of protected resources so they can be handled as a collective. This resource grouping improves the accuracy of detection and reduces false positives.

" + }, "UpdateSubscription":{ "name":"UpdateSubscription", "http":{ @@ -533,7 +639,7 @@ }, "TopContributors":{ "shape":"TopContributors", - "documentation":"

The array of Contributor objects that includes the top five contributors to an attack.

" + "documentation":"

The array of contributor objects that includes the top five contributors to an attack.

" }, "Unit":{ "shape":"Unit", @@ -559,6 +665,25 @@ "WORDPRESS_PINGBACK_SOURCE" ] }, + "AttackStatisticsDataItem":{ + "type":"structure", + "required":["AttackCount"], + "members":{ + "AttackVolume":{ + "shape":"AttackVolume", + "documentation":"

Information about the volume of attacks during the time period. If the accompanying AttackCount is zero, this setting might be empty.

" + }, + "AttackCount":{ + "shape":"Long", + "documentation":"

The number of attacks detected during the time period. This is always present, but might be zero.

" + } + }, + "documentation":"

A single attack statistics data record. This is returned by DescribeAttackStatistics along with a time range indicating the time period that the attack statistics apply to.

" + }, + "AttackStatisticsDataList":{ + "type":"list", + "member":{"shape":"AttackStatisticsDataItem"} + }, "AttackSummaries":{ "type":"list", "member":{"shape":"AttackSummary"} @@ -605,6 +730,35 @@ "type":"list", "member":{"shape":"AttackVectorDescription"} }, + "AttackVolume":{ + "type":"structure", + "members":{ + "BitsPerSecond":{ + "shape":"AttackVolumeStatistics", + "documentation":"

A statistics object that uses bits per second as the unit. This is included for network level attacks.

" + }, + "PacketsPerSecond":{ + "shape":"AttackVolumeStatistics", + "documentation":"

A statistics object that uses packets per second as the unit. This is included for network level attacks.

" + }, + "RequestsPerSecond":{ + "shape":"AttackVolumeStatistics", + "documentation":"

A statistics object that uses requests per second as the unit. This is included for application level attacks, and is only available for accounts that are subscribed to Shield Advanced.

" + } + }, + "documentation":"

Information about the volume of attacks during the time period, included in an AttackStatisticsDataItem. If the accompanying AttackCount in the statistics object is zero, this setting might be empty.

" + }, + "AttackVolumeStatistics":{ + "type":"structure", + "required":["Max"], + "members":{ + "Max":{ + "shape":"Double", + "documentation":"

The maximum attack volume observed for the given unit.

" + } + }, + "documentation":"

Statistics objects for the various data types in AttackVolume.

" + }, "AutoRenew":{ "type":"string", "enum":[ @@ -632,6 +786,41 @@ }, "documentation":"

A contributor to the attack and their contribution.

" }, + "CreateProtectionGroupRequest":{ + "type":"structure", + "required":[ + "ProtectionGroupId", + "Aggregation", + "Pattern" + ], + "members":{ + "ProtectionGroupId":{ + "shape":"ProtectionGroupId", + "documentation":"

The name of the protection group. You use this to identify the protection group in lists and to manage the protection group, for example to update, delete, or describe it.

" + }, + "Aggregation":{ + "shape":"ProtectionGroupAggregation", + "documentation":"

Defines how AWS Shield combines resource data for the group in order to detect, mitigate, and report events.

  • Sum - Use the total traffic across the group. This is a good choice for most cases. Examples include Elastic IP addresses for EC2 instances that scale manually or automatically.

  • Mean - Use the average of the traffic across the group. This is a good choice for resources that share traffic uniformly. Examples include accelerators and load balancers.

  • Max - Use the highest traffic from each resource. This is useful for resources that don't share traffic and for resources that share that traffic in a non-uniform way. Examples include CloudFront distributions and origin resources for CloudFront distributions.

" + }, + "Pattern":{ + "shape":"ProtectionGroupPattern", + "documentation":"

The criteria to use to choose the protected resources for inclusion in the group. You can include all resources that have protections, provide a list of resource Amazon Resource Names (ARNs), or include all resources of a specified resource type.

" + }, + "ResourceType":{ + "shape":"ProtectedResourceType", + "documentation":"

The resource type to include in the protection group. All protected resources of this type are included in the protection group. Newly protected resources of this type are automatically added to the group. You must set this when you set Pattern to BY_RESOURCE_TYPE and you must not set it for any other Pattern setting.

" + }, + "Members":{ + "shape":"ProtectionGroupMembers", + "documentation":"

The Amazon Resource Names (ARNs) of the resources to include in the protection group. You must set this when you set Pattern to ARBITRARY and you must not set it for any other Pattern setting.

" + } + } + }, + "CreateProtectionGroupResponse":{ + "type":"structure", + "members":{ + } + }, "CreateProtectionRequest":{ "type":"structure", "required":[ @@ -668,6 +857,21 @@ "members":{ } }, + "DeleteProtectionGroupRequest":{ + "type":"structure", + "required":["ProtectionGroupId"], + "members":{ + "ProtectionGroupId":{ + "shape":"ProtectionGroupId", + "documentation":"

The name of the protection group. You use this to identify the protection group in lists and to manage the protection group, for example to update, delete, or describe it.

" + } + } + }, + "DeleteProtectionGroupResponse":{ + "type":"structure", + "members":{ + } + }, "DeleteProtectionRequest":{ "type":"structure", "required":["ProtectionId"], @@ -714,6 +918,25 @@ } } }, + "DescribeAttackStatisticsRequest":{ + "type":"structure", + "members":{ + } + }, + "DescribeAttackStatisticsResponse":{ + "type":"structure", + "required":[ + "TimeRange", + "DataItems" + ], + "members":{ + "TimeRange":{"shape":"TimeRange"}, + "DataItems":{ + "shape":"AttackStatisticsDataList", + "documentation":"

The data that describes the attacks detected during the time period.

" + } + } + }, "DescribeDRTAccessRequest":{ "type":"structure", "members":{ @@ -746,6 +969,26 @@ } } }, + "DescribeProtectionGroupRequest":{ + "type":"structure", + "required":["ProtectionGroupId"], + "members":{ + "ProtectionGroupId":{ + "shape":"ProtectionGroupId", + "documentation":"

The name of the protection group. You use this to identify the protection group in lists and to manage the protection group, for example to update, delete, or describe it.

" + } + } + }, + "DescribeProtectionGroupResponse":{ + "type":"structure", + "required":["ProtectionGroup"], + "members":{ + "ProtectionGroup":{ + "shape":"ProtectionGroup", + "documentation":"

A grouping of protected resources that you and AWS Shield Advanced can monitor as a collective. This resource grouping improves the accuracy of detection and reduces false positives.

" + } + } + }, "DescribeProtectionRequest":{ "type":"structure", "members":{ @@ -940,9 +1183,17 @@ "InvalidParameterException":{ "type":"structure", "members":{ - "message":{"shape":"errorMessage"} + "message":{"shape":"errorMessage"}, + "reason":{ + "shape":"ValidationExceptionReason", + "documentation":"

Additional information about the exception.

" + }, + "fields":{ + "shape":"ValidationExceptionFieldList", + "documentation":"

Fields that caused the exception.

" + } }, - "documentation":"

Exception that indicates that the parameters passed to the API are invalid.

", + "documentation":"

Exception that indicates that the parameters passed to the API are invalid. If available, this exception includes details in additional properties.

", "exception":true }, "InvalidResourceException":{ @@ -1004,7 +1255,7 @@ }, "MaxResults":{ "shape":"MaxResults", - "documentation":"

The maximum number of AttackSummary objects to be returned. If this is left blank, the first 20 results will be returned.

This is a maximum value; it is possible that AWS WAF will return the results in smaller batches. That is, the number of AttackSummary objects returned could be less than MaxResults, even if there are still more AttackSummary objects yet to return. If there are more AttackSummary objects to return, AWS WAF will always also return a NextToken.

" + "documentation":"

The maximum number of AttackSummary objects to return. If you leave this blank, Shield Advanced returns the first 20 results.

This is a maximum value. Shield Advanced might return the results in smaller batches. That is, the number of objects returned could be less than MaxResults, even if there are still more objects yet to return. If there are more objects to return, Shield Advanced returns a value in NextToken that you can use in your next request, to get the next batch of objects.

" } } }, @@ -1017,7 +1268,34 @@ }, "NextToken":{ "shape":"Token", - "documentation":"

The token returned by a previous call to indicate that there is more data available. If not null, more results are available. Pass this value for the NextMarker parameter in a subsequent call to ListAttacks to retrieve the next set of items.

AWS WAF might return the list of AttackSummary objects in batches smaller than the number specified by MaxResults. If there are more AttackSummary objects to return, AWS WAF will always also return a NextToken.

" + "documentation":"

The token returned by a previous call to indicate that there is more data available. If not null, more results are available. Pass this value for the NextMarker parameter in a subsequent call to ListAttacks to retrieve the next set of items.

Shield Advanced might return the list of AttackSummary objects in batches smaller than the number specified by MaxResults. If there are more attack summary objects to return, Shield Advanced will always also return a NextToken.

" + } + } + }, + "ListProtectionGroupsRequest":{ + "type":"structure", + "members":{ + "NextToken":{ + "shape":"Token", + "documentation":"

The next token value from a previous call to ListProtectionGroups. Pass null if this is the first call.

" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of ProtectionGroup objects to return. If you leave this blank, Shield Advanced returns the first 20 results.

This is a maximum value. Shield Advanced might return the results in smaller batches. That is, the number of objects returned could be less than MaxResults, even if there are still more objects yet to return. If there are more objects to return, Shield Advanced returns a value in NextToken that you can use in your next request, to get the next batch of objects.

" + } + } + }, + "ListProtectionGroupsResponse":{ + "type":"structure", + "required":["ProtectionGroups"], + "members":{ + "ProtectionGroups":{ + "shape":"ProtectionGroups", + "documentation":"

" + }, + "NextToken":{ + "shape":"Token", + "documentation":"

If you specify a value for MaxResults and you have more protection groups than the value of MaxResults, AWS Shield Advanced returns this token that you can use in your next request, to get the next batch of objects.

" } } }, @@ -1030,7 +1308,7 @@ }, "MaxResults":{ "shape":"MaxResults", - "documentation":"

The maximum number of Protection objects to be returned. If this is left blank the first 20 results will be returned.

This is a maximum value; it is possible that AWS WAF will return the results in smaller batches. That is, the number of Protection objects returned could be less than MaxResults, even if there are still more Protection objects yet to return. If there are more Protection objects to return, AWS WAF will always also return a NextToken.

" + "documentation":"

The maximum number of Protection objects to return. If you leave this blank, Shield Advanced returns the first 20 results.

This is a maximum value. Shield Advanced might return the results in smaller batches. That is, the number of objects returned could be less than MaxResults, even if there are still more objects yet to return. If there are more objects to return, Shield Advanced returns a value in NextToken that you can use in your next request, to get the next batch of objects.

" } } }, @@ -1043,7 +1321,39 @@ }, "NextToken":{ "shape":"Token", - "documentation":"

If you specify a value for MaxResults and you have more Protections than the value of MaxResults, AWS Shield Advanced returns a NextToken value in the response that allows you to list another group of Protections. For the second and subsequent ListProtections requests, specify the value of NextToken from the previous response to get information about another batch of Protections.

AWS WAF might return the list of Protection objects in batches smaller than the number specified by MaxResults. If there are more Protection objects to return, AWS WAF will always also return a NextToken.

" + "documentation":"

If you specify a value for MaxResults and you have more Protections than the value of MaxResults, AWS Shield Advanced returns a NextToken value in the response that allows you to list another group of Protections. For the second and subsequent ListProtections requests, specify the value of NextToken from the previous response to get information about another batch of Protections.

Shield Advanced might return the list of Protection objects in batches smaller than the number specified by MaxResults. If there are more Protection objects to return, Shield Advanced will always also return a NextToken.

" + } + } + }, + "ListResourcesInProtectionGroupRequest":{ + "type":"structure", + "required":["ProtectionGroupId"], + "members":{ + "ProtectionGroupId":{ + "shape":"ProtectionGroupId", + "documentation":"

The name of the protection group. You use this to identify the protection group in lists and to manage the protection group, for example to update, delete, or describe it.

" + }, + "NextToken":{ + "shape":"Token", + "documentation":"

The next token value from a previous call to ListResourcesInProtectionGroup. Pass null if this is the first call.

" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of resource ARN objects to return. If you leave this blank, Shield Advanced returns the first 20 results.

This is a maximum value. Shield Advanced might return the results in smaller batches. That is, the number of objects returned could be less than MaxResults, even if there are still more objects yet to return. If there are more objects to return, Shield Advanced returns a value in NextToken that you can use in your next request, to get the next batch of objects.

" + } + } + }, + "ListResourcesInProtectionGroupResponse":{ + "type":"structure", + "required":["ResourceArns"], + "members":{ + "ResourceArns":{ + "shape":"ResourceArnList", + "documentation":"

The Amazon Resource Names (ARNs) of the resources that are included in the protection group.

" + }, + "NextToken":{ + "shape":"Token", + "documentation":"

If you specify a value for MaxResults and you have more resources in the protection group than the value of MaxResults, AWS Shield Advanced returns this token that you can use in your next request, to get the next batch of objects.

" } } }, @@ -1118,6 +1428,17 @@ "PENDING" ] }, + "ProtectedResourceType":{ + "type":"string", + "enum":[ + "CLOUDFRONT_DISTRIBUTION", + "ROUTE_53_HOSTED_ZONE", + "ELASTIC_IP_ALLOCATION", + "CLASSIC_LOAD_BALANCER", + "APPLICATION_LOAD_BALANCER", + "GLOBAL_ACCELERATOR" + ] + }, "Protection":{ "type":"structure", "members":{ @@ -1127,7 +1448,7 @@ }, "Name":{ "shape":"ProtectionName", - "documentation":"

The friendly name of the protection. For example, My CloudFront distributions.

" + "documentation":"

The name of the protection. For example, My CloudFront distributions.

" }, "ResourceArn":{ "shape":"ResourceArn", @@ -1140,12 +1461,127 @@ }, "documentation":"

An object that represents a resource that is under DDoS protection.

" }, + "ProtectionGroup":{ + "type":"structure", + "required":[ + "ProtectionGroupId", + "Aggregation", + "Pattern", + "Members" + ], + "members":{ + "ProtectionGroupId":{ + "shape":"ProtectionGroupId", + "documentation":"

The name of the protection group. You use this to identify the protection group in lists and to manage the protection group, for example to update, delete, or describe it.

" + }, + "Aggregation":{ + "shape":"ProtectionGroupAggregation", + "documentation":"

Defines how AWS Shield combines resource data for the group in order to detect, mitigate, and report events.

  • Sum - Use the total traffic across the group. This is a good choice for most cases. Examples include Elastic IP addresses for EC2 instances that scale manually or automatically.

  • Mean - Use the average of the traffic across the group. This is a good choice for resources that share traffic uniformly. Examples include accelerators and load balancers.

  • Max - Use the highest traffic from each resource. This is useful for resources that don't share traffic and for resources that share that traffic in a non-uniform way. Examples include CloudFront distributions and origin resources for CloudFront distributions.

" + }, + "Pattern":{ + "shape":"ProtectionGroupPattern", + "documentation":"

The criteria to use to choose the protected resources for inclusion in the group. You can include all resources that have protections, provide a list of resource Amazon Resource Names (ARNs), or include all resources of a specified resource type.

" + }, + "ResourceType":{ + "shape":"ProtectedResourceType", + "documentation":"

The resource type to include in the protection group. All protected resources of this type are included in the protection group. You must set this when you set Pattern to BY_RESOURCE_TYPE and you must not set it for any other Pattern setting.

" + }, + "Members":{ + "shape":"ProtectionGroupMembers", + "documentation":"

The Amazon Resource Names (ARNs) of the resources to include in the protection group. You must set this when you set Pattern to ARBITRARY and you must not set it for any other Pattern setting.

" + } + }, + "documentation":"

A grouping of protected resources that you and AWS Shield Advanced can monitor as a collective. This resource grouping improves the accuracy of detection and reduces false positives.

" + }, + "ProtectionGroupAggregation":{ + "type":"string", + "enum":[ + "SUM", + "MEAN", + "MAX" + ] + }, + "ProtectionGroupArbitraryPatternLimits":{ + "type":"structure", + "required":["MaxMembers"], + "members":{ + "MaxMembers":{ + "shape":"Long", + "documentation":"

The maximum number of resources you can specify for a single arbitrary pattern in a protection group.

" + } + }, + "documentation":"

Limits settings on protection groups with arbitrary pattern type.

" + }, + "ProtectionGroupId":{ + "type":"string", + "max":36, + "min":1, + "pattern":"[a-zA-Z0-9\\\\-]*" + }, + "ProtectionGroupLimits":{ + "type":"structure", + "required":[ + "MaxProtectionGroups", + "PatternTypeLimits" + ], + "members":{ + "MaxProtectionGroups":{ + "shape":"Long", + "documentation":"

The maximum number of protection groups that you can have at one time.

" + }, + "PatternTypeLimits":{ + "shape":"ProtectionGroupPatternTypeLimits", + "documentation":"

Limits settings by pattern type in the protection groups for your subscription.

" + } + }, + "documentation":"

Limits settings on protection groups for your subscription.

" + }, + "ProtectionGroupMembers":{ + "type":"list", + "member":{"shape":"ResourceArn"}, + "max":10000, + "min":0 + }, + "ProtectionGroupPattern":{ + "type":"string", + "enum":[ + "ALL", + "ARBITRARY", + "BY_RESOURCE_TYPE" + ] + }, + "ProtectionGroupPatternTypeLimits":{ + "type":"structure", + "required":["ArbitraryPatternLimits"], + "members":{ + "ArbitraryPatternLimits":{ + "shape":"ProtectionGroupArbitraryPatternLimits", + "documentation":"

Limits settings on protection groups with arbitrary pattern type.

" + } + }, + "documentation":"

Limits settings by pattern type in the protection groups for your subscription.

" + }, + "ProtectionGroups":{ + "type":"list", + "member":{"shape":"ProtectionGroup"} + }, "ProtectionId":{ "type":"string", "max":36, "min":1, "pattern":"[a-zA-Z0-9\\\\-]*" }, + "ProtectionLimits":{ + "type":"structure", + "required":["ProtectedResourceTypeLimits"], + "members":{ + "ProtectedResourceTypeLimits":{ + "shape":"Limits", + "documentation":"

The maximum number of resource types that you can specify in a protection.

" + } + }, + "documentation":"

Limits settings on protections for your subscription.

" + }, "ProtectionName":{ "type":"string", "max":128, @@ -1159,9 +1595,13 @@ "ResourceAlreadyExistsException":{ "type":"structure", "members":{ - "message":{"shape":"errorMessage"} + "message":{"shape":"errorMessage"}, + "resourceType":{ + "shape":"String", + "documentation":"

The type of resource that already exists.

" + } }, - "documentation":"

Exception indicating the specified resource already exists.

", + "documentation":"

Exception indicating the specified resource already exists. If available, this exception includes details in additional properties.

", "exception":true }, "ResourceArn":{ @@ -1174,12 +1614,20 @@ "type":"list", "member":{"shape":"ResourceArn"} }, + "ResourceArnList":{ + "type":"list", + "member":{"shape":"ResourceArn"} + }, "ResourceNotFoundException":{ "type":"structure", "members":{ - "message":{"shape":"errorMessage"} + "message":{"shape":"errorMessage"}, + "resourceType":{ + "shape":"String", + "documentation":"

Type of resource.

" + } }, - "documentation":"

Exception indicating the specified resource does not exist.

", + "documentation":"

Exception indicating the specified resource does not exist. If available, this exception includes details in additional properties.

", "exception":true }, "RoleArn":{ @@ -1224,6 +1672,7 @@ }, "Subscription":{ "type":"structure", + "required":["SubscriptionLimits"], "members":{ "StartTime":{ "shape":"Timestamp", @@ -1248,10 +1697,32 @@ "ProactiveEngagementStatus":{ "shape":"ProactiveEngagementStatus", "documentation":"

If ENABLED, the DDoS Response Team (DRT) will use email and phone to notify contacts about escalations to the DRT and to initiate proactive customer support.

If PENDING, you have requested proactive engagement and the request is pending. The status changes to ENABLED when your request is fully processed.

If DISABLED, the DRT will not proactively notify contacts about escalations or to initiate proactive customer support.

" + }, + "SubscriptionLimits":{ + "shape":"SubscriptionLimits", + "documentation":"

Limits settings for your subscription.

" } }, "documentation":"

Information about the AWS Shield Advanced subscription for an account.

" }, + "SubscriptionLimits":{ + "type":"structure", + "required":[ + "ProtectionLimits", + "ProtectionGroupLimits" + ], + "members":{ + "ProtectionLimits":{ + "shape":"ProtectionLimits", + "documentation":"

Limits settings on protections for your subscription.

" + }, + "ProtectionGroupLimits":{ + "shape":"ProtectionGroupLimits", + "documentation":"

Limits settings on protection groups for your subscription.

" + } + }, + "documentation":"

Limits settings for your subscription.

" + }, "SubscriptionState":{ "type":"string", "enum":[ @@ -1324,7 +1795,7 @@ "documentation":"

The end time, in Unix time in seconds. For more information see timestamp.

" } }, - "documentation":"

The time range.

" + "documentation":"

The time range.

" }, "Timestamp":{"type":"timestamp"}, "Token":{ @@ -1360,6 +1831,41 @@ "members":{ } }, + "UpdateProtectionGroupRequest":{ + "type":"structure", + "required":[ + "ProtectionGroupId", + "Aggregation", + "Pattern" + ], + "members":{ + "ProtectionGroupId":{ + "shape":"ProtectionGroupId", + "documentation":"

The name of the protection group. You use this to identify the protection group in lists and to manage the protection group, for example to update, delete, or describe it.

" + }, + "Aggregation":{ + "shape":"ProtectionGroupAggregation", + "documentation":"

Defines how AWS Shield combines resource data for the group in order to detect, mitigate, and report events.

  • Sum - Use the total traffic across the group. This is a good choice for most cases. Examples include Elastic IP addresses for EC2 instances that scale manually or automatically.

  • Mean - Use the average of the traffic across the group. This is a good choice for resources that share traffic uniformly. Examples include accelerators and load balancers.

  • Max - Use the highest traffic from each resource. This is useful for resources that don't share traffic and for resources that share that traffic in a non-uniform way. Examples include CloudFront distributions and origin resources for CloudFront distributions.

" + }, + "Pattern":{ + "shape":"ProtectionGroupPattern", + "documentation":"

The criteria to use to choose the protected resources for inclusion in the group. You can include all resources that have protections, provide a list of resource Amazon Resource Names (ARNs), or include all resources of a specified resource type.

" + }, + "ResourceType":{ + "shape":"ProtectedResourceType", + "documentation":"

The resource type to include in the protection group. All protected resources of this type are included in the protection group. You must set this when you set Pattern to BY_RESOURCE_TYPE and you must not set it for any other Pattern setting.

" + }, + "Members":{ + "shape":"ProtectionGroupMembers", + "documentation":"

The Amazon Resource Names (ARNs) of the resources to include in the protection group. You must set this when you set Pattern to ARBITRARY and you must not set it for any other Pattern setting.

" + } + } + }, + "UpdateProtectionGroupResponse":{ + "type":"structure", + "members":{ + } + }, "UpdateSubscriptionRequest":{ "type":"structure", "members":{ @@ -1374,6 +1880,35 @@ "members":{ } }, + "ValidationExceptionField":{ + "type":"structure", + "required":[ + "name", + "message" + ], + "members":{ + "name":{ + "shape":"String", + "documentation":"

The name of the parameter that failed validation.

" + }, + "message":{ + "shape":"String", + "documentation":"

The message describing why the parameter failed validation.

" + } + }, + "documentation":"

Provides information about a particular parameter passed inside a request that resulted in an exception.

" + }, + "ValidationExceptionFieldList":{ + "type":"list", + "member":{"shape":"ValidationExceptionField"} + }, + "ValidationExceptionReason":{ + "type":"string", + "enum":[ + "FIELD_VALIDATION_FAILED", + "OTHER" + ] + }, "errorMessage":{"type":"string"} }, "documentation":"AWS Shield Advanced

This is the AWS Shield Advanced API Reference. This guide is for developers who need detailed information about the AWS Shield Advanced API actions, data types, and errors. For detailed information about AWS WAF and AWS Shield Advanced features and an overview of how to use the AWS WAF and AWS Shield Advanced APIs, see the AWS WAF and AWS Shield Developer Guide.

" From df3dbf4ed13a770cf8cd36a246d3a6ed6d5746f5 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 13 Nov 2020 19:10:28 +0000 Subject: [PATCH 191/339] Updated endpoints.json. --- .../feature-AWSSDKforJavav2-bedacd4.json | 6 +++++ .../regions/internal/region/endpoints.json | 25 ++++++++++++++++++- 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json new file mode 100644 index 000000000000..ae3f84993e9e --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." +} diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json index 4d783373fa19..563ddd6d05bc 100644 --- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json +++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json @@ -653,6 +653,7 @@ }, "appsync" : { "endpoints" : { + "ap-east-1" : { }, "ap-northeast-1" : { }, "ap-northeast-2" : { }, "ap-south-1" : { }, @@ -665,6 +666,7 @@ "eu-west-1" : { }, "eu-west-2" : { }, "eu-west-3" : { }, + "me-south-1" : { }, "sa-east-1" : { }, "us-east-1" : { }, "us-east-2" : { }, @@ -2851,6 +2853,7 @@ }, "glue" : { "endpoints" : { + "af-south-1" : { }, "ap-east-1" : { }, "ap-northeast-1" : { }, "ap-northeast-2" : { }, @@ -6544,7 +6547,8 @@ }, "appsync" : { "endpoints" : { - "cn-north-1" : { } + "cn-north-1" : { }, + "cn-northwest-1" : { } } }, "athena" : { @@ -8104,6 +8108,17 @@ "us-gov-west-1" : { } } }, + "lakeformation" : { + "endpoints" : { + "fips-us-gov-west-1" : { + "credentialScope" : { + "region" : "us-gov-west-1" + }, + "hostname" : "lakeformation-fips.us-gov-west-1.amazonaws.com" + }, + "us-gov-west-1" : { } + } + }, "lambda" : { "endpoints" : { "fips-us-gov-east-1" : { @@ -9108,6 +9123,14 @@ "us-iso-east-1" : { } } }, + "translate" : { + "defaults" : { + "protocols" : [ "https" ] + }, + "endpoints" : { + "us-iso-east-1" : { } + } + }, "workspaces" : { "endpoints" : { "us-iso-east-1" : { } From e8db1d114e0f1537cade10ed38e337c2d106a677 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 13 Nov 2020 19:10:57 +0000 Subject: [PATCH 192/339] Release 2.15.28. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.28.json | 30 +++++++++++++++++++ .../feature-AWSSDKforJavav2-bedacd4.json | 6 ---- .../feature-AWSShield-dc0d624.json | 6 ---- .../feature-AmazonTextract-b3c1be1.json | 6 ---- .../feature-ElasticLoadBalancing-51e955c.json | 6 ---- CHANGELOG.md | 17 +++++++++++ README.md | 8 ++--- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 289 files changed, 333 insertions(+), 310 deletions(-) create mode 100644 .changes/2.15.28.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json delete mode 100644 .changes/next-release/feature-AWSShield-dc0d624.json delete mode 100644 .changes/next-release/feature-AmazonTextract-b3c1be1.json delete mode 100644 .changes/next-release/feature-ElasticLoadBalancing-51e955c.json diff --git a/.changes/2.15.28.json b/.changes/2.15.28.json new file mode 100644 index 000000000000..324074327277 --- /dev/null +++ b/.changes/2.15.28.json @@ -0,0 +1,30 @@ +{ + "version": "2.15.28", + "date": "2020-11-13", + "entries": [ + { + "type": "feature", + "category": "Elastic Load Balancing", + "contributor": "", + "description": "Adds dualstack support for Network Load Balancers (TCP/TLS only), an attribute for WAF fail open for Application Load Balancers, and an attribute for connection draining for Network Load Balancers." + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." + }, + { + "type": "feature", + "category": "AWS Shield", + "contributor": "", + "description": "This release adds APIs for two new features: 1) Allow customers to bundle resources into protection groups and treat as a single unit. 2) Provide per-account event summaries to all AWS customers." + }, + { + "type": "feature", + "category": "Amazon Textract", + "contributor": "", + "description": "AWS Textract now allows customers to specify their own KMS key to be used for asynchronous jobs output results, AWS Textract now also recognizes handwritten text from English documents." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json deleted file mode 100644 index ae3f84993e9e..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS SDK for Java v2", - "contributor": "", - "description": "Updated service endpoint metadata." -} diff --git a/.changes/next-release/feature-AWSShield-dc0d624.json b/.changes/next-release/feature-AWSShield-dc0d624.json deleted file mode 100644 index 87be937ef343..000000000000 --- a/.changes/next-release/feature-AWSShield-dc0d624.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Shield", - "contributor": "", - "description": "This release adds APIs for two new features: 1) Allow customers to bundle resources into protection groups and treat as a single unit. 2) Provide per-account event summaries to all AWS customers." -} diff --git a/.changes/next-release/feature-AmazonTextract-b3c1be1.json b/.changes/next-release/feature-AmazonTextract-b3c1be1.json deleted file mode 100644 index 40a9d0a87544..000000000000 --- a/.changes/next-release/feature-AmazonTextract-b3c1be1.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Textract", - "contributor": "", - "description": "AWS Textract now allows customers to specify their own KMS key to be used for asynchronous jobs output results, AWS Textract now also recognizes handwritten text from English documents." -} diff --git a/.changes/next-release/feature-ElasticLoadBalancing-51e955c.json b/.changes/next-release/feature-ElasticLoadBalancing-51e955c.json deleted file mode 100644 index 0ed9fd9375b8..000000000000 --- a/.changes/next-release/feature-ElasticLoadBalancing-51e955c.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Elastic Load Balancing", - "contributor": "", - "description": "Adds dualstack support for Network Load Balancers (TCP/TLS only), an attribute for WAF fail open for Application Load Balancers, and an attribute for connection draining for Network Load Balancers." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index e72db5ba870a..c92e1dc882a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# __2.15.28__ __2020-11-13__ +## __AWS SDK for Java v2__ + - ### Features + - Updated service endpoint metadata. + +## __AWS Shield__ + - ### Features + - This release adds APIs for two new features: 1) Allow customers to bundle resources into protection groups and treat as a single unit. 2) Provide per-account event summaries to all AWS customers. + +## __Amazon Textract__ + - ### Features + - AWS Textract now allows customers to specify their own KMS key to be used for asynchronous jobs output results, AWS Textract now also recognizes handwritten text from English documents. + +## __Elastic Load Balancing__ + - ### Features + - Adds dualstack support for Network Load Balancers (TCP/TLS only), an attribute for WAF fail open for Application Load Balancers, and an attribute for connection draining for Network Load Balancers. + # __2.15.27__ __2020-11-12__ ## __AWS IoT__ - ### Features diff --git a/README.md b/README.md index d543d2ba557b..3e756f96f20c 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.27 + 2.15.28 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.27 + 2.15.28 software.amazon.awssdk s3 - 2.15.27 + 2.15.28 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.27 + 2.15.28 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 8fa3e95dd4bd..f78f7b91f7c5 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index d940ceca4a37..83f10d2eb22f 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 135e5bce39b9..0ecad5550bd7 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.15.28-SNAPSHOT + 2.15.28 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 8200735accb0..733f939716f4 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index ac8bcfba96fb..864150919907 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.28-SNAPSHOT + 2.15.28 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 3a08ea6ca7d3..b019499a3e17 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.28-SNAPSHOT + 2.15.28 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index faa9f77eb87d..01631d369e4a 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.15.28-SNAPSHOT + 2.15.28 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 516dd8669be4..e1d1bf818a17 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.28-SNAPSHOT + 2.15.28 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 7932c8c345d4..c8ceedf0af0a 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.15.28-SNAPSHOT + 2.15.28 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 05f4b4600486..0db685b492b0 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.28-SNAPSHOT + 2.15.28 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 13f68d6bb762..14d37e3da1c3 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index e5945787820e..80048e678b86 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index ac9af464a688..74ebc7aa65bf 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.28-SNAPSHOT + 2.15.28 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 133eee4b0a5f..20cd3597712a 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.28-SNAPSHOT + 2.15.28 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index cde365b9e5cf..0146d5b2c453 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index b133a4ff2145..fe36574ba6b5 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 152a1fbb40bc..809422d14a65 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.28-SNAPSHOT + 2.15.28 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 4b43d085f871..1d6daad468ea 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.15.28-SNAPSHOT + 2.15.28 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 9cb00844b85c..48be4627e256 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index fb38d02c1378..265c284ba56c 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.15.28-SNAPSHOT + 2.15.28 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 361a7910f808..6c506ff74e96 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.15.28-SNAPSHOT + 2.15.28 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 45e66e25136c..c340da9dffde 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.15.28-SNAPSHOT + 2.15.28 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index f3682199f41a..146176711dbc 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index eb6100aa1207..7771dbe08b57 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 1102972a339b..1756bafaf3d2 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.28-SNAPSHOT + 2.15.28 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 1fa1fc9d0d90..44aefdab0c36 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.28-SNAPSHOT + 2.15.28 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 44aad8adba0e..f292e8b7ffeb 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.15.28-SNAPSHOT + 2.15.28 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 0cc78f7b8e77..4be071ee17b9 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.15.28-SNAPSHOT + 2.15.28 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 01d00c4eff28..2b559f7d76f2 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.15.28-SNAPSHOT + 2.15.28 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 51e64fb9a4cc..fcd293e438f7 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.15.28-SNAPSHOT + 2.15.28 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 277069e0122f..b6cc74235cb4 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 6e9cebec2a03..887159a077b2 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.15.28-SNAPSHOT + 2.15.28 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 2a3085f33b8d..3bde12850f68 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.15.28-SNAPSHOT + 2.15.28 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 2c4a258ef4bc..961ba1c4075b 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.28-SNAPSHOT + 2.15.28 metric-publishers diff --git a/pom.xml b/pom.xml index 703a329ff1ef..a1e52141f1b9 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.28-SNAPSHOT + 2.15.28 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 c516cca5fbf9..c1b361c83c76 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.28-SNAPSHOT + 2.15.28 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 4718a53c2f2b..dbaeb5f65e01 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.15.28-SNAPSHOT + 2.15.28 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 261da8fb5f67..f1fa6adbc71d 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.28-SNAPSHOT + 2.15.28 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index a410a224df35..be69b8621ff2 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 4c7d7c506aa9..33f46d8e0433 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index cfbf8d46a8c5..ab17bc95610a 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index dd86040b78ee..1eeedd3727de 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index b1e5d7e85df3..e83fa756e8de 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index d2fe44b89e4a..d54968b319be 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 193ecc54cfc1..cbcba000eb5c 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 8eaab85db0df..2dc61437779c 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index e02b367b144c..3c4f4298646f 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 456a352b67a4..adca265104d0 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 243983b06d4d..c8691f38ded6 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 6589803250be..fe73fa6745dd 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 3045ba416441..5ddd516e41f2 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 30c0eac59e23..d0b82c6a8824 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 861906347ee0..3dd83e2aeb6a 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index e0ef9924dc50..0549e479c85c 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 6c1975a75a17..85de926d778d 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 378497aae518..f7099f0bcd1f 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index bb063c120270..8035bfda16f9 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index cfde3704ae96..085fa8549c33 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 0db1b05d2d3c..a13f0c32932c 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 8984235a02fd..95b665f77fec 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 4f13ad41426f..6f68868d6391 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 24df7d63de86..e28046a10266 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 5713a2fa504f..014d25c87bb2 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 214029e88a75..12b937053852 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 84d5a1b9b053..29ce903086b4 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 109c0ea28fc9..68dcbdb96911 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 6a10af768d1d..7bd19b3f6b35 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index db97c516e651..a3596dbf2bd4 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 944c8d11845b..606d1521b9df 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index ecf7b02d8132..c5160b8170b8 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index bcfdefd1aa25..abe9a22f9d5d 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 4abebf6fd7ac..2cae792b1f39 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 1e4d1af98862..6c23f533bc45 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 2dd83f8925e1..9c6c93118271 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 094699a04ebf..43b7ed2f1792 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 51dcdbec2ad7..f522c07a31ba 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 891322fda206..587b1df0775f 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index fe6d782c2179..9079531ab114 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index d99459649d9a..4523b1b9ba00 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 9b60b34756b6..35f82bde0cba 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 7f96f350a206..96bf22ca5ad9 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 123fc4d6b772..a984c59e3739 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index d589c5fac751..c684e6a44f45 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 168d1c17dbd3..cf5c8483b583 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 9f2f0e6c28c0..ec94c4da6300 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 7845034f696c..087f6522ccdc 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 8536208c75ca..cef119f02ddd 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index b6d1be98bb45..f37b284ccc1d 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index ce6fc439f8f2..3f0976c95fa0 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 3f8165f35fae..75fef0032e78 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index f0dbfd6b46bf..c39bb55c3649 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index a9e203546d08..e3e1e0767eff 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 7d0f873972a2..c0301dfa9f65 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index af612cbc9deb..1925f8a62be4 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 926a1381fbc5..29e1ba9ebb70 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 52d75fb8b591..a64c700fdbe3 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index 3eed1442e2b7..2585c7056ec2 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 944e06388d5a..e8205295c1c2 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 307f49111b3e..293008a53300 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 7c44a97ad497..19d93ece1d75 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 65d9c65b48d5..f7e0f0399a7b 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 210043ced887..5f152241cd67 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index e3d57e95fa0b..674deea38ba2 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 609f0709074d..cb7001f55fe6 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 723167f578e6..c09c45176cc5 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 868f68e77053..0815f07fa278 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 31ff3898c5ee..93776ccfc26e 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index e9e49d19debb..57c9060f4be9 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 5b8e0e6f120d..ef7331846911 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 3a29398cf82a..3ef1bed1c8b7 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index d623065a4b2b..6f0b3f229ea4 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 0678859de5d5..8db026bfd42e 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 82d5b0506876..712e3e3ba881 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 0cbd96e11ac0..ef0314745862 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 4b597f04f1da..14db81066757 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 41795bd98165..d9a67526abd0 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index de8fe902c89d..01f8a2e3c77c 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 2e18b15a2a4a..5489628ca118 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 60ea3e1c5444..2fe134d91096 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 1bdac72da304..edd92c5a90d7 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 606bac148dd5..c279cb1cdf1c 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 3756a779b4b6..854edced169d 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index b3e9ab9d6abf..28ab0fddb303 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 06bce519cdaf..f8349ba36987 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 2c167106d7b2..0c3895fd9d4d 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 33a87d52238b..32eb43afc265 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index a4b9461b919f..e8c0a3aafa47 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 17429724a342..39952f582573 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index fc171aa78d5d..d08d5f772645 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index bc1a09568eb4..c0989fbf7405 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 4f4b30f58a3f..2dc2a7631080 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 01e35e3d1028..20d7436842d0 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 2f0b899490a3..04af7d8595de 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 3ca9034f3d54..214b042beeed 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 602c9c5681c0..3205ae232783 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 38fbad6ea4ee..5693975d024a 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 5a1ce44a6602..7a02847e0fa8 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index b143a5c1d8de..3a97ebdc9d8a 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 8e5033fef737..f5dfdc5ff526 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index dd44410f88fd..41a6efd030b3 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index ddf03eab3505..38296d052c00 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 70be4dac5258..0cfb7f4efaed 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 8cf25c61b176..d0a33926caf3 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 1bc758f880b0..1c659884580a 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 6afd77af0422..a12c7c5d8447 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index ee378913346a..044761ec99cf 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index f9648d926dde..bc143988bb95 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index f6aa430aecdf..eac08c436326 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 49a8d543eccf..75ff6d3fa847 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index b389a3ca2590..8e193ed91c33 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index fce75c915ae3..bccf97611da9 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 0af74b56a6ef..caa6772dce1d 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 3cb88a692f91..6a115f365a5e 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 4b13b3b0a11c..f5d20a9008de 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index e036f6d51f56..5153c50f6c3a 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 3d5f7782bbea..5efa843aac01 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 71e0522e92c5..034fe7423059 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index f70725dabc5c..768e1e746841 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index d39c00439efd..59b2fec1042f 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index a871ea356668..1b5cc47d3fa7 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 6e36b1bf9974..4f3a46ced3df 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 0b680276b269..6ffed5626852 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 265872dc4806..8fdf34c86a60 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 606e2a70bd54..b2bc48a2ca35 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 272c0eb7c213..7c831363febb 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index b2eb99aa541a..b3e2f8f12944 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 927e215ea1d7..6411395d14f3 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 635093d922b4..bd0174072273 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index b1084b909df3..537973447687 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 2bbde4e84611..05c226946eae 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 32bfa83b112f..b4d5e52f9784 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index b974b2127273..99a10f0fdbf1 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 9600280ee14a..64d9a833cde2 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 248d7d2fb263..f8c9edcf8ad7 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 51455025e666..a00d8eeeb9d7 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 653bc08cd909..78ce0609d375 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index b7660393e23e..342aee3c9d73 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 73d9a1487fa8..7cfdcf61c4e1 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 1a50e36f2dad..3b536cca1de4 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index a9369b9749ee..708fd52d4976 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 0afad1590422..37ebcc304460 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 963ccb76151b..b4d0f7802ee3 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 516df9b5acb0..31733a40274e 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 7f2d3dfc7f04..7d18031559ee 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index c051d6468911..91b72521a582 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 8e27bb58bb98..3b59c4640776 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index d88422cb7091..9a4e197ca246 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 42a2f9701ddd..fe91d8abda98 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index c094bbc8e5d6..bb6e47dd8ce6 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 06955dfb180e..58d7f0fd9fe6 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 7cafaa3e0879..b71d0446beb3 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 8fb06b684120..29a65056e6f6 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index af26cb2f69bb..bac7924527b4 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index b4c837b76908..46bb814d42b4 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 335d17bd0a3a..3afe8b8f22a6 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 4ea993c459f2..79f9a5a16208 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 8774f76e00b3..47d67b6ab1c0 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 532fd8f0f3bb..e5ef059d7360 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index d2d3ee15e8cb..5d688a061c1f 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 86bc403a3271..4820b0723fa1 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 1b8d5c7f25f8..755fae698672 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 34c01a8abcf7..758f36ba719a 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 9d31bb7e0368..c1a0f5546a81 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index b2f5b7c3c488..e8f089f1ea66 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 88d3c6988a06..a72bd5d84967 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index bbf912d65e18..05ecc6c12a71 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 6bc8d4475938..d04f6bbb3ebb 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.28-SNAPSHOT + 2.15.28 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 448da135d730..467ba7a90ffc 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 115255aebde3..b064869e3ba3 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index b91d07da49a6..165fb7341635 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index bae9281cac43..2d3dc1d42e06 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 3e6e2df9a9c4..d9287459eead 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index c8f9de5a28a4..9d39af39fcd0 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index e42e7b6f0338..35ff7b192e9b 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 98fdf5f5a077..1346832bfa51 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 71b82697fee2..290ea75fb773 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 731e0da44e74..12345ade9f3b 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 0c75a205d824..3295f0b35916 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 3636cb41b2d8..262dd868e40e 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 4ef228a3e431..92ffd1b7b5e1 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 39497c1d90f0..9f1fa34e915e 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 40d4a49031e0..8bf1ce3d239b 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 99f5ae4efd78..5d5b305d950c 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index e7e045dd1e9c..0a45d4df45e2 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index c63638df8a0a..0b235c550ba3 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 3bf8e26fe37b..1df4e35ac581 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 67a13d2d86c7..68082427dac8 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 0ed8c433f322..ef1a1162d69d 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 924140606436..75f30e4ec014 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 219c19d3e835..dabf0c50784a 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 2d6be07a1fe9..268c84489125 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index dbca37653f71..c2052478db69 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index e12b2027f975..de30351500bf 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 1b40ef7d80ab..0c9b056a654b 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index a0b990a1e02c..5ceb93f5e69d 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index a85ee52b75cc..a393a8f7b97b 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 28862c3342d0..a6f6facba7d0 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 0ccd1af93dd8..56baf651a5ef 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 3558a5da7c48..e50f434adfa3 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 33890c327669..ea0ebc900559 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 5306abcf6e22..c5742470f792 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 5cc8c653874a..5c0f83acfaac 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index c4b428a1ebdb..926e1f2eaa92 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 925d0d7bb661..961d70c46d46 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index b4c67e4403e1..a97c4e0771c0 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 2a2ad24d5e25..204ce993306e 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 665ca23423c2..2e09ac8d6530 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index a1c241e94eca..7e71f78c24e4 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 463fc726f468..d48b2e1f0f52 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index f55e55fa6091..ee3e4d92e395 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 98da457cffa7..dfd0770ca9e3 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index a8969312b41f..c7dd020c500c 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index b730606eb08b..c7fdead28c9d 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 590338718e3a..e66aec9a3fcb 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 73800a3bca1c..fbb945874201 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 6d890225734f..62b8ea6863ae 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 4eef9af4fc9b..db444e6159dd 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 38a86b25b66a..35afd9e3b544 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 26c4ca94d31f..ea50c9894834 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 93dc23865b91..3715dc0e0693 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 6323f46fcff9..88ce5471b92c 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 7e77ac9c7c5d..18a931e0170f 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 11c43973bef9..ce764d6dc449 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index ef28f93c77bb..3e61e8514fbc 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index a004ef030726..42dca59c0809 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 6cda2804cb02..6c73cc8a6a95 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index cafedd91d8df..f71ed8e7c0a9 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 9c6c8c824863..05c9fc2a8e8e 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index f88501653688..ccc9d030557b 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 73a7e051a6b1..ef87a34e8c5e 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index a3a6e744650d..e8723ca8cf69 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28-SNAPSHOT + 2.15.28 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index ad416dd9bdd1..c5bfefef556d 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.15.28-SNAPSHOT + 2.15.28 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index f7abd967866b..304a77421a63 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.15.28-SNAPSHOT + 2.15.28 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index ed441be240d6..4448067515d4 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.15.28-SNAPSHOT + 2.15.28 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 7ddbfdbe62a3..90d72471bc94 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.15.28-SNAPSHOT + 2.15.28 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 1efd4c5b1220..7c256bedd7a3 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.15.28-SNAPSHOT + 2.15.28 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 3b51819beefd..752e4931782c 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.28-SNAPSHOT + 2.15.28 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 3fc5b3296360..196d9f2bb0fa 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.15.28-SNAPSHOT + 2.15.28 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 12e1a2a08e60..055646348379 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.15.28-SNAPSHOT + 2.15.28 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index cfa24da84527..c10100e24e9b 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.15.28-SNAPSHOT + 2.15.28 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index ab2cd2760fec..5fed82f2eebd 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.15.28-SNAPSHOT + 2.15.28 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 619ed1a3c799..604a73e77099 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.28-SNAPSHOT + 2.15.28 4.0.0 From ec809b8f5023fa1f5072526d8148a06743c3e2f7 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 13 Nov 2020 20:43:29 +0000 Subject: [PATCH 193/339] Update to next snapshot version: 2.15.29-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/pom.xml | 2 +- services/servicecatalogappregistry/pom.xml | 2 +- services/servicediscovery/pom.xml | 2 +- services/servicequotas/pom.xml | 2 +- services/ses/pom.xml | 2 +- services/sesv2/pom.xml | 2 +- services/sfn/pom.xml | 2 +- services/shield/pom.xml | 2 +- services/signer/pom.xml | 2 +- services/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 282 files changed, 282 insertions(+), 282 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index f78f7b91f7c5..9fa81fa30267 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 83f10d2eb22f..26cfec5847f5 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 0ecad5550bd7..3305dbe4d823 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.15.28 + 2.15.29-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 733f939716f4..a6ab1667978d 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 864150919907..48531a855d5a 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.28 + 2.15.29-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index b019499a3e17..f51919a9b3f6 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.28 + 2.15.29-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 01631d369e4a..4c5eaf1e9f15 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.15.28 + 2.15.29-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index e1d1bf818a17..a78feaa90790 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.28 + 2.15.29-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index c8ceedf0af0a..467447e8d47c 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.15.28 + 2.15.29-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 0db685b492b0..eb21947012fa 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.28 + 2.15.29-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 14d37e3da1c3..55251d836d2f 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 80048e678b86..71cacfbf5f16 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 74ebc7aa65bf..40436e172895 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.28 + 2.15.29-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 20cd3597712a..a1f1f6ccbb70 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.28 + 2.15.29-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 0146d5b2c453..d4b8518d33f8 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index fe36574ba6b5..8f19f547a3ca 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 809422d14a65..2dc485dba728 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.28 + 2.15.29-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 1d6daad468ea..a35050a5e70d 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.15.28 + 2.15.29-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 48be4627e256..bbf88b6466f8 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 265c284ba56c..b5b59ec61f08 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.15.28 + 2.15.29-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 6c506ff74e96..29c4deef29c4 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.15.28 + 2.15.29-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index c340da9dffde..e3d6180ececb 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.15.28 + 2.15.29-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 146176711dbc..18455854bdce 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 7771dbe08b57..ee185ac2f6a3 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 1756bafaf3d2..1aa792a9b9cf 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.28 + 2.15.29-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 44aefdab0c36..cbc9ae4a7c0e 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.28 + 2.15.29-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index f292e8b7ffeb..1f4d9a670480 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.15.28 + 2.15.29-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index 4be071ee17b9..c0a588dbb213 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.15.28 + 2.15.29-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 2b559f7d76f2..f6c61424085e 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.15.28 + 2.15.29-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index fcd293e438f7..a1ef0448244c 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.15.28 + 2.15.29-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index b6cc74235cb4..05a9614e424a 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 887159a077b2..343c7a2d0bfe 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.15.28 + 2.15.29-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 3bde12850f68..a58854ef7e22 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.15.28 + 2.15.29-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 961ba1c4075b..1a54e5ce0b27 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.28 + 2.15.29-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index a1e52141f1b9..3a350ef6bf42 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.28 + 2.15.29-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index c1b361c83c76..6dc424fab2b2 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.28 + 2.15.29-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index dbaeb5f65e01..6f4a1a8b83ad 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.15.28 + 2.15.29-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index f1fa6adbc71d..52296cb68c44 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.28 + 2.15.29-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index be69b8621ff2..3b2cc23e8191 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 33f46d8e0433..bd6416f35106 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index ab17bc95610a..b88bc5da8740 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 1eeedd3727de..cc2c5be235f4 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index e83fa756e8de..bbae2d676932 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index d54968b319be..b83acbcfac38 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index cbcba000eb5c..b0a04be9562a 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 2dc61437779c..674f408c6d7b 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 3c4f4298646f..22ff53073afe 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index adca265104d0..cf87171f170e 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index c8691f38ded6..1453de577a4f 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index fe73fa6745dd..824f69aca95a 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 5ddd516e41f2..d18f1cf29683 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index d0b82c6a8824..5e8a10f9b88f 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 3dd83e2aeb6a..1943c7481eb1 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 0549e479c85c..c0bef0e8deff 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 85de926d778d..8ac23a5e5486 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index f7099f0bcd1f..da2413028e8a 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 8035bfda16f9..da2a00a243ad 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 085fa8549c33..2f2fcdce3b55 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index a13f0c32932c..ec8449f26b94 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 95b665f77fec..ca7fb68853bf 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 6f68868d6391..a1f7893297d5 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index e28046a10266..d232185a5739 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 014d25c87bb2..6673a89a58db 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 12b937053852..9c1abd8bf3cc 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 29ce903086b4..533899b2e71e 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 68dcbdb96911..ed65a65996cc 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 7bd19b3f6b35..030855bd94d5 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index a3596dbf2bd4..c972141905c5 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 606d1521b9df..2d3ed20dcf61 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index c5160b8170b8..f37872ab17b1 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index abe9a22f9d5d..f31fec4a8fdc 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 2cae792b1f39..a51bef87bec1 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 6c23f533bc45..73e4b96c4a75 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 9c6c93118271..a8b75ebf692d 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 43b7ed2f1792..48dcb9fd4115 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index f522c07a31ba..9c30693aadd0 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 587b1df0775f..f6317ed5743c 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 9079531ab114..9f6bcaa12a5f 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 4523b1b9ba00..a81ac43de89f 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 35f82bde0cba..f687d67c6871 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 96bf22ca5ad9..27f9ef6c6368 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index a984c59e3739..51672870539a 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index c684e6a44f45..f2037a3c6ec6 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index cf5c8483b583..4d23844a8f31 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index ec94c4da6300..ee8f98ccdc60 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 087f6522ccdc..319ab801f75a 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index cef119f02ddd..0d70c276017a 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index f37b284ccc1d..62edee15a333 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 3f0976c95fa0..919021aa440e 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 75fef0032e78..1e3bd6a7ebe4 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index c39bb55c3649..5fb54ece679f 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index e3e1e0767eff..4900243ce2cf 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index c0301dfa9f65..079ae91995c8 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 1925f8a62be4..7945118d29be 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 29e1ba9ebb70..e44a7ede319c 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index a64c700fdbe3..6c9a1c2b9662 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index 2585c7056ec2..d309a8b8405c 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index e8205295c1c2..054c0b5ce123 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 293008a53300..8b8ec11bf6fc 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 19d93ece1d75..82a92dbbbcdd 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index f7e0f0399a7b..377800ca7750 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 5f152241cd67..0f0cf60f52d6 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 674deea38ba2..15814e21b7b5 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index cb7001f55fe6..f0f5fa33f8d1 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index c09c45176cc5..8d4cb6b94892 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 0815f07fa278..b60f6caffca3 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 93776ccfc26e..210314da31d0 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 57c9060f4be9..4fcd778712fc 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index ef7331846911..909b13392279 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 3ef1bed1c8b7..4ba114da4ae6 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 6f0b3f229ea4..2ea5f75983af 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 8db026bfd42e..0ca302a5e897 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 712e3e3ba881..efddfabfe3c0 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index ef0314745862..29ad21b3fdef 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 14db81066757..2328368edbd5 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index d9a67526abd0..3be31389a0b5 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 01f8a2e3c77c..8e851d0fb5f0 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 5489628ca118..fcb927f162f4 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 2fe134d91096..ee265f8ad401 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index edd92c5a90d7..89d7545b96e8 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index c279cb1cdf1c..b1be870fa8b0 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 854edced169d..b7f1a0e6dc45 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 28ab0fddb303..ccbbf8b5cdc5 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index f8349ba36987..33e22c425abc 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 0c3895fd9d4d..267589af6036 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 32eb43afc265..0ed2a69b4453 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index e8c0a3aafa47..4ffc5e4b4665 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 39952f582573..0dc5ba9fcae7 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index d08d5f772645..49787738218b 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index c0989fbf7405..53c257a5c2fb 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 2dc2a7631080..586f265763a1 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 20d7436842d0..2dc164d3b468 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 04af7d8595de..bd41d66030cb 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 214b042beeed..67f8edd2fb74 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 3205ae232783..2eeb92bb92de 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 5693975d024a..fd1d3ccb3803 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 7a02847e0fa8..3043ba2c515a 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 3a97ebdc9d8a..b2b86f91aec6 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index f5dfdc5ff526..2210732ca569 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 41a6efd030b3..c1ee325772b2 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 38296d052c00..b938d731b31b 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 0cfb7f4efaed..33755a83d4f6 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index d0a33926caf3..467dcf25f4d3 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 1c659884580a..7506b912d7d3 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index a12c7c5d8447..aa48fb17f944 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 044761ec99cf..6d227d83ae0f 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index bc143988bb95..59b7aeab9b6b 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index eac08c436326..38e3858d8642 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 75ff6d3fa847..90310981e91d 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 8e193ed91c33..4fbe40f80a08 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index bccf97611da9..45cde08182fa 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index caa6772dce1d..354c0353db04 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 6a115f365a5e..65210630606b 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index f5d20a9008de..8e9ad0dda50c 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 5153c50f6c3a..b3a632cef565 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 5efa843aac01..1daf694256c6 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 034fe7423059..bdd15ba99fb6 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 768e1e746841..26dcd5adf53a 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 59b2fec1042f..f95680a0c3f2 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 1b5cc47d3fa7..a33178d02549 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 4f3a46ced3df..c6f64df11772 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 6ffed5626852..7b603cc0d2f8 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 8fdf34c86a60..494f7537072f 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index b2bc48a2ca35..dcce15fb627e 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 7c831363febb..4aa1023a6dff 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index b3e2f8f12944..c1bc11d4a154 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 6411395d14f3..3f71ec5e4b4b 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index bd0174072273..885b47d7d5b4 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 537973447687..a6b12fea18d1 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 05c226946eae..52f8fd496379 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index b4d5e52f9784..b7f5352f5935 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 99a10f0fdbf1..1dbe06aa87f9 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 64d9a833cde2..b70ed61f4ed9 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index f8c9edcf8ad7..0a7e56abf92a 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index a00d8eeeb9d7..88a09eaa542c 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 78ce0609d375..0167cc0ed783 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 342aee3c9d73..979d2de14b71 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 7cfdcf61c4e1..dd6ecdadbcea 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 3b536cca1de4..2a6072b4270f 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 708fd52d4976..a405d1aaf83d 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 37ebcc304460..69b16c655201 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index b4d0f7802ee3..42068fb69d2c 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 31733a40274e..0b3216a5b07d 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 7d18031559ee..559e8516705f 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 91b72521a582..040d540b9d17 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 3b59c4640776..e8b547c86fdd 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 9a4e197ca246..cf92d682840d 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index fe91d8abda98..f977ee675d35 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index bb6e47dd8ce6..ffcdcf4f874d 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 58d7f0fd9fe6..42e1ffe6bfa7 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index b71d0446beb3..bf006a6aff23 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 29a65056e6f6..99253355a242 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index bac7924527b4..f3a7ad9a2891 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 46bb814d42b4..45f2e7f2b382 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 3afe8b8f22a6..3de5ea527455 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 79f9a5a16208..af68d7760cb8 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 47d67b6ab1c0..cd83cc476d34 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index e5ef059d7360..e95fa0e47fea 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 5d688a061c1f..5688708ba1be 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 4820b0723fa1..cdd7e597cbbf 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 755fae698672..e61797c9a1f6 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 758f36ba719a..2c9f44a8f3a1 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index c1a0f5546a81..7e4e75dfa6ce 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index e8f089f1ea66..f1d0970e2e12 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index a72bd5d84967..2eef8d917f73 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 05ecc6c12a71..dea7a4217fc5 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index d04f6bbb3ebb..00efb1728a6d 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.28 + 2.15.29-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 467ba7a90ffc..d7684a4107a5 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index b064869e3ba3..088db3d252de 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 165fb7341635..2e4b88659608 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 2d3dc1d42e06..7a39749ca0c5 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index d9287459eead..63ce4f57b15f 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 9d39af39fcd0..0896e27e3cb3 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 35ff7b192e9b..b90ded47b344 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 1346832bfa51..832ea81499d7 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 290ea75fb773..e8263c6b4743 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 12345ade9f3b..d449c285904b 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 3295f0b35916..a8fa5bd28e42 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 262dd868e40e..b5f5e8860c30 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 92ffd1b7b5e1..72258342e2d9 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 9f1fa34e915e..282d3a1434b8 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 8bf1ce3d239b..dfaf4f2139ec 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 5d5b305d950c..6927e98e1a4e 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 0a45d4df45e2..701d5ba730b9 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 0b235c550ba3..b628fa519a0c 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 1df4e35ac581..e9fc607692cf 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 68082427dac8..94dd68ff7725 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index ef1a1162d69d..fd4a03b92bcb 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 75f30e4ec014..fb664d08d213 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index dabf0c50784a..579c68c3b4a3 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 268c84489125..f4036ea2b115 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index c2052478db69..9bb1ec9bd5bc 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index de30351500bf..04a81046ccee 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 0c9b056a654b..7e1f14fa2216 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 5ceb93f5e69d..0739eda2c180 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index a393a8f7b97b..e3eeaa7db58c 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index a6f6facba7d0..05ebe9e8c859 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 56baf651a5ef..5b8ca79152b2 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index e50f434adfa3..c35ae214c8a7 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index ea0ebc900559..7d48ead01342 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index c5742470f792..3e863ecde9df 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 5c0f83acfaac..461df17ddd51 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 926e1f2eaa92..7c49158d2201 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 961d70c46d46..c04d41d7043b 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index a97c4e0771c0..e68dd1809cf6 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 204ce993306e..ff3a92d3ea2b 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 2e09ac8d6530..9f3bc263f7b1 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 7e71f78c24e4..36f8932ab39c 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index d48b2e1f0f52..1a0a0589320c 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index ee3e4d92e395..00773845f5e9 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index dfd0770ca9e3..8fab87a23f37 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index c7dd020c500c..9938de7058a4 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index c7fdead28c9d..2f32aacb5617 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index e66aec9a3fcb..720561a9b63c 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index fbb945874201..4b9cd63a3eb6 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 62b8ea6863ae..83d9dbbc90bd 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index db444e6159dd..f0876b1929d6 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 35afd9e3b544..6b6c02447c68 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index ea50c9894834..f642a368b8c4 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 3715dc0e0693..d957eafbd2c7 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 88ce5471b92c..97ed01e06a91 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 18a931e0170f..378e2b8d902b 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index ce764d6dc449..e7b92ffbb955 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 3e61e8514fbc..dad2ab2b69d3 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 42dca59c0809..6fea1740d23e 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 6c73cc8a6a95..0b44adb271dd 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index f71ed8e7c0a9..d2e6e184f490 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 05c9fc2a8e8e..47c9ccdee993 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index ccc9d030557b..d8be5b7752ba 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index ef87a34e8c5e..8d5cede4965a 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index e8723ca8cf69..97c4e03cf2d8 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.28 + 2.15.29-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index c5bfefef556d..4c4d17ce25f3 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.15.28 + 2.15.29-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 304a77421a63..09b9ab63c522 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.15.28 + 2.15.29-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 4448067515d4..0dc9624097cf 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.15.28 + 2.15.29-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 90d72471bc94..75170dc67b40 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.15.28 + 2.15.29-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 7c256bedd7a3..02d65cfa0667 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.15.28 + 2.15.29-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 752e4931782c..4e83921faa69 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.28 + 2.15.29-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 196d9f2bb0fa..6c21cade0e36 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.15.28 + 2.15.29-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 055646348379..321e052fc8a5 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.15.28 + 2.15.29-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index c10100e24e9b..e93371880308 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.15.28 + 2.15.29-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 5fed82f2eebd..e459568b1451 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.15.28 + 2.15.29-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 604a73e77099..a8ce59f42ba4 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.28 + 2.15.29-SNAPSHOT 4.0.0 From 64d6dcef9475c3ac74b739e6434615f5f281e949 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 16 Nov 2020 19:03:34 +0000 Subject: [PATCH 194/339] AWS IoT Secure Tunneling Update: Support using multiple data streams per tunnel using the Secure Tunneling multiplexing feature. --- .../feature-AWSIoTSecureTunneling-c8fc2d2.json | 6 ++++++ .../resources/codegen-resources/service-2.json | 14 +++++--------- 2 files changed, 11 insertions(+), 9 deletions(-) create mode 100644 .changes/next-release/feature-AWSIoTSecureTunneling-c8fc2d2.json diff --git a/.changes/next-release/feature-AWSIoTSecureTunneling-c8fc2d2.json b/.changes/next-release/feature-AWSIoTSecureTunneling-c8fc2d2.json new file mode 100644 index 000000000000..56c14453e233 --- /dev/null +++ b/.changes/next-release/feature-AWSIoTSecureTunneling-c8fc2d2.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS IoT Secure Tunneling", + "contributor": "", + "description": "Support using multiple data streams per tunnel using the Secure Tunneling multiplexing feature." +} diff --git a/services/iotsecuretunneling/src/main/resources/codegen-resources/service-2.json b/services/iotsecuretunneling/src/main/resources/codegen-resources/service-2.json index effc6f03149e..622d36f63a77 100644 --- a/services/iotsecuretunneling/src/main/resources/codegen-resources/service-2.json +++ b/services/iotsecuretunneling/src/main/resources/codegen-resources/service-2.json @@ -73,7 +73,7 @@ "errors":[ {"shape":"LimitExceededException"} ], - "documentation":"

Creates a new tunnel, and returns two client access tokens for clients to use to connect to the AWS IoT Secure Tunneling proxy server. .

" + "documentation":"

Creates a new tunnel, and returns two client access tokens for clients to use to connect to the AWS IoT Secure Tunneling proxy server.

" }, "TagResource":{ "name":"TagResource", @@ -180,10 +180,7 @@ }, "DestinationConfig":{ "type":"structure", - "required":[ - "thingName", - "services" - ], + "required":["services"], "members":{ "thingName":{ "shape":"ThingName", @@ -191,7 +188,7 @@ }, "services":{ "shape":"ServiceList", - "documentation":"

A list of service names that identity the target application. Currently, you can only specify a single name. The AWS IoT client running on the destination device reads this value and uses it to look up a port or an IP address and a port. The AWS IoT client instantiates the local proxy which uses this information to connect to the destination application.

" + "documentation":"

A list of service names that identity the target application. The AWS IoT client running on the destination device reads this value and uses it to look up a port or an IP address and a port. The AWS IoT client instantiates the local proxy which uses this information to connect to the destination application.

" } }, "documentation":"

The destination configuration.

" @@ -316,14 +313,13 @@ }, "Service":{ "type":"string", - "max":8, + "max":128, "min":1, "pattern":"[a-zA-Z0-9:_-]+" }, "ServiceList":{ "type":"list", "member":{"shape":"Service"}, - "max":1, "min":1 }, "Tag":{ @@ -535,5 +531,5 @@ } } }, - "documentation":"AWS IoT Secure Tunneling

AWS IoT Secure Tunnling enables you to create remote connections to devices deployed in the field.

For more information about how AWS IoT Secure Tunneling works, see the User Guide.

" + "documentation":"AWS IoT Secure Tunneling

AWS IoT Secure Tunnling enables you to create remote connections to devices deployed in the field.

For more information about how AWS IoT Secure Tunneling works, see AWS IoT Secure Tunneling.

" } From 6554265a37101dc2b7d2de9612cd983656405625 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 16 Nov 2020 19:03:36 +0000 Subject: [PATCH 195/339] Amazon QuickSight Update: Adding new parameters for dashboard persistence --- .../feature-AmazonQuickSight-9061b90.json | 6 ++++++ .../main/resources/codegen-resources/service-2.json | 13 ++++++++++--- 2 files changed, 16 insertions(+), 3 deletions(-) create mode 100644 .changes/next-release/feature-AmazonQuickSight-9061b90.json diff --git a/.changes/next-release/feature-AmazonQuickSight-9061b90.json b/.changes/next-release/feature-AmazonQuickSight-9061b90.json new file mode 100644 index 000000000000..cae18d3e41f7 --- /dev/null +++ b/.changes/next-release/feature-AmazonQuickSight-9061b90.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon QuickSight", + "contributor": "", + "description": "Adding new parameters for dashboard persistence" +} diff --git a/services/quicksight/src/main/resources/codegen-resources/service-2.json b/services/quicksight/src/main/resources/codegen-resources/service-2.json index 719f978390de..d2e7de23d422 100644 --- a/services/quicksight/src/main/resources/codegen-resources/service-2.json +++ b/services/quicksight/src/main/resources/codegen-resources/service-2.json @@ -6088,17 +6088,23 @@ "locationName":"session-lifetime" }, "UndoRedoDisabled":{ - "shape":"boolean", + "shape":"Boolean", "documentation":"

Remove the undo/redo button on the embedded dashboard. The default is FALSE, which enables the undo/redo button.

", "location":"querystring", "locationName":"undo-redo-disabled" }, "ResetDisabled":{ - "shape":"boolean", + "shape":"Boolean", "documentation":"

Remove the reset button on the embedded dashboard. The default is FALSE, which enables the reset button.

", "location":"querystring", "locationName":"reset-disabled" }, + "StatePersistenceEnabled":{ + "shape":"Boolean", + "documentation":"

Adds persistence of state for the user session in an embedded dashboard. Persistence applies to the sheet and the parameter settings. These are control settings that the dashboard subscriber (QuickSight reader) chooses while viewing the dashboard. If this is set to TRUE, the settings are the same when the the subscriber reopens the same dashboard URL. The state is stored in QuickSight, not in a browser cookie. If this is set to FALSE, the state of the user session is not persisted. The default is FALSE.

", + "location":"querystring", + "locationName":"state-persistence-enabled" + }, "UserArn":{ "shape":"Arn", "documentation":"

The Amazon QuickSight user's Amazon Resource Name (ARN), for use with QUICKSIGHT identity type. You can use this for any Amazon QuickSight users in your account (readers, authors, or admins) authenticated as one of the following:

  • Active Directory (AD) users or group members

  • Invited nonfederated users

  • IAM users and IAM role-based sessions authenticated through Federated Single Sign-On using SAML, OpenID Connect, or IAM federation.

Omit this parameter for users in the third group – IAM users and IAM role-based sessions.

", @@ -7956,7 +7962,8 @@ "shape":"Database", "documentation":"

Database.

" } - } + }, + "documentation":"

Oracle parameters.

" }, "OutputColumn":{ "type":"structure", From a2c9a7c3d37b5a0a27d68f9fbfaf8323c4de8f33 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 16 Nov 2020 19:03:36 +0000 Subject: [PATCH 196/339] Synthetics Update: AWS Synthetics now supports Environment Variables to assign runtime parameters in the canary scripts. --- .../feature-Synthetics-5b2871d.json | 6 +++++ .../codegen-resources/service-2.json | 22 +++++++++++++++---- 2 files changed, 24 insertions(+), 4 deletions(-) create mode 100644 .changes/next-release/feature-Synthetics-5b2871d.json diff --git a/.changes/next-release/feature-Synthetics-5b2871d.json b/.changes/next-release/feature-Synthetics-5b2871d.json new file mode 100644 index 000000000000..9c1354099b6e --- /dev/null +++ b/.changes/next-release/feature-Synthetics-5b2871d.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Synthetics", + "contributor": "", + "description": "AWS Synthetics now supports Environment Variables to assign runtime parameters in the canary scripts." +} diff --git a/services/synthetics/src/main/resources/codegen-resources/service-2.json b/services/synthetics/src/main/resources/codegen-resources/service-2.json index 985c52799ab4..255bc9bba01d 100644 --- a/services/synthetics/src/main/resources/codegen-resources/service-2.json +++ b/services/synthetics/src/main/resources/codegen-resources/service-2.json @@ -269,7 +269,7 @@ }, "RuntimeVersion":{ "shape":"String", - "documentation":"

Specifies the runtime version to use for the canary. Currently, the only valid values are syn-nodejs-2.0, syn-nodejs-2.0-beta, and syn-1.0. For more information about runtime versions, see Canary Runtime Versions.

" + "documentation":"

Specifies the runtime version to use for the canary. For more information about runtime versions, see Canary Runtime Versions.

" }, "VpcConfig":{"shape":"VpcConfigOutput"}, "Tags":{ @@ -386,6 +386,10 @@ "ActiveTracing":{ "shape":"NullableBoolean", "documentation":"

Specifies whether this canary is to use active AWS X-Ray tracing when it runs. Active tracing enables this canary run to be displayed in the ServiceLens and X-Ray service maps even if the canary does not hit an endpoint that has X-ray tracing enabled. Using X-Ray tracing incurs charges. For more information, see Canaries and X-Ray tracing.

You can enable active tracing only for canaries that use version syn-nodejs-2.0 or later for their canary runtime.

" + }, + "EnvironmentVariables":{ + "shape":"EnvironmentVariablesMap", + "documentation":"

Specifies the keys and values to use for any environment variables used in the canary script. Use the following format:

{ \"key1\" : \"value1\", \"key2\" : \"value2\", ...}

Keys must start with a letter and be at least two characters. The total size of your environment variables cannot exceed 4 KB. You can't specify any Lambda reserved environment variables as the keys for your environment variables. For more information about reserved keys, see Runtime environment variables.

" } }, "documentation":"

A structure that contains input information for a canary run.

" @@ -600,7 +604,7 @@ }, "RuntimeVersion":{ "shape":"String", - "documentation":"

Specifies the runtime version to use for the canary. Currently, the only valid values are syn-nodejs-2.0, syn-nodejs-2.0-beta, and syn-1.0. For more information about runtime versions, see Canary Runtime Versions.

" + "documentation":"

Specifies the runtime version to use for the canary. For a list of valid runtime versions and more information about runtime versions, see Canary Runtime Versions.

" }, "VpcConfig":{ "shape":"VpcConfigInput", @@ -716,6 +720,16 @@ } } }, + "EnvironmentVariableName":{ + "type":"string", + "pattern":"[a-zA-Z]([a-zA-Z0-9_])+" + }, + "EnvironmentVariableValue":{"type":"string"}, + "EnvironmentVariablesMap":{ + "type":"map", + "key":{"shape":"EnvironmentVariableName"}, + "value":{"shape":"EnvironmentVariableValue"} + }, "ErrorMessage":{"type":"string"}, "FunctionArn":{ "type":"string", @@ -858,7 +872,7 @@ "members":{ "VersionName":{ "shape":"String", - "documentation":"

The name of the runtime version. Currently, the only valid values are syn-nodejs-2.0, syn-nodejs-2.0-beta, and syn-1.0.

" + "documentation":"

The name of the runtime version. For a list of valid runtime versions, see Canary Runtime Versions.

" }, "Description":{ "shape":"String", @@ -1035,7 +1049,7 @@ }, "RuntimeVersion":{ "shape":"String", - "documentation":"

Specifies the runtime version to use for the canary. Currently, the only valid values are syn-nodejs-2.0, syn-nodejs-2.0-beta, and syn-1.0. For more information about runtime versions, see Canary Runtime Versions.

" + "documentation":"

Specifies the runtime version to use for the canary. For a list of valid runtime versions and for more information about runtime versions, see Canary Runtime Versions.

" }, "Schedule":{ "shape":"CanaryScheduleInput", From 471761aca3a50cfdd4ddc23be6608fb79262f4a8 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 16 Nov 2020 19:03:43 +0000 Subject: [PATCH 197/339] AWS Database Migration Service Update: Adding MoveReplicationTask feature to move replication tasks between instances --- ...e-AWSDatabaseMigrationService-2102454.json | 6 ++ .../codegen-resources/service-2.json | 60 +++++++++++++++++-- 2 files changed, 60 insertions(+), 6 deletions(-) create mode 100644 .changes/next-release/feature-AWSDatabaseMigrationService-2102454.json diff --git a/.changes/next-release/feature-AWSDatabaseMigrationService-2102454.json b/.changes/next-release/feature-AWSDatabaseMigrationService-2102454.json new file mode 100644 index 000000000000..b1e10f044943 --- /dev/null +++ b/.changes/next-release/feature-AWSDatabaseMigrationService-2102454.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Database Migration Service", + "contributor": "", + "description": "Adding MoveReplicationTask feature to move replication tasks between instances" +} diff --git a/services/databasemigration/src/main/resources/codegen-resources/service-2.json b/services/databasemigration/src/main/resources/codegen-resources/service-2.json index 5e6a541c209b..abc8a2f3b41f 100644 --- a/services/databasemigration/src/main/resources/codegen-resources/service-2.json +++ b/services/databasemigration/src/main/resources/codegen-resources/service-2.json @@ -67,7 +67,8 @@ {"shape":"ResourceQuotaExceededFault"}, {"shape":"InvalidResourceStateFault"}, {"shape":"ResourceNotFoundFault"}, - {"shape":"AccessDeniedFault"} + {"shape":"AccessDeniedFault"}, + {"shape":"S3AccessDeniedFault"} ], "documentation":"

Creates an endpoint using the provided settings.

" }, @@ -648,6 +649,21 @@ ], "documentation":"

Modifies the specified replication task.

You can't modify the task endpoints. The task must be stopped before you can modify it.

For more information about AWS DMS tasks, see Working with Migration Tasks in the AWS Database Migration Service User Guide.

" }, + "MoveReplicationTask":{ + "name":"MoveReplicationTask", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"MoveReplicationTaskMessage"}, + "output":{"shape":"MoveReplicationTaskResponse"}, + "errors":[ + {"shape":"AccessDeniedFault"}, + {"shape":"InvalidResourceStateFault"}, + {"shape":"ResourceNotFoundFault"} + ], + "documentation":"

Moves a replication task from its current replication instance to a different target replication instance using the specified parameters. The target replication instance must be created with the same or later AWS DMS version as the current replication instance.

" + }, "RebootReplicationInstance":{ "name":"RebootReplicationInstance", "http":{ @@ -3425,6 +3441,34 @@ }, "documentation":"

Provides information that defines a MongoDB endpoint.

" }, + "MoveReplicationTaskMessage":{ + "type":"structure", + "required":[ + "ReplicationTaskArn", + "TargetReplicationInstanceArn" + ], + "members":{ + "ReplicationTaskArn":{ + "shape":"String", + "documentation":"

The Amazon Resource Name (ARN) of the task that you want to move.

" + }, + "TargetReplicationInstanceArn":{ + "shape":"String", + "documentation":"

The ARN of the replication instance where you want to move the task to.

" + } + }, + "documentation":"

" + }, + "MoveReplicationTaskResponse":{ + "type":"structure", + "members":{ + "ReplicationTask":{ + "shape":"ReplicationTask", + "documentation":"

The replication task that was moved.

" + } + }, + "documentation":"

" + }, "MySQLSettings":{ "type":"structure", "members":{ @@ -4272,15 +4316,15 @@ }, "SourceEndpointArn":{ "shape":"String", - "documentation":"

The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.

" + "documentation":"

The Amazon Resource Name (ARN) that uniquely identifies the endpoint.

" }, "TargetEndpointArn":{ "shape":"String", - "documentation":"

The Amazon Resource Name (ARN) string that uniquely identifies the endpoint.

" + "documentation":"

The ARN that uniquely identifies the endpoint.

" }, "ReplicationInstanceArn":{ "shape":"String", - "documentation":"

The Amazon Resource Name (ARN) of the replication instance.

" + "documentation":"

The ARN of the replication instance.

" }, "MigrationType":{ "shape":"MigrationTypeValue", @@ -4296,7 +4340,7 @@ }, "Status":{ "shape":"String", - "documentation":"

The status of the replication task.

" + "documentation":"

The status of the replication task. This response parameter can return one of the following values:

" }, "LastFailureMessage":{ "shape":"String", @@ -4304,7 +4348,7 @@ }, "StopReason":{ "shape":"String", - "documentation":"

The reason the replication task was stopped. This response parameter can return one of the following values:

  • \"STOP_REASON_FULL_LOAD_COMPLETED\" – Full-load migration completed.

  • \"STOP_REASON_CACHED_CHANGES_APPLIED\" – Change data capture (CDC) load completed.

  • \"STOP_REASON_CACHED_CHANGES_NOT_APPLIED\" – In a full-load and CDC migration, the full-load stopped as specified before starting the CDC migration.

  • \"STOP_REASON_SERVER_TIME\" – The migration stopped at the specified server time.

" + "documentation":"

The reason the replication task was stopped. This response parameter can return one of the following values:

  • \"STOP_REASON_FULL_LOAD_COMPLETED\" – Full-load migration completed.

  • \"STOP_REASON_CACHED_CHANGES_APPLIED\" – Change data capture (CDC) load completed.

  • \"STOP_REASON_CACHED_CHANGES_NOT_APPLIED\" – In a full-load and CDC migration, the full load stopped as specified before starting the CDC migration.

  • \"STOP_REASON_SERVER_TIME\" – The migration stopped at the specified server time.

" }, "ReplicationTaskCreationDate":{ "shape":"TStamp", @@ -4337,6 +4381,10 @@ "TaskData":{ "shape":"String", "documentation":"

Supplemental information that the task requires to migrate the data for certain source and target endpoints. For more information, see Specifying Supplemental Data for Task Settings in the AWS Database Migration Service User Guide.

" + }, + "TargetReplicationInstanceArn":{ + "shape":"String", + "documentation":"

The ARN of the replication instance to which this task is moved in response to running the MoveReplicationTask operation. Otherwise, this response parameter isn't a member of the ReplicationTask object.

" } }, "documentation":"

Provides information that describes a replication task created by the CreateReplicationTask operation.

" From 656bd5f7b00a5801521d6fc62e0045a26e5d98c8 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 16 Nov 2020 19:03:37 +0000 Subject: [PATCH 198/339] AWS CodePipeline Update: We show details about inbound executions and id of action executions in GetPipelineState API. We also add ConflictException to StartPipelineExecution, RetryStageExecution, StopPipelineExecution APIs. --- .../feature-AWSCodePipeline-81184f5.json | 6 +++++ .../codegen-resources/service-2.json | 26 +++++++++++++++---- 2 files changed, 27 insertions(+), 5 deletions(-) create mode 100644 .changes/next-release/feature-AWSCodePipeline-81184f5.json diff --git a/.changes/next-release/feature-AWSCodePipeline-81184f5.json b/.changes/next-release/feature-AWSCodePipeline-81184f5.json new file mode 100644 index 000000000000..e139b83a33fd --- /dev/null +++ b/.changes/next-release/feature-AWSCodePipeline-81184f5.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS CodePipeline", + "contributor": "", + "description": "We show details about inbound executions and id of action executions in GetPipelineState API. We also add ConflictException to StartPipelineExecution, RetryStageExecution, StopPipelineExecution APIs." +} diff --git a/services/codepipeline/src/main/resources/codegen-resources/service-2.json b/services/codepipeline/src/main/resources/codegen-resources/service-2.json index 3ba303badb11..c858dd61d07a 100644 --- a/services/codepipeline/src/main/resources/codegen-resources/service-2.json +++ b/services/codepipeline/src/main/resources/codegen-resources/service-2.json @@ -493,6 +493,7 @@ "output":{"shape":"RetryStageExecutionOutput"}, "errors":[ {"shape":"ValidationException"}, + {"shape":"ConflictException"}, {"shape":"PipelineNotFoundException"}, {"shape":"StageNotFoundException"}, {"shape":"StageNotRetryableException"}, @@ -510,6 +511,7 @@ "output":{"shape":"StartPipelineExecutionOutput"}, "errors":[ {"shape":"ValidationException"}, + {"shape":"ConflictException"}, {"shape":"PipelineNotFoundException"} ], "documentation":"

Starts the specified pipeline. Specifically, it begins processing the latest commit to the source location specified as part of the pipeline.

" @@ -524,6 +526,7 @@ "output":{"shape":"StopPipelineExecutionOutput"}, "errors":[ {"shape":"ValidationException"}, + {"shape":"ConflictException"}, {"shape":"PipelineNotFoundException"}, {"shape":"PipelineExecutionNotStoppableException"}, {"shape":"DuplicatedStopRequestException"} @@ -838,6 +841,10 @@ "ActionExecution":{ "type":"structure", "members":{ + "actionExecutionId":{ + "shape":"ActionExecutionId", + "documentation":"

ID of the workflow action execution in the current stage. Use the GetPipelineState action to retrieve the current action execution details of the current stage.

For older executions, this field might be empty. The action execution ID is available for executions run on or after March 2020.

" + }, "status":{ "shape":"ActionExecutionStatus", "documentation":"

The status of the action, or for a completed action, the last status of the action.

" @@ -1148,11 +1155,11 @@ "members":{ "category":{ "shape":"ActionCategory", - "documentation":"

A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the following values.

" + "documentation":"

A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the following values.

  • Source

  • Build

  • Test

  • Deploy

  • Invoke

  • Approval

" }, "owner":{ "shape":"ActionOwner", - "documentation":"

The creator of the action being called.

" + "documentation":"

The creator of the action being called. There are three valid values for the Owner field in the action category section within your pipeline structure: AWS, ThirdParty, and Custom. For more information, see Valid Action Types and Providers in CodePipeline.

" }, "provider":{ "shape":"ActionProvider", @@ -1444,6 +1451,14 @@ "documentation":"

Unable to modify the tag due to a simultaneous update request.

", "exception":true }, + "ConflictException":{ + "type":"structure", + "members":{ + "message":{"shape":"Message"} + }, + "documentation":"

Your request cannot be handled because the pipeline is busy handling ongoing activities. Try again later.

", + "exception":true + }, "ContinuationToken":{ "type":"string", "max":2048, @@ -1461,7 +1476,7 @@ "members":{ "category":{ "shape":"ActionCategory", - "documentation":"

The category of the custom action, such as a build action or a test action.

Although Source and Approval are listed as valid values, they are not currently functional. These values are reserved for future use.

" + "documentation":"

The category of the custom action, such as a build action or a test action.

" }, "provider":{ "shape":"ActionProvider", @@ -1718,7 +1733,7 @@ }, "EncryptionKeyId":{ "type":"string", - "max":100, + "max":400, "min":1 }, "EncryptionKeyType":{ @@ -2534,7 +2549,7 @@ "members":{ "name":{ "shape":"PipelineName", - "documentation":"

The name of the action to be performed.

" + "documentation":"

The name of the pipeline.

" }, "roleArn":{ "shape":"RoleArn", @@ -3259,6 +3274,7 @@ "shape":"StageName", "documentation":"

The name of the stage.

" }, + "inboundExecution":{"shape":"StageExecution"}, "inboundTransitionState":{ "shape":"TransitionState", "documentation":"

The state of the inbound transition, which is either enabled or disabled.

" From 47472cad4c1a9f64580c02859fb25e2c3fcc8f07 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 16 Nov 2020 19:03:56 +0000 Subject: [PATCH 199/339] AWS Service Catalog Update: Support import of CloudFormation stacks into Service Catalog provisioned products. --- .../feature-AWSServiceCatalog-ba323f5.json | 6 ++ .../codegen-resources/service-2.json | 74 +++++++++++++++++-- 2 files changed, 75 insertions(+), 5 deletions(-) create mode 100644 .changes/next-release/feature-AWSServiceCatalog-ba323f5.json diff --git a/.changes/next-release/feature-AWSServiceCatalog-ba323f5.json b/.changes/next-release/feature-AWSServiceCatalog-ba323f5.json new file mode 100644 index 000000000000..7620739614aa --- /dev/null +++ b/.changes/next-release/feature-AWSServiceCatalog-ba323f5.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Service Catalog", + "contributor": "", + "description": "Support import of CloudFormation stacks into Service Catalog provisioned products." +} diff --git a/services/servicecatalog/src/main/resources/codegen-resources/service-2.json b/services/servicecatalog/src/main/resources/codegen-resources/service-2.json index 31dd633f49e6..8a76284b8e82 100644 --- a/services/servicecatalog/src/main/resources/codegen-resources/service-2.json +++ b/services/servicecatalog/src/main/resources/codegen-resources/service-2.json @@ -751,6 +751,22 @@ ], "documentation":"

This API takes either a ProvisonedProductId or a ProvisionedProductName, along with a list of one or more output keys, and responds with the key/value pairs of those outputs.

" }, + "ImportAsProvisionedProduct":{ + "name":"ImportAsProvisionedProduct", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ImportAsProvisionedProductInput"}, + "output":{"shape":"ImportAsProvisionedProductOutput"}, + "errors":[ + {"shape":"DuplicateResourceException"}, + {"shape":"InvalidStateException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InvalidParametersException"} + ], + "documentation":"

Requests the import of a resource as a Service Catalog provisioned product that is associated to a Service Catalog product and provisioning artifact. Once imported all supported Service Catalog governance actions are supported on the provisioned product.

Resource import only supports CloudFormation stack ARNs. CloudFormation StackSets and non-root nested stacks are not supported.

The CloudFormation stack must have one of the following statuses to be imported: CREATE_COMPLETE, UPDATE_COMPLETE, UPDATE_ROLLBACK_COMPLETE, IMPORT_COMPLETE, IMPORT_ROLLBACK_COMPLETE.

Import of the resource requires that the CloudFormation stack template matches the associated Service Catalog product provisioning artifact.

" + }, "ListAcceptedPortfolioShares":{ "name":"ListAcceptedPortfolioShares", "http":{ @@ -1833,7 +1849,7 @@ }, "ProvisioningArtifactParameters":{ "shape":"ProvisioningArtifactProperties", - "documentation":"

The configuration of the provisioning artifact.

" + "documentation":"

The configuration of the provisioning artifact. The info field accepts ImportFromPhysicalID.

" }, "IdempotencyToken":{ "shape":"IdempotencyToken", @@ -1851,7 +1867,7 @@ }, "ProvisioningArtifactDetail":{ "shape":"ProvisioningArtifactDetail", - "documentation":"

Information about the provisioning artifact.

" + "documentation":"

Information about the provisioning artifact.

" }, "Tags":{ "shape":"Tags", @@ -1960,7 +1976,7 @@ }, "Parameters":{ "shape":"ProvisioningArtifactProperties", - "documentation":"

The configuration for the provisioning artifact.

" + "documentation":"

The configuration for the provisioning artifact. The info field accepts ImportFromPhysicalID.

" }, "IdempotencyToken":{ "shape":"IdempotencyToken", @@ -3147,6 +3163,49 @@ "pattern":"[a-zA-Z0-9][a-zA-Z0-9_-]*" }, "IgnoreErrors":{"type":"boolean"}, + "ImportAsProvisionedProductInput":{ + "type":"structure", + "required":[ + "ProductId", + "ProvisioningArtifactId", + "ProvisionedProductName", + "PhysicalId", + "IdempotencyToken" + ], + "members":{ + "AcceptLanguage":{ + "shape":"AcceptLanguage", + "documentation":"

The language code.

  • en - English (default)

  • jp - Japanese

  • zh - Chinese

" + }, + "ProductId":{ + "shape":"Id", + "documentation":"

The product identifier.

" + }, + "ProvisioningArtifactId":{ + "shape":"Id", + "documentation":"

The identifier of the provisioning artifact.

" + }, + "ProvisionedProductName":{ + "shape":"ProvisionedProductName", + "documentation":"

The user-friendly name of the provisioned product. The value must be unique for the AWS account. The name cannot be updated after the product is provisioned.

" + }, + "PhysicalId":{ + "shape":"PhysicalId", + "documentation":"

The unique identifier of the resource to be imported. It only currently supports CloudFormation stack IDs.

" + }, + "IdempotencyToken":{ + "shape":"IdempotencyToken", + "documentation":"

A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the idempotency token, the same response is returned for each repeated request.

", + "idempotencyToken":true + } + } + }, + "ImportAsProvisionedProductOutput":{ + "type":"structure", + "members":{ + "RecordDetail":{"shape":"RecordDetail"} + } + }, "InstructionType":{"type":"string"}, "InstructionValue":{"type":"string"}, "InvalidParametersException":{ @@ -5271,6 +5330,7 @@ "documentation":"

Information about a change to a resource attribute.

" }, "ResourceType":{"type":"string"}, + "RetainPhysicalResources":{"type":"boolean"}, "RoleArn":{ "type":"string", "max":1224, @@ -5879,6 +5939,10 @@ "AcceptLanguage":{ "shape":"AcceptLanguage", "documentation":"

The language code.

  • en - English (default)

  • jp - Japanese

  • zh - Chinese

" + }, + "RetainPhysicalResources":{ + "shape":"RetainPhysicalResources", + "documentation":"

When this boolean parameter is set to true, the TerminateProvisionedProduct API deletes the Service Catalog provisioned product. However, it does not remove the CloudFormation stack, stack set, or the underlying resources of the deleted provisioned product. The default value is false.

" } } }, @@ -6127,7 +6191,7 @@ }, "ProvisionedProductProperties":{ "shape":"ProvisionedProductProperties", - "documentation":"

A map that contains the provisioned product properties to be updated.

The LAUNCH_ROLE key accepts role ARNs. This key allows an administrator to call UpdateProvisionedProductProperties to update the launch role that is associated with a provisioned product. This role is used when an end user calls a provisioning operation such as UpdateProvisionedProduct, TerminateProvisionedProduct, or ExecuteProvisionedProductServiceAction. Only a role ARN or an empty string \"\" is valid. A user ARN is invalid. if an admin user passes an empty string \"\" as the value for the key LAUNCH_ROLE, the admin removes the launch role that is associated with the provisioned product. As a result, the end user operations use the credentials of the end user.

The OWNER key accepts user ARNs and role ARNs. The owner is the user that has permission to see, update, terminate, and execute service actions in the provisioned product.

The administrator can change the owner of a provisioned product to another IAM user within the same account. Both end user owners and administrators can see ownership history of the provisioned product using the ListRecordHistory API. The new owner can describe all past records for the provisioned product using the DescribeRecord API. The previous owner can no longer use DescribeRecord, but can still see the product's history from when he was an owner using ListRecordHistory.

If a provisioned product ownership is assigned to an end user, they can see and perform any action through the API or Service Catalog console such as update, terminate, and execute service actions. If an end user provisions a product and the owner is updated to someone else, they will no longer be able to see or perform any actions through API or the Service Catalog console on that provisioned product.

" + "documentation":"

A map that contains the provisioned product properties to be updated.

The LAUNCH_ROLE key accepts role ARNs. This key allows an administrator to call UpdateProvisionedProductProperties to update the launch role that is associated with a provisioned product. This role is used when an end user calls a provisioning operation such as UpdateProvisionedProduct, TerminateProvisionedProduct, or ExecuteProvisionedProductServiceAction. Only a role ARN is valid. A user ARN is invalid.

The OWNER key accepts user ARNs and role ARNs. The owner is the user that has permission to see, update, terminate, and execute service actions in the provisioned product.

The administrator can change the owner of a provisioned product to another IAM user within the same account. Both end user owners and administrators can see ownership history of the provisioned product using the ListRecordHistory API. The new owner can describe all past records for the provisioned product using the DescribeRecord API. The previous owner can no longer use DescribeRecord, but can still see the product's history from when he was an owner using ListRecordHistory.

If a provisioned product ownership is assigned to an end user, they can see and perform any action through the API or Service Catalog console such as update, terminate, and execute service actions. If an end user provisions a product and the owner is updated to someone else, they will no longer be able to see or perform any actions through API or the Service Catalog console on that provisioned product.

" }, "IdempotencyToken":{ "shape":"IdempotencyToken", @@ -6353,5 +6417,5 @@ "UserArnSession":{"type":"string"}, "Verbose":{"type":"boolean"} }, - "documentation":"AWS Service Catalog

AWS Service Catalog enables organizations to create and manage catalogs of IT services that are approved for use on AWS. To get the most out of this documentation, you should be familiar with the terminology discussed in AWS Service Catalog Concepts.

" + "documentation":"AWS Service Catalog

AWS Service Catalog enables organizations to create and manage catalogs of IT services that are approved for AWS. To get the most out of this documentation, you should be familiar with the terminology discussed in AWS Service Catalog Concepts.

" } From 7d346bec5d8ea97e32344064a124d133745a0b26 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 16 Nov 2020 19:03:39 +0000 Subject: [PATCH 200/339] Amazon Simple Notification Service Update: Documentation updates for Amazon SNS. --- .../feature-AmazonSimpleNotificationService-200b43a.json | 6 ++++++ .../sns/src/main/resources/codegen-resources/service-2.json | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 .changes/next-release/feature-AmazonSimpleNotificationService-200b43a.json diff --git a/.changes/next-release/feature-AmazonSimpleNotificationService-200b43a.json b/.changes/next-release/feature-AmazonSimpleNotificationService-200b43a.json new file mode 100644 index 000000000000..160c4b6f785e --- /dev/null +++ b/.changes/next-release/feature-AmazonSimpleNotificationService-200b43a.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Simple Notification Service", + "contributor": "", + "description": "Documentation updates for Amazon SNS." +} diff --git a/services/sns/src/main/resources/codegen-resources/service-2.json b/services/sns/src/main/resources/codegen-resources/service-2.json index febd979fc53d..977b5d984635 100755 --- a/services/sns/src/main/resources/codegen-resources/service-2.json +++ b/services/sns/src/main/resources/codegen-resources/service-2.json @@ -565,7 +565,7 @@ {"shape":"AuthorizationErrorException"}, {"shape":"InvalidSecurityException"} ], - "documentation":"

Subscribes an endpoint to an Amazon SNS topic. If the endpoint type is HTTP/S or email, or if the endpoint and the topic are not in the same AWS account, the endpoint owner must the ConfirmSubscription action to confirm the subscription.

You call the ConfirmSubscription action with the token from the subscription response. Confirmation tokens are valid for three days.

This action is throttled at 100 transactions per second (TPS).

" + "documentation":"

Subscribes an endpoint to an Amazon SNS topic. If the endpoint type is HTTP/S or email, or if the endpoint and the topic are not in the same AWS account, the endpoint owner must run the ConfirmSubscription action to confirm the subscription.

You call the ConfirmSubscription action with the token from the subscription response. Confirmation tokens are valid for three days.

This action is throttled at 100 transactions per second (TPS).

" }, "TagResource":{ "name":"TagResource", @@ -1597,7 +1597,7 @@ }, "AttributeName":{ "shape":"attributeName", - "documentation":"

A map of attributes with their corresponding values.

The following lists the names, descriptions, and values of the special request parameters that the SetTopicAttributes action uses:

  • DeliveryPolicy – The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints.

  • FilterPolicy – The simple JSON object that lets your subscriber receive only a subset of messages, rather than receiving every message published to the topic.

  • RawMessageDelivery – When set to true, enables raw message delivery to Amazon SQS or HTTP/S endpoints. This eliminates the need for the endpoints to process JSON formatting, which is otherwise created for Amazon SNS metadata.

  • RedrivePolicy – When specified, sends undeliverable messages to the specified Amazon SQS dead-letter queue. Messages that can't be delivered due to client errors (for example, when the subscribed endpoint is unreachable) or server errors (for example, when the service that powers the subscribed endpoint becomes unavailable) are held in the dead-letter queue for further analysis or reprocessing.

" + "documentation":"

A map of attributes with their corresponding values.

The following lists the names, descriptions, and values of the special request parameters that this action uses:

  • DeliveryPolicy – The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints.

  • FilterPolicy – The simple JSON object that lets your subscriber receive only a subset of messages, rather than receiving every message published to the topic.

  • RawMessageDelivery – When set to true, enables raw message delivery to Amazon SQS or HTTP/S endpoints. This eliminates the need for the endpoints to process JSON formatting, which is otherwise created for Amazon SNS metadata.

  • RedrivePolicy – When specified, sends undeliverable messages to the specified Amazon SQS dead-letter queue. Messages that can't be delivered due to client errors (for example, when the subscribed endpoint is unreachable) or server errors (for example, when the service that powers the subscribed endpoint becomes unavailable) are held in the dead-letter queue for further analysis or reprocessing.

" }, "AttributeValue":{ "shape":"attributeValue", @@ -1916,5 +1916,5 @@ "topicARN":{"type":"string"}, "topicName":{"type":"string"} }, - "documentation":"Amazon Simple Notification Service

Amazon Simple Notification Service (Amazon SNS) is a web service that enables you to build distributed web-enabled applications. Applications can use Amazon SNS to easily push real-time notification messages to interested subscribers over multiple delivery protocols. For more information about this product see https://aws.amazon.com/sns. For detailed information about Amazon SNS features and their associated API calls, see the Amazon SNS Developer Guide.

We also provide SDKs that enable you to access Amazon SNS from your preferred programming language. The SDKs contain functionality that automatically takes care of tasks such as: cryptographically signing your service requests, retrying requests, and handling error responses. For a list of available SDKs, go to Tools for Amazon Web Services.

" + "documentation":"Amazon Simple Notification Service

Amazon Simple Notification Service (Amazon SNS) is a web service that enables you to build distributed web-enabled applications. Applications can use Amazon SNS to easily push real-time notification messages to interested subscribers over multiple delivery protocols. For more information about this product see https://aws.amazon.com/sns. For detailed information about Amazon SNS features and their associated API calls, see the Amazon SNS Developer Guide.

For information on the permissions you need to use this API, see Identity and access management in Amazon SNS in the Amazon SNS Developer Guide.

We also provide SDKs that enable you to access Amazon SNS from your preferred programming language. The SDKs contain functionality that automatically takes care of tasks such as: cryptographically signing your service requests, retrying requests, and handling error responses. For a list of available SDKs, go to Tools for Amazon Web Services.

" } From fbc66dda36dcedd26cdda856ddc676f4de2d21ab Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 16 Nov 2020 19:03:41 +0000 Subject: [PATCH 201/339] AWS IoT SiteWise Update: This release supports Unicode characters for string operations in formulae computes in SiteWise. For more information, search for SiteWise in Amazon What's new or refer the SiteWise documentation. --- .../feature-AWSIoTSiteWise-8ef14e7.json | 6 +++ .../codegen-resources/service-2.json | 53 ++++++++++++++++++- 2 files changed, 57 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AWSIoTSiteWise-8ef14e7.json diff --git a/.changes/next-release/feature-AWSIoTSiteWise-8ef14e7.json b/.changes/next-release/feature-AWSIoTSiteWise-8ef14e7.json new file mode 100644 index 000000000000..eebacf48c3f7 --- /dev/null +++ b/.changes/next-release/feature-AWSIoTSiteWise-8ef14e7.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS IoT SiteWise", + "contributor": "", + "description": "This release supports Unicode characters for string operations in formulae computes in SiteWise. For more information, search for SiteWise in Amazon What's new or refer the SiteWise documentation." +} diff --git a/services/iotsitewise/src/main/resources/codegen-resources/service-2.json b/services/iotsitewise/src/main/resources/codegen-resources/service-2.json index 6c5db160bd09..3b4248128126 100644 --- a/services/iotsitewise/src/main/resources/codegen-resources/service-2.json +++ b/services/iotsitewise/src/main/resources/codegen-resources/service-2.json @@ -205,6 +205,23 @@ "documentation":"

Creates a portal, which can contain projects and dashboards. AWS IoT SiteWise Monitor uses AWS SSO or IAM to authenticate portal users and manage user permissions.

Before you can sign in to a new portal, you must add at least one identity to that portal. For more information, see Adding or removing portal administrators in the AWS IoT SiteWise User Guide.

", "endpoint":{"hostPrefix":"monitor."} }, + "CreatePresignedPortalUrl":{ + "name":"CreatePresignedPortalUrl", + "http":{ + "method":"GET", + "requestUri":"/portals/{portalId}/presigned-url", + "responseCode":200 + }, + "input":{"shape":"CreatePresignedPortalUrlRequest"}, + "output":{"shape":"CreatePresignedPortalUrlResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InternalFailureException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Creates a pre-signed URL to a portal. Use this operation to create URLs to portals that use AWS Identity and Access Management (IAM) to authenticate users. An IAM user with access to a portal can call this API to get a URL to that portal. The URL contains a session token that lets the IAM user access the portal.

", + "endpoint":{"hostPrefix":"monitor."} + }, "CreateProject":{ "name":"CreateProject", "http":{ @@ -2114,6 +2131,34 @@ } } }, + "CreatePresignedPortalUrlRequest":{ + "type":"structure", + "required":["portalId"], + "members":{ + "portalId":{ + "shape":"ID", + "documentation":"

The ID of the portal to access.

", + "location":"uri", + "locationName":"portalId" + }, + "sessionDurationSeconds":{ + "shape":"SessionDurationSeconds", + "documentation":"

The duration (in seconds) for which the session at the URL is valid.

Default: 900 seconds (15 minutes)

", + "location":"querystring", + "locationName":"sessionDurationSeconds" + } + } + }, + "CreatePresignedPortalUrlResponse":{ + "type":"structure", + "required":["presignedPortalUrl"], + "members":{ + "presignedPortalUrl":{ + "shape":"Url", + "documentation":"

The pre-signed URL to the portal. The URL contains the portal ID and a session token that lets you access the portal. The URL has the following format.

https://<portal-id>.app.iotsitewise.aws/auth?token=<encrypted-token>

" + } + } + }, "CreateProjectRequest":{ "type":"structure", "required":[ @@ -2992,8 +3037,7 @@ "Expression":{ "type":"string", "max":1024, - "min":1, - "pattern":"^[a-z0-9._+\\-*%/^, ()]+$" + "min":1 }, "ExpressionVariable":{ "type":"structure", @@ -4345,6 +4389,11 @@ "exception":true, "fault":true }, + "SessionDurationSeconds":{ + "type":"integer", + "max":43200, + "min":900 + }, "TagKey":{ "type":"string", "max":128, From 5be4437d6abdb50c82e480e63ab9b7bd501fc9c3 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 16 Nov 2020 19:04:57 +0000 Subject: [PATCH 202/339] Amazon SageMaker Service Update: This feature enables customers to encrypt their Amazon SageMaker Studio storage volumes with customer master keys (CMKs) managed by them in AWS Key Management Service (KMS). --- ...eature-AmazonSageMakerService-3e30c87.json | 6 ++ .../codegen-resources/service-2.json | 60 +++++++++++-------- 2 files changed, 42 insertions(+), 24 deletions(-) create mode 100644 .changes/next-release/feature-AmazonSageMakerService-3e30c87.json diff --git a/.changes/next-release/feature-AmazonSageMakerService-3e30c87.json b/.changes/next-release/feature-AmazonSageMakerService-3e30c87.json new file mode 100644 index 000000000000..26643920cbf8 --- /dev/null +++ b/.changes/next-release/feature-AmazonSageMakerService-3e30c87.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon SageMaker Service", + "contributor": "", + "description": "This feature enables customers to encrypt their Amazon SageMaker Studio storage volumes with customer master keys (CMKs) managed by them in AWS Key Management Service (KMS)." +} 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 8ed720837d47..1cdd96b46e54 100644 --- a/services/sagemaker/src/main/resources/codegen-resources/service-2.json +++ b/services/sagemaker/src/main/resources/codegen-resources/service-2.json @@ -73,7 +73,7 @@ "errors":[ {"shape":"ResourceInUse"} ], - "documentation":"

Creates a configuration for running an Amazon SageMaker image as a KernelGateway app.

" + "documentation":"

Creates a configuration for running a SageMaker image as a KernelGateway app. The configuration specifies the Amazon Elastic File System (EFS) storage volume on the image, and a list of the kernels in the image.

" }, "CreateAutoMLJob":{ "name":"CreateAutoMLJob", @@ -138,7 +138,7 @@ "errors":[ {"shape":"ResourceLimitExceeded"} ], - "documentation":"

Creates an endpoint using the endpoint configuration specified in the request. Amazon SageMaker uses the endpoint to provision resources and deploy models. You create the endpoint configuration with the CreateEndpointConfig API.

Use this API to deploy models using Amazon SageMaker hosting services.

For an example that calls this method when deploying a model to Amazon SageMaker hosting services, see Deploy the Model to Amazon SageMaker Hosting Services (AWS SDK for Python (Boto 3)).

You must not delete an EndpointConfig that is in use by an endpoint that is live or while the UpdateEndpoint or CreateEndpoint operations are being performed on the endpoint. To update an endpoint, you must create a new EndpointConfig.

The endpoint name must be unique within an AWS Region in your AWS account.

When it receives the request, Amazon SageMaker creates the endpoint, launches the resources (ML compute instances), and deploys the model(s) on them.

When you call CreateEndpoint, a load call is made to DynamoDB to verify that your endpoint configuration exists. When you read data from a DynamoDB table supporting Eventually Consistent Reads , the response might not reflect the results of a recently completed write operation. The response might include some stale data. If the dependent entities are not yet in DynamoDB, this causes a validation error. If you repeat your read request after a short time, the response should return the latest data. So retry logic is recommended to handle these possible issues. We also recommend that customers call DescribeEndpointConfig before calling CreateEndpoint to minimize the potential impact of a DynamoDB eventually consistent read.

When Amazon SageMaker receives the request, it sets the endpoint status to Creating. After it creates the endpoint, it sets the status to InService. Amazon SageMaker can then process incoming requests for inferences. To check the status of an endpoint, use the DescribeEndpoint API.

If any of the models hosted at this endpoint get model data from an Amazon S3 location, Amazon SageMaker uses AWS Security Token Service to download model artifacts from the S3 path you provided. AWS STS is activated in your IAM user account by default. If you previously deactivated AWS STS for a region, you need to reactivate AWS STS for that region. For more information, see Activating and Deactivating AWS STS in an AWS Region in the AWS Identity and Access Management User Guide.

" + "documentation":"

Creates an endpoint using the endpoint configuration specified in the request. Amazon SageMaker uses the endpoint to provision resources and deploy models. You create the endpoint configuration with the CreateEndpointConfig API.

Use this API to deploy models using Amazon SageMaker hosting services.

For an example that calls this method when deploying a model to Amazon SageMaker hosting services, see Deploy the Model to Amazon SageMaker Hosting Services (AWS SDK for Python (Boto 3)).

You must not delete an EndpointConfig that is in use by an endpoint that is live or while the UpdateEndpoint or CreateEndpoint operations are being performed on the endpoint. To update an endpoint, you must create a new EndpointConfig.

The endpoint name must be unique within an AWS Region in your AWS account.

When it receives the request, Amazon SageMaker creates the endpoint, launches the resources (ML compute instances), and deploys the model(s) on them.

When you call CreateEndpoint, a load call is made to DynamoDB to verify that your endpoint configuration exists. When you read data from a DynamoDB table supporting Eventually Consistent Reads , the response might not reflect the results of a recently completed write operation. The response might include some stale data. If the dependent entities are not yet in DynamoDB, this causes a validation error. If you repeat your read request after a short time, the response should return the latest data. So retry logic is recommended to handle these possible issues. We also recommend that customers call DescribeEndpointConfig before calling CreateEndpoint to minimize the potential impact of a DynamoDB eventually consistent read.

When Amazon SageMaker receives the request, it sets the endpoint status to Creating. After it creates the endpoint, it sets the status to InService. Amazon SageMaker can then process incoming requests for inferences. To check the status of an endpoint, use the DescribeEndpoint API.

If any of the models hosted at this endpoint get model data from an Amazon S3 location, Amazon SageMaker uses AWS Security Token Service to download model artifacts from the S3 path you provided. AWS STS is activated in your IAM user account by default. If you previously deactivated AWS STS for a region, you need to reactivate AWS STS for that region. For more information, see Activating and Deactivating AWS STS in an AWS Region in the AWS Identity and Access Management User Guide.

To add the IAM role policies for using this API operation, go to the IAM console, and choose Roles in the left navigation pane. Search the IAM role that you want to grant access to use the CreateEndpoint and CreateEndpointConfig API operations, add the following policies to the role.

  • Option 1: For a full Amazon SageMaker access, search and attach the AmazonSageMakerFullAccess policy.

  • Option 2: For granting a limited access to an IAM role, paste the following Action elements manually into the JSON file of the IAM role:

    \"Action\": [\"sagemaker:CreateEndpoint\", \"sagemaker:CreateEndpointConfig\"]

    \"Resource\": [

    \"arn:aws:sagemaker:region:account-id:endpoint/endpointName\"

    \"arn:aws:sagemaker:region:account-id:endpoint-config/endpointConfigName\"

    ]

    For more information, see Amazon SageMaker API Permissions: Actions, Permissions, and Resources Reference.

" }, "CreateEndpointConfig":{ "name":"CreateEndpointConfig", @@ -220,7 +220,7 @@ {"shape":"ResourceInUse"}, {"shape":"ResourceLimitExceeded"} ], - "documentation":"

Creates a SageMaker Image. A SageMaker image represents a set of container images. Each of these container images is represented by a SageMaker ImageVersion.

" + "documentation":"

Creates a custom SageMaker image. A SageMaker image is a set of image versions. Each image version represents a container image stored in Amazon Container Registry (ECR). For more information, see Bring your own SageMaker image.

" }, "CreateImageVersion":{ "name":"CreateImageVersion", @@ -2093,7 +2093,7 @@ }, "AppImageConfigName":{ "shape":"AppImageConfigName", - "documentation":"

The name of the AppImageConfig.

" + "documentation":"

The name of the AppImageConfig. Must be unique to your account.

" }, "CreationTime":{ "shape":"Timestamp", @@ -2105,10 +2105,10 @@ }, "KernelGatewayImageConfig":{ "shape":"KernelGatewayImageConfig", - "documentation":"

The KernelGateway app.

" + "documentation":"

The configuration for the file system and kernels in the SageMaker image.

" } }, - "documentation":"

The configuration for running an Amazon SageMaker image as a KernelGateway app.

" + "documentation":"

The configuration for running a SageMaker image as a KernelGateway app.

" }, "AppImageConfigList":{ "type":"list", @@ -3676,7 +3676,13 @@ }, "HomeEfsFileSystemKmsKeyId":{ "shape":"KmsKeyId", - "documentation":"

The AWS Key Management Service (KMS) encryption key ID. Encryption with a customer master key (CMK) is not supported.

" + "documentation":"

This member is deprecated and replaced with KmsKeyId.

", + "deprecated":true, + "deprecatedMessage":"This property is deprecated, use KmsKeyId instead." + }, + "KmsKeyId":{ + "shape":"KmsKeyId", + "documentation":"

SageMaker uses AWS KMS to encrypt the EFS volume attached to the domain with an AWS managed customer master key (CMK) by default. For more control, specify a customer managed CMK.

" } } }, @@ -3924,7 +3930,7 @@ }, "DisplayName":{ "shape":"ImageDisplayName", - "documentation":"

The display name of the image. When the image is added to a domain, DisplayName must be unique to the domain.

" + "documentation":"

The display name of the image. If not provided, ImageName is displayed.

" }, "ImageName":{ "shape":"ImageName", @@ -4772,7 +4778,7 @@ "documentation":"

The name of the AppImageConfig.

" } }, - "documentation":"

A custom image.

" + "documentation":"

A custom SageMaker image. For more information, see Bring your own SageMaker image.

" }, "CustomImages":{ "type":"list", @@ -5457,7 +5463,7 @@ }, "KernelGatewayImageConfig":{ "shape":"KernelGatewayImageConfig", - "documentation":"

The KernelGateway app.

" + "documentation":"

The configuration of a KernelGateway app.

" } } }, @@ -5811,7 +5817,7 @@ }, "DefaultUserSettings":{ "shape":"UserSettings", - "documentation":"

Settings which are applied to all UserProfile in this domain, if settings are not explicitly specified in a given UserProfile.

" + "documentation":"

Settings which are applied to all UserProfiles in this domain, if settings are not explicitly specified in a given UserProfile.

" }, "AppNetworkAccessType":{ "shape":"AppNetworkAccessType", @@ -5819,7 +5825,9 @@ }, "HomeEfsFileSystemKmsKeyId":{ "shape":"KmsKeyId", - "documentation":"

The AWS Key Management Service encryption key ID.

" + "documentation":"

This member is deprecated and replaced with KmsKeyId.

", + "deprecated":true, + "deprecatedMessage":"This property is deprecated, use KmsKeyId instead." }, "SubnetIds":{ "shape":"Subnets", @@ -5832,6 +5840,10 @@ "VpcId":{ "shape":"VpcId", "documentation":"

The ID of the Amazon Virtual Private Cloud (VPC) that Studio uses for communication.

" + }, + "KmsKeyId":{ + "shape":"KmsKeyId", + "documentation":"

The AWS KMS customer managed CMK used to encrypt the EFS volume attached to the domain.

" } } }, @@ -7796,16 +7808,16 @@ }, "DefaultUid":{ "shape":"DefaultUid", - "documentation":"

The default POSIX user ID. If not specified, defaults to 1000.

", + "documentation":"

The default POSIX user ID (UID). If not specified, defaults to 1000.

", "box":true }, "DefaultGid":{ "shape":"DefaultGid", - "documentation":"

The default POSIX group ID. If not specified, defaults to 100.

", + "documentation":"

The default POSIX group ID (GID). If not specified, defaults to 100.

", "box":true } }, - "documentation":"

The Amazon Elastic File System (EFS) storage configuration for an image.

" + "documentation":"

The Amazon Elastic File System (EFS) storage configuration for a SageMaker image.

" }, "FileSystemDataSource":{ "type":"structure", @@ -9013,7 +9025,7 @@ }, "DataInputConfig":{ "shape":"DataInputConfig", - "documentation":"

Specifies the name and shape of the expected data inputs for your trained model with a JSON dictionary form. The data inputs are InputConfig$Framework specific.

  • TensorFlow: You must specify the name and shape (NHWC format) of the expected data inputs using a dictionary format for your trained model. The dictionary formats required for the console and CLI are different.

    • Examples for one input:

      • If using the console, {\"input\":[1,1024,1024,3]}

      • If using the CLI, {\\\"input\\\":[1,1024,1024,3]}

    • Examples for two inputs:

      • If using the console, {\"data1\": [1,28,28,1], \"data2\":[1,28,28,1]}

      • If using the CLI, {\\\"data1\\\": [1,28,28,1], \\\"data2\\\":[1,28,28,1]}

  • KERAS: You must specify the name and shape (NCHW format) of expected data inputs using a dictionary format for your trained model. Note that while Keras model artifacts should be uploaded in NHWC (channel-last) format, DataInputConfig should be specified in NCHW (channel-first) format. The dictionary formats required for the console and CLI are different.

    • Examples for one input:

      • If using the console, {\"input_1\":[1,3,224,224]}

      • If using the CLI, {\\\"input_1\\\":[1,3,224,224]}

    • Examples for two inputs:

      • If using the console, {\"input_1\": [1,3,224,224], \"input_2\":[1,3,224,224]}

      • If using the CLI, {\\\"input_1\\\": [1,3,224,224], \\\"input_2\\\":[1,3,224,224]}

  • MXNET/ONNX: You must specify the name and shape (NCHW format) of the expected data inputs in order using a dictionary format for your trained model. The dictionary formats required for the console and CLI are different.

    • Examples for one input:

      • If using the console, {\"data\":[1,3,1024,1024]}

      • If using the CLI, {\\\"data\\\":[1,3,1024,1024]}

    • Examples for two inputs:

      • If using the console, {\"var1\": [1,1,28,28], \"var2\":[1,1,28,28]}

      • If using the CLI, {\\\"var1\\\": [1,1,28,28], \\\"var2\\\":[1,1,28,28]}

  • PyTorch: You can either specify the name and shape (NCHW format) of expected data inputs in order using a dictionary format for your trained model or you can specify the shape only using a list format. The dictionary formats required for the console and CLI are different. The list formats for the console and CLI are the same.

    • Examples for one input in dictionary format:

      • If using the console, {\"input0\":[1,3,224,224]}

      • If using the CLI, {\\\"input0\\\":[1,3,224,224]}

    • Example for one input in list format: [[1,3,224,224]]

    • Examples for two inputs in dictionary format:

      • If using the console, {\"input0\":[1,3,224,224], \"input1\":[1,3,224,224]}

      • If using the CLI, {\\\"input0\\\":[1,3,224,224], \\\"input1\\\":[1,3,224,224]}

    • Example for two inputs in list format: [[1,3,224,224], [1,3,224,224]]

  • XGBOOST: input data name and shape are not needed.

DataInputConfig supports the following parameters for CoreML OutputConfig$TargetDevice (ML Model format):

  • shape: Input shape, for example {\"input_1\": {\"shape\": [1,224,224,3]}}. In addition to static input shapes, CoreML converter supports Flexible input shapes:

    • Range Dimension. You can use the Range Dimension feature if you know the input shape will be within some specific interval in that dimension, for example: {\"input_1\": {\"shape\": [\"1..10\", 224, 224, 3]}}

    • Enumerated shapes. Sometimes, the models are trained to work only on a select set of inputs. You can enumerate all supported input shapes, for example: {\"input_1\": {\"shape\": [[1, 224, 224, 3], [1, 160, 160, 3]]}}

  • default_shape: Default input shape. You can set a default shape during conversion for both Range Dimension and Enumerated Shapes. For example {\"input_1\": {\"shape\": [\"1..10\", 224, 224, 3], \"default_shape\": [1, 224, 224, 3]}}

  • type: Input type. Allowed values: Image and Tensor. By default, the converter generates an ML Model with inputs of type Tensor (MultiArray). User can set input type to be Image. Image input type requires additional input parameters such as bias and scale.

  • bias: If the input type is an Image, you need to provide the bias vector.

  • scale: If the input type is an Image, you need to provide a scale factor.

CoreML ClassifierConfig parameters can be specified using OutputConfig$CompilerOptions. CoreML converter supports Tensorflow and PyTorch models. CoreML conversion examples:

  • Tensor type input:

    • \"DataInputConfig\": {\"input_1\": {\"shape\": [[1,224,224,3], [1,160,160,3]], \"default_shape\": [1,224,224,3]}}

  • Tensor type input without input name (PyTorch):

    • \"DataInputConfig\": [{\"shape\": [[1,3,224,224], [1,3,160,160]], \"default_shape\": [1,3,224,224]}]

  • Image type input:

    • \"DataInputConfig\": {\"input_1\": {\"shape\": [[1,224,224,3], [1,160,160,3]], \"default_shape\": [1,224,224,3], \"type\": \"Image\", \"bias\": [-1,-1,-1], \"scale\": 0.007843137255}}

    • \"CompilerOptions\": {\"class_labels\": \"imagenet_labels_1000.txt\"}

  • Image type input without input name (PyTorch):

    • \"DataInputConfig\": [{\"shape\": [[1,3,224,224], [1,3,160,160]], \"default_shape\": [1,3,224,224], \"type\": \"Image\", \"bias\": [-1,-1,-1], \"scale\": 0.007843137255}]

    • \"CompilerOptions\": {\"class_labels\": \"imagenet_labels_1000.txt\"}

" + "documentation":"

Specifies the name and shape of the expected data inputs for your trained model with a JSON dictionary form. The data inputs are InputConfig$Framework specific.

  • TensorFlow: You must specify the name and shape (NHWC format) of the expected data inputs using a dictionary format for your trained model. The dictionary formats required for the console and CLI are different.

    • Examples for one input:

      • If using the console, {\"input\":[1,1024,1024,3]}

      • If using the CLI, {\\\"input\\\":[1,1024,1024,3]}

    • Examples for two inputs:

      • If using the console, {\"data1\": [1,28,28,1], \"data2\":[1,28,28,1]}

      • If using the CLI, {\\\"data1\\\": [1,28,28,1], \\\"data2\\\":[1,28,28,1]}

  • KERAS: You must specify the name and shape (NCHW format) of expected data inputs using a dictionary format for your trained model. Note that while Keras model artifacts should be uploaded in NHWC (channel-last) format, DataInputConfig should be specified in NCHW (channel-first) format. The dictionary formats required for the console and CLI are different.

    • Examples for one input:

      • If using the console, {\"input_1\":[1,3,224,224]}

      • If using the CLI, {\\\"input_1\\\":[1,3,224,224]}

    • Examples for two inputs:

      • If using the console, {\"input_1\": [1,3,224,224], \"input_2\":[1,3,224,224]}

      • If using the CLI, {\\\"input_1\\\": [1,3,224,224], \\\"input_2\\\":[1,3,224,224]}

  • MXNET/ONNX/DARKNET: You must specify the name and shape (NCHW format) of the expected data inputs in order using a dictionary format for your trained model. The dictionary formats required for the console and CLI are different.

    • Examples for one input:

      • If using the console, {\"data\":[1,3,1024,1024]}

      • If using the CLI, {\\\"data\\\":[1,3,1024,1024]}

    • Examples for two inputs:

      • If using the console, {\"var1\": [1,1,28,28], \"var2\":[1,1,28,28]}

      • If using the CLI, {\\\"var1\\\": [1,1,28,28], \\\"var2\\\":[1,1,28,28]}

  • PyTorch: You can either specify the name and shape (NCHW format) of expected data inputs in order using a dictionary format for your trained model or you can specify the shape only using a list format. The dictionary formats required for the console and CLI are different. The list formats for the console and CLI are the same.

    • Examples for one input in dictionary format:

      • If using the console, {\"input0\":[1,3,224,224]}

      • If using the CLI, {\\\"input0\\\":[1,3,224,224]}

    • Example for one input in list format: [[1,3,224,224]]

    • Examples for two inputs in dictionary format:

      • If using the console, {\"input0\":[1,3,224,224], \"input1\":[1,3,224,224]}

      • If using the CLI, {\\\"input0\\\":[1,3,224,224], \\\"input1\\\":[1,3,224,224]}

    • Example for two inputs in list format: [[1,3,224,224], [1,3,224,224]]

  • XGBOOST: input data name and shape are not needed.

DataInputConfig supports the following parameters for CoreML OutputConfig$TargetDevice (ML Model format):

  • shape: Input shape, for example {\"input_1\": {\"shape\": [1,224,224,3]}}. In addition to static input shapes, CoreML converter supports Flexible input shapes:

    • Range Dimension. You can use the Range Dimension feature if you know the input shape will be within some specific interval in that dimension, for example: {\"input_1\": {\"shape\": [\"1..10\", 224, 224, 3]}}

    • Enumerated shapes. Sometimes, the models are trained to work only on a select set of inputs. You can enumerate all supported input shapes, for example: {\"input_1\": {\"shape\": [[1, 224, 224, 3], [1, 160, 160, 3]]}}

  • default_shape: Default input shape. You can set a default shape during conversion for both Range Dimension and Enumerated Shapes. For example {\"input_1\": {\"shape\": [\"1..10\", 224, 224, 3], \"default_shape\": [1, 224, 224, 3]}}

  • type: Input type. Allowed values: Image and Tensor. By default, the converter generates an ML Model with inputs of type Tensor (MultiArray). User can set input type to be Image. Image input type requires additional input parameters such as bias and scale.

  • bias: If the input type is an Image, you need to provide the bias vector.

  • scale: If the input type is an Image, you need to provide a scale factor.

CoreML ClassifierConfig parameters can be specified using OutputConfig$CompilerOptions. CoreML converter supports Tensorflow and PyTorch models. CoreML conversion examples:

  • Tensor type input:

    • \"DataInputConfig\": {\"input_1\": {\"shape\": [[1,224,224,3], [1,160,160,3]], \"default_shape\": [1,224,224,3]}}

  • Tensor type input without input name (PyTorch):

    • \"DataInputConfig\": [{\"shape\": [[1,3,224,224], [1,3,160,160]], \"default_shape\": [1,3,224,224]}]

  • Image type input:

    • \"DataInputConfig\": {\"input_1\": {\"shape\": [[1,224,224,3], [1,160,160,3]], \"default_shape\": [1,224,224,3], \"type\": \"Image\", \"bias\": [-1,-1,-1], \"scale\": 0.007843137255}}

    • \"CompilerOptions\": {\"class_labels\": \"imagenet_labels_1000.txt\"}

  • Image type input without input name (PyTorch):

    • \"DataInputConfig\": [{\"shape\": [[1,3,224,224], [1,3,160,160]], \"default_shape\": [1,3,224,224], \"type\": \"Image\", \"bias\": [-1,-1,-1], \"scale\": 0.007843137255}]

    • \"CompilerOptions\": {\"class_labels\": \"imagenet_labels_1000.txt\"}

" }, "Framework":{ "shape":"Framework", @@ -9177,10 +9189,10 @@ "members":{ "DefaultResourceSpec":{ "shape":"ResourceSpec", - "documentation":"

The default instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.

" + "documentation":"

The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the JupyterServer app.

" } }, - "documentation":"

Jupyter server's app settings.

" + "documentation":"

The JupyterServer app settings.

" }, "KernelDisplayName":{ "type":"string", @@ -9195,7 +9207,7 @@ }, "CustomImages":{ "shape":"CustomImages", - "documentation":"

A list of custom images that are configured to run as a KernelGateway app.

" + "documentation":"

A list of custom SageMaker images that are configured to run as a KernelGateway app.

" } }, "documentation":"

The KernelGateway app settings.

" @@ -9206,14 +9218,14 @@ "members":{ "KernelSpecs":{ "shape":"KernelSpecs", - "documentation":"

Defines how a kernel is started and the arguments, environment variables, and metadata that are available to the kernel.

" + "documentation":"

The specification of the Jupyter kernels in the image.

" }, "FileSystemConfig":{ "shape":"FileSystemConfig", - "documentation":"

The file system configuration.

" + "documentation":"

The Amazon Elastic File System (EFS) storage configuration for a SageMaker image.

" } }, - "documentation":"

The configuration for an Amazon SageMaker KernelGateway app.

" + "documentation":"

The configuration for the file system and kernels in a SageMaker image running as a KernelGateway app.

" }, "KernelName":{ "type":"string", @@ -9225,14 +9237,14 @@ "members":{ "Name":{ "shape":"KernelName", - "documentation":"

The name of the kernel. Must be unique to your account.

" + "documentation":"

The name of the kernel.

" }, "DisplayName":{ "shape":"KernelDisplayName", "documentation":"

The display name of the kernel.

" } }, - "documentation":"

Defines how a kernel is started and the arguments, environment variables, and metadata that are available to the kernel.

" + "documentation":"

The specification of a Jupyter kernel.

" }, "KernelSpecs":{ "type":"list", From d0c197facadd74bb50edfc297d07edcde70fac4b Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 16 Nov 2020 19:06:25 +0000 Subject: [PATCH 203/339] Release 2.15.29. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.29.json | 60 +++++++++++++++++++ .../feature-AWSCodePipeline-81184f5.json | 6 -- ...e-AWSDatabaseMigrationService-2102454.json | 6 -- ...feature-AWSIoTSecureTunneling-c8fc2d2.json | 6 -- .../feature-AWSIoTSiteWise-8ef14e7.json | 6 -- .../feature-AWSServiceCatalog-ba323f5.json | 6 -- .../feature-AmazonQuickSight-9061b90.json | 6 -- ...eature-AmazonSageMakerService-3e30c87.json | 6 -- ...azonSimpleNotificationService-200b43a.json | 6 -- .../feature-Synthetics-5b2871d.json | 6 -- CHANGELOG.md | 37 ++++++++++++ README.md | 8 +-- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 294 files changed, 383 insertions(+), 340 deletions(-) create mode 100644 .changes/2.15.29.json delete mode 100644 .changes/next-release/feature-AWSCodePipeline-81184f5.json delete mode 100644 .changes/next-release/feature-AWSDatabaseMigrationService-2102454.json delete mode 100644 .changes/next-release/feature-AWSIoTSecureTunneling-c8fc2d2.json delete mode 100644 .changes/next-release/feature-AWSIoTSiteWise-8ef14e7.json delete mode 100644 .changes/next-release/feature-AWSServiceCatalog-ba323f5.json delete mode 100644 .changes/next-release/feature-AmazonQuickSight-9061b90.json delete mode 100644 .changes/next-release/feature-AmazonSageMakerService-3e30c87.json delete mode 100644 .changes/next-release/feature-AmazonSimpleNotificationService-200b43a.json delete mode 100644 .changes/next-release/feature-Synthetics-5b2871d.json diff --git a/.changes/2.15.29.json b/.changes/2.15.29.json new file mode 100644 index 000000000000..2e5641407367 --- /dev/null +++ b/.changes/2.15.29.json @@ -0,0 +1,60 @@ +{ + "version": "2.15.29", + "date": "2020-11-16", + "entries": [ + { + "type": "feature", + "category": "AWS Database Migration Service", + "contributor": "", + "description": "Adding MoveReplicationTask feature to move replication tasks between instances" + }, + { + "type": "feature", + "category": "AWS IoT Secure Tunneling", + "contributor": "", + "description": "Support using multiple data streams per tunnel using the Secure Tunneling multiplexing feature." + }, + { + "type": "feature", + "category": "Synthetics", + "contributor": "", + "description": "AWS Synthetics now supports Environment Variables to assign runtime parameters in the canary scripts." + }, + { + "type": "feature", + "category": "Amazon SageMaker Service", + "contributor": "", + "description": "This feature enables customers to encrypt their Amazon SageMaker Studio storage volumes with customer master keys (CMKs) managed by them in AWS Key Management Service (KMS)." + }, + { + "type": "feature", + "category": "AWS IoT SiteWise", + "contributor": "", + "description": "This release supports Unicode characters for string operations in formulae computes in SiteWise. For more information, search for SiteWise in Amazon What's new or refer the SiteWise documentation." + }, + { + "type": "feature", + "category": "AWS CodePipeline", + "contributor": "", + "description": "We show details about inbound executions and id of action executions in GetPipelineState API. We also add ConflictException to StartPipelineExecution, RetryStageExecution, StopPipelineExecution APIs." + }, + { + "type": "feature", + "category": "AWS Service Catalog", + "contributor": "", + "description": "Support import of CloudFormation stacks into Service Catalog provisioned products." + }, + { + "type": "feature", + "category": "Amazon QuickSight", + "contributor": "", + "description": "Adding new parameters for dashboard persistence" + }, + { + "type": "feature", + "category": "Amazon Simple Notification Service", + "contributor": "", + "description": "Documentation updates for Amazon SNS." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSCodePipeline-81184f5.json b/.changes/next-release/feature-AWSCodePipeline-81184f5.json deleted file mode 100644 index e139b83a33fd..000000000000 --- a/.changes/next-release/feature-AWSCodePipeline-81184f5.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS CodePipeline", - "contributor": "", - "description": "We show details about inbound executions and id of action executions in GetPipelineState API. We also add ConflictException to StartPipelineExecution, RetryStageExecution, StopPipelineExecution APIs." -} diff --git a/.changes/next-release/feature-AWSDatabaseMigrationService-2102454.json b/.changes/next-release/feature-AWSDatabaseMigrationService-2102454.json deleted file mode 100644 index b1e10f044943..000000000000 --- a/.changes/next-release/feature-AWSDatabaseMigrationService-2102454.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Database Migration Service", - "contributor": "", - "description": "Adding MoveReplicationTask feature to move replication tasks between instances" -} diff --git a/.changes/next-release/feature-AWSIoTSecureTunneling-c8fc2d2.json b/.changes/next-release/feature-AWSIoTSecureTunneling-c8fc2d2.json deleted file mode 100644 index 56c14453e233..000000000000 --- a/.changes/next-release/feature-AWSIoTSecureTunneling-c8fc2d2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS IoT Secure Tunneling", - "contributor": "", - "description": "Support using multiple data streams per tunnel using the Secure Tunneling multiplexing feature." -} diff --git a/.changes/next-release/feature-AWSIoTSiteWise-8ef14e7.json b/.changes/next-release/feature-AWSIoTSiteWise-8ef14e7.json deleted file mode 100644 index eebacf48c3f7..000000000000 --- a/.changes/next-release/feature-AWSIoTSiteWise-8ef14e7.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS IoT SiteWise", - "contributor": "", - "description": "This release supports Unicode characters for string operations in formulae computes in SiteWise. For more information, search for SiteWise in Amazon What's new or refer the SiteWise documentation." -} diff --git a/.changes/next-release/feature-AWSServiceCatalog-ba323f5.json b/.changes/next-release/feature-AWSServiceCatalog-ba323f5.json deleted file mode 100644 index 7620739614aa..000000000000 --- a/.changes/next-release/feature-AWSServiceCatalog-ba323f5.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Service Catalog", - "contributor": "", - "description": "Support import of CloudFormation stacks into Service Catalog provisioned products." -} diff --git a/.changes/next-release/feature-AmazonQuickSight-9061b90.json b/.changes/next-release/feature-AmazonQuickSight-9061b90.json deleted file mode 100644 index cae18d3e41f7..000000000000 --- a/.changes/next-release/feature-AmazonQuickSight-9061b90.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon QuickSight", - "contributor": "", - "description": "Adding new parameters for dashboard persistence" -} diff --git a/.changes/next-release/feature-AmazonSageMakerService-3e30c87.json b/.changes/next-release/feature-AmazonSageMakerService-3e30c87.json deleted file mode 100644 index 26643920cbf8..000000000000 --- a/.changes/next-release/feature-AmazonSageMakerService-3e30c87.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon SageMaker Service", - "contributor": "", - "description": "This feature enables customers to encrypt their Amazon SageMaker Studio storage volumes with customer master keys (CMKs) managed by them in AWS Key Management Service (KMS)." -} diff --git a/.changes/next-release/feature-AmazonSimpleNotificationService-200b43a.json b/.changes/next-release/feature-AmazonSimpleNotificationService-200b43a.json deleted file mode 100644 index 160c4b6f785e..000000000000 --- a/.changes/next-release/feature-AmazonSimpleNotificationService-200b43a.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Simple Notification Service", - "contributor": "", - "description": "Documentation updates for Amazon SNS." -} diff --git a/.changes/next-release/feature-Synthetics-5b2871d.json b/.changes/next-release/feature-Synthetics-5b2871d.json deleted file mode 100644 index 9c1354099b6e..000000000000 --- a/.changes/next-release/feature-Synthetics-5b2871d.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Synthetics", - "contributor": "", - "description": "AWS Synthetics now supports Environment Variables to assign runtime parameters in the canary scripts." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index c92e1dc882a2..11474d3aa2e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,40 @@ +# __2.15.29__ __2020-11-16__ +## __AWS CodePipeline__ + - ### Features + - We show details about inbound executions and id of action executions in GetPipelineState API. We also add ConflictException to StartPipelineExecution, RetryStageExecution, StopPipelineExecution APIs. + +## __AWS Database Migration Service__ + - ### Features + - Adding MoveReplicationTask feature to move replication tasks between instances + +## __AWS IoT Secure Tunneling__ + - ### Features + - Support using multiple data streams per tunnel using the Secure Tunneling multiplexing feature. + +## __AWS IoT SiteWise__ + - ### Features + - This release supports Unicode characters for string operations in formulae computes in SiteWise. For more information, search for SiteWise in Amazon What's new or refer the SiteWise documentation. + +## __AWS Service Catalog__ + - ### Features + - Support import of CloudFormation stacks into Service Catalog provisioned products. + +## __Amazon QuickSight__ + - ### Features + - Adding new parameters for dashboard persistence + +## __Amazon SageMaker Service__ + - ### Features + - This feature enables customers to encrypt their Amazon SageMaker Studio storage volumes with customer master keys (CMKs) managed by them in AWS Key Management Service (KMS). + +## __Amazon Simple Notification Service__ + - ### Features + - Documentation updates for Amazon SNS. + +## __Synthetics__ + - ### Features + - AWS Synthetics now supports Environment Variables to assign runtime parameters in the canary scripts. + # __2.15.28__ __2020-11-13__ ## __AWS SDK for Java v2__ - ### Features diff --git a/README.md b/README.md index 3e756f96f20c..6a04db5adb4e 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.28 + 2.15.29 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.28 + 2.15.29 software.amazon.awssdk s3 - 2.15.28 + 2.15.29 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.28 + 2.15.29 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 9fa81fa30267..c0ce30fcf262 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 26cfec5847f5..fcc9d8e02f18 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 3305dbe4d823..1e746e71eeac 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.15.29-SNAPSHOT + 2.15.29 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index a6ab1667978d..906c2a738e27 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 48531a855d5a..6eaf194046f3 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.29-SNAPSHOT + 2.15.29 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index f51919a9b3f6..ac6757db2808 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.29-SNAPSHOT + 2.15.29 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 4c5eaf1e9f15..57abfd7e774a 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.15.29-SNAPSHOT + 2.15.29 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index a78feaa90790..218a5dc63965 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.29-SNAPSHOT + 2.15.29 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 467447e8d47c..d58e82626851 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.15.29-SNAPSHOT + 2.15.29 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index eb21947012fa..62df11c756a9 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.29-SNAPSHOT + 2.15.29 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 55251d836d2f..dce08fbde81d 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 71cacfbf5f16..7c1c5a03b6c3 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 40436e172895..d2bb0f0e1bd7 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.29-SNAPSHOT + 2.15.29 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index a1f1f6ccbb70..83172fe0c465 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.29-SNAPSHOT + 2.15.29 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index d4b8518d33f8..5113890cc728 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 8f19f547a3ca..a14cebe3361c 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 2dc485dba728..9c06b6217eef 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.29-SNAPSHOT + 2.15.29 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index a35050a5e70d..05d6a4a623cb 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.15.29-SNAPSHOT + 2.15.29 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index bbf88b6466f8..078257352f2d 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index b5b59ec61f08..abb28514a06c 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.15.29-SNAPSHOT + 2.15.29 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 29c4deef29c4..24c583d747b4 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.15.29-SNAPSHOT + 2.15.29 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index e3d6180ececb..7e99ce30949b 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.15.29-SNAPSHOT + 2.15.29 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 18455854bdce..31a893779405 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index ee185ac2f6a3..865379854ca4 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 1aa792a9b9cf..81be56bedc29 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.29-SNAPSHOT + 2.15.29 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index cbc9ae4a7c0e..ba85a5eb4760 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.29-SNAPSHOT + 2.15.29 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 1f4d9a670480..362453670e6b 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.15.29-SNAPSHOT + 2.15.29 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 c0a588dbb213..bd0ab474ea16 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.15.29-SNAPSHOT + 2.15.29 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index f6c61424085e..10a044f6aea7 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.15.29-SNAPSHOT + 2.15.29 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index a1ef0448244c..67ba5740a233 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.15.29-SNAPSHOT + 2.15.29 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 05a9614e424a..9327c4bfc775 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 343c7a2d0bfe..3c66d3e04e63 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.15.29-SNAPSHOT + 2.15.29 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index a58854ef7e22..b4133d801dcf 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.15.29-SNAPSHOT + 2.15.29 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 1a54e5ce0b27..4d8dfa3fac9d 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.29-SNAPSHOT + 2.15.29 metric-publishers diff --git a/pom.xml b/pom.xml index 3a350ef6bf42..c2f9aaf46f36 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.29-SNAPSHOT + 2.15.29 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 6dc424fab2b2..004483f77227 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.29-SNAPSHOT + 2.15.29 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 6f4a1a8b83ad..0cae87917cc0 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.15.29-SNAPSHOT + 2.15.29 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 52296cb68c44..58664d61cef3 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.29-SNAPSHOT + 2.15.29 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 3b2cc23e8191..76590645d8fe 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index bd6416f35106..52c3ebdffefc 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index b88bc5da8740..56ab4ddab289 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index cc2c5be235f4..71fbbd475187 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index bbae2d676932..8bb80db25f47 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index b83acbcfac38..5e69dc2843d7 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index b0a04be9562a..9fe3b0453c2c 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 674f408c6d7b..a341a87967d7 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 22ff53073afe..60b6005eaf22 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index cf87171f170e..d153a4797bb2 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 1453de577a4f..f6b095f76000 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 824f69aca95a..db0288ad7723 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index d18f1cf29683..006c822999f3 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 5e8a10f9b88f..94a4a4bb19ce 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 1943c7481eb1..4d1e5984d10e 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index c0bef0e8deff..7ff72c9db6c1 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 8ac23a5e5486..3e119ab74570 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index da2413028e8a..a69fc80a23ae 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index da2a00a243ad..cbbb97a580db 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 2f2fcdce3b55..953329516cd3 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index ec8449f26b94..54950ae59ce5 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index ca7fb68853bf..3d5a011ff125 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index a1f7893297d5..0e36e0ae0d65 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index d232185a5739..e8513cb764c0 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 6673a89a58db..cdb431df9490 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 9c1abd8bf3cc..cebeaa107abe 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 533899b2e71e..32567691fb8f 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index ed65a65996cc..1db678e86408 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 030855bd94d5..8d3a70218ba1 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index c972141905c5..2358f12d0fa3 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 2d3ed20dcf61..f8ef5c1b51f7 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index f37872ab17b1..58a68a62d230 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index f31fec4a8fdc..85fb71df2520 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index a51bef87bec1..251756b8f3c8 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 73e4b96c4a75..d0aa4faa8e6a 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index a8b75ebf692d..3b248f48ad1e 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 48dcb9fd4115..2618f12fa0f7 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 9c30693aadd0..8d8e8a6bd111 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index f6317ed5743c..85f200363407 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 9f6bcaa12a5f..84c6cfacc7fa 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index a81ac43de89f..2e20d2d17b6b 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index f687d67c6871..794539022c18 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 27f9ef6c6368..cc32ca8386ce 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 51672870539a..7259e50da7b5 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index f2037a3c6ec6..5b6785a9850d 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 4d23844a8f31..cc5bdb251788 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index ee8f98ccdc60..7ad9b8f80bf4 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 319ab801f75a..664b505691e3 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 0d70c276017a..5e116e1bfe83 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 62edee15a333..65216d32ada8 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 919021aa440e..6b5b4380b2ec 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 1e3bd6a7ebe4..ba86f96c090f 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 5fb54ece679f..26249111d804 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 4900243ce2cf..3a09ce0a1a94 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 079ae91995c8..813e779b390f 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 7945118d29be..b8998cb57f4a 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index e44a7ede319c..106662a84087 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 6c9a1c2b9662..e6f88d90462a 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index d309a8b8405c..c76957dde3ba 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 054c0b5ce123..1d001f70c750 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 8b8ec11bf6fc..aa482fff77ca 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 82a92dbbbcdd..03f140ce971f 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 377800ca7750..9715258cde6c 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 0f0cf60f52d6..71024efbb9d6 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 15814e21b7b5..a38cda6bb282 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index f0f5fa33f8d1..528ad1b50f0c 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 8d4cb6b94892..426b55a9d298 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index b60f6caffca3..77b711915b61 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 210314da31d0..c824c5f1ea77 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 4fcd778712fc..fccfd9629624 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 909b13392279..4def428c1e11 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 4ba114da4ae6..874275364897 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 2ea5f75983af..02cc4b12c548 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 0ca302a5e897..73f2270c8621 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index efddfabfe3c0..7a6bb757f297 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 29ad21b3fdef..05883a6afded 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 2328368edbd5..0bafcbad30e9 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 3be31389a0b5..f1003ec902f3 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 8e851d0fb5f0..5f5c64ca0f1d 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index fcb927f162f4..d390fe188359 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index ee265f8ad401..04ac53b3395e 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 89d7545b96e8..ffe1b5a71197 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index b1be870fa8b0..3ad80dcc9127 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index b7f1a0e6dc45..9aace2765943 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index ccbbf8b5cdc5..a0e840bf80ad 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 33e22c425abc..e75655ac6df7 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 267589af6036..a71dbb90858d 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 0ed2a69b4453..1376e822f27c 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 4ffc5e4b4665..2b3dc5dc7b6d 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 0dc5ba9fcae7..cb1dd21ddd1b 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 49787738218b..3c7f5769401d 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 53c257a5c2fb..d1c50d46e9a3 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 586f265763a1..c997b318a68d 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 2dc164d3b468..c53bfe464f7e 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index bd41d66030cb..01f813dcd07e 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 67f8edd2fb74..2fd5afba7434 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 2eeb92bb92de..e80576f343a8 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index fd1d3ccb3803..5a2763745c49 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 3043ba2c515a..cf8cfab1905a 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index b2b86f91aec6..4462cc6d71da 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 2210732ca569..35dbfe2dfa85 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index c1ee325772b2..d1a47231f601 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index b938d731b31b..fb158dac5ff9 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 33755a83d4f6..e03de193856d 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 467dcf25f4d3..bb9fafa82d71 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 7506b912d7d3..2464dfab7163 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index aa48fb17f944..ff5fa1c0e4f8 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 6d227d83ae0f..c4a0fb706a5c 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 59b7aeab9b6b..ba47d9472356 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 38e3858d8642..83877e98d25e 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 90310981e91d..71b4c8895f99 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 4fbe40f80a08..fd7c302e9faf 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 45cde08182fa..0034f6f0e27c 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 354c0353db04..353141b3ad41 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 65210630606b..10fbd16c841f 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 8e9ad0dda50c..ab5634780cff 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index b3a632cef565..719564c38f4d 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 1daf694256c6..3b3637ff7f75 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index bdd15ba99fb6..33714cf994a1 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 26dcd5adf53a..3442db3cd299 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index f95680a0c3f2..03016f168653 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index a33178d02549..11a33df8b512 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index c6f64df11772..169d36be4402 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 7b603cc0d2f8..a296b46d1cfc 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 494f7537072f..5a7645b1f4d6 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index dcce15fb627e..452072594165 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 4aa1023a6dff..d7be6ddc44d3 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index c1bc11d4a154..f442c9e60003 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 3f71ec5e4b4b..6ed75d8621d2 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 885b47d7d5b4..42c1626df1e1 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index a6b12fea18d1..5e421f1d968a 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 52f8fd496379..4c484e04b06c 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index b7f5352f5935..557c0fffaec5 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 1dbe06aa87f9..c7f1f6a3bd08 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index b70ed61f4ed9..9586adbef8e1 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 0a7e56abf92a..cadffb9f3214 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 88a09eaa542c..fb508d9cafc1 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 0167cc0ed783..3d56b22b8f9a 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 979d2de14b71..dadb94c9c9c2 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index dd6ecdadbcea..83aae42b4332 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 2a6072b4270f..4b5a0fed0e64 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index a405d1aaf83d..93605fd1b551 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 69b16c655201..e5bd92045bb6 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 42068fb69d2c..8b53198d86c5 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 0b3216a5b07d..b9ad2a1f38f7 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 559e8516705f..cc272934f6f6 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 040d540b9d17..3925a0349464 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index e8b547c86fdd..78f09bc1b958 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index cf92d682840d..e1b89da09aa3 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index f977ee675d35..129bfe123117 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index ffcdcf4f874d..3a241fcc905a 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 42e1ffe6bfa7..d75fe24d6e36 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index bf006a6aff23..2fb6d7204c89 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 99253355a242..b0bb7ecc870d 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index f3a7ad9a2891..3d8ca6fbcc6f 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 45f2e7f2b382..ada39e41cc7f 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 3de5ea527455..60e49a68e698 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index af68d7760cb8..160417f36c5c 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index cd83cc476d34..4227a1fa1f97 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index e95fa0e47fea..68940336573d 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 5688708ba1be..43ae6ae34827 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index cdd7e597cbbf..21c19ed4236e 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index e61797c9a1f6..e0b82b139a63 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 2c9f44a8f3a1..ca57058d3be9 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 7e4e75dfa6ce..f5f3076f9430 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index f1d0970e2e12..699e915d5f77 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 2eef8d917f73..7fb1b7fa470f 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index dea7a4217fc5..3c5cca21bb6d 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 00efb1728a6d..9527cde45b30 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.29-SNAPSHOT + 2.15.29 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index d7684a4107a5..f4c7cfc275ed 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 088db3d252de..99128a8853e0 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 2e4b88659608..996828a085aa 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 7a39749ca0c5..970d42e18c07 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 63ce4f57b15f..cabb34f222d2 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 0896e27e3cb3..5040cd514a60 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index b90ded47b344..58e9cb3af8e0 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 832ea81499d7..453c3755fd86 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index e8263c6b4743..03172b49601c 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index d449c285904b..70308a9ed395 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index a8fa5bd28e42..7c7516d4a6fe 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index b5f5e8860c30..74a7b84520b3 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 72258342e2d9..0c0a2a4fc40c 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 282d3a1434b8..bda05ad3421d 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index dfaf4f2139ec..db7a0fcc5a4c 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 6927e98e1a4e..b46655a255ea 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 701d5ba730b9..c7755503987c 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index b628fa519a0c..cf98bef72c2d 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index e9fc607692cf..9a2fd687efbc 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 94dd68ff7725..c34dfdf19749 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index fd4a03b92bcb..5442c0f84b89 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index fb664d08d213..ccdbc5ed3dfb 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 579c68c3b4a3..2e7cb1cc9bf5 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index f4036ea2b115..d333b20b5242 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 9bb1ec9bd5bc..66f2d79f854f 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 04a81046ccee..e1b173057c52 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 7e1f14fa2216..e274d01a8261 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 0739eda2c180..68a37b6402f0 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index e3eeaa7db58c..67b1d4e334d3 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 05ebe9e8c859..5f3959a37246 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 5b8ca79152b2..15d3b98a3af9 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index c35ae214c8a7..24f01513258e 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 7d48ead01342..8049176a5253 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 3e863ecde9df..f16a16051675 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 461df17ddd51..0036d21ad1af 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 7c49158d2201..3544b3d73983 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index c04d41d7043b..b2892c16cd16 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index e68dd1809cf6..a99d026911c2 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index ff3a92d3ea2b..d27c11d8779d 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 9f3bc263f7b1..d849b67019d2 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 36f8932ab39c..778ed23dfcbf 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 1a0a0589320c..2dff806665af 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 00773845f5e9..9e254590b601 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 8fab87a23f37..dbcb22591f89 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 9938de7058a4..ad3e6db7cf0d 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 2f32aacb5617..cc4c0129a30a 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 720561a9b63c..bc6fb934d12d 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 4b9cd63a3eb6..81f5c2fa3820 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 83d9dbbc90bd..5b5f09265733 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index f0876b1929d6..0c187ac977dc 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 6b6c02447c68..01eb01259021 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index f642a368b8c4..b48ba9f54362 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index d957eafbd2c7..48bc26f5ba1a 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 97ed01e06a91..184ad9b09d74 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 378e2b8d902b..99a33c61141f 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index e7b92ffbb955..eb8dddd99e5f 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index dad2ab2b69d3..087fbc711cfc 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 6fea1740d23e..f0307d6b7c71 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 0b44adb271dd..d1b4c1102169 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index d2e6e184f490..a516c91aaea9 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 47c9ccdee993..f648db856a39 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index d8be5b7752ba..60f5a73e6555 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 8d5cede4965a..6f43059d4244 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 97c4e03cf2d8..7b113f297b69 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29-SNAPSHOT + 2.15.29 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 4c4d17ce25f3..4036aae7442b 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.15.29-SNAPSHOT + 2.15.29 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 09b9ab63c522..a6c098ec663a 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.15.29-SNAPSHOT + 2.15.29 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 0dc9624097cf..c3696b1ecb10 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.15.29-SNAPSHOT + 2.15.29 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 75170dc67b40..e63807c4b141 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.15.29-SNAPSHOT + 2.15.29 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 02d65cfa0667..95b1056ed5bb 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.15.29-SNAPSHOT + 2.15.29 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 4e83921faa69..084f93ec660f 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.29-SNAPSHOT + 2.15.29 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 6c21cade0e36..75efe0a02994 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.15.29-SNAPSHOT + 2.15.29 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 321e052fc8a5..a15b9629fb18 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.15.29-SNAPSHOT + 2.15.29 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index e93371880308..abc54a53b3f4 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.15.29-SNAPSHOT + 2.15.29 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index e459568b1451..87506639d7e5 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.15.29-SNAPSHOT + 2.15.29 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index a8ce59f42ba4..91ff42e853ad 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.29-SNAPSHOT + 2.15.29 4.0.0 From f700274aaf7bb2ee6251a1920c96bf9233dfa737 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 16 Nov 2020 19:55:43 +0000 Subject: [PATCH 204/339] Update to next snapshot version: 2.15.30-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/pom.xml | 2 +- services/servicecatalogappregistry/pom.xml | 2 +- services/servicediscovery/pom.xml | 2 +- services/servicequotas/pom.xml | 2 +- services/ses/pom.xml | 2 +- services/sesv2/pom.xml | 2 +- services/sfn/pom.xml | 2 +- services/shield/pom.xml | 2 +- services/signer/pom.xml | 2 +- services/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 282 files changed, 282 insertions(+), 282 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index c0ce30fcf262..12345618d248 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index fcc9d8e02f18..ff360ead8da5 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 1e746e71eeac..c9babea76f64 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.15.29 + 2.15.30-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 906c2a738e27..9c486fa139c7 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 6eaf194046f3..d00058c6c3f0 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.29 + 2.15.30-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index ac6757db2808..59701dbf97c7 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.29 + 2.15.30-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 57abfd7e774a..705d1c11ffa5 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.15.29 + 2.15.30-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 218a5dc63965..aff3214bdcba 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.29 + 2.15.30-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index d58e82626851..d8df10aa3715 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.15.29 + 2.15.30-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 62df11c756a9..3e06c7c2ae0a 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.29 + 2.15.30-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index dce08fbde81d..bb186c220c8a 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 7c1c5a03b6c3..8c7e12bdd90e 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index d2bb0f0e1bd7..e6d708713263 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.29 + 2.15.30-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 83172fe0c465..5885ac876836 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.29 + 2.15.30-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 5113890cc728..a65fb6666f6b 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index a14cebe3361c..72475178493e 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 9c06b6217eef..bf2772ca8425 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.29 + 2.15.30-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 05d6a4a623cb..f509891004c1 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.15.29 + 2.15.30-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 078257352f2d..341155f10a1c 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index abb28514a06c..35f7b82a4948 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.15.29 + 2.15.30-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 24c583d747b4..9776c35db258 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.15.29 + 2.15.30-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 7e99ce30949b..1a0a2421330a 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.15.29 + 2.15.30-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 31a893779405..7ca316142be3 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 865379854ca4..a31729679f46 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 81be56bedc29..6c382968df0a 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.29 + 2.15.30-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index ba85a5eb4760..ce1042728815 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.29 + 2.15.30-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 362453670e6b..b247e85ea2a1 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.15.29 + 2.15.30-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index bd0ab474ea16..8648aea9460f 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.15.29 + 2.15.30-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 10a044f6aea7..ad444d44f7cf 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.15.29 + 2.15.30-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 67ba5740a233..a3c5cca0f2fc 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.15.29 + 2.15.30-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 9327c4bfc775..b29ea82e7639 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 3c66d3e04e63..8b92e3a8c341 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.15.29 + 2.15.30-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index b4133d801dcf..918783aa1328 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.15.29 + 2.15.30-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 4d8dfa3fac9d..cdfde3d86b3f 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.29 + 2.15.30-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index c2f9aaf46f36..76c1ca8a5dc0 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.29 + 2.15.30-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 004483f77227..0d6fbe0c5f79 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.29 + 2.15.30-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 0cae87917cc0..86792634be41 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.15.29 + 2.15.30-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 58664d61cef3..bd4d3c240a94 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.29 + 2.15.30-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 76590645d8fe..293afe9612f1 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 52c3ebdffefc..ac424394da8c 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 56ab4ddab289..5d066a99d540 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 71fbbd475187..c04a3b619e39 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 8bb80db25f47..ef8721813961 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 5e69dc2843d7..fe58b1da3082 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 9fe3b0453c2c..b81377040d65 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index a341a87967d7..fed2d85404d9 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 60b6005eaf22..47b249645e36 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index d153a4797bb2..d404bfce59dc 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index f6b095f76000..005fe4e4fdd4 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index db0288ad7723..16293665a641 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 006c822999f3..12f2fd54c5fc 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 94a4a4bb19ce..0a58bdf1915b 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 4d1e5984d10e..20e453425e7d 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 7ff72c9db6c1..704f355506e8 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 3e119ab74570..dba21aa67ecc 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index a69fc80a23ae..68443931c3bd 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index cbbb97a580db..0520c8a806df 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 953329516cd3..484ef1967617 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 54950ae59ce5..dea59f4bc441 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 3d5a011ff125..2586006f8237 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 0e36e0ae0d65..3d6c62f654c1 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index e8513cb764c0..57721feea4ae 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index cdb431df9490..7fa37d6a3982 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index cebeaa107abe..69199d030f7f 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 32567691fb8f..46c3bfa2ac0f 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 1db678e86408..044f0d859fa2 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 8d3a70218ba1..b327218913b2 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 2358f12d0fa3..0d2e9c9b7fc5 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index f8ef5c1b51f7..5fd52a42913f 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 58a68a62d230..6d650e4168f9 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 85fb71df2520..d1f75c69d7d8 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 251756b8f3c8..5a9c0f9bb44c 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index d0aa4faa8e6a..9f139e0f5139 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 3b248f48ad1e..02e8528a3017 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 2618f12fa0f7..21bab830c303 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 8d8e8a6bd111..1833b33d6388 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 85f200363407..4b876f23a246 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 84c6cfacc7fa..b963ef7f8850 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 2e20d2d17b6b..bdb48ba807fb 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 794539022c18..b7307d686279 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index cc32ca8386ce..f113dbac7d79 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 7259e50da7b5..a209d11244e5 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 5b6785a9850d..e4175f37684e 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index cc5bdb251788..1ae45e1fffd9 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 7ad9b8f80bf4..9ae7e9413fdb 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 664b505691e3..80159b37cab5 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 5e116e1bfe83..a222929bc8bd 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 65216d32ada8..178a1ab038a2 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 6b5b4380b2ec..c92e9cb00efd 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index ba86f96c090f..d6acaea8f8f7 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 26249111d804..15be2f5839b7 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 3a09ce0a1a94..886cb63795c2 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 813e779b390f..4dcfccd2789b 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index b8998cb57f4a..ed9c8fe06bf5 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 106662a84087..3ed09acf70bf 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index e6f88d90462a..81542cc39fcc 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index c76957dde3ba..6bcd5d016442 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 1d001f70c750..493c809c6db5 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index aa482fff77ca..bdc056346ac5 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 03f140ce971f..42f56ff3dfa4 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 9715258cde6c..480ac106f42f 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 71024efbb9d6..699c3a031039 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index a38cda6bb282..89c25018adc2 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 528ad1b50f0c..63a9c6abf013 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 426b55a9d298..0aac83ddb4f0 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 77b711915b61..50f20849b509 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index c824c5f1ea77..71d7e4c93afb 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index fccfd9629624..056e0970e2fb 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 4def428c1e11..79419020f79f 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 874275364897..547d46248366 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 02cc4b12c548..a8ea4d75b17e 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 73f2270c8621..4253126bff14 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 7a6bb757f297..f5d49409efda 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 05883a6afded..ba592d6eb17a 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 0bafcbad30e9..2444a64ee50b 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index f1003ec902f3..dcd923ea9fbc 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 5f5c64ca0f1d..acbb2a854f4c 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index d390fe188359..7a6b4b8753cd 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 04ac53b3395e..9cc6f40210a8 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index ffe1b5a71197..1d8e65b14973 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 3ad80dcc9127..4d3a19bfd650 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 9aace2765943..3fef7c85039f 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index a0e840bf80ad..ea5546214e19 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index e75655ac6df7..af1d6959a0ae 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index a71dbb90858d..98e0724308cf 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 1376e822f27c..8aafccee94e1 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 2b3dc5dc7b6d..a33c353cbdfa 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index cb1dd21ddd1b..245607dce615 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 3c7f5769401d..412020573c76 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index d1c50d46e9a3..814b3465da4d 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index c997b318a68d..6e89fedc82f6 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index c53bfe464f7e..9a5da94eea3d 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 01f813dcd07e..4f4fe757cdd1 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 2fd5afba7434..c1c92582ea54 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index e80576f343a8..d2dbcbc0ab11 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 5a2763745c49..db1211ebf11e 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index cf8cfab1905a..ac44114ade5c 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 4462cc6d71da..b0a4a8b2f8bc 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 35dbfe2dfa85..27d798c04a82 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index d1a47231f601..9a128a648a16 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index fb158dac5ff9..85b236a8247c 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index e03de193856d..5cafa8043354 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index bb9fafa82d71..729873dd45ed 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 2464dfab7163..7c96c2a5fb90 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index ff5fa1c0e4f8..0837a897cb42 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index c4a0fb706a5c..5327a872be1f 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index ba47d9472356..fe762e1308b0 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 83877e98d25e..ab00bebdd7e2 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 71b4c8895f99..edde9d428fb1 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index fd7c302e9faf..61c5906ce5cb 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 0034f6f0e27c..d5dcb654220e 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 353141b3ad41..4711783e4857 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 10fbd16c841f..6ff926d222c2 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index ab5634780cff..dcdf37d49736 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 719564c38f4d..594113f3e045 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 3b3637ff7f75..624181a061ca 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 33714cf994a1..03d46ecf2b2c 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 3442db3cd299..aec3618ac966 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 03016f168653..09862f688e7f 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 11a33df8b512..98f1f52c4897 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 169d36be4402..4d017d208acb 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index a296b46d1cfc..8167c7a688a3 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 5a7645b1f4d6..186e6c50aa23 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 452072594165..2b199fea1841 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index d7be6ddc44d3..016a427ceb6a 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index f442c9e60003..ada422f57aee 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 6ed75d8621d2..57fb4dc84cae 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 42c1626df1e1..9aef1ff0688e 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 5e421f1d968a..8ea479a95393 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 4c484e04b06c..db396a89e9df 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 557c0fffaec5..c8bc28102127 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index c7f1f6a3bd08..b1bcd4f7bd61 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 9586adbef8e1..0fbceeceaced 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index cadffb9f3214..78a24e8e388e 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index fb508d9cafc1..c545408bb358 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 3d56b22b8f9a..9fbc6e99f9a8 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index dadb94c9c9c2..0f3a7e13c540 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 83aae42b4332..08f449a5685c 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 4b5a0fed0e64..bf7fea18f0a0 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 93605fd1b551..75d407e58d75 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index e5bd92045bb6..e089c4f972ae 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 8b53198d86c5..9564980149ce 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index b9ad2a1f38f7..a08660bcd152 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index cc272934f6f6..f673431f69d9 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 3925a0349464..718e1b1436ea 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 78f09bc1b958..b8a90450443c 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index e1b89da09aa3..c4d5270d1043 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 129bfe123117..9c00254813e9 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 3a241fcc905a..4fc30fa65ffd 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index d75fe24d6e36..34a295204ec0 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 2fb6d7204c89..9f9c8f74d0e6 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index b0bb7ecc870d..09359bbc73d4 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 3d8ca6fbcc6f..5a5ac6ceb022 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index ada39e41cc7f..1249d6f194cb 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 60e49a68e698..08b9156a575e 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 160417f36c5c..cad35cc22868 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 4227a1fa1f97..182444941be5 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 68940336573d..86b3bd2f0b05 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 43ae6ae34827..da1bdf485828 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 21c19ed4236e..ba67e019ee8e 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index e0b82b139a63..d95c4d438599 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index ca57058d3be9..e82c1a5ac882 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index f5f3076f9430..aba53c52c3bf 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 699e915d5f77..92a301fb7ffb 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 7fb1b7fa470f..7136b42ac9bb 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 3c5cca21bb6d..1f2676dea167 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 9527cde45b30..37b6b07a000e 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.29 + 2.15.30-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index f4c7cfc275ed..a0122e08daca 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 99128a8853e0..7b2c45238ad7 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 996828a085aa..5bfb74f6873e 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 970d42e18c07..085b7a37ea3b 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index cabb34f222d2..27326d4d9f3a 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 5040cd514a60..a6d3d64109f6 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 58e9cb3af8e0..8401d17311e4 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 453c3755fd86..53e7aeade24e 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 03172b49601c..06556c49e92c 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 70308a9ed395..91f2059fb533 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 7c7516d4a6fe..fa1b6c213d27 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 74a7b84520b3..1a8755c61b01 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 0c0a2a4fc40c..d1796318fc2b 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index bda05ad3421d..68891aa82964 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index db7a0fcc5a4c..f6729ae4d7c4 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index b46655a255ea..2855bd42b231 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index c7755503987c..ed2100d165d3 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index cf98bef72c2d..4b981bee54e5 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 9a2fd687efbc..ab206e1f9d39 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index c34dfdf19749..ad09987b07c7 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 5442c0f84b89..251fc69ca310 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index ccdbc5ed3dfb..db428386a64d 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 2e7cb1cc9bf5..fc51362ea9ec 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index d333b20b5242..b11d34cae623 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 66f2d79f854f..0f1ea873770f 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index e1b173057c52..3f03697683c4 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index e274d01a8261..1e7312aae70e 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 68a37b6402f0..3e11ccab7f60 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index 67b1d4e334d3..c992a97e895f 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 5f3959a37246..2dcacdaa52b3 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 15d3b98a3af9..f51a85172292 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 24f01513258e..ca20e3501a84 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 8049176a5253..38c63cca61f5 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index f16a16051675..238d3a054e77 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 0036d21ad1af..c1d244deb956 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 3544b3d73983..4025ffde563d 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index b2892c16cd16..c8a275b0615f 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index a99d026911c2..0e6d21606806 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index d27c11d8779d..e6de56c022b4 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index d849b67019d2..45cc8ac36a1b 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 778ed23dfcbf..e1fb88518da8 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 2dff806665af..7c8ef525a18d 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 9e254590b601..ab7f82a04f46 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index dbcb22591f89..1453485e26e9 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index ad3e6db7cf0d..d2c70ac8bafb 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index cc4c0129a30a..f93584e3bac4 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index bc6fb934d12d..7adabc791e82 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 81f5c2fa3820..2a96e23e446b 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 5b5f09265733..01717463c7a1 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 0c187ac977dc..43ec5e0954b7 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 01eb01259021..1e7df01597ff 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index b48ba9f54362..6936b6272f9f 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 48bc26f5ba1a..0251fa809e71 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 184ad9b09d74..8d32480fd8aa 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 99a33c61141f..b78e5e93dc28 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index eb8dddd99e5f..5f37e4e5720d 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 087fbc711cfc..918b963ff025 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index f0307d6b7c71..bf7d31afe411 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index d1b4c1102169..0a263da75bed 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index a516c91aaea9..b177d8e4e75e 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index f648db856a39..f9fe5dc6b7e0 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 60f5a73e6555..5f1ba74561fe 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 6f43059d4244..5db17b0464bf 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 7b113f297b69..d6202c1c9aee 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.29 + 2.15.30-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 4036aae7442b..6f6aaa5a0157 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.15.29 + 2.15.30-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index a6c098ec663a..d6a60251f33a 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.15.29 + 2.15.30-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index c3696b1ecb10..e2b7d1bbd053 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.15.29 + 2.15.30-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index e63807c4b141..f30f1ade2523 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.15.29 + 2.15.30-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 95b1056ed5bb..dfa0725d6374 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.15.29 + 2.15.30-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 084f93ec660f..f6df0b95a0c1 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.29 + 2.15.30-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 75efe0a02994..cc8d76b9c7cc 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.15.29 + 2.15.30-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index a15b9629fb18..cb5276b609d8 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.15.29 + 2.15.30-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index abc54a53b3f4..16b88458f1c9 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.15.29 + 2.15.30-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 87506639d7e5..0985ed5aa7e7 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.15.29 + 2.15.30-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 91ff42e853ad..5ca70a3ce703 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.29 + 2.15.30-SNAPSHOT 4.0.0 From 314244aa5f170290b6ff00c4725e0df7ae7acc91 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 17 Nov 2020 19:03:46 +0000 Subject: [PATCH 205/339] Amazon Chime Update: This release adds CRUD APIs for Amazon Chime SipMediaApplications and SipRules. It also adds the API for creating outbound PSTN calls for Amazon Chime meetings. --- .../feature-AmazonChime-445c0e2.json | 6 + .../codegen-resources/service-2.json | 869 +++++++++++++++++- 2 files changed, 851 insertions(+), 24 deletions(-) create mode 100644 .changes/next-release/feature-AmazonChime-445c0e2.json diff --git a/.changes/next-release/feature-AmazonChime-445c0e2.json b/.changes/next-release/feature-AmazonChime-445c0e2.json new file mode 100644 index 000000000000..b99dcb1eddf5 --- /dev/null +++ b/.changes/next-release/feature-AmazonChime-445c0e2.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Chime", + "contributor": "", + "description": "This release adds CRUD APIs for Amazon Chime SipMediaApplications and SipRules. It also adds the API for creating outbound PSTN calls for Amazon Chime meetings." +} diff --git a/services/chime/src/main/resources/codegen-resources/service-2.json b/services/chime/src/main/resources/codegen-resources/service-2.json index 683ba7a416e1..d13dd7357f4b 100644 --- a/services/chime/src/main/resources/codegen-resources/service-2.json +++ b/services/chime/src/main/resources/codegen-resources/service-2.json @@ -316,6 +316,26 @@ ], "documentation":"

Creates a new Amazon Chime SDK meeting in the specified media Region with no initial attendees. For more information about specifying media Regions, see Amazon Chime SDK Media Regions in the Amazon Chime Developer Guide. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.

" }, + "CreateMeetingDialOut":{ + "name":"CreateMeetingDialOut", + "http":{ + "method":"POST", + "requestUri":"/meetings/{meetingId}/dial-outs", + "responseCode":201 + }, + "input":{"shape":"CreateMeetingDialOutRequest"}, + "output":{"shape":"CreateMeetingDialOutResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ThrottledClientException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Uses the join token and call metadata in a meeting request (From number, To number, and so forth) to initiate an outbound call to a public switched telephone network (PSTN) and joins them into Chime meeting. Also ensures that the From number belongs to the customer.

To play welcome audio or implement an interactive voice response (IVR), use the CreateSipMediaApplicationCall API with the corresponding SIP media application ID.

" + }, "CreateMeetingWithAttendees":{ "name":"CreateMeetingWithAttendees", "http":{ @@ -420,6 +440,70 @@ ], "documentation":"

Adds a member to a chat room in an Amazon Chime Enterprise account. A member can be either a user or a bot. The member role designates whether the member is a chat room administrator or a general chat room member.

" }, + "CreateSipMediaApplication":{ + "name":"CreateSipMediaApplication", + "http":{ + "method":"POST", + "requestUri":"/sip-media-applications", + "responseCode":201 + }, + "input":{"shape":"CreateSipMediaApplicationRequest"}, + "output":{"shape":"CreateSipMediaApplicationResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"AccessDeniedException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ConflictException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Creates a SIP media application.

" + }, + "CreateSipMediaApplicationCall":{ + "name":"CreateSipMediaApplicationCall", + "http":{ + "method":"POST", + "requestUri":"/sip-media-applications/{sipMediaApplicationId}/calls", + "responseCode":201 + }, + "input":{"shape":"CreateSipMediaApplicationCallRequest"}, + "output":{"shape":"CreateSipMediaApplicationCallResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ThrottledClientException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Creates an outbound call to a phone number from the phone number specified in the request, and it invokes the endpoint of the specified sipMediaApplicationId.

" + }, + "CreateSipRule":{ + "name":"CreateSipRule", + "http":{ + "method":"POST", + "requestUri":"/sip-rules", + "responseCode":201 + }, + "input":{"shape":"CreateSipRuleRequest"}, + "output":{"shape":"CreateSipRuleResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"AccessDeniedException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ConflictException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Creates a SIP rule which can be used to run a SIP media application as a target for a specific trigger type.

" + }, "CreateUser":{ "name":"CreateUser", "http":{ @@ -636,6 +720,46 @@ ], "documentation":"

Removes a member from a chat room in an Amazon Chime Enterprise account.

" }, + "DeleteSipMediaApplication":{ + "name":"DeleteSipMediaApplication", + "http":{ + "method":"DELETE", + "requestUri":"/sip-media-applications/{sipMediaApplicationId}", + "responseCode":204 + }, + "input":{"shape":"DeleteSipMediaApplicationRequest"}, + "errors":[ + {"shape":"UnauthorizedClientException"}, + {"shape":"NotFoundException"}, + {"shape":"ForbiddenException"}, + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Deletes a SIP media application.

" + }, + "DeleteSipRule":{ + "name":"DeleteSipRule", + "http":{ + "method":"DELETE", + "requestUri":"/sip-rules/{sipRuleId}", + "responseCode":204 + }, + "input":{"shape":"DeleteSipRuleRequest"}, + "errors":[ + {"shape":"UnauthorizedClientException"}, + {"shape":"NotFoundException"}, + {"shape":"ForbiddenException"}, + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Deletes a SIP rule. You must disable a SIP rule before you can delete it.

" + }, "DeleteVoiceConnector":{ "name":"DeleteVoiceConnector", "http":{ @@ -1122,6 +1246,66 @@ ], "documentation":"

Retrieves room details, such as the room name, for a room in an Amazon Chime Enterprise account.

" }, + "GetSipMediaApplication":{ + "name":"GetSipMediaApplication", + "http":{ + "method":"GET", + "requestUri":"/sip-media-applications/{sipMediaApplicationId}", + "responseCode":200 + }, + "input":{"shape":"GetSipMediaApplicationRequest"}, + "output":{"shape":"GetSipMediaApplicationResponse"}, + "errors":[ + {"shape":"UnauthorizedClientException"}, + {"shape":"NotFoundException"}, + {"shape":"ForbiddenException"}, + {"shape":"BadRequestException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Retrieves the information for a SIP media application, including name, AWS Region, and endpoints.

" + }, + "GetSipMediaApplicationLoggingConfiguration":{ + "name":"GetSipMediaApplicationLoggingConfiguration", + "http":{ + "method":"GET", + "requestUri":"/sip-media-applications/{sipMediaApplicationId}/logging-configuration", + "responseCode":200 + }, + "input":{"shape":"GetSipMediaApplicationLoggingConfigurationRequest"}, + "output":{"shape":"GetSipMediaApplicationLoggingConfigurationResponse"}, + "errors":[ + {"shape":"UnauthorizedClientException"}, + {"shape":"NotFoundException"}, + {"shape":"ForbiddenException"}, + {"shape":"BadRequestException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Returns the logging configuration for the specified SIP media application.

" + }, + "GetSipRule":{ + "name":"GetSipRule", + "http":{ + "method":"GET", + "requestUri":"/sip-rules/{sipRuleId}", + "responseCode":200 + }, + "input":{"shape":"GetSipRuleRequest"}, + "output":{"shape":"GetSipRuleResponse"}, + "errors":[ + {"shape":"UnauthorizedClientException"}, + {"shape":"NotFoundException"}, + {"shape":"ForbiddenException"}, + {"shape":"BadRequestException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Retrieves the details of a SIP rule, such as the rule ID, name, triggers, and target endpoints.

" + }, "GetUser":{ "name":"GetUser", "http":{ @@ -1577,6 +1761,44 @@ ], "documentation":"

Lists the room details for the specified Amazon Chime Enterprise account. Optionally, filter the results by a member ID (user ID or bot ID) to see a list of rooms that the member belongs to.

" }, + "ListSipMediaApplications":{ + "name":"ListSipMediaApplications", + "http":{ + "method":"GET", + "requestUri":"/sip-media-applications", + "responseCode":200 + }, + "input":{"shape":"ListSipMediaApplicationsRequest"}, + "output":{"shape":"ListSipMediaApplicationsResponse"}, + "errors":[ + {"shape":"UnauthorizedClientException"}, + {"shape":"ForbiddenException"}, + {"shape":"BadRequestException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Lists the SIP media applications under the administrator's AWS account.

" + }, + "ListSipRules":{ + "name":"ListSipRules", + "http":{ + "method":"GET", + "requestUri":"/sip-rules", + "responseCode":200 + }, + "input":{"shape":"ListSipRulesRequest"}, + "output":{"shape":"ListSipRulesResponse"}, + "errors":[ + {"shape":"UnauthorizedClientException"}, + {"shape":"ForbiddenException"}, + {"shape":"BadRequestException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Lists the SIP rules under the administrator's AWS account.

" + }, "ListTagsForResource":{ "name":"ListTagsForResource", "http":{ @@ -1734,6 +1956,26 @@ ], "documentation":"

Puts retention settings for the specified Amazon Chime Enterprise account. We recommend using AWS CloudTrail to monitor usage of this API for your account. For more information, see Logging Amazon Chime API Calls with AWS CloudTrail in the Amazon Chime Administration Guide.

To turn off existing retention settings, remove the number of days from the corresponding RetentionDays field in the RetentionSettings object. For more information about retention settings, see Managing Chat Retention Policies in the Amazon Chime Administration Guide.

" }, + "PutSipMediaApplicationLoggingConfiguration":{ + "name":"PutSipMediaApplicationLoggingConfiguration", + "http":{ + "method":"PUT", + "requestUri":"/sip-media-applications/{sipMediaApplicationId}/logging-configuration", + "responseCode":200 + }, + "input":{"shape":"PutSipMediaApplicationLoggingConfigurationRequest"}, + "output":{"shape":"PutSipMediaApplicationLoggingConfigurationResponse"}, + "errors":[ + {"shape":"UnauthorizedClientException"}, + {"shape":"NotFoundException"}, + {"shape":"ForbiddenException"}, + {"shape":"BadRequestException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Updates the logging configuration for the specified SIP media application.

" + }, "PutVoiceConnectorEmergencyCallingConfiguration":{ "name":"PutVoiceConnectorEmergencyCallingConfiguration", "http":{ @@ -2285,6 +2527,49 @@ ], "documentation":"

Updates room membership details, such as the member role, for a room in an Amazon Chime Enterprise account. The member role designates whether the member is a chat room administrator or a general chat room member. The member role can be updated only for user IDs.

" }, + "UpdateSipMediaApplication":{ + "name":"UpdateSipMediaApplication", + "http":{ + "method":"PUT", + "requestUri":"/sip-media-applications/{sipMediaApplicationId}", + "responseCode":200 + }, + "input":{"shape":"UpdateSipMediaApplicationRequest"}, + "output":{"shape":"UpdateSipMediaApplicationResponse"}, + "errors":[ + {"shape":"UnauthorizedClientException"}, + {"shape":"NotFoundException"}, + {"shape":"ForbiddenException"}, + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Updates the details for the specified SIP media application.

" + }, + "UpdateSipRule":{ + "name":"UpdateSipRule", + "http":{ + "method":"PUT", + "requestUri":"/sip-rules/{sipRuleId}", + "responseCode":202 + }, + "input":{"shape":"UpdateSipRuleRequest"}, + "output":{"shape":"UpdateSipRuleResponse"}, + "errors":[ + {"shape":"UnauthorizedClientException"}, + {"shape":"NotFoundException"}, + {"shape":"ForbiddenException"}, + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Updates the details for the specified SIP rule.

" + }, "UpdateUser":{ "name":"UpdateUser", "http":{ @@ -2606,7 +2891,7 @@ "members":{ "ExternalUserId":{ "shape":"ExternalUserIdType", - "documentation":"

The Amazon Chime SDK external user ID. Links the attendee to an identity managed by a builder application.

" + "documentation":"

The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application. If you create an attendee with the same external user id, the service returns the existing record.

" }, "AttendeeId":{ "shape":"GuidString", @@ -2984,10 +3269,7 @@ "CreateAccountResponse":{ "type":"structure", "members":{ - "Account":{ - "shape":"Account", - "documentation":"

The Amazon Chime account details.

" - } + "Account":{"shape":"Account"} } }, "CreateAttendeeError":{ @@ -2995,7 +3277,7 @@ "members":{ "ExternalUserId":{ "shape":"ExternalUserIdType", - "documentation":"

The Amazon Chime SDK external user ID. Links the attendee to an identity managed by a builder application.

" + "documentation":"

The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application. If you create an attendee with the same external user id, the service returns the existing record.

" }, "ErrorCode":{ "shape":"String", @@ -3023,7 +3305,7 @@ }, "ExternalUserId":{ "shape":"ExternalUserIdType", - "documentation":"

The Amazon Chime SDK external user ID. Links the attendee to an identity managed by a builder application.

" + "documentation":"

The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application. If you create an attendee with the same external user id, the service returns the existing record.

" }, "Tags":{ "shape":"AttendeeTagList", @@ -3037,7 +3319,7 @@ "members":{ "ExternalUserId":{ "shape":"ExternalUserIdType", - "documentation":"

The Amazon Chime SDK external user ID. Links the attendee to an identity managed by a builder application.

" + "documentation":"

The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application. If you create an attendee with the same external user id, the service returns the existing record.

" }, "Tags":{ "shape":"AttendeeTagList", @@ -3091,6 +3373,44 @@ } } }, + "CreateMeetingDialOutRequest":{ + "type":"structure", + "required":[ + "FromPhoneNumber", + "ToPhoneNumber", + "JoinToken", + "MeetingId" + ], + "members":{ + "MeetingId":{ + "shape":"GuidString", + "documentation":"

The Amazon Chime SDK meeting ID.

Type: String

Pattern: [a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}

Required: No

", + "location":"uri", + "locationName":"meetingId" + }, + "FromPhoneNumber":{ + "shape":"E164PhoneNumber", + "documentation":"

Phone number used as the caller ID when the remote party receives a call.

" + }, + "ToPhoneNumber":{ + "shape":"E164PhoneNumber", + "documentation":"

Phone number called when inviting someone to a meeting.

" + }, + "JoinToken":{ + "shape":"JoinTokenString", + "documentation":"

Token used by the Amazon Chime SDK attendee. Call the CreateAttendee API to get a join token.

" + } + } + }, + "CreateMeetingDialOutResponse":{ + "type":"structure", + "members":{ + "TransactionId":{ + "shape":"GuidString", + "documentation":"

Unique ID that tracks API calls.

" + } + } + }, "CreateMeetingRequest":{ "type":"structure", "required":["ClientRequestToken"], @@ -3325,12 +3645,111 @@ } } }, - "CreateRoomResponse":{ + "CreateRoomResponse":{ + "type":"structure", + "members":{ + "Room":{ + "shape":"Room", + "documentation":"

The room details.

" + } + } + }, + "CreateSipMediaApplicationCallRequest":{ + "type":"structure", + "required":["SipMediaApplicationId"], + "members":{ + "FromPhoneNumber":{ + "shape":"E164PhoneNumber", + "documentation":"

The phone number that a user calls from.

" + }, + "ToPhoneNumber":{ + "shape":"E164PhoneNumber", + "documentation":"

The phone number that the user dials in order to connect to a meeting

" + }, + "SipMediaApplicationId":{ + "shape":"NonEmptyString", + "documentation":"

The ID of the SIP media application.

", + "location":"uri", + "locationName":"sipMediaApplicationId" + } + } + }, + "CreateSipMediaApplicationCallResponse":{ + "type":"structure", + "members":{ + "SipMediaApplicationCall":{ + "shape":"SipMediaApplicationCall", + "documentation":"

The actual call.

" + } + } + }, + "CreateSipMediaApplicationRequest":{ + "type":"structure", + "required":[ + "AwsRegion", + "Endpoints" + ], + "members":{ + "AwsRegion":{ + "shape":"String", + "documentation":"

AWS Region assigned to the SIP media application.

" + }, + "Name":{ + "shape":"SipMediaApplicationName", + "documentation":"

The SIP media application name.

" + }, + "Endpoints":{ + "shape":"SipMediaApplicationEndpointList", + "documentation":"

List of endpoints (Lambda Amazon Resource Names) specified for the SIP media application. Currently, only one endpoint is supported.

" + } + } + }, + "CreateSipMediaApplicationResponse":{ + "type":"structure", + "members":{ + "SipMediaApplication":{ + "shape":"SipMediaApplication", + "documentation":"

The Sip media application details.

" + } + } + }, + "CreateSipRuleRequest":{ + "type":"structure", + "required":[ + "Name", + "TriggerType", + "TriggerValue", + "TargetApplications" + ], + "members":{ + "Name":{ + "shape":"SipRuleName", + "documentation":"

The name of the SIP rule.

" + }, + "TriggerType":{ + "shape":"SipRuleTriggerType", + "documentation":"

The type of trigger whose value is assigned to the SIP rule in TriggerValue. Allowed trigger values are RequestUriHostname and ToPhoneNumber.

" + }, + "TriggerValue":{ + "shape":"NonEmptyString", + "documentation":"

If TriggerType is RequestUriHostname then the value can be the outbound host name of an Amazon Chime Voice Connector. If TriggerType is ToPhoneNumber then the value can be a customer-owned phone number in E164 format. SipRule is triggered if the SIP application requests a host name, or a If TriggerType is RequestUriHostname, then the value can be the outbound hostname of an Amazon Chime Voice Connector. If TriggerType is ToPhoneNumber, then the value can be a customer-owned phone number in E164 format. SipRule is triggered if the SIP application requests a host name, or a ToPhoneNumber value matches the incoming SIP request.

" + }, + "Disabled":{ + "shape":"NullableBoolean", + "documentation":"

Enables or disables a rule. You must disable rules before you can delete them.

" + }, + "TargetApplications":{ + "shape":"SipRuleTargetApplicationList", + "documentation":"

List of SIP media applications with priority and AWS Region. Only one SIP application per AWS Region can be used.

" + } + } + }, + "CreateSipRuleResponse":{ "type":"structure", "members":{ - "Room":{ - "shape":"Room", - "documentation":"

The room details.

" + "SipRule":{ + "shape":"SipRule", + "documentation":"

Returns the SIP rule information, including the rule ID, triggers, and target applications.

" } } }, @@ -3618,6 +4037,30 @@ } } }, + "DeleteSipMediaApplicationRequest":{ + "type":"structure", + "required":["SipMediaApplicationId"], + "members":{ + "SipMediaApplicationId":{ + "shape":"NonEmptyString", + "documentation":"

The SIP media application ID.

", + "location":"uri", + "locationName":"sipMediaApplicationId" + } + } + }, + "DeleteSipRuleRequest":{ + "type":"structure", + "required":["SipRuleId"], + "members":{ + "SipRuleId":{ + "shape":"NonEmptyString", + "documentation":"

The SIP rule ID.

", + "location":"uri", + "locationName":"sipRuleId" + } + } + }, "DeleteVoiceConnectorEmergencyCallingConfigurationRequest":{ "type":"structure", "required":["VoiceConnectorId"], @@ -3919,6 +4362,12 @@ "error":{"httpStatusCode":403}, "exception":true }, + "FunctionArn":{ + "type":"string", + "max":10000, + "pattern":"arn:(aws[a-zA-Z-]*)?:lambda:[a-z]{2}((-gov)|(-iso(b?)))?-[a-z]+-\\d{1}:\\d{12}:function:[a-zA-Z0-9-_]+(:(\\$LATEST|[a-zA-Z0-9-_]+))?", + "sensitive":true + }, "GeoMatchLevel":{ "type":"string", "enum":[ @@ -3959,10 +4408,7 @@ "GetAccountResponse":{ "type":"structure", "members":{ - "Account":{ - "shape":"Account", - "documentation":"

The Amazon Chime account details.

" - } + "Account":{"shape":"Account"} } }, "GetAccountSettingsRequest":{ @@ -4250,6 +4696,69 @@ } } }, + "GetSipMediaApplicationLoggingConfigurationRequest":{ + "type":"structure", + "required":["SipMediaApplicationId"], + "members":{ + "SipMediaApplicationId":{ + "shape":"NonEmptyString", + "documentation":"

The ID of the SIP media application.

", + "location":"uri", + "locationName":"sipMediaApplicationId" + } + } + }, + "GetSipMediaApplicationLoggingConfigurationResponse":{ + "type":"structure", + "members":{ + "SipMediaApplicationLoggingConfiguration":{ + "shape":"SipMediaApplicationLoggingConfiguration", + "documentation":"

The actual logging configuration.

" + } + } + }, + "GetSipMediaApplicationRequest":{ + "type":"structure", + "required":["SipMediaApplicationId"], + "members":{ + "SipMediaApplicationId":{ + "shape":"NonEmptyString", + "documentation":"

The SIP media application ID.

", + "location":"uri", + "locationName":"sipMediaApplicationId" + } + } + }, + "GetSipMediaApplicationResponse":{ + "type":"structure", + "members":{ + "SipMediaApplication":{ + "shape":"SipMediaApplication", + "documentation":"

The SIP media application details.

" + } + } + }, + "GetSipRuleRequest":{ + "type":"structure", + "required":["SipRuleId"], + "members":{ + "SipRuleId":{ + "shape":"NonEmptyString", + "documentation":"

The SIP rule ID.

", + "location":"uri", + "locationName":"sipRuleId" + } + } + }, + "GetSipRuleResponse":{ + "type":"structure", + "members":{ + "SipRule":{ + "shape":"SipRule", + "documentation":"

The SIP rule details.

" + } + } + }, "GetUserRequest":{ "type":"structure", "required":[ @@ -4578,6 +5087,7 @@ "type":"string", "max":2048, "min":2, + "pattern":"^[a-zA-Z0-9+/]+$", "sensitive":true }, "License":{ @@ -4627,11 +5137,11 @@ "members":{ "Accounts":{ "shape":"AccountList", - "documentation":"

List of Amazon Chime accounts and account details.

" + "documentation":"

The list of accounts.

" }, "NextToken":{ "shape":"String", - "documentation":"

The token to use to retrieve the next page of results.

" + "documentation":"

The account's user token.

" } } }, @@ -5006,6 +5516,72 @@ } } }, + "ListSipMediaApplicationsRequest":{ + "type":"structure", + "members":{ + "MaxResults":{ + "shape":"ResultMax", + "documentation":"

The maximum number of results to return in a single call. Defaults to 100.

", + "location":"querystring", + "locationName":"max-results" + }, + "NextToken":{ + "shape":"NextTokenString", + "documentation":"

The token to use to retrieve the next page of results.

", + "location":"querystring", + "locationName":"next-token" + } + } + }, + "ListSipMediaApplicationsResponse":{ + "type":"structure", + "members":{ + "SipMediaApplications":{ + "shape":"SipMediaApplicationList", + "documentation":"

List of SIP media applications and application details.

" + }, + "NextToken":{ + "shape":"NextTokenString", + "documentation":"

The token to use to retrieve the next page of results.

" + } + } + }, + "ListSipRulesRequest":{ + "type":"structure", + "members":{ + "SipMediaApplicationId":{ + "shape":"NonEmptyString", + "documentation":"

The SIP media application ID.

", + "location":"querystring", + "locationName":"sip-media-application" + }, + "MaxResults":{ + "shape":"ResultMax", + "documentation":"

The maximum number of results to return in a single call. Defaults to 100.

", + "location":"querystring", + "locationName":"max-results" + }, + "NextToken":{ + "shape":"NextTokenString", + "documentation":"

The token to use to retrieve the next page of results.

", + "location":"querystring", + "locationName":"next-token" + } + } + }, + "ListSipRulesResponse":{ + "type":"structure", + "members":{ + "SipRules":{ + "shape":"SipRuleList", + "documentation":"

List of SIP rules and rule details.

" + }, + "NextToken":{ + "shape":"NextTokenString", + "documentation":"

The token to use to retrieve the next page of results.

" + } + } + }, "ListTagsForResourceRequest":{ "type":"structure", "required":["ResourceARN"], @@ -5592,7 +6168,8 @@ "AccountId", "UserId", "VoiceConnectorId", - "VoiceConnectorGroupId" + "VoiceConnectorGroupId", + "SipRuleId" ] }, "PhoneNumberCapabilities":{ @@ -5904,6 +6481,31 @@ } } }, + "PutSipMediaApplicationLoggingConfigurationRequest":{ + "type":"structure", + "required":["SipMediaApplicationId"], + "members":{ + "SipMediaApplicationId":{ + "shape":"NonEmptyString", + "documentation":"

The ID of the specified SIP media application

", + "location":"uri", + "locationName":"sipMediaApplicationId" + }, + "SipMediaApplicationLoggingConfiguration":{ + "shape":"SipMediaApplicationLoggingConfiguration", + "documentation":"

The actual logging configuration.

" + } + } + }, + "PutSipMediaApplicationLoggingConfigurationResponse":{ + "type":"structure", + "members":{ + "SipMediaApplicationLoggingConfiguration":{ + "shape":"SipMediaApplicationLoggingConfiguration", + "documentation":"

The actual logging configuration.

" + } + } + }, "PutVoiceConnectorEmergencyCallingConfigurationRequest":{ "type":"structure", "required":[ @@ -6465,6 +7067,163 @@ "type":"list", "member":{"shape":"SigninDelegateGroup"} }, + "SipApplicationPriority":{ + "type":"integer", + "min":1 + }, + "SipMediaApplication":{ + "type":"structure", + "members":{ + "SipMediaApplicationId":{ + "shape":"NonEmptyString", + "documentation":"

The SIP media application ID.

" + }, + "AwsRegion":{ + "shape":"String", + "documentation":"

The AWS Region in which the SIP media application is created.

" + }, + "Name":{ + "shape":"SipMediaApplicationName", + "documentation":"

The name of the SIP media application.

" + }, + "Endpoints":{ + "shape":"SipMediaApplicationEndpointList", + "documentation":"

List of endpoints for SIP media application. Currently, only one endpoint per SIP media application is permitted.

" + }, + "CreatedTimestamp":{ + "shape":"Iso8601Timestamp", + "documentation":"

The SIP media application creation timestamp, in ISO 8601 format.

" + }, + "UpdatedTimestamp":{ + "shape":"Iso8601Timestamp", + "documentation":"

The SIP media application updated timestamp, in ISO 8601 format.

" + } + }, + "documentation":"

The SIP media application details, including name and endpoints. An AWS account can have multiple SIP media applications.

" + }, + "SipMediaApplicationCall":{ + "type":"structure", + "members":{ + "TransactionId":{ + "shape":"GuidString", + "documentation":"

The transaction ID of a call.

" + } + }, + "documentation":"

A Call instance for a SIP media application.

" + }, + "SipMediaApplicationEndpoint":{ + "type":"structure", + "members":{ + "LambdaArn":{ + "shape":"FunctionArn", + "documentation":"

Valid Amazon Resource Name (ARN) of the Lambda function of the same AWS Region where the SIP media application is created.

" + } + }, + "documentation":"

Endpoints to specify as part of a SIP media application.

" + }, + "SipMediaApplicationEndpointList":{ + "type":"list", + "member":{"shape":"SipMediaApplicationEndpoint"}, + "max":1, + "min":1 + }, + "SipMediaApplicationList":{ + "type":"list", + "member":{"shape":"SipMediaApplication"} + }, + "SipMediaApplicationLoggingConfiguration":{ + "type":"structure", + "members":{ + "EnableSipMediaApplicationMessageLogs":{ + "shape":"Boolean", + "documentation":"

Enables application message logs for the SIP media application.

" + } + }, + "documentation":"

Logging configuration of the SIP media application.

" + }, + "SipMediaApplicationName":{ + "type":"string", + "max":256, + "min":1 + }, + "SipRule":{ + "type":"structure", + "members":{ + "SipRuleId":{ + "shape":"NonEmptyString", + "documentation":"

The SIP rule ID.

" + }, + "Name":{ + "shape":"SipRuleName", + "documentation":"

The name of the SIP rule.

" + }, + "Disabled":{ + "shape":"Boolean", + "documentation":"

Indicates if the SIP rule is enabled or disabled. You must disable a rule before you can delete it.

" + }, + "TriggerType":{ + "shape":"SipRuleTriggerType", + "documentation":"

The type of trigger whose value is assigned to the SIP rule in TriggerValue.

" + }, + "TriggerValue":{ + "shape":"NonEmptyString", + "documentation":"

If TriggerType is RequestUriHostname, then the value can be the outbound host name of the Amazon Chime Voice Connector. If TriggerType is ToPhoneNumber, then the value can be a customer-owned phone number in E164 format. SipRule is triggered when a SIP rule requests host name or ToPhoneNumber matches in the incoming SIP request.

" + }, + "TargetApplications":{ + "shape":"SipRuleTargetApplicationList", + "documentation":"

List of SIP media applications with priority and AWS Region. You can only use one SIP application per AWS Region and priority combination.

" + }, + "CreatedTimestamp":{ + "shape":"Iso8601Timestamp", + "documentation":"

The SIP rule created timestamp, in ISO 8601 format.

" + }, + "UpdatedTimestamp":{ + "shape":"Iso8601Timestamp", + "documentation":"

The SIP rule updated timestamp, in ISO 8601 format.

" + } + }, + "documentation":"

The SIP rule details, including name, triggers, and target applications. An AWS account can have multiple SIP rules.

" + }, + "SipRuleList":{ + "type":"list", + "member":{"shape":"SipRule"} + }, + "SipRuleName":{ + "type":"string", + "max":256, + "min":1 + }, + "SipRuleTargetApplication":{ + "type":"structure", + "members":{ + "SipMediaApplicationId":{ + "shape":"NonEmptyString", + "documentation":"

The SIP media application ID.

" + }, + "Priority":{ + "shape":"SipApplicationPriority", + "documentation":"

Priority of the SIP media application in the target list.

" + }, + "AwsRegion":{ + "shape":"String", + "documentation":"

AWS Region of target application.

" + } + }, + "documentation":"

Target SIP media application along with other details like priority and AWS Region to be specified in the SIP rule. Only one SIP rule per AWS Region can be provided.

" + }, + "SipRuleTargetApplicationList":{ + "type":"list", + "member":{"shape":"SipRuleTargetApplication"}, + "max":25, + "min":1 + }, + "SipRuleTriggerType":{ + "type":"string", + "enum":[ + "ToPhoneNumber", + "RequestUriHostname" + ] + }, "StreamingConfiguration":{ "type":"structure", "required":["DataRetentionInHours"], @@ -6794,10 +7553,7 @@ "UpdateAccountResponse":{ "type":"structure", "members":{ - "Account":{ - "shape":"Account", - "documentation":"

The updated Amazon Chime account details.

" - } + "Account":{"shape":"Account"} } }, "UpdateAccountSettingsRequest":{ @@ -7051,6 +7807,71 @@ } } }, + "UpdateSipMediaApplicationRequest":{ + "type":"structure", + "required":["SipMediaApplicationId"], + "members":{ + "SipMediaApplicationId":{ + "shape":"NonEmptyString", + "documentation":"

The SIP media application ID.

", + "location":"uri", + "locationName":"sipMediaApplicationId" + }, + "Name":{ + "shape":"SipMediaApplicationName", + "documentation":"

The new name for the specified SIP media application.

" + }, + "Endpoints":{ + "shape":"SipMediaApplicationEndpointList", + "documentation":"

The new set of endpoints for the specified SIP media application.

" + } + } + }, + "UpdateSipMediaApplicationResponse":{ + "type":"structure", + "members":{ + "SipMediaApplication":{ + "shape":"SipMediaApplication", + "documentation":"

The updated SIP media application details.

" + } + } + }, + "UpdateSipRuleRequest":{ + "type":"structure", + "required":[ + "SipRuleId", + "Name" + ], + "members":{ + "SipRuleId":{ + "shape":"NonEmptyString", + "documentation":"

The SIP rule ID.

", + "location":"uri", + "locationName":"sipRuleId" + }, + "Name":{ + "shape":"SipRuleName", + "documentation":"

The new name for the specified SIP rule.

" + }, + "Disabled":{ + "shape":"NullableBoolean", + "documentation":"

The new value specified to indicate whether the rule is disabled.

" + }, + "TargetApplications":{ + "shape":"SipRuleTargetApplicationList", + "documentation":"

The new value of the list of target applications.

" + } + } + }, + "UpdateSipRuleResponse":{ + "type":"structure", + "members":{ + "SipRule":{ + "shape":"SipRule", + "documentation":"

Updated SIP rule details.

" + } + } + }, "UpdateUserRequest":{ "type":"structure", "required":[ @@ -7454,5 +8275,5 @@ "documentation":"

The Amazon Chime Voice Connector settings. Includes any Amazon S3 buckets designated for storing call detail records.

" } }, - "documentation":"

The Amazon Chime API (application programming interface) is designed for developers to perform key tasks, such as creating and managing Amazon Chime accounts, users, and Voice Connectors. This guide provides detailed information about the Amazon Chime API, including operations, types, inputs and outputs, and error codes. It also includes some server-side API actions to use with the Amazon Chime SDK. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.

You can use an AWS SDK, the AWS Command Line Interface (AWS CLI), or the REST API to make API calls. We recommend using an AWS SDK or the AWS CLI. Each API operation includes links to information about using it with a language-specific AWS SDK or the AWS CLI.

Using an AWS SDK

You don't need to write code to calculate a signature for request authentication. The SDK clients authenticate your requests by using access keys that you provide. For more information about AWS SDKs, see the AWS Developer Center.

Using the AWS CLI

Use your access keys with the AWS CLI to make API calls. For information about setting up the AWS CLI, see Installing the AWS Command Line Interface in the AWS Command Line Interface User Guide. For a list of available Amazon Chime commands, see the Amazon Chime commands in the AWS CLI Command Reference.

Using REST API

If you use REST to make API calls, you must authenticate your request by providing a signature. Amazon Chime supports signature version 4. For more information, see Signature Version 4 Signing Process in the Amazon Web Services General Reference.

When making REST API calls, use the service name chime and REST endpoint https://service.chime.aws.amazon.com.

Administrative permissions are controlled using AWS Identity and Access Management (IAM). For more information, see Identity and Access Management for Amazon Chime in the Amazon Chime Administration Guide.

" + "documentation":"

The Amazon Chime API (application programming interface) is designed for developers to perform key tasks, such as creating and managing Amazon Chime accounts, users, and Voice Connectors. This guide provides detailed information about the Amazon Chime API, including operations, types, inputs and outputs, and error codes. It also includes some server-side API actions to use with the Amazon Chime SDK. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.

You can use an AWS SDK, the AWS Command Line Interface (AWS CLI), or the REST API to make API calls. We recommend using an AWS SDK or the AWS CLI. Each API operation includes links to information about using it with a language-specific AWS SDK or the AWS CLI.

Using an AWS SDK

You don't need to write code to calculate a signature for request authentication. The SDK clients authenticate your requests by using access keys that you provide. For more information about AWS SDKs, see the AWS Developer Center.

Using the AWS CLI

Use your access keys with the AWS CLI to make API calls. For information about setting up the AWS CLI, see Installing the AWS Command Line Interface in the AWS Command Line Interface User Guide. For a list of available Amazon Chime commands, see the Amazon Chime commands in the AWS CLI Command Reference.

Using REST API

If you use REST to make API calls, you must authenticate your request by providing a signature. Amazon Chime supports Signature Version 4. For more information, see Signature Version 4 Signing Process in the Amazon Web Services General Reference.

When making REST API calls, use the service name chime and REST endpoint https://service.chime.aws.amazon.com.

Administrative permissions are controlled using AWS Identity and Access Management (IAM). For more information, see Identity and Access Management for Amazon Chime in the Amazon Chime Administration Guide.

" } From b137044008a4b7b165fd1bb6b4e25406643e86fa Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 17 Nov 2020 19:03:51 +0000 Subject: [PATCH 206/339] Firewall Management Service Update: Added Firewall Manager policy support for AWS Network Firewall resources. --- ...ure-FirewallManagementService-c10bd0c.json | 6 + .../codegen-resources/service-2.json | 224 +++++++++++++++++- 2 files changed, 217 insertions(+), 13 deletions(-) create mode 100644 .changes/next-release/feature-FirewallManagementService-c10bd0c.json diff --git a/.changes/next-release/feature-FirewallManagementService-c10bd0c.json b/.changes/next-release/feature-FirewallManagementService-c10bd0c.json new file mode 100644 index 000000000000..6a9a76055d99 --- /dev/null +++ b/.changes/next-release/feature-FirewallManagementService-c10bd0c.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Firewall Management Service", + "contributor": "", + "description": "Added Firewall Manager policy support for AWS Network Firewall resources." +} diff --git a/services/fms/src/main/resources/codegen-resources/service-2.json b/services/fms/src/main/resources/codegen-resources/service-2.json index f1630d447702..d24c217a1445 100644 --- a/services/fms/src/main/resources/codegen-resources/service-2.json +++ b/services/fms/src/main/resources/codegen-resources/service-2.json @@ -66,7 +66,9 @@ "errors":[ {"shape":"ResourceNotFoundException"}, {"shape":"InvalidOperationException"}, - {"shape":"InternalErrorException"} + {"shape":"InternalErrorException"}, + {"shape":"InvalidInputException"}, + {"shape":"LimitExceededException"} ], "documentation":"

Permanently deletes an AWS Firewall Manager policy.

" }, @@ -142,7 +144,7 @@ {"shape":"InvalidInputException"}, {"shape":"InvalidOperationException"} ], - "documentation":"

Returns detailed compliance information about the specified member account. Details include resources that are in and out of compliance with the specified policy. Resources are considered noncompliant for AWS WAF and Shield Advanced policies if the specified policy has not been applied to them. Resources are considered noncompliant for security group policies if they are in scope of the policy, they violate one or more of the policy rules, and remediation is disabled or not possible.

" + "documentation":"

Returns detailed compliance information about the specified member account. Details include resources that are in and out of compliance with the specified policy. Resources are considered noncompliant for AWS WAF and Shield Advanced policies if the specified policy has not been applied to them. Resources are considered noncompliant for security group policies if they are in scope of the policy, they violate one or more of the policy rules, and remediation is disabled or not possible. Resources are considered noncompliant for Network Firewall policies if a firewall is missing in the VPC, if the firewall endpoint isn't set up in an expected Availability Zone and subnet, if a subnet created by the Firewall Manager doesn't have the expected route table, and for modifications to a firewall policy that violate the Firewall Manager policy's rules.

" }, "GetNotificationChannel":{ "name":"GetNotificationChannel", @@ -340,7 +342,7 @@ {"shape":"InvalidOperationException"}, {"shape":"InternalErrorException"} ], - "documentation":"

Designates the IAM role and Amazon Simple Notification Service (SNS) topic that AWS Firewall Manager uses to record SNS logs.

" + "documentation":"

Designates the IAM role and Amazon Simple Notification Service (SNS) topic that AWS Firewall Manager uses to record SNS logs.

To perform this action outside of the console, you must configure the SNS topic to allow the Firewall Manager role AWSServiceRoleForFMS to publish SNS logs. For more information, see Firewall Manager required permissions for API actions in the AWS Firewall Manager Developer Guide.

" }, "PutPolicy":{ "name":"PutPolicy", @@ -358,7 +360,7 @@ {"shape":"InternalErrorException"}, {"shape":"InvalidTypeException"} ], - "documentation":"

Creates an AWS Firewall Manager policy.

Firewall Manager provides the following types of policies:

  • A Shield Advanced policy, which applies Shield Advanced protection to specified accounts and resources

  • An AWS WAF policy (type WAFV2), which defines rule groups to run first in the corresponding AWS WAF web ACL and rule groups to run last in the web ACL.

  • An AWS WAF Classic policy (type WAF), which defines a rule group.

  • A security group policy, which manages VPC security groups across your AWS organization.

Each policy is specific to one of the types. If you want to enforce more than one policy type across accounts, create multiple policies. You can create multiple policies for each type.

You must be subscribed to Shield Advanced to create a Shield Advanced policy. For more information about subscribing to Shield Advanced, see CreateSubscription.

" + "documentation":"

Creates an AWS Firewall Manager policy.

Firewall Manager provides the following types of policies:

  • An AWS WAF policy (type WAFV2), which defines rule groups to run first in the corresponding AWS WAF web ACL and rule groups to run last in the web ACL.

  • An AWS WAF Classic policy (type WAF), which defines a rule group.

  • A Shield Advanced policy, which applies Shield Advanced protection to specified accounts and resources.

  • A security group policy, which manages VPC security groups across your AWS organization.

  • An AWS Network Firewall policy, which provides firewall rules to filter network traffic in specified Amazon VPCs.

Each policy is specific to one of the types. If you want to enforce more than one policy type across accounts, create multiple policies. You can create multiple policies for each type.

You must be subscribed to Shield Advanced to create a Shield Advanced policy. For more information about subscribing to Shield Advanced, see CreateSubscription.

" }, "PutProtocolsList":{ "name":"PutProtocolsList", @@ -603,7 +605,7 @@ }, "ResourceType":{ "shape":"ResourceType", - "documentation":"

The resource type. This is in the format shown in the AWS Resource Types Reference. For example: AWS::ElasticLoadBalancingV2::LoadBalancer or AWS::CloudFront::Distribution.

" + "documentation":"

The resource type. This is in the format shown in the AWS Resource Types Reference. For example: AWS::ElasticLoadBalancingV2::LoadBalancer, AWS::CloudFront::Distribution, or AWS::NetworkFirewall::FirewallPolicy.

" } }, "documentation":"

Details of the resource that is not protected by the policy.

" @@ -686,7 +688,7 @@ "type":"string", "max":1024, "min":1, - "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$" + "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=,+\\-@]*)$" }, "DisassociateAdminAccountRequest":{ "type":"structure", @@ -929,7 +931,7 @@ }, "ResourceType":{ "shape":"ResourceType", - "documentation":"

The resource type. This is in the format shown in the AWS Resource Types Reference. Supported resource types are: AWS::EC2::Instance, AWS::EC2::NetworkInterface, or AWS::EC2::SecurityGroup.

" + "documentation":"

The resource type. This is in the format shown in the AWS Resource Types Reference. Supported resource types are: AWS::EC2::Instance, AWS::EC2::NetworkInterface, AWS::EC2::SecurityGroup, AWS::NetworkFirewall::FirewallPolicy, and AWS::EC2::Subnet.

" } } }, @@ -1177,6 +1179,136 @@ "type":"list", "member":{"shape":"AWSAccountId"} }, + "NetworkFirewallAction":{ + "type":"string", + "max":128, + "min":1, + "pattern":"^[a-zA-Z0-9]+$" + }, + "NetworkFirewallActionList":{ + "type":"list", + "member":{"shape":"NetworkFirewallAction"} + }, + "NetworkFirewallMissingExpectedRTViolation":{ + "type":"structure", + "members":{ + "ViolationTarget":{ + "shape":"ViolationTarget", + "documentation":"

The ID of the AWS Network Firewall or VPC resource that's in violation.

" + }, + "VPC":{ + "shape":"ResourceId", + "documentation":"

The resource ID of the VPC associated with a violating subnet.

" + }, + "AvailabilityZone":{ + "shape":"LengthBoundedString", + "documentation":"

The Availability Zone of a violating subnet.

" + }, + "CurrentRouteTable":{ + "shape":"ResourceId", + "documentation":"

The resource ID of the current route table that's associated with the subnet, if one is available.

" + }, + "ExpectedRouteTable":{ + "shape":"ResourceId", + "documentation":"

The resource ID of the route table that should be associated with the subnet.

" + } + }, + "documentation":"

Violation details for AWS Network Firewall for a subnet that's not associated to the expected Firewall Manager managed route table.

" + }, + "NetworkFirewallMissingFirewallViolation":{ + "type":"structure", + "members":{ + "ViolationTarget":{ + "shape":"ViolationTarget", + "documentation":"

The ID of the AWS Network Firewall or VPC resource that's in violation.

" + }, + "VPC":{ + "shape":"ResourceId", + "documentation":"

The resource ID of the VPC associated with a violating subnet.

" + }, + "AvailabilityZone":{ + "shape":"LengthBoundedString", + "documentation":"

The Availability Zone of a violating subnet.

" + }, + "TargetViolationReason":{ + "shape":"TargetViolationReason", + "documentation":"

The reason the resource has this violation, if one is available.

" + } + }, + "documentation":"

Violation details for AWS Network Firewall for a subnet that doesn't have a Firewall Manager managed firewall in its VPC.

" + }, + "NetworkFirewallMissingSubnetViolation":{ + "type":"structure", + "members":{ + "ViolationTarget":{ + "shape":"ViolationTarget", + "documentation":"

The ID of the AWS Network Firewall or VPC resource that's in violation.

" + }, + "VPC":{ + "shape":"ResourceId", + "documentation":"

The resource ID of the VPC associated with a violating subnet.

" + }, + "AvailabilityZone":{ + "shape":"LengthBoundedString", + "documentation":"

The Availability Zone of a violating subnet.

" + }, + "TargetViolationReason":{ + "shape":"TargetViolationReason", + "documentation":"

The reason the resource has this violation, if one is available.

" + } + }, + "documentation":"

Violation details for AWS Network Firewall for an Availability Zone that's missing the expected Firewall Manager managed subnet.

" + }, + "NetworkFirewallPolicyDescription":{ + "type":"structure", + "members":{ + "StatelessRuleGroups":{ + "shape":"StatelessRuleGroupList", + "documentation":"

The stateless rule groups that are used in the Network Firewall firewall policy.

" + }, + "StatelessDefaultActions":{ + "shape":"NetworkFirewallActionList", + "documentation":"

The actions to take on packets that don't match any of the stateless rule groups.

" + }, + "StatelessFragmentDefaultActions":{ + "shape":"NetworkFirewallActionList", + "documentation":"

The actions to take on packet fragments that don't match any of the stateless rule groups.

" + }, + "StatelessCustomActions":{ + "shape":"NetworkFirewallActionList", + "documentation":"

Names of custom actions that are available for use in the stateless default actions settings.

" + }, + "StatefulRuleGroups":{ + "shape":"StatefulRuleGroupList", + "documentation":"

The stateful rule groups that are used in the Network Firewall firewall policy.

" + } + }, + "documentation":"

The definition of the AWS Network Firewall firewall policy.

" + }, + "NetworkFirewallPolicyModifiedViolation":{ + "type":"structure", + "members":{ + "ViolationTarget":{ + "shape":"ViolationTarget", + "documentation":"

The ID of the AWS Network Firewall or VPC resource that's in violation.

" + }, + "CurrentPolicyDescription":{ + "shape":"NetworkFirewallPolicyDescription", + "documentation":"

The policy that's currently in use in the individual account.

" + }, + "ExpectedPolicyDescription":{ + "shape":"NetworkFirewallPolicyDescription", + "documentation":"

The policy that should be in use in the individual account in order to be compliant.

" + } + }, + "documentation":"

Violation details for AWS Network Firewall for a firewall policy that has a different NetworkFirewallPolicyDescription than is required by the Firewall Manager policy.

" + }, + "NetworkFirewallResourceName":{ + "type":"string", + "max":128, + "min":1, + "pattern":"^[a-zA-Z0-9-]+$" + }, "PaginationMaxResults":{ "type":"integer", "max":100, @@ -1234,7 +1366,7 @@ }, "ResourceType":{ "shape":"ResourceType", - "documentation":"

The type of resource protected by or in scope of the policy. This is in the format shown in the AWS Resource Types Reference. For AWS WAF and Shield Advanced, examples include AWS::ElasticLoadBalancingV2::LoadBalancer and AWS::CloudFront::Distribution. For a security group common policy, valid values are AWS::EC2::NetworkInterface and AWS::EC2::Instance. For a security group content audit policy, valid values are AWS::EC2::SecurityGroup, AWS::EC2::NetworkInterface, and AWS::EC2::Instance. For a security group usage audit policy, the value is AWS::EC2::SecurityGroup.

" + "documentation":"

The type of resource protected by or in scope of the policy. This is in the format shown in the AWS Resource Types Reference. For AWS WAF and Shield Advanced, examples include AWS::ElasticLoadBalancingV2::LoadBalancer and AWS::CloudFront::Distribution. For a security group common policy, valid values are AWS::EC2::NetworkInterface and AWS::EC2::Instance. For a security group content audit policy, valid values are AWS::EC2::SecurityGroup, AWS::EC2::NetworkInterface, and AWS::EC2::Instance. For a security group usage audit policy, the value is AWS::EC2::SecurityGroup. For an AWS Network Firewall policy, the value is AWS::EC2::VPC.

" }, "ResourceTypeList":{ "shape":"ResourceTypeList", @@ -1365,7 +1497,7 @@ }, "ResourceType":{ "shape":"ResourceType", - "documentation":"

The type of resource protected by or in scope of the policy. This is in the format shown in the AWS Resource Types Reference. For AWS WAF and Shield Advanced, examples include AWS::ElasticLoadBalancingV2::LoadBalancer and AWS::CloudFront::Distribution. For a security group common policy, valid values are AWS::EC2::NetworkInterface and AWS::EC2::Instance. For a security group content audit policy, valid values are AWS::EC2::SecurityGroup, AWS::EC2::NetworkInterface, and AWS::EC2::Instance. For a security group usage audit policy, the value is AWS::EC2::SecurityGroup.

" + "documentation":"

The type of resource protected by or in scope of the policy. This is in the format shown in the AWS Resource Types Reference. For AWS WAF and Shield Advanced, examples include AWS::ElasticLoadBalancingV2::LoadBalancer and AWS::CloudFront::Distribution. For a security group common policy, valid values are AWS::EC2::NetworkInterface and AWS::EC2::Instance. For a security group content audit policy, valid values are AWS::EC2::SecurityGroup, AWS::EC2::NetworkInterface, and AWS::EC2::Instance. For a security group usage audit policy, the value is AWS::EC2::SecurityGroup. For an AWS Network Firewall policy, the value is AWS::EC2::VPC.

" }, "SecurityServiceType":{ "shape":"SecurityServiceType", @@ -1681,6 +1813,22 @@ "AwsEc2InstanceViolation":{ "shape":"AwsEc2InstanceViolation", "documentation":"

Violation details for an EC2 instance.

" + }, + "NetworkFirewallMissingFirewallViolation":{ + "shape":"NetworkFirewallMissingFirewallViolation", + "documentation":"

Violation detail for an Network Firewall policy that indicates that a subnet has no Firewall Manager managed firewall in its VPC.

" + }, + "NetworkFirewallMissingSubnetViolation":{ + "shape":"NetworkFirewallMissingSubnetViolation", + "documentation":"

Violation detail for an Network Firewall policy that indicates that an Availability Zone is missing the expected Firewall Manager managed subnet.

" + }, + "NetworkFirewallMissingExpectedRTViolation":{ + "shape":"NetworkFirewallMissingExpectedRTViolation", + "documentation":"

Violation detail for an Network Firewall policy that indicates that a subnet is not associated with the expected Firewall Manager managed route table.

" + }, + "NetworkFirewallPolicyModifiedViolation":{ + "shape":"NetworkFirewallPolicyModifiedViolation", + "documentation":"

Violation detail for an Network Firewall policy that indicates that a firewall policy in an individual account has been modified in a way that makes it noncompliant. For example, the individual account owner might have deleted a rule group, changed the priority of a stateless rule group, or changed a policy default action.

" } }, "documentation":"

Violation detail based on resource type.

" @@ -1755,7 +1903,7 @@ }, "ManagedServiceData":{ "shape":"ManagedServiceData", - "documentation":"

Details about the service that are specific to the service type, in JSON format. For service type SHIELD_ADVANCED, this is an empty string.

  • Example: WAFV2

    \"ManagedServiceData\": \"{\\\"type\\\":\\\"WAFV2\\\",\\\"defaultAction\\\":{\\\"type\\\":\\\"ALLOW\\\"},\\\"preProcessRuleGroups\\\":[{\\\"managedRuleGroupIdentifier\\\":null,\\\"ruleGroupArn\\\":\\\"rulegrouparn\\\",\\\"overrideAction\\\":{\\\"type\\\":\\\"COUNT\\\"},\\\"excludeRules\\\":[{\\\"name\\\":\\\"EntityName\\\"}],\\\"ruleGroupType\\\":\\\"RuleGroup\\\"}],\\\"postProcessRuleGroups\\\":[{\\\"managedRuleGroupIdentifier\\\":{\\\"managedRuleGroupName\\\":\\\"AWSManagedRulesAdminProtectionRuleSet\\\",\\\"vendorName\\\":\\\"AWS\\\"},\\\"ruleGroupArn\\\":\\\"rulegrouparn\\\",\\\"overrideAction\\\":{\\\"type\\\":\\\"NONE\\\"},\\\"excludeRules\\\":[],\\\"ruleGroupType\\\":\\\"ManagedRuleGroup\\\"}],\\\"overrideCustomerWebACLAssociation\\\":false}\"

  • Example: WAF Classic

    \"ManagedServiceData\": \"{\\\"type\\\": \\\"WAF\\\", \\\"ruleGroups\\\": [{\\\"id\\\": \\\"12345678-1bcd-9012-efga-0987654321ab\\\", \\\"overrideAction\\\" : {\\\"type\\\": \\\"COUNT\\\"}}], \\\"defaultAction\\\": {\\\"type\\\": \\\"BLOCK\\\"}}

  • Example: SECURITY_GROUPS_COMMON

    \"SecurityServicePolicyData\":{\"Type\":\"SECURITY_GROUPS_COMMON\",\"ManagedServiceData\":\"{\\\"type\\\":\\\"SECURITY_GROUPS_COMMON\\\",\\\"revertManualSecurityGroupChanges\\\":false,\\\"exclusiveResourceSecurityGroupManagement\\\":false, \\\"applyToAllEC2InstanceENIs\\\":false,\\\"securityGroups\\\":[{\\\"id\\\":\\\" sg-000e55995d61a06bd\\\"}]}\"},\"RemediationEnabled\":false,\"ResourceType\":\"AWS::EC2::NetworkInterface\"}

  • Example: SECURITY_GROUPS_CONTENT_AUDIT

    \"SecurityServicePolicyData\":{\"Type\":\"SECURITY_GROUPS_CONTENT_AUDIT\",\"ManagedServiceData\":\"{\\\"type\\\":\\\"SECURITY_GROUPS_CONTENT_AUDIT\\\",\\\"securityGroups\\\":[{\\\"id\\\":\\\" sg-000e55995d61a06bd \\\"}],\\\"securityGroupAction\\\":{\\\"type\\\":\\\"ALLOW\\\"}}\"},\"RemediationEnabled\":false,\"ResourceType\":\"AWS::EC2::NetworkInterface\"}

    The security group action for content audit can be ALLOW or DENY. For ALLOW, all in-scope security group rules must be within the allowed range of the policy's security group rules. For DENY, all in-scope security group rules must not contain a value or a range that matches a rule value or range in the policy security group.

  • Example: SECURITY_GROUPS_USAGE_AUDIT

    \"SecurityServicePolicyData\":{\"Type\":\"SECURITY_GROUPS_USAGE_AUDIT\",\"ManagedServiceData\":\"{\\\"type\\\":\\\"SECURITY_GROUPS_USAGE_AUDIT\\\",\\\"deleteUnusedSecurityGroups\\\":true,\\\"coalesceRedundantSecurityGroups\\\":true}\"},\"RemediationEnabled\":false,\"Resou rceType\":\"AWS::EC2::SecurityGroup\"}

" + "documentation":"

Details about the service that are specific to the service type, in JSON format. For service type SHIELD_ADVANCED, this is an empty string.

  • Example: NETWORK_FIREWALL

    \"{\\\"type\\\":\\\"NETWORK_FIREWALL\\\",\\\"networkFirewallStatelessRuleGroupReferences\\\":[{\\\"resourceARN\\\":\\\"arn:aws:network-firewall:us-west-1:1234567891011:stateless-rulegroup/rulegroup2\\\",\\\"priority\\\":10}],\\\"networkFirewallStatelessDefaultActions\\\":[\\\"aws:pass\\\",\\\"custom1\\\"],\\\"networkFirewallStatelessFragmentDefaultActions\\\":[\\\"custom2\\\",\\\"aws:pass\\\"],\\\"networkFirewallStatelessCustomActions\\\":[{\\\"actionName\\\":\\\"custom1\\\",\\\"actionDefinition\\\":{\\\"publishMetricAction\\\":{\\\"dimensions\\\":[{\\\"value\\\":\\\"dimension1\\\"}]}}},{\\\"actionName\\\":\\\"custom2\\\",\\\"actionDefinition\\\":{\\\"publishMetricAction\\\":{\\\"dimensions\\\":[{\\\"value\\\":\\\"dimension2\\\"}]}}}],\\\"networkFirewallStatefulRuleGroupReferences\\\":[{\\\"resourceARN\\\":\\\"arn:aws:network-firewall:us-west-1:1234567891011:stateful-rulegroup/rulegroup1\\\"}],\\\"networkFirewallOrchestrationConfig\\\":{\\\"singleFirewallEndpointPerVPC\\\":true,\\\"allowedIPV4CidrList\\\":[\\\"10.24.34.0/28\\\"]} }\"

  • Example: WAFV2

    \"{\\\"type\\\":\\\"WAFV2\\\",\\\"preProcessRuleGroups\\\":[{\\\"ruleGroupArn\\\":null,\\\"overrideAction\\\":{\\\"type\\\":\\\"NONE\\\"},\\\"managedRuleGroupIdentifier\\\":{\\\"version\\\":null,\\\"vendorName\\\":\\\"AWS\\\",\\\"managedRuleGroupName\\\":\\\"AWSManagedRulesAmazonIpReputationList\\\"},\\\"ruleGroupType\\\":\\\"ManagedRuleGroup\\\",\\\"excludeRules\\\":[]}],\\\"postProcessRuleGroups\\\":[],\\\"defaultAction\\\":{\\\"type\\\":\\\"ALLOW\\\"},\\\"overrideCustomerWebACLAssociation\\\":false,\\\"loggingConfiguration\\\":{\\\"logDestinationConfigs\\\":[\\\"arn:aws:firehose:us-west-2:12345678912:deliverystream/aws-waf-logs-fms-admin-destination\\\"],\\\"redactedFields\\\":[{\\\"redactedFieldType\\\":\\\"SingleHeader\\\",\\\"redactedFieldValue\\\":\\\"Cookies\\\"},{\\\"redactedFieldType\\\":\\\"Method\\\"}]}}\"

    In the loggingConfiguration, you can specify one logDestinationConfigs, you can optionally provide up to 20 redactedFields, and the RedactedFieldType must be one of URI, QUERY_STRING, HEADER, or METHOD.

  • Example: WAF Classic

    \"{\\\"type\\\": \\\"WAF\\\", \\\"ruleGroups\\\": [{\\\"id\\\":\\\"12345678-1bcd-9012-efga-0987654321ab\\\", \\\"overrideAction\\\" : {\\\"type\\\": \\\"COUNT\\\"}}], \\\"defaultAction\\\": {\\\"type\\\": \\\"BLOCK\\\"}}\"

  • Example: SECURITY_GROUPS_COMMON

    \"{\\\"type\\\":\\\"SECURITY_GROUPS_COMMON\\\",\\\"revertManualSecurityGroupChanges\\\":false,\\\"exclusiveResourceSecurityGroupManagement\\\":false, \\\"applyToAllEC2InstanceENIs\\\":false,\\\"securityGroups\\\":[{\\\"id\\\":\\\" sg-000e55995d61a06bd\\\"}]}\"

  • Example: SECURITY_GROUPS_CONTENT_AUDIT

    \"{\\\"type\\\":\\\"SECURITY_GROUPS_CONTENT_AUDIT\\\",\\\"securityGroups\\\":[{\\\"id\\\":\\\"sg-000e55995d61a06bd\\\"}],\\\"securityGroupAction\\\":{\\\"type\\\":\\\"ALLOW\\\"}}\"

    The security group action for content audit can be ALLOW or DENY. For ALLOW, all in-scope security group rules must be within the allowed range of the policy's security group rules. For DENY, all in-scope security group rules must not contain a value or a range that matches a rule value or range in the policy security group.

  • Example: SECURITY_GROUPS_USAGE_AUDIT

    \"{\\\"type\\\":\\\"SECURITY_GROUPS_USAGE_AUDIT\\\",\\\"deleteUnusedSecurityGroups\\\":true,\\\"coalesceRedundantSecurityGroups\\\":true}\"

" } }, "documentation":"

Details about the security service that is being used to protect the resources.

" @@ -1768,9 +1916,55 @@ "SHIELD_ADVANCED", "SECURITY_GROUPS_COMMON", "SECURITY_GROUPS_CONTENT_AUDIT", - "SECURITY_GROUPS_USAGE_AUDIT" + "SECURITY_GROUPS_USAGE_AUDIT", + "NETWORK_FIREWALL" ] }, + "StatefulRuleGroup":{ + "type":"structure", + "members":{ + "RuleGroupName":{ + "shape":"NetworkFirewallResourceName", + "documentation":"

The name of the rule group.

" + }, + "ResourceId":{ + "shape":"ResourceId", + "documentation":"

The resource ID of the rule group.

" + } + }, + "documentation":"

AWS Network Firewall stateful rule group, used in a NetworkFirewallPolicyDescription.

" + }, + "StatefulRuleGroupList":{ + "type":"list", + "member":{"shape":"StatefulRuleGroup"} + }, + "StatelessRuleGroup":{ + "type":"structure", + "members":{ + "RuleGroupName":{ + "shape":"NetworkFirewallResourceName", + "documentation":"

The name of the rule group.

" + }, + "ResourceId":{ + "shape":"ResourceId", + "documentation":"

The resource ID of the rule group.

" + }, + "Priority":{ + "shape":"StatelessRuleGroupPriority", + "documentation":"

The priority of the rule group. AWS Network Firewall evaluates the stateless rule groups in a firewall policy starting from the lowest priority setting.

" + } + }, + "documentation":"

AWS Network Firewall stateless rule group, used in a NetworkFirewallPolicyDescription.

" + }, + "StatelessRuleGroupList":{ + "type":"list", + "member":{"shape":"StatelessRuleGroup"} + }, + "StatelessRuleGroupPriority":{ + "type":"integer", + "max":65535, + "min":1 + }, "Tag":{ "type":"structure", "required":[ @@ -1926,7 +2120,11 @@ "RESOURCE_MISSING_SECURITY_GROUP", "RESOURCE_VIOLATES_AUDIT_SECURITY_GROUP", "SECURITY_GROUP_UNUSED", - "SECURITY_GROUP_REDUNDANT" + "SECURITY_GROUP_REDUNDANT", + "MISSING_FIREWALL", + "MISSING_FIREWALL_SUBNET_IN_AZ", + "MISSING_EXPECTED_ROUTE_TABLE", + "NETWORK_FIREWALL_POLICY_MODIFIED" ] }, "ViolationTarget":{ @@ -1936,5 +2134,5 @@ "pattern":".*" } }, - "documentation":"AWS Firewall Manager

This is the AWS Firewall Manager API Reference. This guide is for developers who need detailed information about the AWS Firewall Manager API actions, data types, and errors. For detailed information about AWS Firewall Manager features, see the AWS Firewall Manager Developer Guide.

" + "documentation":"AWS Firewall Manager

This is the AWS Firewall Manager API Reference. This guide is for developers who need detailed information about the AWS Firewall Manager API actions, data types, and errors. For detailed information about AWS Firewall Manager features, see the AWS Firewall Manager Developer Guide.

Some API actions require explicit resource permissions. For information, see the developer guide topic Firewall Manager required permissions for API actions.

" } From ff696a38426377c9d998c37da7782633c9968158 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 17 Nov 2020 19:03:52 +0000 Subject: [PATCH 207/339] Amazon Macie 2 Update: The Amazon Macie API now has a lastRunErrorStatus property to indicate if account- or bucket-level errors occurred during the run of a one-time classification job or the latest run of a recurring job. --- .../feature-AmazonMacie2-08a15b1.json | 6 +++ .../codegen-resources/service-2.json | 47 +++++++++++++++---- 2 files changed, 44 insertions(+), 9 deletions(-) create mode 100644 .changes/next-release/feature-AmazonMacie2-08a15b1.json diff --git a/.changes/next-release/feature-AmazonMacie2-08a15b1.json b/.changes/next-release/feature-AmazonMacie2-08a15b1.json new file mode 100644 index 000000000000..a4f7a44a610f --- /dev/null +++ b/.changes/next-release/feature-AmazonMacie2-08a15b1.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Macie 2", + "contributor": "", + "description": "The Amazon Macie API now has a lastRunErrorStatus property to indicate if account- or bucket-level errors occurred during the run of a one-time classification job or the latest run of a recurring job." +} diff --git a/services/macie2/src/main/resources/codegen-resources/service-2.json b/services/macie2/src/main/resources/codegen-resources/service-2.json index 145d3b0ad1c9..4d398ace3486 100644 --- a/services/macie2/src/main/resources/codegen-resources/service-2.json +++ b/services/macie2/src/main/resources/codegen-resources/service-2.json @@ -2937,7 +2937,7 @@ "additionalOccurrences": { "shape": "__boolean", "locationName": "additionalOccurrences", - "documentation": "

Specifies whether Amazon Macie detected additional occurrences of sensitive data in the S3 object. A finding includes location data for a maximum of 15 occurrences of sensitive data.

This value can help you to determine whether to investigate additional occurrences of sensitive data in an object. You can do this by referring to the corresponding sensitive data discovery result for the finding (ClassificationDetails.detailedResultsLocation).

" + "documentation": "

Specifies whether Amazon Macie detected additional occurrences of sensitive data in the S3 object. A finding includes location data for a maximum of 15 occurrences of sensitive data.

This value can help you determine whether to investigate additional occurrences of sensitive data in an object. You can do this by referring to the corresponding sensitive data discovery result for the finding (ClassificationDetails.detailedResultsLocation).

" }, "customDataIdentifiers": { "shape": "CustomDataIdentifiers", @@ -2973,7 +2973,7 @@ "code": { "shape": "__string", "locationName": "code", - "documentation": "

The status of the finding. Possible values are:

  • COMPLETE - Amazon Macie successfully completed its analysis of the object that the finding applies to.

  • PARTIAL - Macie was able to analyze only a subset of the data in the object that the finding applies to. For example, the object is a compressed or archive file that contains files in an unsupported format.

  • SKIPPED - Macie wasn't able to analyze the object that the finding applies to. For example, the object is a malformed file or a file that uses an unsupported format.

" + "documentation": "

The status of the finding. Possible values are:

  • COMPLETE - Amazon Macie successfully completed its analysis of the object that the finding applies to.

  • PARTIAL - Macie analyzed only a subset of the data in the object that the finding applies to. For example, the object is an archive file that contains files in an unsupported format.

  • SKIPPED - Macie wasn't able to analyze the object that the finding applies to. For example, the object is a malformed file or a file that uses an unsupported format.

" }, "reason": { "shape": "__string", @@ -3288,7 +3288,7 @@ "eqExactMatch": { "shape": "__listOf__string", "locationName": "eqExactMatch", - "documentation": "

A condition that requires an array field of a finding to exactly match the specified property values. You can use this operator with the following properties: customDataIdentifiers.detections.arn, customDataIdentifiers.detections.name, resourcesAffected.s3Bucket.tags.key, resourcesAffected.s3Bucket.tags.value, resourcesAffected.s3Object.tags.key, resourcesAffected.s3Object.tags.value, sensitiveData.category, and sensitiveData.detections.type.

" + "documentation": "

A condition that requires an array field on a finding to exactly match the specified property values. You can use this operator with the following properties: customDataIdentifiers.detections.arn, customDataIdentifiers.detections.name, resourcesAffected.s3Bucket.tags.key, resourcesAffected.s3Bucket.tags.value, resourcesAffected.s3Object.tags.key, resourcesAffected.s3Object.tags.value, sensitiveData.category, and sensitiveData.detections.type.

" }, "gt": { "shape": "__long", @@ -3653,6 +3653,11 @@ "locationName": "jobType", "documentation": "

The schedule for running the job. Possible values are:

  • ONE_TIME - The job runs only once.

  • SCHEDULED - The job runs on a daily, weekly, or monthly basis. The scheduleFrequency property indicates the recurrence pattern for the job.

" }, + "lastRunErrorStatus": { + "shape": "LastRunErrorStatus", + "locationName": "lastRunErrorStatus", + "documentation": "

Specifies whether any account- or bucket-level access errors occurred when the job ran. For a recurring job, this value indicates the error status of the job's most recent run.

" + }, "lastRunTime": { "shape": "__timestampIso8601", "locationName": "lastRunTime", @@ -3913,7 +3918,7 @@ "count": { "shape": "__long", "locationName": "count", - "documentation": "

The total number of occurrences of the finding.

" + "documentation": "

The total number of occurrences of the finding. For sensitive data findings, this value is always 1. All sensitive data findings are considered new (unique) because they derive from individual classification jobs.

" }, "createdAt": { "shape": "__timestampIso8601", @@ -4890,6 +4895,11 @@ "locationName": "jobType", "documentation": "

The schedule for running the job. Possible values are:

  • ONE_TIME - The job runs only once.

  • SCHEDULED - The job runs on a daily, weekly, or monthly basis.

" }, + "lastRunErrorStatus": { + "shape": "LastRunErrorStatus", + "locationName": "lastRunErrorStatus", + "documentation": "

Specifies whether any account- or bucket-level access errors occurred when the job ran. For a recurring job, this value indicates the error status of the job's most recent run.

" + }, "name": { "shape": "__string", "locationName": "name", @@ -4922,7 +4932,7 @@ "value": { "shape": "__string", "locationName": "value", - "documentation": "

One part of a key-value pair that comprises a tag. A tag value acts as a descriptor for a tag key. A tag value can be empty or null.

" + "documentation": "

One part of a key-value pair that comprises a tag. A tag value acts as a descriptor for a tag key. A tag value can be an empty string.

" } }, "documentation": "

Provides information about the tags that are associated with an S3 bucket or object. Each tag consists of a required tag key and an associated tag value.

" @@ -4934,6 +4944,25 @@ "shape": "KeyValuePair" } }, + "LastRunErrorStatus": { + "type": "structure", + "members": { + "code": { + "shape": "LastRunErrorStatusCode", + "locationName": "code", + "documentation": "

Specifies whether any account- or bucket-level access errors occurred when the job ran. For a recurring job, this value indicates the error status of the job's most recent run. Possible values are:

  • ERROR - One or more errors occurred. Amazon Macie didn't process all the data specified for the job.

  • NONE - No errors occurred. Macie processed all the data specified for the job.

" + } + }, + "documentation": "

Specifies whether any account- or bucket-level access errors occurred when a classification job ran. For example, the job is configured to analyze data for a member account that was suspended, or the job is configured to analyze an S3 bucket that Amazon Macie isn't allowed to access.

" + }, + "LastRunErrorStatusCode": { + "type": "string", + "documentation": "

Specifies whether any account- or bucket-level access errors occurred during the run of a one-time classification job ran or the most recent run of a recurring classification job. Possible values are:

", + "enum": [ + "NONE", + "ERROR" + ] + }, "ListClassificationJobsRequest": { "type": "structure", "members": { @@ -5408,7 +5437,7 @@ "offsetRanges": { "shape": "Ranges", "locationName": "offsetRanges", - "documentation": "

An array of objects, one for each occurrence of sensitive data in a binary text file. Each object specifies the position of the data relative to the beginning of the file.

This value is typically null. For binary text files, Macie adds location data to a lineRanges.Range or Page object, depending on the file type.

" + "documentation": "

An array of objects, one for each occurrence of sensitive data in a binary text file. Each object specifies the position of the data relative to the beginning of the file.

This value is typically null. For binary text files, Amazon Macie adds location data to a lineRanges.Range or Page object, depending on the file type.

" }, "pages": { "shape": "Pages", @@ -5418,7 +5447,7 @@ "records": { "shape": "Records", "locationName": "records", - "documentation": "

An array of objects, one for each occurrence of sensitive data in an Apache Avro object container or Apache Parquet file. Each object specifies the field or record that contains the data. This value is null for all other types of files.

" + "documentation": "

An array of objects, one for each occurrence of sensitive data in an Apache Avro object container or Apache Parquet file. Each object specifies the record index and the path to the field in the record that contains the data. This value is null for all other types of files.

" } }, "documentation": "

Provides the location of 1-15 occurrences of sensitive data that was detected by managed data identifiers or a custom data identifier and produced a sensitive data finding.

" @@ -5531,7 +5560,7 @@ "jsonPath": { "shape": "__string", "locationName": "jsonPath", - "documentation": "

The path, as a JSONPath expression, to the field (in an Apache Avro object container) or record (in an Apache Parquet file) that contains the data.

If the name of an element exceeds 20 characters, Amazon Macie truncates the name by removing characters from the beginning of the name. If the resulting full path exceeds 250 characters, Macie also truncates the path, starting with the first element in the path, until the path contains 250 or fewer characters.

" + "documentation": "

The path, as a JSONPath expression, to the field in the record that contains the data.

If the name of an element exceeds 20 characters, Amazon Macie truncates the name by removing characters from the beginning of the name. If the resulting full path exceeds 250 characters, Macie also truncates the path, starting with the first element in the path, until the path contains 250 or fewer characters.

" }, "recordIndex": { "shape": "__long", @@ -5836,7 +5865,7 @@ "category": { "shape": "SensitiveDataItemCategory", "locationName": "category", - "documentation": "

The category of sensitive data that was detected. For example: FINANCIAL_INFORMATION, for financial information such as credit card numbers; PERSONAL_INFORMATION, for personally identifiable information, such as full names and mailing addresses, or personal health information; or, CUSTOM_IDENTIFIER, for data that was detected by a custom data identifier.

" + "documentation": "

The category of sensitive data that was detected. For example: CREDENTIALS, for credentials data such as private keys or AWS secret keys; FINANCIAL_INFORMATION, for financial data such as credit card numbers; or, PERSONAL_INFORMATION, for personal health information, such as health insurance identification numbers, or personally identifiable information, such as driver's license identification numbers.

" }, "detections": { "shape": "DefaultDetections", From 444d955051ce5204cea84ee289593e0e206a0fd4 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 17 Nov 2020 19:04:02 +0000 Subject: [PATCH 208/339] Amazon Connect Service Update: This release adds support for user hierarchy group and user hierarchy structure. For details, see the Release Notes in the Amazon Connect Administrator Guide. --- .../feature-AmazonConnectService-291654d.json | 6 + .../codegen-resources/service-2.json | 242 +++++++++++++++++- 2 files changed, 246 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AmazonConnectService-291654d.json diff --git a/.changes/next-release/feature-AmazonConnectService-291654d.json b/.changes/next-release/feature-AmazonConnectService-291654d.json new file mode 100644 index 000000000000..0cf7f6fc4ef0 --- /dev/null +++ b/.changes/next-release/feature-AmazonConnectService-291654d.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Connect Service", + "contributor": "", + "description": "This release adds support for user hierarchy group and user hierarchy structure. For details, see the Release Notes in the Amazon Connect Administrator Guide." +} diff --git a/services/connect/src/main/resources/codegen-resources/service-2.json b/services/connect/src/main/resources/codegen-resources/service-2.json index 6327578e17fd..59f56b0a42f2 100644 --- a/services/connect/src/main/resources/codegen-resources/service-2.json +++ b/services/connect/src/main/resources/codegen-resources/service-2.json @@ -87,6 +87,25 @@ ], "documentation":"

Creates a user account for the specified Amazon Connect instance.

For information about how to create user accounts using the Amazon Connect console, see Add Users in the Amazon Connect Administrator Guide.

" }, + "CreateUserHierarchyGroup":{ + "name":"CreateUserHierarchyGroup", + "http":{ + "method":"PUT", + "requestUri":"/user-hierarchy-groups/{InstanceId}" + }, + "input":{"shape":"CreateUserHierarchyGroupRequest"}, + "output":{"shape":"CreateUserHierarchyGroupResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"DuplicateResourceException"}, + {"shape":"LimitExceededException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServiceException"} + ], + "documentation":"

Creates a new user hierarchy group.

" + }, "DeleteUser":{ "name":"DeleteUser", "http":{ @@ -103,6 +122,23 @@ ], "documentation":"

Deletes a user account from the specified Amazon Connect instance.

For information about what happens to a user's data when their account is deleted, see Delete Users from Your Amazon Connect Instance in the Amazon Connect Administrator Guide.

" }, + "DeleteUserHierarchyGroup":{ + "name":"DeleteUserHierarchyGroup", + "http":{ + "method":"DELETE", + "requestUri":"/user-hierarchy-groups/{InstanceId}/{HierarchyGroupId}" + }, + "input":{"shape":"DeleteUserHierarchyGroupRequest"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ResourceInUseException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServiceException"} + ], + "documentation":"

Deletes an existing user hierarchy group. It must not be associated with any agents or have any active child groups.

" + }, "DescribeContactFlow":{ "name":"DescribeContactFlow", "http":{ @@ -619,7 +655,7 @@ {"shape":"ResourceNotFoundException"}, {"shape":"InternalServiceException"} ], - "documentation":"

Creates or updates the contact attributes associated with the specified contact.

You can add or update attributes for both ongoing and completed contacts. For example, you can update the customer's name or the reason the customer called while the call is active, or add notes about steps that the agent took during the call that are displayed to the next agent that takes the call. You can also update attributes for a contact using data from your CRM application and save the data with the contact in Amazon Connect. You could also flag calls for additional analysis, such as legal review or identifying abusive callers.

Contact attributes are available in Amazon Connect for 24 months, and are then deleted.

This operation is also available in the Amazon Connect Flow language. See UpdateContactAttributes.

Important: You cannot use the operation to update attributes for contacts that occurred prior to the release of the API, September 12, 2018. You can update attributes only for contacts that started after the release of the API. If you attempt to update attributes for a contact that occurred prior to the release of the API, a 400 error is returned. This applies also to queued callbacks that were initiated prior to the release of the API but are still active in your instance.

" + "documentation":"

Creates or updates the contact attributes associated with the specified contact.

You can add or update attributes for both ongoing and completed contacts. For example, you can update the customer's name or the reason the customer called while the call is active, or add notes about steps that the agent took during the call that are displayed to the next agent that takes the call. You can also update attributes for a contact using data from your CRM application and save the data with the contact in Amazon Connect. You could also flag calls for additional analysis, such as legal review or identifying abusive callers.

Contact attributes are available in Amazon Connect for 24 months, and are then deleted.

Important: You cannot use the operation to update attributes for contacts that occurred prior to the release of the API, September 12, 2018. You can update attributes only for contacts that started after the release of the API. If you attempt to update attributes for a contact that occurred prior to the release of the API, a 400 error is returned. This applies also to queued callbacks that were initiated prior to the release of the API but are still active in your instance.

" }, "UpdateContactFlowContent":{ "name":"UpdateContactFlowContent", @@ -653,7 +689,7 @@ {"shape":"ThrottlingException"}, {"shape":"InternalServiceException"} ], - "documentation":"

The name of the contact flow.

" + "documentation":"

The name of the contact flow.

You can also create and update contact flows using the Amazon Connect Flow language.

" }, "UpdateRoutingProfileConcurrency":{ "name":"UpdateRoutingProfileConcurrency", @@ -736,6 +772,40 @@ ], "documentation":"

Assigns the specified hierarchy group to the specified user.

" }, + "UpdateUserHierarchyGroupName":{ + "name":"UpdateUserHierarchyGroupName", + "http":{ + "method":"POST", + "requestUri":"/user-hierarchy-groups/{InstanceId}/{HierarchyGroupId}/name" + }, + "input":{"shape":"UpdateUserHierarchyGroupNameRequest"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"DuplicateResourceException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServiceException"} + ], + "documentation":"

Updates the name of the user hierarchy group.

" + }, + "UpdateUserHierarchyStructure":{ + "name":"UpdateUserHierarchyStructure", + "http":{ + "method":"POST", + "requestUri":"/user-hierarchy-structure/{InstanceId}" + }, + "input":{"shape":"UpdateUserHierarchyStructureRequest"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ResourceInUseException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServiceException"} + ], + "documentation":"

Updates the user hierarchy structure: add, remove, and rename user hierarchy levels.

" + }, "UpdateUserIdentityInfo":{ "name":"UpdateUserIdentityInfo", "http":{ @@ -1137,6 +1207,42 @@ } } }, + "CreateUserHierarchyGroupRequest":{ + "type":"structure", + "required":[ + "Name", + "InstanceId" + ], + "members":{ + "Name":{ + "shape":"HierarchyGroupName", + "documentation":"

The name of the user hierarchy group. Must not be more than 100 characters.

" + }, + "ParentGroupId":{ + "shape":"HierarchyGroupId", + "documentation":"

The identifier for the parent hierarchy group. The user hierarchy is created at level one if the parent group ID is null.

" + }, + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + } + } + }, + "CreateUserHierarchyGroupResponse":{ + "type":"structure", + "members":{ + "HierarchyGroupId":{ + "shape":"HierarchyGroupId", + "documentation":"

The identifier of the hierarchy group.

" + }, + "HierarchyGroupArn":{ + "shape":"ARN", + "documentation":"

The Amazon Resource Name (ARN) of the hierarchy group.

" + } + } + }, "CreateUserRequest":{ "type":"structure", "required":[ @@ -1305,6 +1411,27 @@ "max":9999, "min":0 }, + "DeleteUserHierarchyGroupRequest":{ + "type":"structure", + "required":[ + "HierarchyGroupId", + "InstanceId" + ], + "members":{ + "HierarchyGroupId":{ + "shape":"HierarchyGroupId", + "documentation":"

The identifier of the hierarchy group.

", + "location":"uri", + "locationName":"HierarchyGroupId" + }, + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + } + } + }, "DeleteUserRequest":{ "type":"structure", "required":[ @@ -1796,6 +1923,17 @@ }, "HierarchyLevelId":{"type":"string"}, "HierarchyLevelName":{"type":"string"}, + "HierarchyLevelUpdate":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"HierarchyLevelName", + "documentation":"

The name of the user hierarchy level. Must not be more than 50 characters.

" + } + }, + "documentation":"

Contains information about the hierarchy level to update.

" + }, "HierarchyPath":{ "type":"structure", "members":{ @@ -1848,6 +1986,32 @@ }, "documentation":"

Contains information about a hierarchy structure.

" }, + "HierarchyStructureUpdate":{ + "type":"structure", + "members":{ + "LevelOne":{ + "shape":"HierarchyLevelUpdate", + "documentation":"

The update for level one.

" + }, + "LevelTwo":{ + "shape":"HierarchyLevelUpdate", + "documentation":"

The update for level two.

" + }, + "LevelThree":{ + "shape":"HierarchyLevelUpdate", + "documentation":"

The update for level three.

" + }, + "LevelFour":{ + "shape":"HierarchyLevelUpdate", + "documentation":"

The update for level four.

" + }, + "LevelFive":{ + "shape":"HierarchyLevelUpdate", + "documentation":"

The update for level five.

" + } + }, + "documentation":"

Contains information about the level hierarchy to update.

" + }, "HistoricalMetric":{ "type":"structure", "members":{ @@ -2953,6 +3117,23 @@ "max":100, "min":1 }, + "ResourceInUseException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"}, + "ResourceType":{ + "shape":"ResourceType", + "documentation":"

The type of resource.

" + }, + "ResourceId":{ + "shape":"ARN", + "documentation":"

The identifier for the resource.

" + } + }, + "documentation":"

That resource is already in use. Please try another.

", + "error":{"httpStatusCode":409}, + "exception":true + }, "ResourceNotFoundException":{ "type":"structure", "members":{ @@ -2965,6 +3146,18 @@ "error":{"httpStatusCode":404}, "exception":true }, + "ResourceType":{ + "type":"string", + "enum":[ + "CONTACT", + "CONTACT_FLOW", + "INSTANCE", + "PARTICIPANT", + "HIERARCHY_LEVEL", + "HIERARCHY_GROUP", + "USER" + ] + }, "ResumeContactRecordingRequest":{ "type":"structure", "required":[ @@ -3693,6 +3886,32 @@ } } }, + "UpdateUserHierarchyGroupNameRequest":{ + "type":"structure", + "required":[ + "Name", + "HierarchyGroupId", + "InstanceId" + ], + "members":{ + "Name":{ + "shape":"HierarchyGroupName", + "documentation":"

The name of the hierarchy group. Must not be more than 100 characters.

" + }, + "HierarchyGroupId":{ + "shape":"HierarchyGroupId", + "documentation":"

The identifier of the hierarchy group.

", + "location":"uri", + "locationName":"HierarchyGroupId" + }, + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + } + } + }, "UpdateUserHierarchyRequest":{ "type":"structure", "required":[ @@ -3718,6 +3937,25 @@ } } }, + "UpdateUserHierarchyStructureRequest":{ + "type":"structure", + "required":[ + "HierarchyStructure", + "InstanceId" + ], + "members":{ + "HierarchyStructure":{ + "shape":"HierarchyStructureUpdate", + "documentation":"

The hierarchy levels to update.

" + }, + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + } + } + }, "UpdateUserIdentityInfoRequest":{ "type":"structure", "required":[ From c2f84c5b168934c90761ce95d3ee06b29a8a0f45 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 17 Nov 2020 19:03:53 +0000 Subject: [PATCH 209/339] Amazon Relational Database Service Update: Support copy-db-snapshot in the one region on cross clusters and local cluster for RDSonVmware. Add target-custom-availability-zone parameter to specify where a snapshot should be copied. --- .../feature-AmazonRelationalDatabaseService-f7d49af.json | 6 ++++++ .../src/main/resources/codegen-resources/service-2.json | 7 ++++++- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AmazonRelationalDatabaseService-f7d49af.json diff --git a/.changes/next-release/feature-AmazonRelationalDatabaseService-f7d49af.json b/.changes/next-release/feature-AmazonRelationalDatabaseService-f7d49af.json new file mode 100644 index 000000000000..a57f2b0aeb90 --- /dev/null +++ b/.changes/next-release/feature-AmazonRelationalDatabaseService-f7d49af.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Relational Database Service", + "contributor": "", + "description": "Support copy-db-snapshot in the one region on cross clusters and local cluster for RDSonVmware. Add target-custom-availability-zone parameter to specify where a snapshot should be copied." +} 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 63094bf3f4b5..f6291423835f 100755 --- a/services/rds/src/main/resources/codegen-resources/service-2.json +++ b/services/rds/src/main/resources/codegen-resources/service-2.json @@ -219,7 +219,8 @@ {"shape":"DBSnapshotNotFoundFault"}, {"shape":"InvalidDBSnapshotStateFault"}, {"shape":"SnapshotQuotaExceededFault"}, - {"shape":"KMSKeyNotAccessibleFault"} + {"shape":"KMSKeyNotAccessibleFault"}, + {"shape":"CustomAvailabilityZoneNotFoundFault"} ], "documentation":"

Copies the specified DB snapshot. The source DB snapshot must be in the available state.

You can copy a snapshot from one AWS Region to another. In that case, the AWS Region where you call the CopyDBSnapshot action is the destination AWS Region for the DB snapshot copy.

For more information about copying snapshots, see Copying a DB Snapshot in the Amazon RDS User Guide.

" }, @@ -3041,6 +3042,10 @@ "OptionGroupName":{ "shape":"String", "documentation":"

The name of an option group to associate with the copy of the snapshot.

Specify this option if you are copying a snapshot from one AWS Region to another, and your DB instance uses a nondefault option group. If your source DB instance uses Transparent Data Encryption for Oracle or Microsoft SQL Server, you must specify this option when copying across AWS Regions. For more information, see Option Group Considerations in the Amazon RDS User Guide.

" + }, + "TargetCustomAvailabilityZone":{ + "shape":"String", + "documentation":"

The external custom Availability Zone (CAZ) identifier for the target CAZ.

Example: rds-caz-aiqhTgQv.

" } }, "documentation":"

" From c04644f0092d07c64c83fc2d1ed7bea837519ab8 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 17 Nov 2020 19:04:04 +0000 Subject: [PATCH 210/339] AWS Network Firewall Update: (New Service) AWS Network Firewall is a managed network layer firewall service that makes it easy to secure your virtual private cloud (VPC) networks and block malicious traffic. --- .../feature-AWSNetworkFirewall-9fd4b90.json | 6 + aws-sdk-java/pom.xml | 5 + bom/pom.xml | 5 + services/networkfirewall/pom.xml | 60 + .../codegen-resources/paginators-1.json | 28 + .../codegen-resources/service-2.json | 2752 +++++++++++++++++ services/pom.xml | 1 + 7 files changed, 2857 insertions(+) create mode 100644 .changes/next-release/feature-AWSNetworkFirewall-9fd4b90.json create mode 100644 services/networkfirewall/pom.xml create mode 100644 services/networkfirewall/src/main/resources/codegen-resources/paginators-1.json create mode 100644 services/networkfirewall/src/main/resources/codegen-resources/service-2.json diff --git a/.changes/next-release/feature-AWSNetworkFirewall-9fd4b90.json b/.changes/next-release/feature-AWSNetworkFirewall-9fd4b90.json new file mode 100644 index 000000000000..502ef1eb2783 --- /dev/null +++ b/.changes/next-release/feature-AWSNetworkFirewall-9fd4b90.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Network Firewall", + "contributor": "", + "description": "(New Service) AWS Network Firewall is a managed network layer firewall service that makes it easy to secure your virtual private cloud (VPC) networks and block malicious traffic." +} diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index c9babea76f64..f4e29d698847 100644 --- a/aws-sdk-java/pom.xml +++ b/aws-sdk-java/pom.xml @@ -1188,6 +1188,11 @@ Amazon AutoScaling, etc). servicecatalogappregistry ${awsjavasdk.version} + + software.amazon.awssdk + networkfirewall + ${awsjavasdk.version} + ${project.artifactId}-${project.version} diff --git a/bom/pom.xml b/bom/pom.xml index d00058c6c3f0..6dafe6422b8f 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -1313,6 +1313,11 @@ servicecatalogappregistry ${awsjavasdk.version} + + software.amazon.awssdk + networkfirewall + ${awsjavasdk.version} + diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml new file mode 100644 index 000000000000..feb2c80abb22 --- /dev/null +++ b/services/networkfirewall/pom.xml @@ -0,0 +1,60 @@ + + + + + 4.0.0 + + software.amazon.awssdk + services + 2.15.30-SNAPSHOT + + networkfirewall + AWS Java SDK :: Services :: Network Firewall + The AWS Java SDK for Network Firewall module holds the client classes that are used for + communicating with Network Firewall. + + https://aws.amazon.com/sdkforjava + + + + org.apache.maven.plugins + maven-jar-plugin + + + + software.amazon.awssdk.services.networkfirewall + + + + + + + + + + software.amazon.awssdk + protocol-core + ${awsjavasdk.version} + + + software.amazon.awssdk + aws-json-protocol + ${awsjavasdk.version} + + + diff --git a/services/networkfirewall/src/main/resources/codegen-resources/paginators-1.json b/services/networkfirewall/src/main/resources/codegen-resources/paginators-1.json new file mode 100644 index 000000000000..9c4b18bbd77b --- /dev/null +++ b/services/networkfirewall/src/main/resources/codegen-resources/paginators-1.json @@ -0,0 +1,28 @@ +{ + "pagination": { + "ListFirewallPolicies": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "FirewallPolicies" + }, + "ListFirewalls": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "Firewalls" + }, + "ListRuleGroups": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "RuleGroups" + }, + "ListTagsForResource": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "Tags" + } + } +} diff --git a/services/networkfirewall/src/main/resources/codegen-resources/service-2.json b/services/networkfirewall/src/main/resources/codegen-resources/service-2.json new file mode 100644 index 000000000000..a3c890097acf --- /dev/null +++ b/services/networkfirewall/src/main/resources/codegen-resources/service-2.json @@ -0,0 +1,2752 @@ +{ + "version":"2.0", + "metadata":{ + "apiVersion":"2020-11-12", + "endpointPrefix":"network-firewall", + "jsonVersion":"1.0", + "protocol":"json", + "serviceAbbreviation":"Network Firewall", + "serviceFullName":"AWS Network Firewall", + "serviceId":"Network Firewall", + "signatureVersion":"v4", + "signingName":"network-firewall", + "targetPrefix":"NetworkFirewall_20201112", + "uid":"network-firewall-2020-11-12" + }, + "operations":{ + "AssociateFirewallPolicy":{ + "name":"AssociateFirewallPolicy", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"AssociateFirewallPolicyRequest"}, + "output":{"shape":"AssociateFirewallPolicyResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InternalServerError"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InvalidTokenException"}, + {"shape":"InvalidOperationException"} + ], + "documentation":"

Associates a FirewallPolicy to a Firewall.

A firewall policy defines how to monitor and manage your VPC network traffic, using a collection of inspection rule groups and other settings. Each firewall requires one firewall policy association, and you can use the same firewall policy for multiple firewalls.

" + }, + "AssociateSubnets":{ + "name":"AssociateSubnets", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"AssociateSubnetsRequest"}, + "output":{"shape":"AssociateSubnetsResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InternalServerError"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InvalidTokenException"}, + {"shape":"InvalidOperationException"} + ], + "documentation":"

Associates the specified subnets in the Amazon VPC to the firewall. You can specify one subnet for each of the Availability Zones that the VPC spans.

This request creates an AWS Network Firewall firewall endpoint in each of the subnets. To enable the firewall's protections, you must also modify the VPC's route tables for each subnet's Availability Zone, to redirect the traffic that's coming into and going out of the zone through the firewall endpoint.

" + }, + "CreateFirewall":{ + "name":"CreateFirewall", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateFirewallRequest"}, + "output":{"shape":"CreateFirewallResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"LimitExceededException"}, + {"shape":"InternalServerError"}, + {"shape":"ThrottlingException"}, + {"shape":"InsufficientCapacityException"}, + {"shape":"InvalidOperationException"} + ], + "documentation":"

Creates an AWS Network Firewall Firewall and accompanying FirewallStatus for a VPC.

The firewall defines the configuration settings for an AWS Network Firewall firewall. The settings that you can define at creation include the firewall policy, the subnets in your VPC to use for the firewall endpoints, and any tags that are attached to the firewall AWS resource.

After you create a firewall, you can provide additional settings, like the logging configuration.

To update the settings for a firewall, you use the operations that apply to the settings themselves, for example UpdateLoggingConfiguration, AssociateSubnets, and UpdateFirewallDeleteProtection.

To manage a firewall's tags, use the standard AWS resource tagging operations, ListTagsForResource, TagResource, and UntagResource.

To retrieve information about firewalls, use ListFirewalls and DescribeFirewall.

" + }, + "CreateFirewallPolicy":{ + "name":"CreateFirewallPolicy", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateFirewallPolicyRequest"}, + "output":{"shape":"CreateFirewallPolicyResponse"}, + "errors":[ + {"shape":"LimitExceededException"}, + {"shape":"InvalidRequestException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerError"}, + {"shape":"InsufficientCapacityException"} + ], + "documentation":"

Creates the firewall policy for the firewall according to the specifications.

An AWS Network Firewall firewall policy defines the behavior of a firewall, in a collection of stateless and stateful rule groups and other settings. You can use one firewall policy for multiple firewalls.

" + }, + "CreateRuleGroup":{ + "name":"CreateRuleGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateRuleGroupRequest"}, + "output":{"shape":"CreateRuleGroupResponse"}, + "errors":[ + {"shape":"LimitExceededException"}, + {"shape":"InvalidRequestException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerError"}, + {"shape":"InsufficientCapacityException"} + ], + "documentation":"

Creates the specified stateless or stateful rule group, which includes the rules for network traffic inspection, a capacity setting, and tags.

You provide your rule group specification in your request using either RuleGroup or Rules.

" + }, + "DeleteFirewall":{ + "name":"DeleteFirewall", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteFirewallRequest"}, + "output":{"shape":"DeleteFirewallResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InternalServerError"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"UnsupportedOperationException"}, + {"shape":"InvalidOperationException"} + ], + "documentation":"

Deletes the specified Firewall and its FirewallStatus. This operation requires the firewall's DeleteProtection flag to be FALSE. You can't revert this operation.

You can check whether a firewall is in use by reviewing the route tables for the Availability Zones where you have firewall subnet mappings. Retrieve the subnet mappings by calling DescribeFirewall. You define and update the route tables through Amazon VPC. As needed, update the route tables for the zones to remove the firewall endpoints. When the route tables no longer use the firewall endpoints, you can remove the firewall safely.

To delete a firewall, remove the delete protection if you need to using UpdateFirewallDeleteProtection, then delete the firewall by calling DeleteFirewall.

" + }, + "DeleteFirewallPolicy":{ + "name":"DeleteFirewallPolicy", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteFirewallPolicyRequest"}, + "output":{"shape":"DeleteFirewallPolicyResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerError"}, + {"shape":"UnsupportedOperationException"}, + {"shape":"InvalidOperationException"} + ], + "documentation":"

Deletes the specified FirewallPolicy.

" + }, + "DeleteResourcePolicy":{ + "name":"DeleteResourcePolicy", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteResourcePolicyRequest"}, + "output":{"shape":"DeleteResourcePolicyResponse"}, + "errors":[ + {"shape":"InternalServerError"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Deletes a resource policy that you created in a PutResourcePolicy request.

" + }, + "DeleteRuleGroup":{ + "name":"DeleteRuleGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteRuleGroupRequest"}, + "output":{"shape":"DeleteRuleGroupResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerError"}, + {"shape":"UnsupportedOperationException"}, + {"shape":"InvalidOperationException"} + ], + "documentation":"

Deletes the specified RuleGroup.

" + }, + "DescribeFirewall":{ + "name":"DescribeFirewall", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeFirewallRequest"}, + "output":{"shape":"DescribeFirewallResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InternalServerError"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Returns the data objects for the specified firewall.

" + }, + "DescribeFirewallPolicy":{ + "name":"DescribeFirewallPolicy", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeFirewallPolicyRequest"}, + "output":{"shape":"DescribeFirewallPolicyResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerError"} + ], + "documentation":"

Returns the data objects for the specified firewall policy.

" + }, + "DescribeLoggingConfiguration":{ + "name":"DescribeLoggingConfiguration", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeLoggingConfigurationRequest"}, + "output":{"shape":"DescribeLoggingConfigurationResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InternalServerError"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Returns the logging configuration for the specified firewall.

" + }, + "DescribeResourcePolicy":{ + "name":"DescribeResourcePolicy", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeResourcePolicyRequest"}, + "output":{"shape":"DescribeResourcePolicyResponse"}, + "errors":[ + {"shape":"InternalServerError"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Retrieves a resource policy that you created in a PutResourcePolicy request.

" + }, + "DescribeRuleGroup":{ + "name":"DescribeRuleGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeRuleGroupRequest"}, + "output":{"shape":"DescribeRuleGroupResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerError"} + ], + "documentation":"

Returns the data objects for the specified rule group.

" + }, + "DisassociateSubnets":{ + "name":"DisassociateSubnets", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DisassociateSubnetsRequest"}, + "output":{"shape":"DisassociateSubnetsResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InternalServerError"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InvalidTokenException"}, + {"shape":"InvalidOperationException"} + ], + "documentation":"

Removes the specified subnet associations from the firewall. This removes the firewall endpoints from the subnets and removes any network filtering protections that the endpoints were providing.

" + }, + "ListFirewallPolicies":{ + "name":"ListFirewallPolicies", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListFirewallPoliciesRequest"}, + "output":{"shape":"ListFirewallPoliciesResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerError"} + ], + "documentation":"

Retrieves the metadata for the firewall policies that you have defined. Depending on your setting for max results and the number of firewall policies, a single call might not return the full list.

" + }, + "ListFirewalls":{ + "name":"ListFirewalls", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListFirewallsRequest"}, + "output":{"shape":"ListFirewallsResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InternalServerError"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Retrieves the metadata for the firewalls that you have defined. If you provide VPC identifiers in your request, this returns only the firewalls for those VPCs.

Depending on your setting for max results and the number of firewalls, a single call might not return the full list.

" + }, + "ListRuleGroups":{ + "name":"ListRuleGroups", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListRuleGroupsRequest"}, + "output":{"shape":"ListRuleGroupsResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerError"} + ], + "documentation":"

Retrieves the metadata for the rule groups that you have defined. Depending on your setting for max results and the number of rule groups, a single call might not return the full list.

" + }, + "ListTagsForResource":{ + "name":"ListTagsForResource", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListTagsForResourceRequest"}, + "output":{"shape":"ListTagsForResourceResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"} + ], + "documentation":"

Retrieves the tags associated with the specified resource. Tags are key:value pairs that you can use to categorize and manage your resources, for purposes like billing. For example, you might set the tag key to \"customer\" and the value to the customer name or ID. You can specify one or more tags to add to each AWS resource, up to 50 tags for a resource.

You can tag the AWS resources that you manage through AWS Network Firewall: firewalls, firewall policies, and rule groups.

" + }, + "PutResourcePolicy":{ + "name":"PutResourcePolicy", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"PutResourcePolicyRequest"}, + "output":{"shape":"PutResourcePolicyResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InternalServerError"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InvalidResourcePolicyException"} + ], + "documentation":"

Creates or updates an AWS Identity and Access Management policy for your rule group or firewall policy. Use this to share rule groups and firewall policies between accounts. This operation works in conjunction with the AWS Resource Access Manager (RAM) service to manage resource sharing for Network Firewall.

Use this operation to create or update a resource policy for your rule group or firewall policy. In the policy, you specify the accounts that you want to share the resource with and the operations that you want the accounts to be able to perform.

When you add an account in the resource policy, you then run the following Resource Access Manager (RAM) operations to access and accept the shared rule group or firewall policy.

For additional information about resource sharing using RAM, see AWS Resource Access Manager User Guide.

" + }, + "TagResource":{ + "name":"TagResource", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"TagResourceRequest"}, + "output":{"shape":"TagResourceResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InvalidRequestException"} + ], + "documentation":"

Adds the specified tags to the specified resource. Tags are key:value pairs that you can use to categorize and manage your resources, for purposes like billing. For example, you might set the tag key to \"customer\" and the value to the customer name or ID. You can specify one or more tags to add to each AWS resource, up to 50 tags for a resource.

You can tag the AWS resources that you manage through AWS Network Firewall: firewalls, firewall policies, and rule groups.

" + }, + "UntagResource":{ + "name":"UntagResource", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UntagResourceRequest"}, + "output":{"shape":"UntagResourceResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InvalidRequestException"} + ], + "documentation":"

Removes the tags with the specified keys from the specified resource. Tags are key:value pairs that you can use to categorize and manage your resources, for purposes like billing. For example, you might set the tag key to \"customer\" and the value to the customer name or ID. You can specify one or more tags to add to each AWS resource, up to 50 tags for a resource.

You can manage tags for the AWS resources that you manage through AWS Network Firewall: firewalls, firewall policies, and rule groups.

" + }, + "UpdateFirewallDeleteProtection":{ + "name":"UpdateFirewallDeleteProtection", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateFirewallDeleteProtectionRequest"}, + "output":{"shape":"UpdateFirewallDeleteProtectionResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InternalServerError"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InvalidTokenException"}, + {"shape":"ResourceOwnerCheckException"} + ], + "documentation":"

Modifies the flag, DeleteProtection, which indicates whether it is possible to delete the firewall. If the flag is set to TRUE, the firewall is protected against deletion. This setting helps protect against accidentally deleting a firewall that's in use.

" + }, + "UpdateFirewallDescription":{ + "name":"UpdateFirewallDescription", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateFirewallDescriptionRequest"}, + "output":{"shape":"UpdateFirewallDescriptionResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InternalServerError"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InvalidTokenException"} + ], + "documentation":"

Modifies the description for the specified firewall. Use the description to help you identify the firewall when you're working with it.

" + }, + "UpdateFirewallPolicy":{ + "name":"UpdateFirewallPolicy", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateFirewallPolicyRequest"}, + "output":{"shape":"UpdateFirewallPolicyResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerError"}, + {"shape":"InvalidTokenException"} + ], + "documentation":"

Updates the properties of the specified firewall policy.

" + }, + "UpdateFirewallPolicyChangeProtection":{ + "name":"UpdateFirewallPolicyChangeProtection", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateFirewallPolicyChangeProtectionRequest"}, + "output":{"shape":"UpdateFirewallPolicyChangeProtectionResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InternalServerError"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InvalidTokenException"}, + {"shape":"ResourceOwnerCheckException"} + ], + "documentation":"

" + }, + "UpdateLoggingConfiguration":{ + "name":"UpdateLoggingConfiguration", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateLoggingConfigurationRequest"}, + "output":{"shape":"UpdateLoggingConfigurationResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InternalServerError"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InvalidTokenException"}, + {"shape":"LogDestinationPermissionException"} + ], + "documentation":"

Sets the logging configuration for the specified firewall.

To change the logging configuration, retrieve the LoggingConfiguration by calling DescribeLoggingConfiguration, then change it and provide the modified object to this update call. You must change the logging configuration one LogDestinationConfig at a time inside the retrieved LoggingConfiguration object.

You can perform only one of the following actions in any call to UpdateLoggingConfiguration:

  • Create a new log destination object by adding a single LogDestinationConfig array element to LogDestinationConfigs.

  • Delete a log destination object by removing a single LogDestinationConfig array element from LogDestinationConfigs.

  • Change the LogDestination setting in a single LogDestinationConfig array element.

You can't change the LogDestinationType or LogType in a LogDestinationConfig. To change these settings, delete the existing LogDestinationConfig object and create a new one, using two separate calls to this update operation.

" + }, + "UpdateRuleGroup":{ + "name":"UpdateRuleGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateRuleGroupRequest"}, + "output":{"shape":"UpdateRuleGroupResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InvalidRequestException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerError"}, + {"shape":"InvalidTokenException"} + ], + "documentation":"

Updates the rule settings for the specified rule group. You use a rule group by reference in one or more firewall policies. When you modify a rule group, you modify all firewall policies that use the rule group.

To update a rule group, first call DescribeRuleGroup to retrieve the current RuleGroup object, update the object as needed, and then provide the updated object to this call.

" + }, + "UpdateSubnetChangeProtection":{ + "name":"UpdateSubnetChangeProtection", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateSubnetChangeProtectionRequest"}, + "output":{"shape":"UpdateSubnetChangeProtectionResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InternalServerError"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InvalidTokenException"}, + {"shape":"ResourceOwnerCheckException"} + ], + "documentation":"

" + } + }, + "shapes":{ + "ActionDefinition":{ + "type":"structure", + "members":{ + "PublishMetricAction":{ + "shape":"PublishMetricAction", + "documentation":"

Stateless inspection criteria that publishes the specified metrics to Amazon CloudWatch for the matching packet. This setting defines a CloudWatch dimension value to be published.

You can pair this custom action with any of the standard stateless rule actions. For example, you could pair this in a rule action with the standard action that forwards the packet for stateful inspection. Then, when a packet matches the rule, Network Firewall publishes metrics for the packet and forwards it.

" + } + }, + "documentation":"

A custom action to use in stateless rule actions settings. This is used in CustomAction.

" + }, + "ActionName":{ + "type":"string", + "max":128, + "min":1, + "pattern":"^[a-zA-Z0-9]+$" + }, + "Address":{ + "type":"structure", + "required":["AddressDefinition"], + "members":{ + "AddressDefinition":{ + "shape":"AddressDefinition", + "documentation":"

Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4.

Examples:

  • To configure Network Firewall to inspect for the IP address 192.0.2.44, specify 192.0.2.44/32.

  • To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify 192.0.2.0/24.

For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

" + } + }, + "documentation":"

A single IP address specification. This is used in the MatchAttributes source and destination specifications.

" + }, + "AddressDefinition":{ + "type":"string", + "max":255, + "min":1, + "pattern":"^([a-fA-F\\d:\\.]+/\\d{1,3})$" + }, + "Addresses":{ + "type":"list", + "member":{"shape":"Address"} + }, + "AssociateFirewallPolicyRequest":{ + "type":"structure", + "required":["FirewallPolicyArn"], + "members":{ + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request.

To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.

To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token.

" + }, + "FirewallArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall.

You must specify the ARN or the name, and you can specify both.

" + }, + "FirewallName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall. You can't change the name of a firewall after you create it.

You must specify the ARN or the name, and you can specify both.

" + }, + "FirewallPolicyArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall policy.

" + } + } + }, + "AssociateFirewallPolicyResponse":{ + "type":"structure", + "members":{ + "FirewallArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall.

" + }, + "FirewallName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall. You can't change the name of a firewall after you create it.

" + }, + "FirewallPolicyArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall policy.

" + }, + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request.

To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.

To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token.

" + } + } + }, + "AssociateSubnetsRequest":{ + "type":"structure", + "required":["SubnetMappings"], + "members":{ + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request.

To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.

To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token.

" + }, + "FirewallArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall.

You must specify the ARN or the name, and you can specify both.

" + }, + "FirewallName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall. You can't change the name of a firewall after you create it.

You must specify the ARN or the name, and you can specify both.

" + }, + "SubnetMappings":{ + "shape":"SubnetMappings", + "documentation":"

The IDs of the subnets that you want to associate with the firewall.

" + } + } + }, + "AssociateSubnetsResponse":{ + "type":"structure", + "members":{ + "FirewallArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall.

" + }, + "FirewallName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall. You can't change the name of a firewall after you create it.

" + }, + "SubnetMappings":{ + "shape":"SubnetMappings", + "documentation":"

The IDs of the subnets that are associated with the firewall.

" + }, + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request.

To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.

To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token.

" + } + } + }, + "Attachment":{ + "type":"structure", + "members":{ + "SubnetId":{ + "shape":"AzSubnet", + "documentation":"

The unique identifier of the subnet that you've specified to be used for a firewall endpoint.

" + }, + "EndpointId":{ + "shape":"EndpointId", + "documentation":"

The identifier of the firewall endpoint that Network Firewall has instantiated in the subnet. You use this to identify the firewall endpoint in the VPC route tables, when you redirect the VPC traffic through the endpoint.

" + }, + "Status":{ + "shape":"AttachmentStatus", + "documentation":"

The current status of the firewall endpoint in the subnet. This value reflects both the instantiation of the endpoint in the VPC subnet and the sync states that are reported in the Config settings. When this value is READY, the endpoint is available and configured properly to handle network traffic. When the endpoint isn't available for traffic, this value will reflect its state, for example CREATING, DELETING, or FAILED.

" + } + }, + "documentation":"

The configuration and status for a single subnet that you've specified for use by the AWS Network Firewall firewall. This is part of the FirewallStatus.

" + }, + "AttachmentStatus":{ + "type":"string", + "enum":[ + "CREATING", + "DELETING", + "SCALING", + "READY" + ] + }, + "AvailabilityZone":{"type":"string"}, + "AzSubnet":{ + "type":"string", + "max":128, + "min":1, + "pattern":"^subnet-[0-9a-f]+$" + }, + "AzSubnets":{ + "type":"list", + "member":{"shape":"AzSubnet"} + }, + "Boolean":{"type":"boolean"}, + "CollectionMember_String":{"type":"string"}, + "ConfigurationSyncState":{ + "type":"string", + "enum":[ + "PENDING", + "IN_SYNC" + ] + }, + "CreateFirewallPolicyRequest":{ + "type":"structure", + "required":[ + "FirewallPolicyName", + "FirewallPolicy" + ], + "members":{ + "FirewallPolicyName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it.

" + }, + "FirewallPolicy":{ + "shape":"FirewallPolicy", + "documentation":"

The rule groups and policy actions to use in the firewall policy.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

A description of the firewall policy.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

The key:value pairs to associate with the resource.

" + }, + "DryRun":{ + "shape":"Boolean", + "documentation":"

Indicates whether you want Network Firewall to just check the validity of the request, rather than run the request.

If set to TRUE, Network Firewall checks whether the request can run successfully, but doesn't actually make the requested changes. The call returns the value that the request would return if you ran it with dry run set to FALSE, but doesn't make additions or changes to your resources. This option allows you to make sure that you have the required permissions to run the request and that your request parameters are valid.

If set to FALSE, Network Firewall makes the requested changes to your resources.

" + } + } + }, + "CreateFirewallPolicyResponse":{ + "type":"structure", + "required":[ + "UpdateToken", + "FirewallPolicyResponse" + ], + "members":{ + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

A token used for optimistic locking. Network Firewall returns a token to your requests that access the firewall policy. The token marks the state of the policy resource at the time of the request.

To make changes to the policy, you provide the token in your request. Network Firewall uses the token to ensure that the policy hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the firewall policy again to get a current copy of it with current token. Reapply your changes as needed, then try the operation again using the new token.

" + }, + "FirewallPolicyResponse":{ + "shape":"FirewallPolicyResponse", + "documentation":"

The high-level properties of a firewall policy. This, along with the FirewallPolicy, define the policy. You can retrieve all objects for a firewall policy by calling DescribeFirewallPolicy.

" + } + } + }, + "CreateFirewallRequest":{ + "type":"structure", + "required":[ + "FirewallName", + "FirewallPolicyArn", + "VpcId", + "SubnetMappings" + ], + "members":{ + "FirewallName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall. You can't change the name of a firewall after you create it.

" + }, + "FirewallPolicyArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the FirewallPolicy that you want to use for the firewall.

" + }, + "VpcId":{ + "shape":"VpcId", + "documentation":"

The unique identifier of the VPC where Network Firewall should create the firewall.

You can't change this setting after you create the firewall.

" + }, + "SubnetMappings":{ + "shape":"SubnetMappings", + "documentation":"

The public subnets to use for your Network Firewall firewalls. Each subnet must belong to a different Availability Zone in the VPC. Network Firewall creates a firewall endpoint in each subnet.

" + }, + "DeleteProtection":{ + "shape":"Boolean", + "documentation":"

A flag indicating whether it is possible to delete the firewall. A setting of TRUE indicates that the firewall is protected against deletion. Use this setting to protect against accidentally deleting a firewall that is in use. When you create a firewall, the operation initializes this flag to TRUE.

" + }, + "SubnetChangeProtection":{ + "shape":"Boolean", + "documentation":"

A setting indicating whether the firewall is protected against changes to the subnet associations. Use this setting to protect against accidentally modifying the subnet associations for a firewall that is in use. When you create a firewall, the operation initializes this setting to TRUE.

" + }, + "FirewallPolicyChangeProtection":{ + "shape":"Boolean", + "documentation":"

A setting indicating whether the firewall is protected against a change to the firewall policy association. Use this setting to protect against accidentally modifying the firewall policy for a firewall that is in use. When you create a firewall, the operation initializes this setting to TRUE.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

A description of the firewall.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

The key:value pairs to associate with the resource.

" + } + } + }, + "CreateFirewallResponse":{ + "type":"structure", + "members":{ + "Firewall":{ + "shape":"Firewall", + "documentation":"

The configuration settings for the firewall. These settings include the firewall policy and the subnets in your VPC to use for the firewall endpoints.

" + }, + "FirewallStatus":{ + "shape":"FirewallStatus", + "documentation":"

Detailed information about the current status of a Firewall. You can retrieve this for a firewall by calling DescribeFirewall and providing the firewall name and ARN.

" + } + } + }, + "CreateRuleGroupRequest":{ + "type":"structure", + "required":[ + "RuleGroupName", + "Type", + "Capacity" + ], + "members":{ + "RuleGroupName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the rule group. You can't change the name of a rule group after you create it.

" + }, + "RuleGroup":{ + "shape":"RuleGroup", + "documentation":"

An object that defines the rule group rules.

You must provide either this rule group setting or a Rules setting, but not both.

" + }, + "Rules":{ + "shape":"RulesString", + "documentation":"

The name of a file containing stateful rule group rules specifications in Suricata flat format, with one rule per line. Use this to import your existing Suricata compatible rule groups.

You must provide either this rules setting or a populated RuleGroup setting, but not both.

You can provide your rule group specification in a file through this setting when you create or update your rule group. The call response returns a RuleGroup object that Network Firewall has populated from your file. Network Firewall uses the file contents to populate the rule group rules, but does not maintain a reference to the file or use the file in any way after performing the create or update. If you call DescribeRuleGroup to retrieve the rule group, Network Firewall returns rules settings inside a RuleGroup object.

" + }, + "Type":{ + "shape":"RuleGroupType", + "documentation":"

Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

A description of the rule group.

" + }, + "Capacity":{ + "shape":"RuleCapacity", + "documentation":"

The maximum operating resources that this rule group can use. Rule group capacity is fixed at creation. When you update a rule group, you are limited to this capacity. When you reference a rule group from a firewall policy, Network Firewall reserves this capacity for the rule group.

You can retrieve the capacity that would be required for a rule group before you create the rule group by calling CreateRuleGroup with DryRun set to TRUE.

You can't change or exceed this capacity when you update the rule group, so leave room for your rule group to grow.

Capacity for a stateless rule group

For a stateless rule group, the capacity required is the sum of the capacity requirements of the individual rules that you expect to have in the rule group.

To calculate the capacity requirement of a single rule, multiply the capacity requirement values of each of the rule's match settings:

  • A match setting with no criteria specified has a value of 1.

  • A match setting with Any specified has a value of 1.

  • All other match settings have a value equal to the number of elements provided in the setting. For example, a protocol setting [\"UDP\"] and a source setting [\"10.0.0.0/24\"] each have a value of 1. A protocol setting [\"UDP\",\"TCP\"] has a value of 2. A source setting [\"10.0.0.0/24\",\"10.0.0.1/24\",\"10.0.0.2/24\"] has a value of 3.

A rule with no criteria specified in any of its match settings has a capacity requirement of 1. A rule with protocol setting [\"UDP\",\"TCP\"], source setting [\"10.0.0.0/24\",\"10.0.0.1/24\",\"10.0.0.2/24\"], and a single specification or no specification for each of the other match settings has a capacity requirement of 6.

Capacity for a stateful rule group

For a stateful rule group, the minimum capacity required is the number of individual rules that you expect to have in the rule group.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

The key:value pairs to associate with the resource.

" + }, + "DryRun":{ + "shape":"Boolean", + "documentation":"

Indicates whether you want Network Firewall to just check the validity of the request, rather than run the request.

If set to TRUE, Network Firewall checks whether the request can run successfully, but doesn't actually make the requested changes. The call returns the value that the request would return if you ran it with dry run set to FALSE, but doesn't make additions or changes to your resources. This option allows you to make sure that you have the required permissions to run the request and that your request parameters are valid.

If set to FALSE, Network Firewall makes the requested changes to your resources.

" + } + } + }, + "CreateRuleGroupResponse":{ + "type":"structure", + "required":[ + "UpdateToken", + "RuleGroupResponse" + ], + "members":{ + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

A token used for optimistic locking. Network Firewall returns a token to your requests that access the rule group. The token marks the state of the rule group resource at the time of the request.

To make changes to the rule group, you provide the token in your request. Network Firewall uses the token to ensure that the rule group hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the rule group again to get a current copy of it with a current token. Reapply your changes as needed, then try the operation again using the new token.

" + }, + "RuleGroupResponse":{ + "shape":"RuleGroupResponse", + "documentation":"

The high-level properties of a rule group. This, along with the RuleGroup, define the rule group. You can retrieve all objects for a rule group by calling DescribeRuleGroup.

" + } + } + }, + "CustomAction":{ + "type":"structure", + "required":[ + "ActionName", + "ActionDefinition" + ], + "members":{ + "ActionName":{ + "shape":"ActionName", + "documentation":"

The descriptive name of the custom action. You can't change the name of a custom action after you create it.

" + }, + "ActionDefinition":{ + "shape":"ActionDefinition", + "documentation":"

The custom action associated with the action name.

" + } + }, + "documentation":"

An optional, non-standard action to use for stateless packet handling. You can define this in addition to the standard action that you must specify.

You define and name the custom actions that you want to be able to use, and then you reference them by name in your actions settings.

You can use custom actions in the following places:

  • In a rule group's StatelessRulesAndCustomActions specification. The custom actions are available for use by name inside the StatelessRulesAndCustomActions where you define them. You can use them for your stateless rule actions to specify what to do with a packet that matches the rule's match attributes.

  • In a FirewallPolicy specification, in StatelessCustomActions. The custom actions are available for use inside the policy where you define them. You can use them for the policy's default stateless actions settings to specify what to do with packets that don't match any of the policy's stateless rules.

" + }, + "CustomActions":{ + "type":"list", + "member":{"shape":"CustomAction"} + }, + "DeleteFirewallPolicyRequest":{ + "type":"structure", + "members":{ + "FirewallPolicyName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it.

You must specify the ARN or the name, and you can specify both.

" + }, + "FirewallPolicyArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall policy.

You must specify the ARN or the name, and you can specify both.

" + } + } + }, + "DeleteFirewallPolicyResponse":{ + "type":"structure", + "required":["FirewallPolicyResponse"], + "members":{ + "FirewallPolicyResponse":{ + "shape":"FirewallPolicyResponse", + "documentation":"

The object containing the definition of the FirewallPolicyResponse that you asked to delete.

" + } + } + }, + "DeleteFirewallRequest":{ + "type":"structure", + "members":{ + "FirewallName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall. You can't change the name of a firewall after you create it.

You must specify the ARN or the name, and you can specify both.

" + }, + "FirewallArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall.

You must specify the ARN or the name, and you can specify both.

" + } + } + }, + "DeleteFirewallResponse":{ + "type":"structure", + "members":{ + "Firewall":{"shape":"Firewall"}, + "FirewallStatus":{"shape":"FirewallStatus"} + } + }, + "DeleteResourcePolicyRequest":{ + "type":"structure", + "required":["ResourceArn"], + "members":{ + "ResourceArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the rule group or firewall policy whose resource policy you want to delete.

" + } + } + }, + "DeleteResourcePolicyResponse":{ + "type":"structure", + "members":{ + } + }, + "DeleteRuleGroupRequest":{ + "type":"structure", + "members":{ + "RuleGroupName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the rule group. You can't change the name of a rule group after you create it.

You must specify the ARN or the name, and you can specify both.

" + }, + "RuleGroupArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the rule group.

You must specify the ARN or the name, and you can specify both.

" + }, + "Type":{ + "shape":"RuleGroupType", + "documentation":"

Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules.

This setting is required for requests that do not include the RuleGroupARN.

" + } + } + }, + "DeleteRuleGroupResponse":{ + "type":"structure", + "required":["RuleGroupResponse"], + "members":{ + "RuleGroupResponse":{ + "shape":"RuleGroupResponse", + "documentation":"

The high-level properties of a rule group. This, along with the RuleGroup, define the rule group. You can retrieve all objects for a rule group by calling DescribeRuleGroup.

" + } + } + }, + "DescribeFirewallPolicyRequest":{ + "type":"structure", + "members":{ + "FirewallPolicyName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it.

You must specify the ARN or the name, and you can specify both.

" + }, + "FirewallPolicyArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall policy.

You must specify the ARN or the name, and you can specify both.

" + } + } + }, + "DescribeFirewallPolicyResponse":{ + "type":"structure", + "required":[ + "UpdateToken", + "FirewallPolicyResponse" + ], + "members":{ + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

A token used for optimistic locking. Network Firewall returns a token to your requests that access the firewall policy. The token marks the state of the policy resource at the time of the request.

To make changes to the policy, you provide the token in your request. Network Firewall uses the token to ensure that the policy hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the firewall policy again to get a current copy of it with current token. Reapply your changes as needed, then try the operation again using the new token.

" + }, + "FirewallPolicyResponse":{ + "shape":"FirewallPolicyResponse", + "documentation":"

The high-level properties of a firewall policy. This, along with the FirewallPolicy, define the policy. You can retrieve all objects for a firewall policy by calling DescribeFirewallPolicy.

" + }, + "FirewallPolicy":{ + "shape":"FirewallPolicy", + "documentation":"

The policy for the specified firewall policy.

" + } + } + }, + "DescribeFirewallRequest":{ + "type":"structure", + "members":{ + "FirewallName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall. You can't change the name of a firewall after you create it.

You must specify the ARN or the name, and you can specify both.

" + }, + "FirewallArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall.

You must specify the ARN or the name, and you can specify both.

" + } + } + }, + "DescribeFirewallResponse":{ + "type":"structure", + "members":{ + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request.

To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.

To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token.

" + }, + "Firewall":{ + "shape":"Firewall", + "documentation":"

The configuration settings for the firewall. These settings include the firewall policy and the subnets in your VPC to use for the firewall endpoints.

" + }, + "FirewallStatus":{ + "shape":"FirewallStatus", + "documentation":"

Detailed information about the current status of a Firewall. You can retrieve this for a firewall by calling DescribeFirewall and providing the firewall name and ARN.

" + } + } + }, + "DescribeLoggingConfigurationRequest":{ + "type":"structure", + "members":{ + "FirewallArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall.

You must specify the ARN or the name, and you can specify both.

" + }, + "FirewallName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall. You can't change the name of a firewall after you create it.

You must specify the ARN or the name, and you can specify both.

" + } + } + }, + "DescribeLoggingConfigurationResponse":{ + "type":"structure", + "members":{ + "FirewallArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall.

" + }, + "LoggingConfiguration":{"shape":"LoggingConfiguration"} + } + }, + "DescribeResourcePolicyRequest":{ + "type":"structure", + "required":["ResourceArn"], + "members":{ + "ResourceArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the rule group or firewall policy whose resource policy you want to retrieve.

" + } + } + }, + "DescribeResourcePolicyResponse":{ + "type":"structure", + "members":{ + "Policy":{ + "shape":"PolicyString", + "documentation":"

The AWS Identity and Access Management policy for the resource.

" + } + } + }, + "DescribeRuleGroupRequest":{ + "type":"structure", + "members":{ + "RuleGroupName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the rule group. You can't change the name of a rule group after you create it.

You must specify the ARN or the name, and you can specify both.

" + }, + "RuleGroupArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the rule group.

You must specify the ARN or the name, and you can specify both.

" + }, + "Type":{ + "shape":"RuleGroupType", + "documentation":"

Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules.

This setting is required for requests that do not include the RuleGroupARN.

" + } + } + }, + "DescribeRuleGroupResponse":{ + "type":"structure", + "required":[ + "UpdateToken", + "RuleGroupResponse" + ], + "members":{ + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

A token used for optimistic locking. Network Firewall returns a token to your requests that access the rule group. The token marks the state of the rule group resource at the time of the request.

To make changes to the rule group, you provide the token in your request. Network Firewall uses the token to ensure that the rule group hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the rule group again to get a current copy of it with a current token. Reapply your changes as needed, then try the operation again using the new token.

" + }, + "RuleGroup":{ + "shape":"RuleGroup", + "documentation":"

The object that defines the rules in a rule group. This, along with RuleGroupResponse, define the rule group. You can retrieve all objects for a rule group by calling DescribeRuleGroup.

AWS Network Firewall uses a rule group to inspect and control network traffic. You define stateless rule groups to inspect individual packets and you define stateful rule groups to inspect packets in the context of their traffic flow.

To use a rule group, you include it by reference in an Network Firewall firewall policy, then you use the policy in a firewall. You can reference a rule group from more than one firewall policy, and you can use a firewall policy in more than one firewall.

" + }, + "RuleGroupResponse":{ + "shape":"RuleGroupResponse", + "documentation":"

The high-level properties of a rule group. This, along with the RuleGroup, define the rule group. You can retrieve all objects for a rule group by calling DescribeRuleGroup.

" + } + } + }, + "Description":{ + "type":"string", + "max":512, + "pattern":"^.*$" + }, + "Destination":{ + "type":"string", + "max":1024, + "min":1, + "pattern":"^.*$" + }, + "Dimension":{ + "type":"structure", + "required":["Value"], + "members":{ + "Value":{ + "shape":"DimensionValue", + "documentation":"

The value to use in the custom metric dimension.

" + } + }, + "documentation":"

The value to use in an Amazon CloudWatch custom metric dimension. This is used in the PublishMetrics CustomAction. A CloudWatch custom metric dimension is a name/value pair that's part of the identity of a metric.

AWS Network Firewall sets the dimension name to CustomAction and you provide the dimension value.

For more information about CloudWatch custom metric dimensions, see Publishing Custom Metrics in the Amazon CloudWatch User Guide.

" + }, + "DimensionValue":{ + "type":"string", + "max":128, + "min":1, + "pattern":"^[a-zA-Z0-9-_ ]+$" + }, + "Dimensions":{ + "type":"list", + "member":{"shape":"Dimension"}, + "max":1, + "min":1 + }, + "DisassociateSubnetsRequest":{ + "type":"structure", + "required":["SubnetIds"], + "members":{ + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request.

To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.

To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token.

" + }, + "FirewallArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall.

You must specify the ARN or the name, and you can specify both.

" + }, + "FirewallName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall. You can't change the name of a firewall after you create it.

You must specify the ARN or the name, and you can specify both.

" + }, + "SubnetIds":{ + "shape":"AzSubnets", + "documentation":"

The unique identifiers for the subnets that you want to disassociate.

" + } + } + }, + "DisassociateSubnetsResponse":{ + "type":"structure", + "members":{ + "FirewallArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall.

" + }, + "FirewallName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall. You can't change the name of a firewall after you create it.

" + }, + "SubnetMappings":{ + "shape":"SubnetMappings", + "documentation":"

The IDs of the subnets that are associated with the firewall.

" + }, + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request.

To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.

To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token.

" + } + } + }, + "EndpointId":{"type":"string"}, + "ErrorMessage":{"type":"string"}, + "Firewall":{ + "type":"structure", + "required":[ + "FirewallPolicyArn", + "VpcId", + "SubnetMappings", + "FirewallId" + ], + "members":{ + "FirewallName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall. You can't change the name of a firewall after you create it.

" + }, + "FirewallArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall.

" + }, + "FirewallPolicyArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall policy.

The relationship of firewall to firewall policy is many to one. Each firewall requires one firewall policy association, and you can use the same firewall policy for multiple firewalls.

" + }, + "VpcId":{ + "shape":"VpcId", + "documentation":"

The unique identifier of the VPC where the firewall is in use.

" + }, + "SubnetMappings":{ + "shape":"SubnetMappings", + "documentation":"

The public subnets that Network Firewall is using for the firewall. Each subnet must belong to a different Availability Zone.

" + }, + "DeleteProtection":{ + "shape":"Boolean", + "documentation":"

A flag indicating whether it is possible to delete the firewall. A setting of TRUE indicates that the firewall is protected against deletion. Use this setting to protect against accidentally deleting a firewall that is in use. When you create a firewall, the operation initializes this flag to TRUE.

" + }, + "SubnetChangeProtection":{ + "shape":"Boolean", + "documentation":"

A setting indicating whether the firewall is protected against changes to the subnet associations. Use this setting to protect against accidentally modifying the subnet associations for a firewall that is in use. When you create a firewall, the operation initializes this setting to TRUE.

" + }, + "FirewallPolicyChangeProtection":{ + "shape":"Boolean", + "documentation":"

A setting indicating whether the firewall is protected against a change to the firewall policy association. Use this setting to protect against accidentally modifying the firewall policy for a firewall that is in use. When you create a firewall, the operation initializes this setting to TRUE.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

A description of the firewall.

" + }, + "FirewallId":{ + "shape":"ResourceId", + "documentation":"

The unique identifier for the firewall.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

" + } + }, + "documentation":"

The firewall defines the configuration settings for an AWS Network Firewall firewall. These settings include the firewall policy, the subnets in your VPC to use for the firewall endpoints, and any tags that are attached to the firewall AWS resource.

The status of the firewall, for example whether it's ready to filter network traffic, is provided in the corresponding FirewallStatus. You can retrieve both objects by calling DescribeFirewall.

" + }, + "FirewallMetadata":{ + "type":"structure", + "members":{ + "FirewallName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall. You can't change the name of a firewall after you create it.

" + }, + "FirewallArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall.

" + } + }, + "documentation":"

High-level information about a firewall, returned by operations like create and describe. You can use the information provided in the metadata to retrieve and manage a firewall.

" + }, + "FirewallPolicies":{ + "type":"list", + "member":{"shape":"FirewallPolicyMetadata"} + }, + "FirewallPolicy":{ + "type":"structure", + "required":[ + "StatelessDefaultActions", + "StatelessFragmentDefaultActions" + ], + "members":{ + "StatelessRuleGroupReferences":{ + "shape":"StatelessRuleGroupReferences", + "documentation":"

References to the stateless rule groups that are used in the policy. These define the matching criteria in stateless rules.

" + }, + "StatelessDefaultActions":{ + "shape":"StatelessActions", + "documentation":"

The actions to take on a packet if it doesn't match any of the stateless rules in the policy. If you want non-matching packets to be forwarded for stateful inspection, specify aws:forward_to_sfe.

You must specify one of the standard actions: aws:pass, aws:drop, or aws:forward_to_sfe. In addition, you can specify custom actions that are compatible with your standard section choice.

For example, you could specify [\"aws:pass\"] or you could specify [\"aws:pass\", “customActionName”]. For information about compatibility, see the custom action descriptions under CustomAction.

" + }, + "StatelessFragmentDefaultActions":{ + "shape":"StatelessActions", + "documentation":"

The actions to take on a fragmented packet if it doesn't match any of the stateless rules in the policy. If you want non-matching fragmented packets to be forwarded for stateful inspection, specify aws:forward_to_sfe.

You must specify one of the standard actions: aws:pass, aws:drop, or aws:forward_to_sfe. In addition, you can specify custom actions that are compatible with your standard section choice.

For example, you could specify [\"aws:pass\"] or you could specify [\"aws:pass\", “customActionName”]. For information about compatibility, see the custom action descriptions under CustomAction.

" + }, + "StatelessCustomActions":{ + "shape":"CustomActions", + "documentation":"

The custom action definitions that are available for use in the firewall policy's StatelessDefaultActions setting. You name each custom action that you define, and then you can use it by name in your default actions specifications.

" + }, + "StatefulRuleGroupReferences":{ + "shape":"StatefulRuleGroupReferences", + "documentation":"

References to the stateless rule groups that are used in the policy. These define the inspection criteria in stateful rules.

" + } + }, + "documentation":"

The firewall policy defines the behavior of a firewall using a collection of stateless and stateful rule groups and other settings. You can use one firewall policy for multiple firewalls.

This, along with FirewallPolicyResponse, define the policy. You can retrieve all objects for a firewall policy by calling DescribeFirewallPolicy.

" + }, + "FirewallPolicyMetadata":{ + "type":"structure", + "members":{ + "Name":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it.

" + }, + "Arn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall policy.

" + } + }, + "documentation":"

High-level information about a firewall policy, returned by operations like create and describe. You can use the information provided in the metadata to retrieve and manage a firewall policy. You can retrieve all objects for a firewall policy by calling DescribeFirewallPolicy.

" + }, + "FirewallPolicyResponse":{ + "type":"structure", + "required":[ + "FirewallPolicyName", + "FirewallPolicyArn", + "FirewallPolicyId" + ], + "members":{ + "FirewallPolicyName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it.

" + }, + "FirewallPolicyArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall policy.

If this response is for a create request that had DryRun set to TRUE, then this ARN is a placeholder that isn't attached to a valid resource.

" + }, + "FirewallPolicyId":{ + "shape":"ResourceId", + "documentation":"

The unique identifier for the firewall policy.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

A description of the firewall policy.

" + }, + "FirewallPolicyStatus":{ + "shape":"ResourceStatus", + "documentation":"

The current status of the firewall policy. You can retrieve this for a firewall policy by calling DescribeFirewallPolicy and providing the firewall policy's name or ARN.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

The key:value pairs to associate with the resource.

" + } + }, + "documentation":"

The high-level properties of a firewall policy. This, along with the FirewallPolicy, define the policy. You can retrieve all objects for a firewall policy by calling DescribeFirewallPolicy.

" + }, + "FirewallStatus":{ + "type":"structure", + "required":[ + "Status", + "ConfigurationSyncStateSummary" + ], + "members":{ + "Status":{ + "shape":"FirewallStatusValue", + "documentation":"

The readiness of the configured firewall to handle network traffic across all of the Availability Zones where you've configured it. This setting is READY only when the ConfigurationSyncStateSummary value is IN_SYNC and the Attachment Status values for all of the configured subnets are READY.

" + }, + "ConfigurationSyncStateSummary":{ + "shape":"ConfigurationSyncState", + "documentation":"

The configuration sync state for the firewall. This summarizes the sync states reported in the Config settings for all of the Availability Zones where you have configured the firewall.

When you create a firewall or update its configuration, for example by adding a rule group to its firewall policy, Network Firewall distributes the configuration changes to all zones where the firewall is in use. This summary indicates whether the configuration changes have been applied everywhere.

This status must be IN_SYNC for the firewall to be ready for use, but it doesn't indicate that the firewall is ready. The Status setting indicates firewall readiness.

" + }, + "SyncStates":{ + "shape":"SyncStates", + "documentation":"

The subnets that you've configured for use by the Network Firewall firewall. This contains one array element per Availability Zone where you've configured a subnet. These objects provide details of the information that is summarized in the ConfigurationSyncStateSummary and Status, broken down by zone and configuration object.

" + } + }, + "documentation":"

Detailed information about the current status of a Firewall. You can retrieve this for a firewall by calling DescribeFirewall and providing the firewall name and ARN.

" + }, + "FirewallStatusValue":{ + "type":"string", + "enum":[ + "PROVISIONING", + "DELETING", + "READY" + ] + }, + "Firewalls":{ + "type":"list", + "member":{"shape":"FirewallMetadata"} + }, + "Flags":{ + "type":"list", + "member":{"shape":"TCPFlag"} + }, + "GeneratedRulesType":{ + "type":"string", + "enum":[ + "ALLOWLIST", + "DENYLIST" + ] + }, + "HashMapKey":{ + "type":"string", + "max":50, + "min":3, + "pattern":"^[0-9A-Za-z.\\-_@\\/]+$" + }, + "HashMapValue":{ + "type":"string", + "max":1024, + "min":1, + "pattern":"[\\s\\S]*$" + }, + "Header":{ + "type":"structure", + "required":[ + "Protocol", + "Source", + "SourcePort", + "Direction", + "Destination", + "DestinationPort" + ], + "members":{ + "Protocol":{ + "shape":"StatefulRuleProtocol", + "documentation":"

The protocol to inspect for. To match with any protocol, specify ANY.

" + }, + "Source":{ + "shape":"Source", + "documentation":"

The source IP address or address range to inspect for, in CIDR notation. To match with any address, specify ANY.

Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4.

Examples:

  • To configure Network Firewall to inspect for the IP address 192.0.2.44, specify 192.0.2.44/32.

  • To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify 192.0.2.0/24.

For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

" + }, + "SourcePort":{ + "shape":"Port", + "documentation":"

The source port to inspect for. You can specify an individual port, for example 1994 and you can specify a port range, for example 1990-1994. To match with any port, specify ANY.

" + }, + "Direction":{ + "shape":"StatefulRuleDirection", + "documentation":"

The direction of traffic flow to inspect. If set to ANY, the inspection matches bidirectional traffic, both from the source to the destination and from the destination to the source. If set to FORWARD, the inspection only matches traffic going from the source to the destination.

" + }, + "Destination":{ + "shape":"Destination", + "documentation":"

The destination IP address or address range to inspect for, in CIDR notation. To match with any address, specify ANY.

Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4.

Examples:

  • To configure Network Firewall to inspect for the IP address 192.0.2.44, specify 192.0.2.44/32.

  • To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify 192.0.2.0/24.

For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

" + }, + "DestinationPort":{ + "shape":"Port", + "documentation":"

The destination port to inspect for. You can specify an individual port, for example 1994 and you can specify a port range, for example 1990-1994. To match with any port, specify ANY.

" + } + }, + "documentation":"

The 5-tuple criteria for AWS Network Firewall to use to inspect packet headers in stateful traffic flow inspection. Traffic flows that match the criteria are a match for the corresponding StatefulRule.

" + }, + "IPSet":{ + "type":"structure", + "required":["Definition"], + "members":{ + "Definition":{ + "shape":"VariableDefinitionList", + "documentation":"

The list of IP addresses and address ranges, in CIDR notation.

" + } + }, + "documentation":"

A list of IP addresses and address ranges, in CIDR notation. This is part of a RuleVariables.

" + }, + "IPSets":{ + "type":"map", + "key":{"shape":"RuleVariableName"}, + "value":{"shape":"IPSet"} + }, + "InsufficientCapacityException":{ + "type":"structure", + "members":{ + "Message":{"shape":"ErrorMessage"} + }, + "documentation":"

AWS doesn't currently have enough available capacity to fulfill your request. Try your request later.

", + "exception":true, + "fault":true + }, + "InternalServerError":{ + "type":"structure", + "members":{ + "Message":{"shape":"ErrorMessage"} + }, + "documentation":"

Your request is valid, but Network Firewall couldn’t perform the operation because of a system problem. Retry your request.

", + "exception":true, + "fault":true + }, + "InvalidOperationException":{ + "type":"structure", + "members":{ + "Message":{"shape":"ErrorMessage"} + }, + "documentation":"

The operation failed because it's not valid. For example, you might have tried to delete a rule group or firewall policy that's in use.

", + "exception":true + }, + "InvalidRequestException":{ + "type":"structure", + "members":{ + "Message":{"shape":"ErrorMessage"} + }, + "documentation":"

The operation failed because of a problem with your request. Examples include:

  • You specified an unsupported parameter name or value.

  • You tried to update a property with a value that isn't among the available types.

  • Your request references an ARN that is malformed, or corresponds to a resource that isn't valid in the context of the request.

", + "exception":true + }, + "InvalidResourcePolicyException":{ + "type":"structure", + "members":{ + "Message":{"shape":"ErrorMessage"} + }, + "documentation":"

", + "exception":true + }, + "InvalidTokenException":{ + "type":"structure", + "members":{ + "Message":{"shape":"ErrorMessage"} + }, + "documentation":"

The token you provided is stale or isn't valid for the operation.

", + "exception":true + }, + "Keyword":{ + "type":"string", + "max":128, + "min":1, + "pattern":".*" + }, + "LimitExceededException":{ + "type":"structure", + "members":{ + "Message":{"shape":"ErrorMessage"} + }, + "documentation":"

Unable to perform the operation because doing so would violate a limit setting.

", + "exception":true + }, + "ListFirewallPoliciesRequest":{ + "type":"structure", + "members":{ + "NextToken":{ + "shape":"PaginationToken", + "documentation":"

When you request a list of objects with a MaxResults setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a NextToken value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.

" + }, + "MaxResults":{ + "shape":"PaginationMaxResults", + "documentation":"

The maximum number of objects that you want Network Firewall to return for this request. If more objects are available, in the response, Network Firewall provides a NextToken value that you can use in a subsequent call to get the next batch of objects.

" + } + } + }, + "ListFirewallPoliciesResponse":{ + "type":"structure", + "members":{ + "NextToken":{ + "shape":"PaginationToken", + "documentation":"

When you request a list of objects with a MaxResults setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a NextToken value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.

" + }, + "FirewallPolicies":{ + "shape":"FirewallPolicies", + "documentation":"

The metadata for the firewall policies. Depending on your setting for max results and the number of firewall policies that you have, this might not be the full list.

" + } + } + }, + "ListFirewallsRequest":{ + "type":"structure", + "members":{ + "NextToken":{ + "shape":"PaginationToken", + "documentation":"

When you request a list of objects with a MaxResults setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a NextToken value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.

" + }, + "VpcIds":{ + "shape":"VpcIds", + "documentation":"

The unique identifiers of the VPCs that you want Network Firewall to retrieve the firewalls for. Leave this blank to retrieve all firewalls that you have defined.

" + }, + "MaxResults":{ + "shape":"PaginationMaxResults", + "documentation":"

The maximum number of objects that you want Network Firewall to return for this request. If more objects are available, in the response, Network Firewall provides a NextToken value that you can use in a subsequent call to get the next batch of objects.

" + } + } + }, + "ListFirewallsResponse":{ + "type":"structure", + "members":{ + "NextToken":{ + "shape":"PaginationToken", + "documentation":"

When you request a list of objects with a MaxResults setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a NextToken value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.

" + }, + "Firewalls":{ + "shape":"Firewalls", + "documentation":"

The firewall metadata objects for the VPCs that you specified. Depending on your setting for max results and the number of firewalls you have, a single call might not be the full list.

" + } + } + }, + "ListRuleGroupsRequest":{ + "type":"structure", + "members":{ + "NextToken":{ + "shape":"PaginationToken", + "documentation":"

When you request a list of objects with a MaxResults setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a NextToken value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.

" + }, + "MaxResults":{ + "shape":"PaginationMaxResults", + "documentation":"

The maximum number of objects that you want Network Firewall to return for this request. If more objects are available, in the response, Network Firewall provides a NextToken value that you can use in a subsequent call to get the next batch of objects.

" + } + } + }, + "ListRuleGroupsResponse":{ + "type":"structure", + "members":{ + "NextToken":{ + "shape":"PaginationToken", + "documentation":"

When you request a list of objects with a MaxResults setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a NextToken value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.

" + }, + "RuleGroups":{ + "shape":"RuleGroups", + "documentation":"

The rule group metadata objects that you've defined. Depending on your setting for max results and the number of rule groups, this might not be the full list.

" + } + } + }, + "ListTagsForResourceRequest":{ + "type":"structure", + "required":["ResourceArn"], + "members":{ + "NextToken":{ + "shape":"PaginationToken", + "documentation":"

When you request a list of objects with a MaxResults setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a NextToken value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.

" + }, + "MaxResults":{ + "shape":"TagsPaginationMaxResults", + "documentation":"

The maximum number of objects that you want Network Firewall to return for this request. If more objects are available, in the response, Network Firewall provides a NextToken value that you can use in a subsequent call to get the next batch of objects.

" + }, + "ResourceArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the resource.

" + } + } + }, + "ListTagsForResourceResponse":{ + "type":"structure", + "members":{ + "NextToken":{ + "shape":"PaginationToken", + "documentation":"

When you request a list of objects with a MaxResults setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a NextToken value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

The tags that are associated with the resource.

" + } + } + }, + "LogDestinationConfig":{ + "type":"structure", + "required":[ + "LogType", + "LogDestinationType", + "LogDestination" + ], + "members":{ + "LogType":{ + "shape":"LogType", + "documentation":"

The type of log to send. Alert logs report traffic that matches a StatefulRule with an action setting that sends an alert log message. Flow logs are standard network traffic flow logs.

" + }, + "LogDestinationType":{ + "shape":"LogDestinationType", + "documentation":"

The type of storage destination to send these logs to. You can send logs to an Amazon S3 bucket, a CloudWatch log group, or a Kinesis Data Firehose delivery stream.

" + }, + "LogDestination":{ + "shape":"LogDestinationMap", + "documentation":"

The named location for the logs, provided in a key:value mapping that is specific to the chosen destination type.

  • For an Amazon S3 bucket, provide the name of the bucket, with key bucketName, and optionally provide a prefix, with key prefix. The following example specifies an Amazon S3 bucket named DOC-EXAMPLE-BUCKET and the prefix alerts:

    \"LogDestination\": { \"bucketName\": \"DOC-EXAMPLE-BUCKET\", \"prefix\": \"alerts\" }

  • For a CloudWatch log group, provide the name of the CloudWatch log group, with key logGroup. The following example specifies a log group named alert-log-group:

    \"LogDestination\": { \"logGroup\": \"alert-log-group\" }

  • For a Kinesis Data Firehose delivery stream, provide the name of the delivery stream, with key deliveryStream. The following example specifies a delivery stream named alert-delivery-stream:

    \"LogDestination\": { \"deliveryStream\": \"alert-delivery-stream\" }

" + } + }, + "documentation":"

Defines where AWS Network Firewall sends logs for the firewall for one log type. This is used in LoggingConfiguration. You can send each type of log to an Amazon S3 bucket, a CloudWatch log group, or a Kinesis Data Firehose delivery stream.

Network Firewall generates logs for stateful rule groups. You can save alert and flow log types. The stateful rules engine records flow logs for all network traffic that it receives. It records alert logs for traffic that matches stateful rules that have the rule action set to DROP or ALERT.

" + }, + "LogDestinationConfigs":{ + "type":"list", + "member":{"shape":"LogDestinationConfig"} + }, + "LogDestinationMap":{ + "type":"map", + "key":{"shape":"HashMapKey"}, + "value":{"shape":"HashMapValue"} + }, + "LogDestinationPermissionException":{ + "type":"structure", + "members":{ + "Message":{"shape":"ErrorMessage"} + }, + "documentation":"

Unable to send logs to a configured logging destination.

", + "exception":true + }, + "LogDestinationType":{ + "type":"string", + "enum":[ + "S3", + "CloudWatchLogs", + "KinesisDataFirehose" + ], + "max":30, + "min":2, + "pattern":"[0-9A-Za-z]+" + }, + "LogType":{ + "type":"string", + "enum":[ + "ALERT", + "FLOW" + ] + }, + "LoggingConfiguration":{ + "type":"structure", + "required":["LogDestinationConfigs"], + "members":{ + "LogDestinationConfigs":{ + "shape":"LogDestinationConfigs", + "documentation":"

Defines the logging destinations for the logs for a firewall. Network Firewall generates logs for stateful rule groups.

" + } + }, + "documentation":"

Defines how AWS Network Firewall performs logging for a Firewall.

" + }, + "MatchAttributes":{ + "type":"structure", + "members":{ + "Sources":{ + "shape":"Addresses", + "documentation":"

The source IP addresses and address ranges to inspect for, in CIDR notation. If not specified, this matches with any source address.

" + }, + "Destinations":{ + "shape":"Addresses", + "documentation":"

The destination IP addresses and address ranges to inspect for, in CIDR notation. If not specified, this matches with any destination address.

" + }, + "SourcePorts":{ + "shape":"PortRanges", + "documentation":"

The source ports to inspect for. If not specified, this matches with any source port. This setting is only used for protocols 6 (TCP) and 17 (UDP).

You can specify individual ports, for example 1994 and you can specify port ranges, for example 1990-1994.

" + }, + "DestinationPorts":{ + "shape":"PortRanges", + "documentation":"

The destination ports to inspect for. If not specified, this matches with any destination port. This setting is only used for protocols 6 (TCP) and 17 (UDP).

You can specify individual ports, for example 1994 and you can specify port ranges, for example 1990-1994.

" + }, + "Protocols":{ + "shape":"ProtocolNumbers", + "documentation":"

The protocols to inspect for, specified using each protocol's assigned internet protocol number (IANA). If not specified, this matches with any protocol.

" + }, + "TCPFlags":{ + "shape":"TCPFlags", + "documentation":"

The TCP flags and masks to inspect for. If not specified, this matches with any settings. This setting is only used for protocol 6 (TCP).

" + } + }, + "documentation":"

Criteria for Network Firewall to use to inspect an individual packet in stateless rule inspection. Each match attributes set can include one or more items such as IP address, CIDR range, port number, protocol, and TCP flags.

" + }, + "PaginationMaxResults":{ + "type":"integer", + "max":100, + "min":1 + }, + "PaginationToken":{ + "type":"string", + "max":2048, + "min":1, + "pattern":"[0-9A-Za-z:\\/+=]+$" + }, + "PerObjectStatus":{ + "type":"structure", + "members":{ + "SyncStatus":{ + "shape":"PerObjectSyncStatus", + "documentation":"

" + } + }, + "documentation":"

" + }, + "PerObjectSyncStatus":{ + "type":"string", + "enum":[ + "PENDING", + "IN_SYNC" + ] + }, + "PolicyString":{ + "type":"string", + "max":395000, + "min":1, + "pattern":".*\\S.*" + }, + "Port":{ + "type":"string", + "max":1024, + "min":1, + "pattern":"^.*$" + }, + "PortRange":{ + "type":"structure", + "required":[ + "FromPort", + "ToPort" + ], + "members":{ + "FromPort":{ + "shape":"PortRangeBound", + "documentation":"

The lower limit of the port range. This must be less than or equal to the ToPort specification.

" + }, + "ToPort":{ + "shape":"PortRangeBound", + "documentation":"

The upper limit of the port range. This must be greater than or equal to the FromPort specification.

" + } + }, + "documentation":"

A single port range specification. This is used for source and destination port ranges in the stateless rule MatchAttributes, SourcePorts, and DestinationPorts settings.

" + }, + "PortRangeBound":{ + "type":"integer", + "max":65535, + "min":0 + }, + "PortRanges":{ + "type":"list", + "member":{"shape":"PortRange"} + }, + "PortSet":{ + "type":"structure", + "members":{ + "Definition":{ + "shape":"VariableDefinitionList", + "documentation":"

The set of port ranges.

" + } + }, + "documentation":"

A set of port ranges for use in the rules in a rule group.

" + }, + "PortSets":{ + "type":"map", + "key":{"shape":"RuleVariableName"}, + "value":{"shape":"PortSet"} + }, + "Priority":{ + "type":"integer", + "max":65535, + "min":1 + }, + "ProtocolNumber":{ + "type":"integer", + "max":255, + "min":0 + }, + "ProtocolNumbers":{ + "type":"list", + "member":{"shape":"ProtocolNumber"} + }, + "PublishMetricAction":{ + "type":"structure", + "required":["Dimensions"], + "members":{ + "Dimensions":{ + "shape":"Dimensions", + "documentation":"

" + } + }, + "documentation":"

Stateless inspection criteria that publishes the specified metrics to Amazon CloudWatch for the matching packet. This setting defines a CloudWatch dimension value to be published.

" + }, + "PutResourcePolicyRequest":{ + "type":"structure", + "required":[ + "ResourceArn", + "Policy" + ], + "members":{ + "ResourceArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the account that you want to share rule groups and firewall policies with.

" + }, + "Policy":{ + "shape":"PolicyString", + "documentation":"

The AWS Identity and Access Management policy statement that lists the accounts that you want to share your rule group or firewall policy with and the operations that you want the accounts to be able to perform.

For a rule group resource, you can specify the following operations in the Actions section of the statement:

  • network-firewall:CreateFirewallPolicy

  • network-firewall:UpdateFirewallPolicy

  • network-firewall:ListRuleGroups

For a firewall policy resource, you can specify the following operations in the Actions section of the statement:

  • network-firewall:CreateFirewall

  • network-firewall:UpdateFirewall

  • network-firewall:AssociateFirewallPolicy

  • network-firewall:ListFirewallPolicies

In the Resource section of the statement, you specify the ARNs for the rule groups and firewall policies that you want to share with the account that you specified in Arn.

" + } + } + }, + "PutResourcePolicyResponse":{ + "type":"structure", + "members":{ + } + }, + "ResourceArn":{ + "type":"string", + "max":256, + "min":1, + "pattern":"^arn:aws.*" + }, + "ResourceId":{ + "type":"string", + "max":36, + "min":36, + "pattern":"^([0-9a-f]{8})-([0-9a-f]{4}-){3}([0-9a-f]{12})$" + }, + "ResourceName":{ + "type":"string", + "max":128, + "min":1, + "pattern":"^[a-zA-Z0-9-]+$" + }, + "ResourceNotFoundException":{ + "type":"structure", + "members":{ + "Message":{"shape":"ErrorMessage"} + }, + "documentation":"

Unable to locate a resource using the parameters that you provided.

", + "exception":true + }, + "ResourceOwnerCheckException":{ + "type":"structure", + "members":{ + "Message":{"shape":"ErrorMessage"} + }, + "documentation":"

", + "exception":true + }, + "ResourceStatus":{ + "type":"string", + "enum":[ + "ACTIVE", + "DELETING" + ] + }, + "RuleCapacity":{"type":"integer"}, + "RuleDefinition":{ + "type":"structure", + "required":[ + "MatchAttributes", + "Actions" + ], + "members":{ + "MatchAttributes":{ + "shape":"MatchAttributes", + "documentation":"

Criteria for Network Firewall to use to inspect an individual packet in stateless rule inspection. Each match attributes set can include one or more items such as IP address, CIDR range, port number, protocol, and TCP flags.

" + }, + "Actions":{ + "shape":"StatelessActions", + "documentation":"

The actions to take on a packet that matches one of the stateless rule definition's match attributes. You must specify a standard action and you can add custom actions.

Network Firewall only forwards a packet for stateful rule inspection if you specify aws:forward_to_sfe for a rule that the packet matches, or if the packet doesn't match any stateless rule and you specify aws:forward_to_sfe for the StatelessDefaultActions setting for the FirewallPolicy.

For every rule, you must specify exactly one of the following standard actions.

  • aws:pass - Discontinues all inspection of the packet and permits it to go to its intended destination.

  • aws:drop - Discontinues all inspection of the packet and blocks it from going to its intended destination.

  • aws:forward_to_sfe - Discontinues stateless inspection of the packet and forwards it to the stateful rule engine for inspection.

Additionally, you can specify a custom action. To do this, you define a custom action by name and type, then provide the name you've assigned to the action in this Actions setting. For information about the options, see CustomAction.

To provide more than one action in this setting, separate the settings with a comma. For example, if you have a custom PublishMetrics action that you've named MyMetricsAction, then you could specify the standard action aws:pass and the custom action with [“aws:pass”, “MyMetricsAction”].

" + } + }, + "documentation":"

The inspection criteria and action for a single stateless rule. AWS Network Firewall inspects each packet for the specified matching criteria. When a packet matches the criteria, Network Firewall performs the rule's actions on the packet.

" + }, + "RuleGroup":{ + "type":"structure", + "required":["RulesSource"], + "members":{ + "RuleVariables":{ + "shape":"RuleVariables", + "documentation":"

Settings that are available for use in the rules in the rule group. You can only use these for stateful rule groups.

" + }, + "RulesSource":{ + "shape":"RulesSource", + "documentation":"

The stateful rules or stateless rules for the rule group.

" + } + }, + "documentation":"

The object that defines the rules in a rule group. This, along with RuleGroupResponse, define the rule group. You can retrieve all objects for a rule group by calling DescribeRuleGroup.

AWS Network Firewall uses a rule group to inspect and control network traffic. You define stateless rule groups to inspect individual packets and you define stateful rule groups to inspect packets in the context of their traffic flow.

To use a rule group, you include it by reference in an Network Firewall firewall policy, then you use the policy in a firewall. You can reference a rule group from more than one firewall policy, and you can use a firewall policy in more than one firewall.

" + }, + "RuleGroupMetadata":{ + "type":"structure", + "members":{ + "Name":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the rule group. You can't change the name of a rule group after you create it.

" + }, + "Arn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the rule group.

" + } + }, + "documentation":"

High-level information about a rule group, returned by ListRuleGroups. You can use the information provided in the metadata to retrieve and manage a rule group.

" + }, + "RuleGroupResponse":{ + "type":"structure", + "required":[ + "RuleGroupArn", + "RuleGroupName", + "RuleGroupId" + ], + "members":{ + "RuleGroupArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the rule group.

If this response is for a create request that had DryRun set to TRUE, then this ARN is a placeholder that isn't attached to a valid resource.

" + }, + "RuleGroupName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the rule group. You can't change the name of a rule group after you create it.

" + }, + "RuleGroupId":{ + "shape":"ResourceId", + "documentation":"

The unique identifier for the rule group.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

A description of the rule group.

" + }, + "Type":{ + "shape":"RuleGroupType", + "documentation":"

Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules.

" + }, + "Capacity":{ + "shape":"RuleCapacity", + "documentation":"

The maximum operating resources that this rule group can use. Rule group capacity is fixed at creation. When you update a rule group, you are limited to this capacity. When you reference a rule group from a firewall policy, Network Firewall reserves this capacity for the rule group.

You can retrieve the capacity that would be required for a rule group before you create the rule group by calling CreateRuleGroup with DryRun set to TRUE.

" + }, + "RuleGroupStatus":{ + "shape":"ResourceStatus", + "documentation":"

Detailed information about the current status of a rule group.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

The key:value pairs to associate with the resource.

" + } + }, + "documentation":"

The high-level properties of a rule group. This, along with the RuleGroup, define the rule group. You can retrieve all objects for a rule group by calling DescribeRuleGroup.

" + }, + "RuleGroupType":{ + "type":"string", + "enum":[ + "STATELESS", + "STATEFUL" + ] + }, + "RuleGroups":{ + "type":"list", + "member":{"shape":"RuleGroupMetadata"} + }, + "RuleOption":{ + "type":"structure", + "required":["Keyword"], + "members":{ + "Keyword":{ + "shape":"Keyword", + "documentation":"

" + }, + "Settings":{ + "shape":"Settings", + "documentation":"

" + } + }, + "documentation":"

Additional settings for a stateful rule. This is part of the StatefulRule configuration.

" + }, + "RuleOptions":{ + "type":"list", + "member":{"shape":"RuleOption"} + }, + "RuleTargets":{ + "type":"list", + "member":{"shape":"CollectionMember_String"} + }, + "RuleVariableName":{ + "type":"string", + "max":32, + "min":1, + "pattern":"^[A-Za-z][A-Za-z0-9_]*$" + }, + "RuleVariables":{ + "type":"structure", + "members":{ + "IPSets":{ + "shape":"IPSets", + "documentation":"

A list of IP addresses and address ranges, in CIDR notation.

" + }, + "PortSets":{ + "shape":"PortSets", + "documentation":"

A list of port ranges.

" + } + }, + "documentation":"

Settings that are available for use in the rules in the RuleGroup where this is defined.

" + }, + "RulesSource":{ + "type":"structure", + "members":{ + "RulesString":{ + "shape":"RulesString", + "documentation":"

Stateful inspection criteria, provided in Suricata compatible intrusion prevention system (IPS) rules. Suricata is an open-source network IPS that includes a standard rule-based language for network traffic inspection.

These rules contain the inspection criteria and the action to take for traffic that matches the criteria, so this type of rule group doesn't have a separate action setting.

You can provide the rules from a file that you've stored in an Amazon S3 bucket, or by providing the rules in a Suricata rules string. To import from Amazon S3, provide the fully qualified name of the file that contains the rules definitions. To provide a Suricata rule string, provide the complete, Suricata compatible rule.

" + }, + "RulesSourceList":{ + "shape":"RulesSourceList", + "documentation":"

Stateful inspection criteria for a domain list rule group.

" + }, + "StatefulRules":{ + "shape":"StatefulRules", + "documentation":"

The 5-tuple stateful inspection criteria. This contains an array of individual 5-tuple stateful rules to be used together in a stateful rule group.

" + }, + "StatelessRulesAndCustomActions":{ + "shape":"StatelessRulesAndCustomActions", + "documentation":"

Stateless inspection criteria to be used in a stateless rule group.

" + } + }, + "documentation":"

The stateless or stateful rules definitions for use in a single rule group. Each rule group requires a single RulesSource. You can use an instance of this for either stateless rules or stateful rules.

" + }, + "RulesSourceList":{ + "type":"structure", + "required":[ + "Targets", + "TargetTypes", + "GeneratedRulesType" + ], + "members":{ + "Targets":{ + "shape":"RuleTargets", + "documentation":"

The domains that you want to inspect for in your traffic flows. To provide multiple domains, separate them with commas.

" + }, + "TargetTypes":{ + "shape":"TargetTypes", + "documentation":"

" + }, + "GeneratedRulesType":{ + "shape":"GeneratedRulesType", + "documentation":"

Whether you want to allow or deny access to the domains in your target list.

" + } + }, + "documentation":"

Stateful inspection criteria for a domain list rule group.

" + }, + "RulesString":{ + "type":"string", + "max":1000000, + "min":0 + }, + "Setting":{ + "type":"string", + "max":8192, + "min":1, + "pattern":".*" + }, + "Settings":{ + "type":"list", + "member":{"shape":"Setting"} + }, + "Source":{ + "type":"string", + "max":1024, + "min":1, + "pattern":"^.*$" + }, + "StatefulAction":{ + "type":"string", + "enum":[ + "PASS", + "DROP", + "ALERT" + ] + }, + "StatefulRule":{ + "type":"structure", + "required":[ + "Action", + "Header", + "RuleOptions" + ], + "members":{ + "Action":{ + "shape":"StatefulAction", + "documentation":"

Defines what Network Firewall should do with the packets in a traffic flow when the flow matches the stateful rule criteria. For all actions, Network Firewall performs the specified action and discontinues stateful inspection of the traffic flow.

The actions for a stateful rule are defined as follows:

  • PASS - Permits the packets to go to the intended destination.

  • DROP - Blocks the packets from going to the intended destination and sends an alert log message, if alert logging is configured in the Firewall LoggingConfiguration.

  • ALERT - Permits the packets to go to the intended destination and sends an alert log message, if alert logging is configured in the Firewall LoggingConfiguration.

    You can use this action to test a rule that you intend to use to drop traffic. You can enable the rule with ALERT action, verify in the logs that the rule is filtering as you want, then change the action to DROP.

" + }, + "Header":{ + "shape":"Header", + "documentation":"

The stateful 5-tuple inspection criteria for this rule, used to inspect traffic flows.

" + }, + "RuleOptions":{ + "shape":"RuleOptions", + "documentation":"

" + } + }, + "documentation":"

A single 5-tuple stateful rule, for use in a stateful rule group.

" + }, + "StatefulRuleDirection":{ + "type":"string", + "enum":[ + "FORWARD", + "ANY" + ] + }, + "StatefulRuleGroupReference":{ + "type":"structure", + "required":["ResourceArn"], + "members":{ + "ResourceArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the stateful rule group.

" + } + }, + "documentation":"

Identifier for a single stateful rule group, used in a firewall policy to refer to a rule group.

" + }, + "StatefulRuleGroupReferences":{ + "type":"list", + "member":{"shape":"StatefulRuleGroupReference"} + }, + "StatefulRuleProtocol":{ + "type":"string", + "enum":[ + "IP", + "TCP", + "UDP", + "ICMP", + "HTTP", + "FTP", + "TLS", + "SMB", + "DNS", + "DCERPC", + "SSH", + "SMTP", + "IMAP", + "MSN", + "KRB5", + "IKEV2", + "TFTP", + "NTP", + "DHCP" + ] + }, + "StatefulRules":{ + "type":"list", + "member":{"shape":"StatefulRule"} + }, + "StatelessActions":{ + "type":"list", + "member":{"shape":"CollectionMember_String"} + }, + "StatelessRule":{ + "type":"structure", + "required":[ + "RuleDefinition", + "Priority" + ], + "members":{ + "RuleDefinition":{ + "shape":"RuleDefinition", + "documentation":"

Defines the stateless 5-tuple packet inspection criteria and the action to take on a packet that matches the criteria.

" + }, + "Priority":{ + "shape":"Priority", + "documentation":"

A setting that indicates the order in which to run this rule relative to all of the rules that are defined for a stateless rule group. Network Firewall evaluates the rules in a rule group starting with the lowest priority setting. You must ensure that the priority settings are unique for the rule group.

Each stateless rule group uses exactly one StatelessRulesAndCustomActions object, and each StatelessRulesAndCustomActions contains exactly one StatelessRules object. To ensure unique priority settings for your rule groups, set unique priorities for the stateless rules that you define inside any single StatelessRules object.

You can change the priority settings of your rules at any time. To make it easier to insert rules later, number them so there's a wide range in between, for example use 100, 200, and so on.

" + } + }, + "documentation":"

A single stateless rule. This is used in StatelessRulesAndCustomActions.

" + }, + "StatelessRuleGroupReference":{ + "type":"structure", + "required":[ + "ResourceArn", + "Priority" + ], + "members":{ + "ResourceArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the stateless rule group.

" + }, + "Priority":{ + "shape":"Priority", + "documentation":"

An integer setting that indicates the order in which to run the stateless rule groups in a single FirewallPolicy. Network Firewall applies each stateless rule group to a packet starting with the group that has the lowest priority setting. You must ensure that the priority settings are unique within each policy.

" + } + }, + "documentation":"

Identifier for a single stateless rule group, used in a firewall policy to refer to the rule group.

" + }, + "StatelessRuleGroupReferences":{ + "type":"list", + "member":{"shape":"StatelessRuleGroupReference"} + }, + "StatelessRules":{ + "type":"list", + "member":{"shape":"StatelessRule"} + }, + "StatelessRulesAndCustomActions":{ + "type":"structure", + "required":["StatelessRules"], + "members":{ + "StatelessRules":{ + "shape":"StatelessRules", + "documentation":"

Defines the set of stateless rules for use in a stateless rule group.

" + }, + "CustomActions":{ + "shape":"CustomActions", + "documentation":"

Defines an array of individual custom action definitions that are available for use by the stateless rules in this StatelessRulesAndCustomActions specification. You name each custom action that you define, and then you can use it by name in your StatelessRule RuleDefinition Actions specification.

" + } + }, + "documentation":"

Stateless inspection criteria. Each stateless rule group uses exactly one of these data types to define its stateless rules.

" + }, + "SubnetMapping":{ + "type":"structure", + "required":["SubnetId"], + "members":{ + "SubnetId":{ + "shape":"CollectionMember_String", + "documentation":"

The unique identifier for the subnet.

" + } + }, + "documentation":"

The ID for a subnet that you want to associate with the firewall. This is used with CreateFirewall and AssociateSubnets. AWS Network Firewall creates an instance of the associated firewall in each subnet that you specify, to filter traffic in the subnet's Availability Zone.

" + }, + "SubnetMappings":{ + "type":"list", + "member":{"shape":"SubnetMapping"} + }, + "SyncState":{ + "type":"structure", + "members":{ + "Attachment":{ + "shape":"Attachment", + "documentation":"

The attachment status of the firewall's association with a single VPC subnet. For each configured subnet, Network Firewall creates the attachment by instantiating the firewall endpoint in the subnet so that it's ready to take traffic. This is part of the FirewallStatus.

" + }, + "Config":{ + "shape":"SyncStateConfig", + "documentation":"

The configuration status of the firewall endpoint in a single VPC subnet. Network Firewall provides each endpoint with the rules that are configured in the firewall policy. Each time you add a subnet or modify the associated firewall policy, Network Firewall synchronizes the rules in the endpoint, so it can properly filter network traffic. This is part of the FirewallStatus.

" + } + }, + "documentation":"

The status of the firewall endpoint and firewall policy configuration for a single VPC subnet.

For each VPC subnet that you associate with a firewall, AWS Network Firewall does the following:

  • Instantiates a firewall endpoint in the subnet, ready to take traffic.

  • Configures the endpoint with the current firewall policy settings, to provide the filtering behavior for the endpoint.

When you update a firewall, for example to add a subnet association or change a rule group in the firewall policy, the affected sync states reflect out-of-sync or not ready status until the changes are complete.

" + }, + "SyncStateConfig":{ + "type":"map", + "key":{"shape":"ResourceName"}, + "value":{"shape":"PerObjectStatus"} + }, + "SyncStates":{ + "type":"map", + "key":{"shape":"AvailabilityZone"}, + "value":{"shape":"SyncState"} + }, + "TCPFlag":{ + "type":"string", + "enum":[ + "FIN", + "SYN", + "RST", + "PSH", + "ACK", + "URG", + "ECE", + "CWR" + ] + }, + "TCPFlagField":{ + "type":"structure", + "required":["Flags"], + "members":{ + "Flags":{ + "shape":"Flags", + "documentation":"

Used in conjunction with the Masks setting to define the flags that must be set and flags that must not be set in order for the packet to match. This setting can only specify values that are also specified in the Masks setting.

For the flags that are specified in the masks setting, the following must be true for the packet to match:

  • The ones that are set in this flags setting must be set in the packet.

  • The ones that are not set in this flags setting must also not be set in the packet.

" + }, + "Masks":{ + "shape":"Flags", + "documentation":"

The set of flags to consider in the inspection. To inspect all flags in the valid values list, leave this with no setting.

" + } + }, + "documentation":"

TCP flags and masks to inspect packets for, used in stateless rules MatchAttributes settings.

" + }, + "TCPFlags":{ + "type":"list", + "member":{"shape":"TCPFlagField"} + }, + "Tag":{ + "type":"structure", + "required":[ + "Key", + "Value" + ], + "members":{ + "Key":{ + "shape":"TagKey", + "documentation":"

The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as \"customer.\" Tag keys are case-sensitive.

" + }, + "Value":{ + "shape":"TagValue", + "documentation":"

The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as \"companyA\" or \"companyB.\" Tag values are case-sensitive.

" + } + }, + "documentation":"

A key:value pair associated with an AWS resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as \"environment\") and the tag value represents a specific value within that category (such as \"test,\" \"development,\" or \"production\"). You can add up to 50 tags to each AWS resource.

" + }, + "TagKey":{ + "type":"string", + "max":128, + "min":1, + "pattern":"^.*$" + }, + "TagKeyList":{ + "type":"list", + "member":{"shape":"TagKey"}, + "max":200, + "min":1 + }, + "TagList":{ + "type":"list", + "member":{"shape":"Tag"}, + "max":200, + "min":1 + }, + "TagResourceRequest":{ + "type":"structure", + "required":[ + "ResourceArn", + "Tags" + ], + "members":{ + "ResourceArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the resource.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

" + } + } + }, + "TagResourceResponse":{ + "type":"structure", + "members":{ + } + }, + "TagValue":{ + "type":"string", + "max":256, + "min":0, + "pattern":"^.*$" + }, + "TagsPaginationMaxResults":{ + "type":"integer", + "max":100, + "min":0 + }, + "TargetType":{ + "type":"string", + "enum":[ + "TLS_SNI", + "HTTP_HOST" + ] + }, + "TargetTypes":{ + "type":"list", + "member":{"shape":"TargetType"} + }, + "ThrottlingException":{ + "type":"structure", + "members":{ + "Message":{"shape":"ErrorMessage"} + }, + "documentation":"

Unable to process the request due to throttling limitations.

", + "exception":true + }, + "UnsupportedOperationException":{ + "type":"structure", + "members":{ + "Message":{"shape":"ErrorMessage"} + }, + "documentation":"

The operation you requested isn't supported by Network Firewall.

", + "exception":true + }, + "UntagResourceRequest":{ + "type":"structure", + "required":[ + "ResourceArn", + "TagKeys" + ], + "members":{ + "ResourceArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the resource.

" + }, + "TagKeys":{ + "shape":"TagKeyList", + "documentation":"

" + } + } + }, + "UntagResourceResponse":{ + "type":"structure", + "members":{ + } + }, + "UpdateFirewallDeleteProtectionRequest":{ + "type":"structure", + "required":["DeleteProtection"], + "members":{ + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request.

To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.

To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token.

" + }, + "FirewallArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall.

You must specify the ARN or the name, and you can specify both.

" + }, + "FirewallName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall. You can't change the name of a firewall after you create it.

You must specify the ARN or the name, and you can specify both.

" + }, + "DeleteProtection":{ + "shape":"Boolean", + "documentation":"

A flag indicating whether it is possible to delete the firewall. A setting of TRUE indicates that the firewall is protected against deletion. Use this setting to protect against accidentally deleting a firewall that is in use. When you create a firewall, the operation initializes this flag to TRUE.

" + } + } + }, + "UpdateFirewallDeleteProtectionResponse":{ + "type":"structure", + "members":{ + "FirewallArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall.

" + }, + "FirewallName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall. You can't change the name of a firewall after you create it.

" + }, + "DeleteProtection":{ + "shape":"Boolean", + "documentation":"

" + }, + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request.

To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.

To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token.

" + } + } + }, + "UpdateFirewallDescriptionRequest":{ + "type":"structure", + "members":{ + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request.

To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.

To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token.

" + }, + "FirewallArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall.

You must specify the ARN or the name, and you can specify both.

" + }, + "FirewallName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall. You can't change the name of a firewall after you create it.

You must specify the ARN or the name, and you can specify both.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

The new description for the firewall. If you omit this setting, Network Firewall removes the description for the firewall.

" + } + } + }, + "UpdateFirewallDescriptionResponse":{ + "type":"structure", + "members":{ + "FirewallArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall.

" + }, + "FirewallName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall. You can't change the name of a firewall after you create it.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

A description of the firewall.

" + }, + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request.

To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.

To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token.

" + } + } + }, + "UpdateFirewallPolicyChangeProtectionRequest":{ + "type":"structure", + "required":["FirewallPolicyChangeProtection"], + "members":{ + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request.

To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.

To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token.

" + }, + "FirewallArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall.

You must specify the ARN or the name, and you can specify both.

" + }, + "FirewallName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall. You can't change the name of a firewall after you create it.

You must specify the ARN or the name, and you can specify both.

" + }, + "FirewallPolicyChangeProtection":{ + "shape":"Boolean", + "documentation":"

A setting indicating whether the firewall is protected against a change to the firewall policy association. Use this setting to protect against accidentally modifying the firewall policy for a firewall that is in use. When you create a firewall, the operation initializes this setting to TRUE.

" + } + } + }, + "UpdateFirewallPolicyChangeProtectionResponse":{ + "type":"structure", + "members":{ + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request.

To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.

To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token.

" + }, + "FirewallArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall.

" + }, + "FirewallName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall. You can't change the name of a firewall after you create it.

" + }, + "FirewallPolicyChangeProtection":{ + "shape":"Boolean", + "documentation":"

A setting indicating whether the firewall is protected against a change to the firewall policy association. Use this setting to protect against accidentally modifying the firewall policy for a firewall that is in use. When you create a firewall, the operation initializes this setting to TRUE.

" + } + } + }, + "UpdateFirewallPolicyRequest":{ + "type":"structure", + "required":[ + "UpdateToken", + "FirewallPolicy" + ], + "members":{ + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

A token used for optimistic locking. Network Firewall returns a token to your requests that access the firewall policy. The token marks the state of the policy resource at the time of the request.

To make changes to the policy, you provide the token in your request. Network Firewall uses the token to ensure that the policy hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the firewall policy again to get a current copy of it with current token. Reapply your changes as needed, then try the operation again using the new token.

" + }, + "FirewallPolicyArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall policy.

You must specify the ARN or the name, and you can specify both.

" + }, + "FirewallPolicyName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it.

You must specify the ARN or the name, and you can specify both.

" + }, + "FirewallPolicy":{ + "shape":"FirewallPolicy", + "documentation":"

The updated firewall policy to use for the firewall.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

A description of the firewall policy.

" + }, + "DryRun":{ + "shape":"Boolean", + "documentation":"

Indicates whether you want Network Firewall to just check the validity of the request, rather than run the request.

If set to TRUE, Network Firewall checks whether the request can run successfully, but doesn't actually make the requested changes. The call returns the value that the request would return if you ran it with dry run set to FALSE, but doesn't make additions or changes to your resources. This option allows you to make sure that you have the required permissions to run the request and that your request parameters are valid.

If set to FALSE, Network Firewall makes the requested changes to your resources.

" + } + } + }, + "UpdateFirewallPolicyResponse":{ + "type":"structure", + "required":[ + "UpdateToken", + "FirewallPolicyResponse" + ], + "members":{ + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

A token used for optimistic locking. Network Firewall returns a token to your requests that access the firewall policy. The token marks the state of the policy resource at the time of the request.

To make changes to the policy, you provide the token in your request. Network Firewall uses the token to ensure that the policy hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the firewall policy again to get a current copy of it with current token. Reapply your changes as needed, then try the operation again using the new token.

" + }, + "FirewallPolicyResponse":{ + "shape":"FirewallPolicyResponse", + "documentation":"

The high-level properties of a firewall policy. This, along with the FirewallPolicy, define the policy. You can retrieve all objects for a firewall policy by calling DescribeFirewallPolicy.

" + } + } + }, + "UpdateLoggingConfigurationRequest":{ + "type":"structure", + "members":{ + "FirewallArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall.

You must specify the ARN or the name, and you can specify both.

" + }, + "FirewallName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall. You can't change the name of a firewall after you create it.

You must specify the ARN or the name, and you can specify both.

" + }, + "LoggingConfiguration":{ + "shape":"LoggingConfiguration", + "documentation":"

Defines how Network Firewall performs logging for a firewall. If you omit this setting, Network Firewall disables logging for the firewall.

" + } + } + }, + "UpdateLoggingConfigurationResponse":{ + "type":"structure", + "members":{ + "FirewallArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall.

" + }, + "FirewallName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall. You can't change the name of a firewall after you create it.

" + }, + "LoggingConfiguration":{"shape":"LoggingConfiguration"} + } + }, + "UpdateRuleGroupRequest":{ + "type":"structure", + "required":["UpdateToken"], + "members":{ + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

A token used for optimistic locking. Network Firewall returns a token to your requests that access the rule group. The token marks the state of the rule group resource at the time of the request.

To make changes to the rule group, you provide the token in your request. Network Firewall uses the token to ensure that the rule group hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the rule group again to get a current copy of it with a current token. Reapply your changes as needed, then try the operation again using the new token.

" + }, + "RuleGroupArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the rule group.

You must specify the ARN or the name, and you can specify both.

" + }, + "RuleGroupName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the rule group. You can't change the name of a rule group after you create it.

You must specify the ARN or the name, and you can specify both.

" + }, + "RuleGroup":{ + "shape":"RuleGroup", + "documentation":"

An object that defines the rule group rules.

You must provide either this rule group setting or a Rules setting, but not both.

" + }, + "Rules":{ + "shape":"RulesString", + "documentation":"

The name of a file containing stateful rule group rules specifications in Suricata flat format, with one rule per line. Use this to import your existing Suricata compatible rule groups.

You must provide either this rules setting or a populated RuleGroup setting, but not both.

You can provide your rule group specification in a file through this setting when you create or update your rule group. The call response returns a RuleGroup object that Network Firewall has populated from your file. Network Firewall uses the file contents to populate the rule group rules, but does not maintain a reference to the file or use the file in any way after performing the create or update. If you call DescribeRuleGroup to retrieve the rule group, Network Firewall returns rules settings inside a RuleGroup object.

" + }, + "Type":{ + "shape":"RuleGroupType", + "documentation":"

Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules.

This setting is required for requests that do not include the RuleGroupARN.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

A description of the rule group.

" + }, + "DryRun":{ + "shape":"Boolean", + "documentation":"

Indicates whether you want Network Firewall to just check the validity of the request, rather than run the request.

If set to TRUE, Network Firewall checks whether the request can run successfully, but doesn't actually make the requested changes. The call returns the value that the request would return if you ran it with dry run set to FALSE, but doesn't make additions or changes to your resources. This option allows you to make sure that you have the required permissions to run the request and that your request parameters are valid.

If set to FALSE, Network Firewall makes the requested changes to your resources.

" + } + } + }, + "UpdateRuleGroupResponse":{ + "type":"structure", + "required":[ + "UpdateToken", + "RuleGroupResponse" + ], + "members":{ + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

A token used for optimistic locking. Network Firewall returns a token to your requests that access the rule group. The token marks the state of the rule group resource at the time of the request.

To make changes to the rule group, you provide the token in your request. Network Firewall uses the token to ensure that the rule group hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the rule group again to get a current copy of it with a current token. Reapply your changes as needed, then try the operation again using the new token.

" + }, + "RuleGroupResponse":{ + "shape":"RuleGroupResponse", + "documentation":"

The high-level properties of a rule group. This, along with the RuleGroup, define the rule group. You can retrieve all objects for a rule group by calling DescribeRuleGroup.

" + } + } + }, + "UpdateSubnetChangeProtectionRequest":{ + "type":"structure", + "required":["SubnetChangeProtection"], + "members":{ + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request.

To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.

To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token.

" + }, + "FirewallArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall.

You must specify the ARN or the name, and you can specify both.

" + }, + "FirewallName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall. You can't change the name of a firewall after you create it.

You must specify the ARN or the name, and you can specify both.

" + }, + "SubnetChangeProtection":{ + "shape":"Boolean", + "documentation":"

A setting indicating whether the firewall is protected against changes to the subnet associations. Use this setting to protect against accidentally modifying the subnet associations for a firewall that is in use. When you create a firewall, the operation initializes this setting to TRUE.

" + } + } + }, + "UpdateSubnetChangeProtectionResponse":{ + "type":"structure", + "members":{ + "UpdateToken":{ + "shape":"UpdateToken", + "documentation":"

An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request.

To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it.

To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an InvalidTokenException. If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token.

" + }, + "FirewallArn":{ + "shape":"ResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the firewall.

" + }, + "FirewallName":{ + "shape":"ResourceName", + "documentation":"

The descriptive name of the firewall. You can't change the name of a firewall after you create it.

" + }, + "SubnetChangeProtection":{ + "shape":"Boolean", + "documentation":"

A setting indicating whether the firewall is protected against changes to the subnet associations. Use this setting to protect against accidentally modifying the subnet associations for a firewall that is in use. When you create a firewall, the operation initializes this setting to TRUE.

" + } + } + }, + "UpdateToken":{ + "type":"string", + "max":1024, + "min":1, + "pattern":"^([0-9a-f]{8})-([0-9a-f]{4}-){3}([0-9a-f]{12})$" + }, + "VariableDefinition":{ + "type":"string", + "min":1, + "pattern":"^.*$" + }, + "VariableDefinitionList":{ + "type":"list", + "member":{"shape":"VariableDefinition"} + }, + "VpcId":{ + "type":"string", + "max":128, + "min":1, + "pattern":"^vpc-[0-9a-f]+$" + }, + "VpcIds":{ + "type":"list", + "member":{"shape":"VpcId"} + } + }, + "documentation":"

This is the API Reference for AWS Network Firewall. This guide is for developers who need detailed information about the Network Firewall API actions, data types, and errors.

  • The REST API requires you to handle connection details, such as calculating signatures, handling request retries, and error handling. For general information about using the AWS REST APIs, see AWS APIs.

    To access Network Firewall using the REST API endpoint: https://network-firewall.<region>.amazonaws.com

  • Alternatively, you can use one of the AWS SDKs to access an API that's tailored to the programming language or platform that you're using. For more information, see AWS SDKs.

  • For descriptions of Network Firewall features, including and step-by-step instructions on how to use them through the Network Firewall console, see the Network Firewall Developer Guide.

Network Firewall is a stateful, managed, network firewall and intrusion detection and prevention service for Amazon Virtual Private Cloud (Amazon VPC). With Network Firewall, you can filter traffic at the perimeter of your VPC. This includes filtering traffic going to and coming from an internet gateway, NAT gateway, or over VPN or AWS Direct Connect. Network Firewall uses rules that are compatible with Suricata, a free, open source intrusion detection system (IDS) engine. For information about Suricata, see the Suricata website.

You can use Network Firewall to monitor and protect your VPC traffic in a number of ways. The following are just a few examples:

  • Allow domains or IP addresses for known AWS service endpoints, such as Amazon S3, and block all other forms of traffic.

  • Use custom lists of known bad domains to limit the types of domain names that your applications can access.

  • Perform deep packet inspection on traffic entering or leaving your VPC.

  • Rate limit traffic going from AWS to on-premises IP destinations.

  • Use stateful protocol detection to filter protocols like HTTPS, regardless of the port used.

To enable Network Firewall for your VPCs, you perform steps in both Amazon VPC and in Network Firewall. For information about using Amazon VPC, see Amazon VPC User Guide.

To start using Network Firewall, do the following:

  1. (Optional) If you don't already have a VPC that you want to protect, create it in Amazon VPC.

  2. In Amazon VPC, in each Availability Zone where you want to have a firewall endpoint, create a subnet for the sole use of Network Firewall.

  3. In Network Firewall, create stateless and stateful rule groups, to define the components of the network traffic filtering behavior that you want your firewall to have.

  4. In Network Firewall, create a firewall policy that uses your rule groups and specifies additional default traffic filtering behavior.

  5. In Network Firewall, create a firewall and specify your new firewall policy and VPC subnets. Network Firewall creates a firewall endpoint in each subnet that you specify, with the behavior that's defined in the firewall policy.

  6. In Amazon VPC, use ingress routing enhancements to route traffic through the new firewall endpoints.

" +} diff --git a/services/pom.xml b/services/pom.xml index 37b6b07a000e..d4f92c3a52e8 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -255,6 +255,7 @@ s3outposts databrew servicecatalogappregistry + networkfirewall The AWS Java SDK services https://aws.amazon.com/sdkforjava From 68dc6d6a2a7b56b3ee297a93e179c23b56fb7300 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 17 Nov 2020 19:05:51 +0000 Subject: [PATCH 211/339] Release 2.15.30. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.30.json | 42 +++++++++++++++++++ .../feature-AWSNetworkFirewall-9fd4b90.json | 6 --- .../feature-AmazonChime-445c0e2.json | 6 --- .../feature-AmazonConnectService-291654d.json | 6 --- .../feature-AmazonMacie2-08a15b1.json | 6 --- ...azonRelationalDatabaseService-f7d49af.json | 6 --- ...ure-FirewallManagementService-c10bd0c.json | 6 --- CHANGELOG.md | 25 +++++++++++ README.md | 8 ++-- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 292 files changed, 354 insertions(+), 323 deletions(-) create mode 100644 .changes/2.15.30.json delete mode 100644 .changes/next-release/feature-AWSNetworkFirewall-9fd4b90.json delete mode 100644 .changes/next-release/feature-AmazonChime-445c0e2.json delete mode 100644 .changes/next-release/feature-AmazonConnectService-291654d.json delete mode 100644 .changes/next-release/feature-AmazonMacie2-08a15b1.json delete mode 100644 .changes/next-release/feature-AmazonRelationalDatabaseService-f7d49af.json delete mode 100644 .changes/next-release/feature-FirewallManagementService-c10bd0c.json diff --git a/.changes/2.15.30.json b/.changes/2.15.30.json new file mode 100644 index 000000000000..9bcbb635553e --- /dev/null +++ b/.changes/2.15.30.json @@ -0,0 +1,42 @@ +{ + "version": "2.15.30", + "date": "2020-11-17", + "entries": [ + { + "type": "feature", + "category": "Amazon Relational Database Service", + "contributor": "", + "description": "Support copy-db-snapshot in the one region on cross clusters and local cluster for RDSonVmware. Add target-custom-availability-zone parameter to specify where a snapshot should be copied." + }, + { + "type": "feature", + "category": "Firewall Management Service", + "contributor": "", + "description": "Added Firewall Manager policy support for AWS Network Firewall resources." + }, + { + "type": "feature", + "category": "Amazon Connect Service", + "contributor": "", + "description": "This release adds support for user hierarchy group and user hierarchy structure. For details, see the Release Notes in the Amazon Connect Administrator Guide." + }, + { + "type": "feature", + "category": "Amazon Macie 2", + "contributor": "", + "description": "The Amazon Macie API now has a lastRunErrorStatus property to indicate if account- or bucket-level errors occurred during the run of a one-time classification job or the latest run of a recurring job." + }, + { + "type": "feature", + "category": "AWS Network Firewall", + "contributor": "", + "description": "(New Service) AWS Network Firewall is a managed network layer firewall service that makes it easy to secure your virtual private cloud (VPC) networks and block malicious traffic." + }, + { + "type": "feature", + "category": "Amazon Chime", + "contributor": "", + "description": "This release adds CRUD APIs for Amazon Chime SipMediaApplications and SipRules. It also adds the API for creating outbound PSTN calls for Amazon Chime meetings." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSNetworkFirewall-9fd4b90.json b/.changes/next-release/feature-AWSNetworkFirewall-9fd4b90.json deleted file mode 100644 index 502ef1eb2783..000000000000 --- a/.changes/next-release/feature-AWSNetworkFirewall-9fd4b90.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Network Firewall", - "contributor": "", - "description": "(New Service) AWS Network Firewall is a managed network layer firewall service that makes it easy to secure your virtual private cloud (VPC) networks and block malicious traffic." -} diff --git a/.changes/next-release/feature-AmazonChime-445c0e2.json b/.changes/next-release/feature-AmazonChime-445c0e2.json deleted file mode 100644 index b99dcb1eddf5..000000000000 --- a/.changes/next-release/feature-AmazonChime-445c0e2.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Chime", - "contributor": "", - "description": "This release adds CRUD APIs for Amazon Chime SipMediaApplications and SipRules. It also adds the API for creating outbound PSTN calls for Amazon Chime meetings." -} diff --git a/.changes/next-release/feature-AmazonConnectService-291654d.json b/.changes/next-release/feature-AmazonConnectService-291654d.json deleted file mode 100644 index 0cf7f6fc4ef0..000000000000 --- a/.changes/next-release/feature-AmazonConnectService-291654d.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Connect Service", - "contributor": "", - "description": "This release adds support for user hierarchy group and user hierarchy structure. For details, see the Release Notes in the Amazon Connect Administrator Guide." -} diff --git a/.changes/next-release/feature-AmazonMacie2-08a15b1.json b/.changes/next-release/feature-AmazonMacie2-08a15b1.json deleted file mode 100644 index a4f7a44a610f..000000000000 --- a/.changes/next-release/feature-AmazonMacie2-08a15b1.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Macie 2", - "contributor": "", - "description": "The Amazon Macie API now has a lastRunErrorStatus property to indicate if account- or bucket-level errors occurred during the run of a one-time classification job or the latest run of a recurring job." -} diff --git a/.changes/next-release/feature-AmazonRelationalDatabaseService-f7d49af.json b/.changes/next-release/feature-AmazonRelationalDatabaseService-f7d49af.json deleted file mode 100644 index a57f2b0aeb90..000000000000 --- a/.changes/next-release/feature-AmazonRelationalDatabaseService-f7d49af.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Relational Database Service", - "contributor": "", - "description": "Support copy-db-snapshot in the one region on cross clusters and local cluster for RDSonVmware. Add target-custom-availability-zone parameter to specify where a snapshot should be copied." -} diff --git a/.changes/next-release/feature-FirewallManagementService-c10bd0c.json b/.changes/next-release/feature-FirewallManagementService-c10bd0c.json deleted file mode 100644 index 6a9a76055d99..000000000000 --- a/.changes/next-release/feature-FirewallManagementService-c10bd0c.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Firewall Management Service", - "contributor": "", - "description": "Added Firewall Manager policy support for AWS Network Firewall resources." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index 11474d3aa2e3..5342683f8d62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,28 @@ +# __2.15.30__ __2020-11-17__ +## __AWS Network Firewall__ + - ### Features + - (New Service) AWS Network Firewall is a managed network layer firewall service that makes it easy to secure your virtual private cloud (VPC) networks and block malicious traffic. + +## __Amazon Chime__ + - ### Features + - This release adds CRUD APIs for Amazon Chime SipMediaApplications and SipRules. It also adds the API for creating outbound PSTN calls for Amazon Chime meetings. + +## __Amazon Connect Service__ + - ### Features + - This release adds support for user hierarchy group and user hierarchy structure. For details, see the Release Notes in the Amazon Connect Administrator Guide. + +## __Amazon Macie 2__ + - ### Features + - The Amazon Macie API now has a lastRunErrorStatus property to indicate if account- or bucket-level errors occurred during the run of a one-time classification job or the latest run of a recurring job. + +## __Amazon Relational Database Service__ + - ### Features + - Support copy-db-snapshot in the one region on cross clusters and local cluster for RDSonVmware. Add target-custom-availability-zone parameter to specify where a snapshot should be copied. + +## __Firewall Management Service__ + - ### Features + - Added Firewall Manager policy support for AWS Network Firewall resources. + # __2.15.29__ __2020-11-16__ ## __AWS CodePipeline__ - ### Features diff --git a/README.md b/README.md index 6a04db5adb4e..fe1b6c97f794 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.29 + 2.15.30 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.29 + 2.15.30 software.amazon.awssdk s3 - 2.15.29 + 2.15.30 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.29 + 2.15.30 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 12345618d248..5991f0b62074 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index ff360ead8da5..67d2503684a0 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index f4e29d698847..74bcd5153153 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.15.30-SNAPSHOT + 2.15.30 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 9c486fa139c7..76e3005e21bd 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 6dafe6422b8f..74a0c105d454 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.30-SNAPSHOT + 2.15.30 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 59701dbf97c7..92c5ac761e22 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.30-SNAPSHOT + 2.15.30 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 705d1c11ffa5..4458f6cda456 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.15.30-SNAPSHOT + 2.15.30 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index aff3214bdcba..c035981b6bb5 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.30-SNAPSHOT + 2.15.30 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index d8df10aa3715..b8868a72aaef 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.15.30-SNAPSHOT + 2.15.30 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 3e06c7c2ae0a..625c81b61c6c 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.30-SNAPSHOT + 2.15.30 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index bb186c220c8a..eb6c36a54395 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 8c7e12bdd90e..e9bc9b65522f 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index e6d708713263..185f31c0899c 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.30-SNAPSHOT + 2.15.30 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 5885ac876836..3d4b45378ef7 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.30-SNAPSHOT + 2.15.30 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index a65fb6666f6b..b2ed185d2ae5 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 72475178493e..5b6f51ad72e5 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index bf2772ca8425..03422fff030e 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.30-SNAPSHOT + 2.15.30 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index f509891004c1..8abfb7319a6e 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.15.30-SNAPSHOT + 2.15.30 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 341155f10a1c..9a63a5467a31 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 35f7b82a4948..553288db1734 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.15.30-SNAPSHOT + 2.15.30 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 9776c35db258..fc47dc351ace 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.15.30-SNAPSHOT + 2.15.30 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 1a0a2421330a..c7e8d38eb3ab 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.15.30-SNAPSHOT + 2.15.30 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 7ca316142be3..feffde5fdbab 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index a31729679f46..e1d9de3809e7 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 6c382968df0a..fb1b5a0c0da9 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.30-SNAPSHOT + 2.15.30 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index ce1042728815..ab0c3dd5e254 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.30-SNAPSHOT + 2.15.30 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index b247e85ea2a1..1b94e0904f6c 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.15.30-SNAPSHOT + 2.15.30 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 8648aea9460f..ee339124b733 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.15.30-SNAPSHOT + 2.15.30 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index ad444d44f7cf..4bd664de8fe9 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.15.30-SNAPSHOT + 2.15.30 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index a3c5cca0f2fc..3c3ecccd1e9b 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.15.30-SNAPSHOT + 2.15.30 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index b29ea82e7639..07e50e2a1034 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 8b92e3a8c341..aea2e03c142b 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.15.30-SNAPSHOT + 2.15.30 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 918783aa1328..3884cc19f1da 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.15.30-SNAPSHOT + 2.15.30 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index cdfde3d86b3f..7ef2cb171022 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.30-SNAPSHOT + 2.15.30 metric-publishers diff --git a/pom.xml b/pom.xml index 76c1ca8a5dc0..7ea2955f6678 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.30-SNAPSHOT + 2.15.30 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 0d6fbe0c5f79..50446abd426b 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.30-SNAPSHOT + 2.15.30 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 86792634be41..9a9ab5ec22b9 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.15.30-SNAPSHOT + 2.15.30 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index bd4d3c240a94..436046686162 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.30-SNAPSHOT + 2.15.30 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 293afe9612f1..aff56debfb18 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index ac424394da8c..910c26b1de61 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 5d066a99d540..c8b2ea5f7745 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index c04a3b619e39..f034ab3068bf 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index ef8721813961..d2dc06c57aab 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index fe58b1da3082..b81933d8225c 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index b81377040d65..a8532f529c95 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index fed2d85404d9..3867837c6085 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 47b249645e36..48c8817a6679 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index d404bfce59dc..495c5bdbdd05 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 005fe4e4fdd4..44c831176138 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 16293665a641..7fee277cc28f 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 12f2fd54c5fc..da76d74172fa 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 0a58bdf1915b..f6f576e20bf1 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 20e453425e7d..f147df4ddb95 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 704f355506e8..2b9935b69681 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index dba21aa67ecc..16997abe32a5 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 68443931c3bd..3d98772bc447 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 0520c8a806df..002da22b3753 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 484ef1967617..3daf56967698 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index dea59f4bc441..21e072a7ec2f 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 2586006f8237..7f17130c9c39 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 3d6c62f654c1..cd5c3f81eb89 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 57721feea4ae..e7cce8345ff2 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 7fa37d6a3982..af795689a092 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 69199d030f7f..1d54704a9acd 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 46c3bfa2ac0f..e112718e0a71 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 044f0d859fa2..0d6a2fcb1405 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index b327218913b2..c369a31f70e8 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 0d2e9c9b7fc5..17039540bb23 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 5fd52a42913f..50279708bd5f 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 6d650e4168f9..9ec4617aca86 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index d1f75c69d7d8..4f9519b2fd32 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 5a9c0f9bb44c..482dfaa7f2d6 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 9f139e0f5139..78d85d670665 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 02e8528a3017..ff7a211c740f 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 21bab830c303..974ee251f9aa 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 1833b33d6388..80eeb3eef472 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 4b876f23a246..31535de4de18 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index b963ef7f8850..af728a514570 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index bdb48ba807fb..6fbdc6c081ea 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index b7307d686279..a66e1ef8ab8f 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index f113dbac7d79..21bf775cbf67 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index a209d11244e5..af09ae361801 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index e4175f37684e..df9ac0d8f4a2 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 1ae45e1fffd9..e3547ec5565c 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 9ae7e9413fdb..1097b0d57bb2 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 80159b37cab5..2cbf2076276c 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index a222929bc8bd..2d850fb3d5a1 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 178a1ab038a2..9c7230141898 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index c92e9cb00efd..74bcaf1118bd 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index d6acaea8f8f7..a1dbf802361e 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 15be2f5839b7..970cbf321526 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 886cb63795c2..4b59a5d20fee 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 4dcfccd2789b..e6d4ae0b3bf6 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index ed9c8fe06bf5..4d18adab5518 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 3ed09acf70bf..3b50223c05b4 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 81542cc39fcc..95e6796d247f 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index 6bcd5d016442..56a0bd9eae75 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 493c809c6db5..71a4781b0ecc 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index bdc056346ac5..efd0b95016cf 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 42f56ff3dfa4..7ca60cdb324a 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 480ac106f42f..09d426d4c346 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 699c3a031039..8cd8a051ede8 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 89c25018adc2..d1a05578cdf6 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 63a9c6abf013..d7cbb9abc4a2 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 0aac83ddb4f0..00289d4f602a 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 50f20849b509..0117e3de2f27 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 71d7e4c93afb..3e330e4c3123 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 056e0970e2fb..10fd95f6f828 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 79419020f79f..f6a7628a5bb9 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 547d46248366..958721d5aac5 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index a8ea4d75b17e..ec4207259c6e 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 4253126bff14..52fc9318ffa5 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index f5d49409efda..8f6c2aaf81cd 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index ba592d6eb17a..6df9ef838b2f 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 2444a64ee50b..58c9393d8dcf 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index dcd923ea9fbc..daffc53893d5 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index acbb2a854f4c..289dfa25b322 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 7a6b4b8753cd..9f2ed8cb237b 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 9cc6f40210a8..a2bb463b56ca 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 1d8e65b14973..59df132fb1c7 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 4d3a19bfd650..34b8cacefebc 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 3fef7c85039f..60637219967f 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index ea5546214e19..ce03a25218ae 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index af1d6959a0ae..3d1f75fd273f 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 98e0724308cf..7b0559561406 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 8aafccee94e1..5e76c9217700 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index a33c353cbdfa..e673440d3d02 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 245607dce615..429a9f15e153 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 412020573c76..622364761688 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 814b3465da4d..fd52f5bd8d60 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 6e89fedc82f6..5a482ae93400 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 9a5da94eea3d..62fad421e8cc 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 4f4fe757cdd1..3564e221b0af 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index c1c92582ea54..48da5606b321 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index d2dbcbc0ab11..231d2d25e712 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index db1211ebf11e..4fab4edb812c 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index ac44114ade5c..c447a85cc835 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index b0a4a8b2f8bc..11624ba75b03 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 27d798c04a82..e0c440d0864f 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 9a128a648a16..1a5422b3874b 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 85b236a8247c..c259bd53d7c2 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 5cafa8043354..df5e2389a87d 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 729873dd45ed..9c1ede1b524a 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 7c96c2a5fb90..284df20492e3 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 0837a897cb42..c0089124cd3e 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 5327a872be1f..7a752170f3c6 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index fe762e1308b0..4b99a0836e32 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index ab00bebdd7e2..6f19eafb4587 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index edde9d428fb1..e79783ce7c1d 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 61c5906ce5cb..ec7862addfd5 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index d5dcb654220e..678f3d5388c0 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 4711783e4857..787ff901c816 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 6ff926d222c2..15d81ff5b6c2 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index dcdf37d49736..96444a87216a 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 594113f3e045..fd8c25c23523 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 624181a061ca..1b8781a9d973 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 03d46ecf2b2c..2e51513a1939 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index aec3618ac966..4e6de3bd2a65 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 09862f688e7f..9847de8e2862 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 98f1f52c4897..4825ba6b377c 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 4d017d208acb..f67e59386475 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 8167c7a688a3..c9734baa8ee8 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 186e6c50aa23..c4a570dfc147 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 2b199fea1841..4849098e650e 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 016a427ceb6a..8bc6658e84bd 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index ada422f57aee..e745ebdd4219 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 57fb4dc84cae..b4f09a8f887e 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 9aef1ff0688e..0e21d510b592 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 8ea479a95393..3c4afbcc785a 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index db396a89e9df..8d0388f6db40 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index c8bc28102127..a98cce0d815f 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index b1bcd4f7bd61..9d4c240774cb 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 0fbceeceaced..d374134a9aa5 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 78a24e8e388e..1ae6cc958639 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index c545408bb358..835c5638f3fa 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 9fbc6e99f9a8..0a3d19a0e66c 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 0f3a7e13c540..96b93bc890ff 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 08f449a5685c..70922ba99478 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index bf7fea18f0a0..23c358681959 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 75d407e58d75..5e16f02b3c71 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index e089c4f972ae..4f830310898a 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 9564980149ce..26c14058929d 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index a08660bcd152..bb1b20bdd7d5 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index f673431f69d9..a3f892682da8 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 718e1b1436ea..5236aba72c5f 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index b8a90450443c..0916e6b83c80 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index c4d5270d1043..672771f56bd0 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 9c00254813e9..e8737aca337d 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 4fc30fa65ffd..989027c7da1f 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 34a295204ec0..fe32ad5eeee2 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 9f9c8f74d0e6..58b7ba5cc880 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 09359bbc73d4..410edc611ac9 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 5a5ac6ceb022..a46f5b5c7824 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index feb2c80abb22..d2f5c38e9d00 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 1249d6f194cb..3edf2094a3c9 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 08b9156a575e..970855aee255 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index cad35cc22868..4a4704f4456b 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 182444941be5..84a5a561df4b 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 86b3bd2f0b05..85ce994fa545 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index da1bdf485828..6b2ab23a8b1d 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index ba67e019ee8e..bf63d898d93a 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index d95c4d438599..0082fe9bcef5 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index e82c1a5ac882..feaf2769ac7d 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index aba53c52c3bf..14b7be5859cf 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 92a301fb7ffb..e837d24d8641 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 7136b42ac9bb..48d237c2c5f3 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 1f2676dea167..f356aa0d50d0 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index d4f92c3a52e8..a94cf3d1db3c 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.30-SNAPSHOT + 2.15.30 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index a0122e08daca..3043962fc559 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 7b2c45238ad7..3a4ae9ff1954 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 5bfb74f6873e..8be0680edffe 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 085b7a37ea3b..087ed0187483 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 27326d4d9f3a..cc706537c220 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index a6d3d64109f6..9f05b553ae28 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 8401d17311e4..f880f25c2b3d 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 53e7aeade24e..746bd416c00d 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 06556c49e92c..1a5f582aa3a0 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 91f2059fb533..1f8fd0397634 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index fa1b6c213d27..806dd258770c 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 1a8755c61b01..4f72a304fd4a 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index d1796318fc2b..fb26496263ee 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 68891aa82964..2eae04f93369 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index f6729ae4d7c4..46cf0f53f91f 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 2855bd42b231..3e39ce17e225 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index ed2100d165d3..6fee8fd4d6b8 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 4b981bee54e5..9d580cf77b56 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index ab206e1f9d39..bd83166f13f1 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index ad09987b07c7..372ed4509aca 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 251fc69ca310..eed6a5f45d3d 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index db428386a64d..6547a81aac2b 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index fc51362ea9ec..b3081159ec67 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index b11d34cae623..0540c9e47c99 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 0f1ea873770f..0608e6133fa2 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 3f03697683c4..06be5e4b70f9 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 1e7312aae70e..3507f0d98faf 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 3e11ccab7f60..84fc77440aae 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index c992a97e895f..007e13f07eaa 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 2dcacdaa52b3..79240e12abd6 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index f51a85172292..4978387875dc 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index ca20e3501a84..9710270b610d 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 38c63cca61f5..b1565aab744a 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 238d3a054e77..5d9ceb5f0003 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index c1d244deb956..49051010d1e6 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 4025ffde563d..17cc8c42ad09 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index c8a275b0615f..dcc4c89071f4 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 0e6d21606806..3c310a34af98 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index e6de56c022b4..a6aaaa8c0222 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 45cc8ac36a1b..558bc0267add 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index e1fb88518da8..728b48ac4741 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 7c8ef525a18d..33a7a04fc4a0 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index ab7f82a04f46..ea1843d9abdc 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 1453485e26e9..301c7f621769 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index d2c70ac8bafb..04c4b3b788d2 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index f93584e3bac4..25f03d531368 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 7adabc791e82..ef43d28ad8c2 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 2a96e23e446b..4c9b752d4c32 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 01717463c7a1..d669897c6c01 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 43ec5e0954b7..895f51d3f267 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 1e7df01597ff..95504483203e 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 6936b6272f9f..2c7a2e2ea04b 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 0251fa809e71..5f8840909b9e 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 8d32480fd8aa..3c72c9048bca 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index b78e5e93dc28..94d4fce98675 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 5f37e4e5720d..2441637bf1d3 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 918b963ff025..3613fd9b9661 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index bf7d31afe411..0f1bf6ed7bbd 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 0a263da75bed..3554b8fec6be 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index b177d8e4e75e..694b8a808321 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index f9fe5dc6b7e0..19f7ecd96a74 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 5f1ba74561fe..b76101d45918 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 5db17b0464bf..4e5f50a952a9 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index d6202c1c9aee..39e1665da840 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30-SNAPSHOT + 2.15.30 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 6f6aaa5a0157..2540a94be50b 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.15.30-SNAPSHOT + 2.15.30 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index d6a60251f33a..939fb5a03676 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.15.30-SNAPSHOT + 2.15.30 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index e2b7d1bbd053..6cd18287dff2 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.15.30-SNAPSHOT + 2.15.30 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index f30f1ade2523..50bd6dc1893a 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.15.30-SNAPSHOT + 2.15.30 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index dfa0725d6374..0c47b08c0362 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.15.30-SNAPSHOT + 2.15.30 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index f6df0b95a0c1..c8c55676daa7 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.30-SNAPSHOT + 2.15.30 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index cc8d76b9c7cc..05d76b1032c1 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.15.30-SNAPSHOT + 2.15.30 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index cb5276b609d8..0b1618bbc32d 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.15.30-SNAPSHOT + 2.15.30 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 16b88458f1c9..246b40ec3c3a 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.15.30-SNAPSHOT + 2.15.30 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 0985ed5aa7e7..a312e08bf99e 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.15.30-SNAPSHOT + 2.15.30 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 5ca70a3ce703..e22a25dee2e3 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.30-SNAPSHOT + 2.15.30 4.0.0 From dd171d2a05940103223dea49fe1ca1cefd1b2bb7 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 17 Nov 2020 19:32:00 +0000 Subject: [PATCH 212/339] Update to next snapshot version: 2.15.31-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/pom.xml | 2 +- services/servicecatalogappregistry/pom.xml | 2 +- services/servicediscovery/pom.xml | 2 +- services/servicequotas/pom.xml | 2 +- services/ses/pom.xml | 2 +- services/sesv2/pom.xml | 2 +- services/sfn/pom.xml | 2 +- services/shield/pom.xml | 2 +- services/signer/pom.xml | 2 +- services/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 283 files changed, 283 insertions(+), 283 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 5991f0b62074..ad0e947191b2 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 67d2503684a0..3b71f101d557 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 74bcd5153153..aff22c3cd369 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.15.30 + 2.15.31-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 76e3005e21bd..042f01c57bd3 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 74a0c105d454..fc573704d768 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.30 + 2.15.31-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 92c5ac761e22..ae3f80e59085 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.30 + 2.15.31-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 4458f6cda456..a0e15dc5e47e 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.15.30 + 2.15.31-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index c035981b6bb5..ec8588b4e980 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.30 + 2.15.31-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index b8868a72aaef..216e68716f8c 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.15.30 + 2.15.31-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 625c81b61c6c..c1a632e78ca4 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.30 + 2.15.31-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index eb6c36a54395..d9b58fbbc1e1 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index e9bc9b65522f..343e505e8845 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 185f31c0899c..308e57f1385a 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.30 + 2.15.31-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 3d4b45378ef7..7afae965ce37 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.30 + 2.15.31-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index b2ed185d2ae5..67431cb8de4d 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 5b6f51ad72e5..92134113dbf1 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 03422fff030e..bc7437199da1 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.30 + 2.15.31-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 8abfb7319a6e..f1cb19e311b9 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.15.30 + 2.15.31-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 9a63a5467a31..f89c1a83442d 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 553288db1734..a3fae45305b8 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.15.30 + 2.15.31-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index fc47dc351ace..9ce1b504d34e 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.15.30 + 2.15.31-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index c7e8d38eb3ab..207f5b0c234a 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.15.30 + 2.15.31-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index feffde5fdbab..eb9940783b6d 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index e1d9de3809e7..e1de21caacd9 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index fb1b5a0c0da9..afb295f86757 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.30 + 2.15.31-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index ab0c3dd5e254..8b009bfafc8e 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.30 + 2.15.31-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 1b94e0904f6c..17d82ca67ad9 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.15.30 + 2.15.31-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index ee339124b733..bb324b3ed04e 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.15.30 + 2.15.31-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 4bd664de8fe9..62508ba3de46 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.15.30 + 2.15.31-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 3c3ecccd1e9b..bcff4d19c155 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.15.30 + 2.15.31-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 07e50e2a1034..f5b11ca9d3af 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index aea2e03c142b..2f5ebd060b17 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.15.30 + 2.15.31-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 3884cc19f1da..0100a674641d 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.15.30 + 2.15.31-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 7ef2cb171022..dafdcc0660db 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.30 + 2.15.31-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 7ea2955f6678..e4888509c1eb 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.30 + 2.15.31-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 50446abd426b..6168fc0a2c0a 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.30 + 2.15.31-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 9a9ab5ec22b9..d43e096be505 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.15.30 + 2.15.31-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 436046686162..e15144ef84c9 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.30 + 2.15.31-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index aff56debfb18..13cb206a9a8a 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 910c26b1de61..2c69bc762045 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index c8b2ea5f7745..a909ccac7932 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index f034ab3068bf..a9203547804f 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index d2dc06c57aab..ff4c5c403348 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index b81933d8225c..2bebe3fc6514 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index a8532f529c95..27c743bd1aa4 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 3867837c6085..2bd6ff1979f9 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 48c8817a6679..2999d93af94e 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 495c5bdbdd05..0f2acc26110a 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 44c831176138..de1f8b74580a 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 7fee277cc28f..f8630fd6dc58 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index da76d74172fa..51de748c0245 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index f6f576e20bf1..87516793f7a5 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index f147df4ddb95..93fa52e59116 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 2b9935b69681..ef4fa52533a0 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 16997abe32a5..dacb4481e52f 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 3d98772bc447..69807b97181e 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 002da22b3753..2ee877ea3087 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 3daf56967698..4e04291ee651 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 21e072a7ec2f..a6b23ae67fa8 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 7f17130c9c39..9506fafcf5e1 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index cd5c3f81eb89..9572c1106cf6 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index e7cce8345ff2..647a396b3223 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index af795689a092..86f0e814be7c 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 1d54704a9acd..1d95d8c1f870 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index e112718e0a71..41ad6f1ef7d6 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 0d6a2fcb1405..1657c8a33ee5 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index c369a31f70e8..69a2836430ba 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 17039540bb23..7bbf951f7523 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 50279708bd5f..42134ef63a0a 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 9ec4617aca86..f435cb03e90a 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 4f9519b2fd32..ab443b5cd361 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 482dfaa7f2d6..c076cdab5d7a 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 78d85d670665..92a6a0be43f2 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index ff7a211c740f..1beaab5d87d3 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 974ee251f9aa..832dab3dde3b 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 80eeb3eef472..56cfb205a083 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 31535de4de18..922268a0d6ef 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index af728a514570..1b916c2d74a0 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 6fbdc6c081ea..037135b7eb9e 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index a66e1ef8ab8f..744cca64998c 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 21bf775cbf67..c220c1bd8daf 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index af09ae361801..ef69009d777b 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index df9ac0d8f4a2..e689eccd12e3 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index e3547ec5565c..acb19c839c06 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 1097b0d57bb2..e88febee1848 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 2cbf2076276c..f077daf2470e 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 2d850fb3d5a1..66ecd278c313 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 9c7230141898..0e2bbc8ec27f 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 74bcaf1118bd..4929c00fdb5d 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index a1dbf802361e..f8989845c240 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 970cbf321526..b9453de356a3 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 4b59a5d20fee..41009132428c 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index e6d4ae0b3bf6..13051848a55c 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 4d18adab5518..87321fd2fe06 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 3b50223c05b4..c17ed1b2016b 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 95e6796d247f..f9a9e897a8ca 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index 56a0bd9eae75..a27b95031a58 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 71a4781b0ecc..3a2d8a3a986e 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index efd0b95016cf..70621ee653f6 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 7ca60cdb324a..80696b4f1a13 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 09d426d4c346..83594b1334fd 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 8cd8a051ede8..a7342154f093 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index d1a05578cdf6..39a2baf274de 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index d7cbb9abc4a2..2b25457ef400 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 00289d4f602a..f99496bb436c 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 0117e3de2f27..bda2d81516e6 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 3e330e4c3123..898990cb0cff 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 10fd95f6f828..313edbc576e1 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index f6a7628a5bb9..0d5c23f90aff 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 958721d5aac5..069925fb238a 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index ec4207259c6e..e00f66873d6a 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 52fc9318ffa5..72369a5dca3d 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 8f6c2aaf81cd..66dcf07a544f 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 6df9ef838b2f..ae3c6588cb0b 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 58c9393d8dcf..14a3a689ed3a 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index daffc53893d5..3b4395cf0195 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 289dfa25b322..018e6bf18a4e 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 9f2ed8cb237b..f83d4ae697f6 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index a2bb463b56ca..944e5ba4d389 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 59df132fb1c7..0b89ee93833b 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 34b8cacefebc..54bc0cf3b4c7 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 60637219967f..eb29363b65a4 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index ce03a25218ae..55a47425caa9 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 3d1f75fd273f..c4a8951a5748 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 7b0559561406..cbb7b4cf19c1 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 5e76c9217700..689a8a23c872 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index e673440d3d02..2e0904a2e6cf 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 429a9f15e153..0d6fa3bf87dd 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 622364761688..adcffd1bfd84 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index fd52f5bd8d60..3aacf9275a47 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 5a482ae93400..9b6dbec5313a 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 62fad421e8cc..b971f9552fad 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 3564e221b0af..9c7c864821f6 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 48da5606b321..d4d1a85c6611 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 231d2d25e712..bd3c957f38e3 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 4fab4edb812c..fb3305271fd5 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index c447a85cc835..0fdcc72cc960 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 11624ba75b03..b327d7ce0b15 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index e0c440d0864f..f8251e3e67f8 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 1a5422b3874b..e96e274d5d2b 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index c259bd53d7c2..5059e70d14e0 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index df5e2389a87d..65700af3833c 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 9c1ede1b524a..f878963c4169 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 284df20492e3..72e4a166da88 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index c0089124cd3e..4410a7fd3193 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 7a752170f3c6..076c5a10b70a 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 4b99a0836e32..f4d0b3354d12 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 6f19eafb4587..41ed8f09a5c4 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index e79783ce7c1d..8910518911d9 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index ec7862addfd5..f6686ef86fe7 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 678f3d5388c0..9d6b538d7242 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 787ff901c816..c84475d1ec33 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 15d81ff5b6c2..9458945bc037 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 96444a87216a..645588a54c0a 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index fd8c25c23523..3e8c2e389c99 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 1b8781a9d973..a74fef952bb1 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 2e51513a1939..de61d316207c 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 4e6de3bd2a65..6cc4b7127b38 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 9847de8e2862..acd813a7c861 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 4825ba6b377c..dc9be99502b5 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index f67e59386475..0d668bf62767 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index c9734baa8ee8..e74775c4e2cc 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index c4a570dfc147..990b73a56dcb 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 4849098e650e..258c9a75c0e4 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 8bc6658e84bd..dc97b5f4def4 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index e745ebdd4219..76b91f136110 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index b4f09a8f887e..a59116a487f7 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 0e21d510b592..c76c9df0392f 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 3c4afbcc785a..4abe3f8a213e 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 8d0388f6db40..156d8b4bd8b0 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index a98cce0d815f..7854d5faf0ce 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 9d4c240774cb..8678cabb7ebd 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index d374134a9aa5..14a2fefd7a6f 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 1ae6cc958639..e8b8a00ccdc2 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 835c5638f3fa..54a3f1ad577f 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 0a3d19a0e66c..30ab6684f78e 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 96b93bc890ff..4643cb87f5ab 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 70922ba99478..8e8a4414174c 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 23c358681959..b08215a738a5 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 5e16f02b3c71..bfe37b6ade69 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 4f830310898a..ed0d865190df 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 26c14058929d..5130d7364aa3 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index bb1b20bdd7d5..4908845155c4 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index a3f892682da8..17a8dae67adf 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 5236aba72c5f..51a6b5945506 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 0916e6b83c80..b9c927bb4627 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 672771f56bd0..2db08b5616c1 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index e8737aca337d..2721d3bcf2a2 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 989027c7da1f..2bf05e0f5f14 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index fe32ad5eeee2..d4314ea33e4e 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 58b7ba5cc880..8eba67f4443a 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 410edc611ac9..c4d5335dc7d1 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index a46f5b5c7824..ff472e6c59bc 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index d2f5c38e9d00..3ff43bcc9e3f 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 3edf2094a3c9..ea0a955e624f 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 970855aee255..6e62d89ea6ab 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 4a4704f4456b..601adb905314 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 84a5a561df4b..b1e207cd8685 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 85ce994fa545..584c5bafddb9 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 6b2ab23a8b1d..2db62b9421ac 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index bf63d898d93a..ab967efa1a9d 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 0082fe9bcef5..bfde124ae21e 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index feaf2769ac7d..b7385ab261d7 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 14b7be5859cf..6cbb09894095 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index e837d24d8641..9b2e604e5dba 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 48d237c2c5f3..333d70d69631 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index f356aa0d50d0..22393078fea2 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index a94cf3d1db3c..868745500471 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.30 + 2.15.31-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 3043962fc559..e8b72c762a98 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 3a4ae9ff1954..8cb4f73aa8bb 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 8be0680edffe..977e7a4c40e5 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 087ed0187483..e7efb53d9d0d 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index cc706537c220..1fba1217a39f 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 9f05b553ae28..a58c613ac833 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index f880f25c2b3d..f8cdfe4baab7 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 746bd416c00d..5f3ce95a710c 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 1a5f582aa3a0..a8566b24b7f5 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 1f8fd0397634..8afd02e929cb 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 806dd258770c..039af9cac03f 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 4f72a304fd4a..ade159057fa0 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index fb26496263ee..d3ee1c85bd8e 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 2eae04f93369..c4619245a500 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 46cf0f53f91f..6126441642ae 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 3e39ce17e225..4b10017037ac 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 6fee8fd4d6b8..385ea8044efc 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 9d580cf77b56..8f6c23ee1223 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index bd83166f13f1..67b308995c15 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 372ed4509aca..2d757c9753e7 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index eed6a5f45d3d..2fded629da56 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 6547a81aac2b..a51a19b04138 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index b3081159ec67..e73c46e621e5 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 0540c9e47c99..e28814f4ca61 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 0608e6133fa2..0867fb15f177 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 06be5e4b70f9..df0c6b30adde 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 3507f0d98faf..438da8acbaa7 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 84fc77440aae..920f1d7dee2e 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index 007e13f07eaa..c3898f122c26 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 79240e12abd6..9e64589c1f1c 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 4978387875dc..8756afd6b59d 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 9710270b610d..bac89afa245a 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index b1565aab744a..a75eee88a603 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 5d9ceb5f0003..d09151360962 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 49051010d1e6..717b0b8146be 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 17cc8c42ad09..363d52430c65 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index dcc4c89071f4..3c9541769c34 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 3c310a34af98..7aa2a0de9fdf 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index a6aaaa8c0222..118a98f45c89 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 558bc0267add..d8d0de13740a 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 728b48ac4741..9031b582588a 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 33a7a04fc4a0..c0c1beafa945 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index ea1843d9abdc..156b4b0701ce 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 301c7f621769..21aee4cc555d 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 04c4b3b788d2..ade5776fbf45 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 25f03d531368..c5847026be01 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index ef43d28ad8c2..7505e5400b88 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 4c9b752d4c32..f7afb2a44cbb 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index d669897c6c01..04dc7ee06a54 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 895f51d3f267..c4f239ccd9fc 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 95504483203e..656562bc4939 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 2c7a2e2ea04b..5c72ee4dcf7e 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 5f8840909b9e..53b60e6c4eb2 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 3c72c9048bca..82760432670e 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 94d4fce98675..f405f4a87c9e 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 2441637bf1d3..15e3f56c81f4 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 3613fd9b9661..ac831742116e 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 0f1bf6ed7bbd..7e86887ee957 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 3554b8fec6be..439edf8e3f3e 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 694b8a808321..13d6196bf1f8 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 19f7ecd96a74..4ca9d1d5b11c 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index b76101d45918..3644700fc06e 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 4e5f50a952a9..e3f3740b26e4 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 39e1665da840..771a1aab24f2 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.30 + 2.15.31-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 2540a94be50b..caa497fbe9d9 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.15.30 + 2.15.31-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 939fb5a03676..458cfdad1cf8 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.15.30 + 2.15.31-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 6cd18287dff2..c6622360bb46 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.15.30 + 2.15.31-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 50bd6dc1893a..c129498dce29 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.15.30 + 2.15.31-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 0c47b08c0362..d32820c09db1 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.15.30 + 2.15.31-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index c8c55676daa7..565fac139f0c 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.30 + 2.15.31-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 05d76b1032c1..b8e524b42959 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.15.30 + 2.15.31-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 0b1618bbc32d..8f918cbc0e34 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.15.30 + 2.15.31-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 246b40ec3c3a..b80ad4e72554 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.15.30 + 2.15.31-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index a312e08bf99e..60306eb4211e 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.15.30 + 2.15.31-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index e22a25dee2e3..57789f33cbb9 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.30 + 2.15.31-SNAPSHOT 4.0.0 From c0f88f152b0a545062f96979d7cd6ad96a94cdb9 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 18 Nov 2020 19:03:44 +0000 Subject: [PATCH 213/339] AWS CloudFormation Update: This release adds ChangeSets support for Nested Stacks. ChangeSets offer a preview of how proposed changes to a stack might impact existing resources or create new ones. --- .../feature-AWSCloudFormation-90c0674.json | 6 ++ .../codegen-resources/service-2.json | 55 ++++++++++++++++--- 2 files changed, 52 insertions(+), 9 deletions(-) create mode 100644 .changes/next-release/feature-AWSCloudFormation-90c0674.json diff --git a/.changes/next-release/feature-AWSCloudFormation-90c0674.json b/.changes/next-release/feature-AWSCloudFormation-90c0674.json new file mode 100644 index 000000000000..5b67d77990cb --- /dev/null +++ b/.changes/next-release/feature-AWSCloudFormation-90c0674.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS CloudFormation", + "contributor": "", + "description": "This release adds ChangeSets support for Nested Stacks. ChangeSets offer a preview of how proposed changes to a stack might impact existing resources or create new ones." +} diff --git a/services/cloudformation/src/main/resources/codegen-resources/service-2.json b/services/cloudformation/src/main/resources/codegen-resources/service-2.json index 48e7d3e601c3..a2c6a009005a 100644 --- a/services/cloudformation/src/main/resources/codegen-resources/service-2.json +++ b/services/cloudformation/src/main/resources/codegen-resources/service-2.json @@ -55,7 +55,7 @@ {"shape":"InsufficientCapabilitiesException"}, {"shape":"LimitExceededException"} ], - "documentation":"

Creates a list of changes that will be applied to a stack so that you can review the changes before executing them. You can create a change set for a stack that doesn't exist or an existing stack. If you create a change set for a stack that doesn't exist, the change set shows all of the resources that AWS CloudFormation will create. If you create a change set for an existing stack, AWS CloudFormation compares the stack's information with the information that you submit in the change set and lists the differences. Use change sets to understand which resources AWS CloudFormation will create or change, and how it will change resources in an existing stack, before you create or update a stack.

To create a change set for a stack that doesn't exist, for the ChangeSetType parameter, specify CREATE. To create a change set for an existing stack, specify UPDATE for the ChangeSetType parameter. To create a change set for an import operation, specify IMPORT for the ChangeSetType parameter. After the CreateChangeSet call successfully completes, AWS CloudFormation starts creating the change set. To check the status of the change set or to review it, use the DescribeChangeSet action.

When you are satisfied with the changes the change set will make, execute the change set by using the ExecuteChangeSet action. AWS CloudFormation doesn't make changes until you execute the change set.

" + "documentation":"

Creates a list of changes that will be applied to a stack so that you can review the changes before executing them. You can create a change set for a stack that doesn't exist or an existing stack. If you create a change set for a stack that doesn't exist, the change set shows all of the resources that AWS CloudFormation will create. If you create a change set for an existing stack, AWS CloudFormation compares the stack's information with the information that you submit in the change set and lists the differences. Use change sets to understand which resources AWS CloudFormation will create or change, and how it will change resources in an existing stack, before you create or update a stack.

To create a change set for a stack that doesn't exist, for the ChangeSetType parameter, specify CREATE. To create a change set for an existing stack, specify UPDATE for the ChangeSetType parameter. To create a change set for an import operation, specify IMPORT for the ChangeSetType parameter. After the CreateChangeSet call successfully completes, AWS CloudFormation starts creating the change set. To check the status of the change set or to review it, use the DescribeChangeSet action.

When you are satisfied with the changes the change set will make, execute the change set by using the ExecuteChangeSet action. AWS CloudFormation doesn't make changes until you execute the change set.

To create a change set for the entire stack hierachy, set IncludeNestedStacks to True.

" }, "CreateStack":{ "name":"CreateStack", @@ -129,7 +129,7 @@ "errors":[ {"shape":"InvalidChangeSetStatusException"} ], - "documentation":"

Deletes the specified change set. Deleting change sets ensures that no one executes the wrong change set.

If the call successfully completes, AWS CloudFormation successfully deleted the change set.

" + "documentation":"

Deletes the specified change set. Deleting change sets ensures that no one executes the wrong change set.

If the call successfully completes, AWS CloudFormation successfully deleted the change set.

If IncludeNestedStacks specifies True during the creation of the nested change set, then DeleteChangeSet will delete all change sets that belong to the stacks hierarchy and will also delete all change sets for nested stacks with the status of REVIEW_IN_PROGRESS.

" }, "DeleteStack":{ "name":"DeleteStack", @@ -464,7 +464,7 @@ {"shape":"InsufficientCapabilitiesException"}, {"shape":"TokenAlreadyExistsException"} ], - "documentation":"

Updates a stack using the input information that was provided when the specified change set was created. After the call successfully completes, AWS CloudFormation starts updating the stack. Use the DescribeStacks action to view the status of the update.

When you execute a change set, AWS CloudFormation deletes all other change sets associated with the stack because they aren't valid for the updated stack.

If a stack policy is associated with the stack, AWS CloudFormation enforces the policy during the update. You can't specify a temporary stack policy that overrides the current policy.

" + "documentation":"

Updates a stack using the input information that was provided when the specified change set was created. After the call successfully completes, AWS CloudFormation starts updating the stack. Use the DescribeStacks action to view the status of the update.

When you execute a change set, AWS CloudFormation deletes all other change sets associated with the stack because they aren't valid for the updated stack.

If a stack policy is associated with the stack, AWS CloudFormation enforces the policy during the update. You can't specify a temporary stack policy that overrides the current policy.

To create a change set for the entire stack hierachy, IncludeNestedStacks must have been set to True.

" }, "GetStackPolicy":{ "name":"GetStackPolicy", @@ -1019,7 +1019,8 @@ "Add", "Modify", "Remove", - "Import" + "Import", + "Dynamic" ] }, "ChangeSetId":{ @@ -1057,7 +1058,10 @@ "CREATE_PENDING", "CREATE_IN_PROGRESS", "CREATE_COMPLETE", + "DELETE_PENDING", + "DELETE_IN_PROGRESS", "DELETE_COMPLETE", + "DELETE_FAILED", "FAILED" ] }, @@ -1104,6 +1108,18 @@ "Description":{ "shape":"Description", "documentation":"

Descriptive information about the change set.

" + }, + "IncludeNestedStacks":{ + "shape":"IncludeNestedStacks", + "documentation":"

Specifies the current setting of IncludeNestedStacks for the change set.

" + }, + "ParentChangeSetId":{ + "shape":"ChangeSetId", + "documentation":"

The parent change set ID.

" + }, + "RootChangeSetId":{ + "shape":"ChangeSetId", + "documentation":"

The root change set ID.

" } }, "documentation":"

The ChangeSetSummary structure describes a change set, its status, and the stack with which it's associated.

" @@ -1203,7 +1219,7 @@ }, "Capabilities":{ "shape":"Capabilities", - "documentation":"

In some cases, you must explicitly acknowledge that your stack template contains certain capabilities in order for AWS CloudFormation to create the stack.

  • CAPABILITY_IAM and CAPABILITY_NAMED_IAM

    Some stack templates might include resources that can affect permissions in your AWS account; for example, by creating new AWS Identity and Access Management (IAM) users. For those stacks, you must explicitly acknowledge this by specifying one of these capabilities.

    The following IAM resources require you to specify either the CAPABILITY_IAM or CAPABILITY_NAMED_IAM capability.

    • If you have IAM resources, you can specify either capability.

    • If you have IAM resources with custom names, you must specify CAPABILITY_NAMED_IAM.

    • If you don't specify either of these capabilities, AWS CloudFormation returns an InsufficientCapabilities error.

    If your stack template contains these resources, we recommend that you review all permissions associated with them and edit their permissions if necessary.

    For more information, see Acknowledging IAM Resources in AWS CloudFormation Templates.

  • CAPABILITY_AUTO_EXPAND

    Some template contain macros. Macros perform custom processing on templates; this can include simple actions like find-and-replace operations, all the way to extensive transformations of entire templates. Because of this, users typically create a change set from the processed template, so that they can review the changes resulting from the macros before actually creating the stack. If your stack template contains one or more macros, and you choose to create a stack directly from the processed template, without first reviewing the resulting changes in a change set, you must acknowledge this capability. This includes the AWS::Include and AWS::Serverless transforms, which are macros hosted by AWS CloudFormation.

    This capacity does not apply to creating change sets, and specifying it when creating change sets has no effect.

    Also, change sets do not currently support nested stacks. If you want to create a stack from a stack template that contains macros and nested stacks, you must create or update the stack directly from the template using the CreateStack or UpdateStack action, and specifying this capability.

    For more information on macros, see Using AWS CloudFormation Macros to Perform Custom Processing on Templates.

" + "documentation":"

In some cases, you must explicitly acknowledge that your stack template contains certain capabilities in order for AWS CloudFormation to create the stack.

  • CAPABILITY_IAM and CAPABILITY_NAMED_IAM

    Some stack templates might include resources that can affect permissions in your AWS account; for example, by creating new AWS Identity and Access Management (IAM) users. For those stacks, you must explicitly acknowledge this by specifying one of these capabilities.

    The following IAM resources require you to specify either the CAPABILITY_IAM or CAPABILITY_NAMED_IAM capability.

    • If you have IAM resources, you can specify either capability.

    • If you have IAM resources with custom names, you must specify CAPABILITY_NAMED_IAM.

    • If you don't specify either of these capabilities, AWS CloudFormation returns an InsufficientCapabilities error.

    If your stack template contains these resources, we recommend that you review all permissions associated with them and edit their permissions if necessary.

    For more information, see Acknowledging IAM Resources in AWS CloudFormation Templates.

  • CAPABILITY_AUTO_EXPAND

    Some template contain macros. Macros perform custom processing on templates; this can include simple actions like find-and-replace operations, all the way to extensive transformations of entire templates. Because of this, users typically create a change set from the processed template, so that they can review the changes resulting from the macros before actually creating the stack. If your stack template contains one or more macros, and you choose to create a stack directly from the processed template, without first reviewing the resulting changes in a change set, you must acknowledge this capability. This includes the AWS::Include and AWS::Serverless transforms, which are macros hosted by AWS CloudFormation.

    This capacity does not apply to creating change sets, and specifying it when creating change sets has no effect.

    If you want to create a stack from a stack template that contains macros and nested stacks, you must create or update the stack directly from the template using the CreateStack or UpdateStack action, and specifying this capability.

    For more information on macros, see Using AWS CloudFormation Macros to Perform Custom Processing on Templates.

" }, "ResourceTypes":{ "shape":"ResourceTypes", @@ -1244,6 +1260,10 @@ "ResourcesToImport":{ "shape":"ResourcesToImport", "documentation":"

The resources to import into your stack.

" + }, + "IncludeNestedStacks":{ + "shape":"IncludeNestedStacks", + "documentation":"

Creates a change set for the all nested stacks specified in the template. The default behavior of this action is set to False. To include nested sets in a change set, specify True.

" } }, "documentation":"

The input for the CreateChangeSet action.

" @@ -1300,7 +1320,7 @@ }, "Capabilities":{ "shape":"Capabilities", - "documentation":"

In some cases, you must explicitly acknowledge that your stack template contains certain capabilities in order for AWS CloudFormation to create the stack.

  • CAPABILITY_IAM and CAPABILITY_NAMED_IAM

    Some stack templates might include resources that can affect permissions in your AWS account; for example, by creating new AWS Identity and Access Management (IAM) users. For those stacks, you must explicitly acknowledge this by specifying one of these capabilities.

    The following IAM resources require you to specify either the CAPABILITY_IAM or CAPABILITY_NAMED_IAM capability.

    • If you have IAM resources, you can specify either capability.

    • If you have IAM resources with custom names, you must specify CAPABILITY_NAMED_IAM.

    • If you don't specify either of these capabilities, AWS CloudFormation returns an InsufficientCapabilities error.

    If your stack template contains these resources, we recommend that you review all permissions associated with them and edit their permissions if necessary.

    For more information, see Acknowledging IAM Resources in AWS CloudFormation Templates.

  • CAPABILITY_AUTO_EXPAND

    Some template contain macros. Macros perform custom processing on templates; this can include simple actions like find-and-replace operations, all the way to extensive transformations of entire templates. Because of this, users typically create a change set from the processed template, so that they can review the changes resulting from the macros before actually creating the stack. If your stack template contains one or more macros, and you choose to create a stack directly from the processed template, without first reviewing the resulting changes in a change set, you must acknowledge this capability. This includes the AWS::Include and AWS::Serverless transforms, which are macros hosted by AWS CloudFormation.

    Change sets do not currently support nested stacks. If you want to create a stack from a stack template that contains macros and nested stacks, you must create the stack directly from the template using this capability.

    You should only create stacks directly from a stack template that contains macros if you know what processing the macro performs.

    Each macro relies on an underlying Lambda service function for processing stack templates. Be aware that the Lambda function owner can update the function operation without AWS CloudFormation being notified.

    For more information, see Using AWS CloudFormation Macros to Perform Custom Processing on Templates.

" + "documentation":"

In some cases, you must explicitly acknowledge that your stack template contains certain capabilities in order for AWS CloudFormation to create the stack.

  • CAPABILITY_IAM and CAPABILITY_NAMED_IAM

    Some stack templates might include resources that can affect permissions in your AWS account; for example, by creating new AWS Identity and Access Management (IAM) users. For those stacks, you must explicitly acknowledge this by specifying one of these capabilities.

    The following IAM resources require you to specify either the CAPABILITY_IAM or CAPABILITY_NAMED_IAM capability.

    • If you have IAM resources, you can specify either capability.

    • If you have IAM resources with custom names, you must specify CAPABILITY_NAMED_IAM.

    • If you don't specify either of these capabilities, AWS CloudFormation returns an InsufficientCapabilities error.

    If your stack template contains these resources, we recommend that you review all permissions associated with them and edit their permissions if necessary.

    For more information, see Acknowledging IAM Resources in AWS CloudFormation Templates.

  • CAPABILITY_AUTO_EXPAND

    Some template contain macros. Macros perform custom processing on templates; this can include simple actions like find-and-replace operations, all the way to extensive transformations of entire templates. Because of this, users typically create a change set from the processed template, so that they can review the changes resulting from the macros before actually creating the stack. If your stack template contains one or more macros, and you choose to create a stack directly from the processed template, without first reviewing the resulting changes in a change set, you must acknowledge this capability. This includes the AWS::Include and AWS::Serverless transforms, which are macros hosted by AWS CloudFormation.

    If you want to create a stack from a stack template that contains macros and nested stacks, you must create the stack directly from the template using this capability.

    You should only create stacks directly from a stack template that contains macros if you know what processing the macro performs.

    Each macro relies on an underlying Lambda service function for processing stack templates. Be aware that the Lambda function owner can update the function operation without AWS CloudFormation being notified.

    For more information, see Using AWS CloudFormation Macros to Perform Custom Processing on Templates.

" }, "ResourceTypes":{ "shape":"ResourceTypes", @@ -1735,6 +1755,18 @@ "NextToken":{ "shape":"NextToken", "documentation":"

If the output exceeds 1 MB, a string that identifies the next page of changes. If there is no additional page, this value is null.

" + }, + "IncludeNestedStacks":{ + "shape":"IncludeNestedStacks", + "documentation":"

Verifies if IncludeNestedStacks is set to True.

" + }, + "ParentChangeSetId":{ + "shape":"ChangeSetId", + "documentation":"

Specifies the change set ID of the parent change set in the current nested change set hierarchy.

" + }, + "RootChangeSetId":{ + "shape":"ChangeSetId", + "documentation":"

Specifies the change set ID of the root change set in the current nested change set hierarchy.

" } }, "documentation":"

The output for the DescribeChangeSet action.

" @@ -2496,6 +2528,7 @@ "type":"integer", "min":0 }, + "IncludeNestedStacks":{"type":"boolean"}, "InsufficientCapabilitiesException":{ "type":"structure", "members":{ @@ -3361,7 +3394,7 @@ }, "SchemaHandlerPackage":{ "shape":"S3Url", - "documentation":"

A url to the S3 bucket containing the schema handler package that contains the schema, event handlers, and associated files for the type you want to register.

For information on generating a schema handler package for the type you want to register, see submit in the CloudFormation CLI User Guide.

As part of registering a resource provider type, CloudFormation must be able to access the S3 bucket which contains the schema handler package for that resource provider. For more information, see IAM Permissions for Registering a Resource Provider in the AWS CloudFormation User Guide.

" + "documentation":"

A url to the S3 bucket containing the schema handler package that contains the schema, event handlers, and associated files for the type you want to register.

For information on generating a schema handler package for the type you want to register, see submit in the CloudFormation CLI User Guide.

The user registering the resource provider type must be able to access the the schema handler package in the S3 bucket. That is, the user needs to have GetObject permissions for the schema handler package. For more information, see Actions, Resources, and Condition Keys for Amazon S3 in the AWS Identity and Access Management User Guide.

" }, "LoggingConfig":{ "shape":"LoggingConfig", @@ -3446,7 +3479,7 @@ "members":{ "Action":{ "shape":"ChangeAction", - "documentation":"

The action that AWS CloudFormation takes on the resource, such as Add (adds a new resource), Modify (changes a resource), or Remove (deletes a resource).

" + "documentation":"

The action that AWS CloudFormation takes on the resource, such as Add (adds a new resource), Modify (changes a resource), Remove (deletes a resource), Import (imports a resource), or Dynamic (exact action for the resource cannot be determined).

" }, "LogicalResourceId":{ "shape":"LogicalResourceId", @@ -3471,6 +3504,10 @@ "Details":{ "shape":"ResourceChangeDetails", "documentation":"

For the Modify action, a list of ResourceChangeDetail structures that describes the changes that AWS CloudFormation will make to the resource.

" + }, + "ChangeSetId":{ + "shape":"ChangeSetId", + "documentation":"

The change set ID of the nested change set.

" } }, "documentation":"

The ResourceChange structure describes the resource and the action that AWS CloudFormation will perform on it if you execute this change set.

" @@ -5206,7 +5243,7 @@ }, "Capabilities":{ "shape":"Capabilities", - "documentation":"

In some cases, you must explicitly acknowledge that your stack template contains certain capabilities in order for AWS CloudFormation to update the stack.

  • CAPABILITY_IAM and CAPABILITY_NAMED_IAM

    Some stack templates might include resources that can affect permissions in your AWS account; for example, by creating new AWS Identity and Access Management (IAM) users. For those stacks, you must explicitly acknowledge this by specifying one of these capabilities.

    The following IAM resources require you to specify either the CAPABILITY_IAM or CAPABILITY_NAMED_IAM capability.

    • If you have IAM resources, you can specify either capability.

    • If you have IAM resources with custom names, you must specify CAPABILITY_NAMED_IAM.

    • If you don't specify either of these capabilities, AWS CloudFormation returns an InsufficientCapabilities error.

    If your stack template contains these resources, we recommend that you review all permissions associated with them and edit their permissions if necessary.

    For more information, see Acknowledging IAM Resources in AWS CloudFormation Templates.

  • CAPABILITY_AUTO_EXPAND

    Some template contain macros. Macros perform custom processing on templates; this can include simple actions like find-and-replace operations, all the way to extensive transformations of entire templates. Because of this, users typically create a change set from the processed template, so that they can review the changes resulting from the macros before actually updating the stack. If your stack template contains one or more macros, and you choose to update a stack directly from the processed template, without first reviewing the resulting changes in a change set, you must acknowledge this capability. This includes the AWS::Include and AWS::Serverless transforms, which are macros hosted by AWS CloudFormation.

    Change sets do not currently support nested stacks. If you want to update a stack from a stack template that contains macros and nested stacks, you must update the stack directly from the template using this capability.

    You should only update stacks directly from a stack template that contains macros if you know what processing the macro performs.

    Each macro relies on an underlying Lambda service function for processing stack templates. Be aware that the Lambda function owner can update the function operation without AWS CloudFormation being notified.

    For more information, see Using AWS CloudFormation Macros to Perform Custom Processing on Templates.

" + "documentation":"

In some cases, you must explicitly acknowledge that your stack template contains certain capabilities in order for AWS CloudFormation to update the stack.

  • CAPABILITY_IAM and CAPABILITY_NAMED_IAM

    Some stack templates might include resources that can affect permissions in your AWS account; for example, by creating new AWS Identity and Access Management (IAM) users. For those stacks, you must explicitly acknowledge this by specifying one of these capabilities.

    The following IAM resources require you to specify either the CAPABILITY_IAM or CAPABILITY_NAMED_IAM capability.

    • If you have IAM resources, you can specify either capability.

    • If you have IAM resources with custom names, you must specify CAPABILITY_NAMED_IAM.

    • If you don't specify either of these capabilities, AWS CloudFormation returns an InsufficientCapabilities error.

    If your stack template contains these resources, we recommend that you review all permissions associated with them and edit their permissions if necessary.

    For more information, see Acknowledging IAM Resources in AWS CloudFormation Templates.

  • CAPABILITY_AUTO_EXPAND

    Some template contain macros. Macros perform custom processing on templates; this can include simple actions like find-and-replace operations, all the way to extensive transformations of entire templates. Because of this, users typically create a change set from the processed template, so that they can review the changes resulting from the macros before actually updating the stack. If your stack template contains one or more macros, and you choose to update a stack directly from the processed template, without first reviewing the resulting changes in a change set, you must acknowledge this capability. This includes the AWS::Include and AWS::Serverless transforms, which are macros hosted by AWS CloudFormation.

    If you want to update a stack from a stack template that contains macros and nested stacks, you must update the stack directly from the template using this capability.

    You should only update stacks directly from a stack template that contains macros if you know what processing the macro performs.

    Each macro relies on an underlying Lambda service function for processing stack templates. Be aware that the Lambda function owner can update the function operation without AWS CloudFormation being notified.

    For more information, see Using AWS CloudFormation Macros to Perform Custom Processing on Templates.

" }, "ResourceTypes":{ "shape":"ResourceTypes", From abbc4e5b7b6065c3f5e1e44c294ac6250ff212ff Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 18 Nov 2020 19:04:07 +0000 Subject: [PATCH 214/339] AWS Outposts Update: Mark the Name parameter in CreateOutpost as required. --- .changes/next-release/feature-AWSOutposts-3a78fb4.json | 6 ++++++ .../src/main/resources/codegen-resources/service-2.json | 5 ++++- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AWSOutposts-3a78fb4.json diff --git a/.changes/next-release/feature-AWSOutposts-3a78fb4.json b/.changes/next-release/feature-AWSOutposts-3a78fb4.json new file mode 100644 index 000000000000..01b28268027a --- /dev/null +++ b/.changes/next-release/feature-AWSOutposts-3a78fb4.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Outposts", + "contributor": "", + "description": "Mark the Name parameter in CreateOutpost as required." +} diff --git a/services/outposts/src/main/resources/codegen-resources/service-2.json b/services/outposts/src/main/resources/codegen-resources/service-2.json index 592e20363153..1e973028c7c5 100644 --- a/services/outposts/src/main/resources/codegen-resources/service-2.json +++ b/services/outposts/src/main/resources/codegen-resources/service-2.json @@ -157,7 +157,10 @@ }, "CreateOutpostInput":{ "type":"structure", - "required":["SiteId"], + "required":[ + "Name", + "SiteId" + ], "members":{ "Name":{"shape":"OutpostName"}, "Description":{"shape":"OutpostDescription"}, From 8ac1312022164460659256b8d4783f2882dd8bd5 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 18 Nov 2020 19:04:20 +0000 Subject: [PATCH 215/339] Amazon Elastic Compute Cloud Update: EC2 Fleet adds support of DeleteFleets API for instant type fleets. Now you can delete an instant type fleet and terminate all associated instances with a single API call. --- .../feature-AmazonElasticComputeCloud-3784efb.json | 6 ++++++ .../main/resources/codegen-resources/service-2.json | 10 +++++----- 2 files changed, 11 insertions(+), 5 deletions(-) create mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-3784efb.json diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-3784efb.json b/.changes/next-release/feature-AmazonElasticComputeCloud-3784efb.json new file mode 100644 index 000000000000..65bd3915a231 --- /dev/null +++ b/.changes/next-release/feature-AmazonElasticComputeCloud-3784efb.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "EC2 Fleet adds support of DeleteFleets API for instant type fleets. Now you can delete an instant type fleet and terminate all associated instances with a single API call." +} diff --git a/services/ec2/src/main/resources/codegen-resources/service-2.json b/services/ec2/src/main/resources/codegen-resources/service-2.json index 6dc0e9d9d716..2576dbdaadd6 100755 --- a/services/ec2/src/main/resources/codegen-resources/service-2.json +++ b/services/ec2/src/main/resources/codegen-resources/service-2.json @@ -1049,7 +1049,7 @@ }, "input":{"shape":"DeleteFleetsRequest"}, "output":{"shape":"DeleteFleetsResult"}, - "documentation":"

Deletes the specified EC2 Fleet.

After you delete an EC2 Fleet, it launches no new instances. You must specify whether an EC2 Fleet should also terminate its instances. If you terminate the instances, the EC2 Fleet enters the deleted_terminating state. Otherwise, the EC2 Fleet enters the deleted_running state, and the instances continue to run until they are interrupted or you terminate them manually.

" + "documentation":"

Deletes the specified EC2 Fleet.

After you delete an EC2 Fleet, it launches no new instances.

You must specify whether a deleted EC2 Fleet should also terminate its instances. If you choose to terminate the instances, the EC2 Fleet enters the deleted_terminating state. Otherwise, the EC2 Fleet enters the deleted_running state, and the instances continue to run until they are interrupted or you terminate them manually.

For instant fleets, EC2 Fleet must terminate the instances when the fleet is deleted. A deleted instant fleet with running instances is not supported.

Restrictions

  • You can delete up to 25 instant fleets in a single request. If you exceed this number, no instant fleets are deleted and an error is returned. There is no restriction on the number of fleets of type maintain or request that can be deleted in a single request.

  • Up to 1000 instances can be terminated in a single request to delete instant fleets.

For more information, see Deleting an EC2 Fleet in the Amazon Elastic Compute Cloud User Guide.

" }, "DeleteFlowLogs":{ "name":"DeleteFlowLogs", @@ -11016,7 +11016,7 @@ }, "TerminateInstances":{ "shape":"Boolean", - "documentation":"

Indicates whether to terminate instances for an EC2 Fleet if it is deleted successfully.

" + "documentation":"

Indicates whether to terminate the instances when the EC2 Fleet is deleted. The default is to terminate the instances.

To let the instances continue to run after the EC2 Fleet is deleted, specify NoTerminateInstances. Supported only for fleets of type maintain and request.

For instant fleets, you cannot specify NoTerminateInstances. A deleted instant fleet with running instances is not supported.

" } } }, @@ -19883,7 +19883,7 @@ "members":{ "ReplacementStrategy":{ "shape":"FleetReplacementStrategy", - "documentation":"

To allow EC2 Fleet to launch a replacement Spot Instance when an instance rebalance notification is emitted for an existing Spot Instance in the fleet, specify launch. Only available for fleets of type maintain.

When a replacement instance is launched, the instance marked for rebalance is not automatically terminated. You can terminate it, or you can wait until Amazon EC2 interrupts it. You are charged for both instances while they are running.

", + "documentation":"

To allow EC2 Fleet to launch a replacement Spot Instance when an instance rebalance notification is emitted for an existing Spot Instance in the fleet, specify launch. Only available for fleets of type maintain.

When a replacement instance is launched, the instance marked for rebalance is not automatically terminated. You can terminate it, or you can leave it running. You are charged for both instances while they are running.

", "locationName":"replacementStrategy" } }, @@ -19894,7 +19894,7 @@ "members":{ "ReplacementStrategy":{ "shape":"FleetReplacementStrategy", - "documentation":"

The replacement strategy to use. Only available for fleets of type maintain.

To allow EC2 Fleet to launch a replacement Spot Instance when an instance rebalance notification is emitted for an existing Spot Instance in the fleet, specify launch. You must specify a value, otherwise you get an error.

When a replacement instance is launched, the instance marked for rebalance is not automatically terminated. You can terminate it, or you can wait until Amazon EC2 interrupts it. You are charged for all instances while they are running.

" + "documentation":"

The replacement strategy to use. Only available for fleets of type maintain.

To allow EC2 Fleet to launch a replacement Spot Instance when an instance rebalance notification is emitted for an existing Spot Instance in the fleet, specify launch. You must specify a value, otherwise you get an error.

When a replacement instance is launched, the instance marked for rebalance is not automatically terminated. You can terminate it, or you can leave it running. You are charged for all instances while they are running.

" } }, "documentation":"

The Spot Instance replacement strategy to use when Amazon EC2 emits a signal that your Spot Instance is at an elevated risk of being interrupted. For more information, see Capacity rebalancing in the Amazon Elastic Compute Cloud User Guide.

" @@ -35018,7 +35018,7 @@ "members":{ "ReplacementStrategy":{ "shape":"ReplacementStrategy", - "documentation":"

The replacement strategy to use. Only available for fleets of type maintain. You must specify a value, otherwise you get an error.

To allow Spot Fleet to launch a replacement Spot Instance when an instance rebalance notification is emitted for a Spot Instance in the fleet, specify launch.

When a replacement instance is launched, the instance marked for rebalance is not automatically terminated. You can terminate it, or you can wait until Amazon EC2 interrupts it. You are charged for all instances while they are running.

", + "documentation":"

The replacement strategy to use. Only available for fleets of type maintain. You must specify a value, otherwise you get an error.

To allow Spot Fleet to launch a replacement Spot Instance when an instance rebalance notification is emitted for a Spot Instance in the fleet, specify launch.

When a replacement instance is launched, the instance marked for rebalance is not automatically terminated. You can terminate it, or you can leave it running. You are charged for all instances while they are running.

", "locationName":"replacementStrategy" } }, From 89d023b6c873839415e3d48fa7a439615ae65e19 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 18 Nov 2020 19:04:23 +0000 Subject: [PATCH 216/339] Amazon ElastiCache Update: Adding Memcached 1.6 to parameter family --- .../feature-AmazonElastiCache-bfcfb78.json | 6 ++++++ .../resources/codegen-resources/service-2.json | 16 ++++++++-------- 2 files changed, 14 insertions(+), 8 deletions(-) create mode 100644 .changes/next-release/feature-AmazonElastiCache-bfcfb78.json diff --git a/.changes/next-release/feature-AmazonElastiCache-bfcfb78.json b/.changes/next-release/feature-AmazonElastiCache-bfcfb78.json new file mode 100644 index 000000000000..9d94d61803f5 --- /dev/null +++ b/.changes/next-release/feature-AmazonElastiCache-bfcfb78.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon ElastiCache", + "contributor": "", + "description": "Adding Memcached 1.6 to parameter family" +} diff --git a/services/elasticache/src/main/resources/codegen-resources/service-2.json b/services/elasticache/src/main/resources/codegen-resources/service-2.json index 25232a8c8819..153a9ba7602f 100644 --- a/services/elasticache/src/main/resources/codegen-resources/service-2.json +++ b/services/elasticache/src/main/resources/codegen-resources/service-2.json @@ -517,7 +517,7 @@ {"shape":"InvalidParameterValueException"}, {"shape":"DefaultUserAssociatedToUserGroupFault"} ], - "documentation":"

For Redis engine version 6.04 onwards: Deletes a user. The user will be removed from all user groups and in turn removed from all replication groups. For more information, see Using Role Based Access Control (RBAC).

" + "documentation":"

For Redis engine version 6.x onwards: Deletes a user. The user will be removed from all user groups and in turn removed from all replication groups. For more information, see Using Role Based Access Control (RBAC).

" }, "DeleteUserGroup":{ "name":"DeleteUserGroup", @@ -535,7 +535,7 @@ {"shape":"InvalidUserGroupStateFault"}, {"shape":"InvalidParameterValueException"} ], - "documentation":"

For Redis engine version 6.04 onwards: Deletes a ser group. The user group must first be disassociated from the replcation group before it can be deleted. For more information, see Using Role Based Access Control (RBAC).

" + "documentation":"

For Redis engine version 6.x onwards: Deletes a ser group. The user group must first be disassociated from the replcation group before it can be deleted. For more information, see Using Role Based Access Control (RBAC).

" }, "DescribeCacheClusters":{ "name":"DescribeCacheClusters", @@ -1687,7 +1687,7 @@ }, "CacheParameterGroupFamily":{ "shape":"String", - "documentation":"

The name of the cache parameter group family associated with this cache engine.

Valid values are: memcached1.4 | memcached1.5 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.0 |

" + "documentation":"

The name of the cache parameter group family associated with this cache engine.

Valid values are: memcached1.4 | memcached1.5 | memcached1.6 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.x |

" }, "CacheEngineDescription":{ "shape":"String", @@ -1897,7 +1897,7 @@ }, "CacheParameterGroupFamily":{ "shape":"String", - "documentation":"

The name of the cache parameter group family that this cache parameter group is compatible with.

Valid values are: memcached1.4 | memcached1.5 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.0 |

" + "documentation":"

The name of the cache parameter group family that this cache parameter group is compatible with.

Valid values are: memcached1.4 | memcached1.5 | memcached1.6 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.x |

" }, "Description":{ "shape":"String", @@ -2473,7 +2473,7 @@ }, "CacheParameterGroupFamily":{ "shape":"String", - "documentation":"

The name of the cache parameter group family that the cache parameter group can be used with.

Valid values are: memcached1.4 | memcached1.5 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.0 |

" + "documentation":"

The name of the cache parameter group family that the cache parameter group can be used with.

Valid values are: memcached1.4 | memcached1.5 | memcached1.6 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.x |

" }, "Description":{ "shape":"String", @@ -3088,7 +3088,7 @@ }, "CacheParameterGroupFamily":{ "shape":"String", - "documentation":"

The name of a specific cache parameter group family to return details for.

Valid values are: memcached1.4 | memcached1.5 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.0 |

Constraints:

  • Must be 1 to 255 alphanumeric characters

  • First character must be a letter

  • Cannot end with a hyphen or contain two consecutive hyphens

" + "documentation":"

The name of a specific cache parameter group family to return details for.

Valid values are: memcached1.4 | memcached1.5 | memcached1.6 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.x |

Constraints:

  • Must be 1 to 255 alphanumeric characters

  • First character must be a letter

  • Cannot end with a hyphen or contain two consecutive hyphens

" }, "MaxRecords":{ "shape":"IntegerOptional", @@ -3188,7 +3188,7 @@ "members":{ "CacheParameterGroupFamily":{ "shape":"String", - "documentation":"

The name of the cache parameter group family.

Valid values are: memcached1.4 | memcached1.5 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.0 |

" + "documentation":"

The name of the cache parameter group family.

Valid values are: memcached1.4 | memcached1.5 | memcached1.6 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.x |

" }, "MaxRecords":{ "shape":"IntegerOptional", @@ -3632,7 +3632,7 @@ "members":{ "CacheParameterGroupFamily":{ "shape":"String", - "documentation":"

Specifies the name of the cache parameter group family to which the engine default parameters apply.

Valid values are: memcached1.4 | memcached1.5 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.0 |

" + "documentation":"

Specifies the name of the cache parameter group family to which the engine default parameters apply.

Valid values are: memcached1.4 | memcached1.5 | memcached1.6 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.x |

" }, "Marker":{ "shape":"String", From e7203bb0527e7faa54a35e12149980ee512265d2 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 18 Nov 2020 19:04:34 +0000 Subject: [PATCH 217/339] AWS S3 Control Update: AWS S3 Storage Lens provides visibility into your storage usage and activity trends at the organization or account level, with aggregations by Region, storage class, bucket, and prefix. --- .../feature-AWSS3Control-565217a.json | 6 + .../codegen-resources/service-2.json | 767 ++++++++++++++++-- 2 files changed, 726 insertions(+), 47 deletions(-) create mode 100644 .changes/next-release/feature-AWSS3Control-565217a.json diff --git a/.changes/next-release/feature-AWSS3Control-565217a.json b/.changes/next-release/feature-AWSS3Control-565217a.json new file mode 100644 index 000000000000..ee764ac8db89 --- /dev/null +++ b/.changes/next-release/feature-AWSS3Control-565217a.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS S3 Control", + "contributor": "", + "description": "AWS S3 Storage Lens provides visibility into your storage usage and activity trends at the organization or account level, with aggregations by Region, storage class, bucket, and prefix." +} diff --git a/services/s3control/src/main/resources/codegen-resources/service-2.json b/services/s3control/src/main/resources/codegen-resources/service-2.json index f628e22e7d51..721dc2a3c630 100644 --- a/services/s3control/src/main/resources/codegen-resources/service-2.json +++ b/services/s3control/src/main/resources/codegen-resources/service-2.json @@ -23,7 +23,7 @@ "xmlNamespace":{"uri":"http://awss3control.amazonaws.com/doc/2018-08-20/"} }, "output":{"shape":"CreateAccessPointResult"}, - "documentation":"

Creates an access point and associates it with the specified bucket. For more information, see Managing Data Access with Amazon S3 Access Points in the Amazon Simple Storage Service Developer Guide.

Using this action with Amazon S3 on Outposts

This action:

  • Requires a virtual private cloud (VPC) configuration as S3 on Outposts only supports VPC style access points.

  • Does not support ACL on S3 on Outposts buckets.

  • Does not support Public Access on S3 on Outposts buckets.

  • Does not support object lock for S3 on Outposts buckets.

For more information, see Using Amazon S3 on Outposts in the Amazon Simple Storage Service Developer Guide .

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the outpost-id derived using the access point ARN, see the Example section below.

The following actions are related to CreateAccessPoint:

", + "documentation":"

Creates an access point and associates it with the specified bucket. For more information, see Managing Data Access with Amazon S3 Access Points in the Amazon Simple Storage Service Developer Guide.

Using this action with Amazon S3 on Outposts

This action:

  • Requires a virtual private cloud (VPC) configuration as S3 on Outposts only supports VPC style access points.

  • Does not support ACL on S3 on Outposts buckets.

  • Does not support Public Access on S3 on Outposts buckets.

  • Does not support object lock for S3 on Outposts buckets.

For more information, see Using Amazon S3 on Outposts in the Amazon Simple Storage Service Developer Guide .

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived using the access point ARN, see the Examples section.

The following actions are related to CreateAccessPoint:

", "endpoint":{ "hostPrefix":"{AccountId}." } @@ -40,7 +40,7 @@ {"shape":"BucketAlreadyExists"}, {"shape":"BucketAlreadyOwnedByYou"} ], - "documentation":"

This API operation creates an Amazon S3 on Outposts bucket. To create an S3 bucket, see Create Bucket in the Amazon Simple Storage Service API.

Creates a new Outposts bucket. By creating the bucket, you become the bucket owner. To create an Outposts bucket, you must have S3 on Outposts. For more information, see Using Amazon S3 on Outposts in Amazon Simple Storage Service Developer Guide.

Not every string is an acceptable bucket name. For information on bucket naming restrictions, see Working with Amazon S3 Buckets.

S3 on Outposts buckets do not support

  • ACLs. Instead, configure access point policies to manage access to buckets.

  • Public access.

  • Object Lock

  • Bucket Location constraint

For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and outpost-id in your API request, see the Example section below.

The following actions are related to CreateBucket for Amazon S3 on Outposts:

", + "documentation":"

This API operation creates an Amazon S3 on Outposts bucket. To create an S3 bucket, see Create Bucket in the Amazon Simple Storage Service API.

Creates a new Outposts bucket. By creating the bucket, you become the bucket owner. To create an Outposts bucket, you must have S3 on Outposts. For more information, see Using Amazon S3 on Outposts in Amazon Simple Storage Service Developer Guide.

Not every string is an acceptable bucket name. For information on bucket naming restrictions, see Working with Amazon S3 Buckets.

S3 on Outposts buckets do not support

  • ACLs. Instead, configure access point policies to manage access to buckets.

  • Public access.

  • Object Lock

  • Bucket Location constraint

For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and x-amz-outpost-id in your API request, see the Examples section.

The following actions are related to CreateBucket for Amazon S3 on Outposts:

", "httpChecksumRequired":true }, "CreateJob":{ @@ -61,7 +61,7 @@ {"shape":"IdempotencyException"}, {"shape":"InternalServiceException"} ], - "documentation":"

S3 Batch Operations performs large-scale Batch Operations on Amazon S3 objects. Batch Operations can run a single operation or action on lists of Amazon S3 objects that you specify. For more information, see S3 Batch Operations in the Amazon Simple Storage Service Developer Guide.

This operation creates a S3 Batch Operations job.

Related actions include:

", + "documentation":"

S3 Batch Operations performs large-scale Batch Operations on Amazon S3 objects. Batch Operations can run a single operation or action on lists of Amazon S3 objects that you specify. For more information, see S3 Batch Operations in the Amazon Simple Storage Service Developer Guide.

This operation creates an S3 Batch Operations job.

Related actions include:

", "endpoint":{ "hostPrefix":"{AccountId}." } @@ -73,7 +73,7 @@ "requestUri":"/v20180820/accesspoint/{name}" }, "input":{"shape":"DeleteAccessPointRequest"}, - "documentation":"

Deletes the specified access point.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the outpost-id derived using the access point ARN, see the ARN, see the Example section below.

The following actions are related to DeleteAccessPoint:

", + "documentation":"

Deletes the specified access point.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived using the access point ARN, see the Examples section.

The following actions are related to DeleteAccessPoint:

", "endpoint":{ "hostPrefix":"{AccountId}." } @@ -85,7 +85,7 @@ "requestUri":"/v20180820/accesspoint/{name}/policy" }, "input":{"shape":"DeleteAccessPointPolicyRequest"}, - "documentation":"

Deletes the access point policy for the specified access point.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the outpost-id derived using the access point ARN, see the Example section below.

The following actions are related to DeleteAccessPointPolicy:

", + "documentation":"

Deletes the access point policy for the specified access point.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived using the access point ARN, see the Examples section.

The following actions are related to DeleteAccessPointPolicy:

", "endpoint":{ "hostPrefix":"{AccountId}." } @@ -97,7 +97,7 @@ "requestUri":"/v20180820/bucket/{name}" }, "input":{"shape":"DeleteBucketRequest"}, - "documentation":"

This API operation deletes an Amazon S3 on Outposts bucket. To delete an S3 bucket, see DeleteBucket in the Amazon Simple Storage Service API.

Deletes the Amazon S3 on Outposts bucket. All objects (including all object versions and delete markers) in the bucket must be deleted before the bucket itself can be deleted. For more information, see Using Amazon S3 on Outposts in Amazon Simple Storage Service Developer Guide.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the outpost-id derived using the access point ARN, see the Example section below.

Related Resources

", + "documentation":"

This API operation deletes an Amazon S3 on Outposts bucket. To delete an S3 bucket, see DeleteBucket in the Amazon Simple Storage Service API.

Deletes the Amazon S3 on Outposts bucket. All objects (including all object versions and delete markers) in the bucket must be deleted before the bucket itself can be deleted. For more information, see Using Amazon S3 on Outposts in Amazon Simple Storage Service Developer Guide.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived using the access point ARN, see the Examples section.

Related Resources

", "endpoint":{ "hostPrefix":"{AccountId}." } @@ -109,7 +109,7 @@ "requestUri":"/v20180820/bucket/{name}/lifecycleconfiguration" }, "input":{"shape":"DeleteBucketLifecycleConfigurationRequest"}, - "documentation":"

This API action deletes an Amazon S3 on Outposts bucket's lifecycle configuration. To delete an S3 bucket's lifecycle configuration, see DeleteBucketLifecycle in the Amazon Simple Storage Service API.

Deletes the lifecycle configuration from the specified Outposts bucket. Amazon S3 on Outposts removes all the lifecycle configuration rules in the lifecycle subresource associated with the bucket. Your objects never expire, and Amazon S3 on Outposts no longer automatically deletes any objects on the basis of rules contained in the deleted lifecycle configuration. For more information, see Using Amazon S3 on Outposts in Amazon Simple Storage Service Developer Guide.

To use this operation, you must have permission to perform the s3outposts:DeleteLifecycleConfiguration action. By default, the bucket owner has this permission and the Outposts bucket owner can grant this permission to others.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the outpost-id derived using the access point ARN, see the Example section below.

For more information about object expiration, see Elements to Describe Lifecycle Actions.

Related actions include:

", + "documentation":"

This API action deletes an Amazon S3 on Outposts bucket's lifecycle configuration. To delete an S3 bucket's lifecycle configuration, see DeleteBucketLifecycle in the Amazon Simple Storage Service API.

Deletes the lifecycle configuration from the specified Outposts bucket. Amazon S3 on Outposts removes all the lifecycle configuration rules in the lifecycle subresource associated with the bucket. Your objects never expire, and Amazon S3 on Outposts no longer automatically deletes any objects on the basis of rules contained in the deleted lifecycle configuration. For more information, see Using Amazon S3 on Outposts in Amazon Simple Storage Service Developer Guide.

To use this operation, you must have permission to perform the s3-outposts:DeleteLifecycleConfiguration action. By default, the bucket owner has this permission and the Outposts bucket owner can grant this permission to others.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived using the access point ARN, see the Examples section.

For more information about object expiration, see Elements to Describe Lifecycle Actions.

Related actions include:

", "endpoint":{ "hostPrefix":"{AccountId}." } @@ -121,7 +121,7 @@ "requestUri":"/v20180820/bucket/{name}/policy" }, "input":{"shape":"DeleteBucketPolicyRequest"}, - "documentation":"

This API operation deletes an Amazon S3 on Outposts bucket policy. To delete an S3 bucket policy, see DeleteBucketPolicy in the Amazon Simple Storage Service API.

This implementation of the DELETE operation uses the policy subresource to delete the policy of a specified Amazon S3 on Outposts bucket. If you are using an identity other than the root user of the AWS account that owns the bucket, the calling identity must have the s3outposts:DeleteBucketPolicy permissions on the specified Outposts bucket and belong to the bucket owner's account to use this operation. For more information, see Using Amazon S3 on Outposts in Amazon Simple Storage Service Developer Guide.

If you don't have DeleteBucketPolicy permissions, Amazon S3 returns a 403 Access Denied error. If you have the correct permissions, but you're not using an identity that belongs to the bucket owner's account, Amazon S3 returns a 405 Method Not Allowed error.

As a security precaution, the root user of the AWS account that owns a bucket can always use this operation, even if the policy explicitly denies the root user the ability to perform this action.

For more information about bucket policies, see Using Bucket Policies and User Policies.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the outpost-id derived using the access point ARN, see the Example section below.

The following actions are related to DeleteBucketPolicy:

", + "documentation":"

This API operation deletes an Amazon S3 on Outposts bucket policy. To delete an S3 bucket policy, see DeleteBucketPolicy in the Amazon Simple Storage Service API.

This implementation of the DELETE operation uses the policy subresource to delete the policy of a specified Amazon S3 on Outposts bucket. If you are using an identity other than the root user of the AWS account that owns the bucket, the calling identity must have the s3-outposts:DeleteBucketPolicy permissions on the specified Outposts bucket and belong to the bucket owner's account to use this operation. For more information, see Using Amazon S3 on Outposts in Amazon Simple Storage Service Developer Guide.

If you don't have DeleteBucketPolicy permissions, Amazon S3 returns a 403 Access Denied error. If you have the correct permissions, but you're not using an identity that belongs to the bucket owner's account, Amazon S3 returns a 405 Method Not Allowed error.

As a security precaution, the root user of the AWS account that owns a bucket can always use this operation, even if the policy explicitly denies the root user the ability to perform this action.

For more information about bucket policies, see Using Bucket Policies and User Policies.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived using the access point ARN, see the Examples section.

The following actions are related to DeleteBucketPolicy:

", "endpoint":{ "hostPrefix":"{AccountId}." } @@ -134,7 +134,7 @@ "responseCode":204 }, "input":{"shape":"DeleteBucketTaggingRequest"}, - "documentation":"

This API operation deletes an Amazon S3 on Outposts bucket's tags. To delete an S3 bucket tags, see DeleteBucketTagging in the Amazon Simple Storage Service API.

Deletes the tags from the Outposts bucket. For more information, see Using Amazon S3 on Outposts in Amazon Simple Storage Service Developer Guide.

To use this operation, you must have permission to perform the PutBucketTagging action. By default, the bucket owner has this permission and can grant this permission to others.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the outpost-id derived using the access point ARN, see the Example section below.

The following actions are related to DeleteBucketTagging:

", + "documentation":"

This operation deletes an Amazon S3 on Outposts bucket's tags. To delete an S3 bucket tags, see DeleteBucketTagging in the Amazon Simple Storage Service API.

Deletes the tags from the Outposts bucket. For more information, see Using Amazon S3 on Outposts in Amazon Simple Storage Service Developer Guide.

To use this operation, you must have permission to perform the PutBucketTagging action. By default, the bucket owner has this permission and can grant this permission to others.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived using the access point ARN, see the Examples section.

The following actions are related to DeleteBucketTagging:

", "endpoint":{ "hostPrefix":"{AccountId}." } @@ -169,6 +169,31 @@ "hostPrefix":"{AccountId}." } }, + "DeleteStorageLensConfiguration":{ + "name":"DeleteStorageLensConfiguration", + "http":{ + "method":"DELETE", + "requestUri":"/v20180820/storagelens/{storagelensid}" + }, + "input":{"shape":"DeleteStorageLensConfigurationRequest"}, + "documentation":"

Deletes the Amazon S3 Storage Lens configuration. For more information about S3 Storage Lens, see Working with Amazon S3 Storage Lens in the Amazon Simple Storage Service Developer Guide.

To use this action, you must have permission to perform the s3:DeleteStorageLensConfiguration action. For more information, see Setting permissions to use Amazon S3 Storage Lens in the Amazon Simple Storage Service Developer Guide.

", + "endpoint":{ + "hostPrefix":"{AccountId}." + } + }, + "DeleteStorageLensConfigurationTagging":{ + "name":"DeleteStorageLensConfigurationTagging", + "http":{ + "method":"DELETE", + "requestUri":"/v20180820/storagelens/{storagelensid}/tagging" + }, + "input":{"shape":"DeleteStorageLensConfigurationTaggingRequest"}, + "output":{"shape":"DeleteStorageLensConfigurationTaggingResult"}, + "documentation":"

Deletes the Amazon S3 Storage Lens configuration tags. For more information about S3 Storage Lens, see Working with Amazon S3 Storage Lens in the Amazon Simple Storage Service Developer Guide.

To use this action, you must have permission to perform the s3:DeleteStorageLensConfigurationTagging action. For more information, see Setting permissions to use Amazon S3 Storage Lens in the Amazon Simple Storage Service Developer Guide.

", + "endpoint":{ + "hostPrefix":"{AccountId}." + } + }, "DescribeJob":{ "name":"DescribeJob", "http":{ @@ -196,7 +221,7 @@ }, "input":{"shape":"GetAccessPointRequest"}, "output":{"shape":"GetAccessPointResult"}, - "documentation":"

Returns configuration information about the specified access point.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the outpost-id derived using the access point ARN, see the Example section below.

The following actions are related to GetAccessPoint:

", + "documentation":"

Returns configuration information about the specified access point.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived using the access point ARN, see the Examples section.

The following actions are related to GetAccessPoint:

", "endpoint":{ "hostPrefix":"{AccountId}." } @@ -235,7 +260,7 @@ }, "input":{"shape":"GetBucketRequest"}, "output":{"shape":"GetBucketResult"}, - "documentation":"

Gets an Amazon S3 on Outposts bucket. For more information, see Using Amazon S3 on Outposts in the Amazon Simple Storage Service Developer Guide.

The following actions are related to GetBucket for Amazon S3 on Outposts:

", + "documentation":"

Gets an Amazon S3 on Outposts bucket. For more information, see Using Amazon S3 on Outposts in the Amazon Simple Storage Service Developer Guide.

If you are using an identity other than the root user of the AWS account that owns the bucket, the calling identity must have the s3-outposts:GetBucket permissions on the specified bucket and belong to the bucket owner's account in order to use this operation. Only users from Outposts bucket owner account with the right permissions can perform actions on an Outposts bucket.

If you don't have s3-outposts:GetBucket permissions or you're not using an identity that belongs to the bucket owner's account, Amazon S3 returns a 403 Access Denied error.

The following actions are related to GetBucket for Amazon S3 on Outposts:

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived using the access point ARN, see the Examples section.

", "endpoint":{ "hostPrefix":"{AccountId}." } @@ -248,7 +273,7 @@ }, "input":{"shape":"GetBucketLifecycleConfigurationRequest"}, "output":{"shape":"GetBucketLifecycleConfigurationResult"}, - "documentation":"

This API operation gets an Amazon S3 on Outposts bucket's lifecycle configuration. To get an S3 bucket's lifecycle configuration, see GetBucketLifecycleConfiguration in the Amazon Simple Storage Service API.

Returns the lifecycle configuration information set on the Outposts bucket. For more information, see Using Amazon S3 on Outposts and for information about lifecycle configuration, see Object Lifecycle Management in Amazon Simple Storage Service Developer Guide.

To use this operation, you must have permission to perform the s3outposts:GetLifecycleConfiguration action. The Outposts bucket owner has this permission, by default. The bucket owner can grant this permission to others. For more information about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3 Resources.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the outpost-id derived using the access point ARN, see the Example section below.

GetBucketLifecycleConfiguration has the following special error:

  • Error code: NoSuchLifecycleConfiguration

    • Description: The lifecycle configuration does not exist.

    • HTTP Status Code: 404 Not Found

    • SOAP Fault Code Prefix: Client

The following actions are related to GetBucketLifecycleConfiguration:

", + "documentation":"

This operation gets an Amazon S3 on Outposts bucket's lifecycle configuration. To get an S3 bucket's lifecycle configuration, see GetBucketLifecycleConfiguration in the Amazon Simple Storage Service API.

Returns the lifecycle configuration information set on the Outposts bucket. For more information, see Using Amazon S3 on Outposts and for information about lifecycle configuration, see Object Lifecycle Management in Amazon Simple Storage Service Developer Guide.

To use this operation, you must have permission to perform the s3-outposts:GetLifecycleConfiguration action. The Outposts bucket owner has this permission, by default. The bucket owner can grant this permission to others. For more information about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3 Resources.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived using the access point ARN, see the Examples section.

GetBucketLifecycleConfiguration has the following special error:

  • Error code: NoSuchLifecycleConfiguration

    • Description: The lifecycle configuration does not exist.

    • HTTP Status Code: 404 Not Found

    • SOAP Fault Code Prefix: Client

The following actions are related to GetBucketLifecycleConfiguration:

", "endpoint":{ "hostPrefix":"{AccountId}." } @@ -261,7 +286,7 @@ }, "input":{"shape":"GetBucketPolicyRequest"}, "output":{"shape":"GetBucketPolicyResult"}, - "documentation":"

This API action gets a bucket policy for an Amazon S3 on Outposts bucket. To get a policy for an S3 bucket, see GetBucketPolicy in the Amazon Simple Storage Service API.

Returns the policy of a specified Outposts bucket. For more information, see Using Amazon S3 on Outposts in the Amazon Simple Storage Service Developer Guide.

If you are using an identity other than the root user of the AWS account that owns the bucket, the calling identity must have the GetBucketPolicy permissions on the specified bucket and belong to the bucket owner's account in order to use this operation.

If you don't have s3outposts:GetBucketPolicy permissions, Amazon S3 returns a 403 Access Denied error. If you have the correct permissions, but you're not using an identity that belongs to the bucket owner's account, Amazon S3 returns a 405 Method Not Allowed error.

As a security precaution, the root user of the AWS account that owns a bucket can always use this operation, even if the policy explicitly denies the root user the ability to perform this action.

For more information about bucket policies, see Using Bucket Policies and User Policies.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the outpost-id derived using the access point ARN, see the Example section below.

The following actions are related to GetBucketPolicy:

", + "documentation":"

This action gets a bucket policy for an Amazon S3 on Outposts bucket. To get a policy for an S3 bucket, see GetBucketPolicy in the Amazon Simple Storage Service API.

Returns the policy of a specified Outposts bucket. For more information, see Using Amazon S3 on Outposts in the Amazon Simple Storage Service Developer Guide.

If you are using an identity other than the root user of the AWS account that owns the bucket, the calling identity must have the GetBucketPolicy permissions on the specified bucket and belong to the bucket owner's account in order to use this operation.

Only users from Outposts bucket owner account with the right permissions can perform actions on an Outposts bucket. If you don't have s3-outposts:GetBucketPolicy permissions or you're not using an identity that belongs to the bucket owner's account, Amazon S3 returns a 403 Access Denied error.

As a security precaution, the root user of the AWS account that owns a bucket can always use this operation, even if the policy explicitly denies the root user the ability to perform this action.

For more information about bucket policies, see Using Bucket Policies and User Policies.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived using the access point ARN, see the Examples section.

The following actions are related to GetBucketPolicy:

", "endpoint":{ "hostPrefix":"{AccountId}." } @@ -274,7 +299,7 @@ }, "input":{"shape":"GetBucketTaggingRequest"}, "output":{"shape":"GetBucketTaggingResult"}, - "documentation":"

This API operation gets an Amazon S3 on Outposts bucket's tags. To get an S3 bucket tags, see GetBucketTagging in the Amazon Simple Storage Service API.

Returns the tag set associated with the Outposts bucket. For more information, see Using Amazon S3 on Outposts in the Amazon Simple Storage Service Developer Guide.

To use this operation, you must have permission to perform the GetBucketTagging action. By default, the bucket owner has this permission and can grant this permission to others.

GetBucketTagging has the following special error:

  • Error code: NoSuchTagSetError

    • Description: There is no tag set associated with the bucket.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the outpost-id derived using the access point ARN, see the Example section below.

The following actions are related to GetBucketTagging:

", + "documentation":"

This operation gets an Amazon S3 on Outposts bucket's tags. To get an S3 bucket tags, see GetBucketTagging in the Amazon Simple Storage Service API.

Returns the tag set associated with the Outposts bucket. For more information, see Using Amazon S3 on Outposts in the Amazon Simple Storage Service Developer Guide.

To use this operation, you must have permission to perform the GetBucketTagging action. By default, the bucket owner has this permission and can grant this permission to others.

GetBucketTagging has the following special error:

  • Error code: NoSuchTagSetError

    • Description: There is no tag set associated with the bucket.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived using the access point ARN, see the Examples section.

The following actions are related to GetBucketTagging:

", "endpoint":{ "hostPrefix":"{AccountId}." } @@ -313,6 +338,32 @@ "hostPrefix":"{AccountId}." } }, + "GetStorageLensConfiguration":{ + "name":"GetStorageLensConfiguration", + "http":{ + "method":"GET", + "requestUri":"/v20180820/storagelens/{storagelensid}" + }, + "input":{"shape":"GetStorageLensConfigurationRequest"}, + "output":{"shape":"GetStorageLensConfigurationResult"}, + "documentation":"

Gets the Amazon S3 Storage Lens configuration. For more information, see Working with Amazon S3 Storage Lens in the Amazon Simple Storage Service Developer Guide.

To use this action, you must have permission to perform the s3:GetStorageLensConfiguration action. For more information, see Setting permissions to use Amazon S3 Storage Lens in the Amazon Simple Storage Service Developer Guide.

", + "endpoint":{ + "hostPrefix":"{AccountId}." + } + }, + "GetStorageLensConfigurationTagging":{ + "name":"GetStorageLensConfigurationTagging", + "http":{ + "method":"GET", + "requestUri":"/v20180820/storagelens/{storagelensid}/tagging" + }, + "input":{"shape":"GetStorageLensConfigurationTaggingRequest"}, + "output":{"shape":"GetStorageLensConfigurationTaggingResult"}, + "documentation":"

Gets the tags of Amazon S3 Storage Lens configuration. For more information about S3 Storage Lens, see Working with Amazon S3 Storage Lens in the Amazon Simple Storage Service Developer Guide.

To use this action, you must have permission to perform the s3:GetStorageLensConfigurationTagging action. For more information, see Setting permissions to use Amazon S3 Storage Lens in the Amazon Simple Storage Service Developer Guide.

", + "endpoint":{ + "hostPrefix":"{AccountId}." + } + }, "ListAccessPoints":{ "name":"ListAccessPoints", "http":{ @@ -321,7 +372,7 @@ }, "input":{"shape":"ListAccessPointsRequest"}, "output":{"shape":"ListAccessPointsResult"}, - "documentation":"

Returns a list of the access points currently associated with the specified bucket. You can retrieve up to 1000 access points per call. If the specified bucket has more than 1,000 access points (or the number specified in maxResults, whichever is less), the response will include a continuation token that you can use to list the additional access points.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the outpost-id derived using the access point ARN, see the Example section below.

The following actions are related to ListAccessPoints:

", + "documentation":"

Returns a list of the access points currently associated with the specified bucket. You can retrieve up to 1000 access points per call. If the specified bucket has more than 1,000 access points (or the number specified in maxResults, whichever is less), the response will include a continuation token that you can use to list the additional access points.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived using the access point ARN, see the Examples section.

The following actions are related to ListAccessPoints:

", "endpoint":{ "hostPrefix":"{AccountId}." } @@ -352,7 +403,20 @@ }, "input":{"shape":"ListRegionalBucketsRequest"}, "output":{"shape":"ListRegionalBucketsResult"}, - "documentation":"

Returns a list of all Outposts buckets in an Outposts that are owned by the authenticated sender of the request. For more information, see Using Amazon S3 on Outposts in the Amazon Simple Storage Service Developer Guide.

For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and outpost-id in your API request, see the Example section below.

", + "documentation":"

Returns a list of all Outposts buckets in an Outpost that are owned by the authenticated sender of the request. For more information, see Using Amazon S3 on Outposts in the Amazon Simple Storage Service Developer Guide.

For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and x-amz-outpost-id in your request, see the Examples section.

", + "endpoint":{ + "hostPrefix":"{AccountId}." + } + }, + "ListStorageLensConfigurations":{ + "name":"ListStorageLensConfigurations", + "http":{ + "method":"GET", + "requestUri":"/v20180820/storagelens" + }, + "input":{"shape":"ListStorageLensConfigurationsRequest"}, + "output":{"shape":"ListStorageLensConfigurationsResult"}, + "documentation":"

Gets a list of Amazon S3 Storage Lens configurations. For more information about S3 Storage Lens, see Working with Amazon S3 Storage Lens in the Amazon Simple Storage Service Developer Guide.

To use this action, you must have permission to perform the s3:ListStorageLensConfigurations action. For more information, see Setting permissions to use Amazon S3 Storage Lens in the Amazon Simple Storage Service Developer Guide.

", "endpoint":{ "hostPrefix":"{AccountId}." } @@ -368,7 +432,7 @@ "locationName":"PutAccessPointPolicyRequest", "xmlNamespace":{"uri":"http://awss3control.amazonaws.com/doc/2018-08-20/"} }, - "documentation":"

Associates an access policy with the specified access point. Each access point can have only one policy, so a request made to this API replaces any existing policy associated with the specified access point.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the outpost-id derived using the access point ARN, see the Example section below.

The following actions are related to PutAccessPointPolicy:

", + "documentation":"

Associates an access policy with the specified access point. Each access point can have only one policy, so a request made to this API replaces any existing policy associated with the specified access point.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived using the access point ARN, see the Examples section.

The following actions are related to PutAccessPointPolicy:

", "endpoint":{ "hostPrefix":"{AccountId}." } @@ -380,7 +444,7 @@ "requestUri":"/v20180820/bucket/{name}/lifecycleconfiguration" }, "input":{"shape":"PutBucketLifecycleConfigurationRequest"}, - "documentation":"

This API action puts a lifecycle configuration to an Amazon S3 on Outposts bucket. To put a lifecycle configuration to an S3 bucket, see PutBucketLifecycleConfiguration in the Amazon Simple Storage Service API.

Creates a new lifecycle configuration for the Outposts bucket or replaces an existing lifecycle configuration. Outposts buckets can only support a lifecycle that deletes objects after a certain period of time. For more information, see Managing Lifecycle Permissions for Amazon S3 on Outposts.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the outpost-id derived using the access point ARN, see the Example section below.

The following actions are related to PutBucketLifecycleConfiguration:

", + "documentation":"

This action puts a lifecycle configuration to an Amazon S3 on Outposts bucket. To put a lifecycle configuration to an S3 bucket, see PutBucketLifecycleConfiguration in the Amazon Simple Storage Service API.

Creates a new lifecycle configuration for the Outposts bucket or replaces an existing lifecycle configuration. Outposts buckets only support lifecycle configurations that delete/expire objects after a certain period of time and abort incomplete multipart uploads. For more information, see Managing Lifecycle Permissions for Amazon S3 on Outposts.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived using the access point ARN, see the Examples section.

The following actions are related to PutBucketLifecycleConfiguration:

", "endpoint":{ "hostPrefix":"{AccountId}." }, @@ -397,7 +461,7 @@ "locationName":"PutBucketPolicyRequest", "xmlNamespace":{"uri":"http://awss3control.amazonaws.com/doc/2018-08-20/"} }, - "documentation":"

This API action puts a bucket policy to an Amazon S3 on Outposts bucket. To put a policy on an S3 bucket, see PutBucketPolicy in the Amazon Simple Storage Service API.

Applies an Amazon S3 bucket policy to an Outposts bucket. For more information, see Using Amazon S3 on Outposts in the Amazon Simple Storage Service Developer Guide.

If you are using an identity other than the root user of the AWS account that owns the Outposts bucket, the calling identity must have the PutBucketPolicy permissions on the specified Outposts bucket and belong to the bucket owner's account in order to use this operation.

If you don't have PutBucketPolicy permissions, Amazon S3 returns a 403 Access Denied error. If you have the correct permissions, but you're not using an identity that belongs to the bucket owner's account, Amazon S3 returns a 405 Method Not Allowed error.

As a security precaution, the root user of the AWS account that owns a bucket can always use this operation, even if the policy explicitly denies the root user the ability to perform this action.

For more information about bucket policies, see Using Bucket Policies and User Policies.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the outpost-id derived using the access point ARN, see the Example section below.

The following actions are related to PutBucketPolicy:

", + "documentation":"

This action puts a bucket policy to an Amazon S3 on Outposts bucket. To put a policy on an S3 bucket, see PutBucketPolicy in the Amazon Simple Storage Service API.

Applies an Amazon S3 bucket policy to an Outposts bucket. For more information, see Using Amazon S3 on Outposts in the Amazon Simple Storage Service Developer Guide.

If you are using an identity other than the root user of the AWS account that owns the Outposts bucket, the calling identity must have the PutBucketPolicy permissions on the specified Outposts bucket and belong to the bucket owner's account in order to use this operation.

If you don't have PutBucketPolicy permissions, Amazon S3 returns a 403 Access Denied error. If you have the correct permissions, but you're not using an identity that belongs to the bucket owner's account, Amazon S3 returns a 405 Method Not Allowed error.

As a security precaution, the root user of the AWS account that owns a bucket can always use this operation, even if the policy explicitly denies the root user the ability to perform this action.

For more information about bucket policies, see Using Bucket Policies and User Policies.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived using the access point ARN, see the Examples section.

The following actions are related to PutBucketPolicy:

", "endpoint":{ "hostPrefix":"{AccountId}." }, @@ -410,7 +474,7 @@ "requestUri":"/v20180820/bucket/{name}/tagging" }, "input":{"shape":"PutBucketTaggingRequest"}, - "documentation":"

This API action puts tags on an Amazon S3 on Outposts bucket. To put tags on an S3 bucket, see PutBucketTagging in the Amazon Simple Storage Service API.

Sets the tags for an Outposts bucket. For more information, see Using Amazon S3 on Outposts in the Amazon Simple Storage Service Developer Guide.

Use tags to organize your AWS bill to reflect your own cost structure. To do this, sign up to get your AWS account bill with tag key values included. Then, to see the cost of combined resources, organize your billing information according to resources with the same tag key values. For example, you can tag several resources with a specific application name, and then organize your billing information to see the total cost of that application across several services. For more information, see Cost Allocation and Tagging.

Within a bucket, if you add a tag that has the same key as an existing tag, the new value overwrites the old value. For more information, see Using Cost Allocation in Amazon S3 Bucket Tags.

To use this operation, you must have permissions to perform the s3outposts:PutBucketTagging action. The Outposts bucket owner has this permission by default and can grant this permission to others. For more information about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3 Resources.

PutBucketTagging has the following special errors:

  • Error code: InvalidTagError

  • Error code: MalformedXMLError

    • Description: The XML provided does not match the schema.

  • Error code: OperationAbortedError

    • Description: A conflicting conditional operation is currently in progress against this resource. Try again.

  • Error code: InternalError

    • Description: The service was unable to apply the provided tag to the bucket.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the outpost-id derived using the access point ARN, see the Example section below.

The following actions are related to PutBucketTagging:

", + "documentation":"

This action puts tags on an Amazon S3 on Outposts bucket. To put tags on an S3 bucket, see PutBucketTagging in the Amazon Simple Storage Service API.

Sets the tags for an Outposts bucket. For more information, see Using Amazon S3 on Outposts in the Amazon Simple Storage Service Developer Guide.

Use tags to organize your AWS bill to reflect your own cost structure. To do this, sign up to get your AWS account bill with tag key values included. Then, to see the cost of combined resources, organize your billing information according to resources with the same tag key values. For example, you can tag several resources with a specific application name, and then organize your billing information to see the total cost of that application across several services. For more information, see Cost Allocation and Tagging.

Within a bucket, if you add a tag that has the same key as an existing tag, the new value overwrites the old value. For more information, see Using Cost Allocation in Amazon S3 Bucket Tags.

To use this operation, you must have permissions to perform the s3-outposts:PutBucketTagging action. The Outposts bucket owner has this permission by default and can grant this permission to others. For more information about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3 Resources.

PutBucketTagging has the following special errors:

  • Error code: InvalidTagError

  • Error code: MalformedXMLError

    • Description: The XML provided does not match the schema.

  • Error code: OperationAbortedError

    • Description: A conflicting conditional operation is currently in progress against this resource. Try again.

  • Error code: InternalError

    • Description: The service was unable to apply the provided tag to the bucket.

All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request and an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived using the access point ARN, see the Examples section.

The following actions are related to PutBucketTagging:

", "endpoint":{ "hostPrefix":"{AccountId}." }, @@ -434,7 +498,7 @@ {"shape":"NotFoundException"}, {"shape":"TooManyTagsException"} ], - "documentation":"

Sets the supplied tag-set on an S3 Batch Operations job.

A tag is a key-value pair. You can associate S3 Batch Operations tags with any job by sending a PUT request against the tagging subresource that is associated with the job. To modify the existing tag set, you can either replace the existing tag set entirely, or make changes within the existing tag set by retrieving the existing tag set using GetJobTagging, modify that tag set, and use this API action to replace the tag set with the one you modified. For more information, see Controlling access and labeling jobs using tags in the Amazon Simple Storage Service Developer Guide.

  • If you send this request with an empty tag set, Amazon S3 deletes the existing tag set on the Batch Operations job. If you use this method, you are charged for a Tier 1 Request (PUT). For more information, see Amazon S3 pricing.

  • For deleting existing tags for your Batch Operations job, a DeleteJobTagging request is preferred because it achieves the same result without incurring charges.

  • A few things to consider about using tags:

    • Amazon S3 limits the maximum number of tags to 50 tags per job.

    • You can associate up to 50 tags with a job as long as they have unique tag keys.

    • A tag key can be up to 128 Unicode characters in length, and tag values can be up to 256 Unicode characters in length.

    • The key and values are case sensitive.

    • For tagging-related restrictions related to characters and encodings, see User-Defined Tag Restrictions in the AWS Billing and Cost Management User Guide.

To use this operation, you must have permission to perform the s3:PutJobTagging action.

Related actions include:

", + "documentation":"

Sets the supplied tag-set on an S3 Batch Operations job.

A tag is a key-value pair. You can associate S3 Batch Operations tags with any job by sending a PUT request against the tagging subresource that is associated with the job. To modify the existing tag set, you can either replace the existing tag set entirely, or make changes within the existing tag set by retrieving the existing tag set using GetJobTagging, modify that tag set, and use this action to replace the tag set with the one you modified. For more information, see Controlling access and labeling jobs using tags in the Amazon Simple Storage Service Developer Guide.

  • If you send this request with an empty tag set, Amazon S3 deletes the existing tag set on the Batch Operations job. If you use this method, you are charged for a Tier 1 Request (PUT). For more information, see Amazon S3 pricing.

  • For deleting existing tags for your Batch Operations job, a DeleteJobTagging request is preferred because it achieves the same result without incurring charges.

  • A few things to consider about using tags:

    • Amazon S3 limits the maximum number of tags to 50 tags per job.

    • You can associate up to 50 tags with a job as long as they have unique tag keys.

    • A tag key can be up to 128 Unicode characters in length, and tag values can be up to 256 Unicode characters in length.

    • The key and values are case sensitive.

    • For tagging-related restrictions related to characters and encodings, see User-Defined Tag Restrictions in the AWS Billing and Cost Management User Guide.

To use this operation, you must have permission to perform the s3:PutJobTagging action.

Related actions include:

", "endpoint":{ "hostPrefix":"{AccountId}." } @@ -451,6 +515,39 @@ "hostPrefix":"{AccountId}." } }, + "PutStorageLensConfiguration":{ + "name":"PutStorageLensConfiguration", + "http":{ + "method":"PUT", + "requestUri":"/v20180820/storagelens/{storagelensid}" + }, + "input":{ + "shape":"PutStorageLensConfigurationRequest", + "locationName":"PutStorageLensConfigurationRequest", + "xmlNamespace":{"uri":"http://awss3control.amazonaws.com/doc/2018-08-20/"} + }, + "documentation":"

Puts an Amazon S3 Storage Lens configuration. For more information about S3 Storage Lens, see Working with Amazon S3 Storage Lens in the Amazon Simple Storage Service Developer Guide.

To use this action, you must have permission to perform the s3:PutStorageLensConfiguration action. For more information, see Setting permissions to use Amazon S3 Storage Lens in the Amazon Simple Storage Service Developer Guide.

", + "endpoint":{ + "hostPrefix":"{AccountId}." + } + }, + "PutStorageLensConfigurationTagging":{ + "name":"PutStorageLensConfigurationTagging", + "http":{ + "method":"PUT", + "requestUri":"/v20180820/storagelens/{storagelensid}/tagging" + }, + "input":{ + "shape":"PutStorageLensConfigurationTaggingRequest", + "locationName":"PutStorageLensConfigurationTaggingRequest", + "xmlNamespace":{"uri":"http://awss3control.amazonaws.com/doc/2018-08-20/"} + }, + "output":{"shape":"PutStorageLensConfigurationTaggingResult"}, + "documentation":"

Put or replace tags on an existing Amazon S3 Storage Lens configuration. For more information about S3 Storage Lens, see Working with Amazon S3 Storage Lens in the Amazon Simple Storage Service Developer Guide.

To use this action, you must have permission to perform the s3:PutStorageLensConfigurationTagging action. For more information, see Setting permissions to use Amazon S3 Storage Lens in the Amazon Simple Storage Service Developer Guide.

", + "endpoint":{ + "hostPrefix":"{AccountId}." + } + }, "UpdateJobPriority":{ "name":"UpdateJobPriority", "http":{ @@ -550,6 +647,37 @@ "max":64, "pattern":"^\\d{12}$" }, + "AccountLevel":{ + "type":"structure", + "required":["BucketLevel"], + "members":{ + "ActivityMetrics":{ + "shape":"ActivityMetrics", + "documentation":"

A container for the S3 Storage Lens activity metrics.

" + }, + "BucketLevel":{ + "shape":"BucketLevel", + "documentation":"

A container for the S3 Storage Lens bucket-level configuration.

" + } + }, + "documentation":"

A container for the account level Amazon S3 Storage Lens configuration.

" + }, + "ActivityMetrics":{ + "type":"structure", + "members":{ + "IsEnabled":{ + "shape":"IsEnabled", + "documentation":"

A container for whether the activity metrics are enabled.

" + } + }, + "documentation":"

A container for the activity metrics.

" + }, + "AwsOrgArn":{ + "type":"string", + "max":1024, + "min":1, + "pattern":"arn:[a-z\\-]+:organizations::\\d{12}:organization\\/o-[a-z0-9]{10,32}" + }, "BadRequestException":{ "type":"structure", "members":{ @@ -582,6 +710,20 @@ "authenticated-read" ] }, + "BucketLevel":{ + "type":"structure", + "members":{ + "ActivityMetrics":{ + "shape":"ActivityMetrics", + "documentation":"

A container for the bucket-level activity metrics for Amazon S3 Storage Lens

" + }, + "PrefixLevel":{ + "shape":"PrefixLevel", + "documentation":"

A container for the bucket-level prefix-level metrics for S3 Storage Lens

" + } + }, + "documentation":"

A container for the bucket-level configuration.

" + }, "BucketLocationConstraint":{ "type":"string", "enum":[ @@ -603,8 +745,22 @@ "max":255, "min":3 }, + "Buckets":{ + "type":"list", + "member":{ + "shape":"S3BucketArnString", + "locationName":"Arn" + } + }, + "ConfigId":{ + "type":"string", + "max":64, + "min":1, + "pattern":"[a-zA-Z0-9\\-\\_\\.]+" + }, "ConfirmRemoveSelfBucketAccess":{"type":"boolean"}, "ConfirmationRequired":{"type":"boolean"}, + "ContinuationToken":{"type":"string"}, "CreateAccessPointRequest":{ "type":"structure", "required":[ @@ -628,7 +784,7 @@ }, "Bucket":{ "shape":"BucketName", - "documentation":"

The name of the bucket that you want to associate this access point with.

For Amazon S3 on Outposts specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

" + "documentation":"

The name of the bucket that you want to associate this access point with.

For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.

For using this parameter with S3 on Outposts with the AWS SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

" }, "VpcConfiguration":{ "shape":"VpcConfiguration", @@ -642,7 +798,7 @@ "members":{ "AccessPointArn":{ "shape":"S3AccessPointArn", - "documentation":"

The ARN of the access point.

" + "documentation":"

The ARN of the access point.

This is only supported by Amazon S3 on Outposts.

" } } }, @@ -734,7 +890,7 @@ }, "BucketArn":{ "shape":"S3RegionalBucketArn", - "documentation":"

The Amazon Resource Name (ARN) of the bucket.

For Amazon S3 on Outposts specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

" + "documentation":"

The Amazon Resource Name (ARN) of the bucket.

For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.

For using this parameter with S3 on Outposts with the AWS SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

" } } }, @@ -827,7 +983,7 @@ }, "Name":{ "shape":"AccessPointName", - "documentation":"

The name of the access point whose policy you want to delete.

For Amazon S3 on Outposts specify the ARN of the access point accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>. For example, to access the access point reports-ap through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/accesspoint/reports-ap. The value must be URL encoded.

", + "documentation":"

The name of the access point whose policy you want to delete.

For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.

For using this parameter with S3 on Outposts with the AWS SDK and CLI, you must specify the ARN of the access point accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>. For example, to access the access point reports-ap through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/accesspoint/reports-ap. The value must be URL encoded.

", "location":"uri", "locationName":"name" } @@ -849,7 +1005,7 @@ }, "Name":{ "shape":"AccessPointName", - "documentation":"

The name of the access point you want to delete.

For Amazon S3 on Outposts specify the ARN of the access point accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>. For example, to access the access point reports-ap through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/accesspoint/reports-ap. The value must be URL encoded.

", + "documentation":"

The name of the access point you want to delete.

For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.

For using this parameter with S3 on Outposts with the AWS SDK and CLI, you must specify the ARN of the access point accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>. For example, to access the access point reports-ap through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/accesspoint/reports-ap. The value must be URL encoded.

", "location":"uri", "locationName":"name" } @@ -871,7 +1027,7 @@ }, "Bucket":{ "shape":"BucketName", - "documentation":"

The bucket ARN of the bucket.

For Amazon S3 on Outposts specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

", + "documentation":"

Specifies the bucket.

For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.

For using this parameter with S3 on Outposts with the AWS SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

", "location":"uri", "locationName":"name" } @@ -893,7 +1049,7 @@ }, "Bucket":{ "shape":"BucketName", - "documentation":"

The ARN of the bucket.

For Amazon S3 on Outposts specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

", + "documentation":"

Specifies the bucket.

For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.

For using this parameter with S3 on Outposts with the AWS SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

", "location":"uri", "locationName":"name" } @@ -915,7 +1071,7 @@ }, "Bucket":{ "shape":"BucketName", - "documentation":"

Specifies the bucket being deleted.

For Amazon S3 on Outposts specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

", + "documentation":"

Specifies the bucket being deleted.

For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.

For using this parameter with S3 on Outposts with the AWS SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

", "location":"uri", "locationName":"name" } @@ -937,7 +1093,7 @@ }, "Bucket":{ "shape":"BucketName", - "documentation":"

The bucket ARN that has the tag set to be removed.

For Amazon S3 on Outposts specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

", + "documentation":"

The bucket ARN that has the tag set to be removed.

For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.

For using this parameter with S3 on Outposts with the AWS SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

", "location":"uri", "locationName":"name" } @@ -983,6 +1139,55 @@ } } }, + "DeleteStorageLensConfigurationRequest":{ + "type":"structure", + "required":[ + "ConfigId", + "AccountId" + ], + "members":{ + "ConfigId":{ + "shape":"ConfigId", + "documentation":"

The ID of the S3 Storage Lens configuration.

", + "location":"uri", + "locationName":"storagelensid" + }, + "AccountId":{ + "shape":"AccountId", + "documentation":"

The account ID of the requester.

", + "hostLabel":true, + "location":"header", + "locationName":"x-amz-account-id" + } + } + }, + "DeleteStorageLensConfigurationTaggingRequest":{ + "type":"structure", + "required":[ + "ConfigId", + "AccountId" + ], + "members":{ + "ConfigId":{ + "shape":"ConfigId", + "documentation":"

The ID of the S3 Storage Lens configuration.

", + "location":"uri", + "locationName":"storagelensid" + }, + "AccountId":{ + "shape":"AccountId", + "documentation":"

The account ID of the requester.

", + "hostLabel":true, + "location":"header", + "locationName":"x-amz-account-id" + } + } + }, + "DeleteStorageLensConfigurationTaggingResult":{ + "type":"structure", + "members":{ + } + }, "DescribeJobRequest":{ "type":"structure", "required":[ @@ -1019,6 +1224,20 @@ "max":1024, "min":1 }, + "Exclude":{ + "type":"structure", + "members":{ + "Buckets":{ + "shape":"Buckets", + "documentation":"

A container for the S3 Storage Lens bucket excludes.

" + }, + "Regions":{ + "shape":"Regions", + "documentation":"

A container for the S3 Storage Lens Region excludes.

" + } + }, + "documentation":"

A container for what Amazon S3 Storage Lens will exclude.

" + }, "ExpirationStatus":{ "type":"string", "enum":[ @@ -1027,6 +1246,13 @@ ] }, "ExpiredObjectDeleteMarker":{"type":"boolean"}, + "Format":{ + "type":"string", + "enum":[ + "CSV", + "Parquet" + ] + }, "FunctionArnString":{ "type":"string", "max":1024, @@ -1049,7 +1275,7 @@ }, "Name":{ "shape":"AccessPointName", - "documentation":"

The name of the access point whose policy you want to retrieve.

For Amazon S3 on Outposts specify the ARN of the access point accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>. For example, to access the access point reports-ap through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/accesspoint/reports-ap. The value must be URL encoded.

", + "documentation":"

The name of the access point whose policy you want to retrieve.

For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.

For using this parameter with S3 on Outposts with the AWS SDK and CLI, you must specify the ARN of the access point accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>. For example, to access the access point reports-ap through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/accesspoint/reports-ap. The value must be URL encoded.

", "location":"uri", "locationName":"name" } @@ -1111,7 +1337,7 @@ }, "Name":{ "shape":"AccessPointName", - "documentation":"

The name of the access point whose configuration information you want to retrieve.

For Amazon S3 on Outposts specify the ARN of the access point accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>. For example, to access the access point reports-ap through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/accesspoint/reports-ap. The value must be URL encoded.

", + "documentation":"

The name of the access point whose configuration information you want to retrieve.

For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.

For using this parameter with S3 on Outposts with the AWS SDK and CLI, you must specify the ARN of the access point accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>. For example, to access the access point reports-ap through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/accesspoint/reports-ap. The value must be URL encoded.

", "location":"uri", "locationName":"name" } @@ -1159,7 +1385,7 @@ }, "Bucket":{ "shape":"BucketName", - "documentation":"

The Amazon Resource Name (ARN) of the bucket.

For Amazon S3 on Outposts specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

", + "documentation":"

The Amazon Resource Name (ARN) of the bucket.

For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.

For using this parameter with S3 on Outposts with the AWS SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

", "location":"uri", "locationName":"name" } @@ -1190,7 +1416,7 @@ }, "Bucket":{ "shape":"BucketName", - "documentation":"

The ARN of the bucket.

For Amazon S3 on Outposts specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

", + "documentation":"

Specifies the bucket.

For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.

For using this parameter with S3 on Outposts with the AWS SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

", "location":"uri", "locationName":"name" } @@ -1221,7 +1447,7 @@ }, "Bucket":{ "shape":"BucketName", - "documentation":"

The ARN of the bucket.

For Amazon S3 on Outposts specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

", + "documentation":"

Specifies the bucket.

For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.

For using this parameter with S3 on Outposts with the AWS SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

", "location":"uri", "locationName":"name" } @@ -1260,7 +1486,7 @@ }, "Bucket":{ "shape":"BucketName", - "documentation":"

The ARN of the bucket.

For Amazon S3 on Outposts specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

", + "documentation":"

Specifies the bucket.

For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.

For using this parameter with S3 on Outposts with the AWS SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

", "location":"uri", "locationName":"name" } @@ -1330,6 +1556,69 @@ } } }, + "GetStorageLensConfigurationRequest":{ + "type":"structure", + "required":[ + "ConfigId", + "AccountId" + ], + "members":{ + "ConfigId":{ + "shape":"ConfigId", + "documentation":"

The ID of the Amazon S3 Storage Lens configuration.

", + "location":"uri", + "locationName":"storagelensid" + }, + "AccountId":{ + "shape":"AccountId", + "documentation":"

The account ID of the requester.

", + "hostLabel":true, + "location":"header", + "locationName":"x-amz-account-id" + } + } + }, + "GetStorageLensConfigurationResult":{ + "type":"structure", + "members":{ + "StorageLensConfiguration":{ + "shape":"StorageLensConfiguration", + "documentation":"

The S3 Storage Lens configuration requested.

" + } + }, + "payload":"StorageLensConfiguration" + }, + "GetStorageLensConfigurationTaggingRequest":{ + "type":"structure", + "required":[ + "ConfigId", + "AccountId" + ], + "members":{ + "ConfigId":{ + "shape":"ConfigId", + "documentation":"

The ID of the Amazon S3 Storage Lens configuration.

", + "location":"uri", + "locationName":"storagelensid" + }, + "AccountId":{ + "shape":"AccountId", + "documentation":"

The account ID of the requester.

", + "hostLabel":true, + "location":"header", + "locationName":"x-amz-account-id" + } + } + }, + "GetStorageLensConfigurationTaggingResult":{ + "type":"structure", + "members":{ + "Tags":{ + "shape":"StorageLensTags", + "documentation":"

The tags of S3 Storage Lens configuration requested.

" + } + } + }, "GrantFullControl":{"type":"string"}, "GrantRead":{"type":"string"}, "GrantReadACP":{"type":"string"}, @@ -1350,6 +1639,20 @@ "documentation":"

", "exception":true }, + "Include":{ + "type":"structure", + "members":{ + "Buckets":{ + "shape":"Buckets", + "documentation":"

A container for the S3 Storage Lens bucket includes.

" + }, + "Regions":{ + "shape":"Regions", + "documentation":"

A container for the S3 Storage Lens Region includes.

" + } + }, + "documentation":"

A container for what Amazon S3 Storage Lens configuration includes.

" + }, "InternalServiceException":{ "type":"structure", "members":{ @@ -1375,6 +1678,7 @@ "documentation":"

", "exception":true }, + "IsEnabled":{"type":"boolean"}, "IsPublic":{"type":"boolean"}, "JobArn":{ "type":"string", @@ -1909,7 +2213,7 @@ }, "Bucket":{ "shape":"BucketName", - "documentation":"

The name of the bucket whose associated access points you want to list.

For Amazon S3 on Outposts specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

", + "documentation":"

The name of the bucket whose associated access points you want to list.

For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.

For using this parameter with S3 on Outposts with the AWS SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

", "location":"querystring", "locationName":"bucket" }, @@ -2029,6 +2333,65 @@ } } }, + "ListStorageLensConfigurationEntry":{ + "type":"structure", + "required":[ + "Id", + "StorageLensArn", + "HomeRegion" + ], + "members":{ + "Id":{ + "shape":"ConfigId", + "documentation":"

A container for the S3 Storage Lens configuration ID.

" + }, + "StorageLensArn":{ + "shape":"StorageLensArn", + "documentation":"

The ARN of the S3 Storage Lens configuration. This property is read-only.

" + }, + "HomeRegion":{ + "shape":"S3AWSRegion", + "documentation":"

A container for the S3 Storage Lens home Region. Your metrics data is stored and retained in your designated S3 Storage Lens home Region.

" + }, + "IsEnabled":{ + "shape":"IsEnabled", + "documentation":"

A container for whether the S3 Storage Lens configuration is enabled. This property is required.

" + } + }, + "documentation":"

Part of ListStorageLensConfigurationResult. Each entry includes the description of the S3 Storage Lens configuration, its home Region, whether it is enabled, its Amazon Resource Name (ARN), and config ID.

" + }, + "ListStorageLensConfigurationsRequest":{ + "type":"structure", + "required":["AccountId"], + "members":{ + "AccountId":{ + "shape":"AccountId", + "documentation":"

The account ID of the requester.

", + "hostLabel":true, + "location":"header", + "locationName":"x-amz-account-id" + }, + "NextToken":{ + "shape":"ContinuationToken", + "documentation":"

A pagination token to request the next page of results.

", + "location":"querystring", + "locationName":"nextToken" + } + } + }, + "ListStorageLensConfigurationsResult":{ + "type":"structure", + "members":{ + "NextToken":{ + "shape":"ContinuationToken", + "documentation":"

If the request produced more than the maximum number of S3 Storage Lens configuration results, you can pass this value into a subsequent request to retrieve the next page of results.

" + }, + "StorageLensConfigurationList":{ + "shape":"StorageLensConfigurationList", + "documentation":"

A list of S3 Storage Lens configurations.

" + } + } + }, "Location":{"type":"string"}, "MaxLength1024String":{ "type":"string", @@ -2039,6 +2402,11 @@ "max":1000, "min":0 }, + "MinStorageBytesPercentage":{ + "type":"double", + "max":100, + "min":0.1 + }, "NetworkOrigin":{ "type":"string", "enum":[ @@ -2128,6 +2496,10 @@ "S3PutObjectRetention" ] }, + "OutputSchemaVersion":{ + "type":"string", + "enum":["V_1"] + }, "Policy":{"type":"string"}, "PolicyStatus":{ "type":"structure", @@ -2141,6 +2513,28 @@ "documentation":"

Indicates whether this access point policy is public. For more information about how Amazon S3 evaluates policies to determine whether they are public, see The Meaning of \"Public\" in the Amazon Simple Storage Service Developer Guide.

" }, "Prefix":{"type":"string"}, + "PrefixLevel":{ + "type":"structure", + "required":["StorageMetrics"], + "members":{ + "StorageMetrics":{ + "shape":"PrefixLevelStorageMetrics", + "documentation":"

A container for the prefix-level storage metrics for S3 Storage Lens.

" + } + }, + "documentation":"

A container for the prefix-level configuration.

" + }, + "PrefixLevelStorageMetrics":{ + "type":"structure", + "members":{ + "IsEnabled":{ + "shape":"IsEnabled", + "documentation":"

A container for whether prefix-level storage metrics are enabled.

" + }, + "SelectionCriteria":{"shape":"SelectionCriteria"} + }, + "documentation":"

A container for the prefix-level storage metrics for S3 Storage Lens.

" + }, "PublicAccessBlockConfiguration":{ "type":"structure", "members":{ @@ -2161,11 +2555,11 @@ }, "RestrictPublicBuckets":{ "shape":"Setting", - "documentation":"

Specifies whether Amazon S3 should restrict public bucket policies for buckets in this account. Setting this element to TRUE restricts access to buckets with public policies to only AWS services and authorized users within this account.

Enabling this setting doesn't affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked.

This is not supported for Amazon S3 on Outposts.

", + "documentation":"

Specifies whether Amazon S3 should restrict public bucket policies for buckets in this account. Setting this element to TRUE restricts access to buckets with public policies to only AWS service principals and authorized users within this account.

Enabling this setting doesn't affect previously stored bucket policies, except that public and cross-account access within any public bucket policy, including non-public delegation to specific accounts, is blocked.

This is not supported for Amazon S3 on Outposts.

", "locationName":"RestrictPublicBuckets" } }, - "documentation":"

The PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see The Meaning of \"Public\" in the Amazon Simple Storage Service Developer Guide.

This is not supported for Amazon S3 on Outposts.

" + "documentation":"

The PublicAccessBlock configuration that you want to apply to this Amazon S3 account. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see The Meaning of \"Public\" in the Amazon Simple Storage Service Developer Guide.

This is not supported for Amazon S3 on Outposts.

" }, "PublicAccessBlockEnabled":{"type":"boolean"}, "PutAccessPointPolicyRequest":{ @@ -2185,13 +2579,13 @@ }, "Name":{ "shape":"AccessPointName", - "documentation":"

The name of the access point that you want to associate with the specified policy.

For Amazon S3 on Outposts specify the ARN of the access point accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>. For example, to access the access point reports-ap through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/accesspoint/reports-ap. The value must be URL encoded.

", + "documentation":"

The name of the access point that you want to associate with the specified policy.

For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.

For using this parameter with S3 on Outposts with the AWS SDK and CLI, you must specify the ARN of the access point accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>. For example, to access the access point reports-ap through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/accesspoint/reports-ap. The value must be URL encoded.

", "location":"uri", "locationName":"name" }, "Policy":{ "shape":"Policy", - "documentation":"

The policy that you want to apply to the specified access point. For more information about access point policies, see Managing Data Access with Amazon S3 Access Points in the Amazon Simple Storage Service Developer Guide.

" + "documentation":"

The policy that you want to apply to the specified access point. For more information about access point policies, see Managing data access with Amazon S3 Access Points in the Amazon Simple Storage Service Developer Guide.

" } } }, @@ -2241,7 +2635,7 @@ }, "Bucket":{ "shape":"BucketName", - "documentation":"

The ARN of the bucket.

For Amazon S3 on Outposts specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

", + "documentation":"

Specifies the bucket.

For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.

For using this parameter with S3 on Outposts with the AWS SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

", "location":"uri", "locationName":"name" }, @@ -2274,7 +2668,7 @@ }, "Bucket":{ "shape":"BucketName", - "documentation":"

The Amazon Resource Name (ARN) of the bucket.

For Amazon S3 on Outposts specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

", + "documentation":"

The Amazon Resource Name (ARN) of the bucket.

For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well.

For using this parameter with S3 on Outposts with the AWS SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.

", "location":"uri", "locationName":"name" }, @@ -2342,6 +2736,69 @@ }, "payload":"PublicAccessBlockConfiguration" }, + "PutStorageLensConfigurationRequest":{ + "type":"structure", + "required":[ + "ConfigId", + "AccountId", + "StorageLensConfiguration" + ], + "members":{ + "ConfigId":{ + "shape":"ConfigId", + "documentation":"

The ID of the S3 Storage Lens configuration.

", + "location":"uri", + "locationName":"storagelensid" + }, + "AccountId":{ + "shape":"AccountId", + "documentation":"

The account ID of the requester.

", + "hostLabel":true, + "location":"header", + "locationName":"x-amz-account-id" + }, + "StorageLensConfiguration":{ + "shape":"StorageLensConfiguration", + "documentation":"

The S3 Storage Lens configuration.

" + }, + "Tags":{ + "shape":"StorageLensTags", + "documentation":"

The tag set of the S3 Storage Lens configuration.

You can set up to a maximum of 50 tags.

" + } + } + }, + "PutStorageLensConfigurationTaggingRequest":{ + "type":"structure", + "required":[ + "ConfigId", + "AccountId", + "Tags" + ], + "members":{ + "ConfigId":{ + "shape":"ConfigId", + "documentation":"

The ID of the S3 Storage Lens configuration.

", + "location":"uri", + "locationName":"storagelensid" + }, + "AccountId":{ + "shape":"AccountId", + "documentation":"

The account ID of the requester.

", + "hostLabel":true, + "location":"header", + "locationName":"x-amz-account-id" + }, + "Tags":{ + "shape":"StorageLensTags", + "documentation":"

The tag set of the S3 Storage Lens configuration.

You can set up to a maximum of 50 tags.

" + } + } + }, + "PutStorageLensConfigurationTaggingResult":{ + "type":"structure", + "members":{ + } + }, "RegionalBucket":{ "type":"structure", "required":[ @@ -2380,6 +2837,13 @@ "locationName":"RegionalBucket" } }, + "Regions":{ + "type":"list", + "member":{ + "shape":"S3AWSRegion", + "locationName":"Region" + } + }, "ReportPrefixString":{ "type":"string", "max":512, @@ -2392,6 +2856,12 @@ "Ready" ] }, + "S3AWSRegion":{ + "type":"string", + "max":30, + "min":5, + "pattern":"[a-z0-9\\-]+" + }, "S3AccessControlList":{ "type":"structure", "required":["Owner"], @@ -2434,6 +2904,42 @@ "min":1, "pattern":"arn:[^:]+:s3:.*" }, + "S3BucketDestination":{ + "type":"structure", + "required":[ + "Format", + "OutputSchemaVersion", + "AccountId", + "Arn" + ], + "members":{ + "Format":{ + "shape":"Format", + "documentation":"

" + }, + "OutputSchemaVersion":{ + "shape":"OutputSchemaVersion", + "documentation":"

The schema version of the export file.

" + }, + "AccountId":{ + "shape":"AccountId", + "documentation":"

The account ID of the owner of the S3 Storage Lens metrics export bucket.

" + }, + "Arn":{ + "shape":"S3BucketArnString", + "documentation":"

The Amazon Resource Name (ARN) of the bucket. This property is read-only and follows the following format: arn:aws:s3:us-east-1:example-account-id:bucket/your-destination-bucket-name

" + }, + "Prefix":{ + "shape":"Prefix", + "documentation":"

The prefix of the destination bucket where the metrics export will be delivered.

" + }, + "Encryption":{ + "shape":"StorageLensDataExportEncryption", + "documentation":"

The container for the type encryption of the metrics exports in this bucket.

" + } + }, + "documentation":"

A container for the bucket where the Amazon S3 Storage Lens metrics export files are located.

" + }, "S3CannedAccessControlList":{ "type":"string", "enum":[ @@ -2455,7 +2961,7 @@ "members":{ "TargetResource":{ "shape":"S3BucketArnString", - "documentation":"

" + "documentation":"

Specifies the destination bucket ARN for the batch copy operation. For example, to copy objects to a bucket named \"destinationBucket\", set the TargetResource to \"arn:aws:s3:::destinationBucket\".

" }, "CannedAccessControlList":{ "shape":"S3CannedAccessControlList", @@ -2485,7 +2991,7 @@ }, "RedirectLocation":{ "shape":"NonEmptyMaxLength2048String", - "documentation":"

" + "documentation":"

Specifies an optional metadata property for website redirects, x-amz-website-redirect-location. Allows webpage redirects if the object is accessed through a website endpoint.

" }, "RequesterPays":{ "shape":"Boolean", @@ -2505,7 +3011,7 @@ }, "TargetKeyPrefix":{ "shape":"NonEmptyMaxLength1024String", - "documentation":"

" + "documentation":"

Specifies the folder prefix into which you would like the objects to be copied. For example, to copy objects into a folder named \"Folder1\" in the destination bucket, set the TargetKeyPrefix to \"Folder1/\".

" }, "ObjectLockLegalHoldStatus":{ "shape":"S3ObjectLockLegalHoldStatus", @@ -2829,7 +3335,174 @@ "value":{"shape":"MaxLength1024String"}, "max":8192 }, + "SSEKMS":{ + "type":"structure", + "required":["KeyId"], + "members":{ + "KeyId":{ + "shape":"SSEKMSKeyId", + "documentation":"

A container for the ARN of the SSE-KMS encryption. This property is read-only and follows the following format: arn:aws:kms:us-east-1:example-account-id:key/example-9a73-4afc-8d29-8f5900cef44e

" + } + }, + "documentation":"

", + "locationName":"SSE-KMS" + }, + "SSEKMSKeyId":{"type":"string"}, + "SSES3":{ + "type":"structure", + "members":{ + }, + "documentation":"

", + "locationName":"SSE-S3" + }, + "SelectionCriteria":{ + "type":"structure", + "members":{ + "Delimiter":{ + "shape":"StorageLensPrefixLevelDelimiter", + "documentation":"

A container for the delimiter of the selection criteria being used.

" + }, + "MaxDepth":{ + "shape":"StorageLensPrefixLevelMaxDepth", + "documentation":"

The max depth of the selection criteria

" + }, + "MinStorageBytesPercentage":{ + "shape":"MinStorageBytesPercentage", + "documentation":"

The minimum number of storage bytes percentage whose metrics will be selected.

You must choose a value greater than or equal to 1.0.

" + } + }, + "documentation":"

" + }, "Setting":{"type":"boolean"}, + "StorageLensArn":{ + "type":"string", + "max":1024, + "min":1, + "pattern":"arn:[a-z\\-]+:s3:[a-z0-9\\-]+:\\d{12}:storage\\-lens\\/.*" + }, + "StorageLensAwsOrg":{ + "type":"structure", + "required":["Arn"], + "members":{ + "Arn":{ + "shape":"AwsOrgArn", + "documentation":"

A container for the Amazon Resource Name (ARN) of the AWS organization. This property is read-only and follows the following format: arn:aws:organizations:us-east-1:example-account-id:organization/o-ex2l495dck

" + } + }, + "documentation":"

The AWS organization for your S3 Storage Lens.

" + }, + "StorageLensConfiguration":{ + "type":"structure", + "required":[ + "Id", + "AccountLevel", + "IsEnabled" + ], + "members":{ + "Id":{ + "shape":"ConfigId", + "documentation":"

A container for the Amazon S3 Storage Lens configuration ID.

" + }, + "AccountLevel":{ + "shape":"AccountLevel", + "documentation":"

A container for all the account-level configurations of your S3 Storage Lens configuration.

" + }, + "Include":{ + "shape":"Include", + "documentation":"

A container for what is included in this configuration. This container can only be valid if there is no Exclude container submitted, and it's not empty.

" + }, + "Exclude":{ + "shape":"Exclude", + "documentation":"

A container for what is excluded in this configuration. This container can only be valid if there is no Include container submitted, and it's not empty.

" + }, + "DataExport":{ + "shape":"StorageLensDataExport", + "documentation":"

A container to specify the properties of your S3 Storage Lens metrics export including, the destination, schema and format.

" + }, + "IsEnabled":{ + "shape":"IsEnabled", + "documentation":"

A container for whether the S3 Storage Lens configuration is enabled.

" + }, + "AwsOrg":{ + "shape":"StorageLensAwsOrg", + "documentation":"

A container for the AWS organization for this S3 Storage Lens configuration.

" + }, + "StorageLensArn":{ + "shape":"StorageLensArn", + "documentation":"

The Amazon Resource Name (ARN) of the S3 Storage Lens configuration. This property is read-only and follows the following format: arn:aws:s3:us-east-1:example-account-id:storage-lens/your-dashboard-name

" + } + }, + "documentation":"

A container for the Amazon S3 Storage Lens configuration.

" + }, + "StorageLensConfigurationList":{ + "type":"list", + "member":{ + "shape":"ListStorageLensConfigurationEntry", + "locationName":"StorageLensConfiguration" + }, + "flattened":true + }, + "StorageLensDataExport":{ + "type":"structure", + "required":["S3BucketDestination"], + "members":{ + "S3BucketDestination":{ + "shape":"S3BucketDestination", + "documentation":"

A container for the bucket where the S3 Storage Lens metrics export will be located.

" + } + }, + "documentation":"

A container to specify the properties of your S3 Storage Lens metrics export, including the destination, schema, and format.

" + }, + "StorageLensDataExportEncryption":{ + "type":"structure", + "members":{ + "SSES3":{ + "shape":"SSES3", + "documentation":"

", + "locationName":"SSE-S3" + }, + "SSEKMS":{ + "shape":"SSEKMS", + "documentation":"

", + "locationName":"SSE-KMS" + } + }, + "documentation":"

A container for the encryption of the S3 Storage Lens metrics exports.

" + }, + "StorageLensPrefixLevelDelimiter":{ + "type":"string", + "max":1 + }, + "StorageLensPrefixLevelMaxDepth":{ + "type":"integer", + "max":10, + "min":1 + }, + "StorageLensTag":{ + "type":"structure", + "required":[ + "Key", + "Value" + ], + "members":{ + "Key":{ + "shape":"TagKeyString", + "documentation":"

" + }, + "Value":{ + "shape":"TagValueString", + "documentation":"

" + } + }, + "documentation":"

" + }, + "StorageLensTags":{ + "type":"list", + "member":{ + "shape":"StorageLensTag", + "locationName":"Tag" + } + }, "StringForNextToken":{ "type":"string", "max":1024, @@ -2897,7 +3570,7 @@ "documentation":"

The storage class to which you want the object to transition.

" } }, - "documentation":"

Specifies when an object transitions to a specified storage class. For more information about Amazon S3 Lifecycle configuration rules, see Transitioning Objects Using Amazon S3 Lifecycle in the Amazon Simple Storage Service Developer Guide.

" + "documentation":"

Specifies when an object transitions to a specified storage class. For more information about Amazon S3 Lifecycle configuration rules, see Transitioning objects using Amazon S3 Lifecycle in the Amazon Simple Storage Service Developer Guide.

" }, "TransitionList":{ "type":"list", From 0e3cfe4b477fb5a60e0d2581201018c42641fddd Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 18 Nov 2020 19:04:30 +0000 Subject: [PATCH 218/339] AWS CodeBuild Update: AWS CodeBuild - Adding Status field for Report Group --- .../feature-AWSCodeBuild-c50af4a.json | 6 +++++ .../codegen-resources/service-2.json | 24 ++++++++++++------- 2 files changed, 22 insertions(+), 8 deletions(-) create mode 100644 .changes/next-release/feature-AWSCodeBuild-c50af4a.json diff --git a/.changes/next-release/feature-AWSCodeBuild-c50af4a.json b/.changes/next-release/feature-AWSCodeBuild-c50af4a.json new file mode 100644 index 000000000000..4c271296c31a --- /dev/null +++ b/.changes/next-release/feature-AWSCodeBuild-c50af4a.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS CodeBuild", + "contributor": "", + "description": "AWS CodeBuild - Adding Status field for Report Group" +} 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 0f998c9741ee..1e32284f3868 100644 --- a/services/codebuild/src/main/resources/codegen-resources/service-2.json +++ b/services/codebuild/src/main/resources/codegen-resources/service-2.json @@ -497,7 +497,7 @@ {"shape":"InvalidInputException"}, {"shape":"ResourceNotFoundException"} ], - "documentation":"

Restarts a batch build.

" + "documentation":"

Restarts a failed batch build. Only batch builds that have failed can be retried.

" }, "StartBuild":{ "name":"StartBuild", @@ -2766,7 +2766,7 @@ }, "modes":{ "shape":"ProjectCacheModes", - "documentation":"

If you use a LOCAL cache, the local cache mode. You can use one or more local cache modes at the same time.

  • LOCAL_SOURCE_CACHE mode caches Git metadata for primary and secondary sources. After the cache is created, subsequent builds pull only the change between commits. This mode is a good choice for projects with a clean working directory and a source that is a large Git repository. If you choose this option and your project does not use a Git repository (GitHub, GitHub Enterprise, or Bitbucket), the option is ignored.

  • LOCAL_DOCKER_LAYER_CACHE mode caches existing Docker layers. This mode is a good choice for projects that build or pull large Docker images. It can prevent the performance issues caused by pulling large Docker images down from the network.

    • You can use a Docker layer cache in the Linux environment only.

    • The privileged flag must be set so that your project has the required Docker permissions.

    • You should consider the security implications before you use a Docker layer cache.

  • LOCAL_CUSTOM_CACHE mode caches directories you specify in the buildspec file. This mode is a good choice if your build scenario is not suited to one of the other three local cache modes. If you use a custom cache:

    • Only directories can be specified for caching. You cannot specify individual files.

    • Symlinks are used to reference cached directories.

    • Cached directories are linked to your build before it downloads its project sources. Cached items are overridden if a source item has the same name. Directories are specified using cache paths in the buildspec file.

" + "documentation":"

An array of strings that specify the local cache modes. You can use one or more local cache modes at the same time. This is only used for LOCAL cache types.

Possible values are:

LOCAL_SOURCE_CACHE

Caches Git metadata for primary and secondary sources. After the cache is created, subsequent builds pull only the change between commits. This mode is a good choice for projects with a clean working directory and a source that is a large Git repository. If you choose this option and your project does not use a Git repository (GitHub, GitHub Enterprise, or Bitbucket), the option is ignored.

LOCAL_DOCKER_LAYER_CACHE

Caches existing Docker layers. This mode is a good choice for projects that build or pull large Docker images. It can prevent the performance issues caused by pulling large Docker images down from the network.

  • You can use a Docker layer cache in the Linux environment only.

  • The privileged flag must be set so that your project has the required Docker permissions.

  • You should consider the security implications before you use a Docker layer cache.

LOCAL_CUSTOM_CACHE

Caches directories you specify in the buildspec file. This mode is a good choice if your build scenario is not suited to one of the other three local cache modes. If you use a custom cache:

  • Only directories can be specified for caching. You cannot specify individual files.

  • Symlinks are used to reference cached directories.

  • Cached directories are linked to your build before it downloads its project sources. Cached items are overridden if a source item has the same name. Directories are specified using cache paths in the buildspec file.

" } }, "documentation":"

Information about the cache for the build project.

" @@ -2794,7 +2794,7 @@ }, "image":{ "shape":"NonEmptyString", - "documentation":"

The image tag or image digest that identifies the Docker image to use for this build project. Use the following formats:

  • For an image tag: <registry>/<repository>:<tag>. For example, in the Docker repository that CodeBuild uses to manage its Docker images, this would be aws/codebuild/standard:4.0. To specify the latest version of this image, this would be aws/codebuild/standard:latest.

  • For an image digest: <registry>/<repository>@<digest>. For example, to specify an image with the digest \"sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf,\" use <registry>/<repository>@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf.

" + "documentation":"

The image tag or image digest that identifies the Docker image to use for this build project. Use the following formats:

  • For an image tag: <registry>/<repository>:<tag>. For example, in the Docker repository that CodeBuild uses to manage its Docker images, this would be aws/codebuild/standard:4.0.

  • For an image digest: <registry>/<repository>@<digest>. For example, to specify an image with the digest \"sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf,\" use <registry>/<repository>@sha256:cbbf2f9a99b47fc460d422812b6a5adff7dfee951d8fa2e4a98caa0382cfbdbf.

" }, "computeType":{ "shape":"ComputeType", @@ -2810,7 +2810,7 @@ }, "certificate":{ "shape":"String", - "documentation":"

The certificate to use with this build project.

" + "documentation":"

The ARN of the Amazon Simple Storage Service (Amazon S3) bucket, path prefix, and object key that contains the PEM-encoded certificate for the build project. For more information, see certificate in the AWS CodeBuild User Guide.

" }, "registryCredential":{ "shape":"RegistryCredential", @@ -2832,15 +2832,15 @@ }, "location":{ "shape":"String", - "documentation":"

A string that specifies the location of the file system created by Amazon EFS. Its format is efs-dns-name:/directory-path. You can find the DNS name of file system when you view it in the AWS EFS console. The directory path is a path to a directory in the file system that CodeBuild mounts. For example, if the DNS name of a file system is fs-abcd1234.efs.us-west-2.amazonaws.com, and its mount directory is my-efs-mount-directory, then the location is fs-abcd1234.efs.us-west-2.amazonaws.com:/my-efs-mount-directory.

The directory path in the format efs-dns-name:/directory-path is optional. If you do not specify a directory path, the location is only the DNS name and CodeBuild mounts the entire file system.

" + "documentation":"

A string that specifies the location of the file system created by Amazon EFS. Its format is efs-dns-name:/directory-path. You can find the DNS name of file system when you view it in the AWS EFS console. The directory path is a path to a directory in the file system that CodeBuild mounts. For example, if the DNS name of a file system is fs-abcd1234.efs.us-west-2.amazonaws.com, and its mount directory is my-efs-mount-directory, then the location is fs-abcd1234.efs.us-west-2.amazonaws.com:/my-efs-mount-directory.

The directory path in the format efs-dns-name:/directory-path is optional. If you do not specify a directory path, the location is only the DNS name and CodeBuild mounts the entire file system.

" }, "mountPoint":{ "shape":"String", - "documentation":"

The location in the container where you mount the file system.

" + "documentation":"

The location in the container where you mount the file system.

" }, "identifier":{ "shape":"String", - "documentation":"

The name used to access a file system created by Amazon EFS. CodeBuild creates an environment variable by appending the identifier in all capital letters to CODEBUILD_. For example, if you specify my-efs for identifier, a new environment variable is create named CODEBUILD_MY-EFS.

The identifier is used to mount your file system.

" + "documentation":"

The name used to access a file system created by Amazon EFS. CodeBuild creates an environment variable by appending the identifier in all capital letters to CODEBUILD_. For example, if you specify my_efs for identifier, a new environment variable is create named CODEBUILD_MY_EFS.

The identifier is used to mount your file system.

" }, "mountOptions":{ "shape":"String", @@ -3126,7 +3126,8 @@ "tags":{ "shape":"TagList", "documentation":"

A list of tag key and value pairs associated with this report group.

These tags are available for use by AWS services that support AWS CodeBuild report group tags.

" - } + }, + "status":{"shape":"ReportGroupStatusType"} }, "documentation":"

A series of reports. Each report contains information about the results from running a series of test cases. You specify the test cases for a report group in the buildspec for a build project using one or more paths to the test case files.

" }, @@ -3149,6 +3150,13 @@ "LAST_MODIFIED_TIME" ] }, + "ReportGroupStatusType":{ + "type":"string", + "enum":[ + "ACTIVE", + "DELETING" + ] + }, "ReportGroups":{ "type":"list", "member":{"shape":"ReportGroup"}, From c1a3d12f2e485e65d96e48664fd7be1ecb809a0c Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 18 Nov 2020 19:04:50 +0000 Subject: [PATCH 219/339] AWS Backup Update: AWS Backup now supports cross-account backup, enabling AWS customers to securely copy their backups across their AWS accounts within their AWS organizations. --- .../feature-AWSBackup-2fd3608.json | 6 ++ .../codegen-resources/service-2.json | 79 ++++++++++++++++++- 2 files changed, 81 insertions(+), 4 deletions(-) create mode 100644 .changes/next-release/feature-AWSBackup-2fd3608.json diff --git a/.changes/next-release/feature-AWSBackup-2fd3608.json b/.changes/next-release/feature-AWSBackup-2fd3608.json new file mode 100644 index 000000000000..a0bf4da86fde --- /dev/null +++ b/.changes/next-release/feature-AWSBackup-2fd3608.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Backup", + "contributor": "", + "description": "AWS Backup now supports cross-account backup, enabling AWS customers to securely copy their backups across their AWS accounts within their AWS organizations." +} diff --git a/services/backup/src/main/resources/codegen-resources/service-2.json b/services/backup/src/main/resources/codegen-resources/service-2.json index e8a20ce8eb30..bf498a9a634b 100644 --- a/services/backup/src/main/resources/codegen-resources/service-2.json +++ b/services/backup/src/main/resources/codegen-resources/service-2.json @@ -214,6 +214,19 @@ "documentation":"

Returns metadata associated with creating a copy of a resource.

", "idempotent":true }, + "DescribeGlobalSettings":{ + "name":"DescribeGlobalSettings", + "http":{ + "method":"GET", + "requestUri":"/global-settings" + }, + "input":{"shape":"DescribeGlobalSettingsInput"}, + "output":{"shape":"DescribeGlobalSettingsOutput"}, + "errors":[ + {"shape":"ServiceUnavailableException"} + ], + "documentation":"

The current feature settings for the AWS Account.

" + }, "DescribeProtectedResource":{ "name":"DescribeProtectedResource", "http":{ @@ -259,7 +272,7 @@ "errors":[ {"shape":"ServiceUnavailableException"} ], - "documentation":"

Returns the current service opt-in settings for the Region. If the service has a value set to true, AWS Backup tries to protect that service's resources in this Region, when included in an on-demand backup or scheduled backup plan. If the value is set to false for a service, AWS Backup does not try to protect that service's resources in this Region.

" + "documentation":"

Returns the current service opt-in settings for the Region. If service-opt-in is enabled for a service, AWS Backup tries to protect that service's resources in this Region, when the resource is included in an on-demand backup or scheduled backup plan. Otherwise, AWS Backup does not try to protect that service's resources in this Region, AWS Backup does not try to protect that service's resources in this Region.

" }, "DescribeRestoreJob":{ "name":"DescribeRestoreJob", @@ -665,6 +678,7 @@ {"shape":"ResourceNotFoundException"}, {"shape":"InvalidParameterValueException"}, {"shape":"MissingParameterValueException"}, + {"shape":"InvalidRequestException"}, {"shape":"ServiceUnavailableException"}, {"shape":"LimitExceededException"} ], @@ -772,6 +786,21 @@ "documentation":"

Updates an existing backup plan identified by its backupPlanId with the input document in JSON format. The new version is uniquely identified by a VersionId.

", "idempotent":true }, + "UpdateGlobalSettings":{ + "name":"UpdateGlobalSettings", + "http":{ + "method":"PUT", + "requestUri":"/global-settings" + }, + "input":{"shape":"UpdateGlobalSettingsInput"}, + "errors":[ + {"shape":"ServiceUnavailableException"}, + {"shape":"MissingParameterValueException"}, + {"shape":"InvalidParameterValueException"}, + {"shape":"InvalidRequestException"} + ], + "documentation":"

Updates the current global settings for the AWS Account. Use the DescribeGlobalSettings API to determine the current settings.

" + }, "UpdateRecoveryPointLifecycle":{ "name":"UpdateRecoveryPointLifecycle", "http":{ @@ -801,7 +830,7 @@ {"shape":"MissingParameterValueException"}, {"shape":"InvalidParameterValueException"} ], - "documentation":"

Updates the current service opt-in settings for the Region. If the service has a value set to true, AWS Backup tries to protect that service's resources in this Region, when included in an on-demand backup or scheduled backup plan. If the value is set to false for a service, AWS Backup does not try to protect that service's resources in this Region.

" + "documentation":"

Updates the current service opt-in settings for the Region. If service-opt-in is enabled for a service, AWS Backup tries to protect that service's resources in this Region, when the resource is included in an on-demand backup or scheduled backup plan. Otherwise, AWS Backup does not try to protect that service's resources in this Region. Use the DescribeRegionSettings API to determine the resource types that are supported.

" } }, "shapes":{ @@ -819,7 +848,7 @@ }, "BackupOptions":{ "shape":"BackupOptions", - "documentation":"

Specifies the backup option for a selected resource. This option is only available for Windows VSS backup jobs.

Valid values: Set to \"WindowsVSS”:“enabled\" to enable WindowsVSS backup option and create a VSS Windows backup. Set to “WindowsVSS”:”disabled” to create a regular backup. The WindowsVSS option is not enabled by default.

If you specify an invalid option, you get an InvalidParameterValueException exception.

For more information about Windows VSS backups, see Creating a VSS-Enabled Windows Backup.

" + "documentation":"

Specifies the backup option for a selected resource. This option is only available for Windows VSS backup jobs.

Valid values:

Set to \"WindowsVSS\":\"enabled\" to enable the WindowsVSS backup option and create a VSS Windows backup.

Set to \"WindowsVSS\":\"disabled\" to create a regular backup. The WindowsVSS option is not enabled by default.

If you specify an invalid option, you get an InvalidParameterValueException exception.

For more information about Windows VSS backups, see Creating a VSS-Enabled Windows Backup.

" } }, "documentation":"

A list of backup options for each resource type.

" @@ -1791,7 +1820,7 @@ }, "BackupType":{ "shape":"string", - "documentation":"

Represents the actual backup type selected for a backup job. For example, if a successful WindowsVSS backup was taken, BackupType returns “WindowsVSS”. If BackupType is empty, then it is a regular backup.

" + "documentation":"

Represents the actual backup type selected for a backup job. For example, if a successful WindowsVSS backup was taken, BackupType returns \"WindowsVSS\". If BackupType is empty, then the backup type that was is a regular backup.

" } } }, @@ -1857,6 +1886,24 @@ } } }, + "DescribeGlobalSettingsInput":{ + "type":"structure", + "members":{ + } + }, + "DescribeGlobalSettingsOutput":{ + "type":"structure", + "members":{ + "GlobalSettings":{ + "shape":"GlobalSettings", + "documentation":"

A list of resources along with the opt-in preferences for the account.

" + }, + "LastUpdateTime":{ + "shape":"timestamp", + "documentation":"

The date and time that the global settings was last updated. This update is in Unix format and Coordinated Universal Time (UTC). The value of LastUpdateTime is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.

" + } + } + }, "DescribeProtectedResourceInput":{ "type":"structure", "required":["ResourceArn"], @@ -1922,6 +1969,10 @@ "shape":"ARN", "documentation":"

An ARN that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.

" }, + "SourceBackupVaultArn":{ + "shape":"ARN", + "documentation":"

An Amazon Resource Name (ARN) that uniquely identifies the source vault where the resource was originally backed up in; for example, arn:aws:backup:us-east-1:123456789012:vault:BackupVault. If the recovery is restored to the same AWS account or Region, this value will be null.

" + }, "ResourceArn":{ "shape":"ARN", "documentation":"

An ARN that uniquely identifies a saved resource. The format of the ARN depends on the resource type.

" @@ -2338,6 +2389,13 @@ } } }, + "GlobalSettings":{ + "type":"map", + "key":{"shape":"GlobalSettingsName"}, + "value":{"shape":"GlobalSettingsValue"} + }, + "GlobalSettingsName":{"type":"string"}, + "GlobalSettingsValue":{"type":"string"}, "IAMPolicy":{"type":"string"}, "IAMRoleArn":{"type":"string"}, "InvalidParameterValueException":{ @@ -3057,6 +3115,10 @@ "shape":"ARN", "documentation":"

An ARN that uniquely identifies a backup vault; for example, arn:aws:backup:us-east-1:123456789012:vault:aBackupVault.

" }, + "SourceBackupVaultArn":{ + "shape":"ARN", + "documentation":"

The backup vault where the recovery point was originally copied from. If the recovery point is restored to the same account this value will be null.

" + }, "ResourceArn":{ "shape":"ARN", "documentation":"

An ARN that uniquely identifies a resource. The format of the ARN depends on the resource type.

" @@ -3568,6 +3630,15 @@ } } }, + "UpdateGlobalSettingsInput":{ + "type":"structure", + "members":{ + "GlobalSettings":{ + "shape":"GlobalSettings", + "documentation":"

A list of resources along with the opt-in preferences for the account.

" + } + } + }, "UpdateRecoveryPointLifecycleInput":{ "type":"structure", "required":[ From 6ce25aab360f46eb6fa0672dddd895e81f3e72e7 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 18 Nov 2020 19:06:23 +0000 Subject: [PATCH 220/339] Updated endpoints.json. --- .../next-release/feature-AWSSDKforJavav2-bedacd4.json | 6 ++++++ .../amazon/awssdk/regions/internal/region/endpoints.json | 8 +++++++- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json new file mode 100644 index 000000000000..ae3f84993e9e --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." +} diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json index 563ddd6d05bc..f47be3402f99 100644 --- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json +++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json @@ -676,6 +676,7 @@ }, "athena" : { "endpoints" : { + "af-south-1" : { }, "ap-east-1" : { }, "ap-northeast-1" : { }, "ap-northeast-2" : { }, @@ -856,7 +857,7 @@ "credentialScope" : { "region" : "us-east-1" }, - "hostname" : "service.chime.aws.amazon.com", + "hostname" : "chime.us-east-1.amazonaws.com", "protocols" : [ "https" ] } }, @@ -9248,6 +9249,11 @@ "us-isob-east-1" : { } } }, + "es" : { + "endpoints" : { + "us-isob-east-1" : { } + } + }, "events" : { "endpoints" : { "us-isob-east-1" : { } From 1b37549f79b346252d39ac9e57cf8697d8bf292b Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 18 Nov 2020 19:06:52 +0000 Subject: [PATCH 221/339] Release 2.15.31. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.31.json | 54 +++++++++++++++++++ .../feature-AWSBackup-2fd3608.json | 6 --- .../feature-AWSCloudFormation-90c0674.json | 6 --- .../feature-AWSCodeBuild-c50af4a.json | 6 --- .../feature-AWSOutposts-3a78fb4.json | 6 --- .../feature-AWSS3Control-565217a.json | 6 --- .../feature-AWSSDKforJavav2-bedacd4.json | 6 --- .../feature-AmazonElastiCache-bfcfb78.json | 6 --- ...ure-AmazonElasticComputeCloud-3784efb.json | 6 --- CHANGELOG.md | 33 ++++++++++++ README.md | 8 +-- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 294 files changed, 374 insertions(+), 335 deletions(-) create mode 100644 .changes/2.15.31.json delete mode 100644 .changes/next-release/feature-AWSBackup-2fd3608.json delete mode 100644 .changes/next-release/feature-AWSCloudFormation-90c0674.json delete mode 100644 .changes/next-release/feature-AWSCodeBuild-c50af4a.json delete mode 100644 .changes/next-release/feature-AWSOutposts-3a78fb4.json delete mode 100644 .changes/next-release/feature-AWSS3Control-565217a.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json delete mode 100644 .changes/next-release/feature-AmazonElastiCache-bfcfb78.json delete mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-3784efb.json diff --git a/.changes/2.15.31.json b/.changes/2.15.31.json new file mode 100644 index 000000000000..de3ca883f608 --- /dev/null +++ b/.changes/2.15.31.json @@ -0,0 +1,54 @@ +{ + "version": "2.15.31", + "date": "2020-11-18", + "entries": [ + { + "type": "feature", + "category": "AWS S3 Control", + "contributor": "", + "description": "AWS S3 Storage Lens provides visibility into your storage usage and activity trends at the organization or account level, with aggregations by Region, storage class, bucket, and prefix." + }, + { + "type": "feature", + "category": "Amazon ElastiCache", + "contributor": "", + "description": "Adding Memcached 1.6 to parameter family" + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." + }, + { + "type": "feature", + "category": "AWS Outposts", + "contributor": "", + "description": "Mark the Name parameter in CreateOutpost as required." + }, + { + "type": "feature", + "category": "AWS Backup", + "contributor": "", + "description": "AWS Backup now supports cross-account backup, enabling AWS customers to securely copy their backups across their AWS accounts within their AWS organizations." + }, + { + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "EC2 Fleet adds support of DeleteFleets API for instant type fleets. Now you can delete an instant type fleet and terminate all associated instances with a single API call." + }, + { + "type": "feature", + "category": "AWS CodeBuild", + "contributor": "", + "description": "AWS CodeBuild - Adding Status field for Report Group" + }, + { + "type": "feature", + "category": "AWS CloudFormation", + "contributor": "", + "description": "This release adds ChangeSets support for Nested Stacks. ChangeSets offer a preview of how proposed changes to a stack might impact existing resources or create new ones." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSBackup-2fd3608.json b/.changes/next-release/feature-AWSBackup-2fd3608.json deleted file mode 100644 index a0bf4da86fde..000000000000 --- a/.changes/next-release/feature-AWSBackup-2fd3608.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Backup", - "contributor": "", - "description": "AWS Backup now supports cross-account backup, enabling AWS customers to securely copy their backups across their AWS accounts within their AWS organizations." -} diff --git a/.changes/next-release/feature-AWSCloudFormation-90c0674.json b/.changes/next-release/feature-AWSCloudFormation-90c0674.json deleted file mode 100644 index 5b67d77990cb..000000000000 --- a/.changes/next-release/feature-AWSCloudFormation-90c0674.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS CloudFormation", - "contributor": "", - "description": "This release adds ChangeSets support for Nested Stacks. ChangeSets offer a preview of how proposed changes to a stack might impact existing resources or create new ones." -} diff --git a/.changes/next-release/feature-AWSCodeBuild-c50af4a.json b/.changes/next-release/feature-AWSCodeBuild-c50af4a.json deleted file mode 100644 index 4c271296c31a..000000000000 --- a/.changes/next-release/feature-AWSCodeBuild-c50af4a.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS CodeBuild", - "contributor": "", - "description": "AWS CodeBuild - Adding Status field for Report Group" -} diff --git a/.changes/next-release/feature-AWSOutposts-3a78fb4.json b/.changes/next-release/feature-AWSOutposts-3a78fb4.json deleted file mode 100644 index 01b28268027a..000000000000 --- a/.changes/next-release/feature-AWSOutposts-3a78fb4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Outposts", - "contributor": "", - "description": "Mark the Name parameter in CreateOutpost as required." -} diff --git a/.changes/next-release/feature-AWSS3Control-565217a.json b/.changes/next-release/feature-AWSS3Control-565217a.json deleted file mode 100644 index ee764ac8db89..000000000000 --- a/.changes/next-release/feature-AWSS3Control-565217a.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS S3 Control", - "contributor": "", - "description": "AWS S3 Storage Lens provides visibility into your storage usage and activity trends at the organization or account level, with aggregations by Region, storage class, bucket, and prefix." -} diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json deleted file mode 100644 index ae3f84993e9e..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS SDK for Java v2", - "contributor": "", - "description": "Updated service endpoint metadata." -} diff --git a/.changes/next-release/feature-AmazonElastiCache-bfcfb78.json b/.changes/next-release/feature-AmazonElastiCache-bfcfb78.json deleted file mode 100644 index 9d94d61803f5..000000000000 --- a/.changes/next-release/feature-AmazonElastiCache-bfcfb78.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon ElastiCache", - "contributor": "", - "description": "Adding Memcached 1.6 to parameter family" -} diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-3784efb.json b/.changes/next-release/feature-AmazonElasticComputeCloud-3784efb.json deleted file mode 100644 index 65bd3915a231..000000000000 --- a/.changes/next-release/feature-AmazonElasticComputeCloud-3784efb.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Elastic Compute Cloud", - "contributor": "", - "description": "EC2 Fleet adds support of DeleteFleets API for instant type fleets. Now you can delete an instant type fleet and terminate all associated instances with a single API call." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index 5342683f8d62..ec7041ef2f70 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,36 @@ +# __2.15.31__ __2020-11-18__ +## __AWS Backup__ + - ### Features + - AWS Backup now supports cross-account backup, enabling AWS customers to securely copy their backups across their AWS accounts within their AWS organizations. + +## __AWS CloudFormation__ + - ### Features + - This release adds ChangeSets support for Nested Stacks. ChangeSets offer a preview of how proposed changes to a stack might impact existing resources or create new ones. + +## __AWS CodeBuild__ + - ### Features + - AWS CodeBuild - Adding Status field for Report Group + +## __AWS Outposts__ + - ### Features + - Mark the Name parameter in CreateOutpost as required. + +## __AWS S3 Control__ + - ### Features + - AWS S3 Storage Lens provides visibility into your storage usage and activity trends at the organization or account level, with aggregations by Region, storage class, bucket, and prefix. + +## __AWS SDK for Java v2__ + - ### Features + - Updated service endpoint metadata. + +## __Amazon ElastiCache__ + - ### Features + - Adding Memcached 1.6 to parameter family + +## __Amazon Elastic Compute Cloud__ + - ### Features + - EC2 Fleet adds support of DeleteFleets API for instant type fleets. Now you can delete an instant type fleet and terminate all associated instances with a single API call. + # __2.15.30__ __2020-11-17__ ## __AWS Network Firewall__ - ### Features diff --git a/README.md b/README.md index fe1b6c97f794..fc8d86a364cb 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.30 + 2.15.31 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.30 + 2.15.31 software.amazon.awssdk s3 - 2.15.30 + 2.15.31 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.30 + 2.15.31 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index ad0e947191b2..bb1f01e63ea2 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 3b71f101d557..eb4048c30cee 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index aff22c3cd369..b7c2e58bd063 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.15.31-SNAPSHOT + 2.15.31 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 042f01c57bd3..4c24c5dc25be 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index fc573704d768..02f32372a1bb 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.31-SNAPSHOT + 2.15.31 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index ae3f80e59085..508beb685509 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.31-SNAPSHOT + 2.15.31 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index a0e15dc5e47e..02fa7a92f88b 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.15.31-SNAPSHOT + 2.15.31 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index ec8588b4e980..328bb7d04809 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.31-SNAPSHOT + 2.15.31 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 216e68716f8c..1fb737700467 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.15.31-SNAPSHOT + 2.15.31 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index c1a632e78ca4..6bdd59d4ac51 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.31-SNAPSHOT + 2.15.31 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index d9b58fbbc1e1..d9a6c1f407ac 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 343e505e8845..61d0342b6cab 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 308e57f1385a..c852ddfe5cf8 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.31-SNAPSHOT + 2.15.31 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 7afae965ce37..704d0318527c 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.31-SNAPSHOT + 2.15.31 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 67431cb8de4d..95e5fc6e76ca 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 92134113dbf1..a5fbd7ecd40d 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index bc7437199da1..39df1382400b 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.31-SNAPSHOT + 2.15.31 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index f1cb19e311b9..5caf5484072e 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.15.31-SNAPSHOT + 2.15.31 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index f89c1a83442d..8db0619531a9 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index a3fae45305b8..924ec750b078 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.15.31-SNAPSHOT + 2.15.31 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 9ce1b504d34e..94dd9e43261b 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.15.31-SNAPSHOT + 2.15.31 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 207f5b0c234a..14ce9636a999 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.15.31-SNAPSHOT + 2.15.31 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index eb9940783b6d..d3640d7dd165 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index e1de21caacd9..c830cc3655b3 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index afb295f86757..dd63927bb371 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.31-SNAPSHOT + 2.15.31 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 8b009bfafc8e..0dc65ff8a3de 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.31-SNAPSHOT + 2.15.31 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 17d82ca67ad9..54552ad08082 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.15.31-SNAPSHOT + 2.15.31 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 bb324b3ed04e..c2095f7c063e 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.15.31-SNAPSHOT + 2.15.31 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 62508ba3de46..88e255128254 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.15.31-SNAPSHOT + 2.15.31 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index bcff4d19c155..0df520d559df 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.15.31-SNAPSHOT + 2.15.31 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index f5b11ca9d3af..36bd4c69e17c 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 2f5ebd060b17..d75fa511e5c9 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.15.31-SNAPSHOT + 2.15.31 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 0100a674641d..147daebe299b 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.15.31-SNAPSHOT + 2.15.31 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index dafdcc0660db..36451c6bbc7f 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.31-SNAPSHOT + 2.15.31 metric-publishers diff --git a/pom.xml b/pom.xml index e4888509c1eb..0399c2fda34a 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.31-SNAPSHOT + 2.15.31 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 6168fc0a2c0a..63c32455cb43 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.31-SNAPSHOT + 2.15.31 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index d43e096be505..4fae42af1c9b 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.15.31-SNAPSHOT + 2.15.31 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index e15144ef84c9..824a01ddce3a 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.31-SNAPSHOT + 2.15.31 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 13cb206a9a8a..2ab9a1093281 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 2c69bc762045..f2ecee79d11a 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index a909ccac7932..06d933c0b543 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index a9203547804f..41b1797c2443 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index ff4c5c403348..aa6196541db3 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 2bebe3fc6514..f4118daa234a 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 27c743bd1aa4..a852d193ef6b 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 2bd6ff1979f9..526b43a8f2b7 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 2999d93af94e..cb580e3a704b 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 0f2acc26110a..95174072b826 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index de1f8b74580a..07189cdc8a4a 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index f8630fd6dc58..7ae8fa4e7bd9 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 51de748c0245..1824b774f9df 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 87516793f7a5..0a8a3ef939d1 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 93fa52e59116..85f98d6ae8fc 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index ef4fa52533a0..cba4badc4927 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index dacb4481e52f..5b8be80c02ba 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 69807b97181e..5a59b6e34489 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 2ee877ea3087..f097796788f1 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 4e04291ee651..d4986300516c 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index a6b23ae67fa8..88449f47980f 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 9506fafcf5e1..3fc3abd3cf84 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 9572c1106cf6..5a9d6a5ae11f 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 647a396b3223..42f9a3462222 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 86f0e814be7c..09cae7941ab3 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 1d95d8c1f870..ac5ec87618f6 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 41ad6f1ef7d6..6a5b6edaac60 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 1657c8a33ee5..11f3a76ecdff 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 69a2836430ba..8c2c13462f25 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 7bbf951f7523..99ed07812e99 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 42134ef63a0a..d5172db8a500 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index f435cb03e90a..b9578606f522 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index ab443b5cd361..11501921470e 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index c076cdab5d7a..bd84043cbd68 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 92a6a0be43f2..051684c830b5 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 1beaab5d87d3..f6e218d88400 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 832dab3dde3b..57e3fb8d365e 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 56cfb205a083..8847cf23b971 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 922268a0d6ef..c96999632c28 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 1b916c2d74a0..745f0393fb8a 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 037135b7eb9e..9400d03d16cf 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 744cca64998c..b4aaa72ee2a2 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index c220c1bd8daf..db01d8835b51 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index ef69009d777b..1c0c9935eb6d 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index e689eccd12e3..53bd8865b7fe 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index acb19c839c06..d6466b5ca88a 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index e88febee1848..05987d1b3400 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index f077daf2470e..f4388e17a0ea 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 66ecd278c313..6fafdb65e6d7 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 0e2bbc8ec27f..348e76b39aec 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 4929c00fdb5d..c332d266d765 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index f8989845c240..f224e7ff7528 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index b9453de356a3..8ce76c8e2567 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 41009132428c..2d67b0352d3d 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 13051848a55c..53303c2be0ac 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 87321fd2fe06..801ff53255d7 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index c17ed1b2016b..4b7e333fd79f 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index f9a9e897a8ca..3ac0a7168f91 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index a27b95031a58..b3e1159d4660 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 3a2d8a3a986e..0bb07c513f09 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 70621ee653f6..e703db324a5c 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 80696b4f1a13..ec690bb9685a 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 83594b1334fd..629128ac0307 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index a7342154f093..e446b4aef8cf 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 39a2baf274de..c00bde9d55a9 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 2b25457ef400..22b510fd224c 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index f99496bb436c..12a11c3f2b26 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index bda2d81516e6..6aaeaac808b1 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 898990cb0cff..bee627c6fc78 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 313edbc576e1..ff318d28a033 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 0d5c23f90aff..f0125e7950a9 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 069925fb238a..7cf46ae0315c 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index e00f66873d6a..d350e8a51138 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 72369a5dca3d..bb479e9ac81c 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 66dcf07a544f..ce8fbdde1ada 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index ae3c6588cb0b..805f6c578809 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 14a3a689ed3a..a98dd642c896 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 3b4395cf0195..46b02e41c6e9 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 018e6bf18a4e..ddace5df557f 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index f83d4ae697f6..80ee722355d7 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 944e5ba4d389..ae359ebbd59f 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 0b89ee93833b..ca5a7fa36f4c 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 54bc0cf3b4c7..574b84de2d44 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index eb29363b65a4..dda6e6321345 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 55a47425caa9..89e9a404d75e 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index c4a8951a5748..caa96f3f5cad 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index cbb7b4cf19c1..d4e76d78ce00 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 689a8a23c872..17486cfc9fe1 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 2e0904a2e6cf..11f6a27a1f18 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 0d6fa3bf87dd..b4704c35f202 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index adcffd1bfd84..0559956f15ae 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 3aacf9275a47..132e3761ab52 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 9b6dbec5313a..35fae764f9de 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index b971f9552fad..5de55a0b7960 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 9c7c864821f6..0f69b450577a 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index d4d1a85c6611..01f6b608c28d 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index bd3c957f38e3..6155fc00848a 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index fb3305271fd5..dfcc31302839 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 0fdcc72cc960..933b80214a0f 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index b327d7ce0b15..2f2b4fad8bba 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index f8251e3e67f8..381420040c3e 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index e96e274d5d2b..c54a79fa1ecf 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 5059e70d14e0..e0173bc4baf8 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 65700af3833c..c496ba5377a7 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index f878963c4169..e0b8c5f4d310 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 72e4a166da88..ae78cc91d70e 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 4410a7fd3193..1a09d761ff9c 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 076c5a10b70a..2bba1bef55f8 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index f4d0b3354d12..aebab4f32fdd 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 41ed8f09a5c4..54035b33d731 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 8910518911d9..a61e88913ae5 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index f6686ef86fe7..5eda2743921e 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 9d6b538d7242..d055bc8b454d 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index c84475d1ec33..27bf4d678bef 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 9458945bc037..081b75bd6e2a 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 645588a54c0a..d94931ab2dbe 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 3e8c2e389c99..388225b4bf7f 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index a74fef952bb1..3dc8646f8c13 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index de61d316207c..e00dce2467c2 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 6cc4b7127b38..7a0805dae39c 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index acd813a7c861..28025a4c6107 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index dc9be99502b5..003c242f58fd 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 0d668bf62767..40570023e357 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index e74775c4e2cc..c3a7208fbd61 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 990b73a56dcb..f1f128a1c7dd 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 258c9a75c0e4..bc680b5d787e 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index dc97b5f4def4..dd10e53dc72a 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 76b91f136110..1ceca0cb60e0 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index a59116a487f7..3826d34167ce 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index c76c9df0392f..2044bd49bfda 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 4abe3f8a213e..6ba0b777c8ab 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 156d8b4bd8b0..4ed50a37ea65 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 7854d5faf0ce..b2383d63c84c 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 8678cabb7ebd..9f2076d34094 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 14a2fefd7a6f..3946dd75c521 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index e8b8a00ccdc2..978b096ba171 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 54a3f1ad577f..be1d559ce7ce 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 30ab6684f78e..e60cedb91d26 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 4643cb87f5ab..d8abf4745e99 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 8e8a4414174c..864774a62aa2 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index b08215a738a5..2089a2317cdc 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index bfe37b6ade69..a21e254b3b43 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index ed0d865190df..da1bc7b5cee2 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 5130d7364aa3..bba4d91f5302 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 4908845155c4..57b97bfcfb89 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 17a8dae67adf..c817805744ca 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 51a6b5945506..3e0173a58f0f 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index b9c927bb4627..64fe9a070778 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 2db08b5616c1..e1a2ed407cb3 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 2721d3bcf2a2..d99d8a36ef04 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 2bf05e0f5f14..88a23bb02a50 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index d4314ea33e4e..45e822376300 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 8eba67f4443a..049bd31afaca 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index c4d5335dc7d1..d0075c6493ef 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index ff472e6c59bc..8d2a85db16ca 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index 3ff43bcc9e3f..01c789d3cdac 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index ea0a955e624f..7c169773e627 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 6e62d89ea6ab..88651991b95a 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 601adb905314..3379d7847cf9 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index b1e207cd8685..e67c265fd38d 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 584c5bafddb9..7af43a41aaac 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 2db62b9421ac..97731efe162d 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index ab967efa1a9d..a3eb85f624ee 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index bfde124ae21e..533221ec2597 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index b7385ab261d7..e446a5fd8dbd 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 6cbb09894095..53fdf96fc123 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 9b2e604e5dba..584f451e8ce3 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 333d70d69631..ca906625d7e4 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 22393078fea2..859f3d05c8ec 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 868745500471..48ca2beab752 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.31-SNAPSHOT + 2.15.31 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index e8b72c762a98..06c25bffc4d4 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 8cb4f73aa8bb..6f0474ac6cd2 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 977e7a4c40e5..e971a0710b06 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index e7efb53d9d0d..6954ca063fd1 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 1fba1217a39f..d8b3d161d96e 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index a58c613ac833..cc9fe1b10afa 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index f8cdfe4baab7..e8b0bda6bf11 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 5f3ce95a710c..91f07d55cfa4 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index a8566b24b7f5..ef896984a3a5 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 8afd02e929cb..1e628585ffa0 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 039af9cac03f..a89ba9fad386 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index ade159057fa0..d4edc20a950b 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index d3ee1c85bd8e..d44c13eda321 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index c4619245a500..f089a5212de8 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 6126441642ae..333b562afec4 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 4b10017037ac..3db1e930967e 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 385ea8044efc..17fd213c6bc5 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 8f6c23ee1223..90cc3fda2a68 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 67b308995c15..45c75411fb57 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 2d757c9753e7..4e0ff4534a2c 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 2fded629da56..663111a812ae 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index a51a19b04138..6153a5105af6 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index e73c46e621e5..f9893ae713ea 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index e28814f4ca61..4191863d8126 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 0867fb15f177..2daaf44a55bf 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index df0c6b30adde..2e57b5be3da0 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 438da8acbaa7..56a9a1d78a2c 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 920f1d7dee2e..1ec11a237f2e 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index c3898f122c26..9e38628726b8 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 9e64589c1f1c..121caab03ade 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 8756afd6b59d..3e583e2acc35 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index bac89afa245a..02469f4c8c65 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index a75eee88a603..de57f5aeda47 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index d09151360962..105a55e047f7 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 717b0b8146be..57abdd12a8d9 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 363d52430c65..94c2149c7395 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 3c9541769c34..489c33f02a15 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 7aa2a0de9fdf..c340fe4b9ab8 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 118a98f45c89..95af6d1f3ef1 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index d8d0de13740a..c824f07ffbf2 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 9031b582588a..21d8605855fc 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index c0c1beafa945..10973ea4e0c2 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 156b4b0701ce..0f26b970918a 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 21aee4cc555d..aeeeea1626e1 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index ade5776fbf45..7d768f8eac91 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index c5847026be01..9a10f19399d9 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 7505e5400b88..cc402d59a880 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index f7afb2a44cbb..de34d0ef95e8 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 04dc7ee06a54..52591bef330b 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index c4f239ccd9fc..ada48ca01b1b 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 656562bc4939..758fc433cf39 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 5c72ee4dcf7e..67f7f4b71d47 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 53b60e6c4eb2..fe5025d2e823 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 82760432670e..00598dd05088 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index f405f4a87c9e..f89edbbc327d 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 15e3f56c81f4..475ec99b756f 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index ac831742116e..1e124bceab2b 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 7e86887ee957..f064e1c7f281 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 439edf8e3f3e..8ce1a936c7da 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 13d6196bf1f8..09054eb2fef9 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 4ca9d1d5b11c..d0d979adcce4 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 3644700fc06e..22907d7909af 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index e3f3740b26e4..d7104585df66 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 771a1aab24f2..ae3a6bd5b993 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31-SNAPSHOT + 2.15.31 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index caa497fbe9d9..b972148f34c4 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.15.31-SNAPSHOT + 2.15.31 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 458cfdad1cf8..0cca65367b3a 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.15.31-SNAPSHOT + 2.15.31 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index c6622360bb46..d5a675586415 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.15.31-SNAPSHOT + 2.15.31 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index c129498dce29..2561274a75d9 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.15.31-SNAPSHOT + 2.15.31 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index d32820c09db1..018f5738c367 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.15.31-SNAPSHOT + 2.15.31 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 565fac139f0c..6e78f7702ba3 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.31-SNAPSHOT + 2.15.31 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index b8e524b42959..7040e4d82cee 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.15.31-SNAPSHOT + 2.15.31 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 8f918cbc0e34..7dce98e22f29 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.15.31-SNAPSHOT + 2.15.31 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index b80ad4e72554..8b7038d96624 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.15.31-SNAPSHOT + 2.15.31 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 60306eb4211e..7c1e7100e42c 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.15.31-SNAPSHOT + 2.15.31 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 57789f33cbb9..49c41fc054a5 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.31-SNAPSHOT + 2.15.31 4.0.0 From f8c611026a489cb608345b905a28af02405a1a42 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 18 Nov 2020 19:33:19 +0000 Subject: [PATCH 222/339] Update to next snapshot version: 2.15.32-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/pom.xml | 2 +- services/servicecatalogappregistry/pom.xml | 2 +- services/servicediscovery/pom.xml | 2 +- services/servicequotas/pom.xml | 2 +- services/ses/pom.xml | 2 +- services/sesv2/pom.xml | 2 +- services/sfn/pom.xml | 2 +- services/shield/pom.xml | 2 +- services/signer/pom.xml | 2 +- services/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 283 files changed, 283 insertions(+), 283 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index bb1f01e63ea2..65d8a67a863e 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index eb4048c30cee..f4742f377545 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index b7c2e58bd063..bd59abe5629c 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.15.31 + 2.15.32-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 4c24c5dc25be..d1072a3fb856 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 02f32372a1bb..09f9652b1396 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.31 + 2.15.32-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 508beb685509..34c0006a3450 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.31 + 2.15.32-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 02fa7a92f88b..cb3ab1f63dcb 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.15.31 + 2.15.32-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 328bb7d04809..084ebed18cea 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.31 + 2.15.32-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 1fb737700467..3b8bc718b338 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.15.31 + 2.15.32-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 6bdd59d4ac51..4089b9ebaf46 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.31 + 2.15.32-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index d9a6c1f407ac..ad57340e96cc 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 61d0342b6cab..4a35f9e6c967 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index c852ddfe5cf8..764664618952 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.31 + 2.15.32-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 704d0318527c..c428d42ce0f2 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.31 + 2.15.32-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 95e5fc6e76ca..78aebfeff98d 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index a5fbd7ecd40d..c704f1c6445c 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 39df1382400b..4ec98cc03825 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.31 + 2.15.32-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 5caf5484072e..c67bac3fd1f0 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.15.31 + 2.15.32-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 8db0619531a9..6adac23dd02f 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 924ec750b078..e2b342323d24 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.15.31 + 2.15.32-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 94dd9e43261b..be0d8503917e 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.15.31 + 2.15.32-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 14ce9636a999..094f5b063225 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.15.31 + 2.15.32-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index d3640d7dd165..7c3656088138 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index c830cc3655b3..ab48418b4629 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index dd63927bb371..64ba0a8029f8 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.31 + 2.15.32-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 0dc65ff8a3de..c980a2b623ea 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.31 + 2.15.32-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 54552ad08082..6b0424912a95 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.15.31 + 2.15.32-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index c2095f7c063e..7862872f9302 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.15.31 + 2.15.32-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 88e255128254..d399d1246c46 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.15.31 + 2.15.32-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 0df520d559df..b884ad1e6b7c 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.15.31 + 2.15.32-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 36bd4c69e17c..bb5924b28d54 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index d75fa511e5c9..865e29ad3b76 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.15.31 + 2.15.32-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 147daebe299b..f474aa19de70 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.15.31 + 2.15.32-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 36451c6bbc7f..cb1beba63007 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.31 + 2.15.32-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 0399c2fda34a..33327e6cd08b 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.31 + 2.15.32-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 63c32455cb43..393df05200db 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.31 + 2.15.32-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 4fae42af1c9b..9e53ad5fdffa 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.15.31 + 2.15.32-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 824a01ddce3a..9af3e707c435 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.31 + 2.15.32-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 2ab9a1093281..25bd402c95f2 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index f2ecee79d11a..db1741b5b91a 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 06d933c0b543..1029a6b54589 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 41b1797c2443..45f9f046883c 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index aa6196541db3..347f7555dfc3 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index f4118daa234a..4cfb78518b39 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index a852d193ef6b..abc4ba14d036 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 526b43a8f2b7..3627eb6f0595 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index cb580e3a704b..cfbd0d00dc5e 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 95174072b826..2825b66b2648 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 07189cdc8a4a..d072c513cc06 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 7ae8fa4e7bd9..0ed5740d47cc 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 1824b774f9df..b84e4c2633f3 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 0a8a3ef939d1..febc179e55ab 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 85f98d6ae8fc..4a0b9d446350 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index cba4badc4927..622eef230871 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 5b8be80c02ba..c93195d9e504 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 5a59b6e34489..6e220afacb0d 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index f097796788f1..ebfa4a6cf7c8 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index d4986300516c..378d839ee93e 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 88449f47980f..76c83e077563 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 3fc3abd3cf84..acb5678d279c 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 5a9d6a5ae11f..eff7fe5ca8ba 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 42f9a3462222..fdf62045f4f1 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 09cae7941ab3..49a5785a73d2 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index ac5ec87618f6..c341b3c8943f 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 6a5b6edaac60..9d374327b822 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 11f3a76ecdff..26006f13db85 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 8c2c13462f25..222be19af930 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 99ed07812e99..ea79e667d1ba 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index d5172db8a500..7d823d0fae18 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index b9578606f522..59e667d0784b 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 11501921470e..6effb96b24b2 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index bd84043cbd68..8173e6d8165a 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 051684c830b5..caec9c88a8b5 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index f6e218d88400..a5d8ba15f7a7 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 57e3fb8d365e..d798601a2111 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 8847cf23b971..fb74f63eeaf4 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index c96999632c28..871dc6bf768c 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 745f0393fb8a..82167a12c23f 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 9400d03d16cf..db27f7227d72 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index b4aaa72ee2a2..7db9abd6dda5 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index db01d8835b51..e4250e292c69 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 1c0c9935eb6d..78377430653c 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 53bd8865b7fe..57bf317c844b 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index d6466b5ca88a..c5dd92629856 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 05987d1b3400..69761de79115 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index f4388e17a0ea..0be970a9d1d7 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 6fafdb65e6d7..acd9b916847c 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 348e76b39aec..f617d439b0d4 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index c332d266d765..f1be19ddad69 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index f224e7ff7528..6764a0121a01 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 8ce76c8e2567..dd73f3014edc 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 2d67b0352d3d..1a7a3ff6821d 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 53303c2be0ac..cf731476b5f6 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 801ff53255d7..48ab347de2a4 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 4b7e333fd79f..108ac342fad6 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 3ac0a7168f91..0bcdd6657d50 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index b3e1159d4660..0dce14d1284e 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 0bb07c513f09..8a24e034096b 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index e703db324a5c..52371be90ea9 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index ec690bb9685a..a7c127ca157c 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 629128ac0307..3bb468f04729 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index e446b4aef8cf..baafd4962d3e 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index c00bde9d55a9..dba6e657fdd8 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 22b510fd224c..30a073700163 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 12a11c3f2b26..488240642cc4 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 6aaeaac808b1..6e1d84d89653 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index bee627c6fc78..0e5bb6a67b4c 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index ff318d28a033..c022a98ed456 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index f0125e7950a9..f1c21945a690 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 7cf46ae0315c..a58203ba9362 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index d350e8a51138..fb0976798a1b 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index bb479e9ac81c..030cc31229c3 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index ce8fbdde1ada..8bca982cd3d3 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 805f6c578809..5851031607a8 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index a98dd642c896..26c69f4ded8c 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 46b02e41c6e9..ebebbe7537d2 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index ddace5df557f..fb98a753efe3 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 80ee722355d7..35793c26b364 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index ae359ebbd59f..8b76bbb479e4 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index ca5a7fa36f4c..e33b0a2a33aa 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 574b84de2d44..5081cb14d1ef 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index dda6e6321345..e6e0a9839541 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 89e9a404d75e..57b326d2036d 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index caa96f3f5cad..a2672271a57e 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index d4e76d78ce00..608baed75967 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 17486cfc9fe1..88127900c680 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 11f6a27a1f18..0cd290b807d7 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index b4704c35f202..6e51317a1466 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 0559956f15ae..8269319d7a81 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 132e3761ab52..396a15ba0bfd 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 35fae764f9de..800a63937b7f 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 5de55a0b7960..70e9627c5e89 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 0f69b450577a..4c2e58f9585b 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 01f6b608c28d..866cabcb2800 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 6155fc00848a..8272bfe09c86 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index dfcc31302839..e8c74c6716c0 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 933b80214a0f..89cf2afbf35d 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 2f2b4fad8bba..ee4d990e257b 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 381420040c3e..cf0b363eacbc 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index c54a79fa1ecf..5ee23d3b7f31 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index e0173bc4baf8..6902b6be2e0c 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index c496ba5377a7..5c8b4fc54be9 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index e0b8c5f4d310..b2306dcb9e63 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index ae78cc91d70e..edc184ec3e79 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 1a09d761ff9c..4717f22ae746 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 2bba1bef55f8..a5d055e4fe1d 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index aebab4f32fdd..182d8aa5c28c 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 54035b33d731..ab70bf109967 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index a61e88913ae5..fd065a7daef1 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 5eda2743921e..a5e176570904 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index d055bc8b454d..24747a721af1 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 27bf4d678bef..80fbe1fa57bf 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 081b75bd6e2a..b0e82bb18241 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index d94931ab2dbe..214b4d8cbb65 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 388225b4bf7f..3562e11961bc 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 3dc8646f8c13..87627c552de0 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index e00dce2467c2..1542e221b27c 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 7a0805dae39c..ed784517652c 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 28025a4c6107..b2a0ea159c94 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 003c242f58fd..08646728984e 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 40570023e357..f12b14f3d24b 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index c3a7208fbd61..2769c8f18955 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index f1f128a1c7dd..dfbcab16aa02 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index bc680b5d787e..a655f788c7c7 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index dd10e53dc72a..c6e20ea8a1e5 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 1ceca0cb60e0..ed861a90b51e 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 3826d34167ce..a6b24a4d4f57 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 2044bd49bfda..b64e5996f30e 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 6ba0b777c8ab..56944c33153d 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 4ed50a37ea65..e5eeee9d0876 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index b2383d63c84c..ef78738bd27d 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 9f2076d34094..edf187c984a5 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 3946dd75c521..c2c808638985 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 978b096ba171..b1eff28b453f 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index be1d559ce7ce..a6a706d46ad2 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index e60cedb91d26..baf23ce2d6ff 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index d8abf4745e99..409df6e593cb 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 864774a62aa2..02571744ef2c 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 2089a2317cdc..9fd4be53febd 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index a21e254b3b43..e34eb23dbff1 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index da1bc7b5cee2..d404945e17fb 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index bba4d91f5302..e59e6f8bb270 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 57b97bfcfb89..3ed5a352dba1 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index c817805744ca..8d4c5fac74cf 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 3e0173a58f0f..6efe9929b63c 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 64fe9a070778..d9ef959252a2 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index e1a2ed407cb3..98142ac27c34 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index d99d8a36ef04..4536fd1ba6e3 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 88a23bb02a50..df6963487484 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 45e822376300..67c13518c591 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 049bd31afaca..74362ff40324 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index d0075c6493ef..55f732d3576c 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 8d2a85db16ca..ab8ced0c956a 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index 01c789d3cdac..1ba8a269e3f4 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 7c169773e627..09944427355b 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 88651991b95a..8a6d690c81f6 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 3379d7847cf9..89cbb97f7132 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index e67c265fd38d..d7a9edcd9dea 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 7af43a41aaac..b39ffba378fc 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 97731efe162d..be1382f08543 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index a3eb85f624ee..16dff831ccab 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 533221ec2597..60f9aad4df61 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index e446a5fd8dbd..61a855bb13c3 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 53fdf96fc123..91c571172341 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 584f451e8ce3..02f154b6f97b 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index ca906625d7e4..2c0e0f3a084d 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 859f3d05c8ec..c941e51cb34e 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 48ca2beab752..6eb6e1a57e46 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.31 + 2.15.32-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 06c25bffc4d4..3a1940a850df 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 6f0474ac6cd2..cff242852121 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index e971a0710b06..3de69e032450 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 6954ca063fd1..50a4e9a365cf 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index d8b3d161d96e..e4b793f41958 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index cc9fe1b10afa..7fddc286ed23 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index e8b0bda6bf11..414bba4ef212 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 91f07d55cfa4..2dab2c4f1817 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index ef896984a3a5..afbe11886551 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 1e628585ffa0..96465b17a274 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index a89ba9fad386..7717bdc2c1ac 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index d4edc20a950b..48bda0791c33 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index d44c13eda321..eeff90ac5e51 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index f089a5212de8..d69551b90cd5 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 333b562afec4..644d79427eff 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 3db1e930967e..c4107af02274 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 17fd213c6bc5..f167b9abe73e 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 90cc3fda2a68..812baa26fb83 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 45c75411fb57..8fca2b145863 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 4e0ff4534a2c..c2cfdb463c22 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 663111a812ae..6abecb786471 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 6153a5105af6..90e4e5b32be0 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index f9893ae713ea..c48b83a3890a 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 4191863d8126..150e11722f87 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 2daaf44a55bf..9e8e32421d22 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 2e57b5be3da0..e910457ad985 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 56a9a1d78a2c..133d7b387dea 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 1ec11a237f2e..b9c3a05b9c6d 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index 9e38628726b8..d76d5b45e2aa 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 121caab03ade..f6a62d098acf 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 3e583e2acc35..2ed7c632714e 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 02469f4c8c65..ef1e6f73146d 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index de57f5aeda47..4e505d4f62f8 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 105a55e047f7..dc2442a31fac 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 57abdd12a8d9..9f44de1f1b74 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 94c2149c7395..6855419d8201 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 489c33f02a15..cb96891e774f 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index c340fe4b9ab8..d8e57e07ecd9 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 95af6d1f3ef1..5f7e7bf909a8 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index c824f07ffbf2..714a5a879449 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 21d8605855fc..d534c590e760 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 10973ea4e0c2..b26da632e09b 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 0f26b970918a..763aac58d376 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index aeeeea1626e1..b86356a9f8fa 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 7d768f8eac91..c8890174feee 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 9a10f19399d9..af957431016c 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index cc402d59a880..fb0356d5a3be 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index de34d0ef95e8..c454d33f14f5 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 52591bef330b..db1258f3980d 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index ada48ca01b1b..e94e3e109c9f 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 758fc433cf39..d3d5b20679cf 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 67f7f4b71d47..a2dfd2a873d8 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index fe5025d2e823..e680b0c2bfd2 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 00598dd05088..97a5b646d86b 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index f89edbbc327d..6b6f6dfeba3a 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 475ec99b756f..01c9590941cb 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 1e124bceab2b..7d14b9be5459 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index f064e1c7f281..4a2715bb219e 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 8ce1a936c7da..12c81e993e84 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 09054eb2fef9..0e83cd356cff 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index d0d979adcce4..621da82f7e4c 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 22907d7909af..bf1418159502 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index d7104585df66..47f15e84d79d 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index ae3a6bd5b993..d0773a03a699 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.31 + 2.15.32-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index b972148f34c4..38e14eb8975c 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.15.31 + 2.15.32-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 0cca65367b3a..ed8124453024 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.15.31 + 2.15.32-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index d5a675586415..295bf2693d2d 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.15.31 + 2.15.32-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 2561274a75d9..07e5dd76568a 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.15.31 + 2.15.32-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 018f5738c367..3b7476ea0eb3 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.15.31 + 2.15.32-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 6e78f7702ba3..3cd8ad6f5507 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.31 + 2.15.32-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 7040e4d82cee..324f0f87b63a 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.15.31 + 2.15.32-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 7dce98e22f29..44f8b86b0603 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.15.31 + 2.15.32-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 8b7038d96624..2ad3887e5b25 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.15.31 + 2.15.32-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 7c1e7100e42c..5652c544b795 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.15.31 + 2.15.32-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 49c41fc054a5..3d5cc6128d97 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.31 + 2.15.32-SNAPSHOT 4.0.0 From b88644c78ad3dbde3abdebdd04f4925de2583fc6 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 19 Nov 2020 19:17:31 +0000 Subject: [PATCH 223/339] Auto Scaling Update: You can now create Auto Scaling groups with multiple launch templates using a mixed instances policy, making it easy to deploy an AMI with an architecture that is different from the rest of the group. --- .../feature-AutoScaling-6c15d1a.json | 6 ++++++ .../codegen-resources/service-2.json | 20 +++++++++++-------- 2 files changed, 18 insertions(+), 8 deletions(-) create mode 100644 .changes/next-release/feature-AutoScaling-6c15d1a.json diff --git a/.changes/next-release/feature-AutoScaling-6c15d1a.json b/.changes/next-release/feature-AutoScaling-6c15d1a.json new file mode 100644 index 000000000000..b64ae485fd31 --- /dev/null +++ b/.changes/next-release/feature-AutoScaling-6c15d1a.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Auto Scaling", + "contributor": "", + "description": "You can now create Auto Scaling groups with multiple launch templates using a mixed instances policy, making it easy to deploy an AMI with an architecture that is different from the rest of the group." +} diff --git a/services/autoscaling/src/main/resources/codegen-resources/service-2.json b/services/autoscaling/src/main/resources/codegen-resources/service-2.json index 3dbf0904b0f3..14a47c30469e 100644 --- a/services/autoscaling/src/main/resources/codegen-resources/service-2.json +++ b/services/autoscaling/src/main/resources/codegen-resources/service-2.json @@ -1519,7 +1519,7 @@ }, "MixedInstancesPolicy":{ "shape":"MixedInstancesPolicy", - "documentation":"

An embedded object that specifies a mixed instances policy. The required parameters must be specified. If optional parameters are unspecified, their default values are used.

The policy includes parameters that not only define the distribution of On-Demand Instances and Spot Instances, the maximum price to pay for Spot Instances, and how the Auto Scaling group allocates instance types to fulfill On-Demand and Spot capacities, but also the parameters that specify the instance configuration information—the launch template and instance types. The policy can also include a weight for each instance type. For more information, see Auto Scaling groups with multiple instance types and purchase options in the Amazon EC2 Auto Scaling User Guide.

Conditional: You must specify either a launch template (LaunchTemplate or MixedInstancesPolicy) or a launch configuration (LaunchConfigurationName or InstanceId).

" + "documentation":"

An embedded object that specifies a mixed instances policy. The required parameters must be specified. If optional parameters are unspecified, their default values are used.

The policy includes parameters that not only define the distribution of On-Demand Instances and Spot Instances, the maximum price to pay for Spot Instances, and how the Auto Scaling group allocates instance types to fulfill On-Demand and Spot capacities, but also the parameters that specify the instance configuration information—the launch template and instance types. The policy can also include a weight for each instance type and different launch templates for individual instance types. For more information, see Auto Scaling groups with multiple instance types and purchase options in the Amazon EC2 Auto Scaling User Guide.

Conditional: You must specify either a launch template (LaunchTemplate or MixedInstancesPolicy) or a launch configuration (LaunchConfigurationName or InstanceId).

" }, "InstanceId":{ "shape":"XmlStringMaxLen19", @@ -2811,30 +2811,34 @@ }, "Overrides":{ "shape":"Overrides", - "documentation":"

Any parameters that you specify override the same parameters in the launch template. Currently, the only supported override is instance type. You can specify between 1 and 20 instance types. If not provided, Amazon EC2 Auto Scaling will use the instance type specified in the launch template when it launches an instance.

" + "documentation":"

Any parameters that you specify override the same parameters in the launch template. If not provided, Amazon EC2 Auto Scaling uses the instance type specified in the launch template when it launches an instance.

" } }, - "documentation":"

Describes a launch template and overrides.

The overrides are used to override the instance type specified by the launch template with multiple instance types that can be used to launch On-Demand Instances and Spot Instances.

When you update the launch template or overrides, existing Amazon EC2 instances continue to run. When scale out occurs, Amazon EC2 Auto Scaling launches instances to match the new settings. When scale in occurs, Amazon EC2 Auto Scaling terminates instances according to the group's termination policies.

" + "documentation":"

Describes a launch template and overrides.

You specify these parameters as part of a mixed instances policy.

When you update the launch template or overrides, existing Amazon EC2 instances continue to run. When scale out occurs, Amazon EC2 Auto Scaling launches instances to match the new settings. When scale in occurs, Amazon EC2 Auto Scaling terminates instances according to the group's termination policies.

" }, "LaunchTemplateName":{ "type":"string", "max":128, "min":3, - "pattern":"[a-zA-Z0-9\\(\\)\\.-/_]+" + "pattern":"[a-zA-Z0-9\\(\\)\\.\\-/_]+" }, "LaunchTemplateOverrides":{ "type":"structure", "members":{ "InstanceType":{ "shape":"XmlStringMaxLen255", - "documentation":"

The instance type, such as m3.xlarge. You must use an instance type that is supported in your requested Region and Availability Zones. For information about available instance types, see Available instance types in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

The instance type, such as m3.xlarge. You must use an instance type that is supported in your requested Region and Availability Zones. For more information, see Instance types in the Amazon Elastic Compute Cloud User Guide.

" }, "WeightedCapacity":{ "shape":"XmlStringMaxLen32", "documentation":"

The number of capacity units provided by the specified instance type in terms of virtual CPUs, memory, storage, throughput, or other relative performance characteristic. When a Spot or On-Demand Instance is provisioned, the capacity units count toward the desired capacity. Amazon EC2 Auto Scaling provisions instances until the desired capacity is totally fulfilled, even if this results in an overage. For example, if there are 2 units remaining to fulfill capacity, and Amazon EC2 Auto Scaling can only provision an instance with a WeightedCapacity of 5 units, the instance is provisioned, and the desired capacity is exceeded by 3 units. For more information, see Instance weighting for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide.

Valid Range: Minimum value of 1. Maximum value of 999.

" + }, + "LaunchTemplateSpecification":{ + "shape":"LaunchTemplateSpecification", + "documentation":"

Provides the launch template to be used when launching the instance type. For example, some instance types might require a launch template with a different AMI. If not provided, Amazon EC2 Auto Scaling uses the launch template that's defined for your mixed instances policy. For more information, see Specifying a different launch template for an instance type in the Amazon EC2 Auto Scaling User Guide.

" } }, - "documentation":"

Describes an override for a launch template. Currently, the only supported override is instance type.

The maximum number of instance type overrides that can be associated with an Auto Scaling group is 20.

" + "documentation":"

Describes an override for a launch template. The maximum number of instance types that can be associated with an Auto Scaling group is 20. For more information, see Configuring overrides in the Amazon EC2 Auto Scaling User Guide.

" }, "LaunchTemplateSpecification":{ "type":"structure", @@ -3133,7 +3137,7 @@ "documentation":"

Specifies the instances distribution. If not provided, the value for each parameter in InstancesDistribution uses a default value.

" } }, - "documentation":"

Describes a mixed instances policy for an Auto Scaling group. With mixed instances, your Auto Scaling group can provision a combination of On-Demand Instances and Spot Instances across multiple instance types. For more information, see Auto Scaling Groups with Multiple Instance Types and Purchase Options in the Amazon EC2 Auto Scaling User Guide.

You can create a mixed instances policy for a new Auto Scaling group, or you can create it for an existing group by updating the group to specify MixedInstancesPolicy as the top-level parameter instead of a launch configuration or launch template.

" + "documentation":"

Describes a mixed instances policy for an Auto Scaling group. With mixed instances, your Auto Scaling group can provision a combination of On-Demand Instances and Spot Instances across multiple instance types. For more information, see Auto Scaling groups with multiple instance types and purchase options in the Amazon EC2 Auto Scaling User Guide.

You can create a mixed instances policy for a new Auto Scaling group, or you can create it for an existing group by updating the group to specify MixedInstancesPolicy as the top-level parameter instead of a launch configuration or launch template.

" }, "MonitoringEnabled":{"type":"boolean"}, "NoDevice":{"type":"boolean"}, @@ -4058,7 +4062,7 @@ }, "MixedInstancesPolicy":{ "shape":"MixedInstancesPolicy", - "documentation":"

An embedded object that specifies a mixed instances policy. When you make changes to an existing policy, all optional parameters are left unchanged if not specified. For more information, see Auto Scaling Groups with Multiple Instance Types and Purchase Options in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

An embedded object that specifies a mixed instances policy. When you make changes to an existing policy, all optional parameters are left unchanged if not specified. For more information, see Auto Scaling groups with multiple instance types and purchase options in the Amazon EC2 Auto Scaling User Guide.

" }, "MinSize":{ "shape":"AutoScalingGroupMinSize", From 7f5cfd0ff78a2187b7592c3a7930715c9c160584 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 19 Nov 2020 19:17:33 +0000 Subject: [PATCH 224/339] AWS Glue Update: Adding support for Glue Schema Registry. The AWS Glue Schema Registry is a new feature that allows you to centrally discover, control, and evolve data stream schemas. --- .../next-release/feature-AWSGlue-1cef5b9.json | 6 + .../codegen-resources/paginators-1.json | 24 + .../codegen-resources/service-2.json | 1576 ++++++++++++++++- 3 files changed, 1569 insertions(+), 37 deletions(-) create mode 100644 .changes/next-release/feature-AWSGlue-1cef5b9.json diff --git a/.changes/next-release/feature-AWSGlue-1cef5b9.json b/.changes/next-release/feature-AWSGlue-1cef5b9.json new file mode 100644 index 000000000000..e70223279e88 --- /dev/null +++ b/.changes/next-release/feature-AWSGlue-1cef5b9.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Glue", + "contributor": "", + "description": "Adding support for Glue Schema Registry. The AWS Glue Schema Registry is a new feature that allows you to centrally discover, control, and evolve data stream schemas." +} diff --git a/services/glue/src/main/resources/codegen-resources/paginators-1.json b/services/glue/src/main/resources/codegen-resources/paginators-1.json index b905b5802f99..f3a2874c231c 100644 --- a/services/glue/src/main/resources/codegen-resources/paginators-1.json +++ b/services/glue/src/main/resources/codegen-resources/paginators-1.json @@ -60,6 +60,12 @@ "limit_key": "MaxResults", "output_token": "NextToken" }, + "GetResourcePolicies": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "GetResourcePoliciesResponseList" + }, "GetSecurityConfigurations": { "input_token": "NextToken", "limit_key": "MaxResults", @@ -111,6 +117,24 @@ "limit_key": "MaxResults", "output_token": "NextToken" }, + "ListRegistries": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "Registries" + }, + "ListSchemaVersions": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "Schemas" + }, + "ListSchemas": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "Schemas" + }, "ListTriggers": { "input_token": "NextToken", "limit_key": "MaxResults", diff --git a/services/glue/src/main/resources/codegen-resources/service-2.json b/services/glue/src/main/resources/codegen-resources/service-2.json index 148b81e47021..044a0cbed88a 100644 --- a/services/glue/src/main/resources/codegen-resources/service-2.json +++ b/services/glue/src/main/resources/codegen-resources/service-2.json @@ -233,6 +233,21 @@ ], "documentation":"

Cancels (stops) a task run. Machine learning task runs are asynchronous tasks that AWS Glue runs on your behalf as part of various machine learning workflows. You can cancel a machine learning task run at any time by calling CancelMLTaskRun with a task run's parent transform's TransformID and the task run's TaskRunId.

" }, + "CheckSchemaVersionValidity":{ + "name":"CheckSchemaVersionValidity", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CheckSchemaVersionValidityInput"}, + "output":{"shape":"CheckSchemaVersionValidityResponse"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"AccessDeniedException"}, + {"shape":"InternalServiceException"} + ], + "documentation":"

Validates the supplied schema. This call has no side effects, it simply validates using the supplied schema using DataFormat as the format. Since it does not take a schema set name, no compatibility checks are performed.

" + }, "CreateClassifier":{ "name":"CreateClassifier", "http":{ @@ -376,6 +391,41 @@ ], "documentation":"

Creates a new partition.

" }, + "CreateRegistry":{ + "name":"CreateRegistry", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateRegistryInput"}, + "output":{"shape":"CreateRegistryResponse"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"AccessDeniedException"}, + {"shape":"AlreadyExistsException"}, + {"shape":"ResourceNumberLimitExceededException"}, + {"shape":"InternalServiceException"} + ], + "documentation":"

Creates a new registry which may be used to hold a collection of schemas.

" + }, + "CreateSchema":{ + "name":"CreateSchema", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateSchemaInput"}, + "output":{"shape":"CreateSchemaResponse"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"AccessDeniedException"}, + {"shape":"EntityNotFoundException"}, + {"shape":"AlreadyExistsException"}, + {"shape":"ResourceNumberLimitExceededException"}, + {"shape":"InternalServiceException"} + ], + "documentation":"

Creates a new schema set and registers the schema definition. Returns an error if the schema set already exists without actually registering the version.

When the schema set is created, a version checkpoint will be set to the first version. Compatibility mode \"DISABLED\" restricts any additional schema versions from being added after the first schema version. For all other compatibility modes, validation of compatibility settings will be applied only from the second version onwards when the RegisterSchemaVersion API is used.

When this API is called without a RegistryId, this will create an entry for a \"default-registry\" in the registry database tables, if it is not already present.

" + }, "CreateScript":{ "name":"CreateScript", "http":{ @@ -641,6 +691,22 @@ ], "documentation":"

Deletes a specified partition.

" }, + "DeleteRegistry":{ + "name":"DeleteRegistry", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteRegistryInput"}, + "output":{"shape":"DeleteRegistryResponse"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"EntityNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ConcurrentModificationException"} + ], + "documentation":"

Delete the entire registry including schema and all of its versions. To get the status of the delete operation, you can call the GetRegistry API after the asynchronous call. Deleting a registry will disable all online operations for the registry such as the UpdateRegistry, CreateSchema, UpdateSchema, and RegisterSchemaVersion APIs.

" + }, "DeleteResourcePolicy":{ "name":"DeleteResourcePolicy", "http":{ @@ -658,6 +724,38 @@ ], "documentation":"

Deletes a specified policy.

" }, + "DeleteSchema":{ + "name":"DeleteSchema", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteSchemaInput"}, + "output":{"shape":"DeleteSchemaResponse"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"EntityNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ConcurrentModificationException"} + ], + "documentation":"

Deletes the entire schema set, including the schema set and all of its versions. To get the status of the delete operation, you can call GetSchema API after the asynchronous call. Deleting a registry will disable all online operations for the schema, such as the GetSchemaByDefinition, and RegisterSchemaVersion APIs.

" + }, + "DeleteSchemaVersions":{ + "name":"DeleteSchemaVersions", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteSchemaVersionsInput"}, + "output":{"shape":"DeleteSchemaVersionsResponse"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"EntityNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ConcurrentModificationException"} + ], + "documentation":"

Remove versions from the specified schema. A version number or range may be supplied. If the compatibility mode forbids deleting of a version that is necessary, such as BACKWARDS_FULL, an error is returned. Calling the GetSchemaVersions API after this call will list the status of the deleted versions.

When the range of version numbers contain check pointed version, the API will return a 409 conflict and will not proceed with the deletion. You have to remove the checkpoint first using the DeleteSchemaCheckpoint API before using this API.

You cannot use the DeleteSchemaVersions API to delete the first schema version in the schema set. The first schema version can only be deleted by the DeleteSchema API. This operation will also delete the attached SchemaVersionMetadata under the schema versions. Hard deletes will be enforced on the database.

If the compatibility mode forbids deleting of a version that is necessary, such as BACKWARDS_FULL, an error is returned.

" + }, "DeleteSecurityConfiguration":{ "name":"DeleteSecurityConfiguration", "http":{ @@ -1223,6 +1321,22 @@ ], "documentation":"

Gets code to perform a specified mapping.

" }, + "GetRegistry":{ + "name":"GetRegistry", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetRegistryInput"}, + "output":{"shape":"GetRegistryResponse"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"AccessDeniedException"}, + {"shape":"EntityNotFoundException"}, + {"shape":"InternalServiceException"} + ], + "documentation":"

Describes the specified registry in detail.

" + }, "GetResourcePolicies":{ "name":"GetResourcePolicies", "http":{ @@ -1255,6 +1369,70 @@ ], "documentation":"

Retrieves a specified resource policy.

" }, + "GetSchema":{ + "name":"GetSchema", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetSchemaInput"}, + "output":{"shape":"GetSchemaResponse"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"AccessDeniedException"}, + {"shape":"EntityNotFoundException"}, + {"shape":"InternalServiceException"} + ], + "documentation":"

Describes the specified schema in detail.

" + }, + "GetSchemaByDefinition":{ + "name":"GetSchemaByDefinition", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetSchemaByDefinitionInput"}, + "output":{"shape":"GetSchemaByDefinitionResponse"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"AccessDeniedException"}, + {"shape":"EntityNotFoundException"}, + {"shape":"InternalServiceException"} + ], + "documentation":"

Retrieves a schema by the SchemaDefinition. The schema definition is sent to the Schema Registry, canonicalized, and hashed. If the hash is matched within the scope of the SchemaName or ARN (or the default registry, if none is supplied), that schema’s metadata is returned. Otherwise, a 404 or NotFound error is returned. Schema versions in Deleted statuses will not be included in the results.

" + }, + "GetSchemaVersion":{ + "name":"GetSchemaVersion", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetSchemaVersionInput"}, + "output":{"shape":"GetSchemaVersionResponse"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"AccessDeniedException"}, + {"shape":"EntityNotFoundException"}, + {"shape":"InternalServiceException"} + ], + "documentation":"

Get the specified schema by its unique ID assigned when a version of the schema is created or registered. Schema versions in Deleted status will not be included in the results.

" + }, + "GetSchemaVersionsDiff":{ + "name":"GetSchemaVersionsDiff", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetSchemaVersionsDiffInput"}, + "output":{"shape":"GetSchemaVersionsDiffResponse"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"EntityNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"InternalServiceException"} + ], + "documentation":"

Fetches the schema version difference in the specified difference type between two stored schema versions in the Schema Registry.

This API allows you to compare two schema versions between two schema definitions under the same schema.

" + }, "GetSecurityConfiguration":{ "name":"GetSecurityConfiguration", "http":{ @@ -1576,6 +1754,53 @@ ], "documentation":"

Retrieves a sortable, filterable list of existing AWS Glue machine learning transforms in this AWS account, or the resources with the specified tag. This operation takes the optional Tags field, which you can use as a filter of the responses so that tagged resources can be retrieved as a group. If you choose to use tag filtering, only resources with the tags are retrieved.

" }, + "ListRegistries":{ + "name":"ListRegistries", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListRegistriesInput"}, + "output":{"shape":"ListRegistriesResponse"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"AccessDeniedException"}, + {"shape":"InternalServiceException"} + ], + "documentation":"

Returns a list of registries that you have created, with minimal registry information. Registries in the Deleting status will not be included in the results. Empty results will be returned if there are no registries available.

" + }, + "ListSchemaVersions":{ + "name":"ListSchemaVersions", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListSchemaVersionsInput"}, + "output":{"shape":"ListSchemaVersionsResponse"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"AccessDeniedException"}, + {"shape":"EntityNotFoundException"}, + {"shape":"InternalServiceException"} + ], + "documentation":"

Returns a list of schema versions that you have created, with minimal information. Schema versions in Deleted status will not be included in the results. Empty results will be returned if there are no schema versions available.

" + }, + "ListSchemas":{ + "name":"ListSchemas", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListSchemasInput"}, + "output":{"shape":"ListSchemasResponse"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"AccessDeniedException"}, + {"shape":"EntityNotFoundException"}, + {"shape":"InternalServiceException"} + ], + "documentation":"

Returns a list of schemas with minimal details. Schemas in Deleting status will not be included in the results. Empty results will be returned if there are no schemas available.

When the RegistryId is not provided, all the schemas across registries will be part of the API response.

" + }, "ListTriggers":{ "name":"ListTriggers", "http":{ @@ -1639,6 +1864,23 @@ ], "documentation":"

Sets the Data Catalog resource policy for access control.

" }, + "PutSchemaVersionMetadata":{ + "name":"PutSchemaVersionMetadata", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"PutSchemaVersionMetadataInput"}, + "output":{"shape":"PutSchemaVersionMetadataResponse"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"AccessDeniedException"}, + {"shape":"AlreadyExistsException"}, + {"shape":"EntityNotFoundException"}, + {"shape":"ResourceNumberLimitExceededException"} + ], + "documentation":"

Puts the metadata key value pair for a specified schema version ID. A maximum of 10 key value pairs will be allowed per schema version. They can be added over one or more calls.

" + }, "PutWorkflowRunProperties":{ "name":"PutWorkflowRunProperties", "http":{ @@ -1658,6 +1900,54 @@ ], "documentation":"

Puts the specified workflow run properties for the given workflow run. If a property already exists for the specified run, then it overrides the value otherwise adds the property to existing properties.

" }, + "QuerySchemaVersionMetadata":{ + "name":"QuerySchemaVersionMetadata", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"QuerySchemaVersionMetadataInput"}, + "output":{"shape":"QuerySchemaVersionMetadataResponse"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"AccessDeniedException"}, + {"shape":"EntityNotFoundException"} + ], + "documentation":"

Queries for the schema version metadata information.

" + }, + "RegisterSchemaVersion":{ + "name":"RegisterSchemaVersion", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RegisterSchemaVersionInput"}, + "output":{"shape":"RegisterSchemaVersionResponse"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"AccessDeniedException"}, + {"shape":"EntityNotFoundException"}, + {"shape":"ResourceNumberLimitExceededException"}, + {"shape":"ConcurrentModificationException"}, + {"shape":"InternalServiceException"} + ], + "documentation":"

Adds a new version to the existing schema. Returns an error if new version of schema does not meet the compatibility requirements of the schema set. This API will not create a new schema set and will return a 404 error if the schema set is not already present in the Schema Registry.

If this is the first schema definition to be registered in the Schema Registry, this API will store the schema version and return immediately. Otherwise, this call has the potential to run longer than other operations due to compatibility modes. You can call the GetSchemaVersion API with the SchemaVersionId to check compatibility modes.

If the same schema definition is already stored in Schema Registry as a version, the schema ID of the existing schema is returned to the caller.

" + }, + "RemoveSchemaVersionMetadata":{ + "name":"RemoveSchemaVersionMetadata", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RemoveSchemaVersionMetadataInput"}, + "output":{"shape":"RemoveSchemaVersionMetadataResponse"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"AccessDeniedException"}, + {"shape":"EntityNotFoundException"} + ], + "documentation":"

Removes a key value pair from the schema version metadata for the specified schema version ID.

" + }, "ResetJobBookmark":{ "name":"ResetJobBookmark", "http":{ @@ -2145,6 +2435,40 @@ ], "documentation":"

Updates a partition.

" }, + "UpdateRegistry":{ + "name":"UpdateRegistry", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateRegistryInput"}, + "output":{"shape":"UpdateRegistryResponse"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"AccessDeniedException"}, + {"shape":"EntityNotFoundException"}, + {"shape":"ConcurrentModificationException"}, + {"shape":"InternalServiceException"} + ], + "documentation":"

Updates an existing registry which is used to hold a collection of schemas. The updated properties relate to the registry, and do not modify any of the schemas within the registry.

" + }, + "UpdateSchema":{ + "name":"UpdateSchema", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateSchemaInput"}, + "output":{"shape":"UpdateSchemaResponse"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"AccessDeniedException"}, + {"shape":"EntityNotFoundException"}, + {"shape":"ConcurrentModificationException"}, + {"shape":"InternalServiceException"} + ], + "documentation":"

Updates the description, compatibility setting, or version checkpoint for a schema set.

For updating the compatibility setting, the call will not validate compatibility for the entire set of schema versions with the new compatibility setting. If the value for Compatibility is provided, the VersionNumber (a checkpoint) is also required. The API will validate the checkpoint version number for consistency.

If the value for the VersionNumber (checkpoint) is provided, Compatibility is optional and this can be used to set/reset a checkpoint for the schema.

This update will happen only if the schema is in the AVAILABLE state.

" + }, "UpdateTable":{ "name":"UpdateTable", "http":{ @@ -2946,6 +3270,36 @@ "type":"list", "member":{"shape":"CatalogTarget"} }, + "CheckSchemaVersionValidityInput":{ + "type":"structure", + "required":[ + "DataFormat", + "SchemaDefinition" + ], + "members":{ + "DataFormat":{ + "shape":"DataFormat", + "documentation":"

The data format of the schema definition. Currently only AVRO is supported.

" + }, + "SchemaDefinition":{ + "shape":"SchemaDefinitionString", + "documentation":"

The definition of the schema that has to be validated.

" + } + } + }, + "CheckSchemaVersionValidityResponse":{ + "type":"structure", + "members":{ + "Valid":{ + "shape":"IsVersionValid", + "documentation":"

Return true, if the schema is valid and false otherwise.

" + }, + "Error":{ + "shape":"SchemaValidationError", + "documentation":"

A validation failure error message.

" + } + } + }, "Classification":{"type":"string"}, "Classifier":{ "type":"structure", @@ -3263,6 +3617,19 @@ "LESS_THAN_EQUALS" ] }, + "Compatibility":{ + "type":"string", + "enum":[ + "NONE", + "DISABLED", + "BACKWARD", + "BACKWARD_ALL", + "FORWARD", + "FORWARD_ALL", + "FULL", + "FULL_ALL" + ] + }, "ConcurrentModificationException":{ "type":"structure", "members":{ @@ -4327,20 +4694,157 @@ "members":{ } }, - "CreateScriptRequest":{ + "CreateRegistryInput":{ "type":"structure", + "required":["RegistryName"], "members":{ - "DagNodes":{ - "shape":"DagNodes", - "documentation":"

A list of the nodes in the DAG.

" + "RegistryName":{ + "shape":"SchemaRegistryNameString", + "documentation":"

Name of the registry to be created of max length of 255, and may only contain letters, numbers, hyphen, underscore, dollar sign, or hash mark. No whitespace.

" }, - "DagEdges":{ - "shape":"DagEdges", - "documentation":"

A list of the edges in the DAG.

" + "Description":{ + "shape":"DescriptionString", + "documentation":"

A description of the registry. If description is not provided, there will not be any default value for this.

" }, - "Language":{ - "shape":"Language", - "documentation":"

The programming language of the resulting code from the DAG.

" + "Tags":{ + "shape":"TagsMap", + "documentation":"

AWS tags that contain a key value pair and may be searched by console, command line, or API.

" + } + } + }, + "CreateRegistryResponse":{ + "type":"structure", + "members":{ + "RegistryArn":{ + "shape":"GlueResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the newly created registry.

" + }, + "RegistryName":{ + "shape":"SchemaRegistryNameString", + "documentation":"

The name of the registry.

" + }, + "Description":{ + "shape":"DescriptionString", + "documentation":"

A description of the registry.

" + }, + "Tags":{ + "shape":"TagsMap", + "documentation":"

The tags for the registry.

" + } + } + }, + "CreateSchemaInput":{ + "type":"structure", + "required":[ + "SchemaName", + "DataFormat" + ], + "members":{ + "RegistryId":{ + "shape":"RegistryId", + "documentation":"

This is a wrapper shape to contain the registry identity fields. If this is not provided, the default registry will be used. The ARN format for the same will be: arn:aws:glue:us-east-2:<customer id>:registry/default-registry:random-5-letter-id.

" + }, + "SchemaName":{ + "shape":"SchemaRegistryNameString", + "documentation":"

Name of the schema to be created of max length of 255, and may only contain letters, numbers, hyphen, underscore, dollar sign, or hash mark. No whitespace.

" + }, + "DataFormat":{ + "shape":"DataFormat", + "documentation":"

The data format of the schema definition. Currently only AVRO is supported.

" + }, + "Compatibility":{ + "shape":"Compatibility", + "documentation":"

The compatibility mode of the schema. The possible values are:

  • NONE: No compatibility mode applies. You can use this choice in development scenarios or if you do not know the compatibility mode that you want to apply to schemas. Any new version added will be accepted without undergoing a compatibility check.

  • DISABLED: This compatibility choice prevents versioning for a particular schema. You can use this choice to prevent future versioning of a schema.

  • BACKWARD: This compatibility choice is recommended as it allows data receivers to read both the current and one previous schema version. This means that for instance, a new schema version cannot drop data fields or change the type of these fields, so they can't be read by readers using the previous version.

  • BACKWARD_ALL: This compatibility choice allows data receivers to read both the current and all previous schema versions. You can use this choice when you need to delete fields or add optional fields, and check compatibility against all previous schema versions.

  • FORWARD: This compatibility choice allows data receivers to read both the current and one next schema version, but not necessarily later versions. You can use this choice when you need to add fields or delete optional fields, but only check compatibility against the last schema version.

  • FORWARD_ALL: This compatibility choice allows data receivers to read written by producers of any new registered schema. You can use this choice when you need to add fields or delete optional fields, and check compatibility against all previous schema versions.

  • FULL: This compatibility choice allows data receivers to read data written by producers using the previous or next version of the schema, but not necessarily earlier or later versions. You can use this choice when you need to add or remove optional fields, but only check compatibility against the last schema version.

  • FULL_ALL: This compatibility choice allows data receivers to read data written by producers using all previous schema versions. You can use this choice when you need to add or remove optional fields, and check compatibility against all previous schema versions.

" + }, + "Description":{ + "shape":"DescriptionString", + "documentation":"

An optional description of the schema. If description is not provided, there will not be any automatic default value for this.

" + }, + "Tags":{ + "shape":"TagsMap", + "documentation":"

AWS tags that contain a key value pair and may be searched by console, command line, or API. If specified, follows the AWS tags-on-create pattern.

" + }, + "SchemaDefinition":{ + "shape":"SchemaDefinitionString", + "documentation":"

The schema definition using the DataFormat setting for SchemaName.

" + } + } + }, + "CreateSchemaResponse":{ + "type":"structure", + "members":{ + "RegistryName":{ + "shape":"SchemaRegistryNameString", + "documentation":"

The name of the registry.

" + }, + "RegistryArn":{ + "shape":"GlueResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the registry.

" + }, + "SchemaName":{ + "shape":"SchemaRegistryNameString", + "documentation":"

The name of the schema.

" + }, + "SchemaArn":{ + "shape":"GlueResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the schema.

" + }, + "Description":{ + "shape":"DescriptionString", + "documentation":"

A description of the schema if specified when created.

" + }, + "DataFormat":{ + "shape":"DataFormat", + "documentation":"

The data format of the schema definition. Currently only AVRO is supported.

" + }, + "Compatibility":{ + "shape":"Compatibility", + "documentation":"

The schema compatibility mode.

" + }, + "SchemaCheckpoint":{ + "shape":"SchemaCheckpointNumber", + "documentation":"

The version number of the checkpoint (the last time the compatibility mode was changed).

" + }, + "LatestSchemaVersion":{ + "shape":"VersionLongNumber", + "documentation":"

The latest version of the schema associated with the returned schema definition.

" + }, + "NextSchemaVersion":{ + "shape":"VersionLongNumber", + "documentation":"

The next version of the schema associated with the returned schema definition.

" + }, + "SchemaStatus":{ + "shape":"SchemaStatus", + "documentation":"

The status of the schema.

" + }, + "Tags":{ + "shape":"TagsMap", + "documentation":"

The tags for the schema.

" + }, + "SchemaVersionId":{ + "shape":"SchemaVersionIdString", + "documentation":"

The unique identifier of the first schema version.

" + }, + "SchemaVersionStatus":{ + "shape":"SchemaVersionStatus", + "documentation":"

The status of the first schema version created.

" + } + } + }, + "CreateScriptRequest":{ + "type":"structure", + "members":{ + "DagNodes":{ + "shape":"DagNodes", + "documentation":"

A list of the nodes in the DAG.

" + }, + "DagEdges":{ + "shape":"DagEdges", + "documentation":"

A list of the edges in the DAG.

" + }, + "Language":{ + "shape":"Language", + "documentation":"

The programming language of the resulting code from the DAG.

" } } }, @@ -4555,6 +5059,7 @@ }, "documentation":"

Specifies an XML classifier for CreateClassifier to create.

" }, + "CreatedTimestamp":{"type":"string"}, "CronExpression":{"type":"string"}, "CsvClassifier":{ "type":"structure", @@ -4655,6 +5160,10 @@ }, "documentation":"

Contains configuration information for maintaining Data Catalog security.

" }, + "DataFormat":{ + "type":"string", + "enum":["AVRO"] + }, "DataLakePrincipal":{ "type":"structure", "members":{ @@ -5062,6 +5571,33 @@ "members":{ } }, + "DeleteRegistryInput":{ + "type":"structure", + "required":["RegistryId"], + "members":{ + "RegistryId":{ + "shape":"RegistryId", + "documentation":"

This is a wrapper structure that may contain the registry name and Amazon Resource Name (ARN).

" + } + } + }, + "DeleteRegistryResponse":{ + "type":"structure", + "members":{ + "RegistryName":{ + "shape":"SchemaRegistryNameString", + "documentation":"

The name of the registry being deleted.

" + }, + "RegistryArn":{ + "shape":"GlueResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the registry being deleted.

" + }, + "Status":{ + "shape":"RegistryStatus", + "documentation":"

The status of the registry. A successful operation will return the Deleting status.

" + } + } + }, "DeleteResourcePolicyRequest":{ "type":"structure", "members":{ @@ -5080,6 +5616,59 @@ "members":{ } }, + "DeleteSchemaInput":{ + "type":"structure", + "required":["SchemaId"], + "members":{ + "SchemaId":{ + "shape":"SchemaId", + "documentation":"

This is a wrapper structure that may contain the schema name and Amazon Resource Name (ARN).

" + } + } + }, + "DeleteSchemaResponse":{ + "type":"structure", + "members":{ + "SchemaArn":{ + "shape":"GlueResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the schema being deleted.

" + }, + "SchemaName":{ + "shape":"SchemaRegistryNameString", + "documentation":"

The name of the schema being deleted.

" + }, + "Status":{ + "shape":"SchemaStatus", + "documentation":"

The status of the schema.

" + } + } + }, + "DeleteSchemaVersionsInput":{ + "type":"structure", + "required":[ + "SchemaId", + "Versions" + ], + "members":{ + "SchemaId":{ + "shape":"SchemaId", + "documentation":"

This is a wrapper structure that may contain the schema name and Amazon Resource Name (ARN).

" + }, + "Versions":{ + "shape":"VersionsString", + "documentation":"

A version range may be supplied which may be of the format:

  • a single version number, 5

  • a range, 5-8 : deletes versions 5, 6, 7, 8

" + } + } + }, + "DeleteSchemaVersionsResponse":{ + "type":"structure", + "members":{ + "SchemaVersionErrors":{ + "shape":"SchemaVersionErrorList", + "documentation":"

A list of SchemaVersionErrorItem objects, each containing an error and schema version.

" + } + } + }, "DeleteSecurityConfigurationRequest":{ "type":"structure", "required":["Name"], @@ -5485,6 +6074,7 @@ "key":{"shape":"NameString"}, "value":{"shape":"ErrorDetail"} }, + "ErrorCodeString":{"type":"string"}, "ErrorDetail":{ "type":"structure", "members":{ @@ -5499,6 +6089,21 @@ }, "documentation":"

Contains details about an error.

" }, + "ErrorDetails":{ + "type":"structure", + "members":{ + "ErrorCode":{ + "shape":"ErrorCodeString", + "documentation":"

The error code for an error.

" + }, + "ErrorMessage":{ + "shape":"ErrorMessageString", + "documentation":"

The error message for an error.

" + } + }, + "documentation":"

An object containing error details.

" + }, + "ErrorMessageString":{"type":"string"}, "ErrorString":{"type":"string"}, "EvaluationMetrics":{ "type":"structure", @@ -6636,6 +7241,45 @@ } } }, + "GetRegistryInput":{ + "type":"structure", + "required":["RegistryId"], + "members":{ + "RegistryId":{ + "shape":"RegistryId", + "documentation":"

This is a wrapper structure that may contain the registry name and Amazon Resource Name (ARN).

" + } + } + }, + "GetRegistryResponse":{ + "type":"structure", + "members":{ + "RegistryName":{ + "shape":"SchemaRegistryNameString", + "documentation":"

The name of the registry.

" + }, + "RegistryArn":{ + "shape":"GlueResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the registry.

" + }, + "Description":{ + "shape":"DescriptionString", + "documentation":"

A description of the registry.

" + }, + "Status":{ + "shape":"RegistryStatus", + "documentation":"

The status of the registry.

" + }, + "CreatedTime":{ + "shape":"CreatedTimestamp", + "documentation":"

The date and time the registry was created.

" + }, + "UpdatedTime":{ + "shape":"UpdatedTimestamp", + "documentation":"

The date and time the registry was updated.

" + } + } + }, "GetResourcePoliciesRequest":{ "type":"structure", "members":{ @@ -6696,6 +7340,201 @@ } } }, + "GetSchemaByDefinitionInput":{ + "type":"structure", + "required":[ + "SchemaId", + "SchemaDefinition" + ], + "members":{ + "SchemaId":{ + "shape":"SchemaId", + "documentation":"

This is a wrapper structure to contain schema identity fields. The structure contains:

  • SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

  • SchemaId$SchemaName: The name of the schema. One of SchemaArn or SchemaName has to be provided.

" + }, + "SchemaDefinition":{ + "shape":"SchemaDefinitionString", + "documentation":"

The definition of the schema for which schema details are required.

" + } + } + }, + "GetSchemaByDefinitionResponse":{ + "type":"structure", + "members":{ + "SchemaVersionId":{ + "shape":"SchemaVersionIdString", + "documentation":"

The schema ID of the schema version.

" + }, + "SchemaArn":{ + "shape":"GlueResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the schema.

" + }, + "DataFormat":{ + "shape":"DataFormat", + "documentation":"

The data format of the schema definition. Currently only AVRO is supported.

" + }, + "Status":{ + "shape":"SchemaVersionStatus", + "documentation":"

The status of the schema version.

" + }, + "CreatedTime":{ + "shape":"CreatedTimestamp", + "documentation":"

The date and time the schema was created.

" + } + } + }, + "GetSchemaInput":{ + "type":"structure", + "required":["SchemaId"], + "members":{ + "SchemaId":{ + "shape":"SchemaId", + "documentation":"

This is a wrapper structure to contain schema identity fields. The structure contains:

  • SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either SchemaArn or SchemaName and RegistryName has to be provided.

  • SchemaId$SchemaName: The name of the schema. Either SchemaArn or SchemaName and RegistryName has to be provided.

" + } + } + }, + "GetSchemaResponse":{ + "type":"structure", + "members":{ + "RegistryName":{ + "shape":"SchemaRegistryNameString", + "documentation":"

The name of the registry.

" + }, + "RegistryArn":{ + "shape":"GlueResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the registry.

" + }, + "SchemaName":{ + "shape":"SchemaRegistryNameString", + "documentation":"

The name of the schema.

" + }, + "SchemaArn":{ + "shape":"GlueResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the schema.

" + }, + "Description":{ + "shape":"DescriptionString", + "documentation":"

A description of schema if specified when created

" + }, + "DataFormat":{ + "shape":"DataFormat", + "documentation":"

The data format of the schema definition. Currently only AVRO is supported.

" + }, + "Compatibility":{ + "shape":"Compatibility", + "documentation":"

The compatibility mode of the schema.

" + }, + "SchemaCheckpoint":{ + "shape":"SchemaCheckpointNumber", + "documentation":"

The version number of the checkpoint (the last time the compatibility mode was changed).

" + }, + "LatestSchemaVersion":{ + "shape":"VersionLongNumber", + "documentation":"

The latest version of the schema associated with the returned schema definition.

" + }, + "NextSchemaVersion":{ + "shape":"VersionLongNumber", + "documentation":"

The next version of the schema associated with the returned schema definition.

" + }, + "SchemaStatus":{ + "shape":"SchemaStatus", + "documentation":"

The status of the schema.

" + }, + "CreatedTime":{ + "shape":"CreatedTimestamp", + "documentation":"

The date and time the schema was created.

" + }, + "UpdatedTime":{ + "shape":"UpdatedTimestamp", + "documentation":"

The date and time the schema was updated.

" + } + } + }, + "GetSchemaVersionInput":{ + "type":"structure", + "members":{ + "SchemaId":{ + "shape":"SchemaId", + "documentation":"

This is a wrapper structure to contain schema identity fields. The structure contains:

  • SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either SchemaArn or SchemaName and RegistryName has to be provided.

  • SchemaId$SchemaName: The name of the schema. Either SchemaArn or SchemaName and RegistryName has to be provided.

" + }, + "SchemaVersionId":{ + "shape":"SchemaVersionIdString", + "documentation":"

The SchemaVersionId of the schema version. This field is required for fetching by schema ID. Either this or the SchemaId wrapper has to be provided.

" + }, + "SchemaVersionNumber":{ + "shape":"SchemaVersionNumber", + "documentation":"

The version number of the schema.

" + } + } + }, + "GetSchemaVersionResponse":{ + "type":"structure", + "members":{ + "SchemaVersionId":{ + "shape":"SchemaVersionIdString", + "documentation":"

The SchemaVersionId of the schema version.

" + }, + "SchemaDefinition":{ + "shape":"SchemaDefinitionString", + "documentation":"

The schema definition for the schema ID.

" + }, + "DataFormat":{ + "shape":"DataFormat", + "documentation":"

The data format of the schema definition. Currently only AVRO is supported.

" + }, + "SchemaArn":{ + "shape":"GlueResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the schema.

" + }, + "VersionNumber":{ + "shape":"VersionLongNumber", + "documentation":"

The version number of the schema.

" + }, + "Status":{ + "shape":"SchemaVersionStatus", + "documentation":"

The status of the schema version.

" + }, + "CreatedTime":{ + "shape":"CreatedTimestamp", + "documentation":"

The date and time the schema version was created.

" + } + } + }, + "GetSchemaVersionsDiffInput":{ + "type":"structure", + "required":[ + "SchemaId", + "FirstSchemaVersionNumber", + "SecondSchemaVersionNumber", + "SchemaDiffType" + ], + "members":{ + "SchemaId":{ + "shape":"SchemaId", + "documentation":"

This is a wrapper structure to contain schema identity fields. The structure contains:

  • SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

  • SchemaId$SchemaName: The name of the schema. One of SchemaArn or SchemaName has to be provided.

" + }, + "FirstSchemaVersionNumber":{ + "shape":"SchemaVersionNumber", + "documentation":"

The first of the two schema versions to be compared.

" + }, + "SecondSchemaVersionNumber":{ + "shape":"SchemaVersionNumber", + "documentation":"

The second of the two schema versions to be compared.

" + }, + "SchemaDiffType":{ + "shape":"SchemaDiffType", + "documentation":"

Refers to SYNTAX_DIFF, which is the currently supported diff type.

" + } + } + }, + "GetSchemaVersionsDiffResponse":{ + "type":"structure", + "members":{ + "Diff":{ + "shape":"SchemaDefinitionDiff", + "documentation":"

The difference between schemas as a string in JsonPatch format.

" + } + } + }, "GetSecurityConfigurationRequest":{ "type":"structure", "required":["Name"], @@ -7355,6 +8194,7 @@ "documentation":"

The input provided was not valid.

", "exception":true }, + "IsVersionValid":{"type":"boolean"}, "JdbcTarget":{ "type":"structure", "members":{ @@ -7871,6 +8711,7 @@ "FAILED" ] }, + "LatestSchemaVersionBoolean":{"type":"boolean"}, "ListCrawlersRequest":{ "type":"structure", "members":{ @@ -8000,54 +8841,141 @@ } } }, - "ListTriggersRequest":{ + "ListRegistriesInput":{ "type":"structure", "members":{ - "NextToken":{ - "shape":"GenericString", - "documentation":"

A continuation token, if this is a continuation request.

" - }, - "DependentJobName":{ - "shape":"NameString", - "documentation":"

The name of the job for which to retrieve triggers. The trigger that can start this job is returned. If there is no such trigger, all triggers are returned.

" - }, "MaxResults":{ - "shape":"PageSize", - "documentation":"

The maximum size of a list to return.

" + "shape":"MaxResultsNumber", + "documentation":"

Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.

" }, - "Tags":{ - "shape":"TagsMap", - "documentation":"

Specifies to return only these tagged resources.

" + "NextToken":{ + "shape":"SchemaRegistryTokenString", + "documentation":"

A continuation token, if this is a continuation call.

" } } }, - "ListTriggersResponse":{ + "ListRegistriesResponse":{ "type":"structure", "members":{ - "TriggerNames":{ - "shape":"TriggerNameList", - "documentation":"

The names of all triggers in the account, or the triggers with the specified tags.

" + "Registries":{ + "shape":"RegistryListDefinition", + "documentation":"

An array of RegistryDetailedListItem objects containing minimal details of each registry.

" }, "NextToken":{ - "shape":"GenericString", - "documentation":"

A continuation token, if the returned list does not contain the last metric available.

" + "shape":"SchemaRegistryTokenString", + "documentation":"

A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.

" } } }, - "ListWorkflowsRequest":{ + "ListSchemaVersionsInput":{ "type":"structure", + "required":["SchemaId"], "members":{ - "NextToken":{ - "shape":"GenericString", - "documentation":"

A continuation token, if this is a continuation request.

" + "SchemaId":{ + "shape":"SchemaId", + "documentation":"

This is a wrapper structure to contain schema identity fields. The structure contains:

  • SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either SchemaArn or SchemaName and RegistryName has to be provided.

  • SchemaId$SchemaName: The name of the schema. Either SchemaArn or SchemaName and RegistryName has to be provided.

" }, "MaxResults":{ - "shape":"PageSize", - "documentation":"

The maximum size of a list to return.

" + "shape":"MaxResultsNumber", + "documentation":"

Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.

" + }, + "NextToken":{ + "shape":"SchemaRegistryTokenString", + "documentation":"

A continuation token, if this is a continuation call.

" } } }, - "ListWorkflowsResponse":{ + "ListSchemaVersionsResponse":{ + "type":"structure", + "members":{ + "Schemas":{ + "shape":"SchemaVersionList", + "documentation":"

An array of SchemaVersionList objects containing details of each schema version.

" + }, + "NextToken":{ + "shape":"SchemaRegistryTokenString", + "documentation":"

A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.

" + } + } + }, + "ListSchemasInput":{ + "type":"structure", + "members":{ + "RegistryId":{ + "shape":"RegistryId", + "documentation":"

A wrapper structure that may contain the registry name and Amazon Resource Name (ARN).

" + }, + "MaxResults":{ + "shape":"MaxResultsNumber", + "documentation":"

Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.

" + }, + "NextToken":{ + "shape":"SchemaRegistryTokenString", + "documentation":"

A continuation token, if this is a continuation call.

" + } + } + }, + "ListSchemasResponse":{ + "type":"structure", + "members":{ + "Schemas":{ + "shape":"SchemaListDefinition", + "documentation":"

An array of SchemaListItem objects containing details of each schema.

" + }, + "NextToken":{ + "shape":"SchemaRegistryTokenString", + "documentation":"

A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.

" + } + } + }, + "ListTriggersRequest":{ + "type":"structure", + "members":{ + "NextToken":{ + "shape":"GenericString", + "documentation":"

A continuation token, if this is a continuation request.

" + }, + "DependentJobName":{ + "shape":"NameString", + "documentation":"

The name of the job for which to retrieve triggers. The trigger that can start this job is returned. If there is no such trigger, all triggers are returned.

" + }, + "MaxResults":{ + "shape":"PageSize", + "documentation":"

The maximum size of a list to return.

" + }, + "Tags":{ + "shape":"TagsMap", + "documentation":"

Specifies to return only these tagged resources.

" + } + } + }, + "ListTriggersResponse":{ + "type":"structure", + "members":{ + "TriggerNames":{ + "shape":"TriggerNameList", + "documentation":"

The names of all triggers in the account, or the triggers with the specified tags.

" + }, + "NextToken":{ + "shape":"GenericString", + "documentation":"

A continuation token, if the returned list does not contain the last metric available.

" + } + } + }, + "ListWorkflowsRequest":{ + "type":"structure", + "members":{ + "NextToken":{ + "shape":"GenericString", + "documentation":"

A continuation token, if this is a continuation request.

" + }, + "MaxResults":{ + "shape":"PageSize", + "documentation":"

The maximum size of a list to return.

" + } + } + }, + "ListWorkflowsResponse":{ "type":"structure", "members":{ "Workflows":{ @@ -8301,6 +9229,12 @@ "min":0 }, "MaxConcurrentRuns":{"type":"integer"}, + "MaxResultsNumber":{ + "type":"integer", + "box":true, + "max":100, + "min":1 + }, "MaxRetries":{"type":"integer"}, "MessagePrefix":{ "type":"string", @@ -8309,6 +9243,55 @@ "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*" }, "MessageString":{"type":"string"}, + "MetadataInfo":{ + "type":"structure", + "members":{ + "MetadataValue":{ + "shape":"MetadataValueString", + "documentation":"

The metadata key’s corresponding value.

" + }, + "CreatedTime":{ + "shape":"CreatedTimestamp", + "documentation":"

The time at which the entry was created.

" + } + }, + "documentation":"

A structure containing metadata information for a schema version.

" + }, + "MetadataInfoMap":{ + "type":"map", + "key":{"shape":"MetadataKeyString"}, + "value":{"shape":"MetadataInfo"} + }, + "MetadataKeyString":{ + "type":"string", + "max":128, + "min":1, + "pattern":"[a-zA-Z0-9+-=._./@]+" + }, + "MetadataKeyValuePair":{ + "type":"structure", + "members":{ + "MetadataKey":{ + "shape":"MetadataKeyString", + "documentation":"

A metadata key.

" + }, + "MetadataValue":{ + "shape":"MetadataValueString", + "documentation":"

A metadata key’s corresponding value.

" + } + }, + "documentation":"

A structure containing a key value pair for metadata.

" + }, + "MetadataList":{ + "type":"list", + "member":{"shape":"MetadataKeyValuePair"} + }, + "MetadataValueString":{ + "type":"string", + "max":256, + "min":1, + "pattern":"[a-zA-Z0-9+-=._./@]+" + }, "MillisecondsCount":{"type":"long"}, "MongoDBTarget":{ "type":"structure", @@ -8839,6 +9822,65 @@ } } }, + "PutSchemaVersionMetadataInput":{ + "type":"structure", + "required":["MetadataKeyValue"], + "members":{ + "SchemaId":{ + "shape":"SchemaId", + "documentation":"

The unique ID for the schema.

" + }, + "SchemaVersionNumber":{ + "shape":"SchemaVersionNumber", + "documentation":"

The version number of the schema.

" + }, + "SchemaVersionId":{ + "shape":"SchemaVersionIdString", + "documentation":"

The unique version ID of the schema version.

" + }, + "MetadataKeyValue":{ + "shape":"MetadataKeyValuePair", + "documentation":"

The metadata key's corresponding value.

" + } + } + }, + "PutSchemaVersionMetadataResponse":{ + "type":"structure", + "members":{ + "SchemaArn":{ + "shape":"GlueResourceArn", + "documentation":"

The Amazon Resource Name (ARN) for the schema.

" + }, + "SchemaName":{ + "shape":"SchemaRegistryNameString", + "documentation":"

The name for the schema.

" + }, + "RegistryName":{ + "shape":"SchemaRegistryNameString", + "documentation":"

The name for the registry.

" + }, + "LatestVersion":{ + "shape":"LatestSchemaVersionBoolean", + "documentation":"

The latest version of the schema.

" + }, + "VersionNumber":{ + "shape":"VersionLongNumber", + "documentation":"

The version number of the schema.

" + }, + "SchemaVersionId":{ + "shape":"SchemaVersionIdString", + "documentation":"

The unique version ID of the schema version.

" + }, + "MetadataKey":{ + "shape":"MetadataKeyString", + "documentation":"

The metadata key.

" + }, + "MetadataValue":{ + "shape":"MetadataValueString", + "documentation":"

The value of the metadata key.

" + } + } + }, "PutWorkflowRunPropertiesRequest":{ "type":"structure", "required":[ @@ -8871,6 +9913,57 @@ "type":"string", "pattern":"^[2-3]$" }, + "QuerySchemaVersionMetadataInput":{ + "type":"structure", + "members":{ + "SchemaId":{ + "shape":"SchemaId", + "documentation":"

A wrapper structure that may contain the schema name and Amazon Resource Name (ARN).

" + }, + "SchemaVersionNumber":{ + "shape":"SchemaVersionNumber", + "documentation":"

The version number of the schema.

" + }, + "SchemaVersionId":{ + "shape":"SchemaVersionIdString", + "documentation":"

The unique version ID of the schema version.

" + }, + "MetadataList":{ + "shape":"MetadataList", + "documentation":"

Search key-value pairs for metadata, if they are not provided all the metadata information will be fetched.

" + }, + "MaxResults":{ + "shape":"QuerySchemaVersionMetadataMaxResults", + "documentation":"

Maximum number of results required per page. If the value is not supplied, this will be defaulted to 25 per page.

" + }, + "NextToken":{ + "shape":"SchemaRegistryTokenString", + "documentation":"

A continuation token, if this is a continuation call.

" + } + } + }, + "QuerySchemaVersionMetadataMaxResults":{ + "type":"integer", + "max":50, + "min":1 + }, + "QuerySchemaVersionMetadataResponse":{ + "type":"structure", + "members":{ + "MetadataInfoMap":{ + "shape":"MetadataInfoMap", + "documentation":"

A map of a metadata key and associated values.

" + }, + "SchemaVersionId":{ + "shape":"SchemaVersionIdString", + "documentation":"

The unique version ID of the schema version.

" + }, + "NextToken":{ + "shape":"SchemaRegistryTokenString", + "documentation":"

A continuation token for paginating the returned list of tokens, returned if the current segment of the list is not the last.

" + } + } + }, "RecordsCount":{ "type":"long", "box":true @@ -8892,6 +9985,154 @@ }, "documentation":"

When crawling an Amazon S3 data source after the first crawl is complete, specifies whether to crawl the entire dataset again or to crawl only folders that were added since the last crawler run. For more information, see Incremental Crawls in AWS Glue in the developer guide.

" }, + "RegisterSchemaVersionInput":{ + "type":"structure", + "required":[ + "SchemaId", + "SchemaDefinition" + ], + "members":{ + "SchemaId":{ + "shape":"SchemaId", + "documentation":"

This is a wrapper structure to contain schema identity fields. The structure contains:

  • SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. Either SchemaArn or SchemaName and RegistryName has to be provided.

  • SchemaId$SchemaName: The name of the schema. Either SchemaArn or SchemaName and RegistryName has to be provided.

" + }, + "SchemaDefinition":{ + "shape":"SchemaDefinitionString", + "documentation":"

The schema definition using the DataFormat setting for the SchemaName.

" + } + } + }, + "RegisterSchemaVersionResponse":{ + "type":"structure", + "members":{ + "SchemaVersionId":{ + "shape":"SchemaVersionIdString", + "documentation":"

The unique ID that represents the version of this schema.

" + }, + "VersionNumber":{ + "shape":"VersionLongNumber", + "documentation":"

The version of this schema (for sync flow only, in case this is the first version).

" + }, + "Status":{ + "shape":"SchemaVersionStatus", + "documentation":"

The status of the schema version.

" + } + } + }, + "RegistryId":{ + "type":"structure", + "members":{ + "RegistryName":{ + "shape":"SchemaRegistryNameString", + "documentation":"

Name of the registry. Used only for lookup. One of RegistryArn or RegistryName has to be provided.

" + }, + "RegistryArn":{ + "shape":"GlueResourceArn", + "documentation":"

Arn of the registry to be updated. One of RegistryArn or RegistryName has to be provided.

" + } + }, + "documentation":"

A wrapper structure that may contain the registry name and Amazon Resource Name (ARN).

" + }, + "RegistryListDefinition":{ + "type":"list", + "member":{"shape":"RegistryListItem"} + }, + "RegistryListItem":{ + "type":"structure", + "members":{ + "RegistryName":{ + "shape":"SchemaRegistryNameString", + "documentation":"

The name of the registry.

" + }, + "RegistryArn":{ + "shape":"GlueResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the registry.

" + }, + "Description":{ + "shape":"DescriptionString", + "documentation":"

A description of the registry.

" + }, + "Status":{ + "shape":"RegistryStatus", + "documentation":"

The status of the registry.

" + }, + "CreatedTime":{ + "shape":"CreatedTimestamp", + "documentation":"

The data the registry was created.

" + }, + "UpdatedTime":{ + "shape":"UpdatedTimestamp", + "documentation":"

The date the registry was updated.

" + } + }, + "documentation":"

A structure containing the details for a registry.

" + }, + "RegistryStatus":{ + "type":"string", + "enum":[ + "AVAILABLE", + "DELETING" + ] + }, + "RemoveSchemaVersionMetadataInput":{ + "type":"structure", + "required":["MetadataKeyValue"], + "members":{ + "SchemaId":{ + "shape":"SchemaId", + "documentation":"

A wrapper structure that may contain the schema name and Amazon Resource Name (ARN).

" + }, + "SchemaVersionNumber":{ + "shape":"SchemaVersionNumber", + "documentation":"

The version number of the schema.

" + }, + "SchemaVersionId":{ + "shape":"SchemaVersionIdString", + "documentation":"

The unique version ID of the schema version.

" + }, + "MetadataKeyValue":{ + "shape":"MetadataKeyValuePair", + "documentation":"

The value of the metadata key.

" + } + } + }, + "RemoveSchemaVersionMetadataResponse":{ + "type":"structure", + "members":{ + "SchemaArn":{ + "shape":"GlueResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the schema.

" + }, + "SchemaName":{ + "shape":"SchemaRegistryNameString", + "documentation":"

The name of the schema.

" + }, + "RegistryName":{ + "shape":"SchemaRegistryNameString", + "documentation":"

The name of the registry.

" + }, + "LatestVersion":{ + "shape":"LatestSchemaVersionBoolean", + "documentation":"

The latest version of the schema.

" + }, + "VersionNumber":{ + "shape":"VersionLongNumber", + "documentation":"

The version number of the schema.

" + }, + "SchemaVersionId":{ + "shape":"SchemaVersionIdString", + "documentation":"

The version ID for the schema version.

" + }, + "MetadataKey":{ + "shape":"MetadataKeyString", + "documentation":"

The metadata key.

" + }, + "MetadataValue":{ + "shape":"MetadataValueString", + "documentation":"

The value of the metadata key.

" + } + } + }, "ReplaceBoolean":{"type":"boolean"}, "ResetJobBookmarkRequest":{ "type":"structure", @@ -9123,6 +10364,11 @@ }, "documentation":"

A policy that specifies update and deletion behaviors for the crawler.

" }, + "SchemaCheckpointNumber":{ + "type":"long", + "max":100000, + "min":1 + }, "SchemaColumn":{ "type":"structure", "members":{ @@ -9137,7 +10383,178 @@ }, "documentation":"

A key-value pair representing a column and data type that this transform can run against. The Schema parameter of the MLTransform may contain up to 100 of these structures.

" }, + "SchemaDefinitionDiff":{ + "type":"string", + "max":340000, + "min":1, + "pattern":".*\\S.*" + }, + "SchemaDefinitionString":{ + "type":"string", + "max":170000, + "min":1, + "pattern":".*\\S.*" + }, + "SchemaDiffType":{ + "type":"string", + "enum":["SYNTAX_DIFF"] + }, + "SchemaId":{ + "type":"structure", + "members":{ + "SchemaArn":{"shape":"GlueResourceArn"}, + "SchemaName":{"shape":"SchemaRegistryNameString"}, + "RegistryName":{"shape":"SchemaRegistryNameString"} + } + }, + "SchemaListDefinition":{ + "type":"list", + "member":{"shape":"SchemaListItem"} + }, + "SchemaListItem":{ + "type":"structure", + "members":{ + "RegistryName":{ + "shape":"SchemaRegistryNameString", + "documentation":"

the name of the registry where the schema resides.

" + }, + "SchemaName":{ + "shape":"SchemaRegistryNameString", + "documentation":"

The name of the schema.

" + }, + "SchemaArn":{ + "shape":"GlueResourceArn", + "documentation":"

The Amazon Resource Name (ARN) for the schema.

" + }, + "Description":{ + "shape":"DescriptionString", + "documentation":"

A description for the schema.

" + }, + "SchemaStatus":{ + "shape":"SchemaStatus", + "documentation":"

The status of the schema.

" + }, + "CreatedTime":{ + "shape":"CreatedTimestamp", + "documentation":"

The date and time that a schema was created.

" + }, + "UpdatedTime":{ + "shape":"UpdatedTimestamp", + "documentation":"

The date and time that a schema was updated.

" + } + }, + "documentation":"

An object that contains minimal details for a schema.

" + }, "SchemaPathString":{"type":"string"}, + "SchemaReference":{ + "type":"structure", + "members":{ + "SchemaId":{ + "shape":"SchemaId", + "documentation":"

A structure that contains schema identity fields. Either this or the SchemaVersionId has to be provided.

" + }, + "SchemaVersionId":{ + "shape":"SchemaVersionIdString", + "documentation":"

The unique ID assigned to a version of the schema. Either this or the SchemaId has to be provided.

" + }, + "SchemaVersionNumber":{ + "shape":"VersionLongNumber", + "documentation":"

The version number of the schema.

", + "box":true + } + }, + "documentation":"

An object that references a schema stored in the AWS Glue Schema Registry.

" + }, + "SchemaRegistryNameString":{ + "type":"string", + "max":255, + "min":1, + "pattern":"[a-zA-Z0-9-_$#]+" + }, + "SchemaRegistryTokenString":{"type":"string"}, + "SchemaStatus":{ + "type":"string", + "enum":[ + "AVAILABLE", + "PENDING", + "DELETING" + ] + }, + "SchemaValidationError":{ + "type":"string", + "max":5000, + "min":1 + }, + "SchemaVersionErrorItem":{ + "type":"structure", + "members":{ + "VersionNumber":{ + "shape":"VersionLongNumber", + "documentation":"

The version number of the schema.

" + }, + "ErrorDetails":{ + "shape":"ErrorDetails", + "documentation":"

The details of the error for the schema version.

" + } + }, + "documentation":"

An object that contains the error details for an operation on a schema version.

" + }, + "SchemaVersionErrorList":{ + "type":"list", + "member":{"shape":"SchemaVersionErrorItem"} + }, + "SchemaVersionIdString":{ + "type":"string", + "max":36, + "min":36, + "pattern":"[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}" + }, + "SchemaVersionList":{ + "type":"list", + "member":{"shape":"SchemaVersionListItem"} + }, + "SchemaVersionListItem":{ + "type":"structure", + "members":{ + "SchemaArn":{ + "shape":"GlueResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the schema.

" + }, + "SchemaVersionId":{ + "shape":"SchemaVersionIdString", + "documentation":"

The unique identifier of the schema version.

" + }, + "VersionNumber":{ + "shape":"VersionLongNumber", + "documentation":"

The version number of the schema.

" + }, + "Status":{ + "shape":"SchemaVersionStatus", + "documentation":"

The status of the schema version.

" + }, + "CreatedTime":{ + "shape":"CreatedTimestamp", + "documentation":"

The date and time the schema version was created.

" + } + }, + "documentation":"

An object containing the details about a schema version.

" + }, + "SchemaVersionNumber":{ + "type":"structure", + "members":{ + "LatestVersion":{"shape":"LatestSchemaVersionBoolean"}, + "VersionNumber":{"shape":"VersionLongNumber"} + } + }, + "SchemaVersionStatus":{ + "type":"string", + "enum":[ + "AVAILABLE", + "PENDING", + "FAILURE", + "DELETING" + ] + }, "ScriptLocationString":{"type":"string"}, "SearchPropertyPredicates":{ "type":"list", @@ -9652,6 +11069,10 @@ "StoredAsSubDirectories":{ "shape":"Boolean", "documentation":"

True if the table data is stored in subdirectories, or False if not.

" + }, + "SchemaReference":{ + "shape":"SchemaReference", + "documentation":"

An object that references a schema stored in the AWS Glue Schema Registry.

When creating a table, you can pass an empty list of columns for the schema, and instead use a schema reference.

" } }, "documentation":"

Describes the physical storage of table data.

" @@ -10866,6 +12287,75 @@ "members":{ } }, + "UpdateRegistryInput":{ + "type":"structure", + "required":[ + "RegistryId", + "Description" + ], + "members":{ + "RegistryId":{ + "shape":"RegistryId", + "documentation":"

This is a wrapper structure that may contain the registry name and Amazon Resource Name (ARN).

" + }, + "Description":{ + "shape":"DescriptionString", + "documentation":"

A description of the registry. If description is not provided, this field will not be updated.

" + } + } + }, + "UpdateRegistryResponse":{ + "type":"structure", + "members":{ + "RegistryName":{ + "shape":"SchemaRegistryNameString", + "documentation":"

The name of the updated registry.

" + }, + "RegistryArn":{ + "shape":"GlueResourceArn", + "documentation":"

The Amazon Resource name (ARN) of the updated registry.

" + } + } + }, + "UpdateSchemaInput":{ + "type":"structure", + "required":["SchemaId"], + "members":{ + "SchemaId":{ + "shape":"SchemaId", + "documentation":"

This is a wrapper structure to contain schema identity fields. The structure contains:

  • SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

  • SchemaId$SchemaName: The name of the schema. One of SchemaArn or SchemaName has to be provided.

" + }, + "SchemaVersionNumber":{ + "shape":"SchemaVersionNumber", + "documentation":"

Version number required for check pointing. One of VersionNumber or Compatibility has to be provided.

" + }, + "Compatibility":{ + "shape":"Compatibility", + "documentation":"

The new compatibility setting for the schema.

" + }, + "Description":{ + "shape":"DescriptionString", + "documentation":"

The new description for the schema.

" + } + } + }, + "UpdateSchemaResponse":{ + "type":"structure", + "members":{ + "SchemaArn":{ + "shape":"GlueResourceArn", + "documentation":"

The Amazon Resource Name (ARN) of the schema.

" + }, + "SchemaName":{ + "shape":"SchemaRegistryNameString", + "documentation":"

The name of the schema.

" + }, + "RegistryName":{ + "shape":"SchemaRegistryNameString", + "documentation":"

The name of the registry that contains the schema.

" + } + } + }, "UpdateTableRequest":{ "type":"structure", "required":[ @@ -11003,6 +12493,7 @@ }, "documentation":"

Specifies an XML classifier to be updated.

" }, + "UpdatedTimestamp":{"type":"string"}, "UriString":{"type":"string"}, "UserDefinedFunction":{ "type":"structure", @@ -11092,6 +12583,11 @@ "member":{"shape":"ValueString"} }, "VersionId":{"type":"long"}, + "VersionLongNumber":{ + "type":"long", + "max":100000, + "min":1 + }, "VersionMismatchException":{ "type":"structure", "members":{ @@ -11109,6 +12605,12 @@ "min":1, "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*" }, + "VersionsString":{ + "type":"string", + "max":100000, + "min":1, + "pattern":"[1-9][0-9]*|[1-9][0-9]*-[1-9][0-9]*" + }, "ViewTextString":{ "type":"string", "max":409600 From 5843962c6a5dc8046372696c35f59fffeef7ec5b Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 19 Nov 2020 19:17:33 +0000 Subject: [PATCH 225/339] AWS Directory Service Update: Adding multi-region replication feature for AWS Managed Microsoft AD --- .../feature-AWSDirectoryService-18e5a36.json | 6 + .../codegen-resources/service-2.json | 232 +++++++++++++++++- 2 files changed, 234 insertions(+), 4 deletions(-) create mode 100644 .changes/next-release/feature-AWSDirectoryService-18e5a36.json diff --git a/.changes/next-release/feature-AWSDirectoryService-18e5a36.json b/.changes/next-release/feature-AWSDirectoryService-18e5a36.json new file mode 100644 index 000000000000..4ca17fc991bf --- /dev/null +++ b/.changes/next-release/feature-AWSDirectoryService-18e5a36.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Directory Service", + "contributor": "", + "description": "Adding multi-region replication feature for AWS Managed Microsoft AD" +} diff --git a/services/directory/src/main/resources/codegen-resources/service-2.json b/services/directory/src/main/resources/codegen-resources/service-2.json index 6c4d33a016af..c05823cb1ec0 100644 --- a/services/directory/src/main/resources/codegen-resources/service-2.json +++ b/services/directory/src/main/resources/codegen-resources/service-2.json @@ -49,6 +49,28 @@ ], "documentation":"

If the DNS server for your on-premises domain uses a publicly addressable IP address, you must add a CIDR address block to correctly route traffic to and from your Microsoft AD on Amazon Web Services. AddIpRoutes adds this address block. You can also use AddIpRoutes to facilitate routing traffic that uses public IP ranges from your Microsoft AD on AWS to a peer VPC.

Before you call AddIpRoutes, ensure that all of the required permissions have been explicitly granted through a policy. For details about what permissions are required to run the AddIpRoutes operation, see AWS Directory Service API Permissions: Actions, Resources, and Conditions Reference.

" }, + "AddRegion":{ + "name":"AddRegion", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"AddRegionRequest"}, + "output":{"shape":"AddRegionResult"}, + "errors":[ + {"shape":"DirectoryUnavailableException"}, + {"shape":"InvalidParameterException"}, + {"shape":"EntityDoesNotExistException"}, + {"shape":"DirectoryAlreadyInRegionException"}, + {"shape":"UnsupportedOperationException"}, + {"shape":"DirectoryDoesNotExistException"}, + {"shape":"RegionLimitExceededException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ClientException"}, + {"shape":"ServiceException"} + ], + "documentation":"

Adds two domain controllers in the specified Region for the specified directory.

" + }, "AddTagsToResource":{ "name":"AddTagsToResource", "http":{ @@ -132,7 +154,7 @@ {"shape":"ClientException"}, {"shape":"ServiceException"} ], - "documentation":"

Creates a computer account in the specified directory, and joins the computer to the directory.

" + "documentation":"

Creates an Active Directory computer object in the specified directory.

" }, "CreateConditionalForwarder":{ "name":"CreateConditionalForwarder", @@ -462,6 +484,25 @@ ], "documentation":"

Describes the status of LDAP security for the specified directory.

" }, + "DescribeRegions":{ + "name":"DescribeRegions", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeRegionsRequest"}, + "output":{"shape":"DescribeRegionsResult"}, + "errors":[ + {"shape":"InvalidParameterException"}, + {"shape":"DirectoryDoesNotExistException"}, + {"shape":"UnsupportedOperationException"}, + {"shape":"InvalidNextTokenException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ClientException"}, + {"shape":"ServiceException"} + ], + "documentation":"

Provides information about the Regions that are configured for multi-Region replication.

" + }, "DescribeSharedDirectories":{ "name":"DescribeSharedDirectories", "http":{ @@ -805,6 +846,24 @@ ], "documentation":"

Removes IP address blocks from a directory.

" }, + "RemoveRegion":{ + "name":"RemoveRegion", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RemoveRegionRequest"}, + "output":{"shape":"RemoveRegionResult"}, + "errors":[ + {"shape":"DirectoryUnavailableException"}, + {"shape":"DirectoryDoesNotExistException"}, + {"shape":"UnsupportedOperationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ClientException"}, + {"shape":"ServiceException"} + ], + "documentation":"

Stops all replication and removes the domain controllers from the specified Region. You cannot remove the primary Region with this operation. Instead, use the DeleteDirectory API.

" + }, "RemoveTagsFromResource":{ "name":"RemoveTagsFromResource", "http":{ @@ -1060,6 +1119,30 @@ "members":{ } }, + "AddRegionRequest":{ + "type":"structure", + "required":[ + "DirectoryId", + "RegionName", + "VPCSettings" + ], + "members":{ + "DirectoryId":{ + "shape":"DirectoryId", + "documentation":"

The identifier of the directory to which you want to add Region replication.

" + }, + "RegionName":{ + "shape":"RegionName", + "documentation":"

The name of the Region where you want to add domain controllers for replication. For example, us-east-1.

" + }, + "VPCSettings":{"shape":"DirectoryVpcSettings"} + } + }, + "AddRegionResult":{ + "type":"structure", + "members":{ + } + }, "AddTagsToResourceRequest":{ "type":"structure", "required":[ @@ -1083,6 +1166,10 @@ } }, "AddedDateTime":{"type":"timestamp"}, + "AdditionalRegions":{ + "type":"list", + "member":{"shape":"RegionName"} + }, "AliasName":{ "type":"string", "max":62, @@ -1517,7 +1604,7 @@ }, "Password":{ "shape":"Password", - "documentation":"

The password for the directory administrator. The directory creation process creates a directory administrator account with the user name Administrator and this password.

If you need to change the password for the administrator account, you can use the ResetUserPassword API call.

" + "documentation":"

The password for the directory administrator. The directory creation process creates a directory administrator account with the user name Administrator and this password.

If you need to change the password for the administrator account, you can use the ResetUserPassword API call.

The regex pattern for this string is made up of the following conditions:

  • Length (?=^.{8,64}$) – Must be between 8 and 64 characters

AND any 3 of the following password complexity rules required by Active Directory:

  • Numbers and upper case and lowercase (?=.*\\d)(?=.*[A-Z])(?=.*[a-z])

  • Numbers and special characters and lower case (?=.*\\d)(?=.*[^A-Za-z0-9\\s])(?=.*[a-z])

  • Special characters and upper case and lower case (?=.*[^A-Za-z0-9\\s])(?=.*[A-Z])(?=.*[a-z])

  • Numbers and upper case and special characters (?=.*\\d)(?=.*[A-Z])(?=.*[^A-Za-z0-9\\s])

For additional information about how Active Directory passwords are enforced, see Password must meet complexity requirements on the Microsoft website.

" }, "Description":{ "shape":"Description", @@ -2036,6 +2123,37 @@ } } }, + "DescribeRegionsRequest":{ + "type":"structure", + "required":["DirectoryId"], + "members":{ + "DirectoryId":{ + "shape":"DirectoryId", + "documentation":"

The identifier of the directory.

" + }, + "RegionName":{ + "shape":"RegionName", + "documentation":"

The name of the Region. For example, us-east-1.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The DescribeRegionsResult.NextToken value from a previous call to DescribeRegions. Pass null if this is the first call.

" + } + } + }, + "DescribeRegionsResult":{ + "type":"structure", + "members":{ + "RegionsDescription":{ + "shape":"RegionsDescription", + "documentation":"

List of regional information related to the directory per replicated Region.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If not null, more results are available. Pass this value for the NextToken parameter in a subsequent call to DescribeRegions to retrieve the next set of items.

" + } + } + }, "DescribeSharedDirectoriesRequest":{ "type":"structure", "required":["OwnerDirectoryId"], @@ -2153,6 +2271,15 @@ "type":"integer", "min":2 }, + "DirectoryAlreadyInRegionException":{ + "type":"structure", + "members":{ + "Message":{"shape":"ExceptionMessage"}, + "RequestId":{"shape":"RequestId"} + }, + "documentation":"

The Region you specified is the same Region where the AWS Managed Microsoft AD directory was created. Specify a different Region and try again.

", + "exception":true + }, "DirectoryAlreadySharedException":{ "type":"structure", "members":{ @@ -2318,6 +2445,10 @@ "OwnerDirectoryDescription":{ "shape":"OwnerDirectoryDescription", "documentation":"

Describes the AWS Managed Microsoft AD directory in the directory owner account.

" + }, + "RegionsInfo":{ + "shape":"RegionsInfo", + "documentation":"

Lists the Regions where the directory has replicated.

" } }, "documentation":"

Contains information about an AWS Directory Service directory.

" @@ -2418,7 +2549,7 @@ }, "DirectoryShortName":{ "type":"string", - "pattern":"^[^\\\\/:*?\\\"\\<\\>|.]+[^\\\\/:*?\\\"<>|]*$" + "pattern":"^[^\\\\/:*?\"<>|.]+[^\\\\/:*?\"<>|]*$" }, "DirectorySize":{ "type":"string", @@ -3282,7 +3413,7 @@ "members":{ "RadiusServers":{ "shape":"Servers", - "documentation":"

An array of strings that contains the IP addresses of the RADIUS server endpoints, or the IP addresses of your RADIUS server load balancer.

" + "documentation":"

An array of strings that contains the fully qualified domain name (FQDN) or IP addresses of the RADIUS server endpoints, or the FQDN or IP addresses of your RADIUS server load balancer.

" }, "RadiusPort":{ "shape":"PortNumber", @@ -3334,6 +3465,84 @@ "max":20, "min":1 }, + "RegionDescription":{ + "type":"structure", + "members":{ + "DirectoryId":{ + "shape":"DirectoryId", + "documentation":"

The identifier of the directory.

" + }, + "RegionName":{ + "shape":"RegionName", + "documentation":"

The name of the Region. For example, us-east-1.

" + }, + "RegionType":{ + "shape":"RegionType", + "documentation":"

Specifies if the Region is the primary Region or an additional Region.

" + }, + "Status":{ + "shape":"DirectoryStage", + "documentation":"

The status of the replication process for the specified Region.

" + }, + "VpcSettings":{"shape":"DirectoryVpcSettings"}, + "DesiredNumberOfDomainControllers":{ + "shape":"DesiredNumberOfDomainControllers", + "documentation":"

The desired number of domain controllers in the specified Region for the specified directory.

" + }, + "LaunchTime":{ + "shape":"LaunchTime", + "documentation":"

Specifies when the Region replication began.

" + }, + "StatusLastUpdatedDateTime":{ + "shape":"StateLastUpdatedDateTime", + "documentation":"

The date and time that the Region status was last updated.

" + }, + "LastUpdatedDateTime":{ + "shape":"LastUpdatedDateTime", + "documentation":"

The date and time that the Region description was last updated.

" + } + }, + "documentation":"

The replicated regional information for a directory.

" + }, + "RegionLimitExceededException":{ + "type":"structure", + "members":{ + "Message":{"shape":"ExceptionMessage"}, + "RequestId":{"shape":"RequestId"} + }, + "documentation":"

You have reached the limit for maximum number of simultaneous region replications per directory.

", + "exception":true + }, + "RegionName":{ + "type":"string", + "max":32, + "min":8 + }, + "RegionType":{ + "type":"string", + "enum":[ + "Primary", + "Additional" + ] + }, + "RegionsDescription":{ + "type":"list", + "member":{"shape":"RegionDescription"} + }, + "RegionsInfo":{ + "type":"structure", + "members":{ + "PrimaryRegion":{ + "shape":"RegionName", + "documentation":"

The Region from where the AWS Managed Microsoft AD directory was originally created.

" + }, + "AdditionalRegions":{ + "shape":"AdditionalRegions", + "documentation":"

Lists the Regions where the directory has been replicated, excluding the primary Region.

" + } + }, + "documentation":"

Provides information about the Regions that are configured for multi-Region replication.

" + }, "RegisterCertificateRequest":{ "type":"structure", "required":[ @@ -3433,6 +3642,21 @@ "members":{ } }, + "RemoveRegionRequest":{ + "type":"structure", + "required":["DirectoryId"], + "members":{ + "DirectoryId":{ + "shape":"DirectoryId", + "documentation":"

The identifier of the directory for which you want to remove Region replication.

" + } + } + }, + "RemoveRegionResult":{ + "type":"structure", + "members":{ + } + }, "RemoveTagsFromResourceRequest":{ "type":"structure", "required":[ From 890129823bc01c03f617e738432a50dbfe24784d Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 19 Nov 2020 19:17:33 +0000 Subject: [PATCH 226/339] Amazon Kinesis Analytics Update: Amazon Kinesis Data Analytics now supports building and running streaming applications using Apache Flink 1.11 and provides a way to access the Apache Flink dashboard for supported Flink versions. --- ...eature-AmazonKinesisAnalytics-3965481.json | 6 ++ .../codegen-resources/service-2.json | 66 ++++++++++++++++++- 2 files changed, 69 insertions(+), 3 deletions(-) create mode 100644 .changes/next-release/feature-AmazonKinesisAnalytics-3965481.json diff --git a/.changes/next-release/feature-AmazonKinesisAnalytics-3965481.json b/.changes/next-release/feature-AmazonKinesisAnalytics-3965481.json new file mode 100644 index 000000000000..30eaa256eed4 --- /dev/null +++ b/.changes/next-release/feature-AmazonKinesisAnalytics-3965481.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Kinesis Analytics", + "contributor": "", + "description": "Amazon Kinesis Data Analytics now supports building and running streaming applications using Apache Flink 1.11 and provides a way to access the Apache Flink dashboard for supported Flink versions." +} diff --git a/services/kinesisanalyticsv2/src/main/resources/codegen-resources/service-2.json b/services/kinesisanalyticsv2/src/main/resources/codegen-resources/service-2.json index 1b6478ffaa4d..b8e3cdcbf284 100644 --- a/services/kinesisanalyticsv2/src/main/resources/codegen-resources/service-2.json +++ b/services/kinesisanalyticsv2/src/main/resources/codegen-resources/service-2.json @@ -137,6 +137,21 @@ ], "documentation":"

Creates a Kinesis Data Analytics application. For information about creating a Kinesis Data Analytics application, see Creating an Application.

" }, + "CreateApplicationPresignedUrl":{ + "name":"CreateApplicationPresignedUrl", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateApplicationPresignedUrlRequest"}, + "output":{"shape":"CreateApplicationPresignedUrlResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ResourceInUseException"}, + {"shape":"InvalidArgumentException"} + ], + "documentation":"

Creates and returns a URL that you can use to connect to an application's extension. Currently, the only available extension is the Apache Flink dashboard.

The IAM role or user used to call this API defines the permissions to access the extension. Once the presigned URL is created, no additional permission is required to access this URL. IAM authorization policies for this API are also enforced for every HTTP request that attempts to connect to the extension.

The URL that you get from a call to CreateApplicationPresignedUrl must be used within 3 minutes to be valid. If you first try to use the URL after the 3-minute limit expires, the service returns an HTTP 403 Forbidden error.

" + }, "CreateApplicationSnapshot":{ "name":"CreateApplicationSnapshot", "http":{ @@ -399,7 +414,7 @@ {"shape":"InvalidApplicationConfigurationException"}, {"shape":"ConcurrentModificationException"} ], - "documentation":"

Stops the application from processing data. You can stop an application only if it is in the running state. You can use the DescribeApplication operation to find the application state.

" + "documentation":"

Stops the application from processing data. You can stop an application only if it is in the running status, unless you set the Force parameter to true.

You can use the DescribeApplication operation to find the application status.

Kinesis Data Analytics takes a snapshot when the application is stopped, unless Force is set to true.

" }, "TagResource":{ "name":"TagResource", @@ -1017,6 +1032,11 @@ "max":999999999, "min":1 }, + "AuthorizedUrl":{ + "type":"string", + "max":2048, + "min":1 + }, "BooleanObject":{"type":"boolean"}, "BucketARN":{ "type":"string", @@ -1268,6 +1288,36 @@ "CUSTOM" ] }, + "CreateApplicationPresignedUrlRequest":{ + "type":"structure", + "required":[ + "ApplicationName", + "UrlType" + ], + "members":{ + "ApplicationName":{ + "shape":"ApplicationName", + "documentation":"

The name of the application.

" + }, + "UrlType":{ + "shape":"UrlType", + "documentation":"

The type of the extension for which to create and return a URL. Currently, the only valid extension URL type is FLINK_DASHBOARD_URL.

" + }, + "SessionExpirationDurationInSeconds":{ + "shape":"SessionExpirationDurationInSeconds", + "documentation":"

The duration in seconds for which the returned URL will be valid.

" + } + } + }, + "CreateApplicationPresignedUrlResponse":{ + "type":"structure", + "members":{ + "AuthorizedUrl":{ + "shape":"AuthorizedUrl", + "documentation":"

The URL of the extension.

" + } + } + }, "CreateApplicationRequest":{ "type":"structure", "required":[ @@ -2982,7 +3032,8 @@ "enum":[ "SQL-1_0", "FLINK-1_6", - "FLINK-1_8" + "FLINK-1_8", + "FLINK-1_11" ] }, "S3ApplicationCodeLocationDescription":{ @@ -3131,6 +3182,11 @@ "exception":true, "fault":true }, + "SessionExpirationDurationInSeconds":{ + "type":"long", + "max":43200, + "min":1800 + }, "SnapshotDetails":{ "type":"structure", "required":[ @@ -3307,7 +3363,7 @@ }, "Force":{ "shape":"BooleanObject", - "documentation":"

Set to true to force the application to stop. If you set Force to true, Kinesis Data Analytics stops the application without taking a snapshot.

You can only force stop a Flink-based Kinesis Data Analytics application. You can't force stop a SQL-based Kinesis Data Analytics application.

The application must be in the STARTING, UPDATING, STOPPING, AUTOSCALING, or RUNNING state.

" + "documentation":"

Set to true to force the application to stop. If you set Force to true, Kinesis Data Analytics stops the application without taking a snapshot.

Force-stopping your application may lead to data loss or duplication. To prevent data loss or duplicate processing of data during application restarts, we recommend you to take frequent snapshots of your application.

You can only force stop a Flink-based Kinesis Data Analytics application. You can't force stop a SQL-based Kinesis Data Analytics application.

The application must be in the STARTING, UPDATING, STOPPING, AUTOSCALING, or RUNNING status.

" } } }, @@ -3485,6 +3541,10 @@ } } }, + "UrlType":{ + "type":"string", + "enum":["FLINK_DASHBOARD_URL"] + }, "VpcConfiguration":{ "type":"structure", "required":[ From 78ef1c6696f03140b6c53031e3373e6554d13a8e Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 19 Nov 2020 19:17:32 +0000 Subject: [PATCH 227/339] Amazon Lex Runtime Service Update: Amazon Lex now supports the ability to view and manage active contexts associated with a user session. --- ...ature-AmazonLexRuntimeService-4dcd6ec.json | 6 + .../codegen-resources/service-2.json | 121 +++++++++++++++++- 2 files changed, 123 insertions(+), 4 deletions(-) create mode 100644 .changes/next-release/feature-AmazonLexRuntimeService-4dcd6ec.json diff --git a/.changes/next-release/feature-AmazonLexRuntimeService-4dcd6ec.json b/.changes/next-release/feature-AmazonLexRuntimeService-4dcd6ec.json new file mode 100644 index 000000000000..e5a8adf63575 --- /dev/null +++ b/.changes/next-release/feature-AmazonLexRuntimeService-4dcd6ec.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Lex Runtime Service", + "contributor": "", + "description": "Amazon Lex now supports the ability to view and manage active contexts associated with a user session." +} diff --git a/services/lexruntime/src/main/resources/codegen-resources/service-2.json b/services/lexruntime/src/main/resources/codegen-resources/service-2.json index b4d3e5c5b1b9..f3df91d83d92 100644 --- a/services/lexruntime/src/main/resources/codegen-resources/service-2.json +++ b/services/lexruntime/src/main/resources/codegen-resources/service-2.json @@ -112,6 +112,77 @@ }, "shapes":{ "Accept":{"type":"string"}, + "ActiveContext":{ + "type":"structure", + "required":[ + "name", + "timeToLive", + "parameters" + ], + "members":{ + "name":{ + "shape":"ActiveContextName", + "documentation":"

The name of the context.

" + }, + "timeToLive":{ + "shape":"ActiveContextTimeToLive", + "documentation":"

The length of time or number of turns that a context remains active.

" + }, + "parameters":{ + "shape":"ActiveContextParametersMap", + "documentation":"

State variables for the current context. You can use these values as default values for slots in subsequent events.

" + } + }, + "documentation":"

A context is a variable that contains information about the current state of the conversation between a user and Amazon Lex. Context can be set automatically by Amazon Lex when an intent is fulfilled, or it can be set at runtime using the PutContent, PutText, or PutSession operation.

" + }, + "ActiveContextName":{ + "type":"string", + "max":100, + "min":1, + "pattern":"^([A-Za-z]_?)+$" + }, + "ActiveContextParametersMap":{ + "type":"map", + "key":{"shape":"ParameterName"}, + "value":{"shape":"Text"}, + "max":10, + "min":0 + }, + "ActiveContextTimeToLive":{ + "type":"structure", + "members":{ + "timeToLiveInSeconds":{ + "shape":"ActiveContextTimeToLiveInSeconds", + "documentation":"

The number of seconds that the context should be active after it is first sent in a PostContent or PostText response. You can set the value between 5 and 86,400 seconds (24 hours).

" + }, + "turnsToLive":{ + "shape":"ActiveContextTurnsToLive", + "documentation":"

The number of conversation turns that the context should be active. A conversation turn is one PostContent or PostText request and the corresponding response from Amazon Lex.

" + } + }, + "documentation":"

The length of time or number of turns that a context remains active.

" + }, + "ActiveContextTimeToLiveInSeconds":{ + "type":"integer", + "max":86400, + "min":5 + }, + "ActiveContextTurnsToLive":{ + "type":"integer", + "max":20, + "min":1 + }, + "ActiveContextsList":{ + "type":"list", + "member":{"shape":"ActiveContext"}, + "max":20, + "min":0, + "sensitive":true + }, + "ActiveContextsString":{ + "type":"string", + "sensitive":true + }, "AttributesString":{ "type":"string", "sensitive":true @@ -397,6 +468,10 @@ "dialogAction":{ "shape":"DialogAction", "documentation":"

Describes the current state of the bot.

" + }, + "activeContexts":{ + "shape":"ActiveContextsList", + "documentation":"

A list of active contexts for the session. A context can be set when an intent is fulfilled or by calling the PostContent, PostText, or PutSession operation.

You can use a context to control the intents that can follow up an intent, or to modify the operation of your application.

" } } }, @@ -524,6 +599,11 @@ "error":{"httpStatusCode":404}, "exception":true }, + "ParameterName":{ + "type":"string", + "max":100, + "min":1 + }, "PostContentRequest":{ "type":"structure", "required":[ @@ -581,6 +661,13 @@ "inputStream":{ "shape":"BlobStream", "documentation":"

User input in PCM or Opus audio format or text format as described in the Content-Type HTTP header.

You can stream audio data to Amazon Lex or you can create a local buffer that captures all of the audio data before sending. In general, you get better performance if you stream audio data rather than buffering the data locally.

" + }, + "activeContexts":{ + "shape":"ActiveContextsString", + "documentation":"

A list of contexts active for the request. A context can be activated when a previous intent is fulfilled, or by including the context in the request,

If you don't specify a list of contexts, Amazon Lex will use the current list of contexts for the session. If you specify an empty list, all contexts for the session are cleared.

", + "jsonvalue":true, + "location":"header", + "locationName":"x-amz-lex-active-contexts" } }, "payload":"inputStream" @@ -602,7 +689,7 @@ }, "nluIntentConfidence":{ "shape":"String", - "documentation":"

Provides a score that indicates how confident Amazon Lex is that the returned intent is the one that matches the user's intent. The score is between 0.0 and 1.0.

The score is a relative score, not an absolute score. The score may change based on improvements to the Amazon Lex NLU.

", + "documentation":"

Provides a score that indicates how confident Amazon Lex is that the returned intent is the one that matches the user's intent. The score is between 0.0 and 1.0.

The score is a relative score, not an absolute score. The score may change based on improvements to Amazon Lex.

", "jsonvalue":true, "location":"header", "locationName":"x-amz-lex-nlu-intent-confidence" @@ -670,7 +757,7 @@ }, "botVersion":{ "shape":"BotVersion", - "documentation":"

The version of the bot that responded to the conversation. You can use this information to help determine if one version of a bot is performing better than another version.

If you have enabled the new natural language understanding (NLU) model, you can use this to determine if the improvement is due to changes to the bot or changes to the NLU.

For more information about enabling the new NLU, see the enableModelImprovements parameter of the PutBot operation.

", + "documentation":"

The version of the bot that responded to the conversation. You can use this information to help determine if one version of a bot is performing better than another version.

", "location":"header", "locationName":"x-amz-lex-bot-version" }, @@ -679,6 +766,13 @@ "documentation":"

The unique identifier for the session.

", "location":"header", "locationName":"x-amz-lex-session-id" + }, + "activeContexts":{ + "shape":"ActiveContextsString", + "documentation":"

A list of active contexts for the session. A context can be set when an intent is fulfilled or by calling the PostContent, PostText, or PutSession operation.

You can use a context to control the intents that can follow up an intent, or to modify the operation of your application.

", + "jsonvalue":true, + "location":"header", + "locationName":"x-amz-lex-active-contexts" } }, "payload":"audioStream" @@ -721,6 +815,10 @@ "inputText":{ "shape":"Text", "documentation":"

The text that the user entered (Amazon Lex interprets this text).

" + }, + "activeContexts":{ + "shape":"ActiveContextsList", + "documentation":"

A list of contexts active for the request. A context can be activated when a previous intent is fulfilled, or by including the context in the request,

If you don't specify a list of contexts, Amazon Lex will use the current list of contexts for the session. If you specify an empty list, all contexts for the session are cleared.

" } } }, @@ -733,7 +831,7 @@ }, "nluIntentConfidence":{ "shape":"IntentConfidence", - "documentation":"

Provides a score that indicates how confident Amazon Lex is that the returned intent is the one that matches the user's intent. The score is between 0.0 and 1.0. For more information, see Confidence Scores.

The score is a relative score, not an absolute score. The score may change based on improvements to the Amazon Lex natural language understanding (NLU) model.

" + "documentation":"

Provides a score that indicates how confident Amazon Lex is that the returned intent is the one that matches the user's intent. The score is between 0.0 and 1.0. For more information, see Confidence Scores.

The score is a relative score, not an absolute score. The score may change based on improvements to Amazon Lex.

" }, "alternativeIntents":{ "shape":"IntentList", @@ -777,7 +875,11 @@ }, "botVersion":{ "shape":"BotVersion", - "documentation":"

The version of the bot that responded to the conversation. You can use this information to help determine if one version of a bot is performing better than another version.

If you have enabled the new natural language understanding (NLU) model, you can use this to determine if the improvement is due to changes to the bot or changes to the NLU.

For more information about enabling the new NLU, see the enableModelImprovements parameter of the PutBot operation.

" + "documentation":"

The version of the bot that responded to the conversation. You can use this information to help determine if one version of a bot is performing better than another version.

" + }, + "activeContexts":{ + "shape":"ActiveContextsList", + "documentation":"

A list of active contexts for the session. A context can be set when an intent is fulfilled or by calling the PostContent, PostText, or PutSession operation.

You can use a context to control the intents that can follow up an intent, or to modify the operation of your application.

" } } }, @@ -842,6 +944,10 @@ "documentation":"

The message that Amazon Lex returns in the response can be either text or speech based depending on the value of this field.

  • If the value is text/plain; charset=utf-8, Amazon Lex returns text in the response.

  • If the value begins with audio/, Amazon Lex returns speech in the response. Amazon Lex uses Amazon Polly to generate the speech in the configuration that you specify. For example, if you specify audio/mpeg as the value, Amazon Lex returns speech in the MPEG format.

  • If the value is audio/pcm, the speech is returned as audio/pcm in 16-bit, little endian format.

  • The following are the accepted values:

    • audio/mpeg

    • audio/ogg

    • audio/pcm

    • audio/* (defaults to mpeg)

    • text/plain; charset=utf-8

", "location":"header", "locationName":"Accept" + }, + "activeContexts":{ + "shape":"ActiveContextsList", + "documentation":"

A list of contexts active for the request. A context can be activated when a previous intent is fulfilled, or by including the context in the request,

If you don't specify a list of contexts, Amazon Lex will use the current list of contexts for the session. If you specify an empty list, all contexts for the session are cleared.

" } } }, @@ -907,6 +1013,13 @@ "documentation":"

A unique identifier for the session.

", "location":"header", "locationName":"x-amz-lex-session-id" + }, + "activeContexts":{ + "shape":"ActiveContextsString", + "documentation":"

A list of active contexts for the session.

", + "jsonvalue":true, + "location":"header", + "locationName":"x-amz-lex-active-contexts" } }, "payload":"audioStream" From fb14fa1ef18b83cf645881b6b185a41d2429640b Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 19 Nov 2020 19:17:54 +0000 Subject: [PATCH 228/339] AWS Cost Explorer Service Update: Additional metadata that may be applicable to the recommendation. --- ...eature-AWSCostExplorerService-112ec8f.json | 6 +++++ .../codegen-resources/service-2.json | 24 +++++++++++-------- 2 files changed, 20 insertions(+), 10 deletions(-) create mode 100644 .changes/next-release/feature-AWSCostExplorerService-112ec8f.json diff --git a/.changes/next-release/feature-AWSCostExplorerService-112ec8f.json b/.changes/next-release/feature-AWSCostExplorerService-112ec8f.json new file mode 100644 index 000000000000..56ba4197aafe --- /dev/null +++ b/.changes/next-release/feature-AWSCostExplorerService-112ec8f.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Cost Explorer Service", + "contributor": "", + "description": "Additional metadata that may be applicable to the recommendation." +} diff --git a/services/costexplorer/src/main/resources/codegen-resources/service-2.json b/services/costexplorer/src/main/resources/codegen-resources/service-2.json index 5281f2a53b9c..b4f10c9a1ee3 100644 --- a/services/costexplorer/src/main/resources/codegen-resources/service-2.json +++ b/services/costexplorer/src/main/resources/codegen-resources/service-2.json @@ -170,7 +170,7 @@ {"shape":"InvalidNextTokenException"}, {"shape":"RequestChangedException"} ], - "documentation":"

Retrieves cost and usage metrics for your account. You can specify which cost and usage-related metric, such as BlendedCosts or UsageQuantity, that you want the request to return. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Master account in an organization in AWS Organizations have access to all member accounts.

" + "documentation":"

Retrieves cost and usage metrics for your account. You can specify which cost and usage-related metric, such as BlendedCosts or UsageQuantity, that you want the request to return. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Management account in an organization in AWS Organizations have access to all member accounts.

For information about filter limitations, see Quotas and restrictions in the Billing and Cost Management User Guide.

" }, "GetCostAndUsageWithResources":{ "name":"GetCostAndUsageWithResources", @@ -187,7 +187,7 @@ {"shape":"InvalidNextTokenException"}, {"shape":"RequestChangedException"} ], - "documentation":"

Retrieves cost and usage metrics with resources for your account. You can specify which cost and usage-related metric, such as BlendedCosts or UsageQuantity, that you want the request to return. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Master account in an organization in AWS Organizations have access to all member accounts. This API is currently available for the Amazon Elastic Compute Cloud – Compute service only.

This is an opt-in only feature. You can enable this feature from the Cost Explorer Settings page. For information on how to access the Settings page, see Controlling Access for Cost Explorer in the AWS Billing and Cost Management User Guide.

" + "documentation":"

Retrieves cost and usage metrics with resources for your account. You can specify which cost and usage-related metric, such as BlendedCosts or UsageQuantity, that you want the request to return. You can also filter and group your data by various dimensions, such as SERVICE or AZ, in a specific time range. For a complete list of valid dimensions, see the GetDimensionValues operation. Management account in an organization in AWS Organizations have access to all member accounts. This API is currently available for the Amazon Elastic Compute Cloud – Compute service only.

This is an opt-in only feature. You can enable this feature from the Cost Explorer Settings page. For information on how to access the Settings page, see Controlling Access for Cost Explorer in the AWS Billing and Cost Management User Guide.

" }, "GetCostForecast":{ "name":"GetCostForecast", @@ -233,7 +233,7 @@ {"shape":"DataUnavailableException"}, {"shape":"InvalidNextTokenException"} ], - "documentation":"

Retrieves the reservation coverage for your account. This enables you to see how much of your Amazon Elastic Compute Cloud, Amazon ElastiCache, Amazon Relational Database Service, or Amazon Redshift usage is covered by a reservation. An organization's master account can see the coverage of the associated member accounts. This supports dimensions, Cost Categories, and nested expressions. For any time period, you can filter data about reservation usage by the following dimensions:

  • AZ

  • CACHE_ENGINE

  • DATABASE_ENGINE

  • DEPLOYMENT_OPTION

  • INSTANCE_TYPE

  • LINKED_ACCOUNT

  • OPERATING_SYSTEM

  • PLATFORM

  • REGION

  • SERVICE

  • TAG

  • TENANCY

To determine valid values for a dimension, use the GetDimensionValues operation.

" + "documentation":"

Retrieves the reservation coverage for your account. This enables you to see how much of your Amazon Elastic Compute Cloud, Amazon ElastiCache, Amazon Relational Database Service, or Amazon Redshift usage is covered by a reservation. An organization's management account can see the coverage of the associated member accounts. This supports dimensions, Cost Categories, and nested expressions. For any time period, you can filter data about reservation usage by the following dimensions:

  • AZ

  • CACHE_ENGINE

  • DATABASE_ENGINE

  • DEPLOYMENT_OPTION

  • INSTANCE_TYPE

  • LINKED_ACCOUNT

  • OPERATING_SYSTEM

  • PLATFORM

  • REGION

  • SERVICE

  • TAG

  • TENANCY

To determine valid values for a dimension, use the GetDimensionValues operation.

" }, "GetReservationPurchaseRecommendation":{ "name":"GetReservationPurchaseRecommendation", @@ -263,7 +263,7 @@ {"shape":"DataUnavailableException"}, {"shape":"InvalidNextTokenException"} ], - "documentation":"

Retrieves the reservation utilization for your account. Master account in an organization have access to member accounts. You can filter data by dimensions in a time period. You can use GetDimensionValues to determine the possible dimension values. Currently, you can group only by SUBSCRIPTION_ID.

" + "documentation":"

Retrieves the reservation utilization for your account. Management account in an organization have access to member accounts. You can filter data by dimensions in a time period. You can use GetDimensionValues to determine the possible dimension values. Currently, you can group only by SUBSCRIPTION_ID.

" }, "GetRightsizingRecommendation":{ "name":"GetRightsizingRecommendation", @@ -292,7 +292,7 @@ {"shape":"DataUnavailableException"}, {"shape":"InvalidNextTokenException"} ], - "documentation":"

Retrieves the Savings Plans covered for your account. This enables you to see how much of your cost is covered by a Savings Plan. An organization’s master account can see the coverage of the associated member accounts. This supports dimensions, Cost Categories, and nested expressions. For any time period, you can filter data for Savings Plans usage with the following dimensions:

  • LINKED_ACCOUNT

  • REGION

  • SERVICE

  • INSTANCE_FAMILY

To determine valid values for a dimension, use the GetDimensionValues operation.

" + "documentation":"

Retrieves the Savings Plans covered for your account. This enables you to see how much of your cost is covered by a Savings Plan. An organization’s management account can see the coverage of the associated member accounts. This supports dimensions, Cost Categories, and nested expressions. For any time period, you can filter data for Savings Plans usage with the following dimensions:

  • LINKED_ACCOUNT

  • REGION

  • SERVICE

  • INSTANCE_FAMILY

To determine valid values for a dimension, use the GetDimensionValues operation.

" }, "GetSavingsPlansPurchaseRecommendation":{ "name":"GetSavingsPlansPurchaseRecommendation", @@ -320,7 +320,7 @@ {"shape":"LimitExceededException"}, {"shape":"DataUnavailableException"} ], - "documentation":"

Retrieves the Savings Plans utilization for your account across date ranges with daily or monthly granularity. Master account in an organization have access to member accounts. You can use GetDimensionValues in SAVINGS_PLANS to determine the possible dimension values.

You cannot group by any dimension values for GetSavingsPlansUtilization.

" + "documentation":"

Retrieves the Savings Plans utilization for your account across date ranges with daily or monthly granularity. Management account in an organization have access to member accounts. You can use GetDimensionValues in SAVINGS_PLANS to determine the possible dimension values.

You cannot group by any dimension values for GetSavingsPlansUtilization.

" }, "GetSavingsPlansUtilizationDetails":{ "name":"GetSavingsPlansUtilizationDetails", @@ -1851,7 +1851,7 @@ }, "AccountScope":{ "shape":"AccountScope", - "documentation":"

The account scope that you want your recommendations for. Amazon Web Services calculates recommendations including the master account and member accounts if the value is set to PAYER. If the value is LINKED, recommendations are calculated for individual member accounts only.

" + "documentation":"

The account scope that you want your recommendations for. Amazon Web Services calculates recommendations including the management account and member accounts if the value is set to PAYER. If the value is LINKED, recommendations are calculated for individual member accounts only.

" }, "LookbackPeriodInDays":{ "shape":"LookbackPeriodInDays", @@ -2060,7 +2060,7 @@ }, "AccountScope":{ "shape":"AccountScope", - "documentation":"

The account scope that you want your recommendations for. Amazon Web Services calculates recommendations including the master account and member accounts if the value is set to PAYER. If the value is LINKED, recommendations are calculated for individual member accounts only.

" + "documentation":"

The account scope that you want your recommendations for. Amazon Web Services calculates recommendations including the management account and member accounts if the value is set to PAYER. If the value is LINKED, recommendations are calculated for individual member accounts only.

" }, "NextPageToken":{ "shape":"NextPageToken", @@ -3197,7 +3197,7 @@ "members":{ "AccountScope":{ "shape":"AccountScope", - "documentation":"

The account scope that you want your recommendations for. Amazon Web Services calculates recommendations including the master account and member accounts if the value is set to PAYER. If the value is LINKED, recommendations are calculated for individual member accounts only.

" + "documentation":"

The account scope that you want your recommendations for. Amazon Web Services calculates recommendations including the management account and member accounts if the value is set to PAYER. If the value is LINKED, recommendations are calculated for individual member accounts only.

" }, "SavingsPlansType":{ "shape":"SupportedSavingsPlansType", @@ -3310,6 +3310,10 @@ "GenerationTimestamp":{ "shape":"GenericString", "documentation":"

The timestamp showing when the recommendations were generated.

" + }, + "AdditionalMetadata":{ + "shape":"GenericString", + "documentation":"

Additional metadata that may be applicable to the recommendation.

" } }, "documentation":"

Metadata about your Savings Plans Purchase Recommendations.

" @@ -3466,7 +3470,7 @@ "documentation":"

The total amortized commitment for a Savings Plans. Includes the sum of the upfront and recurring Savings Plans fees.

" } }, - "documentation":"

A single daily or monthly Savings Plans utilization rate, and details for your account. A master account in an organization have access to member accounts. You can use GetDimensionValues to determine the possible dimension values.

" + "documentation":"

A single daily or monthly Savings Plans utilization rate, and details for your account. A management account in an organization have access to member accounts. You can use GetDimensionValues to determine the possible dimension values.

" }, "SavingsPlansUtilizationDetails":{ "type":"list", From 4b2022af490a80d6e771607d2ffc0ba5d47d6c4d Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 19 Nov 2020 19:17:54 +0000 Subject: [PATCH 229/339] Amazon Redshift Update: Amazon Redshift support for returning ClusterNamespaceArn in describeClusters --- .../feature-AmazonRedshift-67b0ded.json | 6 +++ .../codegen-resources/paginators-1.json | 42 +++++++++++++++++++ .../codegen-resources/service-2.json | 4 ++ 3 files changed, 52 insertions(+) create mode 100644 .changes/next-release/feature-AmazonRedshift-67b0ded.json diff --git a/.changes/next-release/feature-AmazonRedshift-67b0ded.json b/.changes/next-release/feature-AmazonRedshift-67b0ded.json new file mode 100644 index 000000000000..10475c476143 --- /dev/null +++ b/.changes/next-release/feature-AmazonRedshift-67b0ded.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Redshift", + "contributor": "", + "description": "Amazon Redshift support for returning ClusterNamespaceArn in describeClusters" +} diff --git a/services/redshift/src/main/resources/codegen-resources/paginators-1.json b/services/redshift/src/main/resources/codegen-resources/paginators-1.json index b72738fbece6..5257747c4837 100644 --- a/services/redshift/src/main/resources/codegen-resources/paginators-1.json +++ b/services/redshift/src/main/resources/codegen-resources/paginators-1.json @@ -1,5 +1,11 @@ { "pagination": { + "DescribeClusterDbRevisions": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "ClusterDbRevisions" + }, "DescribeClusterParameterGroups": { "input_token": "Marker", "limit_key": "MaxRecords", @@ -30,6 +36,12 @@ "output_token": "Marker", "result_key": "ClusterSubnetGroups" }, + "DescribeClusterTracks": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "MaintenanceTracks" + }, "DescribeClusterVersions": { "input_token": "Marker", "limit_key": "MaxRecords", @@ -102,11 +114,41 @@ "output_token": "Marker", "result_key": "ScheduledActions" }, + "DescribeSnapshotCopyGrants": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "SnapshotCopyGrants" + }, + "DescribeSnapshotSchedules": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "SnapshotSchedules" + }, + "DescribeTableRestoreStatus": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "TableRestoreStatusDetails" + }, + "DescribeTags": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "TaggedResources" + }, "DescribeUsageLimits": { "input_token": "Marker", "limit_key": "MaxRecords", "output_token": "Marker", "result_key": "UsageLimits" + }, + "GetReservedNodeExchangeOfferings": { + "input_token": "Marker", + "limit_key": "MaxRecords", + "output_token": "Marker", + "result_key": "ReservedNodeOfferings" } } } \ No newline at end of file diff --git a/services/redshift/src/main/resources/codegen-resources/service-2.json b/services/redshift/src/main/resources/codegen-resources/service-2.json index 85461d29a638..12136ef0de2a 100644 --- a/services/redshift/src/main/resources/codegen-resources/service-2.json +++ b/services/redshift/src/main/resources/codegen-resources/service-2.json @@ -2220,6 +2220,10 @@ "ResizeInfo":{ "shape":"ResizeInfo", "documentation":"

Returns the following:

  • AllowCancelResize: a boolean value indicating if the resize operation can be cancelled.

  • ResizeType: Returns ClassicResize

" + }, + "ClusterNamespaceArn":{ + "shape":"String", + "documentation":"

The namespace Amazon Resource Name (ARN) of the cluster.

" } }, "documentation":"

Describes a cluster.

", From c806e6b4e16b971424eb7107c6abc7ea7fbc4995 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 19 Nov 2020 19:17:37 +0000 Subject: [PATCH 230/339] Amazon EventBridge Update: EventBridge now supports Resource-based policy authorization on event buses. This enables cross-account PutEvents API calls, creating cross-account rules, and simplifies permission management. --- .../feature-AmazonEventBridge-ad014aa.json | 6 ++ .../codegen-resources/service-2.json | 99 ++++++++++++------- 2 files changed, 68 insertions(+), 37 deletions(-) create mode 100644 .changes/next-release/feature-AmazonEventBridge-ad014aa.json diff --git a/.changes/next-release/feature-AmazonEventBridge-ad014aa.json b/.changes/next-release/feature-AmazonEventBridge-ad014aa.json new file mode 100644 index 000000000000..d9cd618b28e7 --- /dev/null +++ b/.changes/next-release/feature-AmazonEventBridge-ad014aa.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon EventBridge", + "contributor": "", + "description": "EventBridge now supports Resource-based policy authorization on event buses. This enables cross-account PutEvents API calls, creating cross-account rules, and simplifies permission management." +} diff --git a/services/eventbridge/src/main/resources/codegen-resources/service-2.json b/services/eventbridge/src/main/resources/codegen-resources/service-2.json index 34325f33f8a5..46d473a7b034 100644 --- a/services/eventbridge/src/main/resources/codegen-resources/service-2.json +++ b/services/eventbridge/src/main/resources/codegen-resources/service-2.json @@ -60,7 +60,7 @@ {"shape":"LimitExceededException"}, {"shape":"InvalidEventPatternException"} ], - "documentation":"

Creates an archive of events with the specified settings. When you create an archive, incoming events might not immediately start being sent to the archive. Allow a short period of time for changes to take effect.

" + "documentation":"

Creates an archive of events with the specified settings. When you create an archive, incoming events might not immediately start being sent to the archive. Allow a short period of time for changes to take effect. If you do not specify a pattern to filter events sent to the archive, all events are sent to the archive except replayed events. Replayed events are not sent to an archive.

" }, "CreateEventBus":{ "name":"CreateEventBus", @@ -465,7 +465,8 @@ {"shape":"ResourceNotFoundException"}, {"shape":"PolicyLengthExceededException"}, {"shape":"InternalException"}, - {"shape":"ConcurrentModificationException"} + {"shape":"ConcurrentModificationException"}, + {"shape":"OperationDisabledException"} ], "documentation":"

Running PutPermission permits the specified AWS account or AWS organization to put events to the specified event bus. Amazon EventBridge (CloudWatch Events) rules in your account are triggered by these events arriving to an event bus in your account.

For another account to send events to your account, that external account must have an EventBridge rule with your account's event bus as a target.

To enable multiple AWS accounts to put events to your event bus, run PutPermission once for each of these accounts. Or, if all the accounts are members of the same AWS organization, you can run PutPermission once specifying Principal as \"*\" and specifying the AWS organization ID in Condition, to grant permissions to all accounts in that organization.

If you grant permissions using an organization, then accounts in that organization must specify a RoleArn with proper permissions when they use PutTarget to add your account's event bus as a target. For more information, see Sending and Receiving Events Between AWS Accounts in the Amazon EventBridge User Guide.

The permission policy on the default event bus cannot exceed 10 KB in size.

" }, @@ -514,7 +515,8 @@ "errors":[ {"shape":"ResourceNotFoundException"}, {"shape":"InternalException"}, - {"shape":"ConcurrentModificationException"} + {"shape":"ConcurrentModificationException"}, + {"shape":"OperationDisabledException"} ], "documentation":"

Revokes the permission of another AWS account to be able to put events to the specified event bus. Specify the account to revoke by the StatementId value that you associated with the account when you granted it permission with PutPermission. You can find the StatementId by using DescribeEventBus.

" }, @@ -951,6 +953,11 @@ } } }, + "CreatedBy":{ + "type":"string", + "max":128, + "min":1 + }, "Database":{ "type":"string", "max":64, @@ -1034,8 +1041,8 @@ "documentation":"

The name of the rule.

" }, "EventBusName":{ - "shape":"EventBusName", - "documentation":"

The event bus associated with the rule. If you omit this, the default event bus is used.

" + "shape":"EventBusNameOrArn", + "documentation":"

The name or ARN of the event bus associated with the rule. If you omit this, the default event bus is used.

" }, "Force":{ "shape":"Boolean", @@ -1106,8 +1113,8 @@ "type":"structure", "members":{ "Name":{ - "shape":"EventBusName", - "documentation":"

The name of the event bus to show details for. If you omit this, the default event bus is displayed.

" + "shape":"EventBusNameOrArn", + "documentation":"

The name or ARN of the event bus to show details for. If you omit this, the default event bus is displayed.

" } } }, @@ -1262,8 +1269,8 @@ "documentation":"

The name of the rule.

" }, "EventBusName":{ - "shape":"EventBusName", - "documentation":"

The event bus associated with the rule. If you omit this, the default event bus is used.

" + "shape":"EventBusNameOrArn", + "documentation":"

The name or ARN of the event bus associated with the rule. If you omit this, the default event bus is used.

" } } }, @@ -1304,7 +1311,11 @@ }, "EventBusName":{ "shape":"EventBusName", - "documentation":"

The event bus associated with the rule.

" + "documentation":"

The name of the event bus associated with the rule.

" + }, + "CreatedBy":{ + "shape":"CreatedBy", + "documentation":"

The account ID of the user that created the rule. If you use PutRule to put a rule on an event bus in another account, the other account is the owner of the rule, and the rule ARN includes the account ID for that account. However, the value for CreatedBy is the account ID as the account that created the rule in the other account.

" } } }, @@ -1317,8 +1328,8 @@ "documentation":"

The name of the rule.

" }, "EventBusName":{ - "shape":"EventBusName", - "documentation":"

The event bus associated with the rule. If you omit this, the default event bus is used.

" + "shape":"EventBusNameOrArn", + "documentation":"

The name or ARN of the event bus associated with the rule. If you omit this, the default event bus is used.

" } } }, @@ -1362,8 +1373,8 @@ "documentation":"

The name of the rule.

" }, "EventBusName":{ - "shape":"EventBusName", - "documentation":"

The event bus associated with the rule. If you omit this, the default event bus is used.

" + "shape":"EventBusNameOrArn", + "documentation":"

The name or ARN of the event bus associated with the rule. If you omit this, the default event bus is used.

" } } }, @@ -1397,6 +1408,12 @@ "min":1, "pattern":"[/\\.\\-_A-Za-z0-9]+" }, + "EventBusNameOrArn":{ + "type":"string", + "max":1600, + "min":1, + "pattern":"(arn:aws[\\w-]*:events:[a-z]{2}-[a-z]+-[\\w-]+:[0-9]{12}:event-bus\\/)?[/\\.\\-_A-Za-z0-9]+" + }, "EventId":{"type":"string"}, "EventPattern":{"type":"string"}, "EventResource":{"type":"string"}, @@ -1742,7 +1759,7 @@ "members":{ "NamePrefix":{ "shape":"ReplayName", - "documentation":"

A name prefix to filter the archives returned. Only archives with name that match the prefix are returned.

" + "documentation":"

A name prefix to filter the replays returned. Only replays with name that match the prefix are returned.

" }, "State":{ "shape":"ReplayState", @@ -1784,8 +1801,8 @@ "documentation":"

The Amazon Resource Name (ARN) of the target resource.

" }, "EventBusName":{ - "shape":"EventBusName", - "documentation":"

Limits the results to show only the rules associated with the specified event bus.

" + "shape":"EventBusNameOrArn", + "documentation":"

The name or ARN of the event bus to list rules for. If you omit this, the default event bus is used.

" }, "NextToken":{ "shape":"NextToken", @@ -1818,8 +1835,8 @@ "documentation":"

The prefix matching the rule name.

" }, "EventBusName":{ - "shape":"EventBusName", - "documentation":"

Limits the results to show only the rules associated with the specified event bus.

" + "shape":"EventBusNameOrArn", + "documentation":"

The name or ARN of the event bus to list the rules for. If you omit this, the default event bus is used.

" }, "NextToken":{ "shape":"NextToken", @@ -1872,8 +1889,8 @@ "documentation":"

The name of the rule.

" }, "EventBusName":{ - "shape":"EventBusName", - "documentation":"

The event bus associated with the rule. If you omit this, the default event bus is used.

" + "shape":"EventBusNameOrArn", + "documentation":"

The name or ARN of the event bus associated with the rule. If you omit this, the default event bus is used.

" }, "NextToken":{ "shape":"NextToken", @@ -1943,6 +1960,12 @@ "min":1, "pattern":"[\\.\\-_A-Za-z0-9]+" }, + "NonPartnerEventBusNameOrArn":{ + "type":"string", + "max":1600, + "min":1, + "pattern":"(arn:aws[\\w-]*:events:[a-z]{2}-[a-z]+-[\\w-]+:[0-9]{12}:event-bus\\/)?[\\.\\-_A-Za-z0-9]+" + }, "OperationDisabledException":{ "type":"structure", "members":{ @@ -2055,8 +2078,8 @@ "documentation":"

A valid JSON string. There is no other schema imposed. The JSON string may contain fields and nested subobjects.

" }, "EventBusName":{ - "shape":"NonPartnerEventBusName", - "documentation":"

The event bus that will receive the event. Only the rules that are associated with this event bus will be able to match the event.

" + "shape":"NonPartnerEventBusNameOrArn", + "documentation":"

The name or ARN of the event bus to receive the event. Only the rules that are associated with this event bus are used to match the event. If you omit this, the default event bus is used.

" } }, "documentation":"

Represents an event to be submitted.

" @@ -2181,15 +2204,10 @@ }, "PutPermissionRequest":{ "type":"structure", - "required":[ - "Action", - "Principal", - "StatementId" - ], "members":{ "EventBusName":{ "shape":"NonPartnerEventBusName", - "documentation":"

The event bus associated with the rule. If you omit this, the default event bus is used.

" + "documentation":"

The name of the event bus associated with the rule. If you omit this, the default event bus is used.

" }, "Action":{ "shape":"Action", @@ -2206,6 +2224,10 @@ "Condition":{ "shape":"Condition", "documentation":"

This parameter enables you to limit the permission to accounts that fulfill a certain condition, such as being a member of a certain AWS organization. For more information about AWS Organizations, see What Is AWS Organizations in the AWS Organizations User Guide.

If you specify Condition with an AWS organization ID, and specify \"*\" as the value for Principal, you grant permission to all the accounts in the named organization.

The Condition is a JSON string which must contain Type, Key, and Value fields.

" + }, + "Policy":{ + "shape":"String", + "documentation":"

A JSON string that describes the permission policy statement. You can include a Policy parameter in the request instead of using the StatementId, Action, Principal, or Condition parameters.

" } } }, @@ -2242,8 +2264,8 @@ "documentation":"

The list of key-value pairs to associate with the rule.

" }, "EventBusName":{ - "shape":"EventBusName", - "documentation":"

The event bus to associate with this rule. If you omit this, the default event bus is used.

" + "shape":"EventBusNameOrArn", + "documentation":"

The name or ARN of the event bus to associate with this rule. If you omit this, the default event bus is used.

" } } }, @@ -2268,8 +2290,8 @@ "documentation":"

The name of the rule.

" }, "EventBusName":{ - "shape":"EventBusName", - "documentation":"

The name of the event bus associated with the rule. If you omit this, the default event bus is used.

" + "shape":"EventBusNameOrArn", + "documentation":"

The name or ARN of the event bus associated with the rule. If you omit this, the default event bus is used.

" }, "Targets":{ "shape":"TargetList", @@ -2369,12 +2391,15 @@ }, "RemovePermissionRequest":{ "type":"structure", - "required":["StatementId"], "members":{ "StatementId":{ "shape":"StatementId", "documentation":"

The statement ID corresponding to the account that is no longer allowed to put events to the default event bus.

" }, + "RemoveAllPermissions":{ + "shape":"Boolean", + "documentation":"

Specifies whether to remove all permissions.

" + }, "EventBusName":{ "shape":"NonPartnerEventBusName", "documentation":"

The name of the event bus to revoke permissions for. If you omit this, the default event bus is used.

" @@ -2393,8 +2418,8 @@ "documentation":"

The name of the rule.

" }, "EventBusName":{ - "shape":"EventBusName", - "documentation":"

The name of the event bus associated with the rule.

" + "shape":"EventBusNameOrArn", + "documentation":"

The name or ARN of the event bus associated with the rule. If you omit this, the default event bus is used.

" }, "Ids":{ "shape":"TargetIdList", @@ -2618,7 +2643,7 @@ }, "EventBusName":{ "shape":"EventBusName", - "documentation":"

The event bus associated with the rule.

" + "documentation":"

The name or ARN of the event bus associated with the rule. If you omit this, the default event bus is used.

" } }, "documentation":"

Contains information about a rule in Amazon EventBridge.

" From 3510b52c3439f869faf5dd963ee7cbe60e4e3e95 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 19 Nov 2020 19:17:55 +0000 Subject: [PATCH 231/339] Amazon CloudWatch Events Update: EventBridge now supports Resource-based policy authorization on event buses. This enables cross-account PutEvents API calls, creating cross-account rules, and simplifies permission management. --- ...eature-AmazonCloudWatchEvents-1c446bb.json | 6 ++ .../codegen-resources/service-2.json | 99 ++++++++++++------- 2 files changed, 68 insertions(+), 37 deletions(-) create mode 100644 .changes/next-release/feature-AmazonCloudWatchEvents-1c446bb.json diff --git a/.changes/next-release/feature-AmazonCloudWatchEvents-1c446bb.json b/.changes/next-release/feature-AmazonCloudWatchEvents-1c446bb.json new file mode 100644 index 000000000000..644511ff5dd0 --- /dev/null +++ b/.changes/next-release/feature-AmazonCloudWatchEvents-1c446bb.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon CloudWatch Events", + "contributor": "", + "description": "EventBridge now supports Resource-based policy authorization on event buses. This enables cross-account PutEvents API calls, creating cross-account rules, and simplifies permission management." +} diff --git a/services/cloudwatchevents/src/main/resources/codegen-resources/service-2.json b/services/cloudwatchevents/src/main/resources/codegen-resources/service-2.json index 1878da50c35b..fe273a226c05 100644 --- a/services/cloudwatchevents/src/main/resources/codegen-resources/service-2.json +++ b/services/cloudwatchevents/src/main/resources/codegen-resources/service-2.json @@ -60,7 +60,7 @@ {"shape":"LimitExceededException"}, {"shape":"InvalidEventPatternException"} ], - "documentation":"

Creates an archive of events with the specified settings. When you create an archive, incoming events might not immediately start being sent to the archive. Allow a short period of time for changes to take effect.

" + "documentation":"

Creates an archive of events with the specified settings. When you create an archive, incoming events might not immediately start being sent to the archive. Allow a short period of time for changes to take effect. If you do not specify a pattern to filter events sent to the archive, all events are sent to the archive except replayed events. Replayed events are not sent to an archive.

" }, "CreateEventBus":{ "name":"CreateEventBus", @@ -465,7 +465,8 @@ {"shape":"ResourceNotFoundException"}, {"shape":"PolicyLengthExceededException"}, {"shape":"InternalException"}, - {"shape":"ConcurrentModificationException"} + {"shape":"ConcurrentModificationException"}, + {"shape":"OperationDisabledException"} ], "documentation":"

Running PutPermission permits the specified AWS account or AWS organization to put events to the specified event bus. Amazon EventBridge (CloudWatch Events) rules in your account are triggered by these events arriving to an event bus in your account.

For another account to send events to your account, that external account must have an EventBridge rule with your account's event bus as a target.

To enable multiple AWS accounts to put events to your event bus, run PutPermission once for each of these accounts. Or, if all the accounts are members of the same AWS organization, you can run PutPermission once specifying Principal as \"*\" and specifying the AWS organization ID in Condition, to grant permissions to all accounts in that organization.

If you grant permissions using an organization, then accounts in that organization must specify a RoleArn with proper permissions when they use PutTarget to add your account's event bus as a target. For more information, see Sending and Receiving Events Between AWS Accounts in the Amazon EventBridge User Guide.

The permission policy on the default event bus cannot exceed 10 KB in size.

" }, @@ -514,7 +515,8 @@ "errors":[ {"shape":"ResourceNotFoundException"}, {"shape":"InternalException"}, - {"shape":"ConcurrentModificationException"} + {"shape":"ConcurrentModificationException"}, + {"shape":"OperationDisabledException"} ], "documentation":"

Revokes the permission of another AWS account to be able to put events to the specified event bus. Specify the account to revoke by the StatementId value that you associated with the account when you granted it permission with PutPermission. You can find the StatementId by using DescribeEventBus.

" }, @@ -951,6 +953,11 @@ } } }, + "CreatedBy":{ + "type":"string", + "max":128, + "min":1 + }, "Database":{ "type":"string", "max":64, @@ -1034,8 +1041,8 @@ "documentation":"

The name of the rule.

" }, "EventBusName":{ - "shape":"EventBusName", - "documentation":"

The event bus associated with the rule. If you omit this, the default event bus is used.

" + "shape":"EventBusNameOrArn", + "documentation":"

The name or ARN of the event bus associated with the rule. If you omit this, the default event bus is used.

" }, "Force":{ "shape":"Boolean", @@ -1106,8 +1113,8 @@ "type":"structure", "members":{ "Name":{ - "shape":"EventBusName", - "documentation":"

The name of the event bus to show details for. If you omit this, the default event bus is displayed.

" + "shape":"EventBusNameOrArn", + "documentation":"

The name or ARN of the event bus to show details for. If you omit this, the default event bus is displayed.

" } } }, @@ -1262,8 +1269,8 @@ "documentation":"

The name of the rule.

" }, "EventBusName":{ - "shape":"EventBusName", - "documentation":"

The event bus associated with the rule. If you omit this, the default event bus is used.

" + "shape":"EventBusNameOrArn", + "documentation":"

The name or ARN of the event bus associated with the rule. If you omit this, the default event bus is used.

" } } }, @@ -1304,7 +1311,11 @@ }, "EventBusName":{ "shape":"EventBusName", - "documentation":"

The event bus associated with the rule.

" + "documentation":"

The name of the event bus associated with the rule.

" + }, + "CreatedBy":{ + "shape":"CreatedBy", + "documentation":"

The account ID of the user that created the rule. If you use PutRule to put a rule on an event bus in another account, the other account is the owner of the rule, and the rule ARN includes the account ID for that account. However, the value for CreatedBy is the account ID as the account that created the rule in the other account.

" } } }, @@ -1317,8 +1328,8 @@ "documentation":"

The name of the rule.

" }, "EventBusName":{ - "shape":"EventBusName", - "documentation":"

The event bus associated with the rule. If you omit this, the default event bus is used.

" + "shape":"EventBusNameOrArn", + "documentation":"

The name or ARN of the event bus associated with the rule. If you omit this, the default event bus is used.

" } } }, @@ -1362,8 +1373,8 @@ "documentation":"

The name of the rule.

" }, "EventBusName":{ - "shape":"EventBusName", - "documentation":"

The event bus associated with the rule. If you omit this, the default event bus is used.

" + "shape":"EventBusNameOrArn", + "documentation":"

The name or ARN of the event bus associated with the rule. If you omit this, the default event bus is used.

" } } }, @@ -1397,6 +1408,12 @@ "min":1, "pattern":"[/\\.\\-_A-Za-z0-9]+" }, + "EventBusNameOrArn":{ + "type":"string", + "max":1600, + "min":1, + "pattern":"(arn:aws[\\w-]*:events:[a-z]{2}-[a-z]+-[\\w-]+:[0-9]{12}:event-bus\\/)?[/\\.\\-_A-Za-z0-9]+" + }, "EventId":{"type":"string"}, "EventPattern":{"type":"string"}, "EventResource":{"type":"string"}, @@ -1742,7 +1759,7 @@ "members":{ "NamePrefix":{ "shape":"ReplayName", - "documentation":"

A name prefix to filter the archives returned. Only archives with name that match the prefix are returned.

" + "documentation":"

A name prefix to filter the replays returned. Only replays with name that match the prefix are returned.

" }, "State":{ "shape":"ReplayState", @@ -1784,8 +1801,8 @@ "documentation":"

The Amazon Resource Name (ARN) of the target resource.

" }, "EventBusName":{ - "shape":"EventBusName", - "documentation":"

Limits the results to show only the rules associated with the specified event bus.

" + "shape":"EventBusNameOrArn", + "documentation":"

The name or ARN of the event bus to list rules for. If you omit this, the default event bus is used.

" }, "NextToken":{ "shape":"NextToken", @@ -1818,8 +1835,8 @@ "documentation":"

The prefix matching the rule name.

" }, "EventBusName":{ - "shape":"EventBusName", - "documentation":"

Limits the results to show only the rules associated with the specified event bus.

" + "shape":"EventBusNameOrArn", + "documentation":"

The name or ARN of the event bus to list the rules for. If you omit this, the default event bus is used.

" }, "NextToken":{ "shape":"NextToken", @@ -1872,8 +1889,8 @@ "documentation":"

The name of the rule.

" }, "EventBusName":{ - "shape":"EventBusName", - "documentation":"

The event bus associated with the rule. If you omit this, the default event bus is used.

" + "shape":"EventBusNameOrArn", + "documentation":"

The name or ARN of the event bus associated with the rule. If you omit this, the default event bus is used.

" }, "NextToken":{ "shape":"NextToken", @@ -1943,6 +1960,12 @@ "min":1, "pattern":"[\\.\\-_A-Za-z0-9]+" }, + "NonPartnerEventBusNameOrArn":{ + "type":"string", + "max":1600, + "min":1, + "pattern":"(arn:aws[\\w-]*:events:[a-z]{2}-[a-z]+-[\\w-]+:[0-9]{12}:event-bus\\/)?[\\.\\-_A-Za-z0-9]+" + }, "OperationDisabledException":{ "type":"structure", "members":{ @@ -2055,8 +2078,8 @@ "documentation":"

A valid JSON string. There is no other schema imposed. The JSON string may contain fields and nested subobjects.

" }, "EventBusName":{ - "shape":"NonPartnerEventBusName", - "documentation":"

The event bus that will receive the event. Only the rules that are associated with this event bus will be able to match the event.

" + "shape":"NonPartnerEventBusNameOrArn", + "documentation":"

The name or ARN of the event bus to receive the event. Only the rules that are associated with this event bus are used to match the event. If you omit this, the default event bus is used.

" } }, "documentation":"

Represents an event to be submitted.

" @@ -2181,15 +2204,10 @@ }, "PutPermissionRequest":{ "type":"structure", - "required":[ - "Action", - "Principal", - "StatementId" - ], "members":{ "EventBusName":{ "shape":"NonPartnerEventBusName", - "documentation":"

The event bus associated with the rule. If you omit this, the default event bus is used.

" + "documentation":"

The name of the event bus associated with the rule. If you omit this, the default event bus is used.

" }, "Action":{ "shape":"Action", @@ -2206,6 +2224,10 @@ "Condition":{ "shape":"Condition", "documentation":"

This parameter enables you to limit the permission to accounts that fulfill a certain condition, such as being a member of a certain AWS organization. For more information about AWS Organizations, see What Is AWS Organizations in the AWS Organizations User Guide.

If you specify Condition with an AWS organization ID, and specify \"*\" as the value for Principal, you grant permission to all the accounts in the named organization.

The Condition is a JSON string which must contain Type, Key, and Value fields.

" + }, + "Policy":{ + "shape":"String", + "documentation":"

A JSON string that describes the permission policy statement. You can include a Policy parameter in the request instead of using the StatementId, Action, Principal, or Condition parameters.

" } } }, @@ -2242,8 +2264,8 @@ "documentation":"

The list of key-value pairs to associate with the rule.

" }, "EventBusName":{ - "shape":"EventBusName", - "documentation":"

The event bus to associate with this rule. If you omit this, the default event bus is used.

" + "shape":"EventBusNameOrArn", + "documentation":"

The name or ARN of the event bus to associate with this rule. If you omit this, the default event bus is used.

" } } }, @@ -2268,8 +2290,8 @@ "documentation":"

The name of the rule.

" }, "EventBusName":{ - "shape":"EventBusName", - "documentation":"

The name of the event bus associated with the rule. If you omit this, the default event bus is used.

" + "shape":"EventBusNameOrArn", + "documentation":"

The name or ARN of the event bus associated with the rule. If you omit this, the default event bus is used.

" }, "Targets":{ "shape":"TargetList", @@ -2369,12 +2391,15 @@ }, "RemovePermissionRequest":{ "type":"structure", - "required":["StatementId"], "members":{ "StatementId":{ "shape":"StatementId", "documentation":"

The statement ID corresponding to the account that is no longer allowed to put events to the default event bus.

" }, + "RemoveAllPermissions":{ + "shape":"Boolean", + "documentation":"

Specifies whether to remove all permissions.

" + }, "EventBusName":{ "shape":"NonPartnerEventBusName", "documentation":"

The name of the event bus to revoke permissions for. If you omit this, the default event bus is used.

" @@ -2393,8 +2418,8 @@ "documentation":"

The name of the rule.

" }, "EventBusName":{ - "shape":"EventBusName", - "documentation":"

The name of the event bus associated with the rule.

" + "shape":"EventBusNameOrArn", + "documentation":"

The name or ARN of the event bus associated with the rule. If you omit this, the default event bus is used.

" }, "Ids":{ "shape":"TargetIdList", @@ -2618,7 +2643,7 @@ }, "EventBusName":{ "shape":"EventBusName", - "documentation":"

The event bus associated with the rule.

" + "documentation":"

The name or ARN of the event bus associated with the rule. If you omit this, the default event bus is used.

" } }, "documentation":"

Contains information about a rule in Amazon EventBridge.

" From 31fac673ff1cf79a7d3f620cf8c389e0bb735d84 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 19 Nov 2020 19:18:05 +0000 Subject: [PATCH 232/339] AWS Lambda Update: Added the starting position and starting position timestamp to ESM Configuration. Now customers will be able to view these fields for their ESM. --- .changes/next-release/feature-AWSLambda-7ed6324.json | 6 ++++++ .../main/resources/codegen-resources/service-2.json | 10 +++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AWSLambda-7ed6324.json diff --git a/.changes/next-release/feature-AWSLambda-7ed6324.json b/.changes/next-release/feature-AWSLambda-7ed6324.json new file mode 100644 index 000000000000..3c6b5270dccc --- /dev/null +++ b/.changes/next-release/feature-AWSLambda-7ed6324.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Lambda", + "contributor": "", + "description": "Added the starting position and starting position timestamp to ESM Configuration. Now customers will be able to view these fields for their ESM." +} diff --git a/services/lambda/src/main/resources/codegen-resources/service-2.json b/services/lambda/src/main/resources/codegen-resources/service-2.json index 50776e93a201..faf48b53dc40 100644 --- a/services/lambda/src/main/resources/codegen-resources/service-2.json +++ b/services/lambda/src/main/resources/codegen-resources/service-2.json @@ -84,7 +84,7 @@ {"shape":"TooManyRequestsException"}, {"shape":"ResourceNotFoundException"} ], - "documentation":"

Creates a mapping between an event source and an AWS Lambda function. Lambda reads items from the event source and triggers the function.

For details about each event source type, see the following topics.

The following error handling options are only available for stream sources (DynamoDB and Kinesis):

  • BisectBatchOnFunctionError - If the function returns an error, split the batch in two and retry.

  • DestinationConfig - Send discarded records to an Amazon SQS queue or Amazon SNS topic.

  • MaximumRecordAgeInSeconds - Discard records older than the specified age. The default value is infinite (-1). When set to infinite (-1), failed records are retried until the record expires

  • MaximumRetryAttempts - Discard records after the specified number of retries. The default value is infinite (-1). When set to infinite (-1), failed records are retried until the record expires.

  • ParallelizationFactor - Process multiple batches from each shard concurrently.

" + "documentation":"

Creates a mapping between an event source and an AWS Lambda function. Lambda reads items from the event source and triggers the function.

For details about each event source type, see the following topics.

The following error handling options are only available for stream sources (DynamoDB and Kinesis):

  • BisectBatchOnFunctionError - If the function returns an error, split the batch in two and retry.

  • DestinationConfig - Send discarded records to an Amazon SQS queue or Amazon SNS topic.

  • MaximumRecordAgeInSeconds - Discard records older than the specified age. The default value is infinite (-1). When set to infinite (-1), failed records are retried until the record expires

  • MaximumRetryAttempts - Discard records after the specified number of retries. The default value is infinite (-1). When set to infinite (-1), failed records are retried until the record expires.

  • ParallelizationFactor - Process multiple batches from each shard concurrently.

" }, "CreateFunction":{ "name":"CreateFunction", @@ -1637,6 +1637,14 @@ "shape":"String", "documentation":"

The identifier of the event source mapping.

" }, + "StartingPosition":{ + "shape":"EventSourcePosition", + "documentation":"

The position in a stream from which to start reading. Required for Amazon Kinesis, Amazon DynamoDB, and Amazon MSK Streams sources. AT_TIMESTAMP is only supported for Amazon Kinesis streams.

" + }, + "StartingPositionTimestamp":{ + "shape":"Date", + "documentation":"

With StartingPosition set to AT_TIMESTAMP, the time from which to start reading.

" + }, "BatchSize":{ "shape":"BatchSize", "documentation":"

The maximum number of items to retrieve in a single batch.

" From 6d967a051e24964393063a37072c6bca85b4c8e0 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 19 Nov 2020 19:18:12 +0000 Subject: [PATCH 233/339] AWS Elemental MediaLive Update: The AWS Elemental MediaLive APIs and SDKs now support the ability to see the software update status on Link devices --- ...feature-AWSElementalMediaLive-b705aba.json | 6 ++++ .../codegen-resources/service-2.json | 28 +++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 .changes/next-release/feature-AWSElementalMediaLive-b705aba.json diff --git a/.changes/next-release/feature-AWSElementalMediaLive-b705aba.json b/.changes/next-release/feature-AWSElementalMediaLive-b705aba.json new file mode 100644 index 000000000000..01248f30d118 --- /dev/null +++ b/.changes/next-release/feature-AWSElementalMediaLive-b705aba.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Elemental MediaLive", + "contributor": "", + "description": "The AWS Elemental MediaLive APIs and SDKs now support the ability to see the software update status on Link devices" +} diff --git a/services/medialive/src/main/resources/codegen-resources/service-2.json b/services/medialive/src/main/resources/codegen-resources/service-2.json index de85943ad13c..ed2c34200302 100644 --- a/services/medialive/src/main/resources/codegen-resources/service-2.json +++ b/services/medialive/src/main/resources/codegen-resources/service-2.json @@ -5441,6 +5441,11 @@ "locationName": "deviceSettingsSyncState", "documentation": "The status of the action to synchronize the device configuration. If you change the configuration of the input device (for example, the maximum bitrate), MediaLive sends the new data to the device. The device might not update itself immediately. SYNCED means the device has updated its configuration. SYNCING means that it has not updated its configuration." }, + "DeviceUpdateStatus": { + "shape": "DeviceUpdateStatus", + "locationName": "deviceUpdateStatus", + "documentation": "The status of software on the input device." + }, "HdDeviceSettings": { "shape": "InputDeviceHdSettings", "locationName": "hdDeviceSettings", @@ -6042,6 +6047,14 @@ "SYNCING" ] }, + "DeviceUpdateStatus": { + "type": "string", + "documentation": "The status of software on the input device.", + "enum": [ + "UP_TO_DATE", + "NOT_UP_TO_DATE" + ] + }, "DvbNitSettings": { "type": "structure", "members": { @@ -8682,6 +8695,11 @@ "locationName": "deviceSettingsSyncState", "documentation": "The status of the action to synchronize the device configuration. If you change the configuration of the input device (for example, the maximum bitrate), MediaLive sends the new data to the device. The device might not update itself immediately. SYNCED means the device has updated its configuration. SYNCING means that it has not updated its configuration." }, + "DeviceUpdateStatus": { + "shape": "DeviceUpdateStatus", + "locationName": "deviceUpdateStatus", + "documentation": "The status of software on the input device." + }, "HdDeviceSettings": { "shape": "InputDeviceHdSettings", "locationName": "hdDeviceSettings", @@ -8918,6 +8936,11 @@ "locationName": "deviceSettingsSyncState", "documentation": "The status of the action to synchronize the device configuration. If you change the configuration of the input device (for example, the maximum bitrate), MediaLive sends the new data to the device. The device might not update itself immediately. SYNCED means the device has updated its configuration. SYNCING means that it has not updated its configuration." }, + "DeviceUpdateStatus": { + "shape": "DeviceUpdateStatus", + "locationName": "deviceUpdateStatus", + "documentation": "The status of software on the input device." + }, "HdDeviceSettings": { "shape": "InputDeviceHdSettings", "locationName": "hdDeviceSettings", @@ -13946,6 +13969,11 @@ "locationName": "deviceSettingsSyncState", "documentation": "The status of the action to synchronize the device configuration. If you change the configuration of the input device (for example, the maximum bitrate), MediaLive sends the new data to the device. The device might not update itself immediately. SYNCED means the device has updated its configuration. SYNCING means that it has not updated its configuration." }, + "DeviceUpdateStatus": { + "shape": "DeviceUpdateStatus", + "locationName": "deviceUpdateStatus", + "documentation": "The status of software on the input device." + }, "HdDeviceSettings": { "shape": "InputDeviceHdSettings", "locationName": "hdDeviceSettings", From 564f7aff4f0f96eef970182583d5164b5e785b05 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 19 Nov 2020 19:18:35 +0000 Subject: [PATCH 234/339] Amazon Lex Model Building Service Update: Amazon Lex supports managing input and output contexts as well as default values for slots. --- ...AmazonLexModelBuildingService-6034543.json | 6 + .../codegen-resources/service-2.json | 141 +++++++++++++++++- 2 files changed, 145 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AmazonLexModelBuildingService-6034543.json diff --git a/.changes/next-release/feature-AmazonLexModelBuildingService-6034543.json b/.changes/next-release/feature-AmazonLexModelBuildingService-6034543.json new file mode 100644 index 000000000000..9cfcd2699f8e --- /dev/null +++ b/.changes/next-release/feature-AmazonLexModelBuildingService-6034543.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Lex Model Building Service", + "contributor": "", + "description": "Amazon Lex supports managing input and output contexts as well as default values for slots." +} diff --git a/services/lexmodelbuilding/src/main/resources/codegen-resources/service-2.json b/services/lexmodelbuilding/src/main/resources/codegen-resources/service-2.json index 51781fa9d2a9..0c90f83e9868 100644 --- a/services/lexmodelbuilding/src/main/resources/codegen-resources/service-2.json +++ b/services/lexmodelbuilding/src/main/resources/codegen-resources/service-2.json @@ -979,6 +979,16 @@ "CustomPayload" ] }, + "ContextTimeToLiveInSeconds":{ + "type":"integer", + "max":86400, + "min":5 + }, + "ContextTurnsToLive":{ + "type":"integer", + "max":20, + "min":1 + }, "ConversationLogsRequest":{ "type":"structure", "required":[ @@ -1183,6 +1193,14 @@ "kendraConfiguration":{ "shape":"KendraConfiguration", "documentation":"

Configuration information, if any, for connecting an Amazon Kendra index with the AMAZON.KendraSearchIntent intent.

" + }, + "inputContexts":{ + "shape":"InputContextList", + "documentation":"

An array of InputContext objects that lists the contexts that must be active for Amazon Lex to choose the intent in a conversation with the user.

" + }, + "outputContexts":{ + "shape":"OutputContextList", + "documentation":"

An array of OutputContext objects that lists the contexts that the intent activates when the intent is fulfilled.

" } } }, @@ -2216,6 +2234,14 @@ "kendraConfiguration":{ "shape":"KendraConfiguration", "documentation":"

Configuration information, if any, to connect to an Amazon Kendra index with the AMAZON.KendraSearchIntent intent.

" + }, + "inputContexts":{ + "shape":"InputContextList", + "documentation":"

An array of InputContext objects that lists the contexts that must be active for Amazon Lex to choose the intent in a conversation with the user.

" + }, + "outputContexts":{ + "shape":"OutputContextList", + "documentation":"

An array of OutputContext objects that lists the contexts that the intent activates when the intent is fulfilled.

" } } }, @@ -2492,6 +2518,29 @@ "FAILED" ] }, + "InputContext":{ + "type":"structure", + "required":["name"], + "members":{ + "name":{ + "shape":"InputContextName", + "documentation":"

The name of the context.

" + } + }, + "documentation":"

The name of a context that must be active for an intent to be selected by Amazon Lex.

" + }, + "InputContextList":{ + "type":"list", + "member":{"shape":"InputContext"}, + "max":5, + "min":0 + }, + "InputContextName":{ + "type":"string", + "max":100, + "min":1, + "pattern":"^([A-Za-z]_?)+$" + }, "Intent":{ "type":"structure", "required":[ @@ -2810,6 +2859,41 @@ "DEFAULT_OBFUSCATION" ] }, + "OutputContext":{ + "type":"structure", + "required":[ + "name", + "timeToLiveInSeconds", + "turnsToLive" + ], + "members":{ + "name":{ + "shape":"OutputContextName", + "documentation":"

The name of the context.

" + }, + "timeToLiveInSeconds":{ + "shape":"ContextTimeToLiveInSeconds", + "documentation":"

The number of seconds that the context should be active after it is first sent in a PostContent or PostText response. You can set the value between 5 and 86,400 seconds (24 hours).

" + }, + "turnsToLive":{ + "shape":"ContextTurnsToLive", + "documentation":"

The number of conversation turns that the context should be active. A conversation turn is one PostContent or PostText request and the corresponding response from Amazon Lex.

" + } + }, + "documentation":"

The specification of an output context that is set when an intent is fulfilled.

" + }, + "OutputContextList":{ + "type":"list", + "member":{"shape":"OutputContext"}, + "max":10, + "min":0 + }, + "OutputContextName":{ + "type":"string", + "max":100, + "min":1, + "pattern":"^([A-Za-z]_?)+$" + }, "PreconditionFailedException":{ "type":"structure", "members":{ @@ -2965,11 +3049,11 @@ }, "enableModelImprovements":{ "shape":"Boolean", - "documentation":"

Set to true to enable access to natural language understanding improvements.

When you set the enableModelImprovements parameter to true you can use the nluIntentConfidenceThreshold parameter to configure confidence scores. For more information, see Confidence Scores.

You can only set the enableModelImprovements parameter in certain Regions. If you set the parameter to true, your bot has access to accuracy improvements.

The Regions where you can set the enableModelImprovements parameter to true are:

  • US East (N. Virginia) (us-east-1)

  • US West (Oregon) (us-west-2)

  • Asia Pacific (Sydney) (ap-southeast-2)

  • EU (Ireland) (eu-west-1)

In other Regions, the enableModelImprovements parameter is set to true by default. In these Regions setting the parameter to false throws a ValidationException exception.

  • Asia Pacific (Singapore) (ap-southeast-1)

  • Asia Pacific (Tokyo) (ap-northeast-1)

  • EU (Frankfurt) (eu-central-1)

  • EU (London) (eu-west-2)

" + "documentation":"

Set to true to enable access to natural language understanding improvements.

When you set the enableModelImprovements parameter to true you can use the nluIntentConfidenceThreshold parameter to configure confidence scores. For more information, see Confidence Scores.

You can only set the enableModelImprovements parameter in certain Regions. If you set the parameter to true, your bot has access to accuracy improvements.

The Regions where you can set the enableModelImprovements parameter to true are:

  • US East (N. Virginia) (us-east-1)

  • US West (Oregon) (us-west-2)

  • Asia Pacific (Sydney) (ap-southeast-2)

  • EU (Ireland) (eu-west-1)

In other Regions, the enableModelImprovements parameter is set to true by default. In these Regions setting the parameter to false throws a ValidationException exception.

" }, "nluIntentConfidenceThreshold":{ "shape":"ConfidenceThreshold", - "documentation":"

Determines the threshold where Amazon Lex will insert the AMAZON.FallbackIntent, AMAZON.KendraSearchIntent, or both when returning alternative intents in a PostContent or PostText response. AMAZON.FallbackIntent and AMAZON.KendraSearchIntent are only inserted if they are configured for the bot.

You must set the enableModelImprovements parameter to true to use confidence scores.

  • US East (N. Virginia) (us-east-1)

  • US West (Oregon) (us-west-2)

  • Asia Pacific (Sydney) (ap-southeast-2)

  • EU (Ireland) (eu-west-1)

In other Regions, the enableModelImprovements parameter is set to true by default.

For example, suppose a bot is configured with the confidence threshold of 0.80 and the AMAZON.FallbackIntent. Amazon Lex returns three alternative intents with the following confidence scores: IntentA (0.70), IntentB (0.60), IntentC (0.50). The response from the PostText operation would be:

  • AMAZON.FallbackIntent

  • IntentA

  • IntentB

  • IntentC

" + "documentation":"

Determines the threshold where Amazon Lex will insert the AMAZON.FallbackIntent, AMAZON.KendraSearchIntent, or both when returning alternative intents in a PostContent or PostText response. AMAZON.FallbackIntent and AMAZON.KendraSearchIntent are only inserted if they are configured for the bot.

You must set the enableModelImprovements parameter to true to use confidence scores in the following regions.

  • US East (N. Virginia) (us-east-1)

  • US West (Oregon) (us-west-2)

  • Asia Pacific (Sydney) (ap-southeast-2)

  • EU (Ireland) (eu-west-1)

In other Regions, the enableModelImprovements parameter is set to true by default.

For example, suppose a bot is configured with the confidence threshold of 0.80 and the AMAZON.FallbackIntent. Amazon Lex returns three alternative intents with the following confidence scores: IntentA (0.70), IntentB (0.60), IntentC (0.50). The response from the PostText operation would be:

  • AMAZON.FallbackIntent

  • IntentA

  • IntentB

  • IntentC

" }, "clarificationPrompt":{ "shape":"Prompt", @@ -3163,6 +3247,14 @@ "kendraConfiguration":{ "shape":"KendraConfiguration", "documentation":"

Configuration information required to use the AMAZON.KendraSearchIntent intent to connect to an Amazon Kendra index. For more information, see AMAZON.KendraSearchIntent.

" + }, + "inputContexts":{ + "shape":"InputContextList", + "documentation":"

An array of InputContext objects that lists the contexts that must be active for Amazon Lex to choose the intent in a conversation with the user.

" + }, + "outputContexts":{ + "shape":"OutputContextList", + "documentation":"

An array of OutputContext objects that lists the contexts that the intent activates when the intent is fulfilled.

" } } }, @@ -3236,6 +3328,14 @@ "kendraConfiguration":{ "shape":"KendraConfiguration", "documentation":"

Configuration information, if any, required to connect to an Amazon Kendra index and use the AMAZON.KendraSearchIntent intent.

" + }, + "inputContexts":{ + "shape":"InputContextList", + "documentation":"

An array of InputContext objects that lists the contexts that must be active for Amazon Lex to choose the intent in a conversation with the user.

" + }, + "outputContexts":{ + "shape":"OutputContextList", + "documentation":"

An array of OutputContext objects that lists the contexts that the intent activates when the intent is fulfilled.

" } } }, @@ -3444,6 +3544,10 @@ "obfuscationSetting":{ "shape":"ObfuscationSetting", "documentation":"

Determines whether a slot is obfuscated in conversation logs and stored utterances. When you obfuscate a slot, the value is replaced by the slot name in curly braces ({}). For example, if the slot name is \"full_name\", obfuscated values are replaced with \"{full_name}\". For more information, see Slot Obfuscation .

" + }, + "defaultValueSpec":{ + "shape":"SlotDefaultValueSpec", + "documentation":"

A list of default values for the slot. Default values are used when Amazon Lex hasn't determined a value for a slot. You can specify default values from context variables, session attributes, and defined values.

" } }, "documentation":"

Identifies the version of a specific slot.

" @@ -3455,6 +3559,39 @@ "Optional" ] }, + "SlotDefaultValue":{ + "type":"structure", + "required":["defaultValue"], + "members":{ + "defaultValue":{ + "shape":"SlotDefaultValueString", + "documentation":"

The default value for the slot. You can specify one of the following:

  • #context-name.slot-name - The slot value \"slot-name\" in the context \"context-name.\"

  • {attribute} - The slot value of the session attribute \"attribute.\"

  • 'value' - The discrete value \"value.\"

" + } + }, + "documentation":"

A default value for a slot.

" + }, + "SlotDefaultValueList":{ + "type":"list", + "member":{"shape":"SlotDefaultValue"}, + "max":10, + "min":0 + }, + "SlotDefaultValueSpec":{ + "type":"structure", + "required":["defaultValueList"], + "members":{ + "defaultValueList":{ + "shape":"SlotDefaultValueList", + "documentation":"

The default values for a slot. You can specify more than one default. For example, you can specify a default value to use from a matching context variable, a session attribute, or a fixed value.

The default value chosen is selected based on the order that you specify them in the list. For example, if you specify a context variable and a fixed value in that order, Amazon Lex uses the context variable if it is available, else it uses the fixed value.

" + } + }, + "documentation":"

Contains the default values for a slot. Default values are used when Amazon Lex hasn't determined a value for a slot.

" + }, + "SlotDefaultValueString":{ + "type":"string", + "max":202, + "min":1 + }, "SlotList":{ "type":"list", "member":{"shape":"Slot"}, From 047abb389d6cce18f0ab53c80eb8d8883645d017 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 19 Nov 2020 19:19:35 +0000 Subject: [PATCH 235/339] Updated endpoints.json. --- .../feature-AWSSDKforJavav2-bedacd4.json | 6 +++ .../regions/internal/region/endpoints.json | 49 +++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json new file mode 100644 index 000000000000..ae3f84993e9e --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." +} diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json index f47be3402f99..f8a48eeaf495 100644 --- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json +++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json @@ -1300,8 +1300,10 @@ "ap-southeast-2" : { }, "ca-central-1" : { }, "eu-central-1" : { }, + "eu-north-1" : { }, "eu-west-1" : { }, "eu-west-2" : { }, + "eu-west-3" : { }, "fips-us-east-1" : { "credentialScope" : { "region" : "us-east-1" @@ -1334,8 +1336,10 @@ "ap-southeast-2" : { }, "ca-central-1" : { }, "eu-central-1" : { }, + "eu-north-1" : { }, "eu-west-1" : { }, "eu-west-2" : { }, + "eu-west-3" : { }, "fips-us-east-1" : { "credentialScope" : { "region" : "us-east-1" @@ -1442,6 +1446,7 @@ }, "config" : { "endpoints" : { + "af-south-1" : { }, "ap-east-1" : { }, "ap-northeast-1" : { }, "ap-northeast-2" : { }, @@ -1451,9 +1456,34 @@ "ca-central-1" : { }, "eu-central-1" : { }, "eu-north-1" : { }, + "eu-south-1" : { }, "eu-west-1" : { }, "eu-west-2" : { }, "eu-west-3" : { }, + "fips-us-east-1" : { + "credentialScope" : { + "region" : "us-east-1" + }, + "hostname" : "config-fips.us-east-1.amazonaws.com" + }, + "fips-us-east-2" : { + "credentialScope" : { + "region" : "us-east-2" + }, + "hostname" : "config-fips.us-east-2.amazonaws.com" + }, + "fips-us-west-1" : { + "credentialScope" : { + "region" : "us-west-1" + }, + "hostname" : "config-fips.us-west-1.amazonaws.com" + }, + "fips-us-west-2" : { + "credentialScope" : { + "region" : "us-west-2" + }, + "hostname" : "config-fips.us-west-2.amazonaws.com" + }, "me-south-1" : { }, "sa-east-1" : { }, "us-east-1" : { }, @@ -7623,6 +7653,18 @@ }, "config" : { "endpoints" : { + "fips-us-gov-east-1" : { + "credentialScope" : { + "region" : "us-gov-east-1" + }, + "hostname" : "config.us-gov-east-1.amazonaws.com" + }, + "fips-us-gov-west-1" : { + "credentialScope" : { + "region" : "us-gov-west-1" + }, + "hostname" : "config.us-gov-west-1.amazonaws.com" + }, "us-gov-east-1" : { }, "us-gov-west-1" : { } } @@ -7981,6 +8023,7 @@ }, "hostname" : "greengrass-ats.iot.us-gov-west-1.amazonaws.com" }, + "us-gov-east-1" : { }, "us-gov-west-1" : { "credentialScope" : { "region" : "us-gov-west-1" @@ -7996,6 +8039,12 @@ }, "endpoints" : { "us-gov-east-1" : { }, + "us-gov-east-1-fips" : { + "credentialScope" : { + "region" : "us-gov-east-1" + }, + "hostname" : "guardduty.us-gov-east-1.amazonaws.com" + }, "us-gov-west-1" : { }, "us-gov-west-1-fips" : { "credentialScope" : { From 8f86df65b12e2d3aa4442c944e3cb485c7f50c44 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 19 Nov 2020 19:20:05 +0000 Subject: [PATCH 236/339] Release 2.15.32. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.32.json | 84 +++++++++++++++++++ ...eature-AWSCostExplorerService-112ec8f.json | 6 -- .../feature-AWSDirectoryService-18e5a36.json | 6 -- ...feature-AWSElementalMediaLive-b705aba.json | 6 -- .../next-release/feature-AWSGlue-1cef5b9.json | 6 -- .../feature-AWSLambda-7ed6324.json | 6 -- .../feature-AWSSDKforJavav2-bedacd4.json | 6 -- ...eature-AmazonCloudWatchEvents-1c446bb.json | 6 -- .../feature-AmazonEventBridge-ad014aa.json | 6 -- ...eature-AmazonKinesisAnalytics-3965481.json | 6 -- ...AmazonLexModelBuildingService-6034543.json | 6 -- ...ature-AmazonLexRuntimeService-4dcd6ec.json | 6 -- .../feature-AmazonRedshift-67b0ded.json | 6 -- .../feature-AutoScaling-6c15d1a.json | 6 -- CHANGELOG.md | 53 ++++++++++++ README.md | 8 +- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 299 files changed, 424 insertions(+), 365 deletions(-) create mode 100644 .changes/2.15.32.json delete mode 100644 .changes/next-release/feature-AWSCostExplorerService-112ec8f.json delete mode 100644 .changes/next-release/feature-AWSDirectoryService-18e5a36.json delete mode 100644 .changes/next-release/feature-AWSElementalMediaLive-b705aba.json delete mode 100644 .changes/next-release/feature-AWSGlue-1cef5b9.json delete mode 100644 .changes/next-release/feature-AWSLambda-7ed6324.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json delete mode 100644 .changes/next-release/feature-AmazonCloudWatchEvents-1c446bb.json delete mode 100644 .changes/next-release/feature-AmazonEventBridge-ad014aa.json delete mode 100644 .changes/next-release/feature-AmazonKinesisAnalytics-3965481.json delete mode 100644 .changes/next-release/feature-AmazonLexModelBuildingService-6034543.json delete mode 100644 .changes/next-release/feature-AmazonLexRuntimeService-4dcd6ec.json delete mode 100644 .changes/next-release/feature-AmazonRedshift-67b0ded.json delete mode 100644 .changes/next-release/feature-AutoScaling-6c15d1a.json diff --git a/.changes/2.15.32.json b/.changes/2.15.32.json new file mode 100644 index 000000000000..1659d30f59fd --- /dev/null +++ b/.changes/2.15.32.json @@ -0,0 +1,84 @@ +{ + "version": "2.15.32", + "date": "2020-11-19", + "entries": [ + { + "type": "feature", + "category": "Auto Scaling", + "contributor": "", + "description": "You can now create Auto Scaling groups with multiple launch templates using a mixed instances policy, making it easy to deploy an AMI with an architecture that is different from the rest of the group." + }, + { + "type": "feature", + "category": "Amazon Lex Model Building Service", + "contributor": "", + "description": "Amazon Lex supports managing input and output contexts as well as default values for slots." + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." + }, + { + "type": "feature", + "category": "AWS Elemental MediaLive", + "contributor": "", + "description": "The AWS Elemental MediaLive APIs and SDKs now support the ability to see the software update status on Link devices" + }, + { + "type": "feature", + "category": "Amazon Redshift", + "contributor": "", + "description": "Amazon Redshift support for returning ClusterNamespaceArn in describeClusters" + }, + { + "type": "feature", + "category": "Amazon EventBridge", + "contributor": "", + "description": "EventBridge now supports Resource-based policy authorization on event buses. This enables cross-account PutEvents API calls, creating cross-account rules, and simplifies permission management." + }, + { + "type": "feature", + "category": "AWS Directory Service", + "contributor": "", + "description": "Adding multi-region replication feature for AWS Managed Microsoft AD" + }, + { + "type": "feature", + "category": "Amazon Kinesis Analytics", + "contributor": "", + "description": "Amazon Kinesis Data Analytics now supports building and running streaming applications using Apache Flink 1.11 and provides a way to access the Apache Flink dashboard for supported Flink versions." + }, + { + "type": "feature", + "category": "AWS Lambda", + "contributor": "", + "description": "Added the starting position and starting position timestamp to ESM Configuration. Now customers will be able to view these fields for their ESM." + }, + { + "type": "feature", + "category": "Amazon Lex Runtime Service", + "contributor": "", + "description": "Amazon Lex now supports the ability to view and manage active contexts associated with a user session." + }, + { + "type": "feature", + "category": "AWS Cost Explorer Service", + "contributor": "", + "description": "Additional metadata that may be applicable to the recommendation." + }, + { + "type": "feature", + "category": "Amazon CloudWatch Events", + "contributor": "", + "description": "EventBridge now supports Resource-based policy authorization on event buses. This enables cross-account PutEvents API calls, creating cross-account rules, and simplifies permission management." + }, + { + "type": "feature", + "category": "AWS Glue", + "contributor": "", + "description": "Adding support for Glue Schema Registry. The AWS Glue Schema Registry is a new feature that allows you to centrally discover, control, and evolve data stream schemas." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSCostExplorerService-112ec8f.json b/.changes/next-release/feature-AWSCostExplorerService-112ec8f.json deleted file mode 100644 index 56ba4197aafe..000000000000 --- a/.changes/next-release/feature-AWSCostExplorerService-112ec8f.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Cost Explorer Service", - "contributor": "", - "description": "Additional metadata that may be applicable to the recommendation." -} diff --git a/.changes/next-release/feature-AWSDirectoryService-18e5a36.json b/.changes/next-release/feature-AWSDirectoryService-18e5a36.json deleted file mode 100644 index 4ca17fc991bf..000000000000 --- a/.changes/next-release/feature-AWSDirectoryService-18e5a36.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Directory Service", - "contributor": "", - "description": "Adding multi-region replication feature for AWS Managed Microsoft AD" -} diff --git a/.changes/next-release/feature-AWSElementalMediaLive-b705aba.json b/.changes/next-release/feature-AWSElementalMediaLive-b705aba.json deleted file mode 100644 index 01248f30d118..000000000000 --- a/.changes/next-release/feature-AWSElementalMediaLive-b705aba.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Elemental MediaLive", - "contributor": "", - "description": "The AWS Elemental MediaLive APIs and SDKs now support the ability to see the software update status on Link devices" -} diff --git a/.changes/next-release/feature-AWSGlue-1cef5b9.json b/.changes/next-release/feature-AWSGlue-1cef5b9.json deleted file mode 100644 index e70223279e88..000000000000 --- a/.changes/next-release/feature-AWSGlue-1cef5b9.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Glue", - "contributor": "", - "description": "Adding support for Glue Schema Registry. The AWS Glue Schema Registry is a new feature that allows you to centrally discover, control, and evolve data stream schemas." -} diff --git a/.changes/next-release/feature-AWSLambda-7ed6324.json b/.changes/next-release/feature-AWSLambda-7ed6324.json deleted file mode 100644 index 3c6b5270dccc..000000000000 --- a/.changes/next-release/feature-AWSLambda-7ed6324.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Lambda", - "contributor": "", - "description": "Added the starting position and starting position timestamp to ESM Configuration. Now customers will be able to view these fields for their ESM." -} diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json deleted file mode 100644 index ae3f84993e9e..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS SDK for Java v2", - "contributor": "", - "description": "Updated service endpoint metadata." -} diff --git a/.changes/next-release/feature-AmazonCloudWatchEvents-1c446bb.json b/.changes/next-release/feature-AmazonCloudWatchEvents-1c446bb.json deleted file mode 100644 index 644511ff5dd0..000000000000 --- a/.changes/next-release/feature-AmazonCloudWatchEvents-1c446bb.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon CloudWatch Events", - "contributor": "", - "description": "EventBridge now supports Resource-based policy authorization on event buses. This enables cross-account PutEvents API calls, creating cross-account rules, and simplifies permission management." -} diff --git a/.changes/next-release/feature-AmazonEventBridge-ad014aa.json b/.changes/next-release/feature-AmazonEventBridge-ad014aa.json deleted file mode 100644 index d9cd618b28e7..000000000000 --- a/.changes/next-release/feature-AmazonEventBridge-ad014aa.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon EventBridge", - "contributor": "", - "description": "EventBridge now supports Resource-based policy authorization on event buses. This enables cross-account PutEvents API calls, creating cross-account rules, and simplifies permission management." -} diff --git a/.changes/next-release/feature-AmazonKinesisAnalytics-3965481.json b/.changes/next-release/feature-AmazonKinesisAnalytics-3965481.json deleted file mode 100644 index 30eaa256eed4..000000000000 --- a/.changes/next-release/feature-AmazonKinesisAnalytics-3965481.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Kinesis Analytics", - "contributor": "", - "description": "Amazon Kinesis Data Analytics now supports building and running streaming applications using Apache Flink 1.11 and provides a way to access the Apache Flink dashboard for supported Flink versions." -} diff --git a/.changes/next-release/feature-AmazonLexModelBuildingService-6034543.json b/.changes/next-release/feature-AmazonLexModelBuildingService-6034543.json deleted file mode 100644 index 9cfcd2699f8e..000000000000 --- a/.changes/next-release/feature-AmazonLexModelBuildingService-6034543.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Lex Model Building Service", - "contributor": "", - "description": "Amazon Lex supports managing input and output contexts as well as default values for slots." -} diff --git a/.changes/next-release/feature-AmazonLexRuntimeService-4dcd6ec.json b/.changes/next-release/feature-AmazonLexRuntimeService-4dcd6ec.json deleted file mode 100644 index e5a8adf63575..000000000000 --- a/.changes/next-release/feature-AmazonLexRuntimeService-4dcd6ec.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Lex Runtime Service", - "contributor": "", - "description": "Amazon Lex now supports the ability to view and manage active contexts associated with a user session." -} diff --git a/.changes/next-release/feature-AmazonRedshift-67b0ded.json b/.changes/next-release/feature-AmazonRedshift-67b0ded.json deleted file mode 100644 index 10475c476143..000000000000 --- a/.changes/next-release/feature-AmazonRedshift-67b0ded.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Redshift", - "contributor": "", - "description": "Amazon Redshift support for returning ClusterNamespaceArn in describeClusters" -} diff --git a/.changes/next-release/feature-AutoScaling-6c15d1a.json b/.changes/next-release/feature-AutoScaling-6c15d1a.json deleted file mode 100644 index b64ae485fd31..000000000000 --- a/.changes/next-release/feature-AutoScaling-6c15d1a.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Auto Scaling", - "contributor": "", - "description": "You can now create Auto Scaling groups with multiple launch templates using a mixed instances policy, making it easy to deploy an AMI with an architecture that is different from the rest of the group." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index ec7041ef2f70..36d5f2c6ac4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,56 @@ +# __2.15.32__ __2020-11-19__ +## __AWS Cost Explorer Service__ + - ### Features + - Additional metadata that may be applicable to the recommendation. + +## __AWS Directory Service__ + - ### Features + - Adding multi-region replication feature for AWS Managed Microsoft AD + +## __AWS Elemental MediaLive__ + - ### Features + - The AWS Elemental MediaLive APIs and SDKs now support the ability to see the software update status on Link devices + +## __AWS Glue__ + - ### Features + - Adding support for Glue Schema Registry. The AWS Glue Schema Registry is a new feature that allows you to centrally discover, control, and evolve data stream schemas. + +## __AWS Lambda__ + - ### Features + - Added the starting position and starting position timestamp to ESM Configuration. Now customers will be able to view these fields for their ESM. + +## __AWS SDK for Java v2__ + - ### Features + - Updated service endpoint metadata. + +## __Amazon CloudWatch Events__ + - ### Features + - EventBridge now supports Resource-based policy authorization on event buses. This enables cross-account PutEvents API calls, creating cross-account rules, and simplifies permission management. + +## __Amazon EventBridge__ + - ### Features + - EventBridge now supports Resource-based policy authorization on event buses. This enables cross-account PutEvents API calls, creating cross-account rules, and simplifies permission management. + +## __Amazon Kinesis Analytics__ + - ### Features + - Amazon Kinesis Data Analytics now supports building and running streaming applications using Apache Flink 1.11 and provides a way to access the Apache Flink dashboard for supported Flink versions. + +## __Amazon Lex Model Building Service__ + - ### Features + - Amazon Lex supports managing input and output contexts as well as default values for slots. + +## __Amazon Lex Runtime Service__ + - ### Features + - Amazon Lex now supports the ability to view and manage active contexts associated with a user session. + +## __Amazon Redshift__ + - ### Features + - Amazon Redshift support for returning ClusterNamespaceArn in describeClusters + +## __Auto Scaling__ + - ### Features + - You can now create Auto Scaling groups with multiple launch templates using a mixed instances policy, making it easy to deploy an AMI with an architecture that is different from the rest of the group. + # __2.15.31__ __2020-11-18__ ## __AWS Backup__ - ### Features diff --git a/README.md b/README.md index fc8d86a364cb..5683c1817fd1 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.31 + 2.15.32 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.31 + 2.15.32 software.amazon.awssdk s3 - 2.15.31 + 2.15.32 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.31 + 2.15.32 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 65d8a67a863e..65276be2ea29 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index f4742f377545..c98d298bd159 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index bd59abe5629c..02ba236f8412 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.15.32-SNAPSHOT + 2.15.32 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index d1072a3fb856..73206b5968b4 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 09f9652b1396..c579df7f4c5c 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.32-SNAPSHOT + 2.15.32 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 34c0006a3450..09c5e037e861 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.32-SNAPSHOT + 2.15.32 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index cb3ab1f63dcb..5e9a68bd1498 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.15.32-SNAPSHOT + 2.15.32 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 084ebed18cea..1d5af067d135 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.32-SNAPSHOT + 2.15.32 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 3b8bc718b338..fef19e3da6a5 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.15.32-SNAPSHOT + 2.15.32 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 4089b9ebaf46..4426b1504368 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.32-SNAPSHOT + 2.15.32 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index ad57340e96cc..75ffc8a4ef19 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 4a35f9e6c967..419d18a7797c 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 764664618952..5e90faf1bfb2 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.32-SNAPSHOT + 2.15.32 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index c428d42ce0f2..f6203257e55c 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.32-SNAPSHOT + 2.15.32 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 78aebfeff98d..16f11947a956 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index c704f1c6445c..18e236e1f1eb 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 4ec98cc03825..950781cae29b 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.32-SNAPSHOT + 2.15.32 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index c67bac3fd1f0..f6a5537508f6 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.15.32-SNAPSHOT + 2.15.32 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 6adac23dd02f..e493de61ed32 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index e2b342323d24..81919a38d403 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.15.32-SNAPSHOT + 2.15.32 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index be0d8503917e..35704e74bcac 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.15.32-SNAPSHOT + 2.15.32 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 094f5b063225..df0f7d634bcd 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.15.32-SNAPSHOT + 2.15.32 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 7c3656088138..f192d59e0b93 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index ab48418b4629..bff6465b5505 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 64ba0a8029f8..a1149f2b0ef4 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.32-SNAPSHOT + 2.15.32 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index c980a2b623ea..39b1d96c6fec 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.32-SNAPSHOT + 2.15.32 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 6b0424912a95..9811567cba9f 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.15.32-SNAPSHOT + 2.15.32 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 7862872f9302..6dee470e6f8c 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.15.32-SNAPSHOT + 2.15.32 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index d399d1246c46..6ca901acfd11 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.15.32-SNAPSHOT + 2.15.32 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index b884ad1e6b7c..2b7035bd3cea 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.15.32-SNAPSHOT + 2.15.32 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index bb5924b28d54..024224fde75e 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 865e29ad3b76..2efa1479d234 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.15.32-SNAPSHOT + 2.15.32 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index f474aa19de70..ffe87e63b919 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.15.32-SNAPSHOT + 2.15.32 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index cb1beba63007..1839d9a25b14 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.32-SNAPSHOT + 2.15.32 metric-publishers diff --git a/pom.xml b/pom.xml index 33327e6cd08b..f5403d142829 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.32-SNAPSHOT + 2.15.32 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 393df05200db..c33b957e18c3 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.32-SNAPSHOT + 2.15.32 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 9e53ad5fdffa..86db8422fbc7 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.15.32-SNAPSHOT + 2.15.32 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 9af3e707c435..7dce626f7c3c 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.32-SNAPSHOT + 2.15.32 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 25bd402c95f2..c24e72b2265e 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index db1741b5b91a..081a6aacf58d 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 1029a6b54589..ff1749736aa4 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 45f9f046883c..4cb2385f3ce4 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 347f7555dfc3..30bd6193820d 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 4cfb78518b39..8ae426269131 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index abc4ba14d036..88e286c3e546 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 3627eb6f0595..3f9ca43c45e7 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index cfbd0d00dc5e..6670122dbe7c 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 2825b66b2648..8cd8a962de63 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index d072c513cc06..25385c54b3df 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 0ed5740d47cc..8fe299a8bf0c 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index b84e4c2633f3..f4c4dad9f7a0 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index febc179e55ab..0ce72a6ac7d3 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 4a0b9d446350..298dd17a54de 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 622eef230871..baf785deafcf 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index c93195d9e504..8e5fe88e3ccf 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 6e220afacb0d..3596216b9710 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index ebfa4a6cf7c8..7355fb87b2a3 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 378d839ee93e..6b1bbe087742 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 76c83e077563..4ba7a0b3c972 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index acb5678d279c..2ed1dd7022c0 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index eff7fe5ca8ba..0f8ac4753a07 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index fdf62045f4f1..849985829394 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 49a5785a73d2..611359c809ea 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index c341b3c8943f..580dc212378e 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 9d374327b822..afa6f0c9c293 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 26006f13db85..4d9046133379 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 222be19af930..d627b65bc799 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index ea79e667d1ba..e5d03f5178f9 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 7d823d0fae18..863b6189cfd5 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 59e667d0784b..0496de85f582 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 6effb96b24b2..aa5f5568ac9e 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 8173e6d8165a..e7ffb15577d4 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index caec9c88a8b5..359f5e8f4818 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index a5d8ba15f7a7..3a9910297f4e 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index d798601a2111..bbddb8ebec52 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index fb74f63eeaf4..9e1ea3d587c6 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 871dc6bf768c..406da8ba610e 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 82167a12c23f..f602c48d7291 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index db27f7227d72..baf2998e24b3 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 7db9abd6dda5..6c2d40f0fbbf 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index e4250e292c69..e1ef03d23b0f 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 78377430653c..461ffd9c69c1 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 57bf317c844b..1231dc46b111 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index c5dd92629856..28acf371baaf 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 69761de79115..d88721c302cf 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 0be970a9d1d7..1275f8a0d783 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index acd9b916847c..028cb47f18e3 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index f617d439b0d4..411e68b3ac9c 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index f1be19ddad69..d878dc542bb0 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 6764a0121a01..cc687af945c2 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index dd73f3014edc..d8e20219fb62 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 1a7a3ff6821d..d59b8b60f823 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index cf731476b5f6..a8e61219fab6 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 48ab347de2a4..87bad9fcd6d3 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 108ac342fad6..62f07b9c2fbf 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 0bcdd6657d50..c0ea1ade3f01 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index 0dce14d1284e..43949244c14c 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 8a24e034096b..815afb8aaf7f 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 52371be90ea9..803eb3143c45 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index a7c127ca157c..0ad2472a1751 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 3bb468f04729..73caebf1b23b 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index baafd4962d3e..c05aa8bfe46c 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index dba6e657fdd8..e22684cde4a1 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 30a073700163..69348a9ac33c 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 488240642cc4..ca8130e881a6 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 6e1d84d89653..0b27485cc8fb 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 0e5bb6a67b4c..b10d72a1c6f9 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index c022a98ed456..0449695bc033 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index f1c21945a690..7da027247810 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index a58203ba9362..4c43c1b37913 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index fb0976798a1b..171047a0ad45 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 030cc31229c3..9da5c2aa7e41 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 8bca982cd3d3..1bec991c569d 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 5851031607a8..8079998546d1 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 26c69f4ded8c..ea3256a9f833 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index ebebbe7537d2..b247ebbfec3b 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index fb98a753efe3..c768980912e2 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 35793c26b364..40a0071afcbb 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 8b76bbb479e4..819d95c71f88 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index e33b0a2a33aa..b5538f9f51cf 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 5081cb14d1ef..0dfe81c95542 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index e6e0a9839541..cb6faafff58c 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 57b326d2036d..90e84a82b79f 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index a2672271a57e..773ac801677e 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 608baed75967..f04dff2fa9c9 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 88127900c680..95da139b313d 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 0cd290b807d7..899fc245e265 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 6e51317a1466..c303b5c58d6a 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 8269319d7a81..fb7dfcaee102 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 396a15ba0bfd..27a05250c277 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 800a63937b7f..a2e3ed9966f0 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 70e9627c5e89..ecc8b16b2860 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 4c2e58f9585b..dc7158b7dfde 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 866cabcb2800..c79c8382e0cf 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 8272bfe09c86..1b4603bc8ac8 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index e8c74c6716c0..b1b414859223 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 89cf2afbf35d..7e8eee154b27 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index ee4d990e257b..01187da1134c 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index cf0b363eacbc..b79efcebc97a 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 5ee23d3b7f31..6814ed86601a 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 6902b6be2e0c..256144695d8f 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 5c8b4fc54be9..e27c51d9fae6 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index b2306dcb9e63..13aa09a7b94e 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index edc184ec3e79..359ba8402ac6 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 4717f22ae746..8539631d02ed 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index a5d055e4fe1d..6393e21a637f 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 182d8aa5c28c..a5bf16335a96 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index ab70bf109967..f942f9127f0c 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index fd065a7daef1..0d6fd8b7bb55 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index a5e176570904..71a08b3d72cc 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 24747a721af1..29afcc4092c7 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 80fbe1fa57bf..d09802d7c916 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index b0e82bb18241..d8b721f2249f 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 214b4d8cbb65..67a19b128ee3 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 3562e11961bc..1405cb835fed 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 87627c552de0..cb91340e5190 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 1542e221b27c..e73e0f75f311 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index ed784517652c..16947d16eb4c 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index b2a0ea159c94..57fe4d28340d 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 08646728984e..f72814342920 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index f12b14f3d24b..6e4730c28a55 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 2769c8f18955..594b4ca6b361 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index dfbcab16aa02..321fe8506e5f 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index a655f788c7c7..0dca501ddb42 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index c6e20ea8a1e5..46e84337c6da 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index ed861a90b51e..aa2106aff1d6 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index a6b24a4d4f57..61fc1b554e74 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index b64e5996f30e..31a9c328bb75 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 56944c33153d..2c5e3494ecec 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index e5eeee9d0876..f15523752e58 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index ef78738bd27d..e0dd66d3cecc 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index edf187c984a5..b0e826edf62e 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index c2c808638985..c6aa48aa82c6 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index b1eff28b453f..2236fdda49b6 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index a6a706d46ad2..a220120f5c52 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index baf23ce2d6ff..555087b03587 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 409df6e593cb..8038b1406b40 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 02571744ef2c..901bb5032eb0 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 9fd4be53febd..52006f7d7374 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index e34eb23dbff1..987fd866cac7 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index d404945e17fb..af72da7ab26e 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index e59e6f8bb270..432d8b7162e6 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 3ed5a352dba1..512e0f75236a 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 8d4c5fac74cf..e01c32be4a73 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 6efe9929b63c..3f4b39c458b3 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index d9ef959252a2..8f829b8f7f24 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 98142ac27c34..1f9b4c41f997 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 4536fd1ba6e3..e39ee650cdd7 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index df6963487484..2f8592934a48 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 67c13518c591..02daff5b6afc 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 74362ff40324..8e93df5042d8 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 55f732d3576c..5d82546e3578 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index ab8ced0c956a..8c15ae2c4370 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index 1ba8a269e3f4..75afa7405064 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 09944427355b..0f2e9c18f0e5 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 8a6d690c81f6..b7c7855d1421 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 89cbb97f7132..64c58e065214 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index d7a9edcd9dea..85ac6c42789e 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index b39ffba378fc..8d7de8a10fe9 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index be1382f08543..a4a1a8b1f7ea 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 16dff831ccab..2deb5ea37eef 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 60f9aad4df61..52217fcc4d6d 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 61a855bb13c3..bb8ee083fe1b 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 91c571172341..e3e8b2aadf4c 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 02f154b6f97b..e9571b6e66ef 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 2c0e0f3a084d..30e06f8fce2a 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index c941e51cb34e..7075b7661f1c 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 6eb6e1a57e46..c07e624e70d2 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.32-SNAPSHOT + 2.15.32 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 3a1940a850df..b2f34b485909 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index cff242852121..bee33e65546a 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 3de69e032450..a2ddd438e87c 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 50a4e9a365cf..50ecf9c9f7ef 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index e4b793f41958..50392123676c 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 7fddc286ed23..987aa7e704d4 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 414bba4ef212..27f201476f29 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 2dab2c4f1817..403b89c7456b 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index afbe11886551..43be477cc334 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 96465b17a274..f23b3ccae4da 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 7717bdc2c1ac..fa666f747a4a 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 48bda0791c33..e550e319ca38 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index eeff90ac5e51..cf3027a20d59 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index d69551b90cd5..4cb5ee7d8d4a 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 644d79427eff..382cd6cca9b4 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index c4107af02274..d35e8640abf5 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index f167b9abe73e..8c6724e57a93 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 812baa26fb83..97042c05100a 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 8fca2b145863..a1d1966b73b1 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index c2cfdb463c22..f67368c06e1a 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 6abecb786471..387734d27108 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 90e4e5b32be0..22ce8003beb3 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index c48b83a3890a..9e945ca6c031 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 150e11722f87..964b27d8f785 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 9e8e32421d22..a71ca8b56f57 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index e910457ad985..4017f27dba94 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 133d7b387dea..c287dc619072 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index b9c3a05b9c6d..21263f28c8b8 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index d76d5b45e2aa..1d1f1c07d401 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index f6a62d098acf..3fa3229e29e8 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 2ed7c632714e..d71d09721dcd 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index ef1e6f73146d..53c7b2c94a38 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 4e505d4f62f8..fe35d9d72338 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index dc2442a31fac..4337db0879d7 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 9f44de1f1b74..1da737f2c962 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 6855419d8201..b03bb4c5cbbc 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index cb96891e774f..15a65d0a5188 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index d8e57e07ecd9..3af6e3ade339 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 5f7e7bf909a8..68699e12a0f7 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 714a5a879449..e3c1b9913a48 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index d534c590e760..9a8f47742bc8 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index b26da632e09b..27ffe3544944 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 763aac58d376..3fa7dd82f5ad 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index b86356a9f8fa..3e448112e9dd 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index c8890174feee..d82bc5885af2 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index af957431016c..0e7ad87077ca 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index fb0356d5a3be..794bfd3a2abb 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index c454d33f14f5..42421cb5d1d5 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index db1258f3980d..ba1698e95b37 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index e94e3e109c9f..2a2568fc80f3 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index d3d5b20679cf..f76451db5e90 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index a2dfd2a873d8..2b82875a7f3d 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index e680b0c2bfd2..4cd7c8719e5e 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 97a5b646d86b..375f743589b1 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 6b6f6dfeba3a..ba439e8dc148 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 01c9590941cb..796f06a003c0 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 7d14b9be5459..63eb381d50e7 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 4a2715bb219e..520ae58dfa8c 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 12c81e993e84..170c5326f19c 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 0e83cd356cff..ec39242d10d6 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 621da82f7e4c..8319d1753526 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index bf1418159502..0f923a8de02e 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 47f15e84d79d..fa0c309919ef 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index d0773a03a699..73e34ff58b5a 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32-SNAPSHOT + 2.15.32 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 38e14eb8975c..1ef38dc15987 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.15.32-SNAPSHOT + 2.15.32 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index ed8124453024..b679427432b6 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.15.32-SNAPSHOT + 2.15.32 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 295bf2693d2d..ab34d6cd94f7 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.15.32-SNAPSHOT + 2.15.32 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 07e5dd76568a..17a1556c452f 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.15.32-SNAPSHOT + 2.15.32 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 3b7476ea0eb3..c5fb825af0e2 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.15.32-SNAPSHOT + 2.15.32 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 3cd8ad6f5507..f1900971e57a 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.32-SNAPSHOT + 2.15.32 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 324f0f87b63a..97aeafab7123 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.15.32-SNAPSHOT + 2.15.32 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 44f8b86b0603..8660249bae2a 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.15.32-SNAPSHOT + 2.15.32 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 2ad3887e5b25..891711e81360 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.15.32-SNAPSHOT + 2.15.32 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 5652c544b795..936d6be048fc 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.15.32-SNAPSHOT + 2.15.32 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 3d5cc6128d97..17a81bb7d8a6 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.32-SNAPSHOT + 2.15.32 4.0.0 From 040e854c3884a101d954a9d676f093ff468ec166 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 19 Nov 2020 20:27:32 +0000 Subject: [PATCH 237/339] Update to next snapshot version: 2.15.33-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/pom.xml | 2 +- services/servicecatalogappregistry/pom.xml | 2 +- services/servicediscovery/pom.xml | 2 +- services/servicequotas/pom.xml | 2 +- services/ses/pom.xml | 2 +- services/sesv2/pom.xml | 2 +- services/sfn/pom.xml | 2 +- services/shield/pom.xml | 2 +- services/signer/pom.xml | 2 +- services/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 283 files changed, 283 insertions(+), 283 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 65276be2ea29..f8a486e0c57b 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index c98d298bd159..b102e6e1eab7 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 02ba236f8412..853231081ad1 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.15.32 + 2.15.33-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 73206b5968b4..ad35bbe87444 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index c579df7f4c5c..09aa6cd8ff6d 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.32 + 2.15.33-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 09c5e037e861..cc5bd63965af 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.32 + 2.15.33-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 5e9a68bd1498..7c78acc156ed 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.15.32 + 2.15.33-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 1d5af067d135..cf4b20f3b3cd 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.32 + 2.15.33-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index fef19e3da6a5..6ace3215e13e 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.15.32 + 2.15.33-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 4426b1504368..35de5de52b74 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.32 + 2.15.33-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 75ffc8a4ef19..44fa56966341 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 419d18a7797c..3c9e6037d4c7 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 5e90faf1bfb2..a579a608937c 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.32 + 2.15.33-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index f6203257e55c..c065208cf019 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.32 + 2.15.33-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 16f11947a956..9db810b97ccb 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 18e236e1f1eb..d90d94cb8390 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 950781cae29b..7e23d5e4f2d8 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.32 + 2.15.33-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index f6a5537508f6..410a4ea17c1a 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.15.32 + 2.15.33-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index e493de61ed32..db0dd306c8fb 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 81919a38d403..381c8a04d4bd 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.15.32 + 2.15.33-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 35704e74bcac..75c487d2a60d 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.15.32 + 2.15.33-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index df0f7d634bcd..ec88eb9c08be 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.15.32 + 2.15.33-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index f192d59e0b93..fe0585d72525 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index bff6465b5505..03fd55de97da 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index a1149f2b0ef4..d4e5e759d835 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.32 + 2.15.33-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 39b1d96c6fec..dd35f449dbaf 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.32 + 2.15.33-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 9811567cba9f..a2b91e14ce9e 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.15.32 + 2.15.33-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index 6dee470e6f8c..ea933a64af11 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.15.32 + 2.15.33-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 6ca901acfd11..15de96858079 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.15.32 + 2.15.33-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 2b7035bd3cea..bca3c475985e 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.15.32 + 2.15.33-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 024224fde75e..125c4133b3c5 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 2efa1479d234..8ffec68adda0 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.15.32 + 2.15.33-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index ffe87e63b919..dcc486b7a741 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.15.32 + 2.15.33-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 1839d9a25b14..46cf553582b5 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.32 + 2.15.33-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index f5403d142829..0956c3b0e8e7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.32 + 2.15.33-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index c33b957e18c3..0d306c7c730d 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.32 + 2.15.33-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 86db8422fbc7..6918f92fe634 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.15.32 + 2.15.33-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 7dce626f7c3c..313271e850ca 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.32 + 2.15.33-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index c24e72b2265e..cd93dfe4bd6c 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 081a6aacf58d..755f75598511 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index ff1749736aa4..e344005c2116 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 4cb2385f3ce4..495c4e86a670 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 30bd6193820d..0e613865f40d 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 8ae426269131..e5caa6430de0 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 88e286c3e546..58f47f54bf03 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 3f9ca43c45e7..f92a2a9d3cd2 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 6670122dbe7c..0e3ddc7aabcd 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 8cd8a962de63..61b1061151fe 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 25385c54b3df..27c9711c92b0 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 8fe299a8bf0c..b04163d50b6c 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index f4c4dad9f7a0..ddbc0334e271 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 0ce72a6ac7d3..46252c8f2ae0 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 298dd17a54de..164d12e27b1d 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index baf785deafcf..d7a7dbf6ebed 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 8e5fe88e3ccf..7ded957c369e 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 3596216b9710..9bf75b29668b 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 7355fb87b2a3..4eb73df3b6a5 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 6b1bbe087742..791bba304630 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 4ba7a0b3c972..ab19a66afc0f 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 2ed1dd7022c0..6b8f5f86be6b 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 0f8ac4753a07..9f31c44fd248 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 849985829394..046bd83965b5 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 611359c809ea..5867453aad7b 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 580dc212378e..ce45ddee266a 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index afa6f0c9c293..ebb49ebcd1b0 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 4d9046133379..9b895fe8a907 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index d627b65bc799..ccf4837585e6 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index e5d03f5178f9..6faf39285ae4 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 863b6189cfd5..836ede666477 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 0496de85f582..0b4c361c60e7 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index aa5f5568ac9e..04ccff33d158 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index e7ffb15577d4..b1db0f70b6ab 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 359f5e8f4818..3be8526e09b8 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 3a9910297f4e..e51e44ae2020 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index bbddb8ebec52..f0933c876747 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 9e1ea3d587c6..6d69d3e137df 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 406da8ba610e..ed99b5dcc728 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index f602c48d7291..d41e50b8925e 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index baf2998e24b3..d5521037c40b 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 6c2d40f0fbbf..6dad700bd668 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index e1ef03d23b0f..20c67e10bb88 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 461ffd9c69c1..d27b1b62a273 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 1231dc46b111..4b52ae656291 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 28acf371baaf..f1d875a0aad7 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index d88721c302cf..88c984ba3b0e 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 1275f8a0d783..7883b8a95618 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 028cb47f18e3..cbff3ee11ae0 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 411e68b3ac9c..0565de633092 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index d878dc542bb0..3cfbb41d90d6 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index cc687af945c2..946b5cdab1c2 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index d8e20219fb62..3de2267ec94a 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index d59b8b60f823..72479cba15a9 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index a8e61219fab6..9d3368806292 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 87bad9fcd6d3..11993d1e8f2d 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 62f07b9c2fbf..a5d85c7ea975 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index c0ea1ade3f01..65b6c6b0ca23 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index 43949244c14c..e3073a6c881d 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 815afb8aaf7f..bd9732c07afc 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 803eb3143c45..d9a7226c6c4e 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 0ad2472a1751..277a62dd922f 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 73caebf1b23b..bda9bc83fdd1 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index c05aa8bfe46c..9492972a890f 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index e22684cde4a1..0d9c5f1491fe 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 69348a9ac33c..6d6a595bc73e 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index ca8130e881a6..d74e19c4ec9f 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 0b27485cc8fb..a42b44500ce2 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index b10d72a1c6f9..8115cb706167 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 0449695bc033..a9acf09d1a2e 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 7da027247810..2db275697262 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 4c43c1b37913..a1360d605690 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 171047a0ad45..86f1550f568b 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 9da5c2aa7e41..79235ed268ec 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 1bec991c569d..7b9fd043c892 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 8079998546d1..b69be448768d 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index ea3256a9f833..6e3c04c25217 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index b247ebbfec3b..099398724946 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index c768980912e2..6528a04e38b1 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 40a0071afcbb..bf134d99be65 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 819d95c71f88..2f858c5d3d48 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index b5538f9f51cf..e558f65534d6 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 0dfe81c95542..fcfb9cd4c3a4 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index cb6faafff58c..d4699670c303 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 90e84a82b79f..0758bfb5da9f 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 773ac801677e..397df377ff82 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index f04dff2fa9c9..682f0a7b1893 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 95da139b313d..c5df660a3faa 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 899fc245e265..dfd84cb372b7 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index c303b5c58d6a..c95d5953d5d5 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index fb7dfcaee102..0b49662275b0 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 27a05250c277..49a0ecb81056 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index a2e3ed9966f0..0506e875d2fc 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index ecc8b16b2860..70a72d4c62c9 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index dc7158b7dfde..a5a6a6add325 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index c79c8382e0cf..aa66ce56ef94 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 1b4603bc8ac8..ed4c536eefd6 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index b1b414859223..1b77948e26b0 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 7e8eee154b27..ff5b5a9f0d15 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 01187da1134c..12a3a8190c38 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index b79efcebc97a..5969febdd70d 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 6814ed86601a..7cd24f3ce4e7 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 256144695d8f..c3ba311d7451 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index e27c51d9fae6..882b0f995505 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 13aa09a7b94e..68adb18b0563 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 359ba8402ac6..d99763263d23 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 8539631d02ed..22f58350f0ed 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 6393e21a637f..6a07a6a79551 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index a5bf16335a96..f36c8689bcc8 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index f942f9127f0c..21735ce637bf 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 0d6fd8b7bb55..f63cb4b5ba1d 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 71a08b3d72cc..1494d27dd1bf 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 29afcc4092c7..70ae51557e69 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index d09802d7c916..cd5481bf2f60 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index d8b721f2249f..22e4163aa189 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 67a19b128ee3..c9f42e4f8f00 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 1405cb835fed..81e7b7dd05b7 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index cb91340e5190..296b65e1db75 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index e73e0f75f311..60138fb21f90 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 16947d16eb4c..47e77d7c8db9 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 57fe4d28340d..ed87cebde107 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index f72814342920..7f9391ea9826 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 6e4730c28a55..7eb4de19a750 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 594b4ca6b361..086f1c751412 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 321fe8506e5f..10f14c7bad25 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 0dca501ddb42..41e7ca824eca 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 46e84337c6da..2054287892f3 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index aa2106aff1d6..1dd3ee4a0777 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 61fc1b554e74..5145e62b38c3 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 31a9c328bb75..57a6871c6a4c 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 2c5e3494ecec..fa601bfa1e59 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index f15523752e58..14431d2a84a5 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index e0dd66d3cecc..982ad2b3bc8b 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index b0e826edf62e..6c2c973726f1 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index c6aa48aa82c6..3f168ebc1a36 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 2236fdda49b6..27e25e65dc90 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index a220120f5c52..1de10ec92eec 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 555087b03587..309c5b40f17d 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 8038b1406b40..409b272d91f0 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 901bb5032eb0..36831735222d 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 52006f7d7374..5fbed3f1dccb 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 987fd866cac7..7b8438eaf7d2 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index af72da7ab26e..13f53065ac67 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 432d8b7162e6..12ed6f569f7a 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 512e0f75236a..323b23e77b03 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index e01c32be4a73..18c9185cdc44 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 3f4b39c458b3..b13da7abe81c 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 8f829b8f7f24..1f7372478a79 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 1f9b4c41f997..398aa5bd0760 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index e39ee650cdd7..409f1d52d566 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 2f8592934a48..4180bc914d45 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 02daff5b6afc..0fc9e4510b48 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 8e93df5042d8..f5b9214a3dca 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 5d82546e3578..903a37e68b73 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 8c15ae2c4370..50a5ae4d4da9 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index 75afa7405064..4f1c80d4e747 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 0f2e9c18f0e5..d03aac455de9 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index b7c7855d1421..f92d3cda2e43 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 64c58e065214..069a4130fc2d 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 85ac6c42789e..1b510935597b 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 8d7de8a10fe9..f17ac05de125 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index a4a1a8b1f7ea..af330c3206d8 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 2deb5ea37eef..1d9ba3e7e485 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 52217fcc4d6d..1a9714153995 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index bb8ee083fe1b..71464d96d8ae 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index e3e8b2aadf4c..476a451369bd 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index e9571b6e66ef..23016523df6e 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 30e06f8fce2a..d7ab9d189041 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 7075b7661f1c..1953a026c135 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index c07e624e70d2..b7ab04210802 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.32 + 2.15.33-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index b2f34b485909..ccf16c5aec7c 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index bee33e65546a..5e8d107cabf7 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index a2ddd438e87c..9ccad533ac2e 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 50ecf9c9f7ef..37495a853ed2 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 50392123676c..b9fe77581124 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 987aa7e704d4..f892da531e17 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 27f201476f29..3917bbec7875 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 403b89c7456b..a0cbcc2359e6 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 43be477cc334..6067ec859377 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index f23b3ccae4da..640389477170 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index fa666f747a4a..c7548ebc456d 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index e550e319ca38..ad1c69ad7843 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index cf3027a20d59..f716bff48969 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 4cb5ee7d8d4a..7f18cef2ad7c 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 382cd6cca9b4..5cedbb33cff5 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index d35e8640abf5..e4bf7e1de037 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 8c6724e57a93..7a06214b6e4f 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 97042c05100a..9a3a930d9dc4 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index a1d1966b73b1..1a2850e5a184 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index f67368c06e1a..8dfc5ff0b7be 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 387734d27108..1ce3217469c8 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 22ce8003beb3..1cd1cdd72283 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 9e945ca6c031..eab687f6d514 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 964b27d8f785..ef1ef5c11903 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index a71ca8b56f57..b05ba0543a5c 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 4017f27dba94..037a33e10a75 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index c287dc619072..113455f8e4a5 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 21263f28c8b8..98e8ae66b0df 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index 1d1f1c07d401..bdf2fb8ad9e2 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 3fa3229e29e8..1651033bddf2 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index d71d09721dcd..eddb385663cd 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 53c7b2c94a38..3840319d05e9 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index fe35d9d72338..49df1b8f6802 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 4337db0879d7..473875894e0c 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 1da737f2c962..c2da228d3477 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index b03bb4c5cbbc..d9c9eeee8f55 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 15a65d0a5188..81bab3bffc7e 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 3af6e3ade339..a75d484629ff 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 68699e12a0f7..956d12eac2cc 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index e3c1b9913a48..f693b9abcb79 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 9a8f47742bc8..ead0c39b12ee 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 27ffe3544944..84a604bdf02f 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 3fa7dd82f5ad..59711856f0a5 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 3e448112e9dd..e9efb6722d40 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index d82bc5885af2..e89b067e351e 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 0e7ad87077ca..de4af621dc02 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 794bfd3a2abb..7c780259eae5 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 42421cb5d1d5..e7d08b9bb53b 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index ba1698e95b37..6082dd1502c9 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 2a2568fc80f3..810b148e1dda 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index f76451db5e90..64731da23cf3 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 2b82875a7f3d..55ea7bb5f23c 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 4cd7c8719e5e..8ca482afa0c5 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 375f743589b1..157d1d305ad6 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index ba439e8dc148..7836bc761442 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 796f06a003c0..297c13248db3 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 63eb381d50e7..545c4bfe7c9c 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 520ae58dfa8c..ebe1c7772365 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 170c5326f19c..7b897e358a67 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index ec39242d10d6..bf095501a4cf 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 8319d1753526..a9c8ef133816 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 0f923a8de02e..942d7cbbbaeb 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index fa0c309919ef..0533fa7f66cf 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 73e34ff58b5a..968717813152 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.32 + 2.15.33-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 1ef38dc15987..50572e0081a8 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.15.32 + 2.15.33-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index b679427432b6..55683707ab67 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.15.32 + 2.15.33-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index ab34d6cd94f7..02e0f21313b2 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.15.32 + 2.15.33-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 17a1556c452f..83140801b5f4 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.15.32 + 2.15.33-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index c5fb825af0e2..2b71e5022571 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.15.32 + 2.15.33-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index f1900971e57a..258a635f821b 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.32 + 2.15.33-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 97aeafab7123..2bdc51f619fd 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.15.32 + 2.15.33-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 8660249bae2a..5a181d03ad81 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.15.32 + 2.15.33-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 891711e81360..e39494b44bfc 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.15.32 + 2.15.33-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 936d6be048fc..3debbe299703 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.15.32 + 2.15.33-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 17a81bb7d8a6..7fa07800d46d 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.32 + 2.15.33-SNAPSHOT 4.0.0 From 6e68364be32e166fd1c11a55c0e4e4f989375105 Mon Sep 17 00:00:00 2001 From: Quanzzzz Date: Fri, 23 Oct 2020 16:03:11 -0700 Subject: [PATCH 238/339] Add SSO credentials provider support and related tests. --- .../feature-AWSSingleSignon-9e785be.json | 6 + .../awssdk/annotations/SdkInternalApi.java | 2 +- .../ProfileCredentialsProviderFactory.java | 29 ++ .../internal/ProfileCredentialsUtils.java | 45 ++- .../awssdk/profiles/ProfileFileLocation.java | 44 +-- .../awssdk/profiles/ProfileProperty.java | 22 ++ services/sso/pom.xml | 18 ++ .../sso/auth/ExpiredTokenException.java | 90 ++++++ .../sso/auth/SsoCredentialsProvider.java | 256 ++++++++++++++++++ .../SsoProfileCredentialsProviderFactory.java | 112 ++++++++ .../internal/SessionCredentialsHolder.java | 45 +++ .../sso/internal/SsoAccessTokenProvider.java | 71 +++++ .../sso/internal/SsoTokenFileUtils.java | 78 ++++++ .../sso/auth/SsoCredentialsProviderTest.java | 159 +++++++++++ ...ProfileCredentialsProviderFactoryTest.java | 75 +++++ .../services/sso/auth/SsoProfileTest.java | 94 +++++++ .../internal/SsoAccessTokenProviderTest.java | 145 ++++++++++ .../sso/internal/SsoTokenFileUtilsTest.java | 34 +++ .../awssdk/utils/UserHomeDirectoryUtils.java | 62 +++++ .../testutils/EnvironmentVariableHelper.java | 146 ++++++++++ .../utils/UserHomeDirectoryUtilsTest.java | 37 ++- 21 files changed, 1502 insertions(+), 68 deletions(-) create mode 100644 .changes/next-release/feature-AWSSingleSignon-9e785be.json create mode 100644 core/auth/src/main/java/software/amazon/awssdk/auth/credentials/ProfileCredentialsProviderFactory.java create mode 100644 services/sso/src/main/java/software/amazon/awssdk/services/sso/auth/ExpiredTokenException.java create mode 100644 services/sso/src/main/java/software/amazon/awssdk/services/sso/auth/SsoCredentialsProvider.java create mode 100644 services/sso/src/main/java/software/amazon/awssdk/services/sso/auth/SsoProfileCredentialsProviderFactory.java create mode 100644 services/sso/src/main/java/software/amazon/awssdk/services/sso/internal/SessionCredentialsHolder.java create mode 100644 services/sso/src/main/java/software/amazon/awssdk/services/sso/internal/SsoAccessTokenProvider.java create mode 100644 services/sso/src/main/java/software/amazon/awssdk/services/sso/internal/SsoTokenFileUtils.java create mode 100644 services/sso/src/test/java/software/amazon/awssdk/services/sso/auth/SsoCredentialsProviderTest.java create mode 100644 services/sso/src/test/java/software/amazon/awssdk/services/sso/auth/SsoProfileCredentialsProviderFactoryTest.java create mode 100644 services/sso/src/test/java/software/amazon/awssdk/services/sso/auth/SsoProfileTest.java create mode 100644 services/sso/src/test/java/software/amazon/awssdk/services/sso/internal/SsoAccessTokenProviderTest.java create mode 100644 services/sso/src/test/java/software/amazon/awssdk/services/sso/internal/SsoTokenFileUtilsTest.java create mode 100644 utils/src/main/java/software/amazon/awssdk/utils/UserHomeDirectoryUtils.java create mode 100644 utils/src/test/java/software/amazon/awssdk/testutils/EnvironmentVariableHelper.java rename core/profiles/src/test/java/software/amazon/awssdk/profiles/ProfileFileLocationTest.java => utils/src/test/java/software/amazon/awssdk/utils/UserHomeDirectoryUtilsTest.java (73%) diff --git a/.changes/next-release/feature-AWSSingleSignon-9e785be.json b/.changes/next-release/feature-AWSSingleSignon-9e785be.json new file mode 100644 index 000000000000..fdbc37435586 --- /dev/null +++ b/.changes/next-release/feature-AWSSingleSignon-9e785be.json @@ -0,0 +1,6 @@ +{ + "category": "AWS Single Sign-on", + "contributor": "", + "type": "feature", + "description": "Added support for retrieving SSO credentials: https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-sso.html." +} diff --git a/core/annotations/src/main/java/software/amazon/awssdk/annotations/SdkInternalApi.java b/core/annotations/src/main/java/software/amazon/awssdk/annotations/SdkInternalApi.java index 16117b3bbd1b..fe14c2146895 100644 --- a/core/annotations/src/main/java/software/amazon/awssdk/annotations/SdkInternalApi.java +++ b/core/annotations/src/main/java/software/amazon/awssdk/annotations/SdkInternalApi.java @@ -19,7 +19,7 @@ import java.lang.annotation.Target; /** - * Marker interface for 'internal' APIs that should not be used outside the core module. Breaking + * Marker interface for 'internal' APIs that should not be used outside the same module. Breaking * changes can and will be introduced to elements marked as {@link SdkInternalApi}. Users of the SDK * and the generated clients themselves should not depend on any packages, types, fields, * constructors, or methods with this annotation. diff --git a/core/auth/src/main/java/software/amazon/awssdk/auth/credentials/ProfileCredentialsProviderFactory.java b/core/auth/src/main/java/software/amazon/awssdk/auth/credentials/ProfileCredentialsProviderFactory.java new file mode 100644 index 000000000000..8d146280f106 --- /dev/null +++ b/core/auth/src/main/java/software/amazon/awssdk/auth/credentials/ProfileCredentialsProviderFactory.java @@ -0,0 +1,29 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.auth.credentials; + +import software.amazon.awssdk.annotations.SdkProtectedApi; +import software.amazon.awssdk.profiles.Profile; + +/** + * A factory for {@link AwsCredentialsProvider}s, which can be used to create different credentials providers with + * different Profile properties. + */ +@FunctionalInterface +@SdkProtectedApi +public interface ProfileCredentialsProviderFactory { + AwsCredentialsProvider create(Profile profile); +} diff --git a/core/auth/src/main/java/software/amazon/awssdk/auth/credentials/internal/ProfileCredentialsUtils.java b/core/auth/src/main/java/software/amazon/awssdk/auth/credentials/internal/ProfileCredentialsUtils.java index 2c432856b713..202b0fbad000 100644 --- a/core/auth/src/main/java/software/amazon/awssdk/auth/credentials/internal/ProfileCredentialsUtils.java +++ b/core/auth/src/main/java/software/amazon/awssdk/auth/credentials/internal/ProfileCredentialsUtils.java @@ -35,6 +35,7 @@ import software.amazon.awssdk.auth.credentials.EnvironmentVariableCredentialsProvider; import software.amazon.awssdk.auth.credentials.InstanceProfileCredentialsProvider; import software.amazon.awssdk.auth.credentials.ProcessCredentialsProvider; +import software.amazon.awssdk.auth.credentials.ProfileCredentialsProviderFactory; import software.amazon.awssdk.auth.credentials.StaticCredentialsProvider; import software.amazon.awssdk.auth.credentials.SystemPropertyCredentialsProvider; import software.amazon.awssdk.core.internal.util.ClassLoaderHelper; @@ -50,6 +51,8 @@ public final class ProfileCredentialsUtils { private static final String STS_PROFILE_CREDENTIALS_PROVIDER_FACTORY = "software.amazon.awssdk.services.sts.internal.StsProfileCredentialsProviderFactory"; + private static final String SSO_PROFILE_CREDENTIALS_PROVIDER_FACTORY = + "software.amazon.awssdk.services.sso.auth.SsoProfileCredentialsProviderFactory"; private final Profile profile; @@ -95,19 +98,22 @@ public Optional credentialsProvider() { * @param children The child profiles that source credentials from this profile. */ private Optional credentialsProvider(Set children) { + if (properties.containsKey(ProfileProperty.ROLE_ARN) && properties.containsKey(ProfileProperty.WEB_IDENTITY_TOKEN_FILE)) { + return Optional.ofNullable(roleAndWebIdentityTokenProfileCredentialsProvider()); + } + + if (properties.containsKey(ProfileProperty.SSO_ROLE_NAME) || properties.containsKey(ProfileProperty.SSO_ACCOUNT_ID) + || properties.containsKey(ProfileProperty.SSO_REGION) || properties.containsKey(ProfileProperty.SSO_START_URL)) { + return Optional.ofNullable(ssoProfileCredentialsProvider()); + } + if (properties.containsKey(ProfileProperty.ROLE_ARN)) { boolean hasSourceProfile = properties.containsKey(ProfileProperty.SOURCE_PROFILE); boolean hasCredentialSource = properties.containsKey(ProfileProperty.CREDENTIAL_SOURCE); - boolean hasWebIdentityTokenFile = properties.containsKey(ProfileProperty.WEB_IDENTITY_TOKEN_FILE); - boolean hasRoleArn = properties.containsKey(ProfileProperty.ROLE_ARN); Validate.validState(!(hasSourceProfile && hasCredentialSource), "Invalid profile file: profile has both %s and %s.", ProfileProperty.SOURCE_PROFILE, ProfileProperty.CREDENTIAL_SOURCE); - if (hasWebIdentityTokenFile && hasRoleArn) { - return Optional.ofNullable(roleAndWebIdentityTokenProfileCredentialsProvider()); - } - if (hasSourceProfile) { return Optional.ofNullable(roleAndSourceProfileBasedProfileCredentialsProvider(children)); } @@ -164,6 +170,17 @@ private AwsCredentialsProvider credentialProcessCredentialsProvider() { .build(); } + /** + * Create the SSO credentials provider based on the related profile properties. + */ + private AwsCredentialsProvider ssoProfileCredentialsProvider() { + requireProperties(ProfileProperty.SSO_ACCOUNT_ID, + ProfileProperty.SSO_REGION, + ProfileProperty.SSO_ROLE_NAME, + ProfileProperty.SSO_START_URL); + return ssoCredentialsProviderFactory().create(profile); + } + private AwsCredentialsProvider roleAndWebIdentityTokenProfileCredentialsProvider() { requireProperties(ProfileProperty.ROLE_ARN, ProfileProperty.WEB_IDENTITY_TOKEN_FILE); @@ -263,4 +280,20 @@ private ChildProfileCredentialsProviderFactory stsCredentialsProviderFactory() { throw new IllegalStateException("Failed to create the '" + name + "' profile credentials provider.", e); } } + + /** + * Load the factory that can be used to create the SSO credentials provider, assuming it is on the classpath. + */ + private ProfileCredentialsProviderFactory ssoCredentialsProviderFactory() { + try { + Class ssoProfileCredentialsProviderFactory = ClassLoaderHelper.loadClass(SSO_PROFILE_CREDENTIALS_PROVIDER_FACTORY, + getClass()); + return (ProfileCredentialsProviderFactory) ssoProfileCredentialsProviderFactory.getConstructor().newInstance(); + } catch (ClassNotFoundException e) { + throw new IllegalStateException("To use Sso related properties in the '" + name + "' profile, the 'sso' service " + + "module must be on the class path.", e); + } catch (NoSuchMethodException | InvocationTargetException | InstantiationException | IllegalAccessException e) { + throw new IllegalStateException("Failed to create the '" + name + "' profile credentials provider.", e); + } + } } diff --git a/core/profiles/src/main/java/software/amazon/awssdk/profiles/ProfileFileLocation.java b/core/profiles/src/main/java/software/amazon/awssdk/profiles/ProfileFileLocation.java index a3f5dc63db15..bbb5fea32535 100644 --- a/core/profiles/src/main/java/software/amazon/awssdk/profiles/ProfileFileLocation.java +++ b/core/profiles/src/main/java/software/amazon/awssdk/profiles/ProfileFileLocation.java @@ -15,16 +15,15 @@ package software.amazon.awssdk.profiles; +import static software.amazon.awssdk.utils.UserHomeDirectoryUtils.userHomeDirectory; + import java.nio.file.FileSystems; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.util.Optional; import java.util.regex.Pattern; -import software.amazon.awssdk.annotations.SdkInternalApi; import software.amazon.awssdk.annotations.SdkPublicApi; -import software.amazon.awssdk.utils.JavaSystemSetting; -import software.amazon.awssdk.utils.StringUtils; /** * A collection of static methods for loading the location for configuration and credentials files. @@ -46,7 +45,7 @@ private ProfileFileLocation() { public static Path configurationFilePath() { return resolveProfileFilePath( ProfileFileSystemSetting.AWS_CONFIG_FILE.getStringValue() - .orElse(Paths.get(ProfileFileLocation.userHomeDirectory(), + .orElse(Paths.get(userHomeDirectory(), ".aws", "config").toString())); } @@ -78,43 +77,6 @@ public static Optional credentialsFileLocation() { return resolveIfExists(credentialsFilePath()); } - /** - * Load the home directory that should be used for the profile file. This will check the same environment variables as the CLI - * to identify the location of home, before falling back to java-specific resolution. - */ - @SdkInternalApi - static String userHomeDirectory() { - boolean isWindows = JavaSystemSetting.OS_NAME.getStringValue() - .map(s -> StringUtils.lowerCase(s).startsWith("windows")) - .orElse(false); - - // To match the logic of the CLI we have to consult environment variables directly. - // CHECKSTYLE:OFF - String home = System.getenv("HOME"); - - if (home != null) { - return home; - } - - if (isWindows) { - String userProfile = System.getenv("USERPROFILE"); - - if (userProfile != null) { - return userProfile; - } - - String homeDrive = System.getenv("HOMEDRIVE"); - String homePath = System.getenv("HOMEPATH"); - - if (homeDrive != null && homePath != null) { - return homeDrive + homePath; - } - } - - return JavaSystemSetting.USER_HOME.getStringValueOrThrow(); - // CHECKSTYLE:ON - } - private static Path resolveProfileFilePath(String path) { // Resolve ~ using the CLI's logic, not whatever Java decides to do with it. if (HOME_DIRECTORY_PATTERN.matcher(path).matches()) { diff --git a/core/profiles/src/main/java/software/amazon/awssdk/profiles/ProfileProperty.java b/core/profiles/src/main/java/software/amazon/awssdk/profiles/ProfileProperty.java index 6f1070ea8a2f..cc7b886495f8 100644 --- a/core/profiles/src/main/java/software/amazon/awssdk/profiles/ProfileProperty.java +++ b/core/profiles/src/main/java/software/amazon/awssdk/profiles/ProfileProperty.java @@ -99,6 +99,28 @@ public final class ProfileProperty { */ public static final String RETRY_MODE = "retry_mode"; + /** + * Aws region where the SSO directory for the given 'sso_start_url' is hosted. This is independent of the general 'region'. + */ + public static final String SSO_REGION = "sso_region"; + + /** + * The corresponding IAM role in the AWS account that temporary AWS credentials will be resolved for. + */ + public static final String SSO_ROLE_NAME = "sso_role_name"; + + /** + * AWS account ID that temporary AWS credentials will be resolved for. + */ + public static final String SSO_ACCOUNT_ID = "sso_account_id"; + + /** + * Start url provided by the SSO service via the console. It's the main URL used for login to the SSO directory. + * This is also referred to as the "User Portal URL" and can also be used to login to the SSO web interface for AWS + * console access. + */ + public static final String SSO_START_URL = "sso_start_url"; + private ProfileProperty() { } } diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 84a604bdf02f..f87e0510aaad 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -56,5 +56,23 @@ aws-json-protocol ${awsjavasdk.version} + + software.amazon.awssdk + profiles + ${awsjavasdk.version} + compile + + + + + com.google.jimfs + jimfs + test + + + com.google.guava + guava + test + diff --git a/services/sso/src/main/java/software/amazon/awssdk/services/sso/auth/ExpiredTokenException.java b/services/sso/src/main/java/software/amazon/awssdk/services/sso/auth/ExpiredTokenException.java new file mode 100644 index 000000000000..9284bcace31e --- /dev/null +++ b/services/sso/src/main/java/software/amazon/awssdk/services/sso/auth/ExpiredTokenException.java @@ -0,0 +1,90 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.sso.auth; + +import java.util.Arrays; +import java.util.Collections; +import java.util.List; +import software.amazon.awssdk.annotations.SdkPublicApi; +import software.amazon.awssdk.core.SdkField; +import software.amazon.awssdk.core.SdkPojo; +import software.amazon.awssdk.core.exception.SdkClientException; + +/** + *

+ * The session token that was passed is expired or is not valid. + *

+ */ +@SdkPublicApi +public final class ExpiredTokenException extends SdkClientException { + + private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList()); + + private ExpiredTokenException(Builder b) { + super(b); + } + + @Override + public Builder toBuilder() { + return new BuilderImpl(this); + } + + public static Builder builder() { + return new BuilderImpl(); + } + + public interface Builder extends SdkPojo, SdkClientException.Builder { + @Override + Builder message(String message); + + @Override + Builder cause(Throwable cause); + + @Override + ExpiredTokenException build(); + } + + static final class BuilderImpl extends SdkClientException.BuilderImpl implements Builder { + private BuilderImpl() { + } + + private BuilderImpl(ExpiredTokenException model) { + super(model); + } + + @Override + public BuilderImpl message(String message) { + this.message = message; + return this; + } + + @Override + public BuilderImpl cause(Throwable cause) { + this.cause = cause; + return this; + } + + @Override + public ExpiredTokenException build() { + return new ExpiredTokenException(this); + } + + @Override + public List> sdkFields() { + return SDK_FIELDS; + } + } +} diff --git a/services/sso/src/main/java/software/amazon/awssdk/services/sso/auth/SsoCredentialsProvider.java b/services/sso/src/main/java/software/amazon/awssdk/services/sso/auth/SsoCredentialsProvider.java new file mode 100644 index 000000000000..3663771fe572 --- /dev/null +++ b/services/sso/src/main/java/software/amazon/awssdk/services/sso/auth/SsoCredentialsProvider.java @@ -0,0 +1,256 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.sso.auth; + +import static software.amazon.awssdk.utils.Validate.notNull; + +import java.time.Duration; +import java.time.Instant; +import java.util.Optional; +import java.util.function.Consumer; +import java.util.function.Supplier; +import software.amazon.awssdk.annotations.SdkPublicApi; +import software.amazon.awssdk.auth.credentials.AwsCredentials; +import software.amazon.awssdk.auth.credentials.AwsCredentialsProvider; +import software.amazon.awssdk.auth.credentials.AwsSessionCredentials; +import software.amazon.awssdk.services.sso.SsoClient; +import software.amazon.awssdk.services.sso.internal.SessionCredentialsHolder; +import software.amazon.awssdk.services.sso.model.GetRoleCredentialsRequest; +import software.amazon.awssdk.services.sso.model.RoleCredentials; +import software.amazon.awssdk.utils.SdkAutoCloseable; +import software.amazon.awssdk.utils.cache.CachedSupplier; +import software.amazon.awssdk.utils.cache.NonBlocking; +import software.amazon.awssdk.utils.cache.RefreshResult; + +/** + *

+ * An implementation of {@link AwsCredentialsProvider} that is extended within this package to provide support for + * periodically updating session credentials. This credential provider maintains a {@link Supplier} + * for a {@link SsoClient#getRoleCredentials(Consumer)} call to retrieve the credentials needed. + *

+ * + *

+ * While creating the {@link GetRoleCredentialsRequest}, an access token is needed to be resolved from a token file. + * In default, the token is assumed unexpired, and if it's expired then an {@link ExpiredTokenException} will be thrown. + * If the users want to change the behavior of this, please implement your own token resolving logic and override the + * {@link Builder#refreshRequest). + *

+ * + *

+ * When credentials get close to expiration, this class will attempt to update them asynchronously. If the credentials + * end up expiring, this class will block all calls to {@link #resolveCredentials()} until the credentials can be updated. + *

+ */ +@SdkPublicApi +public final class SsoCredentialsProvider implements AwsCredentialsProvider, SdkAutoCloseable { + + private static final Duration DEFAULT_STALE_TIME = Duration.ofMinutes(1); + private static final Duration DEFAULT_PREFETCH_TIME = Duration.ofMinutes(5); + + private static final String ASYNC_THREAD_NAME = "sdk-sso-credentials-provider"; + + private final Supplier getRoleCredentialsRequestSupplier; + + private final SsoClient ssoClient; + private final Duration staleTime; + private final Duration prefetchTime; + + private final CachedSupplier credentialCache; + + /** + * @see #builder() + */ + private SsoCredentialsProvider(BuilderImpl builder) { + this.ssoClient = notNull(builder.ssoClient, "SSO client must not be null."); + this.getRoleCredentialsRequestSupplier = builder.getRoleCredentialsRequestSupplier; + + this.staleTime = Optional.ofNullable(builder.staleTime).orElse(DEFAULT_STALE_TIME); + this.prefetchTime = Optional.ofNullable(builder.prefetchTime).orElse(DEFAULT_PREFETCH_TIME); + + CachedSupplier.Builder cacheBuilder = CachedSupplier.builder(this::updateSsoCredentials); + if (builder.asyncCredentialUpdateEnabled) { + cacheBuilder.prefetchStrategy(new NonBlocking(ASYNC_THREAD_NAME)); + } + + this.credentialCache = cacheBuilder.build(); + } + + /** + * Update the expiring session SSO credentials by calling SSO. Invoked by {@link CachedSupplier} when the credentials + * are close to expiring. + */ + private RefreshResult updateSsoCredentials() { + SessionCredentialsHolder credentials = getUpdatedCredentials(ssoClient); + Instant acutalTokenExpiration = credentials.sessionCredentialsExpiration(); + + return RefreshResult.builder(credentials) + .staleTime(acutalTokenExpiration.minus(staleTime)) + .prefetchTime(acutalTokenExpiration.minus(prefetchTime)) + .build(); + } + + private SessionCredentialsHolder getUpdatedCredentials(SsoClient ssoClient) { + GetRoleCredentialsRequest request = getRoleCredentialsRequestSupplier.get(); + notNull(request, "GetRoleCredentialsRequest can't be null."); + RoleCredentials roleCredentials = ssoClient.getRoleCredentials(request).roleCredentials(); + AwsSessionCredentials sessionCredentials = AwsSessionCredentials.create(roleCredentials.accessKeyId(), + roleCredentials.secretAccessKey(), + roleCredentials.sessionToken()); + return new SessionCredentialsHolder(sessionCredentials, Instant.ofEpochMilli(roleCredentials.expiration())); + } + + /** + * The amount of time, relative to session token expiration, that the cached credentials are considered stale and + * should no longer be used. All threads will block until the value is updated. + */ + public Duration staleTime() { + return staleTime; + } + + /** + * The amount of time, relative to session token expiration, that the cached credentials are considered close to stale + * and should be updated. + */ + public Duration prefetchTime() { + return prefetchTime; + } + + /** + * Get a builder for creating a custom {@link SsoCredentialsProvider}. + */ + public static BuilderImpl builder() { + return new BuilderImpl(); + } + + @Override + public AwsCredentials resolveCredentials() { + return credentialCache.get().sessionCredentials(); + } + + @Override + public void close() { + credentialCache.close(); + } + + /** + * A builder for creating a custom {@link SsoCredentialsProvider}. + */ + public interface Builder { + + /** + * Configure the {@link SsoClient} to use when calling SSO to update the session. This client should not be shut + * down as long as this credentials provider is in use. + */ + Builder ssoClient(SsoClient ssoclient); + + /** + * Configure whether the provider should fetch credentials asynchronously in the background. If this is true, + * threads are less likely to block when credentials are loaded, but addtiional resources are used to maintian + * the provider. + * + *

By default, this is disabled.

+ */ + Builder asyncCredentialUpdateEnabled(Boolean asyncCredentialUpdateEnabled); + + /** + * Configure the amount of time, relative to SSO session token expiration, that the cached credentials are considered + * stale and should no longer be used. All threads will block until the value is updated. + * + *

By default, this is 1 minute.

+ */ + Builder staleTime(Duration staleTime); + + /** + * Configure the amount of time, relative to SSO session token expiration, that the cached credentials are considered + * close to stale and should be updated. See {@link #asyncCredentialUpdateEnabled}. + * + *

By default, this is 5 minutes.

+ */ + Builder prefetchTime(Duration prefetchTime); + + /** + * Configure the {@link GetRoleCredentialsRequest} that should be periodically sent to the SSO service to update the + * credentials. + */ + Builder refreshRequest(GetRoleCredentialsRequest getRoleCredentialsRequest); + + /** + * Similar to {@link #refreshRequest(GetRoleCredentialsRequest)}, but takes a {@link Supplier} to supply the request to + * SSO. + */ + Builder refreshRequest(Supplier getRoleCredentialsRequestSupplier); + + /** + * Create a {@link SsoCredentialsProvider} using the configuration applied to this builder. + * @return + */ + SsoCredentialsProvider build(); + + } + + protected static final class BuilderImpl implements Builder { + private Boolean asyncCredentialUpdateEnabled = false; + private SsoClient ssoClient; + private Duration staleTime; + private Duration prefetchTime; + private Supplier getRoleCredentialsRequestSupplier; + + BuilderImpl() { + + } + + @Override + public Builder ssoClient(SsoClient ssoClient) { + this.ssoClient = ssoClient; + return this; + } + + @Override + public Builder asyncCredentialUpdateEnabled(Boolean asyncCredentialUpdateEnabled) { + this.asyncCredentialUpdateEnabled = asyncCredentialUpdateEnabled; + return this; + } + + @Override + public Builder staleTime(Duration staleTime) { + this.staleTime = staleTime; + return this; + } + + @Override + public Builder prefetchTime(Duration prefetchTime) { + this.prefetchTime = prefetchTime; + return this; + } + + @Override + public Builder refreshRequest(GetRoleCredentialsRequest getRoleCredentialsRequest) { + return refreshRequest(() -> getRoleCredentialsRequest); + } + + @Override + public Builder refreshRequest(Supplier getRoleCredentialsRequestSupplier) { + this.getRoleCredentialsRequestSupplier = getRoleCredentialsRequestSupplier; + return this; + } + + @Override + public SsoCredentialsProvider build() { + return new SsoCredentialsProvider(this); + } + + } +} diff --git a/services/sso/src/main/java/software/amazon/awssdk/services/sso/auth/SsoProfileCredentialsProviderFactory.java b/services/sso/src/main/java/software/amazon/awssdk/services/sso/auth/SsoProfileCredentialsProviderFactory.java new file mode 100644 index 000000000000..c7745714f258 --- /dev/null +++ b/services/sso/src/main/java/software/amazon/awssdk/services/sso/auth/SsoProfileCredentialsProviderFactory.java @@ -0,0 +1,112 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.sso.auth; + +import static software.amazon.awssdk.services.sso.internal.SsoTokenFileUtils.generateCachedTokenPath; +import static software.amazon.awssdk.utils.UserHomeDirectoryUtils.userHomeDirectory; + +import java.nio.file.Paths; +import java.util.function.Supplier; +import software.amazon.awssdk.annotations.SdkProtectedApi; +import software.amazon.awssdk.annotations.SdkTestInternalApi; +import software.amazon.awssdk.auth.credentials.AnonymousCredentialsProvider; +import software.amazon.awssdk.auth.credentials.AwsCredentials; +import software.amazon.awssdk.auth.credentials.AwsCredentialsProvider; +import software.amazon.awssdk.auth.credentials.ProfileCredentialsProviderFactory; +import software.amazon.awssdk.profiles.Profile; +import software.amazon.awssdk.profiles.ProfileProperty; +import software.amazon.awssdk.regions.Region; +import software.amazon.awssdk.services.sso.SsoClient; +import software.amazon.awssdk.services.sso.internal.SsoAccessTokenProvider; +import software.amazon.awssdk.services.sso.model.GetRoleCredentialsRequest; +import software.amazon.awssdk.utils.IoUtils; +import software.amazon.awssdk.utils.SdkAutoCloseable; + +/** + * An implementation of {@link ProfileCredentialsProviderFactory} that allows users to get SSO role credentials using the startUrl + * specified in either a {@link Profile} or environment variables. + */ +@SdkProtectedApi +public class SsoProfileCredentialsProviderFactory implements ProfileCredentialsProviderFactory { + + private static final String TOKEN_DIRECTORY = Paths.get(userHomeDirectory(), ".aws", "sso", "cache").toString(); + + /** + * Default method to create the {@link SsoProfileCredentialsProvider} with a {@link SsoAccessTokenProvider} + * object created with the start url from {@link Profile} or environment variables and the default token file directory. + */ + public AwsCredentialsProvider create(Profile profile) { + return create(profile, new SsoAccessTokenProvider( + generateCachedTokenPath(profile.properties().get(ProfileProperty.SSO_START_URL), TOKEN_DIRECTORY))); + } + + /** + * Alternative method to create the {@link SsoProfileCredentialsProvider} with a customized + * {@link SsoAccessTokenProvider}. This method is only used for testing. + */ + @SdkTestInternalApi + public AwsCredentialsProvider create(Profile profile, + SsoAccessTokenProvider tokenProvider) { + return new SsoProfileCredentialsProvider(profile, tokenProvider); + } + + /** + * A wrapper for a {@link SsoCredentialsProvider} that is returned by this factory when {@link #create(Profile)} or + * {@link #create(Profile, SsoAccessTokenProvider)} is invoked. This wrapper is important because it ensures the parent + * credentials provider is closed when the sso credentials provider is no longer needed. + */ + private static final class SsoProfileCredentialsProvider implements AwsCredentialsProvider, SdkAutoCloseable { + private final SsoClient ssoClient; + private final SsoCredentialsProvider credentialsProvider; + + private SsoProfileCredentialsProvider(Profile profile, + SsoAccessTokenProvider tokenProvider) { + String ssoAccountId = profile.properties().get(ProfileProperty.SSO_ACCOUNT_ID); + String ssoRoleName = profile.properties().get(ProfileProperty.SSO_ROLE_NAME); + String ssoRegion = profile.properties().get(ProfileProperty.SSO_REGION); + + this.ssoClient = SsoClient.builder() + .credentialsProvider(AnonymousCredentialsProvider.create()) + .region(Region.of(ssoRegion)) + .build(); + + GetRoleCredentialsRequest request = GetRoleCredentialsRequest.builder() + .accountId(ssoAccountId) + .roleName(ssoRoleName) + .build(); + + Supplier supplier = () -> request.toBuilder() + .accessToken(tokenProvider.resolveAccessToken()).build(); + + + this.credentialsProvider = SsoCredentialsProvider.builder() + .ssoClient(ssoClient) + .refreshRequest(supplier) + .build(); + } + + @Override + public AwsCredentials resolveCredentials() { + return this.credentialsProvider.resolveCredentials(); + } + + @Override + public void close() { + IoUtils.closeQuietly(credentialsProvider, null); + IoUtils.closeQuietly(ssoClient, null); + } + } +} diff --git a/services/sso/src/main/java/software/amazon/awssdk/services/sso/internal/SessionCredentialsHolder.java b/services/sso/src/main/java/software/amazon/awssdk/services/sso/internal/SessionCredentialsHolder.java new file mode 100644 index 000000000000..b114917a81bb --- /dev/null +++ b/services/sso/src/main/java/software/amazon/awssdk/services/sso/internal/SessionCredentialsHolder.java @@ -0,0 +1,45 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.sso.internal; + +import java.time.Instant; +import software.amazon.awssdk.annotations.SdkInternalApi; +import software.amazon.awssdk.annotations.ThreadSafe; +import software.amazon.awssdk.auth.credentials.AwsSessionCredentials; + +/** + * Holder class used to atomically store a session with its expiration time. + */ +@SdkInternalApi +@ThreadSafe +public final class SessionCredentialsHolder { + + private final AwsSessionCredentials sessionCredentials; + private final Instant sessionCredentialsExpiration; + + public SessionCredentialsHolder(AwsSessionCredentials credentials, Instant expiration) { + this.sessionCredentials = credentials; + this.sessionCredentialsExpiration = expiration; + } + + public AwsSessionCredentials sessionCredentials() { + return sessionCredentials; + } + + public Instant sessionCredentialsExpiration() { + return sessionCredentialsExpiration; + } +} diff --git a/services/sso/src/main/java/software/amazon/awssdk/services/sso/internal/SsoAccessTokenProvider.java b/services/sso/src/main/java/software/amazon/awssdk/services/sso/internal/SsoAccessTokenProvider.java new file mode 100644 index 000000000000..242208af9356 --- /dev/null +++ b/services/sso/src/main/java/software/amazon/awssdk/services/sso/internal/SsoAccessTokenProvider.java @@ -0,0 +1,71 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.sso.internal; + +import static java.time.temporal.ChronoUnit.MINUTES; + +import com.fasterxml.jackson.databind.JsonNode; +import java.io.IOException; +import java.io.InputStream; +import java.io.UncheckedIOException; +import java.nio.file.Files; +import java.nio.file.Path; +import java.time.Instant; +import software.amazon.awssdk.annotations.SdkInternalApi; +import software.amazon.awssdk.core.util.json.JacksonUtils; +import software.amazon.awssdk.services.sso.auth.ExpiredTokenException; +import software.amazon.awssdk.services.sso.auth.SsoCredentialsProvider; +import software.amazon.awssdk.utils.IoUtils; + +/** + * Resolve the access token from the cached token file. If the token has expired then throw out an exception to ask the users to + * update the token. This provider can also be replaced by any other implementation of resolving the access token. The users can + * resolve the access token in their own way and add it to the {@link SsoCredentialsProvider.Builder#refreshRequest}. + */ +@SdkInternalApi +public final class SsoAccessTokenProvider { + + private Path cachedTokenFilePath; + + public SsoAccessTokenProvider(Path cachedTokenFilePath) { + this.cachedTokenFilePath = cachedTokenFilePath; + } + + public String resolveAccessToken() { + try (InputStream cachedTokenStream = Files.newInputStream(cachedTokenFilePath)) { + return getTokenFromJson(IoUtils.toUtf8String(cachedTokenStream)); + } catch (IOException e) { + throw new UncheckedIOException(e); + } + } + + private String getTokenFromJson(String json) { + JsonNode jsonNode = JacksonUtils.sensitiveJsonNodeOf(json); + + if (validateToken(jsonNode.get("expiresAt").asText())) { + throw ExpiredTokenException.builder().message("The SSO session associated with this profile has expired or is" + + " otherwise invalid. To refresh this SSO session run aws sso" + + " login with the corresponding profile.").build(); + } + + return jsonNode.get("accessToken").asText(); + } + + private boolean validateToken(String expirationTime) { + return Instant.now().isAfter(Instant.parse(expirationTime).minus(15, MINUTES)); + } + +} diff --git a/services/sso/src/main/java/software/amazon/awssdk/services/sso/internal/SsoTokenFileUtils.java b/services/sso/src/main/java/software/amazon/awssdk/services/sso/internal/SsoTokenFileUtils.java new file mode 100644 index 000000000000..7ddd353bb7b2 --- /dev/null +++ b/services/sso/src/main/java/software/amazon/awssdk/services/sso/internal/SsoTokenFileUtils.java @@ -0,0 +1,78 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.sso.internal; + +import static software.amazon.awssdk.utils.UserHomeDirectoryUtils.userHomeDirectory; + +import java.nio.charset.StandardCharsets; +import java.nio.file.FileSystems; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.security.MessageDigest; +import java.security.NoSuchAlgorithmException; +import java.util.regex.Pattern; +import software.amazon.awssdk.annotations.SdkInternalApi; +import software.amazon.awssdk.core.exception.SdkClientException; +import software.amazon.awssdk.utils.BinaryUtils; +import software.amazon.awssdk.utils.Validate; + +/** + * A tool class helps generating the path of cached token file. + */ +@SdkInternalApi +public class SsoTokenFileUtils { + + private static final Pattern HOME_DIRECTORY_PATTERN = + Pattern.compile("^~(/|" + Pattern.quote(FileSystems.getDefault().getSeparator()) + ").*$"); + + private SsoTokenFileUtils() { + + } + + /** + * Generate the cached file name by generating the SHA1 Hex Digest of the UTF-8 encoded start url bytes. + */ + public static Path generateCachedTokenPath(String startUrl, String tokenDirectory) { + Validate.notNull(startUrl, "The start url shouldn't be null."); + byte[] startUrlBytes = startUrl.getBytes(StandardCharsets.UTF_8); + String encodedUrl = new String(startUrlBytes, StandardCharsets.UTF_8); + return resolveProfileFilePath(Paths.get(tokenDirectory, sha1Hex(encodedUrl) + ".json").toString()); + } + + /** + * Use {@link MessageDigest} instance to encrypt the input String. + */ + private static String sha1Hex(String input) { + MessageDigest md; + try { + md = MessageDigest.getInstance("SHA-1"); + md.update(input.getBytes(StandardCharsets.UTF_8)); + } catch (NoSuchAlgorithmException e) { + throw SdkClientException.builder().message("Unable to use \"SHA-1\" algorithm.").cause(e).build(); + } + + return BinaryUtils.toHex(md.digest()); + } + + private static Path resolveProfileFilePath(String path) { + // Resolve ~ using the CLI's logic, not whatever Java decides to do with it. + if (HOME_DIRECTORY_PATTERN.matcher(path).matches()) { + path = userHomeDirectory() + path.substring(1); + } + + return Paths.get(path); + } +} diff --git a/services/sso/src/test/java/software/amazon/awssdk/services/sso/auth/SsoCredentialsProviderTest.java b/services/sso/src/test/java/software/amazon/awssdk/services/sso/auth/SsoCredentialsProviderTest.java new file mode 100644 index 000000000000..9d15a6cfc7be --- /dev/null +++ b/services/sso/src/test/java/software/amazon/awssdk/services/sso/auth/SsoCredentialsProviderTest.java @@ -0,0 +1,159 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.sso.auth; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.times; +import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.when; + +import java.time.Duration; +import java.time.Instant; +import java.util.function.Supplier; +import org.junit.Test; +import org.mockito.Mockito; +import software.amazon.awssdk.auth.credentials.AwsSessionCredentials; +import software.amazon.awssdk.services.sso.SsoClient; +import software.amazon.awssdk.services.sso.auth.SsoCredentialsProvider; +import software.amazon.awssdk.services.sso.model.GetRoleCredentialsRequest; +import software.amazon.awssdk.services.sso.model.GetRoleCredentialsResponse; +import software.amazon.awssdk.services.sso.model.RoleCredentials; + +/** + * Validates the functionality of {@link SsoCredentialsProvider}. + */ +public class SsoCredentialsProviderTest { + + private SsoClient ssoClient; + + @Test + public void cachingDoesNotApplyToExpiredSession() { + callClientWithCredentialsProvider(Instant.now().minus(Duration.ofSeconds(5)), 2, false); + callClient(verify(ssoClient, times(2)), Mockito.any()); + } + + @Test + public void cachingDoesNotApplyToExpiredSession_OverridePrefetchAndStaleTimes() { + callClientWithCredentialsProvider(Instant.now().minus(Duration.ofSeconds(5)), 2, true); + callClient(verify(ssoClient, times(2)), Mockito.any()); + } + + @Test + public void cachingAppliesToNonExpiredSession() { + callClientWithCredentialsProvider(Instant.now().plus(Duration.ofHours(5)), 2, false); + callClient(verify(ssoClient, times(1)), Mockito.any()); + } + + @Test + public void cachingAppliesToNonExpiredSession_OverridePrefetchAndStaleTimes() { + callClientWithCredentialsProvider(Instant.now().plus(Duration.ofHours(5)), 2, true); + callClient(verify(ssoClient, times(1)), Mockito.any()); + } + + @Test + public void distantExpiringCredentialsUpdatedInBackground() throws InterruptedException { + callClientWithCredentialsProvider(Instant.now().plusSeconds(90), 2, false); + + Instant endCheckTime = Instant.now().plus(Duration.ofSeconds(5)); + while (Mockito.mockingDetails(ssoClient).getInvocations().size() < 2 && endCheckTime.isAfter(Instant.now())) { + Thread.sleep(100); + } + + callClient(verify(ssoClient, times(2)), Mockito.any()); + } + + @Test + public void distantExpiringCredentialsUpdatedInBackground_OverridePrefetchAndStaleTimes() throws InterruptedException { + callClientWithCredentialsProvider(Instant.now().plusSeconds(90), 2, true); + + Instant endCheckTime = Instant.now().plus(Duration.ofSeconds(5)); + while (Mockito.mockingDetails(ssoClient).getInvocations().size() < 2 && endCheckTime.isAfter(Instant.now())) { + Thread.sleep(100); + } + + callClient(verify(ssoClient, times(2)), Mockito.any()); + } + + + + private GetRoleCredentialsRequestSupplier getRequestSupplier() { + return new GetRoleCredentialsRequestSupplier(GetRoleCredentialsRequest.builder().build(), "cachedToken"); + } + + private GetRoleCredentialsResponse getResponse(RoleCredentials roleCredentials) { + return GetRoleCredentialsResponse.builder().roleCredentials(roleCredentials).build(); + } + + private GetRoleCredentialsResponse callClient(SsoClient ssoClient, GetRoleCredentialsRequest request) { + return ssoClient.getRoleCredentials(request); + } + + private void callClientWithCredentialsProvider(Instant credentialsExpirationDate, int numTimesInvokeCredentialsProvider, + boolean overrideStaleAndPrefetchTimes) { + ssoClient = mock(SsoClient.class); + RoleCredentials credentials = RoleCredentials.builder().accessKeyId("a").secretAccessKey("b").sessionToken("c") + .expiration(credentialsExpirationDate.toEpochMilli()).build(); + + Supplier supplier = getRequestSupplier(); + GetRoleCredentialsResponse response = getResponse(credentials); + + when(ssoClient.getRoleCredentials(supplier.get())).thenReturn(response); + + SsoCredentialsProvider.Builder ssoCredentialsProviderBuilder = SsoCredentialsProvider.builder().refreshRequest(supplier); + + if(overrideStaleAndPrefetchTimes) { + ssoCredentialsProviderBuilder.staleTime(Duration.ofMinutes(2)); + ssoCredentialsProviderBuilder.prefetchTime(Duration.ofMinutes(4)); + } + + try (SsoCredentialsProvider credentialsProvider = ssoCredentialsProviderBuilder.ssoClient(ssoClient).build()) { + if(overrideStaleAndPrefetchTimes) { + assertThat(credentialsProvider.staleTime()).as("stale time").isEqualTo(Duration.ofMinutes(2)); + assertThat(credentialsProvider.prefetchTime()).as("prefetch time").isEqualTo(Duration.ofMinutes(4)); + } else { + assertThat(credentialsProvider.staleTime()).as("stale time").isEqualTo(Duration.ofMinutes(1)); + assertThat(credentialsProvider.prefetchTime()).as("prefetch time").isEqualTo(Duration.ofMinutes(5)); + } + + for (int i = 0; i < numTimesInvokeCredentialsProvider; ++i) { + AwsSessionCredentials actualCredentials = (AwsSessionCredentials) credentialsProvider.resolveCredentials(); + assertThat(actualCredentials.accessKeyId()).isEqualTo("a"); + assertThat(actualCredentials.secretAccessKey()).isEqualTo("b"); + assertThat(actualCredentials.sessionToken()).isEqualTo("c"); + } + } + + } + + private static final class GetRoleCredentialsRequestSupplier implements Supplier { + private final GetRoleCredentialsRequest request; + private final String cachedToken; + + GetRoleCredentialsRequestSupplier(GetRoleCredentialsRequest request, + String cachedToken) { + this.request = request; + this.cachedToken = cachedToken; + } + + @Override + public Object get() { + return request.toBuilder().accessToken(cachedToken).build(); + } + + } + +} \ No newline at end of file diff --git a/services/sso/src/test/java/software/amazon/awssdk/services/sso/auth/SsoProfileCredentialsProviderFactoryTest.java b/services/sso/src/test/java/software/amazon/awssdk/services/sso/auth/SsoProfileCredentialsProviderFactoryTest.java new file mode 100644 index 000000000000..bcc47d576ccd --- /dev/null +++ b/services/sso/src/test/java/software/amazon/awssdk/services/sso/auth/SsoProfileCredentialsProviderFactoryTest.java @@ -0,0 +1,75 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.sso.auth; + +import static org.assertj.core.api.Assertions.assertThat; + +import com.google.common.collect.ImmutableList; +import com.google.common.jimfs.Configuration; +import com.google.common.jimfs.Jimfs; +import java.io.IOException; +import java.nio.charset.StandardCharsets; +import java.nio.file.FileSystem; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.HashMap; +import java.util.Map; +import org.junit.Test; +import software.amazon.awssdk.auth.credentials.AwsCredentialsProvider; +import software.amazon.awssdk.profiles.Profile; +import software.amazon.awssdk.services.sso.internal.SsoAccessTokenProvider; + +/** + * Validate the code path of creating the {@link SsoCredentialsProvider} with {@link SsoProfileCredentialsProviderFactory}. + */ +public class SsoProfileCredentialsProviderFactoryTest { + + @Test + public void createSsoCredentialsProviderWithFactorySucceed() throws IOException { + String startUrl = "https//d-abc123.awsapps.com/start"; + String generatedTokenFileName = "6a888bdb653a4ba345dd68f21b896ec2e218c6f4.json"; + + Map properties = new HashMap<>(); + properties.put("sso_account_id", "accountId"); + properties.put("sso_region", "region"); + properties.put("sso_role_name", "roleName"); + properties.put("sso_start_url", "https//d-abc123.awsapps.com/start"); + Profile profile = Profile.builder().name("foo").properties(properties).build(); + + String tokenFile = "{\n" + + "\"accessToken\": \"base64string\",\n" + + "\"expiresAt\": \"2090-01-01T00:00:00Z\",\n" + + "\"region\": \"us-west-2\", \n" + + "\"startUrl\": \""+ startUrl +"\"\n" + + "}"; + SsoAccessTokenProvider tokenProvider = new SsoAccessTokenProvider( + prepareTestCachedTokenFile(tokenFile, generatedTokenFileName)); + + SsoProfileCredentialsProviderFactory factory = new SsoProfileCredentialsProviderFactory(); + assertThat(factory.create(profile, tokenProvider)).isInstanceOf(AwsCredentialsProvider.class); + } + + private Path prepareTestCachedTokenFile(String tokenFileContent, String generatedTokenFileName) throws IOException { + FileSystem fs = Jimfs.newFileSystem(Configuration.unix()); + Path fileDirectory = fs.getPath("./foo"); + + Files.createDirectory(fileDirectory); + Path cachedTokenFilePath = fileDirectory.resolve(generatedTokenFileName); + Files.write(cachedTokenFilePath, ImmutableList.of(tokenFileContent), StandardCharsets.UTF_8); + + return cachedTokenFilePath; + } +} \ No newline at end of file diff --git a/services/sso/src/test/java/software/amazon/awssdk/services/sso/auth/SsoProfileTest.java b/services/sso/src/test/java/software/amazon/awssdk/services/sso/auth/SsoProfileTest.java new file mode 100644 index 000000000000..ee08c541eaef --- /dev/null +++ b/services/sso/src/test/java/software/amazon/awssdk/services/sso/auth/SsoProfileTest.java @@ -0,0 +1,94 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.sso.auth; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.assertj.core.api.Assertions.assertThatThrownBy; + +import org.junit.Test; +import software.amazon.awssdk.auth.credentials.internal.ProfileCredentialsUtils; +import software.amazon.awssdk.profiles.ProfileFile; +import software.amazon.awssdk.utils.StringInputStream; + +/** + * Validate the completeness of sso profile properties consumed by the {@link ProfileCredentialsUtils}. + */ +public class SsoProfileTest { + + @Test + public void createSsoCredentialsProvider_SsoAccountIdMissing_throwException() { + String profileContent = "[profile foo]\n" + + "sso_region=us-east-1\n" + + "sso_role_name=SampleRole\n" + + "sso_start_url=https://d-abc123.awsapps.com/start-beta\n"; + ProfileFile profiles = ProfileFile.builder() + .content(new StringInputStream(profileContent)) + .type(ProfileFile.Type.CONFIGURATION) + .build(); + assertThat(profiles.profile("foo")).hasValueSatisfying(profile -> { + assertThatThrownBy(() -> new ProfileCredentialsUtils(profile, profiles::profile).credentialsProvider()) + .hasMessageContaining("Profile property 'sso_account_id' was not configured"); + }); + } + + @Test + public void createSsoCredentialsProvider_SsoRegionMissing_throwException() { + String profileContent = "[profile foo]\n" + + "sso_account_id=012345678901\n" + + "sso_role_name=SampleRole\n" + + "sso_start_url=https://d-abc123.awsapps.com/start-beta\n"; + ProfileFile profiles = ProfileFile.builder() + .content(new StringInputStream(profileContent)) + .type(ProfileFile.Type.CONFIGURATION) + .build(); + assertThat(profiles.profile("foo")).hasValueSatisfying(profile -> { + assertThatThrownBy(() -> new ProfileCredentialsUtils(profile, profiles::profile).credentialsProvider()) + .hasMessageContaining("Profile property 'sso_region' was not configured"); + }); + } + + @Test + public void createSsoCredentialsProvider_SsoRoleNameMissing_throwException() { + String profileContent = "[profile foo]\n" + + "sso_account_id=012345678901\n" + + "sso_region=us-east-1\n" + + "sso_start_url=https://d-abc123.awsapps.com/start-beta\n"; + ProfileFile profiles = ProfileFile.builder() + .content(new StringInputStream(profileContent)) + .type(ProfileFile.Type.CONFIGURATION) + .build(); + assertThat(profiles.profile("foo")).hasValueSatisfying(profile -> { + assertThatThrownBy(() -> new ProfileCredentialsUtils(profile, profiles::profile).credentialsProvider()) + .hasMessageContaining("Profile property 'sso_role_name' was not configured"); + }); + } + + @Test + public void createSsoCredentialsProvider_SsoStartUrlMissing_throwException() { + String profileContent = "[profile foo]\n" + + "sso_account_id=012345678901\n" + + "sso_region=us-east-1\n" + + "sso_role_name=SampleRole\n"; + ProfileFile profiles = ProfileFile.builder() + .content(new StringInputStream(profileContent)) + .type(ProfileFile.Type.CONFIGURATION) + .build(); + assertThat(profiles.profile("foo")).hasValueSatisfying(profile -> { + assertThatThrownBy(() -> new ProfileCredentialsUtils(profile, profiles::profile).credentialsProvider()) + .hasMessageContaining("Profile property 'sso_start_url' was not configured"); + }); + } +} diff --git a/services/sso/src/test/java/software/amazon/awssdk/services/sso/internal/SsoAccessTokenProviderTest.java b/services/sso/src/test/java/software/amazon/awssdk/services/sso/internal/SsoAccessTokenProviderTest.java new file mode 100644 index 000000000000..678bd8f129bb --- /dev/null +++ b/services/sso/src/test/java/software/amazon/awssdk/services/sso/internal/SsoAccessTokenProviderTest.java @@ -0,0 +1,145 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.sso.internal; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.assertj.core.api.Assertions.assertThatThrownBy; + +import com.google.common.collect.ImmutableList; +import com.google.common.jimfs.Configuration; +import com.google.common.jimfs.Jimfs; +import java.io.IOException; +import java.io.UncheckedIOException; +import java.nio.charset.StandardCharsets; +import java.nio.file.FileSystem; +import java.nio.file.Files; +import java.nio.file.Path; +import org.junit.Test; + +/** + * Check if the behavior of {@link SsoAccessTokenProvider} is correct while consuming different formats of cached token + * file. + */ +public class SsoAccessTokenProviderTest { + + private static final String START_URL = "https//d-abc123.awsapps.com/start"; + private static final String GENERATED_TOKEN_FILE_NAME = "6a888bdb653a4ba345dd68f21b896ec2e218c6f4.json"; + private static final String WRONG_TOKEN_FILE_NAME = "wrong-token-file.json"; + + @Test + public void cachedTokenFile_correctFormat_resolveAccessTokenCorrectly() throws IOException { + String tokenFile = "{\n" + + "\"accessToken\": \"base64string\",\n" + + "\"expiresAt\": \"2090-01-01T00:00:00Z\",\n" + + "\"region\": \"us-west-2\", \n" + + "\"startUrl\": \""+ START_URL +"\"\n" + + "}"; + SsoAccessTokenProvider provider = new SsoAccessTokenProvider( + prepareTestCachedTokenFile(tokenFile, GENERATED_TOKEN_FILE_NAME)); + assertThat(provider.resolveAccessToken()).isEqualTo("base64string"); + } + + @Test + public void cachedTokenFile_accessTokenMissing_throwNullPointerException() throws IOException { + String tokenFile = "{\n" + + "\"expiresAt\": \"2090-01-01T00:00:00Z\",\n" + + "\"region\": \"us-west-2\", \n" + + "\"startUrl\": \""+ START_URL +"\"\n" + + "}"; + SsoAccessTokenProvider provider = new SsoAccessTokenProvider( + prepareTestCachedTokenFile(tokenFile, GENERATED_TOKEN_FILE_NAME)); + assertThatThrownBy(provider::resolveAccessToken).isInstanceOf(NullPointerException.class); + } + + @Test + public void cachedTokenFile_expiresAtMissing_throwNullPointerException() throws IOException { + String tokenFile = "{\n" + + "\"accessToken\": \"base64string\",\n" + + "\"region\": \"us-west-2\", \n" + + "\"startUrl\": \""+ START_URL +"\"\n" + + "}"; + + SsoAccessTokenProvider provider = new SsoAccessTokenProvider( + prepareTestCachedTokenFile(tokenFile, GENERATED_TOKEN_FILE_NAME)); + assertThatThrownBy(provider::resolveAccessToken).isInstanceOf(NullPointerException.class); + } + + @Test + public void cachedTokenFile_optionalRegionMissing_resolveAccessTokenCorrectly() throws IOException { + String tokenFile = "{\n" + + "\"accessToken\": \"base64string\",\n" + + "\"expiresAt\": \"2090-01-01T00:00:00Z\",\n" + + "\"startUrl\": \""+ START_URL +"\"\n" + + "}"; + SsoAccessTokenProvider provider = new SsoAccessTokenProvider( + prepareTestCachedTokenFile(tokenFile, GENERATED_TOKEN_FILE_NAME)); + assertThat(provider.resolveAccessToken()).isEqualTo("base64string"); + } + + @Test + public void cachedTokenFile_optionalStartUrlMissing_resolveAccessTokenCorrectly() throws IOException { + String tokenFile = "{\n" + + "\"accessToken\": \"base64string\",\n" + + "\"expiresAt\": \"2090-01-01T00:00:00Z\",\n" + + "\"region\": \"us-west-2\"\n" + + "}"; + SsoAccessTokenProvider provider = new SsoAccessTokenProvider( + prepareTestCachedTokenFile(tokenFile, GENERATED_TOKEN_FILE_NAME)); + assertThat(provider.resolveAccessToken()).isEqualTo("base64string"); + } + + @Test + public void cachedTokenFile_alreadyExpired_resolveAccessTokenCorrectly() throws IOException { + String tokenFile = "{\n" + + "\"accessToken\": \"base64string\",\n" + + "\"expiresAt\": \"2019-01-01T00:00:00Z\",\n" + + "\"region\": \"us-west-2\"\n" + + "}"; + SsoAccessTokenProvider provider = new SsoAccessTokenProvider( + prepareTestCachedTokenFile(tokenFile, GENERATED_TOKEN_FILE_NAME)); + assertThatThrownBy(provider::resolveAccessToken).hasMessageContaining("The SSO session associated with this profile " + + "has expired or is otherwise invalid."); + } + + @Test + public void cachedTokenFile_tokenFileNotExist_throwNullPointerException() throws IOException { + String tokenFile = "{\n" + + "\"accessToken\": \"base64string\",\n" + + "\"expiresAt\": \"2019-01-01T00:00:00Z\",\n" + + "\"region\": \"us-west-2\"\n" + + "}"; + prepareTestCachedTokenFile(tokenFile, WRONG_TOKEN_FILE_NAME); + SsoAccessTokenProvider provider = new SsoAccessTokenProvider(createTestCachedTokenFilePath( + Jimfs.newFileSystem(Configuration.unix()).getPath("./foo"), GENERATED_TOKEN_FILE_NAME)); + assertThatThrownBy(provider::resolveAccessToken).isInstanceOf(UncheckedIOException.class); + } + + private Path prepareTestCachedTokenFile(String tokenFileContent, String generatedTokenFileName) throws IOException { + FileSystem fs = Jimfs.newFileSystem(Configuration.unix()); + Path fileDirectory = fs.getPath("./foo"); + + Files.createDirectory(fileDirectory); + Path cachedTokenFilePath = createTestCachedTokenFilePath(fileDirectory, generatedTokenFileName); + Files.write(cachedTokenFilePath, ImmutableList.of(tokenFileContent), StandardCharsets.UTF_8); + + return cachedTokenFilePath; + } + + private Path createTestCachedTokenFilePath(Path directory, String tokenFileName) { + return directory.resolve(tokenFileName); + } + +} diff --git a/services/sso/src/test/java/software/amazon/awssdk/services/sso/internal/SsoTokenFileUtilsTest.java b/services/sso/src/test/java/software/amazon/awssdk/services/sso/internal/SsoTokenFileUtilsTest.java new file mode 100644 index 000000000000..1028fa397759 --- /dev/null +++ b/services/sso/src/test/java/software/amazon/awssdk/services/sso/internal/SsoTokenFileUtilsTest.java @@ -0,0 +1,34 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.sso.internal; + +import static org.assertj.core.api.Assertions.assertThat; +import static software.amazon.awssdk.services.sso.internal.SsoTokenFileUtils.generateCachedTokenPath; +import static software.amazon.awssdk.utils.UserHomeDirectoryUtils.userHomeDirectory; + +import org.junit.Test; + +public class SsoTokenFileUtilsTest { + + @Test + public void generateTheCorrectPathTest() { + String startUrl = "https//d-abc123.awsapps.com/start"; + String directory = "~/.aws/sso/cache"; + assertThat(generateCachedTokenPath(startUrl, directory).toString()) + .isEqualTo(userHomeDirectory() + "/.aws/sso/cache/6a888bdb653a4ba345dd68f21b896ec2e218c6f4.json"); + } + +} \ No newline at end of file diff --git a/utils/src/main/java/software/amazon/awssdk/utils/UserHomeDirectoryUtils.java b/utils/src/main/java/software/amazon/awssdk/utils/UserHomeDirectoryUtils.java new file mode 100644 index 000000000000..1677b5221c4a --- /dev/null +++ b/utils/src/main/java/software/amazon/awssdk/utils/UserHomeDirectoryUtils.java @@ -0,0 +1,62 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.utils; + +import software.amazon.awssdk.annotations.SdkProtectedApi; + +/** + * Load the home directory that should be used for the stored file. This will check the same environment variables as the CLI + * to identify the location of home, before falling back to java-specific resolution. + */ +@SdkProtectedApi +public final class UserHomeDirectoryUtils { + + private UserHomeDirectoryUtils() { + + } + + public static String userHomeDirectory() { + // To match the logic of the CLI we have to consult environment variables directly. + // CHECKSTYLE:OFF + String home = System.getenv("HOME"); + + if (home != null) { + return home; + } + + boolean isWindows = JavaSystemSetting.OS_NAME.getStringValue() + .map(s -> StringUtils.lowerCase(s).startsWith("windows")) + .orElse(false); + + if (isWindows) { + String userProfile = System.getenv("USERPROFILE"); + + if (userProfile != null) { + return userProfile; + } + + String homeDrive = System.getenv("HOMEDRIVE"); + String homePath = System.getenv("HOMEPATH"); + + if (homeDrive != null && homePath != null) { + return homeDrive + homePath; + } + } + + return JavaSystemSetting.USER_HOME.getStringValueOrThrow(); + // CHECKSTYLE:ON + } +} diff --git a/utils/src/test/java/software/amazon/awssdk/testutils/EnvironmentVariableHelper.java b/utils/src/test/java/software/amazon/awssdk/testutils/EnvironmentVariableHelper.java new file mode 100644 index 000000000000..13f67785017c --- /dev/null +++ b/utils/src/test/java/software/amazon/awssdk/testutils/EnvironmentVariableHelper.java @@ -0,0 +1,146 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.testutils; + +import java.lang.reflect.Field; +import java.security.AccessController; +import java.security.PrivilegedActionException; +import java.security.PrivilegedExceptionAction; +import java.util.HashMap; +import java.util.Map; +import java.util.Optional; +import java.util.function.Consumer; +import org.junit.rules.ExternalResource; +import software.amazon.awssdk.utils.SystemSetting; + +/** + * A utility that can temporarily forcibly set environment variables and + * then allows resetting them to the original values. + */ +public class EnvironmentVariableHelper extends ExternalResource { + + private final Map originalEnvironmentVariables; + private final Map modifiableMap; + private volatile boolean mutated = false; + + public EnvironmentVariableHelper() { + // CHECKSTYLE:OFF - This is a specific utility around system environment variables + originalEnvironmentVariables = new HashMap<>(System.getenv()); + modifiableMap = Optional.ofNullable(processEnv()).orElse(envMap()); + // CHECKSTYLE:ON + } + + public void remove(SystemSetting setting) { + remove(setting.environmentVariable()); + } + + public void remove(String key) { + mutated = true; + modifiableMap.remove(key); + } + + public void set(SystemSetting setting, String value) { + set(setting.environmentVariable(), value); + } + + public void set(String key, String value) { + mutated = true; + modifiableMap.put(key, value); + } + + public void reset() { + if (mutated) { + synchronized (this) { + if (mutated) { + modifiableMap.clear(); + modifiableMap.putAll(originalEnvironmentVariables); + mutated = false; + } + } + } + } + + @Override + protected void after() { + reset(); + } + + private PrivilegedExceptionAction setAccessible(Field f) { + return () -> { + f.setAccessible(true); + return null; + }; + } + + /** + * Static run method that allows for "single-use" environment variable modification. + * + * Example use: + *
+     * {@code
+     * EnvironmentVariableHelper.run(helper -> {
+     *    helper.set("variable", "value");
+     *    //run some test that uses "variable"
+     * });
+     * }
+     * 
+ * + * Will call {@link #reset} at the end of the block (even if the block exits exceptionally). + * + * @param helperConsumer a code block to run that gets an {@link EnvironmentVariableHelper} as an argument + */ + public static void run(Consumer helperConsumer) { + EnvironmentVariableHelper helper = new EnvironmentVariableHelper(); + try { + helperConsumer.accept(helper); + } finally { + helper.reset(); + } + } + + private Map envMap() { + // CHECKSTYLE:OFF - This is a specific utility around system environment variables + return getField(System.getenv().getClass(), System.getenv(), "m"); + // CHECKSTYLE:ON + } + + /** + * Windows is using a different process environment. + * + * See http://hg.openjdk.java.net/jdk8/jdk8/jdk/file/687fd7c7986d/src/windows/classes/java/lang/ProcessEnvironment.java#l235 + */ + private Map processEnv() { + Class processEnvironment; + try { + processEnvironment = Class.forName("java.lang.ProcessEnvironment"); + return getField(processEnvironment, null, "theCaseInsensitiveEnvironment"); + } catch (ClassNotFoundException e) { + return null; + } + } + + @SuppressWarnings("unchecked") + private Map getField(Class processEnvironment, Object obj, String fieldName) { + try { + Field declaredField = processEnvironment.getDeclaredField(fieldName); + AccessController.doPrivileged(setAccessible(declaredField)); + + return (Map) declaredField.get(obj); + } catch (IllegalAccessException | NoSuchFieldException | PrivilegedActionException e) { + return null; + } + } +} diff --git a/core/profiles/src/test/java/software/amazon/awssdk/profiles/ProfileFileLocationTest.java b/utils/src/test/java/software/amazon/awssdk/utils/UserHomeDirectoryUtilsTest.java similarity index 73% rename from core/profiles/src/test/java/software/amazon/awssdk/profiles/ProfileFileLocationTest.java rename to utils/src/test/java/software/amazon/awssdk/utils/UserHomeDirectoryUtilsTest.java index cf848bd64707..a77acc529bc0 100644 --- a/core/profiles/src/test/java/software/amazon/awssdk/profiles/ProfileFileLocationTest.java +++ b/utils/src/test/java/software/amazon/awssdk/utils/UserHomeDirectoryUtilsTest.java @@ -13,9 +13,10 @@ * permissions and limitations under the License. */ -package software.amazon.awssdk.profiles; +package software.amazon.awssdk.utils; import static org.assertj.core.api.Assertions.assertThat; +import static software.amazon.awssdk.utils.UserHomeDirectoryUtils.userHomeDirectory; import java.util.Arrays; import java.util.HashMap; @@ -24,13 +25,10 @@ import org.junit.After; import org.junit.Before; import org.junit.Test; -import software.amazon.awssdk.profiles.ProfileFileLocation; import software.amazon.awssdk.testutils.EnvironmentVariableHelper; -/** - * Verify the functionality of {@link ProfileFileLocation}. - */ -public class ProfileFileLocationTest { +public class UserHomeDirectoryUtilsTest { + private final Map savedEnvironmentVariableValues = new HashMap<>(); private static final List SAVED_ENVIRONMENT_VARIABLES = Arrays.asList("HOME", @@ -46,11 +44,10 @@ public class ProfileFileLocationTest { */ @Before public void saveEnvironment() throws Exception { - // The tests in this file change the os.home for testing windows vs non-windows loading, and the static constructor for - // ProfileFileLocation currently loads the file system separator based on the os.home. We need to call the static - // constructor for ProfileFileLocation before changing the os.home so that it doesn't try to load the file system - // separator during the test. If we don't, it'll complain that it doesn't recognize the file system. - ProfileFileLocation.userHomeDirectory(); + // The tests in this file change the os.home for testing windows vs non-windows loading. We need to load the home + // directory that should be used for the stored file before changing the os.home so that it doesn't try to load + // the file system separator during the test. If we don't, it'll complain that it doesn't recognize the file system. + userHomeDirectory(); for (String variable : SAVED_ENVIRONMENT_VARIABLES) { savedEnvironmentVariableValues.put(variable, System.getenv(variable)); @@ -84,18 +81,18 @@ public void homeDirectoryResolutionPriorityIsCorrectOnWindows() throws Exception ENVIRONMENT_VARIABLE_HELPER.set("HOMEDRIVE", "homedrive"); ENVIRONMENT_VARIABLE_HELPER.set("HOMEPATH", "homepath"); - assertThat(ProfileFileLocation.userHomeDirectory()).isEqualTo("home"); + assertThat(userHomeDirectory()).isEqualTo("home"); ENVIRONMENT_VARIABLE_HELPER.remove("HOME"); - assertThat(ProfileFileLocation.userHomeDirectory()).isEqualTo("userprofile"); + assertThat(userHomeDirectory()).isEqualTo("userprofile"); ENVIRONMENT_VARIABLE_HELPER.remove("USERPROFILE"); - assertThat(ProfileFileLocation.userHomeDirectory()).isEqualTo("homedrivehomepath"); + assertThat(userHomeDirectory()).isEqualTo("homedrivehomepath"); ENVIRONMENT_VARIABLE_HELPER.remove("HOMEDRIVE"); ENVIRONMENT_VARIABLE_HELPER.remove("HOMEPATH"); - assertThat(ProfileFileLocation.userHomeDirectory()).isEqualTo(System.getProperty("user.home")); + assertThat(userHomeDirectory()).isEqualTo(System.getProperty("user.home")); } finally { System.setProperty("os.name", osName); } @@ -112,20 +109,20 @@ public void homeDirectoryResolutionPriorityIsCorrectOnNonWindows() throws Except ENVIRONMENT_VARIABLE_HELPER.set("HOMEDRIVE", "homedrive"); ENVIRONMENT_VARIABLE_HELPER.set("HOMEPATH", "homepath"); - assertThat(ProfileFileLocation.userHomeDirectory()).isEqualTo("home"); + assertThat(userHomeDirectory()).isEqualTo("home"); ENVIRONMENT_VARIABLE_HELPER.remove("HOME"); - assertThat(ProfileFileLocation.userHomeDirectory()).isEqualTo(System.getProperty("user.home")); + assertThat(userHomeDirectory()).isEqualTo(System.getProperty("user.home")); ENVIRONMENT_VARIABLE_HELPER.remove("USERPROFILE"); - assertThat(ProfileFileLocation.userHomeDirectory()).isEqualTo(System.getProperty("user.home")); + assertThat(userHomeDirectory()).isEqualTo(System.getProperty("user.home")); ENVIRONMENT_VARIABLE_HELPER.remove("HOMEDRIVE"); ENVIRONMENT_VARIABLE_HELPER.remove("HOMEPATH"); - assertThat(ProfileFileLocation.userHomeDirectory()).isEqualTo(System.getProperty("user.home")); + assertThat(userHomeDirectory()).isEqualTo(System.getProperty("user.home")); } finally { System.setProperty("os.name", osName); } } -} +} \ No newline at end of file From 2b22201e1c5862ad248ebe29165c885b513b595d Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 20 Nov 2020 19:04:33 +0000 Subject: [PATCH 239/339] AWS CloudHSM V2 Update: Added managed backup retention, a feature that enables customers to retain backups for a configurable period after which CloudHSM service will automatically delete them. --- .../feature-AWSCloudHSMV2-7f8400a.json | 6 + .../codegen-resources/service-2.json | 144 ++++++++++++++++-- 2 files changed, 141 insertions(+), 9 deletions(-) create mode 100644 .changes/next-release/feature-AWSCloudHSMV2-7f8400a.json diff --git a/.changes/next-release/feature-AWSCloudHSMV2-7f8400a.json b/.changes/next-release/feature-AWSCloudHSMV2-7f8400a.json new file mode 100644 index 000000000000..24a3639647ef --- /dev/null +++ b/.changes/next-release/feature-AWSCloudHSMV2-7f8400a.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS CloudHSM V2", + "contributor": "", + "description": "Added managed backup retention, a feature that enables customers to retain backups for a configurable period after which CloudHSM service will automatically delete them." +} diff --git a/services/cloudhsmv2/src/main/resources/codegen-resources/service-2.json b/services/cloudhsmv2/src/main/resources/codegen-resources/service-2.json index 00344f7caacc..02c5960077be 100644 --- a/services/cloudhsmv2/src/main/resources/codegen-resources/service-2.json +++ b/services/cloudhsmv2/src/main/resources/codegen-resources/service-2.json @@ -189,6 +189,40 @@ ], "documentation":"

Gets a list of tags for the specified AWS CloudHSM cluster.

This is a paginated operation, which means that each response might contain only a subset of all the tags. When the response contains only a subset of tags, it includes a NextToken value. Use this value in a subsequent ListTags request to get more tags. When you receive a response with no NextToken (or an empty or null value), that means there are no more tags to get.

" }, + "ModifyBackupAttributes":{ + "name":"ModifyBackupAttributes", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyBackupAttributesRequest"}, + "output":{"shape":"ModifyBackupAttributesResponse"}, + "errors":[ + {"shape":"CloudHsmAccessDeniedException"}, + {"shape":"CloudHsmInternalFailureException"}, + {"shape":"CloudHsmInvalidRequestException"}, + {"shape":"CloudHsmResourceNotFoundException"}, + {"shape":"CloudHsmServiceException"} + ], + "documentation":"

Modifies attributes for AWS CloudHSM backup.

" + }, + "ModifyCluster":{ + "name":"ModifyCluster", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ModifyClusterRequest"}, + "output":{"shape":"ModifyClusterResponse"}, + "errors":[ + {"shape":"CloudHsmAccessDeniedException"}, + {"shape":"CloudHsmInternalFailureException"}, + {"shape":"CloudHsmInvalidRequestException"}, + {"shape":"CloudHsmResourceNotFoundException"}, + {"shape":"CloudHsmServiceException"} + ], + "documentation":"

Modifies AWS CloudHSM cluster.

" + }, "RestoreBackup":{ "name":"RestoreBackup", "http":{ @@ -268,6 +302,10 @@ "shape":"Timestamp", "documentation":"

The date and time when the backup was copied from a source backup.

" }, + "NeverExpires":{ + "shape":"Boolean", + "documentation":"

Specifies whether the service should exempt a backup from the retention policy for the cluster. True exempts a backup from the retention policy. False means the service applies the backup retention policy defined at the cluster.

" + }, "SourceRegion":{ "shape":"Region", "documentation":"

The AWS Region that contains the source backup from which the new backup was copied.

" @@ -289,7 +327,7 @@ "documentation":"

The list of tags for the backup.

" } }, - "documentation":"

Contains information about a backup of an AWS CloudHSM cluster. All backup objects contain the BackupId, BackupState, ClusterId, and CreateTimestamp parameters. Backups that were copied into a destination region additionally contain the CopyTimestamp, SourceBackup, SourceCluster, and SourceRegion paramters. A backup that is pending deletion will include the DeleteTimestamp parameter.

" + "documentation":"

Contains information about a backup of an AWS CloudHSM cluster. All backup objects contain the BackupId, BackupState, ClusterId, and CreateTimestamp parameters. Backups that were copied into a destination region additionally contain the CopyTimestamp, SourceBackup, SourceCluster, and SourceRegion parameters. A backup that is pending deletion will include the DeleteTimestamp parameter.

" }, "BackupId":{ "type":"string", @@ -299,6 +337,30 @@ "type":"string", "enum":["DEFAULT"] }, + "BackupRetentionPolicy":{ + "type":"structure", + "members":{ + "Type":{ + "shape":"BackupRetentionType", + "documentation":"

The type of backup retention policy. For the DAYS type, the value is the number of days to retain backups.

" + }, + "Value":{ + "shape":"BackupRetentionValue", + "documentation":"

Use a value between 7 - 379.

" + } + }, + "documentation":"

A policy that defines the number of days to retain backups.

" + }, + "BackupRetentionType":{ + "type":"string", + "enum":["DAYS"] + }, + "BackupRetentionValue":{ + "type":"string", + "max":3, + "min":1, + "pattern":"[0-9]+" + }, "BackupState":{ "type":"string", "enum":[ @@ -312,6 +374,11 @@ "type":"list", "member":{"shape":"Backup"} }, + "BackupsMaxSize":{ + "type":"integer", + "max":50, + "min":1 + }, "Boolean":{"type":"boolean"}, "Cert":{ "type":"string", @@ -400,6 +467,10 @@ "shape":"BackupPolicy", "documentation":"

The cluster's backup policy.

" }, + "BackupRetentionPolicy":{ + "shape":"BackupRetentionPolicy", + "documentation":"

A policy that defines how the service retains backups.

" + }, "ClusterId":{ "shape":"ClusterId", "documentation":"

The cluster's identifier (ID).

" @@ -477,6 +548,11 @@ "type":"list", "member":{"shape":"Cluster"} }, + "ClustersMaxSize":{ + "type":"integer", + "max":25, + "min":1 + }, "CopyBackupToRegionRequest":{ "type":"structure", "required":[ @@ -510,13 +586,13 @@ "CreateClusterRequest":{ "type":"structure", "required":[ - "SubnetIds", - "HsmType" + "HsmType", + "SubnetIds" ], "members":{ - "SubnetIds":{ - "shape":"SubnetIds", - "documentation":"

The identifiers (IDs) of the subnets where you are creating the cluster. You must specify at least one subnet. If you specify multiple subnets, they must meet the following criteria:

  • All subnets must be in the same virtual private cloud (VPC).

  • You can specify only one subnet per Availability Zone.

" + "BackupRetentionPolicy":{ + "shape":"BackupRetentionPolicy", + "documentation":"

A policy that defines how the service retains backups.

" }, "HsmType":{ "shape":"HsmType", @@ -526,6 +602,10 @@ "shape":"BackupId", "documentation":"

The identifier (ID) of the cluster backup to restore. Use this value to restore the cluster from a backup instead of creating a new cluster. To find the backup ID, use DescribeBackups.

" }, + "SubnetIds":{ + "shape":"SubnetIds", + "documentation":"

The identifiers (IDs) of the subnets where you are creating the cluster. You must specify at least one subnet. If you specify multiple subnets, they must meet the following criteria:

  • All subnets must be in the same virtual private cloud (VPC).

  • You can specify only one subnet per Availability Zone.

" + }, "TagList":{ "shape":"TagList", "documentation":"

Tags to apply to the CloudHSM cluster during creation.

" @@ -648,12 +728,12 @@ "documentation":"

The NextToken value that you received in the previous response. Use this value to get more backups.

" }, "MaxResults":{ - "shape":"MaxSize", + "shape":"BackupsMaxSize", "documentation":"

The maximum number of backups to return in the response. When there are more backups than the number you specify, the response contains a NextToken value.

" }, "Filters":{ "shape":"Filters", - "documentation":"

One or more filters to limit the items returned in the response.

Use the backupIds filter to return only the specified backups. Specify backups by their backup identifier (ID).

Use the sourceBackupIds filter to return only the backups created from a source backup. The sourceBackupID of a source backup is returned by the CopyBackupToRegion operation.

Use the clusterIds filter to return only the backups for the specified clusters. Specify clusters by their cluster identifier (ID).

Use the states filter to return only backups that match the specified state.

" + "documentation":"

One or more filters to limit the items returned in the response.

Use the backupIds filter to return only the specified backups. Specify backups by their backup identifier (ID).

Use the sourceBackupIds filter to return only the backups created from a source backup. The sourceBackupID of a source backup is returned by the CopyBackupToRegion operation.

Use the clusterIds filter to return only the backups for the specified clusters. Specify clusters by their cluster identifier (ID).

Use the states filter to return only backups that match the specified state.

Use the neverExpires filter to return backups filtered by the value in the neverExpires parameter. True returns all backups exempt from the backup retention policy. False returns all backups with a backup retention policy defined at the cluster.

" }, "SortAscending":{ "shape":"Boolean", @@ -686,7 +766,7 @@ "documentation":"

The NextToken value that you received in the previous response. Use this value to get more clusters.

" }, "MaxResults":{ - "shape":"MaxSize", + "shape":"ClustersMaxSize", "documentation":"

The maximum number of clusters to return in the response. When there are more clusters than the number you specify, the response contains a NextToken value.

" } } @@ -885,6 +965,52 @@ "max":100, "min":1 }, + "ModifyBackupAttributesRequest":{ + "type":"structure", + "required":[ + "BackupId", + "NeverExpires" + ], + "members":{ + "BackupId":{ + "shape":"BackupId", + "documentation":"

The identifier (ID) of the backup to modify. To find the ID of a backup, use the DescribeBackups operation.

" + }, + "NeverExpires":{ + "shape":"Boolean", + "documentation":"

Specifies whether the service should exempt a backup from the retention policy for the cluster. True exempts a backup from the retention policy. False means the service applies the backup retention policy defined at the cluster.

" + } + } + }, + "ModifyBackupAttributesResponse":{ + "type":"structure", + "members":{ + "Backup":{"shape":"Backup"} + } + }, + "ModifyClusterRequest":{ + "type":"structure", + "required":[ + "BackupRetentionPolicy", + "ClusterId" + ], + "members":{ + "BackupRetentionPolicy":{ + "shape":"BackupRetentionPolicy", + "documentation":"

A policy that defines how the service retains backups.

" + }, + "ClusterId":{ + "shape":"ClusterId", + "documentation":"

The identifier (ID) of the cluster that you want to modify. To find the cluster ID, use DescribeClusters.

" + } + } + }, + "ModifyClusterResponse":{ + "type":"structure", + "members":{ + "Cluster":{"shape":"Cluster"} + } + }, "NextToken":{ "type":"string", "max":256, From 307d4222577e188c7d651a6445bcb0aac156af3e Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 20 Nov 2020 19:04:34 +0000 Subject: [PATCH 240/339] Amazon Simple Storage Service Update: Add new documentation regarding automatically generated Content-MD5 headers when using the SDK or CLI. --- ...re-AmazonSimpleStorageService-f7a18eb.json | 6 ++ .../codegen-resources/service-2.json | 85 ++++++------------- 2 files changed, 31 insertions(+), 60 deletions(-) create mode 100644 .changes/next-release/feature-AmazonSimpleStorageService-f7a18eb.json diff --git a/.changes/next-release/feature-AmazonSimpleStorageService-f7a18eb.json b/.changes/next-release/feature-AmazonSimpleStorageService-f7a18eb.json new file mode 100644 index 000000000000..b2782dddaaf3 --- /dev/null +++ b/.changes/next-release/feature-AmazonSimpleStorageService-f7a18eb.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Simple Storage Service", + "contributor": "", + "description": "Add new documentation regarding automatically generated Content-MD5 headers when using the SDK or CLI." +} diff --git a/services/s3/src/main/resources/codegen-resources/service-2.json b/services/s3/src/main/resources/codegen-resources/service-2.json index 22fa6397254f..2d6b31aa851a 100644 --- a/services/s3/src/main/resources/codegen-resources/service-2.json +++ b/services/s3/src/main/resources/codegen-resources/service-2.json @@ -510,7 +510,7 @@ {"shape":"InvalidObjectState"} ], "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectGET.html", - "documentation":"

Retrieves objects from Amazon S3. To use GET, you must have READ access to the object. If you grant READ access to the anonymous user, you can return the object without using an authorization header.

An Amazon S3 bucket has no directory hierarchy such as you would find in a typical computer file system. You can, however, create a logical hierarchy by using object key names that imply a folder structure. For example, instead of naming an object sample.jpg, you can name it photos/2006/February/sample.jpg.

To get an object from such a logical hierarchy, specify the full key name for the object in the GET operation. For a virtual hosted-style request example, if you have the object photos/2006/February/sample.jpg, specify the resource as /photos/2006/February/sample.jpg. For a path-style request example, if you have the object photos/2006/February/sample.jpg in the bucket named examplebucket, specify the resource as /examplebucket/photos/2006/February/sample.jpg. For more information about request types, see HTTP Host Header Bucket Specification.

To distribute large files to many people, you can save bandwidth costs by using BitTorrent. For more information, see Amazon S3 Torrent. For more information about returning the ACL of an object, see GetObjectAcl.

If the object you are retrieving is stored in the S3 Glacier, S3 Glacier Deep Archive, S3 Intelligent-Tiering Archive, or S3 Intelligent-Tiering Deep Archive storage classes, before you can retrieve the object you must first restore a copy using RestoreObject. Otherwise, this operation returns an InvalidObjectStateError error. For information about restoring archived objects, see Restoring Archived Objects.

Encryption request headers, like x-amz-server-side-encryption, should not be sent for GET requests if your object uses server-side encryption with CMKs stored in AWS KMS (SSE-KMS) or server-side encryption with Amazon S3–managed encryption keys (SSE-S3). If your object does use these types of keys, you’ll get an HTTP 400 BadRequest error.

If you encrypt an object by using server-side encryption with customer-provided encryption keys (SSE-C) when you store the object in Amazon S3, then when you GET the object, you must use the following headers:

  • x-amz-server-side-encryption-customer-algorithm

  • x-amz-server-side-encryption-customer-key

  • x-amz-server-side-encryption-customer-key-MD5

For more information about SSE-C, see Server-Side Encryption (Using Customer-Provided Encryption Keys).

Assuming you have permission to read object tags (permission for the s3:GetObjectVersionTagging action), the response also returns the x-amz-tagging-count header that provides the count of number of tags associated with the object. You can use GetObjectTagging to retrieve the tag set associated with an object.

Permissions

You need the s3:GetObject permission for this operation. For more information, see Specifying Permissions in a Policy. If the object you request does not exist, the error Amazon S3 returns depends on whether you also have the s3:ListBucket permission.

  • If you have the s3:ListBucket permission on the bucket, Amazon S3 will return an HTTP status code 404 (\"no such key\") error.

  • If you don’t have the s3:ListBucket permission, Amazon S3 will return an HTTP status code 403 (\"access denied\") error.

Versioning

By default, the GET operation returns the current version of an object. To return a different version, use the versionId subresource.

If the current version of the object is a delete marker, Amazon S3 behaves as if the object was deleted and includes x-amz-delete-marker: true in the response.

For more information about versioning, see PutBucketVersioning.

Overriding Response Header Values

There are times when you want to override certain response header values in a GET response. For example, you might override the Content-Disposition response header value in your GET request.

You can override values for a set of response headers using the following query parameters. These response header values are sent only on a successful request, that is, when status code 200 OK is returned. The set of headers you can override using these parameters is a subset of the headers that Amazon S3 accepts when you create an object. The response headers that you can override for the GET response are Content-Type, Content-Language, Expires, Cache-Control, Content-Disposition, and Content-Encoding. To override these header values in the GET response, you use the following request parameters.

You must sign the request, either using an Authorization header or a presigned URL, when using these parameters. They cannot be used with an unsigned (anonymous) request.

  • response-content-type

  • response-content-language

  • response-expires

  • response-cache-control

  • response-content-disposition

  • response-content-encoding

Additional Considerations about Request Headers

If both of the If-Match and If-Unmodified-Since headers are present in the request as follows: If-Match condition evaluates to true, and; If-Unmodified-Since condition evaluates to false; then, S3 returns 200 OK and the data requested.

If both of the If-None-Match and If-Modified-Since headers are present in the request as follows: If-None-Match condition evaluates to false, and; If-Modified-Since condition evaluates to true; then, S3 returns 304 Not Modified response code.

For more information about conditional requests, see RFC 7232.

The following operations are related to GetObject:

" + "documentation":"

Retrieves objects from Amazon S3. To use GET, you must have READ access to the object. If you grant READ access to the anonymous user, you can return the object without using an authorization header.

An Amazon S3 bucket has no directory hierarchy such as you would find in a typical computer file system. You can, however, create a logical hierarchy by using object key names that imply a folder structure. For example, instead of naming an object sample.jpg, you can name it photos/2006/February/sample.jpg.

To get an object from such a logical hierarchy, specify the full key name for the object in the GET operation. For a virtual hosted-style request example, if you have the object photos/2006/February/sample.jpg, specify the resource as /photos/2006/February/sample.jpg. For a path-style request example, if you have the object photos/2006/February/sample.jpg in the bucket named examplebucket, specify the resource as /examplebucket/photos/2006/February/sample.jpg. For more information about request types, see HTTP Host Header Bucket Specification.

To distribute large files to many people, you can save bandwidth costs by using BitTorrent. For more information, see Amazon S3 Torrent. For more information about returning the ACL of an object, see GetObjectAcl.

If the object you are retrieving is stored in the S3 Glacier or S3 Glacier Deep Archive storage class, or S3 Intelligent-Tiering Archive or S3 Intelligent-Tiering Deep Archive tiers, before you can retrieve the object you must first restore a copy using RestoreObject. Otherwise, this operation returns an InvalidObjectStateError error. For information about restoring archived objects, see Restoring Archived Objects.

Encryption request headers, like x-amz-server-side-encryption, should not be sent for GET requests if your object uses server-side encryption with CMKs stored in AWS KMS (SSE-KMS) or server-side encryption with Amazon S3–managed encryption keys (SSE-S3). If your object does use these types of keys, you’ll get an HTTP 400 BadRequest error.

If you encrypt an object by using server-side encryption with customer-provided encryption keys (SSE-C) when you store the object in Amazon S3, then when you GET the object, you must use the following headers:

  • x-amz-server-side-encryption-customer-algorithm

  • x-amz-server-side-encryption-customer-key

  • x-amz-server-side-encryption-customer-key-MD5

For more information about SSE-C, see Server-Side Encryption (Using Customer-Provided Encryption Keys).

Assuming you have permission to read object tags (permission for the s3:GetObjectVersionTagging action), the response also returns the x-amz-tagging-count header that provides the count of number of tags associated with the object. You can use GetObjectTagging to retrieve the tag set associated with an object.

Permissions

You need the s3:GetObject permission for this operation. For more information, see Specifying Permissions in a Policy. If the object you request does not exist, the error Amazon S3 returns depends on whether you also have the s3:ListBucket permission.

  • If you have the s3:ListBucket permission on the bucket, Amazon S3 will return an HTTP status code 404 (\"no such key\") error.

  • If you don’t have the s3:ListBucket permission, Amazon S3 will return an HTTP status code 403 (\"access denied\") error.

Versioning

By default, the GET operation returns the current version of an object. To return a different version, use the versionId subresource.

If the current version of the object is a delete marker, Amazon S3 behaves as if the object was deleted and includes x-amz-delete-marker: true in the response.

For more information about versioning, see PutBucketVersioning.

Overriding Response Header Values

There are times when you want to override certain response header values in a GET response. For example, you might override the Content-Disposition response header value in your GET request.

You can override values for a set of response headers using the following query parameters. These response header values are sent only on a successful request, that is, when status code 200 OK is returned. The set of headers you can override using these parameters is a subset of the headers that Amazon S3 accepts when you create an object. The response headers that you can override for the GET response are Content-Type, Content-Language, Expires, Cache-Control, Content-Disposition, and Content-Encoding. To override these header values in the GET response, you use the following request parameters.

You must sign the request, either using an Authorization header or a presigned URL, when using these parameters. They cannot be used with an unsigned (anonymous) request.

  • response-content-type

  • response-content-language

  • response-expires

  • response-cache-control

  • response-content-disposition

  • response-content-encoding

Additional Considerations about Request Headers

If both of the If-Match and If-Unmodified-Since headers are present in the request as follows: If-Match condition evaluates to true, and; If-Unmodified-Since condition evaluates to false; then, S3 returns 200 OK and the data requested.

If both of the If-None-Match and If-Modified-Since headers are present in the request as follows: If-None-Match condition evaluates to false, and; If-Modified-Since condition evaluates to true; then, S3 returns 304 Not Modified response code.

For more information about conditional requests, see RFC 7232.

The following operations are related to GetObject:

" }, "GetObjectAcl":{ "name":"GetObjectAcl", @@ -865,7 +865,8 @@ "requestUri":"/{Bucket}?ownershipControls" }, "input":{"shape":"PutBucketOwnershipControlsRequest"}, - "documentation":"

Creates or modifies OwnershipControls for an Amazon S3 bucket. To use this operation, you must have the s3:PutBucketOwnershipControls permission. For more information about Amazon S3 permissions, see Specifying Permissions in a Policy.

For information about Amazon S3 Object Ownership, see Using Object Ownership.

The following operations are related to PutBucketOwnershipControls:

" + "documentation":"

Creates or modifies OwnershipControls for an Amazon S3 bucket. To use this operation, you must have the s3:PutBucketOwnershipControls permission. For more information about Amazon S3 permissions, see Specifying Permissions in a Policy.

For information about Amazon S3 Object Ownership, see Using Object Ownership.

The following operations are related to PutBucketOwnershipControls:

", + "httpChecksumRequired":true }, "PutBucketPolicy":{ "name":"PutBucketPolicy", @@ -885,7 +886,7 @@ "requestUri":"/{Bucket}?replication" }, "input":{"shape":"PutBucketReplicationRequest"}, - "documentation":"

Creates a replication configuration or replaces an existing one. For more information, see Replication in the Amazon S3 Developer Guide.

To perform this operation, the user or role performing the operation must have the iam:PassRole permission.

Specify the replication configuration in the request body. In the replication configuration, you provide the name of the destination bucket where you want Amazon S3 to replicate objects, the IAM role that Amazon S3 can assume to replicate objects on your behalf, and other relevant information.

A replication configuration must include at least one rule, and can contain a maximum of 1,000. Each rule identifies a subset of objects to replicate by filtering the objects in the source bucket. To choose additional subsets of objects to replicate, add a rule for each subset. All rules must specify the same destination bucket.

To specify a subset of the objects in the source bucket to apply a replication rule to, add the Filter element as a child of the Rule element. You can filter objects based on an object key prefix, one or more object tags, or both. When you add the Filter element in the configuration, you must also add the following elements: DeleteMarkerReplication, Status, and Priority.

The latest version of the replication configuration XML is V2. XML V2 replication configurations are those that contain the Filter element for rules, and rules that specify S3 Replication Time Control (S3 RTC). In XML V2 replication configurations, Amazon S3 doesn't replicate delete markers. Therefore, you must set the DeleteMarkerReplication element to Disabled. For backward compatibility, Amazon S3 continues to support the XML V1 replication configuration.

For information about enabling versioning on a bucket, see Using Versioning.

By default, a resource owner, in this case the AWS account that created the bucket, can perform this operation. The resource owner can also grant others permissions to perform the operation. For more information about permissions, see Specifying Permissions in a Policy and Managing Access Permissions to Your Amazon S3 Resources.

Handling Replication of Encrypted Objects

By default, Amazon S3 doesn't replicate objects that are stored at rest using server-side encryption with CMKs stored in AWS KMS. To replicate AWS KMS-encrypted objects, add the following: SourceSelectionCriteria, SseKmsEncryptedObjects, Status, EncryptionConfiguration, and ReplicaKmsKeyID. For information about replication configuration, see Replicating Objects Created with SSE Using CMKs stored in AWS KMS.

For information on PutBucketReplication errors, see List of replication-related error codes

The following operations are related to PutBucketReplication:

", + "documentation":"

Creates a replication configuration or replaces an existing one. For more information, see Replication in the Amazon S3 Developer Guide.

To perform this operation, the user or role performing the operation must have the iam:PassRole permission.

Specify the replication configuration in the request body. In the replication configuration, you provide the name of the destination bucket where you want Amazon S3 to replicate objects, the IAM role that Amazon S3 can assume to replicate objects on your behalf, and other relevant information.

A replication configuration must include at least one rule, and can contain a maximum of 1,000. Each rule identifies a subset of objects to replicate by filtering the objects in the source bucket. To choose additional subsets of objects to replicate, add a rule for each subset. All rules must specify the same destination bucket.

To specify a subset of the objects in the source bucket to apply a replication rule to, add the Filter element as a child of the Rule element. You can filter objects based on an object key prefix, one or more object tags, or both. When you add the Filter element in the configuration, you must also add the following elements: DeleteMarkerReplication, Status, and Priority.

If you are using an earlier version of the replication configuration, Amazon S3 handles replication of delete markers differently. For more information, see Backward Compatibility.

For information about enabling versioning on a bucket, see Using Versioning.

By default, a resource owner, in this case the AWS account that created the bucket, can perform this operation. The resource owner can also grant others permissions to perform the operation. For more information about permissions, see Specifying Permissions in a Policy and Managing Access Permissions to Your Amazon S3 Resources.

Handling Replication of Encrypted Objects

By default, Amazon S3 doesn't replicate objects that are stored at rest using server-side encryption with CMKs stored in AWS KMS. To replicate AWS KMS-encrypted objects, add the following: SourceSelectionCriteria, SseKmsEncryptedObjects, Status, EncryptionConfiguration, and ReplicaKmsKeyID. For information about replication configuration, see Replicating Objects Created with SSE Using CMKs stored in AWS KMS.

For information on PutBucketReplication errors, see List of replication-related error codes

The following operations are related to PutBucketReplication:

", "httpChecksumRequired":true }, "PutBucketRequestPayment":{ @@ -1024,7 +1025,7 @@ {"shape":"ObjectAlreadyInActiveTierError"} ], "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectRestore.html", - "documentation":"

Restores an archived copy of an object back into Amazon S3

This action is not supported by Amazon S3 on Outposts.

This action performs the following types of requests:

  • select - Perform a select query on an archived object

  • restore an archive - Restore an archived object

To use this operation, you must have permissions to perform the s3:RestoreObject action. The bucket owner has this permission by default and can grant this permission to others. For more information about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3 Resources in the Amazon Simple Storage Service Developer Guide.

Querying Archives with Select Requests

You use a select type of request to perform SQL queries on archived objects. The archived objects that are being queried by the select request must be formatted as uncompressed comma-separated values (CSV) files. You can run queries and custom analytics on your archived data without having to restore your data to a hotter Amazon S3 tier. For an overview about select requests, see Querying Archived Objects in the Amazon Simple Storage Service Developer Guide.

When making a select request, do the following:

  • Define an output location for the select query's output. This must be an Amazon S3 bucket in the same AWS Region as the bucket that contains the archive object that is being queried. The AWS account that initiates the job must have permissions to write to the S3 bucket. You can specify the storage class and encryption for the output objects stored in the bucket. For more information about output, see Querying Archived Objects in the Amazon Simple Storage Service Developer Guide.

    For more information about the S3 structure in the request body, see the following:

  • Define the SQL expression for the SELECT type of restoration for your query in the request body's SelectParameters structure. You can use expressions like the following examples.

    • The following expression returns all records from the specified object.

      SELECT * FROM Object

    • Assuming that you are not using any headers for data stored in the object, you can specify columns with positional headers.

      SELECT s._1, s._2 FROM Object s WHERE s._3 > 100

    • If you have headers and you set the fileHeaderInfo in the CSV structure in the request body to USE, you can specify headers in the query. (If you set the fileHeaderInfo field to IGNORE, the first row is skipped for the query.) You cannot mix ordinal positions with header column names.

      SELECT s.Id, s.FirstName, s.SSN FROM S3Object s

For more information about using SQL with S3 Glacier Select restore, see SQL Reference for Amazon S3 Select and S3 Glacier Select in the Amazon Simple Storage Service Developer Guide.

When making a select request, you can also do the following:

  • To expedite your queries, specify the Expedited tier. For more information about tiers, see \"Restoring Archives,\" later in this topic.

  • Specify details about the data serialization format of both the input object that is being queried and the serialization of the CSV-encoded query results.

The following are additional important facts about the select feature:

  • The output results are new Amazon S3 objects. Unlike archive retrievals, they are stored until explicitly deleted-manually or through a lifecycle policy.

  • You can issue more than one select request on the same Amazon S3 object. Amazon S3 doesn't deduplicate requests, so avoid issuing duplicate requests.

  • Amazon S3 accepts a select request even if the object has already been restored. A select request doesn’t return error response 409.

Restoring Archives

Objects that you archive to the S3 Glacier, S3 Glacier Deep Archive, S3 Intelligent-Tiering Archive, or S3 Intelligent-Tiering Deep Archive storage classes are not accessible in real time. For objects in Archive Access tier or Deep Archive Access tier you must first initiate a restore request, and then wait until the object is moved into the Frequent Access tier. For objects in S3 Glacier or S3 Glacier Deep Archive you must first initiate a restore request, and then wait until a temporary copy of the object is available. To access an archived object, you must restore the object for the duration (number of days) that you specify.

To restore a specific object version, you can provide a version ID. If you don't provide a version ID, Amazon S3 restores the current version.

When restoring an archived object (or using a select request), you can specify one of the following data access tier options in the Tier element of the request body:

  • Expedited - Expedited retrievals allow you to quickly access your data stored in the S3 Glacier or S3 Intelligent-Tiering Archive storage class when occasional urgent requests for a subset of archives are required. For all but the largest archived objects (250 MB+), data accessed using Expedited retrievals is typically made available within 1–5 minutes. Provisioned capacity ensures that retrieval capacity for Expedited retrievals is available when you need it. Expedited retrievals and provisioned capacity are not available for objects stored in the S3 Glacier Deep Archive or S3 Intelligent-Tiering Deep Archive storage class.

  • Standard - Standard retrievals allow you to access any of your archived objects within several hours. This is the default option for retrieval requests that do not specify the retrieval option. Standard retrievals typically finish within 3–5 hours for objects stored in the S3 Glacier or S3 Intelligent-Tiering Archive storage class. They typically finish within 12 hours for objects stored in the S3 Glacier Deep Archive or S3 Intelligent-Tiering Deep Archive storage class. Standard retrievals are free for objects stored in S3 Intelligent-Tiering.

  • Bulk - Bulk retrievals are the lowest-cost retrieval option in S3 Glacier, enabling you to retrieve large amounts, even petabytes, of data inexpensively. Bulk retrievals typically finish within 5–12 hours for objects stored in the S3 Glacier or S3 Intelligent-Tiering Archive storage class. They typically finish within 48 hours for objects stored in the S3 Glacier Deep Archive or S3 Intelligent-Tiering Deep Archive storage class. Bulk retrievals are free for objects stored in S3 Intelligent-Tiering.

For more information about archive retrieval options and provisioned capacity for Expedited data access, see Restoring Archived Objects in the Amazon Simple Storage Service Developer Guide.

You can use Amazon S3 restore speed upgrade to change the restore speed to a faster speed while it is in progress. For more information, see Upgrading the speed of an in-progress restore in the Amazon Simple Storage Service Developer Guide.

To get the status of object restoration, you can send a HEAD request. Operations return the x-amz-restore header, which provides information about the restoration status, in the response. You can use Amazon S3 event notifications to notify you when a restore is initiated or completed. For more information, see Configuring Amazon S3 Event Notifications in the Amazon Simple Storage Service Developer Guide.

After restoring an archived object, you can update the restoration period by reissuing the request with a new period. Amazon S3 updates the restoration period relative to the current time and charges only for the request-there are no data transfer charges. You cannot update the restoration period when Amazon S3 is actively processing your current restore request for the object.

If your bucket has a lifecycle configuration with a rule that includes an expiration action, the object expiration overrides the life span that you specify in a restore request. For example, if you restore an object copy for 10 days, but the object is scheduled to expire in 3 days, Amazon S3 deletes the object in 3 days. For more information about lifecycle configuration, see PutBucketLifecycleConfiguration and Object Lifecycle Management in Amazon Simple Storage Service Developer Guide.

Responses

A successful operation returns either the 200 OK or 202 Accepted status code.

  • If the object is not previously restored, then Amazon S3 returns 202 Accepted in the response.

  • If the object is previously restored, Amazon S3 returns 200 OK in the response.

Special Errors

    • Code: RestoreAlreadyInProgress

    • Cause: Object restore is already in progress. (This error does not apply to SELECT type requests.)

    • HTTP Status Code: 409 Conflict

    • SOAP Fault Code Prefix: Client

    • Code: GlacierExpeditedRetrievalNotAvailable

    • Cause: expedited retrievals are currently not available. Try again later. (Returned if there is insufficient capacity to process the Expedited request. This error applies only to Expedited retrievals and not to S3 Standard or Bulk retrievals.)

    • HTTP Status Code: 503

    • SOAP Fault Code Prefix: N/A

Related Resources

", + "documentation":"

Restores an archived copy of an object back into Amazon S3

This action is not supported by Amazon S3 on Outposts.

This action performs the following types of requests:

  • select - Perform a select query on an archived object

  • restore an archive - Restore an archived object

To use this operation, you must have permissions to perform the s3:RestoreObject action. The bucket owner has this permission by default and can grant this permission to others. For more information about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3 Resources in the Amazon Simple Storage Service Developer Guide.

Querying Archives with Select Requests

You use a select type of request to perform SQL queries on archived objects. The archived objects that are being queried by the select request must be formatted as uncompressed comma-separated values (CSV) files. You can run queries and custom analytics on your archived data without having to restore your data to a hotter Amazon S3 tier. For an overview about select requests, see Querying Archived Objects in the Amazon Simple Storage Service Developer Guide.

When making a select request, do the following:

  • Define an output location for the select query's output. This must be an Amazon S3 bucket in the same AWS Region as the bucket that contains the archive object that is being queried. The AWS account that initiates the job must have permissions to write to the S3 bucket. You can specify the storage class and encryption for the output objects stored in the bucket. For more information about output, see Querying Archived Objects in the Amazon Simple Storage Service Developer Guide.

    For more information about the S3 structure in the request body, see the following:

  • Define the SQL expression for the SELECT type of restoration for your query in the request body's SelectParameters structure. You can use expressions like the following examples.

    • The following expression returns all records from the specified object.

      SELECT * FROM Object

    • Assuming that you are not using any headers for data stored in the object, you can specify columns with positional headers.

      SELECT s._1, s._2 FROM Object s WHERE s._3 > 100

    • If you have headers and you set the fileHeaderInfo in the CSV structure in the request body to USE, you can specify headers in the query. (If you set the fileHeaderInfo field to IGNORE, the first row is skipped for the query.) You cannot mix ordinal positions with header column names.

      SELECT s.Id, s.FirstName, s.SSN FROM S3Object s

For more information about using SQL with S3 Glacier Select restore, see SQL Reference for Amazon S3 Select and S3 Glacier Select in the Amazon Simple Storage Service Developer Guide.

When making a select request, you can also do the following:

  • To expedite your queries, specify the Expedited tier. For more information about tiers, see \"Restoring Archives,\" later in this topic.

  • Specify details about the data serialization format of both the input object that is being queried and the serialization of the CSV-encoded query results.

The following are additional important facts about the select feature:

  • The output results are new Amazon S3 objects. Unlike archive retrievals, they are stored until explicitly deleted-manually or through a lifecycle policy.

  • You can issue more than one select request on the same Amazon S3 object. Amazon S3 doesn't deduplicate requests, so avoid issuing duplicate requests.

  • Amazon S3 accepts a select request even if the object has already been restored. A select request doesn’t return error response 409.

Restoring objects

Objects that you archive to the S3 Glacier or S3 Glacier Deep Archive storage class, and S3 Intelligent-Tiering Archive or S3 Intelligent-Tiering Deep Archive tiers are not accessible in real time. For objects in Archive Access or Deep Archive Access tiers you must first initiate a restore request, and then wait until the object is moved into the Frequent Access tier. For objects in S3 Glacier or S3 Glacier Deep Archive storage classes you must first initiate a restore request, and then wait until a temporary copy of the object is available. To access an archived object, you must restore the object for the duration (number of days) that you specify.

To restore a specific object version, you can provide a version ID. If you don't provide a version ID, Amazon S3 restores the current version.

When restoring an archived object (or using a select request), you can specify one of the following data access tier options in the Tier element of the request body:

  • Expedited - Expedited retrievals allow you to quickly access your data stored in the S3 Glacier storage class or S3 Intelligent-Tiering Archive tier when occasional urgent requests for a subset of archives are required. For all but the largest archived objects (250 MB+), data accessed using Expedited retrievals is typically made available within 1–5 minutes. Provisioned capacity ensures that retrieval capacity for Expedited retrievals is available when you need it. Expedited retrievals and provisioned capacity are not available for objects stored in the S3 Glacier Deep Archive storage class or S3 Intelligent-Tiering Deep Archive tier.

  • Standard - Standard retrievals allow you to access any of your archived objects within several hours. This is the default option for retrieval requests that do not specify the retrieval option. Standard retrievals typically finish within 3–5 hours for objects stored in the S3 Glacier storage class or S3 Intelligent-Tiering Archive tier. They typically finish within 12 hours for objects stored in the S3 Glacier Deep Archive storage class or S3 Intelligent-Tiering Deep Archive tier. Standard retrievals are free for objects stored in S3 Intelligent-Tiering.

  • Bulk - Bulk retrievals are the lowest-cost retrieval option in S3 Glacier, enabling you to retrieve large amounts, even petabytes, of data inexpensively. Bulk retrievals typically finish within 5–12 hours for objects stored in the S3 Glacier storage class or S3 Intelligent-Tiering Archive tier. They typically finish within 48 hours for objects stored in the S3 Glacier Deep Archive storage class or S3 Intelligent-Tiering Deep Archive tier. Bulk retrievals are free for objects stored in S3 Intelligent-Tiering.

For more information about archive retrieval options and provisioned capacity for Expedited data access, see Restoring Archived Objects in the Amazon Simple Storage Service Developer Guide.

You can use Amazon S3 restore speed upgrade to change the restore speed to a faster speed while it is in progress. For more information, see Upgrading the speed of an in-progress restore in the Amazon Simple Storage Service Developer Guide.

To get the status of object restoration, you can send a HEAD request. Operations return the x-amz-restore header, which provides information about the restoration status, in the response. You can use Amazon S3 event notifications to notify you when a restore is initiated or completed. For more information, see Configuring Amazon S3 Event Notifications in the Amazon Simple Storage Service Developer Guide.

After restoring an archived object, you can update the restoration period by reissuing the request with a new period. Amazon S3 updates the restoration period relative to the current time and charges only for the request-there are no data transfer charges. You cannot update the restoration period when Amazon S3 is actively processing your current restore request for the object.

If your bucket has a lifecycle configuration with a rule that includes an expiration action, the object expiration overrides the life span that you specify in a restore request. For example, if you restore an object copy for 10 days, but the object is scheduled to expire in 3 days, Amazon S3 deletes the object in 3 days. For more information about lifecycle configuration, see PutBucketLifecycleConfiguration and Object Lifecycle Management in Amazon Simple Storage Service Developer Guide.

Responses

A successful operation returns either the 200 OK or 202 Accepted status code.

  • If the object is not previously restored, then Amazon S3 returns 202 Accepted in the response.

  • If the object is previously restored, Amazon S3 returns 200 OK in the response.

Special Errors

    • Code: RestoreAlreadyInProgress

    • Cause: Object restore is already in progress. (This error does not apply to SELECT type requests.)

    • HTTP Status Code: 409 Conflict

    • SOAP Fault Code Prefix: Client

    • Code: GlacierExpeditedRetrievalNotAvailable

    • Cause: expedited retrievals are currently not available. Try again later. (Returned if there is insufficient capacity to process the Expedited request. This error applies only to Expedited retrievals and not to S3 Standard or Bulk retrievals.)

    • HTTP Status Code: 503

    • SOAP Fault Code Prefix: N/A

Related Resources

", "alias":"PostObjectRestore" }, "SelectObjectContent":{ @@ -6813,9 +6814,7 @@ }, "ContentMD5":{ "shape":"ContentMD5", - "documentation":"

The base64-encoded 128-bit MD5 digest of the data. This header must be used as a message integrity check to verify that the request body was not corrupted in transit. For more information, go to RFC 1864.

", - "deprecated":true, - "deprecatedMessage":"Content-MD5 header will now be automatically computed and injected in associated operation's Http request.", + "documentation":"

The base64-encoded 128-bit MD5 digest of the data. This header must be used as a message integrity check to verify that the request body was not corrupted in transit. For more information, go to RFC 1864.

For requests made using the AWS Command Line Interface (CLI) or AWS SDKs, this field is calculated automatically.

", "location":"header", "locationName":"Content-MD5" }, @@ -6914,9 +6913,7 @@ }, "ContentMD5":{ "shape":"ContentMD5", - "documentation":"

The base64-encoded 128-bit MD5 digest of the data. This header must be used as a message integrity check to verify that the request body was not corrupted in transit. For more information, go to RFC 1864.

", - "deprecated":true, - "deprecatedMessage":"Content-MD5 header will now be automatically computed and injected in associated operation's Http request.", + "documentation":"

The base64-encoded 128-bit MD5 digest of the data. This header must be used as a message integrity check to verify that the request body was not corrupted in transit. For more information, go to RFC 1864.

For requests made using the AWS Command Line Interface (CLI) or AWS SDKs, this field is calculated automatically.

", "location":"header", "locationName":"Content-MD5" }, @@ -6944,9 +6941,7 @@ }, "ContentMD5":{ "shape":"ContentMD5", - "documentation":"

The base64-encoded 128-bit MD5 digest of the server-side encryption configuration. This parameter is auto-populated when using the command from the CLI.

", - "deprecated":true, - "deprecatedMessage":"Content-MD5 header will now be automatically computed and injected in associated operation's Http request.", + "documentation":"

The base64-encoded 128-bit MD5 digest of the server-side encryption configuration.

For requests made using the AWS Command Line Interface (CLI) or AWS SDKs, this field is calculated automatically.

", "location":"header", "locationName":"Content-MD5" }, @@ -7065,9 +7060,7 @@ }, "ContentMD5":{ "shape":"ContentMD5", - "documentation":"

", - "deprecated":true, - "deprecatedMessage":"Content-MD5 header will now be automatically computed and injected in associated operation's Http request.", + "documentation":"

For requests made using the AWS Command Line Interface (CLI) or AWS SDKs, this field is calculated automatically.

", "location":"header", "locationName":"Content-MD5" }, @@ -7107,9 +7100,7 @@ }, "ContentMD5":{ "shape":"ContentMD5", - "documentation":"

The MD5 hash of the PutBucketLogging request body.

", - "deprecated":true, - "deprecatedMessage":"Content-MD5 header will now be automatically computed and injected in associated operation's Http request.", + "documentation":"

The MD5 hash of the PutBucketLogging request body.

For requests made using the AWS Command Line Interface (CLI) or AWS SDKs, this field is calculated automatically.

", "location":"header", "locationName":"Content-MD5" }, @@ -7199,9 +7190,7 @@ }, "ContentMD5":{ "shape":"ContentMD5", - "documentation":"

The MD5 hash of the PutPublicAccessBlock request body.

", - "deprecated":true, - "deprecatedMessage":"Content-MD5 header will now be automatically computed and injected in associated operation's Http request.", + "documentation":"

The MD5 hash of the PutPublicAccessBlock request body.

For requests made using the AWS Command Line Interface (CLI) or AWS SDKs, this field is calculated automatically.

", "location":"header", "locationName":"Content-MD5" }, @@ -7235,7 +7224,7 @@ }, "ContentMD5":{ "shape":"ContentMD5", - "documentation":"

The MD5 hash of the OwnershipControls request body.

", + "documentation":"

The MD5 hash of the OwnershipControls request body.

For requests made using the AWS Command Line Interface (CLI) or AWS SDKs, this field is calculated automatically.

", "location":"header", "locationName":"Content-MD5" }, @@ -7269,9 +7258,7 @@ }, "ContentMD5":{ "shape":"ContentMD5", - "documentation":"

The MD5 hash of the request body.

", - "deprecated":true, - "deprecatedMessage":"Content-MD5 header will now be automatically computed and injected in associated operation's Http request.", + "documentation":"

The MD5 hash of the request body.

For requests made using the AWS Command Line Interface (CLI) or AWS SDKs, this field is calculated automatically.

", "location":"header", "locationName":"Content-MD5" }, @@ -7309,9 +7296,7 @@ }, "ContentMD5":{ "shape":"ContentMD5", - "documentation":"

The base64-encoded 128-bit MD5 digest of the data. You must use this header as a message integrity check to verify that the request body was not corrupted in transit. For more information, see RFC 1864.

", - "deprecated":true, - "deprecatedMessage":"Content-MD5 header will now be automatically computed and injected in associated operation's Http request.", + "documentation":"

The base64-encoded 128-bit MD5 digest of the data. You must use this header as a message integrity check to verify that the request body was not corrupted in transit. For more information, see RFC 1864.

For requests made using the AWS Command Line Interface (CLI) or AWS SDKs, this field is calculated automatically.

", "location":"header", "locationName":"Content-MD5" }, @@ -7350,9 +7335,7 @@ }, "ContentMD5":{ "shape":"ContentMD5", - "documentation":"

>The base64-encoded 128-bit MD5 digest of the data. You must use this header as a message integrity check to verify that the request body was not corrupted in transit. For more information, see RFC 1864.

", - "deprecated":true, - "deprecatedMessage":"Content-MD5 header will now be automatically computed and injected in associated operation's Http request.", + "documentation":"

>The base64-encoded 128-bit MD5 digest of the data. You must use this header as a message integrity check to verify that the request body was not corrupted in transit. For more information, see RFC 1864.

For requests made using the AWS Command Line Interface (CLI) or AWS SDKs, this field is calculated automatically.

", "location":"header", "locationName":"Content-MD5" }, @@ -7386,9 +7369,7 @@ }, "ContentMD5":{ "shape":"ContentMD5", - "documentation":"

The base64-encoded 128-bit MD5 digest of the data. You must use this header as a message integrity check to verify that the request body was not corrupted in transit. For more information, see RFC 1864.

", - "deprecated":true, - "deprecatedMessage":"Content-MD5 header will now be automatically computed and injected in associated operation's Http request.", + "documentation":"

The base64-encoded 128-bit MD5 digest of the data. You must use this header as a message integrity check to verify that the request body was not corrupted in transit. For more information, see RFC 1864.

For requests made using the AWS Command Line Interface (CLI) or AWS SDKs, this field is calculated automatically.

", "location":"header", "locationName":"Content-MD5" }, @@ -7422,9 +7403,7 @@ }, "ContentMD5":{ "shape":"ContentMD5", - "documentation":"

>The base64-encoded 128-bit MD5 digest of the data. You must use this header as a message integrity check to verify that the request body was not corrupted in transit. For more information, see RFC 1864.

", - "deprecated":true, - "deprecatedMessage":"Content-MD5 header will now be automatically computed and injected in associated operation's Http request.", + "documentation":"

>The base64-encoded 128-bit MD5 digest of the data. You must use this header as a message integrity check to verify that the request body was not corrupted in transit. For more information, see RFC 1864.

For requests made using the AWS Command Line Interface (CLI) or AWS SDKs, this field is calculated automatically.

", "location":"header", "locationName":"Content-MD5" }, @@ -7464,9 +7443,7 @@ }, "ContentMD5":{ "shape":"ContentMD5", - "documentation":"

The base64-encoded 128-bit MD5 digest of the data. You must use this header as a message integrity check to verify that the request body was not corrupted in transit. For more information, see RFC 1864.

", - "deprecated":true, - "deprecatedMessage":"Content-MD5 header will now be automatically computed and injected in associated operation's Http request.", + "documentation":"

The base64-encoded 128-bit MD5 digest of the data. You must use this header as a message integrity check to verify that the request body was not corrupted in transit. For more information, see RFC 1864.

For requests made using the AWS Command Line Interface (CLI) or AWS SDKs, this field is calculated automatically.

", "location":"header", "locationName":"Content-MD5" }, @@ -7522,9 +7499,7 @@ }, "ContentMD5":{ "shape":"ContentMD5", - "documentation":"

The base64-encoded 128-bit MD5 digest of the data. This header must be used as a message integrity check to verify that the request body was not corrupted in transit. For more information, go to RFC 1864.>

", - "deprecated":true, - "deprecatedMessage":"Content-MD5 header will now be automatically computed and injected in associated operation's Http request.", + "documentation":"

The base64-encoded 128-bit MD5 digest of the data. This header must be used as a message integrity check to verify that the request body was not corrupted in transit. For more information, go to RFC 1864.>

For requests made using the AWS Command Line Interface (CLI) or AWS SDKs, this field is calculated automatically.

", "location":"header", "locationName":"Content-MD5" }, @@ -7632,9 +7607,7 @@ }, "ContentMD5":{ "shape":"ContentMD5", - "documentation":"

The MD5 hash for the request body.

", - "deprecated":true, - "deprecatedMessage":"Content-MD5 header will now be automatically computed and injected in associated operation's Http request.", + "documentation":"

The MD5 hash for the request body.

For requests made using the AWS Command Line Interface (CLI) or AWS SDKs, this field is calculated automatically.

", "location":"header", "locationName":"Content-MD5" }, @@ -7686,9 +7659,7 @@ }, "ContentMD5":{ "shape":"ContentMD5", - "documentation":"

The MD5 hash for the request body.

", - "deprecated":true, - "deprecatedMessage":"Content-MD5 header will now be automatically computed and injected in associated operation's Http request.", + "documentation":"

The MD5 hash for the request body.

For requests made using the AWS Command Line Interface (CLI) or AWS SDKs, this field is calculated automatically.

", "location":"header", "locationName":"Content-MD5" }, @@ -8007,9 +7978,7 @@ }, "ContentMD5":{ "shape":"ContentMD5", - "documentation":"

The MD5 hash for the request body.

", - "deprecated":true, - "deprecatedMessage":"Content-MD5 header will now be automatically computed and injected in associated operation's Http request.", + "documentation":"

The MD5 hash for the request body.

For requests made using the AWS Command Line Interface (CLI) or AWS SDKs, this field is calculated automatically.

", "location":"header", "locationName":"Content-MD5" }, @@ -8061,9 +8030,7 @@ }, "ContentMD5":{ "shape":"ContentMD5", - "documentation":"

The MD5 hash for the request body.

", - "deprecated":true, - "deprecatedMessage":"Content-MD5 header will now be automatically computed and injected in associated operation's Http request.", + "documentation":"

The MD5 hash for the request body.

For requests made using the AWS Command Line Interface (CLI) or AWS SDKs, this field is calculated automatically.

", "location":"header", "locationName":"Content-MD5" }, @@ -8097,9 +8064,7 @@ }, "ContentMD5":{ "shape":"ContentMD5", - "documentation":"

The MD5 hash of the PutPublicAccessBlock request body.

", - "deprecated":true, - "deprecatedMessage":"Content-MD5 header will now be automatically computed and injected in associated operation's Http request.", + "documentation":"

The MD5 hash of the PutPublicAccessBlock request body.

For requests made using the AWS Command Line Interface (CLI) or AWS SDKs, this field is calculated automatically.

", "location":"header", "locationName":"Content-MD5" }, @@ -9059,7 +9024,7 @@ "members":{ "Days":{ "shape":"IntelligentTieringDays", - "documentation":"

The number of days that you want your archived data to be accessible. The minimum number of days specified in the restore request must be at least 90 days. If a smaller value is specifed it will be ignored.

" + "documentation":"

The number of consecutive days of no access after which an object will be eligible to be transitioned to the corresponding tier. The minimum number of days specified for Archive Access tier must be at least 90 days and Deep Archive Access tier must be at least 180 days. The maximum can be up to 2 years (730 days).

" }, "AccessTier":{ "shape":"IntelligentTieringAccessTier", From 8beec44ca7ab004334426c56e4f7624d85c10bf7 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 20 Nov 2020 19:04:34 +0000 Subject: [PATCH 241/339] Managed Streaming for Kafka Update: This release adds support for PER TOPIC PER PARTITION monitoring on AWS MSK clusters. --- .../feature-ManagedStreamingforKafka-337db0d.json | 6 ++++++ .../src/main/resources/codegen-resources/service-2.json | 9 +++++---- 2 files changed, 11 insertions(+), 4 deletions(-) create mode 100644 .changes/next-release/feature-ManagedStreamingforKafka-337db0d.json diff --git a/.changes/next-release/feature-ManagedStreamingforKafka-337db0d.json b/.changes/next-release/feature-ManagedStreamingforKafka-337db0d.json new file mode 100644 index 000000000000..e9ed9a386685 --- /dev/null +++ b/.changes/next-release/feature-ManagedStreamingforKafka-337db0d.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Managed Streaming for Kafka", + "contributor": "", + "description": "This release adds support for PER TOPIC PER PARTITION monitoring on AWS MSK clusters." +} diff --git a/services/kafka/src/main/resources/codegen-resources/service-2.json b/services/kafka/src/main/resources/codegen-resources/service-2.json index 1a15820db076..36934477840f 100644 --- a/services/kafka/src/main/resources/codegen-resources/service-2.json +++ b/services/kafka/src/main/resources/codegen-resources/service-2.json @@ -1392,7 +1392,7 @@ "EnhancedMonitoring": { "shape": "EnhancedMonitoring", "locationName": "enhancedMonitoring", - "documentation": "\n

Specifies which metrics are gathered for the MSK cluster. This property has three possible values: DEFAULT, PER_BROKER, and PER_TOPIC_PER_BROKER. For a list of the metrics associated with each of these three levels of monitoring, see Monitoring.

\n " + "documentation": "\n

Specifies which metrics are gathered for the MSK cluster. This property has the following possible values: DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, and PER_TOPIC_PER_PARTITION. For a list of the metrics associated with each of these levels of monitoring, see Monitoring.

\n " }, "OpenMonitoring" : { "shape" : "OpenMonitoring", @@ -1705,7 +1705,7 @@ "EnhancedMonitoring": { "shape": "EnhancedMonitoring", "locationName": "enhancedMonitoring", - "documentation": "\n

Specifies the level of monitoring for the MSK cluster. The possible values are DEFAULT, PER_BROKER, and PER_TOPIC_PER_BROKER.

\n " + "documentation": "\n

Specifies the level of monitoring for the MSK cluster. The possible values are DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, and PER_TOPIC_PER_PARTITION.

\n " }, "OpenMonitoring" : { "shape" : "OpenMonitoringInfo", @@ -2127,11 +2127,12 @@ }, "EnhancedMonitoring": { "type": "string", - "documentation": "\n

Specifies which metrics are gathered for the MSK cluster. This property has three possible values: DEFAULT, PER_BROKER, and PER_TOPIC_PER_BROKER. For a list of the metrics associated with each of these three levels of monitoring, see Monitoring.

\n ", + "documentation": "\n

Specifies which metrics are gathered for the MSK cluster. This property has the following possible values: DEFAULT, PER_BROKER, PER_TOPIC_PER_BROKER, and PER_TOPIC_PER_PARTITION. For a list of the metrics associated with each of these levels of monitoring, see Monitoring.

\n ", "enum": [ "DEFAULT", "PER_BROKER", - "PER_TOPIC_PER_BROKER" + "PER_TOPIC_PER_BROKER", + "PER_TOPIC_PER_PARTITION" ] }, "Error": { From 2b7a8126c224e2e452cda310872976405a5632f9 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 20 Nov 2020 19:04:35 +0000 Subject: [PATCH 242/339] AWS App Mesh Update: This release makes tag value a required attribute of the tag's key-value pair. --- .changes/next-release/feature-AWSAppMesh-08f09e3.json | 6 ++++++ .../src/main/resources/codegen-resources/service-2.json | 8 ++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AWSAppMesh-08f09e3.json diff --git a/.changes/next-release/feature-AWSAppMesh-08f09e3.json b/.changes/next-release/feature-AWSAppMesh-08f09e3.json new file mode 100644 index 000000000000..ad4fcf84ad08 --- /dev/null +++ b/.changes/next-release/feature-AWSAppMesh-08f09e3.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS App Mesh", + "contributor": "", + "description": "This release makes tag value a required attribute of the tag's key-value pair." +} diff --git a/services/appmesh/src/main/resources/codegen-resources/service-2.json b/services/appmesh/src/main/resources/codegen-resources/service-2.json index a7008d0cf5f6..a0949bdaf39a 100644 --- a/services/appmesh/src/main/resources/codegen-resources/service-2.json +++ b/services/appmesh/src/main/resources/codegen-resources/service-2.json @@ -3665,7 +3665,10 @@ }, "TagRef":{ "type":"structure", - "required":["key"], + "required":[ + "key", + "value" + ], "members":{ "key":{ "shape":"TagKey", @@ -3820,7 +3823,8 @@ "httpStatusCode":429, "senderFault":true }, - "exception":true + "exception":true, + "retryable":{"throttling":true} }, "TooManyTagsException":{ "type":"structure", From 5acf97d0c974ef89ac06b8ee162a0d25f7b10201 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 20 Nov 2020 19:04:36 +0000 Subject: [PATCH 243/339] AWS Service Catalog App Registry Update: AWS Service Catalog AppRegistry Documentation update --- ...-AWSServiceCatalogAppRegistry-c444172.json | 6 ++ .../codegen-resources/service-2.json | 67 ++++++++++--------- 2 files changed, 40 insertions(+), 33 deletions(-) create mode 100644 .changes/next-release/feature-AWSServiceCatalogAppRegistry-c444172.json diff --git a/.changes/next-release/feature-AWSServiceCatalogAppRegistry-c444172.json b/.changes/next-release/feature-AWSServiceCatalogAppRegistry-c444172.json new file mode 100644 index 000000000000..49c5ac2272ab --- /dev/null +++ b/.changes/next-release/feature-AWSServiceCatalogAppRegistry-c444172.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Service Catalog App Registry", + "contributor": "", + "description": "AWS Service Catalog AppRegistry Documentation update" +} diff --git a/services/servicecatalogappregistry/src/main/resources/codegen-resources/service-2.json b/services/servicecatalogappregistry/src/main/resources/codegen-resources/service-2.json index 9b4e6bb0007d..f2c6d677ffa5 100644 --- a/services/servicecatalogappregistry/src/main/resources/codegen-resources/service-2.json +++ b/services/servicecatalogappregistry/src/main/resources/codegen-resources/service-2.json @@ -10,7 +10,7 @@ "serviceId":"Service Catalog AppRegistry", "signatureVersion":"v4", "signingName":"servicecatalog", - "uid":"AWS242AppRegistry" + "uid":"AWS242AppRegistry-2020-06-24" }, "operations":{ "AssociateAttributeGroup":{ @@ -27,7 +27,7 @@ {"shape":"InternalServerException"}, {"shape":"ServiceQuotaExceededException"} ], - "documentation":"

Associates an attribute group with an application to augment the application's metadata with the group's attributes. This way applications can be described with user-defined details which are machine-readable (e.g. for third-party integrations).

" + "documentation":"

Associates an attribute group with an application to augment the application's metadata with the group's attributes. This feature enables applications to be described with user-defined details that are machine-readable, such as third-party integrations.

" }, "AssociateResource":{ "name":"AssociateResource", @@ -76,7 +76,7 @@ {"shape":"ValidationException"}, {"shape":"InternalServerException"} ], - "documentation":"

Creates a new attribute group as a container for user-defined attributes. This approach enables users to have full control over their cloud application's metadata in a rich machine-readable format to facilitate integration with automated workflows and third-party tools.

" + "documentation":"

Creates a new attribute group as a container for user-defined attributes. This feature enables users to have full control over their cloud application's metadata in a rich machine-readable format to facilitate integration with automated workflows and third-party tools.

" }, "DeleteApplication":{ "name":"DeleteApplication", @@ -91,7 +91,7 @@ {"shape":"ValidationException"}, {"shape":"InternalServerException"} ], - "documentation":"

Delete an application, specified either by its application ID or name.

" + "documentation":"

Deletes an application that is specified either by its application ID or name. All associated attribute groups and resources must be disassociated from it before deleting an application.

" }, "DeleteAttributeGroup":{ "name":"DeleteAttributeGroup", @@ -121,7 +121,7 @@ {"shape":"ValidationException"}, {"shape":"InternalServerException"} ], - "documentation":"

Disassociates an attribute group from an application to remove the extra attributes contained in the attribute group from the application's metadata. This operation reverts AssociateAttributeGroup.

" + "documentation":"

Disassociates an attribute group from an application to remove the extra attributes contained in the attribute group from the application's metadata. This operation reverts AssociateAttributeGroup.

" }, "DisassociateResource":{ "name":"DisassociateResource", @@ -150,7 +150,7 @@ {"shape":"ValidationException"}, {"shape":"InternalServerException"} ], - "documentation":"

Retrieves metadata information about one of your applications. The application can be specified either by its unique ID or by its name (which is unique within one account in one region at a given point in time). Specify by ID in automated workflows if you want to make sure that the exact same application is returned or a ResourceNotFoundException is thrown, avoiding the ABA addressing problem.

" + "documentation":"

Retrieves metadata information about one of your applications. The application can be specified either by its unique ID or by its name (which is unique within one account in one region at a given point in time). Specify by ID in automated workflows if you want to make sure that the exact same application is returned or a ResourceNotFoundException is thrown, avoiding the ABA addressing problem.

" }, "GetAttributeGroup":{ "name":"GetAttributeGroup", @@ -165,7 +165,7 @@ {"shape":"ValidationException"}, {"shape":"InternalServerException"} ], - "documentation":"

Retrieves an attribute group, either by its name or its ID.

" + "documentation":"

Retrieves an attribute group, either by its name or its ID. The attribute group can be specified either by its unique ID or by its name.

" }, "ListApplications":{ "name":"ListApplications", @@ -400,6 +400,7 @@ }, "resourceType":{ "shape":"ResourceType", + "documentation":"

The type of resource of which the application will be associated.

", "location":"uri", "locationName":"resourceType" }, @@ -437,7 +438,7 @@ }, "arn":{ "shape":"AttributeGroupArn", - "documentation":"

The Amazon resource name (ARN) that specifies the application across services.

" + "documentation":"

The Amazon resource name (ARN) that specifies the attribute group across services.

" }, "name":{ "shape":"Name", @@ -495,7 +496,7 @@ }, "arn":{ "shape":"AttributeGroupArn", - "documentation":"

The Amazon resource name (ARN) that specifies the application across services.

" + "documentation":"

The Amazon resource name (ARN) that specifies the attribute group across services.

" }, "name":{ "shape":"Name", @@ -558,7 +559,7 @@ }, "clientToken":{ "shape":"ClientToken", - "documentation":"

A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the clientToken, the same response is returned for each repeated request.

", + "documentation":"

A unique identifier that you provide to ensure idempotency. If you retry a request that completed successfully using the same client token and the same parameters, the retry succeeds without performing any further actions. If you retry a successful request using the same client token, but one or more of the parameters are different, the retry fails.

", "idempotencyToken":true } } @@ -568,7 +569,7 @@ "members":{ "application":{ "shape":"Application", - "documentation":"

The name or ID of the application.

" + "documentation":"

Information about the application.

" } } }, @@ -598,7 +599,7 @@ }, "clientToken":{ "shape":"ClientToken", - "documentation":"

A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the clientToken, the same response is returned for each repeated request.

", + "documentation":"

A unique identifier that you provide to ensure idempotency. If you retry a request that completed successfully using the same client token and the same parameters, the retry succeeds without performing any further actions. If you retry a successful request using the same client token, but one or more of the parameters are different, the retry fails.

", "idempotencyToken":true } } @@ -608,7 +609,7 @@ "members":{ "attributeGroup":{ "shape":"AttributeGroup", - "documentation":"

The name or ID of the attribute group that holds the attributes to describe the application.

" + "documentation":"

Information about the attribute group.

" } } }, @@ -629,7 +630,7 @@ "members":{ "application":{ "shape":"ApplicationSummary", - "documentation":"

The name or ID of the application.

" + "documentation":"

Information about the deleted application.

" } } }, @@ -650,7 +651,7 @@ "members":{ "attributeGroup":{ "shape":"AttributeGroupSummary", - "documentation":"

The name or ID of the attribute group that holds the attributes to describe the application.

" + "documentation":"

Information about the deleted attribute group.

" } } }, @@ -684,11 +685,11 @@ "members":{ "applicationArn":{ "shape":"ApplicationArn", - "documentation":"

The Amazon resource name (ARN) of the application that was augmented with attributes.

" + "documentation":"

The Amazon resource name (ARN) that specifies the application.

" }, "attributeGroupArn":{ "shape":"AttributeGroupArn", - "documentation":"

The Amazon resource name (ARN) of the attribute group that contains the application's new attributes.

" + "documentation":"

The Amazon resource name (ARN) that specifies the attribute group.

" } } }, @@ -708,13 +709,13 @@ }, "resourceType":{ "shape":"ResourceType", - "documentation":"

The type of the resource that's being disassociated.

", + "documentation":"

The type of the resource that is being disassociated.

", "location":"uri", "locationName":"resourceType" }, "resource":{ "shape":"ResourceSpecifier", - "documentation":"

The name or ID of the resource of which the application will be associated.

", + "documentation":"

The name or ID of the resource.

", "location":"uri", "locationName":"resource" } @@ -725,7 +726,7 @@ "members":{ "applicationArn":{ "shape":"ApplicationArn", - "documentation":"

The Amazon resource name (ARN) of the application that was augmented with attributes.

" + "documentation":"

The Amazon resource name (ARN) that specifies the application.

" }, "resourceArn":{ "shape":"Arn", @@ -778,7 +779,7 @@ }, "tags":{ "shape":"Tags", - "documentation":"

Key-value pairs you can use to associate with the application.

" + "documentation":"

Key-value pairs associated with the application.

" } } }, @@ -799,11 +800,11 @@ "members":{ "id":{ "shape":"AttributeGroupId", - "documentation":"

The identifier of the application.

" + "documentation":"

The identifier of the attribute group.

" }, "arn":{ "shape":"AttributeGroupArn", - "documentation":"

The Amazon resource name (ARN) that specifies the application across services.

" + "documentation":"

The Amazon resource name (ARN) that specifies the attribute group across services.

" }, "name":{ "shape":"Name", @@ -827,7 +828,7 @@ }, "tags":{ "shape":"Tags", - "documentation":"

Key-value pairs you can use to associate with the attribute group.

" + "documentation":"

Key-value pairs associated with the attribute group.

" } } }, @@ -864,7 +865,7 @@ "members":{ "applications":{ "shape":"ApplicationSummaries", - "documentation":"

The name or ID of the application.

" + "documentation":"

This list of applications.

" }, "nextToken":{ "shape":"NextToken", @@ -940,7 +941,7 @@ "members":{ "resources":{ "shape":"Resources", - "documentation":"

The name or ID of the resource of which the application will be associated.

" + "documentation":"

Information about the resources.

" }, "nextToken":{ "shape":"NextToken", @@ -971,7 +972,7 @@ "members":{ "attributeGroups":{ "shape":"AttributeGroupSummaries", - "documentation":"

A list of attribute group IDs.

" + "documentation":"

This list of attribute groups.

" }, "nextToken":{ "shape":"NextToken", @@ -1005,7 +1006,7 @@ }, "arn":{ "shape":"StackArn", - "documentation":"

The Amazon resource name (ARN) that specifies the application across services.

" + "documentation":"

The Amazon resource name (ARN) that specifies the resource across services.

" } }, "documentation":"

Information about the resource.

" @@ -1075,17 +1076,17 @@ "members":{ "application":{ "shape":"ApplicationSpecifier", - "documentation":"

The name or ID of the application. The name must be unique in the region in which you are updating the attribute group.

", + "documentation":"

The name or ID of the application that will be updated.

", "location":"uri", "locationName":"application" }, "name":{ "shape":"Name", - "documentation":"

The anme of the application. The name must be unique in the region in which you are creating the application.

" + "documentation":"

The new name of the application. The name must be unique in the region in which you are updating the application.

" }, "description":{ "shape":"Description", - "documentation":"

The description of the application.

" + "documentation":"

The new description of the application.

" } } }, @@ -1094,7 +1095,7 @@ "members":{ "application":{ "shape":"Application", - "documentation":"

The name or ID of the application.

" + "documentation":"

The updated information of the application.

" } } }, @@ -1127,7 +1128,7 @@ "members":{ "attributeGroup":{ "shape":"AttributeGroup", - "documentation":"

The name or ID of the attribute group that holds the attributes to describe the application.

" + "documentation":"

The updated information of the attribute group.

" } } }, From 181c231df15d7ac040ea6d9b5896406cd843aeaa Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 20 Nov 2020 19:04:35 +0000 Subject: [PATCH 244/339] Amazon Macie 2 Update: The Amazon Macie API now provides S3 bucket metadata that indicates whether any one-time or recurring classification jobs are configured to analyze data in a bucket. --- .../feature-AmazonMacie2-3f83ac8.json | 6 ++ .../codegen-resources/service-2.json | 75 +++++++++++++++---- 2 files changed, 67 insertions(+), 14 deletions(-) create mode 100644 .changes/next-release/feature-AmazonMacie2-3f83ac8.json diff --git a/.changes/next-release/feature-AmazonMacie2-3f83ac8.json b/.changes/next-release/feature-AmazonMacie2-3f83ac8.json new file mode 100644 index 000000000000..6d6135dbbb57 --- /dev/null +++ b/.changes/next-release/feature-AmazonMacie2-3f83ac8.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Macie 2", + "contributor": "", + "description": "The Amazon Macie API now provides S3 bucket metadata that indicates whether any one-time or recurring classification jobs are configured to analyze data in a bucket." +} diff --git a/services/macie2/src/main/resources/codegen-resources/service-2.json b/services/macie2/src/main/resources/codegen-resources/service-2.json index 4d398ace3486..fdd8ea42364c 100644 --- a/services/macie2/src/main/resources/codegen-resources/service-2.json +++ b/services/macie2/src/main/resources/codegen-resources/service-2.json @@ -2583,12 +2583,12 @@ "kmsManaged": { "shape": "__long", "locationName": "kmsManaged", - "documentation": "

The total number of buckets that use an AWS Key Management Service (AWS KMS) customer master key (CMK) to encrypt objects. These buckets use AWS KMS AWS-managed (AWS-KMS) encryption or AWS KMS customer-managed (SSE-KMS) encryption.

" + "documentation": "

The total number of buckets that use an AWS Key Management Service (AWS KMS) customer master key (CMK) to encrypt objects. These buckets use AWS managed AWS KMS (AWS-KMS) encryption or customer managed AWS KMS (SSE-KMS) encryption.

" }, "s3Managed": { "shape": "__long", "locationName": "s3Managed", - "documentation": "

The total number of buckets that use an Amazon S3-managed key to encrypt objects. These buckets use Amazon S3-managed (SSE-S3) encryption.

" + "documentation": "

The total number of buckets that use an Amazon S3 managed key to encrypt objects. These buckets use Amazon S3 managed (SSE-S3) encryption.

" }, "unencrypted": { "shape": "__long", @@ -2729,6 +2729,11 @@ "locationName": "classifiableSizeInBytes", "documentation": "

The total storage size, in bytes, of the objects that Amazon Macie can analyze in the bucket. These objects use a supported storage class and have a file name extension for a supported file or storage format.

" }, + "jobDetails": { + "shape": "JobDetails", + "locationName": "jobDetails", + "documentation": "

Specifies whether any one-time or recurring classification jobs are configured to analyze data in the bucket, and, if so, the details of the job that ran most recently.

" + }, "lastUpdated": { "shape": "__timestampIso8601", "locationName": "lastUpdated", @@ -3288,7 +3293,7 @@ "eqExactMatch": { "shape": "__listOf__string", "locationName": "eqExactMatch", - "documentation": "

A condition that requires an array field on a finding to exactly match the specified property values. You can use this operator with the following properties: customDataIdentifiers.detections.arn, customDataIdentifiers.detections.name, resourcesAffected.s3Bucket.tags.key, resourcesAffected.s3Bucket.tags.value, resourcesAffected.s3Object.tags.key, resourcesAffected.s3Object.tags.value, sensitiveData.category, and sensitiveData.detections.type.

" + "documentation": "

A condition that requires an array field to exactly match the specified property values. You can use this operator with the following properties: customDataIdentifiers.detections.arn, customDataIdentifiers.detections.name, resourcesAffected.s3Bucket.tags.key, resourcesAffected.s3Bucket.tags.value, resourcesAffected.s3Object.tags.key, resourcesAffected.s3Object.tags.value, sensitiveData.category, and sensitiveData.detections.type.

" }, "gt": { "shape": "__long", @@ -3646,7 +3651,7 @@ "jobStatus": { "shape": "JobStatus", "locationName": "jobStatus", - "documentation": "

The current status of the job. Possible values are:

  • CANCELLED - You cancelled the job, or you paused the job and didn't resume it within 30 days of pausing it.

  • COMPLETE - For a one-time job, Amazon Macie finished processing all the data specified for the job. This value doesn't apply to recurring jobs.

  • IDLE - For a recurring job, the previous scheduled run is complete and the next scheduled run is pending. This value doesn't apply to one-time jobs.

  • PAUSED - Amazon Macie started running the job but completion of the job would exceed one or more quotas for your account.

  • RUNNING - For a one-time job, the job is in progress. For a recurring job, a scheduled run is in progress.

  • USER_PAUSED - You paused the job. If you don't resume the job within 30 days of pausing it, the job will expire and be cancelled.

" + "documentation": "

The current status of the job. Possible values are:

  • CANCELLED - You cancelled the job, or you paused the job while it had a status of RUNNING and you didn't resume it within 30 days of pausing it.

  • COMPLETE - For a one-time job, Amazon Macie finished processing the data specified for the job. This value doesn't apply to recurring jobs.

  • IDLE - For a recurring job, the previous scheduled run is complete and the next scheduled run is pending. This value doesn't apply to one-time jobs.

  • PAUSED - Amazon Macie started running the job but additional processing would exceed the monthly sensitive data discovery quota for your account or one or more member accounts that the job analyzes data for.

  • RUNNING - For a one-time job, the job is in progress. For a recurring job, a scheduled run is in progress.

  • USER_PAUSED - You paused the job. If you paused the job while it had a status of RUNNING and you don't resume the job within 30 days of pausing it, the job expires and is cancelled. To check the job's expiration date, refer to the UserPausedDetails.jobExpiresAt property.

" }, "jobType": { "shape": "JobType", @@ -3661,7 +3666,7 @@ "lastRunTime": { "shape": "__timestampIso8601", "locationName": "lastRunTime", - "documentation": "

The date and time, in UTC and extended ISO 8601 format, when the job last ran.

" + "documentation": "

The date and time, in UTC and extended ISO 8601 format, when the job started. If the job is a recurring job, this value indicates when the most recent run started.

" }, "name": { "shape": "__string", @@ -4794,6 +4799,22 @@ }, "documentation": "

Provides information about the registered owner of an IP address.

" }, + "IsDefinedInJob": { + "type": "string", + "enum": [ + "TRUE", + "FALSE", + "UNKNOWN" + ] + }, + "IsMonitoredByJob": { + "type": "string", + "enum": [ + "TRUE", + "FALSE", + "UNKNOWN" + ] + }, "JobComparator": { "type": "string", "documentation": "

The operator to use in a condition. Valid values are:

", @@ -4807,6 +4828,32 @@ "CONTAINS" ] }, + "JobDetails": { + "type": "structure", + "members": { + "isDefinedInJob": { + "shape": "IsDefinedInJob", + "locationName": "isDefinedInJob", + "documentation": "

Specifies whether any one-time or recurring jobs are configured to analyze data in the bucket. Possible values are:

  • TRUE - One or more jobs is configured to analyze data in the bucket, and at least one of those jobs has a status other than CANCELLED.

  • FALSE - No jobs are configured to analyze data in the bucket, or all the jobs that are configured to analyze data in the bucket have a status of CANCELLED.

  • UNKNOWN - An exception occurred when Amazon Macie attempted to retrieve job data for the bucket.

" + }, + "isMonitoredByJob": { + "shape": "IsMonitoredByJob", + "locationName": "isMonitoredByJob", + "documentation": "

Specifies whether any recurring jobs are configured to analyze data in the bucket. Possible values are:

  • TRUE - One or more recurring jobs is configured to analyze data in the bucket, and at least one of those jobs has a status other than CANCELLED.

  • FALSE - No recurring jobs are configured to analyze data in the bucket, or all the recurring jobs that are configured to analyze data in the bucket have a status of CANCELLED.

  • UNKNOWN - An exception occurred when Amazon Macie attempted to retrieve job data for the bucket.

" + }, + "lastJobId": { + "shape": "__string", + "locationName": "lastJobId", + "documentation": "

The unique identifier for the job that ran most recently (either the latest run of a recurring job or the only run of a one-time job) and is configured to analyze data in the bucket.

This value is null if the value for the isDefinedInJob property is FALSE or UNKNOWN.

" + }, + "lastJobRunTime": { + "shape": "__timestampIso8601", + "locationName": "lastJobRunTime", + "documentation": "

The date and time, in UTC and extended ISO 8601 format, when the job (lastJobId) started. If the job is a recurring job, this value indicates when the most recent run started.

This value is null if the value for the isDefinedInJob property is FALSE or UNKNOWN.

" + } + }, + "documentation": "

Specifies whether any one-time or recurring classification jobs are configured to analyze data in an S3 bucket, and, if so, the details of the job that ran most recently.

" + }, "JobScheduleFrequency": { "type": "structure", "members": { @@ -4888,7 +4935,7 @@ "jobStatus": { "shape": "JobStatus", "locationName": "jobStatus", - "documentation": "

The current status of the job. Possible values are:

  • CANCELLED - You cancelled the job, or you paused the job and didn't resume it within 30 days of pausing it.

  • COMPLETE - For a one-time job, Amazon Macie finished processing all the data specified for the job. This value doesn't apply to recurring jobs.

  • IDLE - For a recurring job, the previous scheduled run is complete and the next scheduled run is pending. This value doesn't apply to one-time jobs.

  • PAUSED - Amazon Macie started running the job but completion of the job would exceed one or more quotas for your account.

  • RUNNING - For a one-time job, the job is in progress. For a recurring job, a scheduled run is in progress.

  • USER_PAUSED - You paused the job. If you don't resume the job within 30 days of pausing it, the job will expire and be cancelled.

" + "documentation": "

The current status of the job. Possible values are:

  • CANCELLED - You cancelled the job, or you paused the job while it had a status of RUNNING and you didn't resume it within 30 days of pausing it.

  • COMPLETE - For a one-time job, Amazon Macie finished processing the data specified for the job. This value doesn't apply to recurring jobs.

  • IDLE - For a recurring job, the previous scheduled run is complete and the next scheduled run is pending. This value doesn't apply to one-time jobs.

  • PAUSED - Amazon Macie started running the job but additional processing would exceed the monthly sensitive data discovery quota for your account or one or more member accounts that the job analyzes data for.

  • RUNNING - For a one-time job, the job is in progress. For a recurring job, a scheduled run is in progress.

  • USER_PAUSED - You paused the job. If you paused the job while it had a status of RUNNING and you don't resume the job within 30 days of pausing it, the job expires and is cancelled. To check the job's expiration date, refer to the UserPausedDetails.jobExpiresAt property.

" }, "jobType": { "shape": "JobType", @@ -4957,7 +5004,7 @@ }, "LastRunErrorStatusCode": { "type": "string", - "documentation": "

Specifies whether any account- or bucket-level access errors occurred during the run of a one-time classification job ran or the most recent run of a recurring classification job. Possible values are:

", + "documentation": "

Specifies whether any account- or bucket-level access errors occurred during the run of a one-time classification job or the most recent run of a recurring classification job. Possible values are:

", "enum": [ "NONE", "ERROR" @@ -5385,12 +5432,12 @@ "kmsManaged": { "shape": "__long", "locationName": "kmsManaged", - "documentation": "

The total number of objects that are encrypted using an AWS Key Management Service (AWS KMS) customer master key (CMK). The objects use AWS KMS AWS-managed (AWS-KMS) encryption or AWS KMS customer-managed (SSE-KMS) encryption.

" + "documentation": "

The total number of objects that are encrypted using an AWS Key Management Service (AWS KMS) customer master key (CMK). The objects use AWS managed AWS KMS (AWS-KMS) encryption or customer managed AWS KMS (SSE-KMS) encryption.

" }, "s3Managed": { "shape": "__long", "locationName": "s3Managed", - "documentation": "

The total number of objects that are encrypted using an Amazon S3-managed key. The objects use Amazon S3-managed (SSE-S3) encryption.

" + "documentation": "

The total number of objects that are encrypted using an Amazon S3 managed key. The objects use Amazon S3 managed (SSE-S3) encryption.

" }, "unencrypted": { "shape": "__long", @@ -5692,7 +5739,7 @@ "accountId": { "shape": "__string", "locationName": "accountId", - "documentation": "

The unique identifier for the AWS account that owns one or more of the buckets. If specified, the job analyzes objects in all the buckets that are owned by the account and meet other conditions specified for the job.

" + "documentation": "

The unique identifier for the AWS account that owns the buckets. If you specify this value and don't specify a value for the buckets array, the job analyzes objects in all the buckets that are owned by the account and meet other conditions specified for the job.

" }, "buckets": { "shape": "__listOf__string", @@ -5700,7 +5747,7 @@ "documentation": "

An array that lists the names of the buckets.

" } }, - "documentation": "

Specifies which S3 buckets contain the objects that a classification job analyzes.

" + "documentation": "

Specifies which AWS account owns the S3 buckets that a classification job analyzes, and the buckets to analyze for the account.

" }, "S3BucketOwner": { "type": "structure", @@ -5749,7 +5796,7 @@ "bucketDefinitions": { "shape": "__listOfS3BucketDefinitionForJob", "locationName": "bucketDefinitions", - "documentation": "

An array of objects, one for each bucket that contains objects to analyze.

" + "documentation": "

An array of objects, one for each AWS account that owns buckets to analyze. Each object specifies the account ID for an account and one or more buckets to analyze for the account.

" }, "scoping": { "shape": "Scoping", @@ -6311,7 +6358,7 @@ "jobStatus": { "shape": "JobStatus", "locationName": "jobStatus", - "documentation": "

The new status for the job. Valid values are:

  • CANCELLED - Stops the job permanently and cancels it. You can't resume a job after you cancel it. This value is valid only if the job's current status is IDLE, PAUSED, RUNNING, or USER_PAUSED.

  • RUNNING - Resumes the job. This value is valid only if the job's current status is USER_PAUSED. If you specify this value, Amazon Macie immediately resumes the job.

  • USER_PAUSED - Pauses the job. This value is valid only if the job's current status is IDLE or RUNNING. If you specify this value and the job is currently running, Macie immediately stops running the job.

    To resume a job after you pause it, change the job's status to RUNNING. If you don't resume a job within 30 days of pausing it, the job expires and Macie cancels it. You can't resume a job after it's cancelled.

" + "documentation": "

The new status for the job. Valid values are:

  • CANCELLED - Stops the job permanently and cancels it. You can't resume a job after you cancel it. This value is valid only if the job's current status is IDLE, PAUSED, RUNNING, or USER_PAUSED.

  • RUNNING - Resumes the job. This value is valid only if the job's current status is USER_PAUSED. If you specify this value, Amazon Macie immediately resumes processing from the point where you paused the job. Otherwise, Macie resumes the job according to the schedule and other configuration settings for the job.

  • USER_PAUSED - Pauses the job. This value is valid only if the job's current status is IDLE or RUNNING. If you specify this value and the job's current status is RUNNING, Macie immediately begins to pause all processing tasks for the job.

    If you pause a job when its status is RUNNING and you don't resume the job within 30 days, the job expires and Macie cancels it. You can't resume a job after it's cancelled.

" } }, "required": [ @@ -6676,7 +6723,7 @@ "documentation": "

The date and time, in UTC and extended ISO 8601 format, when you paused the job.

" } }, - "documentation": "

Provides information about when a classification job was paused and when it will expire and be cancelled if it isn't resumed. This object is present only if a job's current status (jobStatus) is USER_PAUSED.

" + "documentation": "

Provides information about when a classification job was paused and when it will expire and be cancelled if it isn't resumed. This object is present only if a job's current status (jobStatus) is USER_PAUSED. The information in this object applies only to a job that was paused while it had a status of RUNNING.

" }, "ValidationException": { "type": "structure", From c53ed3a3f546f9d570e173162461b514d5a1a156 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 20 Nov 2020 19:04:40 +0000 Subject: [PATCH 245/339] Amazon Cognito Identity Update: Added SDK pagination support for ListIdentityPools --- .../feature-AmazonCognitoIdentity-a3f29eb.json | 6 ++++++ .../codegen-resources/paginators-1.json | 8 +++++++- .../resources/codegen-resources/service-2.json | 17 ++++++++++++----- 3 files changed, 25 insertions(+), 6 deletions(-) create mode 100644 .changes/next-release/feature-AmazonCognitoIdentity-a3f29eb.json diff --git a/.changes/next-release/feature-AmazonCognitoIdentity-a3f29eb.json b/.changes/next-release/feature-AmazonCognitoIdentity-a3f29eb.json new file mode 100644 index 000000000000..123b720d26d8 --- /dev/null +++ b/.changes/next-release/feature-AmazonCognitoIdentity-a3f29eb.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Cognito Identity", + "contributor": "", + "description": "Added SDK pagination support for ListIdentityPools" +} diff --git a/services/cognitoidentity/src/main/resources/codegen-resources/paginators-1.json b/services/cognitoidentity/src/main/resources/codegen-resources/paginators-1.json index 5677bd8e4a2d..0e02fc699b91 100644 --- a/services/cognitoidentity/src/main/resources/codegen-resources/paginators-1.json +++ b/services/cognitoidentity/src/main/resources/codegen-resources/paginators-1.json @@ -1,4 +1,10 @@ { "pagination": { + "ListIdentityPools": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "IdentityPools" + } } -} +} \ No newline at end of file diff --git a/services/cognitoidentity/src/main/resources/codegen-resources/service-2.json b/services/cognitoidentity/src/main/resources/codegen-resources/service-2.json index 3ee6ced33d63..1e23304e3542 100644 --- a/services/cognitoidentity/src/main/resources/codegen-resources/service-2.json +++ b/services/cognitoidentity/src/main/resources/codegen-resources/service-2.json @@ -113,7 +113,8 @@ {"shape":"InternalErrorException"}, {"shape":"ExternalServiceException"} ], - "documentation":"

Returns credentials for the provided identity ID. Any provided logins will be validated against supported login providers. If the token is for cognito-identity.amazonaws.com, it will be passed through to AWS Security Token Service with the appropriate role for the token.

This is a public API. You do not need any credentials to call this API.

" + "documentation":"

Returns credentials for the provided identity ID. Any provided logins will be validated against supported login providers. If the token is for cognito-identity.amazonaws.com, it will be passed through to AWS Security Token Service with the appropriate role for the token.

This is a public API. You do not need any credentials to call this API.

", + "authtype":"none" }, "GetId":{ "name":"GetId", @@ -133,7 +134,8 @@ {"shape":"LimitExceededException"}, {"shape":"ExternalServiceException"} ], - "documentation":"

Generates (or retrieves) a Cognito ID. Supplying multiple logins will create an implicit linked account.

This is a public API. You do not need any credentials to call this API.

" + "documentation":"

Generates (or retrieves) a Cognito ID. Supplying multiple logins will create an implicit linked account.

This is a public API. You do not need any credentials to call this API.

", + "authtype":"none" }, "GetIdentityPoolRoles":{ "name":"GetIdentityPoolRoles", @@ -170,7 +172,8 @@ {"shape":"InternalErrorException"}, {"shape":"ExternalServiceException"} ], - "documentation":"

Gets an OpenID token, using a known Cognito ID. This known Cognito ID is returned by GetId. You can optionally add additional logins for the identity. Supplying multiple logins creates an implicit link.

The OpenId token is valid for 10 minutes.

This is a public API. You do not need any credentials to call this API.

" + "documentation":"

Gets an OpenID token, using a known Cognito ID. This known Cognito ID is returned by GetId. You can optionally add additional logins for the identity. Supplying multiple logins creates an implicit link.

The OpenId token is valid for 10 minutes.

This is a public API. You do not need any credentials to call this API.

", + "authtype":"none" }, "GetOpenIdTokenForDeveloperIdentity":{ "name":"GetOpenIdTokenForDeveloperIdentity", @@ -346,7 +349,8 @@ {"shape":"InternalErrorException"}, {"shape":"ExternalServiceException"} ], - "documentation":"

Unlinks a federated identity from an existing account. Unlinked logins will be considered new identities next time they are seen. Removing the last linked login will make this identity inaccessible.

This is a public API. You do not need any credentials to call this API.

" + "documentation":"

Unlinks a federated identity from an existing account. Unlinked logins will be considered new identities next time they are seen. Removing the last linked login will make this identity inaccessible.

This is a public API. You do not need any credentials to call this API.

", + "authtype":"none" }, "UntagResource":{ "name":"UntagResource", @@ -1176,7 +1180,7 @@ "MappingRulesList":{ "type":"list", "member":{"shape":"MappingRule"}, - "max":25, + "max":400, "min":1 }, "MergeDeveloperIdentitiesInput":{ @@ -1235,6 +1239,7 @@ "OIDCToken":{"type":"string"}, "PaginationKey":{ "type":"string", + "max":65535, "min":1, "pattern":"[\\S]+" }, @@ -1299,6 +1304,8 @@ }, "RoleType":{ "type":"string", + "max":128, + "min":1, "pattern":"(un)?authenticated" }, "RolesMap":{ From cf849be983a968eb4e40841db94bca75535a7aae Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 20 Nov 2020 19:04:36 +0000 Subject: [PATCH 246/339] Amazon Chime Update: The Amazon Chime SDK for messaging provides the building blocks needed to build chat and other real-time collaboration features. --- .../feature-AmazonChime-b0fa82b.json | 6 + .../codegen-resources/paginators-1.json | 60 + .../codegen-resources/service-2.json | 3534 +++++++++++++++-- 3 files changed, 3375 insertions(+), 225 deletions(-) create mode 100644 .changes/next-release/feature-AmazonChime-b0fa82b.json diff --git a/.changes/next-release/feature-AmazonChime-b0fa82b.json b/.changes/next-release/feature-AmazonChime-b0fa82b.json new file mode 100644 index 000000000000..69bde98146a3 --- /dev/null +++ b/.changes/next-release/feature-AmazonChime-b0fa82b.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Chime", + "contributor": "", + "description": "The Amazon Chime SDK for messaging provides the building blocks needed to build chat and other real-time collaboration features." +} diff --git a/services/chime/src/main/resources/codegen-resources/paginators-1.json b/services/chime/src/main/resources/codegen-resources/paginators-1.json index 6727698813d8..83b1912f0785 100644 --- a/services/chime/src/main/resources/codegen-resources/paginators-1.json +++ b/services/chime/src/main/resources/codegen-resources/paginators-1.json @@ -5,6 +5,21 @@ "output_token": "NextToken", "limit_key": "MaxResults" }, + "ListAppInstanceAdmins": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults" + }, + "ListAppInstanceUsers": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults" + }, + "ListAppInstances": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults" + }, "ListAttendees": { "input_token": "NextToken", "output_token": "NextToken", @@ -15,6 +30,41 @@ "output_token": "NextToken", "limit_key": "MaxResults" }, + "ListChannelBans": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults" + }, + "ListChannelMemberships": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults" + }, + "ListChannelMembershipsForAppInstanceUser": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults" + }, + "ListChannelMessages": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults" + }, + "ListChannelModerators": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults" + }, + "ListChannels": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults" + }, + "ListChannelsModeratedByAppInstanceUser": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults" + }, "ListMeetings": { "input_token": "NextToken", "output_token": "NextToken", @@ -45,6 +95,16 @@ "output_token": "NextToken", "limit_key": "MaxResults" }, + "ListSipMediaApplications": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults" + }, + "ListSipRules": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults" + }, "ListUsers": { "input_token": "NextToken", "output_token": "NextToken", diff --git a/services/chime/src/main/resources/codegen-resources/service-2.json b/services/chime/src/main/resources/codegen-resources/service-2.json index d13dd7357f4b..d5f99007e5d4 100644 --- a/services/chime/src/main/resources/codegen-resources/service-2.json +++ b/services/chime/src/main/resources/codegen-resources/service-2.json @@ -254,6 +254,72 @@ ], "documentation":"

Creates an Amazon Chime account under the administrator's AWS account. Only Team account types are currently supported for this action. For more information about different account types, see Managing Your Amazon Chime Accounts in the Amazon Chime Administration Guide.

" }, + "CreateAppInstance":{ + "name":"CreateAppInstance", + "http":{ + "method":"POST", + "requestUri":"/app-instances", + "responseCode":201 + }, + "input":{"shape":"CreateAppInstanceRequest"}, + "output":{"shape":"CreateAppInstanceResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"ForbiddenException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ThrottledClientException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Creates an Amazon Chime Messaging SDK AppInstance under an AWS Account. Only Messaging SDK customers use this API. CreateAppInstance supports idempotency behavior as described in the AWS API Standard.

", + "endpoint":{"hostPrefix":"identity-"} + }, + "CreateAppInstanceAdmin":{ + "name":"CreateAppInstanceAdmin", + "http":{ + "method":"POST", + "requestUri":"/app-instances/{appInstanceArn}/admins", + "responseCode":201 + }, + "input":{"shape":"CreateAppInstanceAdminRequest"}, + "output":{"shape":"CreateAppInstanceAdminResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"ForbiddenException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ThrottledClientException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Promotes an AppInstanceUser to an AppInstanceAdmin. The promoted user can perform the following actions.

  • ChannelModerator actions across all channels in the app instance.

  • DeleteChannelMessage actions.

Only an AppInstanceUser can be promoted to an AppInstanceAdmin role.

", + "endpoint":{"hostPrefix":"identity-"} + }, + "CreateAppInstanceUser":{ + "name":"CreateAppInstanceUser", + "http":{ + "method":"POST", + "requestUri":"/app-instance-users", + "responseCode":201 + }, + "input":{"shape":"CreateAppInstanceUserRequest"}, + "output":{"shape":"CreateAppInstanceUserResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"ForbiddenException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ThrottledClientException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Creates a user under an Amazon Chime AppInstance. The request consists of a unique appInstanceUserId and Name for that user.

", + "endpoint":{"hostPrefix":"identity-"} + }, "CreateAttendee":{ "name":"CreateAttendee", "http":{ @@ -296,6 +362,94 @@ ], "documentation":"

Creates a bot for an Amazon Chime Enterprise account.

" }, + "CreateChannel":{ + "name":"CreateChannel", + "http":{ + "method":"POST", + "requestUri":"/channels", + "responseCode":201 + }, + "input":{"shape":"CreateChannelRequest"}, + "output":{"shape":"CreateChannelResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ConflictException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Creates a channel to which you can add users and send messages.

Restriction: You can't change a channel's privacy.

", + "endpoint":{"hostPrefix":"messaging-"} + }, + "CreateChannelBan":{ + "name":"CreateChannelBan", + "http":{ + "method":"POST", + "requestUri":"/channels/{channelArn}/bans", + "responseCode":201 + }, + "input":{"shape":"CreateChannelBanRequest"}, + "output":{"shape":"CreateChannelBanResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ConflictException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Permanently bans a member from a channel. Moderators can't add banned members to a channel. To undo a ban, you first have to DeleteChannelBan, and then CreateChannelMembership. Bans are cleaned up when you delete users or channels.

If you ban a user who is already part of a channel, that user is automatically kicked from the channel.

", + "endpoint":{"hostPrefix":"messaging-"} + }, + "CreateChannelMembership":{ + "name":"CreateChannelMembership", + "http":{ + "method":"POST", + "requestUri":"/channels/{channelArn}/memberships", + "responseCode":201 + }, + "input":{"shape":"CreateChannelMembershipRequest"}, + "output":{"shape":"CreateChannelMembershipResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ConflictException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Adds a user to a channel. The InvitedBy response field is derived from the request header. A channel member can:

  • List messages

  • Send messages

  • Receive messages

  • Edit their own messages

  • Leave the channel

Privacy settings impact this action as follows:

  • Public Channels: You do not need to be a member to list messages, but you must be a member to send messages.

  • Private Channels: You must be a member to list or send messages.

", + "endpoint":{"hostPrefix":"messaging-"} + }, + "CreateChannelModerator":{ + "name":"CreateChannelModerator", + "http":{ + "method":"POST", + "requestUri":"/channels/{channelArn}/moderators", + "responseCode":201 + }, + "input":{"shape":"CreateChannelModeratorRequest"}, + "output":{"shape":"CreateChannelModeratorResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ConflictException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Creates a new ChannelModerator. A channel moderator can:

  • Add and remove other members of the channel.

  • Add and remove other moderators of the channel.

  • Add and remove user bans for the channel.

  • Redact messages in the channel.

  • List messages in the channel.

", + "endpoint":{"hostPrefix":"messaging-"} + }, "CreateMeeting":{ "name":"CreateMeeting", "http":{ @@ -588,6 +742,84 @@ ], "documentation":"

Deletes the specified Amazon Chime account. You must suspend all users before deleting a Team account. You can use the BatchSuspendUser action to do so.

For EnterpriseLWA and EnterpriseAD accounts, you must release the claimed domains for your Amazon Chime account before deletion. As soon as you release the domain, all users under that account are suspended.

Deleted accounts appear in your Disabled accounts list for 90 days. To restore a deleted account from your Disabled accounts list, you must contact AWS Support.

After 90 days, deleted accounts are permanently removed from your Disabled accounts list.

" }, + "DeleteAppInstance":{ + "name":"DeleteAppInstance", + "http":{ + "method":"DELETE", + "requestUri":"/app-instances/{appInstanceArn}", + "responseCode":204 + }, + "input":{"shape":"DeleteAppInstanceRequest"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"ThrottledClientException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Deletes an AppInstance and all associated data asynchronously.

", + "endpoint":{"hostPrefix":"identity-"} + }, + "DeleteAppInstanceAdmin":{ + "name":"DeleteAppInstanceAdmin", + "http":{ + "method":"DELETE", + "requestUri":"/app-instances/{appInstanceArn}/admins/{appInstanceAdminArn}", + "responseCode":204 + }, + "input":{"shape":"DeleteAppInstanceAdminRequest"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"ForbiddenException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ThrottledClientException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Demotes an AppInstanceAdmin to an AppInstanceUser. This action does not delete the user.

", + "endpoint":{"hostPrefix":"identity-"} + }, + "DeleteAppInstanceStreamingConfigurations":{ + "name":"DeleteAppInstanceStreamingConfigurations", + "http":{ + "method":"DELETE", + "requestUri":"/app-instances/{appInstanceArn}/streaming-configurations", + "responseCode":204 + }, + "input":{"shape":"DeleteAppInstanceStreamingConfigurationsRequest"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"NotFoundException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Deletes the streaming configurations of an app instance.

" + }, + "DeleteAppInstanceUser":{ + "name":"DeleteAppInstanceUser", + "http":{ + "method":"DELETE", + "requestUri":"/app-instance-users/{appInstanceUserArn}", + "responseCode":204 + }, + "input":{"shape":"DeleteAppInstanceUserRequest"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"ThrottledClientException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Deletes an AppInstanceUser.

", + "endpoint":{"hostPrefix":"identity-"} + }, "DeleteAttendee":{ "name":"DeleteAttendee", "http":{ @@ -607,6 +839,101 @@ ], "documentation":"

Deletes an attendee from the specified Amazon Chime SDK meeting and deletes their JoinToken. Attendees are automatically deleted when a Amazon Chime SDK meeting is deleted. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.

" }, + "DeleteChannel":{ + "name":"DeleteChannel", + "http":{ + "method":"DELETE", + "requestUri":"/channels/{channelArn}", + "responseCode":204 + }, + "input":{"shape":"DeleteChannelRequest"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Immediately makes a channel and its memberships inaccessible and marks them for deletion. This is an irreversible process.

", + "endpoint":{"hostPrefix":"messaging-"} + }, + "DeleteChannelBan":{ + "name":"DeleteChannelBan", + "http":{ + "method":"DELETE", + "requestUri":"/channels/{channelArn}/bans/{memberArn}", + "responseCode":204 + }, + "input":{"shape":"DeleteChannelBanRequest"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Removes a user from a channel's ban list.

", + "endpoint":{"hostPrefix":"messaging-"} + }, + "DeleteChannelMembership":{ + "name":"DeleteChannelMembership", + "http":{ + "method":"DELETE", + "requestUri":"/channels/{channelArn}/memberships/{memberArn}", + "responseCode":204 + }, + "input":{"shape":"DeleteChannelMembershipRequest"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Removes a member from a channel.

", + "endpoint":{"hostPrefix":"messaging-"} + }, + "DeleteChannelMessage":{ + "name":"DeleteChannelMessage", + "http":{ + "method":"DELETE", + "requestUri":"/channels/{channelArn}/messages/{messageId}", + "responseCode":204 + }, + "input":{"shape":"DeleteChannelMessageRequest"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Deletes a channel message. Only admins can perform this action. Deletion makes messages inaccessible immediately. A background process deletes any revisions created by UpdateChannelMessage.

", + "endpoint":{"hostPrefix":"messaging-"} + }, + "DeleteChannelModerator":{ + "name":"DeleteChannelModerator", + "http":{ + "method":"DELETE", + "requestUri":"/channels/{channelArn}/moderators/{channelModeratorArn}", + "responseCode":204 + }, + "input":{"shape":"DeleteChannelModeratorRequest"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Deletes a channel moderator.

", + "endpoint":{"hostPrefix":"messaging-"} + }, "DeleteEventsConfiguration":{ "name":"DeleteEventsConfiguration", "http":{ @@ -914,51 +1241,234 @@ ], "documentation":"

Deletes the specified SIP credentials used by your equipment to authenticate during call termination.

" }, - "DisassociatePhoneNumberFromUser":{ - "name":"DisassociatePhoneNumberFromUser", + "DescribeAppInstance":{ + "name":"DescribeAppInstance", "http":{ - "method":"POST", - "requestUri":"/accounts/{accountId}/users/{userId}?operation=disassociate-phone-number", + "method":"GET", + "requestUri":"/app-instances/{appInstanceArn}", "responseCode":200 }, - "input":{"shape":"DisassociatePhoneNumberFromUserRequest"}, - "output":{"shape":"DisassociatePhoneNumberFromUserResponse"}, + "input":{"shape":"DescribeAppInstanceRequest"}, + "output":{"shape":"DescribeAppInstanceResponse"}, "errors":[ - {"shape":"UnauthorizedClientException"}, - {"shape":"NotFoundException"}, - {"shape":"ForbiddenException"}, {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, {"shape":"ThrottledClientException"}, + {"shape":"UnauthorizedClientException"}, {"shape":"ServiceUnavailableException"}, {"shape":"ServiceFailureException"} ], - "documentation":"

Disassociates the primary provisioned phone number from the specified Amazon Chime user.

" + "documentation":"

Returns the full details of an AppInstance.

", + "endpoint":{"hostPrefix":"identity-"} }, - "DisassociatePhoneNumbersFromVoiceConnector":{ - "name":"DisassociatePhoneNumbersFromVoiceConnector", + "DescribeAppInstanceAdmin":{ + "name":"DescribeAppInstanceAdmin", "http":{ - "method":"POST", - "requestUri":"/voice-connectors/{voiceConnectorId}?operation=disassociate-phone-numbers", + "method":"GET", + "requestUri":"/app-instances/{appInstanceArn}/admins/{appInstanceAdminArn}", "responseCode":200 }, - "input":{"shape":"DisassociatePhoneNumbersFromVoiceConnectorRequest"}, - "output":{"shape":"DisassociatePhoneNumbersFromVoiceConnectorResponse"}, + "input":{"shape":"DescribeAppInstanceAdminRequest"}, + "output":{"shape":"DescribeAppInstanceAdminResponse"}, "errors":[ - {"shape":"UnauthorizedClientException"}, - {"shape":"NotFoundException"}, - {"shape":"ForbiddenException"}, {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, {"shape":"ThrottledClientException"}, + {"shape":"UnauthorizedClientException"}, {"shape":"ServiceUnavailableException"}, {"shape":"ServiceFailureException"} ], - "documentation":"

Disassociates the specified phone numbers from the specified Amazon Chime Voice Connector.

" + "documentation":"

Returns the full details of an AppInstanceAdmin.

", + "endpoint":{"hostPrefix":"identity-"} }, - "DisassociatePhoneNumbersFromVoiceConnectorGroup":{ - "name":"DisassociatePhoneNumbersFromVoiceConnectorGroup", + "DescribeAppInstanceUser":{ + "name":"DescribeAppInstanceUser", "http":{ - "method":"POST", - "requestUri":"/voice-connector-groups/{voiceConnectorGroupId}?operation=disassociate-phone-numbers", + "method":"GET", + "requestUri":"/app-instance-users/{appInstanceUserArn}", + "responseCode":200 + }, + "input":{"shape":"DescribeAppInstanceUserRequest"}, + "output":{"shape":"DescribeAppInstanceUserResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"ThrottledClientException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Returns the full details of an AppInstanceUser.

", + "endpoint":{"hostPrefix":"identity-"} + }, + "DescribeChannel":{ + "name":"DescribeChannel", + "http":{ + "method":"GET", + "requestUri":"/channels/{channelArn}", + "responseCode":200 + }, + "input":{"shape":"DescribeChannelRequest"}, + "output":{"shape":"DescribeChannelResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Returns the full details of a channel in an Amazon Chime app instance.

", + "endpoint":{"hostPrefix":"messaging-"} + }, + "DescribeChannelBan":{ + "name":"DescribeChannelBan", + "http":{ + "method":"GET", + "requestUri":"/channels/{channelArn}/bans/{memberArn}", + "responseCode":200 + }, + "input":{"shape":"DescribeChannelBanRequest"}, + "output":{"shape":"DescribeChannelBanResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"NotFoundException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Returns the full details of a channel ban.

", + "endpoint":{"hostPrefix":"messaging-"} + }, + "DescribeChannelMembership":{ + "name":"DescribeChannelMembership", + "http":{ + "method":"GET", + "requestUri":"/channels/{channelArn}/memberships/{memberArn}", + "responseCode":200 + }, + "input":{"shape":"DescribeChannelMembershipRequest"}, + "output":{"shape":"DescribeChannelMembershipResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"NotFoundException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Returns the full details of a user's channel membership.

", + "endpoint":{"hostPrefix":"messaging-"} + }, + "DescribeChannelMembershipForAppInstanceUser":{ + "name":"DescribeChannelMembershipForAppInstanceUser", + "http":{ + "method":"GET", + "requestUri":"/channels/{channelArn}?scope=app-instance-user-membership", + "responseCode":200 + }, + "input":{"shape":"DescribeChannelMembershipForAppInstanceUserRequest"}, + "output":{"shape":"DescribeChannelMembershipForAppInstanceUserResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Returns the details of a channel based on the membership of the AppInstanceUser specified.

", + "endpoint":{"hostPrefix":"messaging-"} + }, + "DescribeChannelModeratedByAppInstanceUser":{ + "name":"DescribeChannelModeratedByAppInstanceUser", + "http":{ + "method":"GET", + "requestUri":"/channels/{channelArn}?scope=app-instance-user-moderated-channel", + "responseCode":200 + }, + "input":{"shape":"DescribeChannelModeratedByAppInstanceUserRequest"}, + "output":{"shape":"DescribeChannelModeratedByAppInstanceUserResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Returns the full details of a channel moderated by the specified AppInstanceUser.

", + "endpoint":{"hostPrefix":"messaging-"} + }, + "DescribeChannelModerator":{ + "name":"DescribeChannelModerator", + "http":{ + "method":"GET", + "requestUri":"/channels/{channelArn}/moderators/{channelModeratorArn}", + "responseCode":200 + }, + "input":{"shape":"DescribeChannelModeratorRequest"}, + "output":{"shape":"DescribeChannelModeratorResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"NotFoundException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Returns the full details of a single ChannelModerator.

", + "endpoint":{"hostPrefix":"messaging-"} + }, + "DisassociatePhoneNumberFromUser":{ + "name":"DisassociatePhoneNumberFromUser", + "http":{ + "method":"POST", + "requestUri":"/accounts/{accountId}/users/{userId}?operation=disassociate-phone-number", + "responseCode":200 + }, + "input":{"shape":"DisassociatePhoneNumberFromUserRequest"}, + "output":{"shape":"DisassociatePhoneNumberFromUserResponse"}, + "errors":[ + {"shape":"UnauthorizedClientException"}, + {"shape":"NotFoundException"}, + {"shape":"ForbiddenException"}, + {"shape":"BadRequestException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Disassociates the primary provisioned phone number from the specified Amazon Chime user.

" + }, + "DisassociatePhoneNumbersFromVoiceConnector":{ + "name":"DisassociatePhoneNumbersFromVoiceConnector", + "http":{ + "method":"POST", + "requestUri":"/voice-connectors/{voiceConnectorId}?operation=disassociate-phone-numbers", + "responseCode":200 + }, + "input":{"shape":"DisassociatePhoneNumbersFromVoiceConnectorRequest"}, + "output":{"shape":"DisassociatePhoneNumbersFromVoiceConnectorResponse"}, + "errors":[ + {"shape":"UnauthorizedClientException"}, + {"shape":"NotFoundException"}, + {"shape":"ForbiddenException"}, + {"shape":"BadRequestException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Disassociates the specified phone numbers from the specified Amazon Chime Voice Connector.

" + }, + "DisassociatePhoneNumbersFromVoiceConnectorGroup":{ + "name":"DisassociatePhoneNumbersFromVoiceConnectorGroup", + "http":{ + "method":"POST", + "requestUri":"/voice-connector-groups/{voiceConnectorGroupId}?operation=disassociate-phone-numbers", "responseCode":200 }, "input":{"shape":"DisassociatePhoneNumbersFromVoiceConnectorGroupRequest"}, @@ -1032,6 +1542,47 @@ ], "documentation":"

Retrieves account settings for the specified Amazon Chime account ID, such as remote control and dial out settings. For more information about these settings, see Use the Policies Page in the Amazon Chime Administration Guide.

" }, + "GetAppInstanceRetentionSettings":{ + "name":"GetAppInstanceRetentionSettings", + "http":{ + "method":"GET", + "requestUri":"/app-instances/{appInstanceArn}/retention-settings", + "responseCode":200 + }, + "input":{"shape":"GetAppInstanceRetentionSettingsRequest"}, + "output":{"shape":"GetAppInstanceRetentionSettingsResponse"}, + "errors":[ + {"shape":"UnauthorizedClientException"}, + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Gets the retention settings for an app instance.

", + "endpoint":{"hostPrefix":"identity-"} + }, + "GetAppInstanceStreamingConfigurations":{ + "name":"GetAppInstanceStreamingConfigurations", + "http":{ + "method":"GET", + "requestUri":"/app-instances/{appInstanceArn}/streaming-configurations", + "responseCode":200 + }, + "input":{"shape":"GetAppInstanceStreamingConfigurationsRequest"}, + "output":{"shape":"GetAppInstanceStreamingConfigurationsResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"NotFoundException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Gets the streaming settings for an app instance.

" + }, "GetAttendee":{ "name":"GetAttendee", "http":{ @@ -1072,6 +1623,27 @@ ], "documentation":"

Retrieves details for the specified bot, such as bot email address, bot type, status, and display name.

" }, + "GetChannelMessage":{ + "name":"GetChannelMessage", + "http":{ + "method":"GET", + "requestUri":"/channels/{channelArn}/messages/{messageId}", + "responseCode":200 + }, + "input":{"shape":"GetChannelMessageRequest"}, + "output":{"shape":"GetChannelMessageResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"NotFoundException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Gets the full details of a channel message.

", + "endpoint":{"hostPrefix":"messaging-"} + }, "GetEventsConfiguration":{ "name":"GetEventsConfiguration", "http":{ @@ -1130,6 +1702,25 @@ ], "documentation":"

Gets the Amazon Chime SDK meeting details for the specified meeting ID. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.

" }, + "GetMessagingSessionEndpoint":{ + "name":"GetMessagingSessionEndpoint", + "http":{ + "method":"GET", + "requestUri":"/endpoints/messaging-session", + "responseCode":200 + }, + "input":{"shape":"GetMessagingSessionEndpointRequest"}, + "output":{"shape":"GetMessagingSessionEndpointResponse"}, + "errors":[ + {"shape":"UnauthorizedClientException"}, + {"shape":"ForbiddenException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

The endpoint for the messaging session.

", + "endpoint":{"hostPrefix":"messaging-"} + }, "GetPhoneNumber":{ "name":"GetPhoneNumber", "http":{ @@ -1424,7 +2015,7 @@ {"shape":"ServiceUnavailableException"}, {"shape":"ServiceFailureException"} ], - "documentation":"

Retrieves the logging configuration details for the specified Amazon Chime Voice Connector. Shows whether SIP message logs are enabled for sending to Amazon CloudWatch Logs.

" + "documentation":"

Retrieves the logging configuration details for the specified Amazon Chime Voice Connector. Shows whether SIP message logs are enabled for sending to Amazon CloudWatch.

" }, "GetVoiceConnectorOrigination":{ "name":"GetVoiceConnectorOrigination", @@ -1565,6 +2156,67 @@ ], "documentation":"

Lists the Amazon Chime accounts under the administrator's AWS account. You can filter accounts by account name prefix. To find out which Amazon Chime account a user belongs to, you can filter by the user's email address, which returns one account result.

" }, + "ListAppInstanceAdmins":{ + "name":"ListAppInstanceAdmins", + "http":{ + "method":"GET", + "requestUri":"/app-instances/{appInstanceArn}/admins", + "responseCode":200 + }, + "input":{"shape":"ListAppInstanceAdminsRequest"}, + "output":{"shape":"ListAppInstanceAdminsResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ThrottledClientException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Returns a list of the administrators in the app instance.

", + "endpoint":{"hostPrefix":"identity-"} + }, + "ListAppInstanceUsers":{ + "name":"ListAppInstanceUsers", + "http":{ + "method":"GET", + "requestUri":"/app-instance-users", + "responseCode":200 + }, + "input":{"shape":"ListAppInstanceUsersRequest"}, + "output":{"shape":"ListAppInstanceUsersResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"ThrottledClientException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

List all AppInstanceUsers created under a single app instance.

", + "endpoint":{"hostPrefix":"identity-"} + }, + "ListAppInstances":{ + "name":"ListAppInstances", + "http":{ + "method":"GET", + "requestUri":"/app-instances", + "responseCode":200 + }, + "input":{"shape":"ListAppInstancesRequest"}, + "output":{"shape":"ListAppInstancesResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"ThrottledClientException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Lists all Amazon Chime app instances created under a single AWS account.

", + "endpoint":{"hostPrefix":"identity-"} + }, "ListAttendeeTags":{ "name":"ListAttendeeTags", "http":{ @@ -1625,59 +2277,199 @@ ], "documentation":"

Lists the bots associated with the administrator's Amazon Chime Enterprise account ID.

" }, - "ListMeetingTags":{ - "name":"ListMeetingTags", + "ListChannelBans":{ + "name":"ListChannelBans", "http":{ "method":"GET", - "requestUri":"/meetings/{meetingId}/tags", + "requestUri":"/channels/{channelArn}/bans", "responseCode":200 }, - "input":{"shape":"ListMeetingTagsRequest"}, - "output":{"shape":"ListMeetingTagsResponse"}, + "input":{"shape":"ListChannelBansRequest"}, + "output":{"shape":"ListChannelBansResponse"}, "errors":[ {"shape":"BadRequestException"}, {"shape":"ForbiddenException"}, - {"shape":"NotFoundException"}, - {"shape":"ThrottledClientException"}, {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, {"shape":"ServiceUnavailableException"}, {"shape":"ServiceFailureException"} ], - "documentation":"

Lists the tags applied to an Amazon Chime SDK meeting resource.

" + "documentation":"

Lists all the users banned from a particular channel.

", + "endpoint":{"hostPrefix":"messaging-"} }, - "ListMeetings":{ - "name":"ListMeetings", + "ListChannelMemberships":{ + "name":"ListChannelMemberships", "http":{ "method":"GET", - "requestUri":"/meetings", + "requestUri":"/channels/{channelArn}/memberships", "responseCode":200 }, - "input":{"shape":"ListMeetingsRequest"}, - "output":{"shape":"ListMeetingsResponse"}, + "input":{"shape":"ListChannelMembershipsRequest"}, + "output":{"shape":"ListChannelMembershipsResponse"}, "errors":[ {"shape":"BadRequestException"}, {"shape":"ForbiddenException"}, - {"shape":"ThrottledClientException"}, {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, {"shape":"ServiceUnavailableException"}, {"shape":"ServiceFailureException"} ], - "documentation":"

Lists up to 100 active Amazon Chime SDK meetings. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.

" + "documentation":"

Lists all channel memberships in a channel.

", + "endpoint":{"hostPrefix":"messaging-"} }, - "ListPhoneNumberOrders":{ - "name":"ListPhoneNumberOrders", + "ListChannelMembershipsForAppInstanceUser":{ + "name":"ListChannelMembershipsForAppInstanceUser", "http":{ "method":"GET", - "requestUri":"/phone-number-orders", + "requestUri":"/channels?scope=app-instance-user-memberships", "responseCode":200 }, - "input":{"shape":"ListPhoneNumberOrdersRequest"}, - "output":{"shape":"ListPhoneNumberOrdersResponse"}, + "input":{"shape":"ListChannelMembershipsForAppInstanceUserRequest"}, + "output":{"shape":"ListChannelMembershipsForAppInstanceUserResponse"}, "errors":[ - {"shape":"UnauthorizedClientException"}, - {"shape":"ForbiddenException"}, {"shape":"BadRequestException"}, - {"shape":"ThrottledClientException"}, + {"shape":"ForbiddenException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Lists all channels that a particular AppInstanceUser is a part of. Only an AppInstanceAdmin can call the API with a user ARN that is not their own.

", + "endpoint":{"hostPrefix":"messaging-"} + }, + "ListChannelMessages":{ + "name":"ListChannelMessages", + "http":{ + "method":"GET", + "requestUri":"/channels/{channelArn}/messages", + "responseCode":200 + }, + "input":{"shape":"ListChannelMessagesRequest"}, + "output":{"shape":"ListChannelMessagesResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

List all the messages in a channel. Returns a paginated list of ChannelMessages. Sorted in descending order by default, based on the creation timestamp.

Redacted messages appear in the results as empty, since they are only redacted, not deleted. Deleted messages do not appear in the results. This action always returns the latest version of an edited message.

", + "endpoint":{"hostPrefix":"messaging-"} + }, + "ListChannelModerators":{ + "name":"ListChannelModerators", + "http":{ + "method":"GET", + "requestUri":"/channels/{channelArn}/moderators", + "responseCode":200 + }, + "input":{"shape":"ListChannelModeratorsRequest"}, + "output":{"shape":"ListChannelModeratorsResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Lists all the moderators for a channel.

", + "endpoint":{"hostPrefix":"messaging-"} + }, + "ListChannels":{ + "name":"ListChannels", + "http":{ + "method":"GET", + "requestUri":"/channels", + "responseCode":200 + }, + "input":{"shape":"ListChannelsRequest"}, + "output":{"shape":"ListChannelsResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Lists all Channels created under a single Chime App as a paginated list. You can specify filters to narrow results.

Functionality & restrictions

  • Use privacy = PUBLIC to retrieve all public channels in the account

  • Only an AppInstanceAdmin can set privacy = PRIVATE to list the private channels in an account.

", + "endpoint":{"hostPrefix":"messaging-"} + }, + "ListChannelsModeratedByAppInstanceUser":{ + "name":"ListChannelsModeratedByAppInstanceUser", + "http":{ + "method":"GET", + "requestUri":"/channels?scope=app-instance-user-moderated-channels", + "responseCode":200 + }, + "input":{"shape":"ListChannelsModeratedByAppInstanceUserRequest"}, + "output":{"shape":"ListChannelsModeratedByAppInstanceUserResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

A list of the channels moderated by an app instance user.

", + "endpoint":{"hostPrefix":"messaging-"} + }, + "ListMeetingTags":{ + "name":"ListMeetingTags", + "http":{ + "method":"GET", + "requestUri":"/meetings/{meetingId}/tags", + "responseCode":200 + }, + "input":{"shape":"ListMeetingTagsRequest"}, + "output":{"shape":"ListMeetingTagsResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"NotFoundException"}, + {"shape":"ThrottledClientException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Lists the tags applied to an Amazon Chime SDK meeting resource.

" + }, + "ListMeetings":{ + "name":"ListMeetings", + "http":{ + "method":"GET", + "requestUri":"/meetings", + "responseCode":200 + }, + "input":{"shape":"ListMeetingsRequest"}, + "output":{"shape":"ListMeetingsResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"ThrottledClientException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Lists up to 100 active Amazon Chime SDK meetings. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.

" + }, + "ListPhoneNumberOrders":{ + "name":"ListPhoneNumberOrders", + "http":{ + "method":"GET", + "requestUri":"/phone-number-orders", + "responseCode":200 + }, + "input":{"shape":"ListPhoneNumberOrdersRequest"}, + "output":{"shape":"ListPhoneNumberOrdersResponse"}, + "errors":[ + {"shape":"UnauthorizedClientException"}, + {"shape":"ForbiddenException"}, + {"shape":"BadRequestException"}, + {"shape":"ThrottledClientException"}, {"shape":"ServiceUnavailableException"}, {"shape":"ServiceFailureException"} ], @@ -1915,6 +2707,48 @@ ], "documentation":"

Logs out the specified user from all of the devices they are currently logged into.

" }, + "PutAppInstanceRetentionSettings":{ + "name":"PutAppInstanceRetentionSettings", + "http":{ + "method":"PUT", + "requestUri":"/app-instances/{appInstanceArn}/retention-settings", + "responseCode":200 + }, + "input":{"shape":"PutAppInstanceRetentionSettingsRequest"}, + "output":{"shape":"PutAppInstanceRetentionSettingsResponse"}, + "errors":[ + {"shape":"UnauthorizedClientException"}, + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"ConflictException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Sets the amount of time in days that a given app instance retains data.

", + "endpoint":{"hostPrefix":"identity-"} + }, + "PutAppInstanceStreamingConfigurations":{ + "name":"PutAppInstanceStreamingConfigurations", + "http":{ + "method":"PUT", + "requestUri":"/app-instances/{appInstanceArn}/streaming-configurations", + "responseCode":200 + }, + "input":{"shape":"PutAppInstanceStreamingConfigurationsRequest"}, + "output":{"shape":"PutAppInstanceStreamingConfigurationsResponse"}, + "errors":[ + {"shape":"NotFoundException"}, + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

The data streaming configurations of an app instance.

" + }, "PutEventsConfiguration":{ "name":"PutEventsConfiguration", "http":{ @@ -2116,6 +2950,26 @@ ], "documentation":"

Adds termination SIP credentials for the specified Amazon Chime Voice Connector.

" }, + "RedactChannelMessage":{ + "name":"RedactChannelMessage", + "http":{ + "method":"POST", + "requestUri":"/channels/{channelArn}/messages/{messageId}?operation=redact", + "responseCode":200 + }, + "input":{"shape":"RedactChannelMessageRequest"}, + "output":{"shape":"RedactChannelMessageResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Redacts message content, but not metadata. The message exists in the back end, but the action returns null content, and the state shows as redacted.

", + "endpoint":{"hostPrefix":"messaging-"} + }, "RedactConversationMessage":{ "name":"RedactConversationMessage", "http":{ @@ -2154,7 +3008,7 @@ {"shape":"ServiceUnavailableException"}, {"shape":"ServiceFailureException"} ], - "documentation":"

Redacts the specified message from the specified Amazon Chime chat room.

" + "documentation":"

Redacts the specified message from the specified Amazon Chime channel.

" }, "RegenerateSecurityToken":{ "name":"RegenerateSecurityToken", @@ -2236,6 +3090,27 @@ ], "documentation":"

Searches phone numbers that can be ordered.

" }, + "SendChannelMessage":{ + "name":"SendChannelMessage", + "http":{ + "method":"POST", + "requestUri":"/channels/{channelArn}/messages", + "responseCode":201 + }, + "input":{"shape":"SendChannelMessageRequest"}, + "output":{"shape":"SendChannelMessageResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"ForbiddenException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Sends a message to a particular channel that the member is a part of.

STANDARD messages can contain 4KB of data and the 1KB of metadata. CONTROL messages can contain 30 bytes of data and no metadata.

", + "endpoint":{"hostPrefix":"messaging-"} + }, "TagAttendee":{ "name":"TagAttendee", "http":{ @@ -2391,6 +3266,48 @@ ], "documentation":"

Updates the settings for the specified Amazon Chime account. You can update settings for remote control of shared screens, or for the dial-out option. For more information about these settings, see Use the Policies Page in the Amazon Chime Administration Guide.

" }, + "UpdateAppInstance":{ + "name":"UpdateAppInstance", + "http":{ + "method":"PUT", + "requestUri":"/app-instances/{appInstanceArn}", + "responseCode":200 + }, + "input":{"shape":"UpdateAppInstanceRequest"}, + "output":{"shape":"UpdateAppInstanceResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"ForbiddenException"}, + {"shape":"ThrottledClientException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Updates AppInstance metadata.

", + "endpoint":{"hostPrefix":"identity-"} + }, + "UpdateAppInstanceUser":{ + "name":"UpdateAppInstanceUser", + "http":{ + "method":"PUT", + "requestUri":"/app-instance-users/{appInstanceUserArn}", + "responseCode":200 + }, + "input":{"shape":"UpdateAppInstanceUserRequest"}, + "output":{"shape":"UpdateAppInstanceUserResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"ForbiddenException"}, + {"shape":"ThrottledClientException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Updates the details for an AppInstanceUser. You can update names and metadata.

", + "endpoint":{"hostPrefix":"identity-"} + }, "UpdateBot":{ "name":"UpdateBot", "http":{ @@ -2411,6 +3328,69 @@ ], "documentation":"

Updates the status of the specified bot, such as starting or stopping the bot from running in your Amazon Chime Enterprise account.

" }, + "UpdateChannel":{ + "name":"UpdateChannel", + "http":{ + "method":"PUT", + "requestUri":"/channels/{channelArn}", + "responseCode":200 + }, + "input":{"shape":"UpdateChannelRequest"}, + "output":{"shape":"UpdateChannelResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"ConflictException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Update a channel's attributes.

Restriction: You can't change a channel's privacy.

", + "endpoint":{"hostPrefix":"messaging-"} + }, + "UpdateChannelMessage":{ + "name":"UpdateChannelMessage", + "http":{ + "method":"PUT", + "requestUri":"/channels/{channelArn}/messages/{messageId}", + "responseCode":200 + }, + "input":{"shape":"UpdateChannelMessageRequest"}, + "output":{"shape":"UpdateChannelMessageResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ConflictException"}, + {"shape":"ForbiddenException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Updates the content of a message.

", + "endpoint":{"hostPrefix":"messaging-"} + }, + "UpdateChannelReadMarker":{ + "name":"UpdateChannelReadMarker", + "http":{ + "method":"PUT", + "requestUri":"/channels/{channelArn}/readMarker", + "responseCode":200 + }, + "input":{"shape":"UpdateChannelReadMarkerRequest"}, + "output":{"shape":"UpdateChannelReadMarkerResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ForbiddenException"}, + {"shape":"ConflictException"}, + {"shape":"UnauthorizedClientException"}, + {"shape":"ThrottledClientException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ServiceFailureException"} + ], + "documentation":"

Sets the timestamp to the point when a user last read messages in a channel.

", + "endpoint":{"hostPrefix":"messaging-"} + }, "UpdateGlobalSettings":{ "name":"UpdateGlobalSettings", "http":{ @@ -2756,26 +3736,209 @@ "type":"string", "pattern":"[A-Z]{2}" }, - "AreaCode":{ - "type":"string", - "pattern":"^$|^[0-9]{3,3}$" - }, - "Arn":{ - "type":"string", - "max":1024, - "min":1, - "pattern":"^arn[\\/\\:\\-\\_\\.a-zA-Z0-9]+$", - "sensitive":true - }, - "AssociatePhoneNumberWithUserRequest":{ + "AppInstance":{ "type":"structure", - "required":[ - "AccountId", - "UserId", - "E164PhoneNumber" - ], "members":{ - "AccountId":{ + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the messaging instance.

" + }, + "Name":{ + "shape":"NonEmptyResourceName", + "documentation":"

The name of an app instance.

" + }, + "Metadata":{ + "shape":"Metadata", + "documentation":"

The metadata of an app instance.

" + }, + "CreatedTimestamp":{ + "shape":"Timestamp", + "documentation":"

The time at which an app instance was created. In epoch milliseconds.

" + }, + "LastUpdatedTimestamp":{ + "shape":"Timestamp", + "documentation":"

The time an app instance was last updated. In epoch milliseconds.

" + } + }, + "documentation":"

An instance of a Chime messaging application.

" + }, + "AppInstanceAdmin":{ + "type":"structure", + "members":{ + "Admin":{ + "shape":"Identity", + "documentation":"

The name and metadata of the app instance administrator.

" + }, + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance administrator.

" + }, + "CreatedTimestamp":{ + "shape":"Timestamp", + "documentation":"

The time at which an administrator was created.

" + } + }, + "documentation":"

Promotes a user to the administrator role for the duration of an app instance.

" + }, + "AppInstanceAdminList":{ + "type":"list", + "member":{"shape":"AppInstanceAdminSummary"} + }, + "AppInstanceAdminSummary":{ + "type":"structure", + "members":{ + "Admin":{ + "shape":"Identity", + "documentation":"

The name and metadata of the app instance administrator.

" + } + }, + "documentation":"

The identity and metadata of an administrator.

" + }, + "AppInstanceDataType":{ + "type":"string", + "enum":[ + "Channel", + "ChannelMessage" + ] + }, + "AppInstanceList":{ + "type":"list", + "member":{"shape":"AppInstanceSummary"} + }, + "AppInstanceRetentionSettings":{ + "type":"structure", + "members":{ + "ChannelRetentionSettings":{ + "shape":"ChannelRetentionSettings", + "documentation":"

The length of time in days to retain a channel.

" + } + }, + "documentation":"

The length of time in days to retain messages.

" + }, + "AppInstanceStreamingConfiguration":{ + "type":"structure", + "required":[ + "AppInstanceDataType", + "ResourceArn" + ], + "members":{ + "AppInstanceDataType":{ + "shape":"AppInstanceDataType", + "documentation":"

The data type of the app instance.

" + }, + "ResourceArn":{ + "shape":"Arn", + "documentation":"

The resource ARN.

" + } + }, + "documentation":"

The streaming configuration of an app instance.

" + }, + "AppInstanceStreamingConfigurationList":{ + "type":"list", + "member":{"shape":"AppInstanceStreamingConfiguration"}, + "max":2, + "min":1 + }, + "AppInstanceSummary":{ + "type":"structure", + "members":{ + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The app instance ARN.

" + }, + "Name":{ + "shape":"NonEmptyResourceName", + "documentation":"

The name of the app instance summary.

" + }, + "Metadata":{ + "shape":"Metadata", + "documentation":"

The metadata of the app instance summary.

" + } + }, + "documentation":"

The summary data for an app instance.

" + }, + "AppInstanceUser":{ + "type":"structure", + "members":{ + "AppInstanceUserArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance user.

" + }, + "Name":{ + "shape":"UserName", + "documentation":"

The name of the app instance user.

" + }, + "CreatedTimestamp":{ + "shape":"Timestamp", + "documentation":"

The time at which the app instance user was created.

" + }, + "Metadata":{ + "shape":"Metadata", + "documentation":"

The metadata of the app instance user.

" + }, + "LastUpdatedTimestamp":{ + "shape":"Timestamp", + "documentation":"

The time at which the app instance user was last updated.

" + } + }, + "documentation":"

The app instance user.

" + }, + "AppInstanceUserList":{ + "type":"list", + "member":{"shape":"AppInstanceUserSummary"} + }, + "AppInstanceUserMembershipSummary":{ + "type":"structure", + "members":{ + "Type":{ + "shape":"ChannelMembershipType", + "documentation":"

The type of channel summary,

" + }, + "ReadMarkerTimestamp":{ + "shape":"Timestamp", + "documentation":"

The time at which a summary was last read.

" + } + }, + "documentation":"

Lists the channels to which app instance users belong.

" + }, + "AppInstanceUserSummary":{ + "type":"structure", + "members":{ + "AppInstanceUserArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance user.

" + }, + "Name":{ + "shape":"UserName", + "documentation":"

The name in an app instance user summary.

" + }, + "Metadata":{ + "shape":"Metadata", + "documentation":"

The metadata in an app instance user summary.

" + } + }, + "documentation":"

The app instance user summary data .

" + }, + "AreaCode":{ + "type":"string", + "pattern":"^$|^[0-9]{3,3}$" + }, + "Arn":{ + "type":"string", + "max":1024, + "min":1, + "pattern":"^arn[\\/\\:\\-\\_\\.a-zA-Z0-9]+$", + "sensitive":true + }, + "AssociatePhoneNumberWithUserRequest":{ + "type":"structure", + "required":[ + "AccountId", + "UserId", + "E164PhoneNumber" + ], + "members":{ + "AccountId":{ "shape":"String", "documentation":"

The Amazon Chime account ID.

", "location":"uri", @@ -3215,162 +4378,775 @@ "type":"list", "member":{"shape":"Capability"} }, - "ClientRequestToken":{ - "type":"string", - "max":64, - "min":2, - "pattern":"[-_a-zA-Z0-9]*", - "sensitive":true - }, - "ConflictException":{ + "Channel":{ "type":"structure", "members":{ - "Code":{"shape":"ErrorCode"}, - "Message":{"shape":"String"} + "Name":{ + "shape":"NonEmptyResourceName", + "documentation":"

The name of the channel.

" + }, + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

" + }, + "Mode":{ + "shape":"ChannelMode", + "documentation":"

The mode of the channel.

" + }, + "Privacy":{ + "shape":"ChannelPrivacy", + "documentation":"

The channel's privacy setting, PUBLIC or HIDDEN.

" + }, + "Metadata":{ + "shape":"Metadata", + "documentation":"

The metadata of the channel.

" + }, + "CreatedBy":{ + "shape":"Identity", + "documentation":"

The administrator who created the channel.

" + }, + "CreatedTimestamp":{ + "shape":"Timestamp", + "documentation":"

The time at which the administrator created the channel.

" + }, + "LastMessageTimestamp":{ + "shape":"Timestamp", + "documentation":"

The time at which a member sent the last message in a session.

" + }, + "LastUpdatedTimestamp":{ + "shape":"Timestamp", + "documentation":"

The time at which a channel was last updated.

" + } }, - "documentation":"

The request could not be processed because of conflict in the current state of the resource.

", - "error":{"httpStatusCode":409}, - "exception":true + "documentation":"

Creates a channel.

" }, - "ConversationRetentionSettings":{ + "ChannelBan":{ "type":"structure", "members":{ - "RetentionDays":{ - "shape":"RetentionDays", - "documentation":"

The number of days for which to retain chat conversation messages.

" + "Member":{ + "shape":"Identity", + "documentation":"

The member being banned from the channel.

" + }, + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel from which a member is being banned.

" + }, + "CreatedTimestamp":{ + "shape":"Timestamp", + "documentation":"

The time at which the ban was created.

" + }, + "CreatedBy":{ + "shape":"Identity", + "documentation":"

The parameter of the action.

" } }, - "documentation":"

The retention settings that determine how long to retain chat conversation messages for an Amazon Chime Enterprise account.

" - }, - "Country":{ - "type":"string", - "pattern":"^$|^[A-Z]{2,2}$" + "documentation":"

Bans a user from a channel.

" }, - "CountryList":{ - "type":"list", - "member":{"shape":"Country"}, - "max":100, - "min":1 - }, - "CpsLimit":{ - "type":"integer", - "min":1 - }, - "CreateAccountRequest":{ + "ChannelBanSummary":{ "type":"structure", - "required":["Name"], "members":{ - "Name":{ - "shape":"AccountName", - "documentation":"

The name of the Amazon Chime account.

" + "Member":{ + "shape":"Identity", + "documentation":"

The member being banned from a channel.

" } - } + }, + "documentation":"

The summary data for the channel ban.

" }, - "CreateAccountResponse":{ - "type":"structure", - "members":{ - "Account":{"shape":"Account"} - } + "ChannelBanSummaryList":{ + "type":"list", + "member":{"shape":"ChannelBanSummary"} }, - "CreateAttendeeError":{ + "ChannelMembership":{ "type":"structure", "members":{ - "ExternalUserId":{ - "shape":"ExternalUserIdType", - "documentation":"

The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application. If you create an attendee with the same external user id, the service returns the existing record.

" + "InvitedBy":{ + "shape":"Identity", + "documentation":"

The identifier of the member who invited another member. Taken from the message header.

" }, - "ErrorCode":{ - "shape":"String", - "documentation":"

The error code.

" + "Type":{ + "shape":"ChannelMembershipType", + "documentation":"

The membership type set for the channel member.

" }, - "ErrorMessage":{ - "shape":"String", - "documentation":"

The error message.

" - } - }, - "documentation":"

The list of errors returned when errors are encountered during the BatchCreateAttendee and CreateAttendee actions. This includes external user IDs, error codes, and error messages.

" - }, - "CreateAttendeeRequest":{ - "type":"structure", - "required":[ - "MeetingId", - "ExternalUserId" - ], - "members":{ - "MeetingId":{ - "shape":"GuidString", - "documentation":"

The Amazon Chime SDK meeting ID.

", - "location":"uri", - "locationName":"meetingId" + "Member":{ + "shape":"Identity", + "documentation":"

The data of the channel member.

" }, - "ExternalUserId":{ - "shape":"ExternalUserIdType", - "documentation":"

The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application. If you create an attendee with the same external user id, the service returns the existing record.

" + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the member's channel.

" }, - "Tags":{ - "shape":"AttendeeTagList", - "documentation":"

The tag key-value pairs.

" + "CreatedTimestamp":{ + "shape":"Timestamp", + "documentation":"

The time at which the channel membership was created.

" + }, + "LastUpdatedTimestamp":{ + "shape":"Timestamp", + "documentation":"

The time at which a channel membership was last updated.

" } - } + }, + "documentation":"

Creates a channel member.

" }, - "CreateAttendeeRequestItem":{ + "ChannelMembershipForAppInstanceUserSummary":{ "type":"structure", - "required":["ExternalUserId"], "members":{ - "ExternalUserId":{ - "shape":"ExternalUserIdType", - "documentation":"

The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application. If you create an attendee with the same external user id, the service returns the existing record.

" - }, - "Tags":{ - "shape":"AttendeeTagList", - "documentation":"

The tag key-value pairs.

" + "ChannelSummary":{"shape":"ChannelSummary"}, + "AppInstanceUserMembershipSummary":{ + "shape":"AppInstanceUserMembershipSummary", + "documentation":"

Returns the channel membership data for an app instance.

" } }, - "documentation":"

The Amazon Chime SDK attendee fields to create, used with the BatchCreateAttendee action.

" + "documentation":"

Returns the channel membership summary data for an app instance.

" }, - "CreateAttendeeRequestItemList":{ + "ChannelMembershipForAppInstanceUserSummaryList":{ "type":"list", - "member":{"shape":"CreateAttendeeRequestItem"} + "member":{"shape":"ChannelMembershipForAppInstanceUserSummary"} }, - "CreateAttendeeResponse":{ + "ChannelMembershipSummary":{ "type":"structure", "members":{ - "Attendee":{ - "shape":"Attendee", - "documentation":"

The attendee information, including attendee ID and join token.

" + "Member":{ + "shape":"Identity", + "documentation":"

A member's summary data.

" } - } + }, + "documentation":"

The summary data of a channel membership.

" }, - "CreateBotRequest":{ + "ChannelMembershipSummaryList":{ + "type":"list", + "member":{"shape":"ChannelMembershipSummary"} + }, + "ChannelMembershipType":{ + "type":"string", + "enum":[ + "DEFAULT", + "HIDDEN" + ] + }, + "ChannelMessage":{ "type":"structure", - "required":[ - "DisplayName", - "AccountId" - ], "members":{ - "AccountId":{ - "shape":"NonEmptyString", - "documentation":"

The Amazon Chime account ID.

", - "location":"uri", - "locationName":"accountId" + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

" }, - "DisplayName":{ - "shape":"SensitiveString", - "documentation":"

The bot display name.

" + "MessageId":{ + "shape":"MessageId", + "documentation":"

The ID of a message.

" }, - "Domain":{ - "shape":"NonEmptyString", - "documentation":"

The domain of the Amazon Chime Enterprise account.

" - } - } - }, - "CreateBotResponse":{ - "type":"structure", - "members":{ - "Bot":{ - "shape":"Bot", - "documentation":"

The bot details.

" - } + "Content":{ + "shape":"Content", + "documentation":"

The message content.

" + }, + "Metadata":{ + "shape":"Metadata", + "documentation":"

The message metadata.

" + }, + "Type":{ + "shape":"ChannelMessageType", + "documentation":"

The message type.

" + }, + "CreatedTimestamp":{ + "shape":"Timestamp", + "documentation":"

The time at which the message was created.

" + }, + "LastEditedTimestamp":{ + "shape":"Timestamp", + "documentation":"

The time at which a message was edited.

" + }, + "LastUpdatedTimestamp":{ + "shape":"Timestamp", + "documentation":"

The time at which a message was updated.

" + }, + "Sender":{ + "shape":"Identity", + "documentation":"

The message sender.

" + }, + "Redacted":{ + "shape":"NonNullableBoolean", + "documentation":"

Hides the content of a message. The message still exists on the back end, but this action only returns metadata.

" + }, + "Persistence":{"shape":"ChannelMessagePersistenceType"} + }, + "documentation":"

Creates a message in a channel.

" + }, + "ChannelMessagePersistenceType":{ + "type":"string", + "enum":[ + "PERSISTENT", + "NON_PERSISTENT" + ] + }, + "ChannelMessageSummary":{ + "type":"structure", + "members":{ + "MessageId":{ + "shape":"MessageId", + "documentation":"

The ID of the message summary.

" + }, + "Content":{ + "shape":"Content", + "documentation":"

The content of the message summary.

" + }, + "Metadata":{ + "shape":"Metadata", + "documentation":"

The metadata of the message summary.

" + }, + "Type":{ + "shape":"ChannelMessageType", + "documentation":"

The type of message summary.

" + }, + "CreatedTimestamp":{ + "shape":"Timestamp", + "documentation":"

The time at which the message summary was created.

" + }, + "LastUpdatedTimestamp":{"shape":"Timestamp"}, + "LastEditedTimestamp":{"shape":"Timestamp"}, + "Sender":{ + "shape":"Identity", + "documentation":"

The sender of the message summary.

" + }, + "Redacted":{ + "shape":"NonNullableBoolean", + "documentation":"

Redacts the content of a message summary.

" + } + }, + "documentation":"

A summary of the messages in a channel.

" + }, + "ChannelMessageSummaryList":{ + "type":"list", + "member":{"shape":"ChannelMessageSummary"} + }, + "ChannelMessageType":{ + "type":"string", + "enum":[ + "STANDARD", + "CONTROL" + ] + }, + "ChannelMode":{ + "type":"string", + "enum":[ + "UNRESTRICTED", + "RESTRICTED" + ] + }, + "ChannelModeratedByAppInstanceUserSummary":{ + "type":"structure", + "members":{ + "ChannelSummary":{"shape":"ChannelSummary"} + }, + "documentation":"

Returns the summary data for a moderated channel.

" + }, + "ChannelModeratedByAppInstanceUserSummaryList":{ + "type":"list", + "member":{"shape":"ChannelModeratedByAppInstanceUserSummary"} + }, + "ChannelModerator":{ + "type":"structure", + "members":{ + "Moderator":{ + "shape":"Identity", + "documentation":"

The moderator's data.

" + }, + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the moderator's channel.

" + }, + "CreatedTimestamp":{ + "shape":"Timestamp", + "documentation":"

The time at which the moderator was created.

" + }, + "CreatedBy":{ + "shape":"Identity", + "documentation":"

The member who created the moderator.

" + } + }, + "documentation":"

Creates a moderator on a channel.

" + }, + "ChannelModeratorSummary":{ + "type":"structure", + "members":{ + "Moderator":{ + "shape":"Identity", + "documentation":"

The data for a moderator.

" + } + }, + "documentation":"

Summary data of the moderators in a channel.

" + }, + "ChannelModeratorSummaryList":{ + "type":"list", + "member":{"shape":"ChannelModeratorSummary"} + }, + "ChannelPrivacy":{ + "type":"string", + "enum":[ + "PUBLIC", + "PRIVATE" + ] + }, + "ChannelRetentionSettings":{ + "type":"structure", + "members":{ + "RetentionDays":{ + "shape":"RetentionDays", + "documentation":"

The time in days to retain a channel.

" + } + }, + "documentation":"

The retention settings for a channel.

" + }, + "ChannelSummary":{ + "type":"structure", + "members":{ + "Name":{ + "shape":"NonEmptyResourceName", + "documentation":"

The parameter of the action.

" + }, + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel summary.

" + }, + "Mode":{ + "shape":"ChannelMode", + "documentation":"

The summary mode of the channel.

" + }, + "Privacy":{ + "shape":"ChannelPrivacy", + "documentation":"

The privacy setting of the channel being summarized, PUBLIC or HIDDEN.

" + }, + "Metadata":{ + "shape":"Metadata", + "documentation":"

The metadata of the channel summary.

" + }, + "LastMessageTimestamp":{ + "shape":"Timestamp", + "documentation":"

The time at which the last message in a channel was sent.

" + } + }, + "documentation":"

The summary data for a channel.

" + }, + "ChannelSummaryList":{ + "type":"list", + "member":{"shape":"ChannelSummary"} + }, + "ChimeArn":{ + "type":"string", + "max":1600, + "min":5, + "pattern":"arn:[a-z0-9-\\.]{1,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[a-z0-9-\\.]{0,63}:[^/].{0,1023}" + }, + "ClientRequestToken":{ + "type":"string", + "max":64, + "min":2, + "pattern":"[-_a-zA-Z0-9]*", + "sensitive":true + }, + "ConflictException":{ + "type":"structure", + "members":{ + "Code":{"shape":"ErrorCode"}, + "Message":{"shape":"String"} + }, + "documentation":"

The request could not be processed because of conflict in the current state of the resource.

", + "error":{"httpStatusCode":409}, + "exception":true + }, + "Content":{ + "type":"string", + "max":4096, + "min":0, + "pattern":"[\\s\\S]*", + "sensitive":true + }, + "ConversationRetentionSettings":{ + "type":"structure", + "members":{ + "RetentionDays":{ + "shape":"RetentionDays", + "documentation":"

The number of days for which to retain chat conversation messages.

" + } + }, + "documentation":"

The retention settings that determine how long to retain chat conversation messages for an Amazon Chime Enterprise account.

" + }, + "Country":{ + "type":"string", + "pattern":"^$|^[A-Z]{2,2}$" + }, + "CountryList":{ + "type":"list", + "member":{"shape":"Country"}, + "max":100, + "min":1 + }, + "CpsLimit":{ + "type":"integer", + "min":1 + }, + "CreateAccountRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"AccountName", + "documentation":"

The name of the Amazon Chime account.

" + } + } + }, + "CreateAccountResponse":{ + "type":"structure", + "members":{ + "Account":{"shape":"Account"} + } + }, + "CreateAppInstanceAdminRequest":{ + "type":"structure", + "required":[ + "AppInstanceAdminArn", + "AppInstanceArn" + ], + "members":{ + "AppInstanceAdminArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the administrator of the current app instance.

" + }, + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance.

", + "location":"uri", + "locationName":"appInstanceArn" + } + } + }, + "CreateAppInstanceAdminResponse":{ + "type":"structure", + "members":{ + "AppInstanceAdmin":{ + "shape":"Identity", + "documentation":"

The name and ARN of the admin for the app instance.

" + }, + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the of the admin for the app instance.

" + } + } + }, + "CreateAppInstanceRequest":{ + "type":"structure", + "required":[ + "Name", + "ClientRequestToken" + ], + "members":{ + "Name":{ + "shape":"NonEmptyResourceName", + "documentation":"

The name of the app instance.

" + }, + "Metadata":{ + "shape":"Metadata", + "documentation":"

The metadata of the app instance. Limited to a 1KB string in UTF-8.

" + }, + "ClientRequestToken":{ + "shape":"ClientRequestToken", + "documentation":"

The ClientRequestToken of the app instance.

", + "idempotencyToken":true + } + } + }, + "CreateAppInstanceResponse":{ + "type":"structure", + "members":{ + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The Amazon Resource Number (ARN) of the app instance.

" + } + } + }, + "CreateAppInstanceUserRequest":{ + "type":"structure", + "required":[ + "AppInstanceArn", + "AppInstanceUserId", + "Name", + "ClientRequestToken" + ], + "members":{ + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance request.

" + }, + "AppInstanceUserId":{ + "shape":"UserId", + "documentation":"

The user ID of the app instance.

" + }, + "Name":{ + "shape":"UserName", + "documentation":"

The user's name.

" + }, + "Metadata":{ + "shape":"Metadata", + "documentation":"

The request's metadata. Limited to a 1KB string in UTF-8.

" + }, + "ClientRequestToken":{ + "shape":"ClientRequestToken", + "documentation":"

The token assigned to the user requesting an app instance.

", + "idempotencyToken":true + } + } + }, + "CreateAppInstanceUserResponse":{ + "type":"structure", + "members":{ + "AppInstanceUserArn":{ + "shape":"ChimeArn", + "documentation":"

The user's ARN.

" + } + } + }, + "CreateAttendeeError":{ + "type":"structure", + "members":{ + "ExternalUserId":{ + "shape":"ExternalUserIdType", + "documentation":"

The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application. If you create an attendee with the same external user id, the service returns the existing record.

" + }, + "ErrorCode":{ + "shape":"String", + "documentation":"

The error code.

" + }, + "ErrorMessage":{ + "shape":"String", + "documentation":"

The error message.

" + } + }, + "documentation":"

The list of errors returned when errors are encountered during the BatchCreateAttendee and CreateAttendee actions. This includes external user IDs, error codes, and error messages.

" + }, + "CreateAttendeeRequest":{ + "type":"structure", + "required":[ + "MeetingId", + "ExternalUserId" + ], + "members":{ + "MeetingId":{ + "shape":"GuidString", + "documentation":"

The Amazon Chime SDK meeting ID.

", + "location":"uri", + "locationName":"meetingId" + }, + "ExternalUserId":{ + "shape":"ExternalUserIdType", + "documentation":"

The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application. If you create an attendee with the same external user id, the service returns the existing record.

" + }, + "Tags":{ + "shape":"AttendeeTagList", + "documentation":"

The tag key-value pairs.

" + } + } + }, + "CreateAttendeeRequestItem":{ + "type":"structure", + "required":["ExternalUserId"], + "members":{ + "ExternalUserId":{ + "shape":"ExternalUserIdType", + "documentation":"

The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application. If you create an attendee with the same external user id, the service returns the existing record.

The Amazon Chime SDK external user ID. Links the attendee to an identity managed by a builder application.

" + }, + "Tags":{ + "shape":"AttendeeTagList", + "documentation":"

The tag key-value pairs.

" + } + }, + "documentation":"

The Amazon Chime SDK attendee fields to create, used with the BatchCreateAttendee action.

" + }, + "CreateAttendeeRequestItemList":{ + "type":"list", + "member":{"shape":"CreateAttendeeRequestItem"} + }, + "CreateAttendeeResponse":{ + "type":"structure", + "members":{ + "Attendee":{ + "shape":"Attendee", + "documentation":"

The attendee information, including attendee ID and join token.

" + } + } + }, + "CreateBotRequest":{ + "type":"structure", + "required":[ + "DisplayName", + "AccountId" + ], + "members":{ + "AccountId":{ + "shape":"NonEmptyString", + "documentation":"

The Amazon Chime account ID.

", + "location":"uri", + "locationName":"accountId" + }, + "DisplayName":{ + "shape":"SensitiveString", + "documentation":"

The bot display name.

" + }, + "Domain":{ + "shape":"NonEmptyString", + "documentation":"

The domain of the Amazon Chime Enterprise account.

" + } + } + }, + "CreateBotResponse":{ + "type":"structure", + "members":{ + "Bot":{ + "shape":"Bot", + "documentation":"

The bot details.

" + } + } + }, + "CreateChannelBanRequest":{ + "type":"structure", + "required":[ + "ChannelArn", + "MemberArn" + ], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the ban request.

", + "location":"uri", + "locationName":"channelArn" + }, + "MemberArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the member being banned.

" + } + } + }, + "CreateChannelBanResponse":{ + "type":"structure", + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the response to the ban request.

" + }, + "Member":{ + "shape":"Identity", + "documentation":"

The ChannelArn and BannedIdentity of the member in the ban response.

" + } + } + }, + "CreateChannelMembershipRequest":{ + "type":"structure", + "required":[ + "ChannelArn", + "MemberArn", + "Type" + ], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel to which you're adding users.

", + "location":"uri", + "locationName":"channelArn" + }, + "MemberArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the member you want to add to the channel.

" + }, + "Type":{ + "shape":"ChannelMembershipType", + "documentation":"

The membership type of a user, DEFAULT or HIDDEN. Default members are always returned as part of ListChannelMemberships. Hidden members are only returned if the type filter in ListChannelMemberships equals HIDDEN. Otherwise hidden members are not returned. This is only supported by moderators.

" + } + } + }, + "CreateChannelMembershipResponse":{ + "type":"structure", + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

" + }, + "Member":{ + "shape":"Identity", + "documentation":"

The ARN and metadata of the member being added.

" + } + } + }, + "CreateChannelModeratorRequest":{ + "type":"structure", + "required":[ + "ChannelArn", + "ChannelModeratorArn" + ], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

", + "location":"uri", + "locationName":"channelArn" + }, + "ChannelModeratorArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the moderator.

" + } + } + }, + "CreateChannelModeratorResponse":{ + "type":"structure", + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

" + }, + "ChannelModerator":{ + "shape":"Identity", + "documentation":"

The ARNs of the channel and the moderator.

" + } + } + }, + "CreateChannelRequest":{ + "type":"structure", + "required":[ + "AppInstanceArn", + "Name", + "ClientRequestToken" + ], + "members":{ + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel request.

" + }, + "Name":{ + "shape":"NonEmptyResourceName", + "documentation":"

The name of the channel.

" + }, + "Mode":{ + "shape":"ChannelMode", + "documentation":"

The channel mode: UNRESTRICTED or RESTRICTED. Administrators, moderators, and channel members can add themselves and other members to unrestricted channels. Only administrators and moderators can add members to restricted channels.

" + }, + "Privacy":{ + "shape":"ChannelPrivacy", + "documentation":"

The channel's privacy level: PUBLIC or PRIVATE. Private channels aren't discoverable by users outside the channel. Public channels are discoverable by anyone in the app instance.

" + }, + "Metadata":{ + "shape":"Metadata", + "documentation":"

The metadata of the creation request. Limited to 1KB and UTF-8.

" + }, + "ClientRequestToken":{ + "shape":"ClientRequestToken", + "documentation":"

The client token for the request. An Idempotency token.

", + "idempotencyToken":true + }, + "Tags":{"shape":"TagList"} + } + }, + "CreateChannelResponse":{ + "type":"structure", + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

" + } } }, "CreateMeetingDialOutRequest":{ @@ -3901,6 +5677,63 @@ "members":{ } }, + "DeleteAppInstanceAdminRequest":{ + "type":"structure", + "required":[ + "AppInstanceAdminArn", + "AppInstanceArn" + ], + "members":{ + "AppInstanceAdminArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance's administrator.

", + "location":"uri", + "locationName":"appInstanceAdminArn" + }, + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance.

", + "location":"uri", + "locationName":"appInstanceArn" + } + } + }, + "DeleteAppInstanceRequest":{ + "type":"structure", + "required":["AppInstanceArn"], + "members":{ + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance.

", + "location":"uri", + "locationName":"appInstanceArn" + } + } + }, + "DeleteAppInstanceStreamingConfigurationsRequest":{ + "type":"structure", + "required":["AppInstanceArn"], + "members":{ + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the streaming configurations being deleted.

", + "location":"uri", + "locationName":"appInstanceArn" + } + } + }, + "DeleteAppInstanceUserRequest":{ + "type":"structure", + "required":["AppInstanceUserArn"], + "members":{ + "AppInstanceUserArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the user request being deleted.

", + "location":"uri", + "locationName":"appInstanceUserArn" + } + } + }, "DeleteAttendeeRequest":{ "type":"structure", "required":[ @@ -3922,6 +5755,102 @@ } } }, + "DeleteChannelBanRequest":{ + "type":"structure", + "required":[ + "ChannelArn", + "MemberArn" + ], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel from which the app instance user was banned.

", + "location":"uri", + "locationName":"channelArn" + }, + "MemberArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance user that you want to reinstate.

", + "location":"uri", + "locationName":"memberArn" + } + } + }, + "DeleteChannelMembershipRequest":{ + "type":"structure", + "required":[ + "ChannelArn", + "MemberArn" + ], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel from which you want to remove the user.

", + "location":"uri", + "locationName":"channelArn" + }, + "MemberArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the member that you're removing from the channel.

", + "location":"uri", + "locationName":"memberArn" + } + } + }, + "DeleteChannelMessageRequest":{ + "type":"structure", + "required":[ + "ChannelArn", + "MessageId" + ], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

", + "location":"uri", + "locationName":"channelArn" + }, + "MessageId":{ + "shape":"MessageId", + "documentation":"

The ID of the message being deleted.

", + "location":"uri", + "locationName":"messageId" + } + } + }, + "DeleteChannelModeratorRequest":{ + "type":"structure", + "required":[ + "ChannelArn", + "ChannelModeratorArn" + ], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

", + "location":"uri", + "locationName":"channelArn" + }, + "ChannelModeratorArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the moderator being deleted.

", + "location":"uri", + "locationName":"channelModeratorArn" + } + } + }, + "DeleteChannelRequest":{ + "type":"structure", + "required":["ChannelArn"], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel being deleted.

", + "location":"uri", + "locationName":"channelArn" + } + } + }, "DeleteEventsConfigurationRequest":{ "type":"structure", "required":[ @@ -4164,6 +6093,249 @@ } } }, + "DescribeAppInstanceAdminRequest":{ + "type":"structure", + "required":[ + "AppInstanceAdminArn", + "AppInstanceArn" + ], + "members":{ + "AppInstanceAdminArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance administrator.

", + "location":"uri", + "locationName":"appInstanceAdminArn" + }, + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance.

", + "location":"uri", + "locationName":"appInstanceArn" + } + } + }, + "DescribeAppInstanceAdminResponse":{ + "type":"structure", + "members":{ + "AppInstanceAdmin":{ + "shape":"AppInstanceAdmin", + "documentation":"

The ARN and name of the app instance user, the ARN of the app instance, and the created and last-updated timestamps. All timestamps use epoch milliseconds.

" + } + } + }, + "DescribeAppInstanceRequest":{ + "type":"structure", + "required":["AppInstanceArn"], + "members":{ + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance.

", + "location":"uri", + "locationName":"appInstanceArn" + } + } + }, + "DescribeAppInstanceResponse":{ + "type":"structure", + "members":{ + "AppInstance":{ + "shape":"AppInstance", + "documentation":"

The ARN, metadata, created and last-updated timestamps, and the name of the app instance. All timestamps use epoch milliseconds.

" + } + } + }, + "DescribeAppInstanceUserRequest":{ + "type":"structure", + "required":["AppInstanceUserArn"], + "members":{ + "AppInstanceUserArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance user.

", + "location":"uri", + "locationName":"appInstanceUserArn" + } + } + }, + "DescribeAppInstanceUserResponse":{ + "type":"structure", + "members":{ + "AppInstanceUser":{ + "shape":"AppInstanceUser", + "documentation":"

The name of the app instance user.

" + } + } + }, + "DescribeChannelBanRequest":{ + "type":"structure", + "required":[ + "ChannelArn", + "MemberArn" + ], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel from which the user is banned.

", + "location":"uri", + "locationName":"channelArn" + }, + "MemberArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the member being banned.

", + "location":"uri", + "locationName":"memberArn" + } + } + }, + "DescribeChannelBanResponse":{ + "type":"structure", + "members":{ + "ChannelBan":{ + "shape":"ChannelBan", + "documentation":"

The the details of the ban.

" + } + } + }, + "DescribeChannelMembershipForAppInstanceUserRequest":{ + "type":"structure", + "required":[ + "ChannelArn", + "AppInstanceUserArn" + ], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel to which the user belongs.

", + "location":"uri", + "locationName":"channelArn" + }, + "AppInstanceUserArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the user in a channel.

", + "location":"querystring", + "locationName":"app-instance-user-arn" + } + } + }, + "DescribeChannelMembershipForAppInstanceUserResponse":{ + "type":"structure", + "members":{ + "ChannelMembership":{ + "shape":"ChannelMembershipForAppInstanceUserSummary", + "documentation":"

The channel to which a user belongs.

" + } + } + }, + "DescribeChannelMembershipRequest":{ + "type":"structure", + "required":[ + "ChannelArn", + "MemberArn" + ], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

", + "location":"uri", + "locationName":"channelArn" + }, + "MemberArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the member.

", + "location":"uri", + "locationName":"memberArn" + } + } + }, + "DescribeChannelMembershipResponse":{ + "type":"structure", + "members":{ + "ChannelMembership":{ + "shape":"ChannelMembership", + "documentation":"

The details of the membership.

" + } + } + }, + "DescribeChannelModeratedByAppInstanceUserRequest":{ + "type":"structure", + "required":[ + "ChannelArn", + "AppInstanceUserArn" + ], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the moderated channel.

", + "location":"uri", + "locationName":"channelArn" + }, + "AppInstanceUserArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance user in the moderated channel.

", + "location":"querystring", + "locationName":"app-instance-user-arn" + } + } + }, + "DescribeChannelModeratedByAppInstanceUserResponse":{ + "type":"structure", + "members":{ + "Channel":{ + "shape":"ChannelModeratedByAppInstanceUserSummary", + "documentation":"

The moderated channel.

" + } + } + }, + "DescribeChannelModeratorRequest":{ + "type":"structure", + "required":[ + "ChannelArn", + "ChannelModeratorArn" + ], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

", + "location":"uri", + "locationName":"channelArn" + }, + "ChannelModeratorArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel moderator.

", + "location":"uri", + "locationName":"channelModeratorArn" + } + } + }, + "DescribeChannelModeratorResponse":{ + "type":"structure", + "members":{ + "ChannelModerator":{ + "shape":"ChannelModerator", + "documentation":"

The details of the channel moderator.

" + } + } + }, + "DescribeChannelRequest":{ + "type":"structure", + "required":["ChannelArn"], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

", + "location":"uri", + "locationName":"channelArn" + } + } + }, + "DescribeChannelResponse":{ + "type":"structure", + "members":{ + "Channel":{ + "shape":"Channel", + "documentation":"

The channel details.

" + } + } + }, "DisassociatePhoneNumberFromUserRequest":{ "type":"structure", "required":[ @@ -4358,7 +6530,7 @@ "Code":{"shape":"ErrorCode"}, "Message":{"shape":"String"} }, - "documentation":"

The client is permanently forbidden from making the request. For example, when a user tries to create an account from an unsupported Region.

", + "documentation":"

The client is permanently forbidden from making the request.

", "error":{"httpStatusCode":403}, "exception":true }, @@ -4432,6 +6604,52 @@ } } }, + "GetAppInstanceRetentionSettingsRequest":{ + "type":"structure", + "required":["AppInstanceArn"], + "members":{ + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance.

", + "location":"uri", + "locationName":"appInstanceArn" + } + } + }, + "GetAppInstanceRetentionSettingsResponse":{ + "type":"structure", + "members":{ + "AppInstanceRetentionSettings":{ + "shape":"AppInstanceRetentionSettings", + "documentation":"

The retention settings for the app instance.

" + }, + "InitiateDeletionTimestamp":{ + "shape":"Timestamp", + "documentation":"

The timestamp representing the time at which the specified items are retained, in Epoch Seconds.

" + } + } + }, + "GetAppInstanceStreamingConfigurationsRequest":{ + "type":"structure", + "required":["AppInstanceArn"], + "members":{ + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance.

", + "location":"uri", + "locationName":"appInstanceArn" + } + } + }, + "GetAppInstanceStreamingConfigurationsResponse":{ + "type":"structure", + "members":{ + "AppInstanceStreamingConfigurations":{ + "shape":"AppInstanceStreamingConfigurationList", + "documentation":"

The streaming settings.

" + } + } + }, "GetAttendeeRequest":{ "type":"structure", "required":[ @@ -4492,6 +6710,36 @@ } } }, + "GetChannelMessageRequest":{ + "type":"structure", + "required":[ + "ChannelArn", + "MessageId" + ], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

", + "location":"uri", + "locationName":"channelArn" + }, + "MessageId":{ + "shape":"MessageId", + "documentation":"

The ID of the message.

", + "location":"uri", + "locationName":"messageId" + } + } + }, + "GetChannelMessageResponse":{ + "type":"structure", + "members":{ + "ChannelMessage":{ + "shape":"ChannelMessage", + "documentation":"

The details of and content in the message.

" + } + } + }, "GetEventsConfigurationRequest":{ "type":"structure", "required":[ @@ -4556,6 +6804,20 @@ } } }, + "GetMessagingSessionEndpointRequest":{ + "type":"structure", + "members":{ + } + }, + "GetMessagingSessionEndpointResponse":{ + "type":"structure", + "members":{ + "Endpoint":{ + "shape":"MessagingSessionEndpoint", + "documentation":"

The endpoint returned in the response.

" + } + } + }, "GetPhoneNumberOrderRequest":{ "type":"structure", "required":["PhoneNumberOrderId"], @@ -5012,6 +7274,20 @@ "type":"string", "pattern":"[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}" }, + "Identity":{ + "type":"structure", + "members":{ + "Arn":{ + "shape":"ChimeArn", + "documentation":"

The ARN in an Identity.

" + }, + "Name":{ + "shape":"ResourceName", + "documentation":"

The name in an Identity.

" + } + }, + "documentation":"

The ARN and name of a user.

" + }, "Integer":{"type":"integer"}, "Invite":{ "type":"structure", @@ -5145,6 +7421,118 @@ } } }, + "ListAppInstanceAdminsRequest":{ + "type":"structure", + "required":["AppInstanceArn"], + "members":{ + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance.

", + "location":"uri", + "locationName":"appInstanceArn" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of administrators that you want to return.

", + "location":"querystring", + "locationName":"max-results" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token returned from previous API requests until the number of administrators is reached.

", + "location":"querystring", + "locationName":"next-token" + } + } + }, + "ListAppInstanceAdminsResponse":{ + "type":"structure", + "members":{ + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance.

" + }, + "AppInstanceAdmins":{ + "shape":"AppInstanceAdminList", + "documentation":"

The information for each administrator.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token returned from previous API requests until the number of administrators is reached.

" + } + } + }, + "ListAppInstanceUsersRequest":{ + "type":"structure", + "required":["AppInstanceArn"], + "members":{ + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance.

", + "location":"querystring", + "locationName":"app-instance-arn" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of requests that you want returned.

", + "location":"querystring", + "locationName":"max-results" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token passed by previous API calls until all requested users are returned.

", + "location":"querystring", + "locationName":"next-token" + } + } + }, + "ListAppInstanceUsersResponse":{ + "type":"structure", + "members":{ + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance.

" + }, + "AppInstanceUsers":{ + "shape":"AppInstanceUserList", + "documentation":"

The information for each of the requested app instance users.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token passed by previous API calls until all requested users are returned.

" + } + } + }, + "ListAppInstancesRequest":{ + "type":"structure", + "members":{ + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of app instances that you want to return.

", + "location":"querystring", + "locationName":"max-results" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token passed by previous API requests until you reach the maximum number of app instances.

", + "location":"querystring", + "locationName":"next-token" + } + } + }, + "ListAppInstancesResponse":{ + "type":"structure", + "members":{ + "AppInstances":{ + "shape":"AppInstanceList", + "documentation":"

The information for each app instance.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token passed by previous API requests until the maximum number of app instances is reached.

" + } + } + }, "ListAttendeeTagsRequest":{ "type":"structure", "required":[ @@ -5175,77 +7563,380 @@ } } }, - "ListAttendeesRequest":{ + "ListAttendeesRequest":{ + "type":"structure", + "required":["MeetingId"], + "members":{ + "MeetingId":{ + "shape":"GuidString", + "documentation":"

The Amazon Chime SDK meeting ID.

", + "location":"uri", + "locationName":"meetingId" + }, + "NextToken":{ + "shape":"String", + "documentation":"

The token to use to retrieve the next page of results.

", + "location":"querystring", + "locationName":"next-token" + }, + "MaxResults":{ + "shape":"ResultMax", + "documentation":"

The maximum number of results to return in a single call.

", + "location":"querystring", + "locationName":"max-results" + } + } + }, + "ListAttendeesResponse":{ + "type":"structure", + "members":{ + "Attendees":{ + "shape":"AttendeeList", + "documentation":"

The Amazon Chime SDK attendee information.

" + }, + "NextToken":{ + "shape":"String", + "documentation":"

The token to use to retrieve the next page of results.

" + } + } + }, + "ListBotsRequest":{ + "type":"structure", + "required":["AccountId"], + "members":{ + "AccountId":{ + "shape":"NonEmptyString", + "documentation":"

The Amazon Chime account ID.

", + "location":"uri", + "locationName":"accountId" + }, + "MaxResults":{ + "shape":"ResultMax", + "documentation":"

The maximum number of results to return in a single call. The default is 10.

", + "location":"querystring", + "locationName":"max-results" + }, + "NextToken":{ + "shape":"String", + "documentation":"

The token to use to retrieve the next page of results.

", + "location":"querystring", + "locationName":"next-token" + } + } + }, + "ListBotsResponse":{ + "type":"structure", + "members":{ + "Bots":{ + "shape":"BotList", + "documentation":"

List of bots and bot details.

" + }, + "NextToken":{ + "shape":"String", + "documentation":"

The token to use to retrieve the next page of results.

" + } + } + }, + "ListChannelBansRequest":{ + "type":"structure", + "required":["ChannelArn"], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

", + "location":"uri", + "locationName":"channelArn" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of bans that you want returned.

", + "location":"querystring", + "locationName":"max-results" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token passed by previous API calls until all requested bans are returned.

", + "location":"querystring", + "locationName":"next-token" + } + } + }, + "ListChannelBansResponse":{ + "type":"structure", + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token passed by previous API calls until all requested bans are returned.

" + }, + "ChannelBans":{ + "shape":"ChannelBanSummaryList", + "documentation":"

The information for each requested ban.

" + } + } + }, + "ListChannelMembershipsForAppInstanceUserRequest":{ + "type":"structure", + "members":{ + "AppInstanceUserArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance users

", + "location":"querystring", + "locationName":"app-instance-user-arn" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of users that you want returned.

", + "location":"querystring", + "locationName":"max-results" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token returned from previous API requests until the number of channel memberships is reached.

", + "location":"querystring", + "locationName":"next-token" + } + } + }, + "ListChannelMembershipsForAppInstanceUserResponse":{ + "type":"structure", + "members":{ + "ChannelMemberships":{ + "shape":"ChannelMembershipForAppInstanceUserSummaryList", + "documentation":"

The token passed by previous API calls until all requested users are returned.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token passed by previous API calls until all requested users are returned.

" + } + } + }, + "ListChannelMembershipsRequest":{ + "type":"structure", + "required":["ChannelArn"], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The maximum number of channel memberships that you want returned.

", + "location":"uri", + "locationName":"channelArn" + }, + "Type":{ + "shape":"ChannelMembershipType", + "documentation":"

The membership type of a user, DEFAULT or HIDDEN. Default members are always returned as part of ListChannelMemberships. Hidden members are only returned if the type filter in ListChannelMemberships equals HIDDEN. Otherwise hidden members are not returned.

", + "location":"querystring", + "locationName":"type" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of channel memberships that you want returned.

", + "location":"querystring", + "locationName":"max-results" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token passed by previous API calls until all requested channel memberships are returned..

", + "location":"querystring", + "locationName":"next-token" + } + } + }, + "ListChannelMembershipsResponse":{ + "type":"structure", + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

" + }, + "ChannelMemberships":{ + "shape":"ChannelMembershipSummaryList", + "documentation":"

The information for the requested channel memberships.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token passed by previous API calls until all requested channel memberships are returned.

" + } + } + }, + "ListChannelMessagesRequest":{ + "type":"structure", + "required":["ChannelArn"], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

", + "location":"uri", + "locationName":"channelArn" + }, + "SortOrder":{ + "shape":"SortOrder", + "documentation":"

The order in which you want messages sorted. Default is Descending, based on time created.

", + "location":"querystring", + "locationName":"sort-order" + }, + "NotBefore":{ + "shape":"Timestamp", + "documentation":"

The initial or starting time stamp for your requested messages.

", + "location":"querystring", + "locationName":"not-before" + }, + "NotAfter":{ + "shape":"Timestamp", + "documentation":"

The final or ending time stamp for your requested messages.

", + "location":"querystring", + "locationName":"not-after" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of messages that you want returned.

", + "location":"querystring", + "locationName":"max-results" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token passed by previous API calls until all requested messages are returned.

", + "location":"querystring", + "locationName":"next-token" + } + } + }, + "ListChannelMessagesResponse":{ + "type":"structure", + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel containing the requested messages.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token passed by previous API calls until all requested messages are returned.

" + }, + "ChannelMessages":{ + "shape":"ChannelMessageSummaryList", + "documentation":"

The information about and content of each requested message.

" + } + } + }, + "ListChannelModeratorsRequest":{ + "type":"structure", + "required":["ChannelArn"], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

", + "location":"uri", + "locationName":"channelArn" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of moderators that you want returned.

", + "location":"querystring", + "locationName":"max-results" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token passed by previous API calls until all requested moderators are returned.

", + "location":"querystring", + "locationName":"next-token" + } + } + }, + "ListChannelModeratorsResponse":{ + "type":"structure", + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token passed by previous API calls until all requested moderators are returned.

" + }, + "ChannelModerators":{ + "shape":"ChannelModeratorSummaryList", + "documentation":"

The information about and names of each moderator.

" + } + } + }, + "ListChannelsModeratedByAppInstanceUserRequest":{ "type":"structure", - "required":["MeetingId"], "members":{ - "MeetingId":{ - "shape":"GuidString", - "documentation":"

The Amazon Chime SDK meeting ID.

", - "location":"uri", - "locationName":"meetingId" - }, - "NextToken":{ - "shape":"String", - "documentation":"

The token to use to retrieve the next page of results.

", + "AppInstanceUserArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the user in the moderated channel.

", "location":"querystring", - "locationName":"next-token" + "locationName":"app-instance-user-arn" }, "MaxResults":{ - "shape":"ResultMax", - "documentation":"

The maximum number of results to return in a single call.

", + "shape":"MaxResults", + "documentation":"

The maximum number of channels in the request.

", "location":"querystring", "locationName":"max-results" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token returned from previous API requests until the number of channels moderated by the user is reached.

", + "location":"querystring", + "locationName":"next-token" } } }, - "ListAttendeesResponse":{ + "ListChannelsModeratedByAppInstanceUserResponse":{ "type":"structure", "members":{ - "Attendees":{ - "shape":"AttendeeList", - "documentation":"

The Amazon Chime SDK attendee information.

" + "Channels":{ + "shape":"ChannelModeratedByAppInstanceUserSummaryList", + "documentation":"

The moderated channels in the request.

" }, "NextToken":{ - "shape":"String", - "documentation":"

The token to use to retrieve the next page of results.

" + "shape":"NextToken", + "documentation":"

The token returned from previous API requests until the number of channels moderated by the user is reached.

" } } }, - "ListBotsRequest":{ + "ListChannelsRequest":{ "type":"structure", - "required":["AccountId"], + "required":["AppInstanceArn"], "members":{ - "AccountId":{ - "shape":"NonEmptyString", - "documentation":"

The Amazon Chime account ID.

", - "location":"uri", - "locationName":"accountId" + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance.

", + "location":"querystring", + "locationName":"app-instance-arn" + }, + "Privacy":{ + "shape":"ChannelPrivacy", + "documentation":"

The privacy setting. PUBLIC retrieves all the public channels. PRIVATE retrieves private channels. Only an app instance administrator can retrieve private channels.

", + "location":"querystring", + "locationName":"privacy" }, "MaxResults":{ - "shape":"ResultMax", - "documentation":"

The maximum number of results to return in a single call. The default is 10.

", + "shape":"MaxResults", + "documentation":"

The maximum number of channels that you want to return.

", "location":"querystring", "locationName":"max-results" }, "NextToken":{ - "shape":"String", - "documentation":"

The token to use to retrieve the next page of results.

", + "shape":"NextToken", + "documentation":"

The token passed by previous API calls until all requested channels are returned.

", "location":"querystring", "locationName":"next-token" } } }, - "ListBotsResponse":{ + "ListChannelsResponse":{ "type":"structure", "members":{ - "Bots":{ - "shape":"BotList", - "documentation":"

List of bots and bot details.

" + "Channels":{ + "shape":"ChannelSummaryList", + "documentation":"

The information about each channel.

" }, "NextToken":{ - "shape":"String", - "documentation":"

The token to use to retrieve the next page of results.

" + "shape":"NextToken", + "documentation":"

The token returned from previous API requests until the number of channels is reached.

" } } }, @@ -5769,6 +8460,11 @@ "members":{ } }, + "MaxResults":{ + "type":"integer", + "max":50, + "min":1 + }, "MediaPlacement":{ "type":"structure", "members":{ @@ -5930,10 +8626,54 @@ "member":{"shape":"MembershipItem"}, "max":50 }, + "MessageId":{ + "type":"string", + "max":128, + "min":1, + "pattern":"[-_a-zA-Z0-9]*" + }, + "MessagingSessionEndpoint":{ + "type":"structure", + "members":{ + "Url":{ + "shape":"UrlType", + "documentation":"

The URL of a meeting session endpoint.

" + } + }, + "documentation":"

The endpoint of a meeting session.

" + }, + "Metadata":{ + "type":"string", + "max":1024, + "min":0, + "pattern":".*", + "sensitive":true + }, + "NextToken":{ + "type":"string", + "max":2048, + "min":0, + "pattern":".*", + "sensitive":true + }, "NextTokenString":{ "type":"string", "max":65535 }, + "NonEmptyContent":{ + "type":"string", + "max":4096, + "min":1, + "pattern":"[\\s\\S]*", + "sensitive":true + }, + "NonEmptyResourceName":{ + "type":"string", + "max":256, + "min":1, + "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*", + "sensitive":true + }, "NonEmptyString":{ "type":"string", "pattern":".*\\S.*" @@ -5949,6 +8689,7 @@ "member":{"shape":"String"}, "min":1 }, + "NonNullableBoolean":{"type":"boolean"}, "NotFoundException":{ "type":"structure", "members":{ @@ -6414,6 +9155,66 @@ "type":"list", "member":{"shape":"ProxySession"} }, + "PutAppInstanceRetentionSettingsRequest":{ + "type":"structure", + "required":[ + "AppInstanceArn", + "AppInstanceRetentionSettings" + ], + "members":{ + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance.

", + "location":"uri", + "locationName":"appInstanceArn" + }, + "AppInstanceRetentionSettings":{ + "shape":"AppInstanceRetentionSettings", + "documentation":"

The time in days to retain data. Data type: number.

" + } + } + }, + "PutAppInstanceRetentionSettingsResponse":{ + "type":"structure", + "members":{ + "AppInstanceRetentionSettings":{ + "shape":"AppInstanceRetentionSettings", + "documentation":"

The time in days to retain data. Data type: number.

" + }, + "InitiateDeletionTimestamp":{ + "shape":"Timestamp", + "documentation":"

The time at which the API deletes data.

" + } + } + }, + "PutAppInstanceStreamingConfigurationsRequest":{ + "type":"structure", + "required":[ + "AppInstanceArn", + "AppInstanceStreamingConfigurations" + ], + "members":{ + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance.

", + "location":"uri", + "locationName":"appInstanceArn" + }, + "AppInstanceStreamingConfigurations":{ + "shape":"AppInstanceStreamingConfigurationList", + "documentation":"

The streaming configurations set for an app instance.

" + } + } + }, + "PutAppInstanceStreamingConfigurationsResponse":{ + "type":"structure", + "members":{ + "AppInstanceStreamingConfigurations":{ + "shape":"AppInstanceStreamingConfigurationList", + "documentation":"

The streaming configurations of an app instance.

" + } + } + }, "PutEventsConfigurationRequest":{ "type":"structure", "required":[ @@ -6703,6 +9504,40 @@ } } }, + "RedactChannelMessageRequest":{ + "type":"structure", + "required":[ + "ChannelArn", + "MessageId" + ], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel containing the messages that you want to redact.

", + "location":"uri", + "locationName":"channelArn" + }, + "MessageId":{ + "shape":"MessageId", + "documentation":"

The ID of the message being redacted.

", + "location":"uri", + "locationName":"messageId" + } + } + }, + "RedactChannelMessageResponse":{ + "type":"structure", + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel containing the messages that you want to redact.

" + }, + "MessageId":{ + "shape":"MessageId", + "documentation":"

The ID of the message being redacted.

" + } + } + }, "RedactConversationMessageRequest":{ "type":"structure", "required":[ @@ -6844,6 +9679,13 @@ "error":{"httpStatusCode":400}, "exception":true }, + "ResourceName":{ + "type":"string", + "max":256, + "min":0, + "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*", + "sensitive":true + }, "RestorePhoneNumberRequest":{ "type":"structure", "required":["PhoneNumberId"], @@ -7023,6 +9865,58 @@ } } }, + "SendChannelMessageRequest":{ + "type":"structure", + "required":[ + "ChannelArn", + "Content", + "Type", + "Persistence", + "ClientRequestToken" + ], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

", + "location":"uri", + "locationName":"channelArn" + }, + "Content":{ + "shape":"NonEmptyContent", + "documentation":"

The content of the message.

" + }, + "Type":{ + "shape":"ChannelMessageType", + "documentation":"

The type of message, STANDARD or CONTROL.

" + }, + "Persistence":{ + "shape":"ChannelMessagePersistenceType", + "documentation":"

Boolean that controls whether the message is persisted on the back end. Required.

" + }, + "Metadata":{ + "shape":"Metadata", + "documentation":"

The optional metadata for each message.

" + }, + "ClientRequestToken":{ + "shape":"ClientRequestToken", + "documentation":"

The Idempotency token for each client request.

", + "idempotencyToken":true + } + } + }, + "SendChannelMessageResponse":{ + "type":"structure", + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

" + }, + "MessageId":{ + "shape":"MessageId", + "documentation":"

The ID string assigned to each message.

" + } + } + }, "SensitiveString":{ "type":"string", "sensitive":true @@ -7224,6 +10118,13 @@ "RequestUriHostname" ] }, + "SortOrder":{ + "type":"string", + "enum":[ + "ASCENDING", + "DESCENDING" + ] + }, "StreamingConfiguration":{ "type":"structure", "required":["DataRetentionInHours"], @@ -7446,6 +10347,7 @@ "error":{"httpStatusCode":429}, "exception":true }, + "Timestamp":{"type":"timestamp"}, "TollFreePrefix":{ "type":"string", "max":3, @@ -7580,6 +10482,70 @@ "members":{ } }, + "UpdateAppInstanceRequest":{ + "type":"structure", + "required":[ + "AppInstanceArn", + "Name" + ], + "members":{ + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance.

", + "location":"uri", + "locationName":"appInstanceArn" + }, + "Name":{ + "shape":"NonEmptyResourceName", + "documentation":"

The name that you want to change.

" + }, + "Metadata":{ + "shape":"Metadata", + "documentation":"

The metadata that you want to change.

" + } + } + }, + "UpdateAppInstanceResponse":{ + "type":"structure", + "members":{ + "AppInstanceArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance.

" + } + } + }, + "UpdateAppInstanceUserRequest":{ + "type":"structure", + "required":[ + "AppInstanceUserArn", + "Name" + ], + "members":{ + "AppInstanceUserArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance user.

", + "location":"uri", + "locationName":"appInstanceUserArn" + }, + "Name":{ + "shape":"UserName", + "documentation":"

The name of the app instance user.

" + }, + "Metadata":{ + "shape":"Metadata", + "documentation":"

The metadata of the app instance user.

" + } + } + }, + "UpdateAppInstanceUserResponse":{ + "type":"structure", + "members":{ + "AppInstanceUserArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the app instance user.

" + } + } + }, "UpdateBotRequest":{ "type":"structure", "required":[ @@ -7614,6 +10580,106 @@ } } }, + "UpdateChannelMessageRequest":{ + "type":"structure", + "required":[ + "ChannelArn", + "MessageId" + ], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

", + "location":"uri", + "locationName":"channelArn" + }, + "MessageId":{ + "shape":"MessageId", + "documentation":"

The ID string of the message being updated.

", + "location":"uri", + "locationName":"messageId" + }, + "Content":{ + "shape":"Content", + "documentation":"

The content of the message being updated.

" + }, + "Metadata":{ + "shape":"Metadata", + "documentation":"

The metadata of the message being updated.

" + } + } + }, + "UpdateChannelMessageResponse":{ + "type":"structure", + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

" + }, + "MessageId":{ + "shape":"MessageId", + "documentation":"

The ID string of the message being updated.

" + } + } + }, + "UpdateChannelReadMarkerRequest":{ + "type":"structure", + "required":["ChannelArn"], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

", + "location":"uri", + "locationName":"channelArn" + } + } + }, + "UpdateChannelReadMarkerResponse":{ + "type":"structure", + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

" + } + } + }, + "UpdateChannelRequest":{ + "type":"structure", + "required":[ + "ChannelArn", + "Name", + "Mode" + ], + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

", + "location":"uri", + "locationName":"channelArn" + }, + "Name":{ + "shape":"NonEmptyResourceName", + "documentation":"

The name of the channel.

" + }, + "Mode":{ + "shape":"ChannelMode", + "documentation":"

The mode of the update request.

" + }, + "Metadata":{ + "shape":"Metadata", + "documentation":"

The metadata of the channel.

" + } + } + }, + "UpdateChannelResponse":{ + "type":"structure", + "members":{ + "ChannelArn":{ + "shape":"ChimeArn", + "documentation":"

The ARN of the channel.

" + } + } + }, "UpdateGlobalSettingsRequest":{ "type":"structure", "required":[ @@ -8038,6 +11104,10 @@ "type":"string", "max":4096 }, + "UrlType":{ + "type":"string", + "max":4096 + }, "User":{ "type":"structure", "required":["UserId"], @@ -8124,6 +11194,13 @@ "type":"list", "member":{"shape":"UserError"} }, + "UserId":{ + "type":"string", + "max":50, + "min":1, + "pattern":"[A-Za-z0-9][A-Za-z0-9\\:\\-\\_\\.\\@]{3,50}[A-Za-z0-9]", + "sensitive":true + }, "UserIdList":{ "type":"list", "member":{"shape":"NonEmptyString"}, @@ -8133,6 +11210,13 @@ "type":"list", "member":{"shape":"User"} }, + "UserName":{ + "type":"string", + "max":100, + "min":1, + "pattern":".*\\S.*", + "sensitive":true + }, "UserSettings":{ "type":"structure", "required":["Telephony"], @@ -8275,5 +11359,5 @@ "documentation":"

The Amazon Chime Voice Connector settings. Includes any Amazon S3 buckets designated for storing call detail records.

" } }, - "documentation":"

The Amazon Chime API (application programming interface) is designed for developers to perform key tasks, such as creating and managing Amazon Chime accounts, users, and Voice Connectors. This guide provides detailed information about the Amazon Chime API, including operations, types, inputs and outputs, and error codes. It also includes some server-side API actions to use with the Amazon Chime SDK. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.

You can use an AWS SDK, the AWS Command Line Interface (AWS CLI), or the REST API to make API calls. We recommend using an AWS SDK or the AWS CLI. Each API operation includes links to information about using it with a language-specific AWS SDK or the AWS CLI.

Using an AWS SDK

You don't need to write code to calculate a signature for request authentication. The SDK clients authenticate your requests by using access keys that you provide. For more information about AWS SDKs, see the AWS Developer Center.

Using the AWS CLI

Use your access keys with the AWS CLI to make API calls. For information about setting up the AWS CLI, see Installing the AWS Command Line Interface in the AWS Command Line Interface User Guide. For a list of available Amazon Chime commands, see the Amazon Chime commands in the AWS CLI Command Reference.

Using REST API

If you use REST to make API calls, you must authenticate your request by providing a signature. Amazon Chime supports Signature Version 4. For more information, see Signature Version 4 Signing Process in the Amazon Web Services General Reference.

When making REST API calls, use the service name chime and REST endpoint https://service.chime.aws.amazon.com.

Administrative permissions are controlled using AWS Identity and Access Management (IAM). For more information, see Identity and Access Management for Amazon Chime in the Amazon Chime Administration Guide.

" + "documentation":"

The Amazon Chime API (application programming interface) is designed for developers to perform key tasks, such as creating and managing Amazon Chime accounts, users, and Voice Connectors. This guide provides detailed information about the Amazon Chime API, including operations, types, inputs and outputs, and error codes. It also includes some server-side API actions to use with the Amazon Chime SDK. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.

You can use an AWS SDK, the AWS Command Line Interface (AWS CLI), or the REST API to make API calls. We recommend using an AWS SDK or the AWS CLI. Each API operation includes links to information about using it with a language-specific AWS SDK or the AWS CLI.

Using an AWS SDK

You don't need to write code to calculate a signature for request authentication. The SDK clients authenticate your requests by using access keys that you provide. For more information about AWS SDKs, see the AWS Developer Center.

Using the AWS CLI

Use your access keys with the AWS CLI to make API calls. For information about setting up the AWS CLI, see Installing the AWS Command Line Interface in the AWS Command Line Interface User Guide. For a list of available Amazon Chime commands, see the Amazon Chime commands in the AWS CLI Command Reference.

Using REST

If you use REST to make API calls, you must authenticate your request by providing a signature. Amazon Chime supports Signature Version 4. For more information, see Signature Version 4 Signing Process in the Amazon Web Services General Reference.

When making REST API calls, use the service name chime and REST endpoint https://service.chime.aws.amazon.com.

Administrative permissions are controlled using AWS Identity and Access Management (IAM). For more information, see Identity and Access Management for Amazon Chime in the Amazon Chime Administration Guide.

" } From 5082cac865ea1731a0cbaa9af1ba0a949dad6f7a Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 20 Nov 2020 19:04:56 +0000 Subject: [PATCH 247/339] Amazon CodeGuru Reviewer Update: This release supports tagging repository association resources in Amazon CodeGuru Reviewer. --- ...eature-AmazonCodeGuruReviewer-498f922.json | 6 + .../codegen-resources/service-2.json | 201 ++++++++++++++++-- 2 files changed, 189 insertions(+), 18 deletions(-) create mode 100644 .changes/next-release/feature-AmazonCodeGuruReviewer-498f922.json diff --git a/.changes/next-release/feature-AmazonCodeGuruReviewer-498f922.json b/.changes/next-release/feature-AmazonCodeGuruReviewer-498f922.json new file mode 100644 index 000000000000..2983dc61c33b --- /dev/null +++ b/.changes/next-release/feature-AmazonCodeGuruReviewer-498f922.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon CodeGuru Reviewer", + "contributor": "", + "description": "This release supports tagging repository association resources in Amazon CodeGuru Reviewer." +} diff --git a/services/codegurureviewer/src/main/resources/codegen-resources/service-2.json b/services/codegurureviewer/src/main/resources/codegen-resources/service-2.json index 626469815d88..09adc9daf5e3 100644 --- a/services/codegurureviewer/src/main/resources/codegen-resources/service-2.json +++ b/services/codegurureviewer/src/main/resources/codegen-resources/service-2.json @@ -46,7 +46,7 @@ {"shape":"AccessDeniedException"}, {"shape":"ThrottlingException"} ], - "documentation":"

Use to create a code review for a repository analysis.

" + "documentation":"

Use to create a code review with a CodeReviewType of RepositoryAnalysis. This type of code review analyzes all code under a specified branch in an associated repository. PullRequest code reviews are automatically triggered by a pull request so cannot be created using this method.

" }, "DescribeCodeReview":{ "name":"DescribeCodeReview", @@ -182,6 +182,21 @@ ], "documentation":"

Returns a list of RepositoryAssociationSummary objects that contain summary information about a repository association. You can filter the returned list by ProviderType , Name , State , and Owner .

" }, + "ListTagsForResource":{ + "name":"ListTagsForResource", + "http":{ + "method":"GET", + "requestUri":"/tags/{resourceArn}" + }, + "input":{"shape":"ListTagsForResourceRequest"}, + "output":{"shape":"ListTagsForResourceResponse"}, + "errors":[ + {"shape":"InternalServerException"}, + {"shape":"ValidationException"}, + {"shape":"ResourceNotFoundException"} + ], + "documentation":"

Returns the list of tags associated with an associated repository resource.

" + }, "PutRecommendationFeedback":{ "name":"PutRecommendationFeedback", "http":{ @@ -198,6 +213,36 @@ {"shape":"ThrottlingException"} ], "documentation":"

Stores customer feedback for a CodeGuru Reviewer recommendation. When this API is called again with different reactions the previous feedback is overwritten.

" + }, + "TagResource":{ + "name":"TagResource", + "http":{ + "method":"POST", + "requestUri":"/tags/{resourceArn}" + }, + "input":{"shape":"TagResourceRequest"}, + "output":{"shape":"TagResourceResponse"}, + "errors":[ + {"shape":"InternalServerException"}, + {"shape":"ValidationException"}, + {"shape":"ResourceNotFoundException"} + ], + "documentation":"

Adds one or more tags to an associated repository.

" + }, + "UntagResource":{ + "name":"UntagResource", + "http":{ + "method":"DELETE", + "requestUri":"/tags/{resourceArn}" + }, + "input":{"shape":"UntagResourceRequest"}, + "output":{"shape":"UntagResourceResponse"}, + "errors":[ + {"shape":"InternalServerException"}, + {"shape":"ValidationException"}, + {"shape":"ResourceNotFoundException"} + ], + "documentation":"

Removes a tag from an associated repository.

" } }, "shapes":{ @@ -228,6 +273,10 @@ "shape":"ClientRequestToken", "documentation":"

Amazon CodeGuru Reviewer uses this value to prevent the accidental creation of duplicate repository associations if there are failures and retries.

", "idempotencyToken":true + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

An array of key-value pairs used to tag an associated repository. A tag is a custom attribute label with two parts:

  • A tag key (for example, CostCenter, Environment, Project, or Secret). Tag keys are case sensitive.

  • An optional field known as a tag value (for example, 111122223333, Production, or a team name). Omitting the tag value is the same as using an empty string. Like tag keys, tag values are case sensitive.

" } } }, @@ -237,9 +286,19 @@ "RepositoryAssociation":{ "shape":"RepositoryAssociation", "documentation":"

Information about the repository association.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

An array of key-value pairs used to tag an associated repository. A tag is a custom attribute label with two parts:

  • A tag key (for example, CostCenter, Environment, Project, or Secret). Tag keys are case sensitive.

  • An optional field known as a tag value (for example, 111122223333, Production, or a team name). Omitting the tag value is the same as using an empty string. Like tag keys, tag values are case sensitive.

" } } }, + "AssociationArn":{ + "type":"string", + "max":1600, + "min":1, + "pattern":"^arn:aws[^:\\s]*:codeguru-reviewer:[^:\\s]+:[\\d]{12}:association:[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$" + }, "AssociationId":{ "type":"string", "max":64, @@ -318,12 +377,16 @@ "shape":"SourceCodeType", "documentation":"

The type of the source code for the code review.

" }, + "AssociationArn":{ + "shape":"AssociationArn", + "documentation":"

The Amazon Resource Name (ARN) of the RepositoryAssociation that contains the reviewed source code. You can retrieve associated repository ARNs by calling ListRepositoryAssociations .

" + }, "Metrics":{ "shape":"Metrics", "documentation":"

The statistics from the code review.

" } }, - "documentation":"

Information about a code review.

" + "documentation":"

Information about a code review. A code review belongs to the associated repository that contains the reviewed code.

" }, "CodeReviewName":{ "type":"string", @@ -391,7 +454,7 @@ "members":{ "RepositoryAnalysis":{ "shape":"RepositoryAnalysis", - "documentation":"

A code review that analyzes all code under a specified branch in an associated respository. The assocated repository is specified using its ARN in CreateCodeReview

" + "documentation":"

A code review that analyzes all code under a specified branch in an associated respository. The assocated repository is specified using its ARN in CreateCodeReview .

" } }, "documentation":"

The type of a code review. There are two code review types:

  • PullRequest - A code review that is automatically triggered by a pull request on an assocaited repository. Because this type of code review is automatically generated, you cannot specify this code review type using CreateCodeReview .

  • RepositoryAnalysis - A code review that analyzes all code under a specified branch in an associated respository. The assocated repository is specified using its ARN in CreateCodeReview .

" @@ -440,15 +503,15 @@ "members":{ "Name":{ "shape":"CodeReviewName", - "documentation":"

The name of the code review. Each code review of the same code review type must have a unique name in your AWS account.

" + "documentation":"

The name of the code review. The name of each code review in your AWS account must be unique.

" }, "RepositoryAssociationArn":{ - "shape":"Arn", - "documentation":"

The Amazon Resource Name (ARN) of the RepositoryAssociation object. You can retrieve this ARN by calling ListRepositories.

A code review can only be created on an associated repository. This is the ARN of the associated repository.

" + "shape":"AssociationArn", + "documentation":"

The Amazon Resource Name (ARN) of the RepositoryAssociation object. You can retrieve this ARN by calling ListRepositoryAssociations .

A code review can only be created on an associated repository. This is the ARN of the associated repository.

" }, "Type":{ "shape":"CodeReviewType", - "documentation":"

The type of code review to create. This is specified using a CodeReviewType object.

" + "documentation":"

The type of code review to create. This is specified using a CodeReviewType object. You can create a code review only of type RepositoryAnalysis.

" }, "ClientRequestToken":{ "shape":"ClientRequestToken", @@ -525,8 +588,8 @@ "required":["AssociationArn"], "members":{ "AssociationArn":{ - "shape":"Arn", - "documentation":"

The Amazon Resource Name (ARN) of the RepositoryAssociation object. You can retrieve this ARN by calling ListRepositories.

", + "shape":"AssociationArn", + "documentation":"

The Amazon Resource Name (ARN) of the RepositoryAssociation object. You can retrieve this ARN by calling ListRepositoryAssociations .

", "location":"uri", "locationName":"AssociationArn" } @@ -538,6 +601,10 @@ "RepositoryAssociation":{ "shape":"RepositoryAssociation", "documentation":"

Information about the repository association.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

An array of key-value pairs used to tag an associated repository. A tag is a custom attribute label with two parts:

  • A tag key (for example, CostCenter, Environment, Project, or Secret). Tag keys are case sensitive.

  • An optional field known as a tag value (for example, 111122223333, Production, or a team name). Omitting the tag value is the same as using an empty string. Like tag keys, tag values are case sensitive.

" } } }, @@ -546,8 +613,8 @@ "required":["AssociationArn"], "members":{ "AssociationArn":{ - "shape":"Arn", - "documentation":"

The Amazon Resource Name (ARN) of the RepositoryAssociation object. You can retrieve this ARN by calling ListRepositories.

", + "shape":"AssociationArn", + "documentation":"

The Amazon Resource Name (ARN) of the RepositoryAssociation object. You can retrieve this ARN by calling ListRepositoryAssociations .

", "location":"uri", "locationName":"AssociationArn" } @@ -559,6 +626,10 @@ "RepositoryAssociation":{ "shape":"RepositoryAssociation", "documentation":"

Information about the disassociated repository.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

An array of key-value pairs used to tag an associated repository. A tag is a custom attribute label with two parts:

  • A tag key (for example, CostCenter, Environment, Project, or Secret). Tag keys are case sensitive.

  • An optional field known as a tag value (for example, 111122223333, Production, or a team name). Omitting the tag value is the same as using an empty string. Like tag keys, tag values are case sensitive.

" } } }, @@ -752,7 +823,7 @@ }, "States":{ "shape":"RepositoryAssociationStates", - "documentation":"

List of repository association states to use as a filter.

The valid repository association states are:

  • Associated: The repository association is complete.

  • Associating: CodeGuru Reviewer is:

    • Setting up pull request notifications. This is required for pull requests to trigger a CodeGuru Reviewer review.

      If your repository ProviderType is GitHub, GitHub Enterprise Server, or Bitbucket, CodeGuru Reviewer creates webhooks in your repository to trigger CodeGuru Reviewer reviews. If you delete these webhooks, reviews of code in your repository cannot be triggered.

    • Setting up source code access. This is required for CodeGuru Reviewer to securely clone code in your repository.

  • Failed: The repository failed to associate or disassociate.

  • Disassociating: CodeGuru Reviewer is removing the repository's pull request notifications and source code access.

", + "documentation":"

List of repository association states to use as a filter.

The valid repository association states are:

  • Associated: The repository association is complete.

  • Associating: CodeGuru Reviewer is:

    • Setting up pull request notifications. This is required for pull requests to trigger a CodeGuru Reviewer review.

      If your repository ProviderType is GitHub, GitHub Enterprise Server, or Bitbucket, CodeGuru Reviewer creates webhooks in your repository to trigger CodeGuru Reviewer reviews. If you delete these webhooks, reviews of code in your repository cannot be triggered.

    • Setting up source code access. This is required for CodeGuru Reviewer to securely clone code in your repository.

  • Failed: The repository failed to associate or disassociate.

  • Disassociating: CodeGuru Reviewer is removing the repository's pull request notifications and source code access.

  • Disassociated: CodeGuru Reviewer successfully disassociated the repository. You can create a new association with this repository if you want to review source code in it later. You can control access to code reviews created in an associated repository with tags after it has been disassociated. For more information, see Using tags to control access to associated repositories in the Amazon CodeGuru Reviewer User Guide.

", "location":"querystring", "locationName":"State" }, @@ -795,6 +866,27 @@ } } }, + "ListTagsForResourceRequest":{ + "type":"structure", + "required":["resourceArn"], + "members":{ + "resourceArn":{ + "shape":"AssociationArn", + "documentation":"

The Amazon Resource Name (ARN) of the RepositoryAssociation object. You can retrieve this ARN by calling ListRepositoryAssociations .

", + "location":"uri", + "locationName":"resourceArn" + } + } + }, + "ListTagsForResourceResponse":{ + "type":"structure", + "members":{ + "Tags":{ + "shape":"TagMap", + "documentation":"

An array of key-value pairs used to tag an associated repository. A tag is a custom attribute label with two parts:

  • A tag key (for example, CostCenter, Environment, Project, or Secret). Tag keys are case sensitive.

  • An optional field known as a tag value (for example, 111122223333, Production, or a team name). Omitting the tag value is the same as using an empty string. Like tag keys, tag values are case sensitive.

" + } + } + }, "MaxResults":{ "type":"integer", "max":100, @@ -1078,7 +1170,7 @@ }, "State":{ "shape":"RepositoryAssociationState", - "documentation":"

The state of the repository association.

The valid repository association states are:

  • Associated: The repository association is complete.

  • Associating: CodeGuru Reviewer is:

    • Setting up pull request notifications. This is required for pull requests to trigger a CodeGuru Reviewer review.

      If your repository ProviderType is GitHub, GitHub Enterprise Server, or Bitbucket, CodeGuru Reviewer creates webhooks in your repository to trigger CodeGuru Reviewer reviews. If you delete these webhooks, reviews of code in your repository cannot be triggered.

    • Setting up source code access. This is required for CodeGuru Reviewer to securely clone code in your repository.

  • Failed: The repository failed to associate or disassociate.

  • Disassociating: CodeGuru Reviewer is removing the repository's pull request notifications and source code access.

" + "documentation":"

The state of the repository association.

The valid repository association states are:

  • Associated: The repository association is complete.

  • Associating: CodeGuru Reviewer is:

    • Setting up pull request notifications. This is required for pull requests to trigger a CodeGuru Reviewer review.

      If your repository ProviderType is GitHub, GitHub Enterprise Server, or Bitbucket, CodeGuru Reviewer creates webhooks in your repository to trigger CodeGuru Reviewer reviews. If you delete these webhooks, reviews of code in your repository cannot be triggered.

    • Setting up source code access. This is required for CodeGuru Reviewer to securely clone code in your repository.

  • Failed: The repository failed to associate or disassociate.

  • Disassociating: CodeGuru Reviewer is removing the repository's pull request notifications and source code access.

  • Disassociated: CodeGuru Reviewer successfully disassociated the repository. You can create a new association with this repository if you want to review source code in it later. You can control access to code reviews created in an associated repository with tags after it has been disassociated. For more information, see Using tags to control access to associated repositories in the Amazon CodeGuru Reviewer User Guide.

" }, "StateReason":{ "shape":"StateReason", @@ -1101,13 +1193,14 @@ "Associated", "Associating", "Failed", - "Disassociating" + "Disassociating", + "Disassociated" ] }, "RepositoryAssociationStates":{ "type":"list", "member":{"shape":"RepositoryAssociationState"}, - "max":3, + "max":5, "min":1 }, "RepositoryAssociationSummaries":{ @@ -1119,7 +1212,7 @@ "members":{ "AssociationArn":{ "shape":"Arn", - "documentation":"

The Amazon Resource Name (ARN) of the RepositoryAssociation object. You can retrieve this ARN by calling ListRepositories.

" + "documentation":"

The Amazon Resource Name (ARN) of the RepositoryAssociation object. You can retrieve this ARN by calling ListRepositoryAssociations .

" }, "ConnectionArn":{ "shape":"ConnectionArn", @@ -1147,7 +1240,7 @@ }, "State":{ "shape":"RepositoryAssociationState", - "documentation":"

The state of the repository association.

The valid repository association states are:

  • Associated: The repository association is complete.

  • Associating: CodeGuru Reviewer is:

    • Setting up pull request notifications. This is required for pull requests to trigger a CodeGuru Reviewer review.

      If your repository ProviderType is GitHub, GitHub Enterprise Server, or Bitbucket, CodeGuru Reviewer creates webhooks in your repository to trigger CodeGuru Reviewer reviews. If you delete these webhooks, reviews of code in your repository cannot be triggered.

    • Setting up source code access. This is required for CodeGuru Reviewer to securely clone code in your repository.

  • Failed: The repository failed to associate or disassociate.

  • Disassociating: CodeGuru Reviewer is removing the repository's pull request notifications and source code access.

" + "documentation":"

The state of the repository association.

The valid repository association states are:

  • Associated: The repository association is complete.

  • Associating: CodeGuru Reviewer is:

    • Setting up pull request notifications. This is required for pull requests to trigger a CodeGuru Reviewer review.

      If your repository ProviderType is GitHub, GitHub Enterprise Server, or Bitbucket, CodeGuru Reviewer creates webhooks in your repository to trigger CodeGuru Reviewer reviews. If you delete these webhooks, reviews of code in your repository cannot be triggered.

    • Setting up source code access. This is required for CodeGuru Reviewer to securely clone code in your repository.

  • Failed: The repository failed to associate or disassociate.

  • Disassociating: CodeGuru Reviewer is removing the repository's pull request notifications and source code access.

  • Disassociated: CodeGuru Reviewer successfully disassociated the repository. You can create a new association with this repository if you want to review source code in it later. You can control access to code reviews created in an associated repository with tags after it has been disassociated. For more information, see Using tags to control access to associated repositories in the Amazon CodeGuru Reviewer User Guide.

" } }, "documentation":"

Summary information about a repository association. The ListRepositoryAssociations operation returns a list of RepositoryAssociationSummary objects.

" @@ -1194,6 +1287,52 @@ "max":256, "min":0 }, + "TagKey":{ + "type":"string", + "max":128, + "min":1 + }, + "TagKeyList":{ + "type":"list", + "member":{"shape":"TagKey"}, + "max":50, + "min":1 + }, + "TagMap":{ + "type":"map", + "key":{"shape":"TagKey"}, + "value":{"shape":"TagValue"}, + "max":50, + "min":1 + }, + "TagResourceRequest":{ + "type":"structure", + "required":[ + "resourceArn", + "Tags" + ], + "members":{ + "resourceArn":{ + "shape":"AssociationArn", + "documentation":"

The Amazon Resource Name (ARN) of the RepositoryAssociation object. You can retrieve this ARN by calling ListRepositoryAssociations .

", + "location":"uri", + "locationName":"resourceArn" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

An array of key-value pairs used to tag an associated repository. A tag is a custom attribute label with two parts:

  • A tag key (for example, CostCenter, Environment, Project, or Secret). Tag keys are case sensitive.

  • An optional field known as a tag value (for example, 111122223333, Production, or a team name). Omitting the tag value is the same as using an empty string. Like tag keys, tag values are case sensitive.

" + } + } + }, + "TagResourceResponse":{ + "type":"structure", + "members":{ + } + }, + "TagValue":{ + "type":"string", + "max":256 + }, "Text":{ "type":"string", "max":2048, @@ -1239,6 +1378,32 @@ "RepositoryAnalysis" ] }, + "UntagResourceRequest":{ + "type":"structure", + "required":[ + "resourceArn", + "TagKeys" + ], + "members":{ + "resourceArn":{ + "shape":"AssociationArn", + "documentation":"

The Amazon Resource Name (ARN) of the RepositoryAssociation object. You can retrieve this ARN by calling ListRepositoryAssociations .

", + "location":"uri", + "locationName":"resourceArn" + }, + "TagKeys":{ + "shape":"TagKeyList", + "documentation":"

A list of the keys for each tag you want to remove from an associated repository.

", + "location":"querystring", + "locationName":"tagKeys" + } + } + }, + "UntagResourceResponse":{ + "type":"structure", + "members":{ + } + }, "UserId":{ "type":"string", "max":256, @@ -1260,5 +1425,5 @@ "exception":true } }, - "documentation":"

This section provides documentation for the Amazon CodeGuru Reviewer API operations. CodeGuru Reviewer is a service that uses program analysis and machine learning to detect potential defects that are difficult for developers to find and recommends fixes in your Java code.

By proactively detecting and providing recommendations for addressing code defects and implementing best practices, CodeGuru Reviewer improves the overall quality and maintainability of your code base during the code review stage. For more information about CodeGuru Reviewer, see the Amazon CodeGuru Reviewer User Guide.

" + "documentation":"

This section provides documentation for the Amazon CodeGuru Reviewer API operations. CodeGuru Reviewer is a service that uses program analysis and machine learning to detect potential defects that are difficult for developers to find and recommends fixes in your Java code.

By proactively detecting and providing recommendations for addressing code defects and implementing best practices, CodeGuru Reviewer improves the overall quality and maintainability of your code base during the code review stage. For more information about CodeGuru Reviewer, see the Amazon CodeGuru Reviewer User Guide.

To improve the security of your CodeGuru Reviewer API calls, you can establish a private connection between your VPC and CodeGuru Reviewer by creating an interface VPC endpoint. For more information, see CodeGuru Reviewer and interface VPC endpoints (AWS PrivateLink) in the Amazon CodeGuru Reviewer User Guide.

" } From c2bac0248038b804266ee169effddd2c8e74bb58 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 20 Nov 2020 19:05:05 +0000 Subject: [PATCH 248/339] Amazon Connect Service Update: This release adds a set of Amazon Connect APIs to programmatically control instance creation, modification, description and deletion. --- .../feature-AmazonConnectService-f6b98bd.json | 6 + .../codegen-resources/paginators-1.json | 42 + .../codegen-resources/service-2.json | 1792 +++++++++++++++-- 3 files changed, 1721 insertions(+), 119 deletions(-) create mode 100644 .changes/next-release/feature-AmazonConnectService-f6b98bd.json diff --git a/.changes/next-release/feature-AmazonConnectService-f6b98bd.json b/.changes/next-release/feature-AmazonConnectService-f6b98bd.json new file mode 100644 index 000000000000..1b896e5340c8 --- /dev/null +++ b/.changes/next-release/feature-AmazonConnectService-f6b98bd.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Connect Service", + "contributor": "", + "description": "This release adds a set of Amazon Connect APIs to programmatically control instance creation, modification, description and deletion." +} diff --git a/services/connect/src/main/resources/codegen-resources/paginators-1.json b/services/connect/src/main/resources/codegen-resources/paginators-1.json index 1005c52f0bd3..ec682da8d9e9 100644 --- a/services/connect/src/main/resources/codegen-resources/paginators-1.json +++ b/services/connect/src/main/resources/codegen-resources/paginators-1.json @@ -10,6 +10,12 @@ "limit_key": "MaxResults", "output_token": "NextToken" }, + "ListApprovedOrigins": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "Origins" + }, "ListContactFlows": { "input_token": "NextToken", "limit_key": "MaxResults", @@ -22,6 +28,36 @@ "output_token": "NextToken", "result_key": "HoursOfOperationSummaryList" }, + "ListInstanceAttributes": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "Attributes" + }, + "ListInstanceStorageConfigs": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "StorageConfigs" + }, + "ListInstances": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "InstanceSummaryList" + }, + "ListLambdaFunctions": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "LambdaFunctions" + }, + "ListLexBots": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "LexBots" + }, "ListPhoneNumbers": { "input_token": "NextToken", "limit_key": "MaxResults", @@ -52,6 +88,12 @@ "output_token": "NextToken", "result_key": "RoutingProfileSummaryList" }, + "ListSecurityKeys": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "SecurityKeys" + }, "ListSecurityProfiles": { "input_token": "NextToken", "limit_key": "MaxResults", diff --git a/services/connect/src/main/resources/codegen-resources/service-2.json b/services/connect/src/main/resources/codegen-resources/service-2.json index 59f56b0a42f2..637734aeab76 100644 --- a/services/connect/src/main/resources/codegen-resources/service-2.json +++ b/services/connect/src/main/resources/codegen-resources/service-2.json @@ -13,6 +13,78 @@ "uid":"connect-2017-08-08" }, "operations":{ + "AssociateApprovedOrigin":{ + "name":"AssociateApprovedOrigin", + "http":{ + "method":"PUT", + "requestUri":"/instance/{InstanceId}/approved-origin" + }, + "input":{"shape":"AssociateApprovedOriginRequest"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ResourceConflictException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ServiceQuotaExceededException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Associates an approved origin to an Amazon Connect instance.

" + }, + "AssociateInstanceStorageConfig":{ + "name":"AssociateInstanceStorageConfig", + "http":{ + "method":"PUT", + "requestUri":"/instance/{InstanceId}/storage-config" + }, + "input":{"shape":"AssociateInstanceStorageConfigRequest"}, + "output":{"shape":"AssociateInstanceStorageConfigResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ResourceConflictException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Associates a storage resource type for the first time. You can only associate one type of storage configuration in a single call. This means, for example, that you can't define an instance with multiple S3 buckets for storing chat transcripts.

This API does not create a resource that doesn't exist. It only associates it to the instance. Ensure that the resource being specified in the storage configuration, like an Amazon S3 bucket, exists when being used for association.

" + }, + "AssociateLambdaFunction":{ + "name":"AssociateLambdaFunction", + "http":{ + "method":"PUT", + "requestUri":"/instance/{InstanceId}/lambda-function" + }, + "input":{"shape":"AssociateLambdaFunctionRequest"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ResourceConflictException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ServiceQuotaExceededException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Allows the specified Amazon Connect instance to access the specified Lambda function.

" + }, + "AssociateLexBot":{ + "name":"AssociateLexBot", + "http":{ + "method":"PUT", + "requestUri":"/instance/{InstanceId}/lex-bot" + }, + "input":{"shape":"AssociateLexBotRequest"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ResourceConflictException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ServiceQuotaExceededException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Allows the specified Amazon Connect instance to access the specified Amazon Lex bot.

" + }, "AssociateRoutingProfileQueues":{ "name":"AssociateRoutingProfileQueues", "http":{ @@ -29,6 +101,25 @@ ], "documentation":"

Associates a set of queues with a routing profile.

" }, + "AssociateSecurityKey":{ + "name":"AssociateSecurityKey", + "http":{ + "method":"PUT", + "requestUri":"/instance/{InstanceId}/security-key" + }, + "input":{"shape":"AssociateSecurityKeyRequest"}, + "output":{"shape":"AssociateSecurityKeyResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ResourceConflictException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ServiceQuotaExceededException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Associates a security key to the instance.

" + }, "CreateContactFlow":{ "name":"CreateContactFlow", "http":{ @@ -49,6 +140,23 @@ ], "documentation":"

Creates a contact flow for the specified Amazon Connect instance.

You can also create and update contact flows using the Amazon Connect Flow language.

" }, + "CreateInstance":{ + "name":"CreateInstance", + "http":{ + "method":"PUT", + "requestUri":"/instance" + }, + "input":{"shape":"CreateInstanceRequest"}, + "output":{"shape":"CreateInstanceResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"ServiceQuotaExceededException"}, + {"shape":"ThrottlingException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"} + ], + "documentation":"

Initiates an Amazon Connect instance with all the supported channels enabled. It does not attach any storage (such as Amazon S3, or Kinesis) or allow for any configurations on features such as Contact Lens for Amazon Connect.

" + }, "CreateRoutingProfile":{ "name":"CreateRoutingProfile", "http":{ @@ -106,6 +214,20 @@ ], "documentation":"

Creates a new user hierarchy group.

" }, + "DeleteInstance":{ + "name":"DeleteInstance", + "http":{ + "method":"DELETE", + "requestUri":"/instance/{InstanceId}" + }, + "input":{"shape":"DeleteInstanceRequest"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"} + ], + "documentation":"

Deletes the Amazon Connect instance.

" + }, "DeleteUser":{ "name":"DeleteUser", "http":{ @@ -157,6 +279,55 @@ ], "documentation":"

Describes the specified contact flow.

You can also create and update contact flows using the Amazon Connect Flow language.

" }, + "DescribeInstance":{ + "name":"DescribeInstance", + "http":{ + "method":"GET", + "requestUri":"/instance/{InstanceId}" + }, + "input":{"shape":"DescribeInstanceRequest"}, + "output":{"shape":"DescribeInstanceResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"} + ], + "documentation":"

Returns the current state of the specified instance identifier. It tracks the instance while it is being created and returns an error status if applicable.

If an instance is not created successfully, the instance status reason field returns details relevant to the reason. The instance in a failed state is returned only for 24 hours after the CreateInstance API was invoked.

" + }, + "DescribeInstanceAttribute":{ + "name":"DescribeInstanceAttribute", + "http":{ + "method":"GET", + "requestUri":"/instance/{InstanceId}/attribute/{AttributeType}" + }, + "input":{"shape":"DescribeInstanceAttributeRequest"}, + "output":{"shape":"DescribeInstanceAttributeResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Describes the specified instance attribute.

" + }, + "DescribeInstanceStorageConfig":{ + "name":"DescribeInstanceStorageConfig", + "http":{ + "method":"GET", + "requestUri":"/instance/{InstanceId}/storage-config/{AssociationId}" + }, + "input":{"shape":"DescribeInstanceStorageConfigRequest"}, + "output":{"shape":"DescribeInstanceStorageConfigResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Retrieves the current storage configurations for the specified resource type, association ID, and instance ID.

" + }, "DescribeRoutingProfile":{ "name":"DescribeRoutingProfile", "http":{ @@ -225,6 +396,70 @@ ], "documentation":"

Describes the hierarchy structure of the specified Amazon Connect instance.

" }, + "DisassociateApprovedOrigin":{ + "name":"DisassociateApprovedOrigin", + "http":{ + "method":"DELETE", + "requestUri":"/instance/{InstanceId}/approved-origin" + }, + "input":{"shape":"DisassociateApprovedOriginRequest"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Revokes access to integrated applications from Amazon Connect.

" + }, + "DisassociateInstanceStorageConfig":{ + "name":"DisassociateInstanceStorageConfig", + "http":{ + "method":"DELETE", + "requestUri":"/instance/{InstanceId}/storage-config/{AssociationId}" + }, + "input":{"shape":"DisassociateInstanceStorageConfigRequest"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Removes the storage type configurations for the specified resource type and association ID.

" + }, + "DisassociateLambdaFunction":{ + "name":"DisassociateLambdaFunction", + "http":{ + "method":"DELETE", + "requestUri":"/instance/{InstanceId}/lambda-function" + }, + "input":{"shape":"DisassociateLambdaFunctionRequest"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Remove the Lambda function from the drop-down options available in the relevant contact flow blocks.

" + }, + "DisassociateLexBot":{ + "name":"DisassociateLexBot", + "http":{ + "method":"DELETE", + "requestUri":"/instance/{InstanceId}/lex-bot" + }, + "input":{"shape":"DisassociateLexBotRequest"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Revokes authorization from the specified instance to access the specified Amazon Lex bot.

" + }, "DisassociateRoutingProfileQueues":{ "name":"DisassociateRoutingProfileQueues", "http":{ @@ -241,6 +476,22 @@ ], "documentation":"

Disassociates a set of queues from a routing profile.

" }, + "DisassociateSecurityKey":{ + "name":"DisassociateSecurityKey", + "http":{ + "method":"DELETE", + "requestUri":"/instance/{InstanceId}/security-key/{AssociationId}" + }, + "input":{"shape":"DisassociateSecurityKeyRequest"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Deletes the specified security key.

" + }, "GetContactAttributes":{ "name":"GetContactAttributes", "http":{ @@ -308,6 +559,23 @@ ], "documentation":"

Gets historical metric data from the specified Amazon Connect instance.

For a description of each historical metric, see Historical Metrics Definitions in the Amazon Connect Administrator Guide.

" }, + "ListApprovedOrigins":{ + "name":"ListApprovedOrigins", + "http":{ + "method":"GET", + "requestUri":"/instance/{InstanceId}/approved-origins" + }, + "input":{"shape":"ListApprovedOriginsRequest"}, + "output":{"shape":"ListApprovedOriginsResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Returns a paginated list of all approved origins associated with the instance.

" + }, "ListContactFlows":{ "name":"ListContactFlows", "http":{ @@ -342,6 +610,88 @@ ], "documentation":"

Provides information about the hours of operation for the specified Amazon Connect instance.

For more information about hours of operation, see Set the Hours of Operation for a Queue in the Amazon Connect Administrator Guide.

" }, + "ListInstanceAttributes":{ + "name":"ListInstanceAttributes", + "http":{ + "method":"GET", + "requestUri":"/instance/{InstanceId}/attributes" + }, + "input":{"shape":"ListInstanceAttributesRequest"}, + "output":{"shape":"ListInstanceAttributesResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Returns a paginated list of all attribute types for the given instance.

" + }, + "ListInstanceStorageConfigs":{ + "name":"ListInstanceStorageConfigs", + "http":{ + "method":"GET", + "requestUri":"/instance/{InstanceId}/storage-configs" + }, + "input":{"shape":"ListInstanceStorageConfigsRequest"}, + "output":{"shape":"ListInstanceStorageConfigsResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Returns a paginated list of storage configs for the identified instance and resource type.

" + }, + "ListInstances":{ + "name":"ListInstances", + "http":{ + "method":"GET", + "requestUri":"/instance" + }, + "input":{"shape":"ListInstancesRequest"}, + "output":{"shape":"ListInstancesResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InternalServiceException"} + ], + "documentation":"

Return a list of instances which are in active state, creation-in-progress state, and failed state. Instances that aren't successfully created (they are in a failed state) are returned only for 24 hours after the CreateInstance API was invoked.

" + }, + "ListLambdaFunctions":{ + "name":"ListLambdaFunctions", + "http":{ + "method":"GET", + "requestUri":"/instance/{InstanceId}/lambda-functions" + }, + "input":{"shape":"ListLambdaFunctionsRequest"}, + "output":{"shape":"ListLambdaFunctionsResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Returns a paginated list of all the Lambda functions that show up in the drop-down options in the relevant contact flow blocks.

" + }, + "ListLexBots":{ + "name":"ListLexBots", + "http":{ + "method":"GET", + "requestUri":"/instance/{InstanceId}/lex-bots" + }, + "input":{"shape":"ListLexBotsRequest"}, + "output":{"shape":"ListLexBotsResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Returns a paginated list of all the Amazon Lex bots currently associated with the instance.

" + }, "ListPhoneNumbers":{ "name":"ListPhoneNumbers", "http":{ @@ -427,6 +777,23 @@ ], "documentation":"

Provides summary information about the routing profiles for the specified Amazon Connect instance.

For more information about routing profiles, see Routing Profiles and Create a Routing Profile in the Amazon Connect Administrator Guide.

" }, + "ListSecurityKeys":{ + "name":"ListSecurityKeys", + "http":{ + "method":"GET", + "requestUri":"/instance/{InstanceId}/security-keys" + }, + "input":{"shape":"ListSecurityKeysRequest"}, + "output":{"shape":"ListSecurityKeysResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Returns a paginated list of all security keys associated with the instance.

" + }, "ListSecurityProfiles":{ "name":"ListSecurityProfiles", "http":{ @@ -691,6 +1058,38 @@ ], "documentation":"

The name of the contact flow.

You can also create and update contact flows using the Amazon Connect Flow language.

" }, + "UpdateInstanceAttribute":{ + "name":"UpdateInstanceAttribute", + "http":{ + "method":"POST", + "requestUri":"/instance/{InstanceId}/attribute/{AttributeType}" + }, + "input":{"shape":"UpdateInstanceAttributeRequest"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Updates the value for the specified attribute type.

" + }, + "UpdateInstanceStorageConfig":{ + "name":"UpdateInstanceStorageConfig", + "http":{ + "method":"POST", + "requestUri":"/instance/{InstanceId}/storage-config/{AssociationId}" + }, + "input":{"shape":"UpdateInstanceStorageConfigRequest"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Updates an existing configuration for a resource type. This API is idempotent.

" + }, "UpdateRoutingProfileConcurrency":{ "name":"UpdateRoutingProfileConcurrency", "http":{ @@ -892,7 +1291,97 @@ "max":100, "min":1 }, - "AssociateRoutingProfileQueuesRequest":{ + "AssociateApprovedOriginRequest":{ + "type":"structure", + "required":[ + "InstanceId", + "Origin" + ], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "Origin":{ + "shape":"Origin", + "documentation":"

The domain to add to your allow list.

" + } + } + }, + "AssociateInstanceStorageConfigRequest":{ + "type":"structure", + "required":[ + "InstanceId", + "ResourceType", + "StorageConfig" + ], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "ResourceType":{ + "shape":"InstanceStorageResourceType", + "documentation":"

A valid resource type.

" + }, + "StorageConfig":{ + "shape":"InstanceStorageConfig", + "documentation":"

A valid storage type.

" + } + } + }, + "AssociateInstanceStorageConfigResponse":{ + "type":"structure", + "members":{ + "AssociationId":{ + "shape":"AssociationId", + "documentation":"

The existing association identifier that uniquely identifies the resource type and storage config for the given instance ID.

" + } + } + }, + "AssociateLambdaFunctionRequest":{ + "type":"structure", + "required":[ + "InstanceId", + "FunctionArn" + ], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "FunctionArn":{ + "shape":"FunctionArn", + "documentation":"

The Amazon Resource Name (ARN) for the Lambda function being associated. Maximum number of characters allowed is 140.

" + } + } + }, + "AssociateLexBotRequest":{ + "type":"structure", + "required":[ + "InstanceId", + "LexBot" + ], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "LexBot":{ + "shape":"LexBot", + "documentation":"

The Amazon Lex box to associate with the instance.

" + } + } + }, + "AssociateRoutingProfileQueuesRequest":{ "type":"structure", "required":[ "InstanceId", @@ -918,6 +1407,53 @@ } } }, + "AssociateSecurityKeyRequest":{ + "type":"structure", + "required":[ + "InstanceId", + "Key" + ], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "Key":{ + "shape":"PEM", + "documentation":"

A valid security key in PEM format.

" + } + } + }, + "AssociateSecurityKeyResponse":{ + "type":"structure", + "members":{ + "AssociationId":{ + "shape":"AssociationId", + "documentation":"

The existing association identifier that uniquely identifies the resource type and storage config for the given instance ID.

" + } + } + }, + "AssociationId":{ + "type":"string", + "max":100, + "min":1 + }, + "Attribute":{ + "type":"structure", + "members":{ + "AttributeType":{ + "shape":"InstanceAttributeType", + "documentation":"

The type of attribute.

" + }, + "Value":{ + "shape":"InstanceAttributeValue", + "documentation":"

The value of the attribute.

" + } + }, + "documentation":"

A toggle for an individual feature at the instance level.

" + }, "AttributeName":{ "type":"string", "max":32767, @@ -933,7 +1469,20 @@ "key":{"shape":"AttributeName"}, "value":{"shape":"AttributeValue"} }, + "AttributesList":{ + "type":"list", + "member":{"shape":"Attribute"} + }, "AutoAccept":{"type":"boolean"}, + "BotName":{ + "type":"string", + "max":50 + }, + "BucketName":{ + "type":"string", + "max":128, + "min":1 + }, "Channel":{ "type":"string", "enum":[ @@ -1152,6 +1701,53 @@ } } }, + "CreateInstanceRequest":{ + "type":"structure", + "required":[ + "IdentityManagementType", + "InboundCallsEnabled", + "OutboundCallsEnabled" + ], + "members":{ + "ClientToken":{ + "shape":"ClientToken", + "documentation":"

The idempotency token.

" + }, + "IdentityManagementType":{ + "shape":"DirectoryType", + "documentation":"

The type of identity management for your Amazon Connect users.

" + }, + "InstanceAlias":{ + "shape":"DirectoryAlias", + "documentation":"

The name for your instance.

" + }, + "DirectoryId":{ + "shape":"DirectoryId", + "documentation":"

The identifier for the directory.

" + }, + "InboundCallsEnabled":{ + "shape":"InboundCallsEnabled", + "documentation":"

Whether your contact center handles incoming contacts.

" + }, + "OutboundCallsEnabled":{ + "shape":"OutboundCallsEnabled", + "documentation":"

Whether your contact center allows outbound calls.

" + } + } + }, + "CreateInstanceResponse":{ + "type":"structure", + "members":{ + "Id":{ + "shape":"InstanceId", + "documentation":"

The identifier for the instance.

" + }, + "Arn":{ + "shape":"ARN", + "documentation":"

The Amazon Resource Name (ARN) of the instance.

" + } + } + }, "CreateRoutingProfileRequest":{ "type":"structure", "required":[ @@ -1411,6 +2007,18 @@ "max":9999, "min":0 }, + "DeleteInstanceRequest":{ + "type":"structure", + "required":["InstanceId"], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + } + } + }, "DeleteUserHierarchyGroupRequest":{ "type":"structure", "required":[ @@ -1483,6 +2091,94 @@ } } }, + "DescribeInstanceAttributeRequest":{ + "type":"structure", + "required":[ + "InstanceId", + "AttributeType" + ], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "AttributeType":{ + "shape":"InstanceAttributeType", + "documentation":"

The type of attribute.

", + "location":"uri", + "locationName":"AttributeType" + } + } + }, + "DescribeInstanceAttributeResponse":{ + "type":"structure", + "members":{ + "Attribute":{ + "shape":"Attribute", + "documentation":"

The type of attribute.

" + } + } + }, + "DescribeInstanceRequest":{ + "type":"structure", + "required":["InstanceId"], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + } + } + }, + "DescribeInstanceResponse":{ + "type":"structure", + "members":{ + "Instance":{ + "shape":"Instance", + "documentation":"

The name of the instance.

" + } + } + }, + "DescribeInstanceStorageConfigRequest":{ + "type":"structure", + "required":[ + "InstanceId", + "AssociationId", + "ResourceType" + ], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "AssociationId":{ + "shape":"AssociationId", + "documentation":"

The existing association identifier that uniquely identifies the resource type and storage config for the given instance ID.

", + "location":"uri", + "locationName":"AssociationId" + }, + "ResourceType":{ + "shape":"InstanceStorageResourceType", + "documentation":"

A valid resource type.

", + "location":"querystring", + "locationName":"resourceType" + } + } + }, + "DescribeInstanceStorageConfigResponse":{ + "type":"structure", + "members":{ + "StorageConfig":{ + "shape":"InstanceStorageConfig", + "documentation":"

A valid storage type.

" + } + } + }, "DescribeRoutingProfileRequest":{ "type":"structure", "required":[ @@ -1620,13 +2316,33 @@ }, "documentation":"

Contains information about the dimensions for a set of metrics.

" }, + "DirectoryAlias":{ + "type":"string", + "max":62, + "min":1, + "pattern":"^(?!d-)([\\da-zA-Z]+)([-]*[\\da-zA-Z])*$", + "sensitive":true + }, + "DirectoryId":{ + "type":"string", + "max":12, + "min":12, + "pattern":"^d-[0-9a-f]{10}$" + }, + "DirectoryType":{ + "type":"string", + "enum":[ + "SAML", + "CONNECT_MANAGED", + "EXISTING_DIRECTORY" + ] + }, "DirectoryUserId":{"type":"string"}, - "DisassociateRoutingProfileQueuesRequest":{ + "DisassociateApprovedOriginRequest":{ "type":"structure", "required":[ "InstanceId", - "RoutingProfileId", - "QueueReferences" + "Origin" ], "members":{ "InstanceId":{ @@ -1635,52 +2351,20 @@ "location":"uri", "locationName":"InstanceId" }, - "RoutingProfileId":{ - "shape":"RoutingProfileId", - "documentation":"

The identifier of the routing profile.

", - "location":"uri", - "locationName":"RoutingProfileId" - }, - "QueueReferences":{ - "shape":"RoutingProfileQueueReferenceList", - "documentation":"

The queues to disassociate from this routing profile.

" + "Origin":{ + "shape":"Origin", + "documentation":"

The domain URL of the integrated application.

", + "location":"querystring", + "locationName":"origin" } } }, - "DisplayName":{ - "type":"string", - "max":256, - "min":1 - }, - "DuplicateResourceException":{ - "type":"structure", - "members":{ - "Message":{"shape":"Message"} - }, - "documentation":"

A resource with the specified name already exists.

", - "error":{"httpStatusCode":409}, - "exception":true - }, - "Email":{"type":"string"}, - "Filters":{ - "type":"structure", - "members":{ - "Queues":{ - "shape":"Queues", - "documentation":"

The queues to use to filter the metrics. You can specify up to 100 queues per request.

" - }, - "Channels":{ - "shape":"Channels", - "documentation":"

The channel to use to filter the metrics.

" - } - }, - "documentation":"

Contains the filter to apply when retrieving metrics.

" - }, - "GetContactAttributesRequest":{ + "DisassociateInstanceStorageConfigRequest":{ "type":"structure", "required":[ "InstanceId", - "InitialContactId" + "AssociationId", + "ResourceType" ], "members":{ "InstanceId":{ @@ -1689,13 +2373,196 @@ "location":"uri", "locationName":"InstanceId" }, - "InitialContactId":{ - "shape":"ContactId", - "documentation":"

The identifier of the initial contact.

", + "AssociationId":{ + "shape":"AssociationId", + "documentation":"

The existing association identifier that uniquely identifies the resource type and storage config for the given instance ID.

", "location":"uri", - "locationName":"InitialContactId" - } - } + "locationName":"AssociationId" + }, + "ResourceType":{ + "shape":"InstanceStorageResourceType", + "documentation":"

A valid resource type.

", + "location":"querystring", + "locationName":"resourceType" + } + } + }, + "DisassociateLambdaFunctionRequest":{ + "type":"structure", + "required":[ + "InstanceId", + "FunctionArn" + ], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance..

", + "location":"uri", + "locationName":"InstanceId" + }, + "FunctionArn":{ + "shape":"FunctionArn", + "documentation":"

The Amazon Resource Name (ARN) of the Lambda function being disassociated.

", + "location":"querystring", + "locationName":"functionArn" + } + } + }, + "DisassociateLexBotRequest":{ + "type":"structure", + "required":[ + "InstanceId", + "BotName", + "LexRegion" + ], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "BotName":{ + "shape":"BotName", + "documentation":"

The name of the Amazon Lex bot. Maximum character limit of 50.

", + "location":"querystring", + "locationName":"botName" + }, + "LexRegion":{ + "shape":"LexRegion", + "documentation":"

The Region in which the Amazon Lex bot has been created.

", + "location":"querystring", + "locationName":"lexRegion" + } + } + }, + "DisassociateRoutingProfileQueuesRequest":{ + "type":"structure", + "required":[ + "InstanceId", + "RoutingProfileId", + "QueueReferences" + ], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "RoutingProfileId":{ + "shape":"RoutingProfileId", + "documentation":"

The identifier of the routing profile.

", + "location":"uri", + "locationName":"RoutingProfileId" + }, + "QueueReferences":{ + "shape":"RoutingProfileQueueReferenceList", + "documentation":"

The queues to disassociate from this routing profile.

" + } + } + }, + "DisassociateSecurityKeyRequest":{ + "type":"structure", + "required":[ + "InstanceId", + "AssociationId" + ], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "AssociationId":{ + "shape":"AssociationId", + "documentation":"

The existing association identifier that uniquely identifies the resource type and storage config for the given instance ID.

", + "location":"uri", + "locationName":"AssociationId" + } + } + }, + "DisplayName":{ + "type":"string", + "max":256, + "min":1 + }, + "DuplicateResourceException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

A resource with the specified name already exists.

", + "error":{"httpStatusCode":409}, + "exception":true + }, + "Email":{"type":"string"}, + "EncryptionConfig":{ + "type":"structure", + "required":[ + "EncryptionType", + "KeyId" + ], + "members":{ + "EncryptionType":{ + "shape":"EncryptionType", + "documentation":"

The type of encryption.

" + }, + "KeyId":{ + "shape":"KeyId", + "documentation":"

The identifier of the encryption key.

" + } + }, + "documentation":"

The encryption configuration.

" + }, + "EncryptionType":{ + "type":"string", + "enum":["KMS"] + }, + "Filters":{ + "type":"structure", + "members":{ + "Queues":{ + "shape":"Queues", + "documentation":"

The queues to use to filter the metrics. You can specify up to 100 queues per request.

" + }, + "Channels":{ + "shape":"Channels", + "documentation":"

The channel to use to filter the metrics.

" + } + }, + "documentation":"

Contains the filter to apply when retrieving metrics.

" + }, + "FunctionArn":{ + "type":"string", + "max":140, + "min":1 + }, + "FunctionArnsList":{ + "type":"list", + "member":{"shape":"FunctionArn"} + }, + "GetContactAttributesRequest":{ + "type":"structure", + "required":[ + "InstanceId", + "InitialContactId" + ], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "InitialContactId":{ + "shape":"ContactId", + "documentation":"

The identifier of the initial contact.

", + "location":"uri", + "locationName":"InitialContactId" + } + } }, "GetContactAttributesResponse":{ "type":"structure", @@ -2107,6 +2974,11 @@ "type":"list", "member":{"shape":"HistoricalMetric"} }, + "Hours":{ + "type":"integer", + "max":87600, + "min":0 + }, "HoursOfOperationId":{"type":"string"}, "HoursOfOperationName":{"type":"string"}, "HoursOfOperationSummary":{ @@ -2124,79 +2996,559 @@ "shape":"HoursOfOperationName", "documentation":"

The name of the hours of operation.

" } - }, - "documentation":"

Contains summary information about hours of operation for a contact center.

" - }, - "HoursOfOperationSummaryList":{ - "type":"list", - "member":{"shape":"HoursOfOperationSummary"} - }, - "InstanceId":{ - "type":"string", - "max":100, - "min":1 + }, + "documentation":"

Contains summary information about hours of operation for a contact center.

" + }, + "HoursOfOperationSummaryList":{ + "type":"list", + "member":{"shape":"HoursOfOperationSummary"} + }, + "InboundCallsEnabled":{"type":"boolean"}, + "Instance":{ + "type":"structure", + "members":{ + "Id":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

" + }, + "Arn":{ + "shape":"ARN", + "documentation":"

The Amazon Resource Name (ARN) of the instance.

" + }, + "IdentityManagementType":{ + "shape":"DirectoryType", + "documentation":"

The identity management type.

" + }, + "InstanceAlias":{ + "shape":"DirectoryAlias", + "documentation":"

The alias of instance.

" + }, + "CreatedTime":{ + "shape":"Timestamp", + "documentation":"

When the instance was created.

" + }, + "ServiceRole":{ + "shape":"ARN", + "documentation":"

The service role of the instance.

" + }, + "InstanceStatus":{ + "shape":"InstanceStatus", + "documentation":"

The state of the instance.

" + }, + "StatusReason":{ + "shape":"InstanceStatusReason", + "documentation":"

Relevant details why the instance was not successfully created.

" + }, + "InboundCallsEnabled":{ + "shape":"InboundCallsEnabled", + "documentation":"

Whether inbound calls are enabled.

" + }, + "OutboundCallsEnabled":{ + "shape":"OutboundCallsEnabled", + "documentation":"

Whether outbound calls are enabled.

" + } + }, + "documentation":"

The Amazon Connect instance.

" + }, + "InstanceAttributeType":{ + "type":"string", + "enum":[ + "INBOUND_CALLS", + "OUTBOUND_CALLS", + "CONTACTFLOW_LOGS", + "CONTACT_LENS", + "AUTO_RESOLVE_BEST_VOICES", + "USE_CUSTOM_TTS_VOICES", + "EARLY_MEDIA" + ] + }, + "InstanceAttributeValue":{ + "type":"string", + "max":100, + "min":1 + }, + "InstanceId":{ + "type":"string", + "max":100, + "min":1 + }, + "InstanceStatus":{ + "type":"string", + "enum":[ + "CREATION_IN_PROGRESS", + "ACTIVE", + "CREATION_FAILED" + ] + }, + "InstanceStatusReason":{ + "type":"structure", + "members":{ + "Message":{ + "shape":"String", + "documentation":"

The message.

" + } + }, + "documentation":"

Relevant details why the instance was not successfully created.

" + }, + "InstanceStorageConfig":{ + "type":"structure", + "required":["StorageType"], + "members":{ + "AssociationId":{ + "shape":"AssociationId", + "documentation":"

The existing association identifier that uniquely identifies the resource type and storage config for the given instance ID.

" + }, + "StorageType":{ + "shape":"StorageType", + "documentation":"

A valid storage type.

" + }, + "S3Config":{ + "shape":"S3Config", + "documentation":"

The S3 configuration.

" + }, + "KinesisVideoStreamConfig":{ + "shape":"KinesisVideoStreamConfig", + "documentation":"

The configuration of the Kinesis video stream.

" + }, + "KinesisStreamConfig":{ + "shape":"KinesisStreamConfig", + "documentation":"

The configuration of the Kinesis data stream.

" + }, + "KinesisFirehoseConfig":{ + "shape":"KinesisFirehoseConfig", + "documentation":"

The configuration of the Kinesis Firehose delivery stream.

" + } + }, + "documentation":"

The storage configuration for the instance.

" + }, + "InstanceStorageConfigs":{ + "type":"list", + "member":{"shape":"InstanceStorageConfig"} + }, + "InstanceStorageResourceType":{ + "type":"string", + "enum":[ + "CHAT_TRANSCRIPTS", + "CALL_RECORDINGS", + "SCHEDULED_REPORTS", + "MEDIA_STREAMS", + "CONTACT_TRACE_RECORDS", + "AGENT_EVENTS" + ] + }, + "InstanceSummary":{ + "type":"structure", + "members":{ + "Id":{ + "shape":"InstanceId", + "documentation":"

The identifier of the instance.

" + }, + "Arn":{ + "shape":"ARN", + "documentation":"

The Amazon Resource Name (ARN) of the instance.

" + }, + "IdentityManagementType":{ + "shape":"DirectoryType", + "documentation":"

The identity management type of the instance.

" + }, + "InstanceAlias":{ + "shape":"DirectoryAlias", + "documentation":"

The alias of the instance.

" + }, + "CreatedTime":{ + "shape":"Timestamp", + "documentation":"

When the instance was created.

" + }, + "ServiceRole":{ + "shape":"ARN", + "documentation":"

The service role of the instance.

" + }, + "InstanceStatus":{ + "shape":"InstanceStatus", + "documentation":"

The state of the instance.

" + }, + "InboundCallsEnabled":{ + "shape":"InboundCallsEnabled", + "documentation":"

Whether inbound calls are enabled.

" + }, + "OutboundCallsEnabled":{ + "shape":"OutboundCallsEnabled", + "documentation":"

Whether outbound calls are enabled.

" + } + }, + "documentation":"

Information about the instance.

" + }, + "InstanceSummaryList":{ + "type":"list", + "member":{"shape":"InstanceSummary"} + }, + "InternalServiceException":{ + "type":"structure", + "members":{ + "Message":{ + "shape":"Message", + "documentation":"

The message.

" + } + }, + "documentation":"

Request processing failed due to an error or failure with the service.

", + "error":{"httpStatusCode":500}, + "exception":true + }, + "InvalidContactFlowException":{ + "type":"structure", + "members":{ + "problems":{ + "shape":"Problems", + "documentation":"

The problems with the contact flow. Please fix before trying again.

" + } + }, + "documentation":"

The contact flow is not valid.

", + "error":{"httpStatusCode":400}, + "exception":true + }, + "InvalidParameterException":{ + "type":"structure", + "members":{ + "Message":{ + "shape":"Message", + "documentation":"

The message.

" + } + }, + "documentation":"

One or more of the specified parameters are not valid.

", + "error":{"httpStatusCode":400}, + "exception":true + }, + "InvalidRequestException":{ + "type":"structure", + "members":{ + "Message":{ + "shape":"Message", + "documentation":"

The message.

" + } + }, + "documentation":"

The request is not valid.

", + "error":{"httpStatusCode":400}, + "exception":true + }, + "KeyId":{ + "type":"string", + "max":128, + "min":1 + }, + "KinesisFirehoseConfig":{ + "type":"structure", + "required":["FirehoseArn"], + "members":{ + "FirehoseArn":{ + "shape":"ARN", + "documentation":"

The Amazon Resource Name (ARN) of the delivery stream.

" + } + }, + "documentation":"

Configuration information of a Kinesis Firehose delivery stream.

" + }, + "KinesisStreamConfig":{ + "type":"structure", + "required":["StreamArn"], + "members":{ + "StreamArn":{ + "shape":"ARN", + "documentation":"

The Amazon Resource Name (ARN) of the data stream.

" + } + }, + "documentation":"

Configuration information of a Kinesis data stream.

" + }, + "KinesisVideoStreamConfig":{ + "type":"structure", + "required":[ + "Prefix", + "RetentionPeriodHours", + "EncryptionConfig" + ], + "members":{ + "Prefix":{ + "shape":"Prefix", + "documentation":"

The prefix of the video stream.

" + }, + "RetentionPeriodHours":{ + "shape":"Hours", + "documentation":"

The number of hours data is retained in the stream. Kinesis Video Streams retains the data in a data store that is associated with the stream.

The default value is 0, indicating that the stream does not persist data.

" + }, + "EncryptionConfig":{ + "shape":"EncryptionConfig", + "documentation":"

The encryption configuration.

" + } + }, + "documentation":"

Configuration information of a Kinesis video stream.

" + }, + "LexBot":{ + "type":"structure", + "members":{ + "Name":{ + "shape":"BotName", + "documentation":"

The name of the Amazon Lex bot.

" + }, + "LexRegion":{ + "shape":"LexRegion", + "documentation":"

The Region the Amazon Lex bot was created in.

" + } + }, + "documentation":"

Configuration information of an Amazon Lex bot.

" + }, + "LexBotsList":{ + "type":"list", + "member":{"shape":"LexBot"} + }, + "LexRegion":{ + "type":"string", + "max":60 + }, + "LimitExceededException":{ + "type":"structure", + "members":{ + "Message":{ + "shape":"Message", + "documentation":"

The message.

" + } + }, + "documentation":"

The allowed limit for the resource has been exceeded.

", + "error":{"httpStatusCode":429}, + "exception":true + }, + "ListApprovedOriginsRequest":{ + "type":"structure", + "required":["InstanceId"], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

", + "location":"querystring", + "locationName":"nextToken" + }, + "MaxResults":{ + "shape":"MaxResult25", + "documentation":"

The maximimum number of results to return per page.

", + "box":true, + "location":"querystring", + "locationName":"maxResults" + } + } + }, + "ListApprovedOriginsResponse":{ + "type":"structure", + "members":{ + "Origins":{ + "shape":"OriginsList", + "documentation":"

The approved origins.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If there are additional results, this is the token for the next set of results.

" + } + } + }, + "ListContactFlowsRequest":{ + "type":"structure", + "required":["InstanceId"], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "ContactFlowTypes":{ + "shape":"ContactFlowTypes", + "documentation":"

The type of contact flow.

", + "location":"querystring", + "locationName":"contactFlowTypes" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

", + "location":"querystring", + "locationName":"nextToken" + }, + "MaxResults":{ + "shape":"MaxResult1000", + "documentation":"

The maximimum number of results to return per page.

", + "location":"querystring", + "locationName":"maxResults" + } + } + }, + "ListContactFlowsResponse":{ + "type":"structure", + "members":{ + "ContactFlowSummaryList":{ + "shape":"ContactFlowSummaryList", + "documentation":"

Information about the contact flows.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If there are additional results, this is the token for the next set of results.

" + } + } + }, + "ListHoursOfOperationsRequest":{ + "type":"structure", + "required":["InstanceId"], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

", + "location":"querystring", + "locationName":"nextToken" + }, + "MaxResults":{ + "shape":"MaxResult1000", + "documentation":"

The maximimum number of results to return per page.

", + "location":"querystring", + "locationName":"maxResults" + } + } + }, + "ListHoursOfOperationsResponse":{ + "type":"structure", + "members":{ + "HoursOfOperationSummaryList":{ + "shape":"HoursOfOperationSummaryList", + "documentation":"

Information about the hours of operation.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If there are additional results, this is the token for the next set of results.

" + } + } + }, + "ListInstanceAttributesRequest":{ + "type":"structure", + "required":["InstanceId"], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

", + "location":"querystring", + "locationName":"nextToken" + }, + "MaxResults":{ + "shape":"MaxResult7", + "documentation":"

The maximimum number of results to return per page.

", + "box":true, + "location":"querystring", + "locationName":"maxResults" + } + } }, - "InternalServiceException":{ + "ListInstanceAttributesResponse":{ "type":"structure", "members":{ - "Message":{ - "shape":"Message", - "documentation":"

The message.

" + "Attributes":{ + "shape":"AttributesList", + "documentation":"

The attribute types.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If there are additional results, this is the token for the next set of results.

" } - }, - "documentation":"

Request processing failed due to an error or failure with the service.

", - "error":{"httpStatusCode":500}, - "exception":true + } }, - "InvalidContactFlowException":{ + "ListInstanceStorageConfigsRequest":{ "type":"structure", + "required":[ + "InstanceId", + "ResourceType" + ], "members":{ - "problems":{ - "shape":"Problems", - "documentation":"

The problems with the contact flow. Please fix before trying again.

" + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "ResourceType":{ + "shape":"InstanceStorageResourceType", + "documentation":"

A valid resource type.

", + "location":"querystring", + "locationName":"resourceType" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

", + "location":"querystring", + "locationName":"nextToken" + }, + "MaxResults":{ + "shape":"MaxResult10", + "documentation":"

The maximimum number of results to return per page.

", + "box":true, + "location":"querystring", + "locationName":"maxResults" } - }, - "documentation":"

The contact flow is not valid.

", - "error":{"httpStatusCode":400}, - "exception":true + } }, - "InvalidParameterException":{ + "ListInstanceStorageConfigsResponse":{ "type":"structure", "members":{ - "Message":{ - "shape":"Message", - "documentation":"

The message.

" + "StorageConfigs":{ + "shape":"InstanceStorageConfigs", + "documentation":"

A valid storage type.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If there are additional results, this is the token for the next set of results.

" } - }, - "documentation":"

One or more of the specified parameters are not valid.

", - "error":{"httpStatusCode":400}, - "exception":true + } }, - "InvalidRequestException":{ + "ListInstancesRequest":{ "type":"structure", "members":{ - "Message":{ - "shape":"Message", - "documentation":"

The message.

" + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

", + "location":"querystring", + "locationName":"nextToken" + }, + "MaxResults":{ + "shape":"MaxResult10", + "documentation":"

The maximimum number of results to return per page.

", + "box":true, + "location":"querystring", + "locationName":"maxResults" } - }, - "documentation":"

The request is not valid.

", - "error":{"httpStatusCode":400}, - "exception":true + } }, - "LimitExceededException":{ + "ListInstancesResponse":{ "type":"structure", "members":{ - "Message":{ - "shape":"Message", - "documentation":"

The message.

" + "InstanceSummaryList":{ + "shape":"InstanceSummaryList", + "documentation":"

Information about the instances.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If there are additional results, this is the token for the next set of results.

" } - }, - "documentation":"

The allowed limit for the resource has been exceeded.

", - "error":{"httpStatusCode":429}, - "exception":true + } }, - "ListContactFlowsRequest":{ + "ListLambdaFunctionsRequest":{ "type":"structure", "required":["InstanceId"], "members":{ @@ -2206,12 +3558,6 @@ "location":"uri", "locationName":"InstanceId" }, - "ContactFlowTypes":{ - "shape":"ContactFlowTypes", - "documentation":"

The type of contact flow.

", - "location":"querystring", - "locationName":"contactFlowTypes" - }, "NextToken":{ "shape":"NextToken", "documentation":"

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

", @@ -2219,19 +3565,20 @@ "locationName":"nextToken" }, "MaxResults":{ - "shape":"MaxResult1000", + "shape":"MaxResult25", "documentation":"

The maximimum number of results to return per page.

", + "box":true, "location":"querystring", "locationName":"maxResults" } } }, - "ListContactFlowsResponse":{ + "ListLambdaFunctionsResponse":{ "type":"structure", "members":{ - "ContactFlowSummaryList":{ - "shape":"ContactFlowSummaryList", - "documentation":"

Information about the contact flows.

" + "LambdaFunctions":{ + "shape":"FunctionArnsList", + "documentation":"

The Lambdafunction ARNs associated with the specified instance.

" }, "NextToken":{ "shape":"NextToken", @@ -2239,7 +3586,7 @@ } } }, - "ListHoursOfOperationsRequest":{ + "ListLexBotsRequest":{ "type":"structure", "required":["InstanceId"], "members":{ @@ -2256,19 +3603,20 @@ "locationName":"nextToken" }, "MaxResults":{ - "shape":"MaxResult1000", + "shape":"MaxResult25", "documentation":"

The maximimum number of results to return per page.

", + "box":true, "location":"querystring", "locationName":"maxResults" } } }, - "ListHoursOfOperationsResponse":{ + "ListLexBotsResponse":{ "type":"structure", "members":{ - "HoursOfOperationSummaryList":{ - "shape":"HoursOfOperationSummaryList", - "documentation":"

Information about the hours of operation.

" + "LexBots":{ + "shape":"LexBotsList", + "documentation":"

The the names and regions of the Amazon Lex bots associated with the specified instance.

" }, "NextToken":{ "shape":"NextToken", @@ -2491,6 +3839,44 @@ } } }, + "ListSecurityKeysRequest":{ + "type":"structure", + "required":["InstanceId"], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

", + "location":"querystring", + "locationName":"nextToken" + }, + "MaxResults":{ + "shape":"MaxResult2", + "documentation":"

The maximimum number of results to return per page.

", + "box":true, + "location":"querystring", + "locationName":"maxResults" + } + } + }, + "ListSecurityKeysResponse":{ + "type":"structure", + "members":{ + "SecurityKeys":{ + "shape":"SecurityKeysList", + "documentation":"

The security keys.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If there are additional results, this is the token for the next set of results.

" + } + } + }, "ListSecurityProfilesRequest":{ "type":"structure", "required":["InstanceId"], @@ -2626,6 +4012,11 @@ } } }, + "MaxResult10":{ + "type":"integer", + "max":10, + "min":1 + }, "MaxResult100":{ "type":"integer", "max":100, @@ -2636,6 +4027,21 @@ "max":1000, "min":1 }, + "MaxResult2":{ + "type":"integer", + "max":2, + "min":1 + }, + "MaxResult25":{ + "type":"integer", + "max":25, + "min":1 + }, + "MaxResult7":{ + "type":"integer", + "max":7, + "min":1 + }, "MediaConcurrencies":{ "type":"list", "member":{"shape":"MediaConcurrency"} @@ -2660,6 +4066,15 @@ }, "Message":{"type":"string"}, "NextToken":{"type":"string"}, + "Origin":{ + "type":"string", + "max":267 + }, + "OriginsList":{ + "type":"list", + "member":{"shape":"Origin"} + }, + "OutboundCallsEnabled":{"type":"boolean"}, "OutboundContactNotPermittedException":{ "type":"structure", "members":{ @@ -2672,6 +4087,11 @@ "error":{"httpStatusCode":403}, "exception":true }, + "PEM":{ + "type":"string", + "max":1024, + "min":1 + }, "ParticipantDetails":{ "type":"structure", "required":["DisplayName"], @@ -2995,6 +4415,11 @@ "DESK_PHONE" ] }, + "Prefix":{ + "type":"string", + "max":128, + "min":1 + }, "Priority":{ "type":"integer", "max":99, @@ -3117,6 +4542,15 @@ "max":100, "min":1 }, + "ResourceConflictException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

A resource already has that name.

", + "error":{"httpStatusCode":409}, + "exception":true + }, "ResourceInUseException":{ "type":"structure", "members":{ @@ -3351,6 +4785,50 @@ "type":"list", "member":{"shape":"RoutingProfileSummary"} }, + "S3Config":{ + "type":"structure", + "required":[ + "BucketName", + "BucketPrefix" + ], + "members":{ + "BucketName":{ + "shape":"BucketName", + "documentation":"

The S3 bucket name.

" + }, + "BucketPrefix":{ + "shape":"Prefix", + "documentation":"

The S3 bucket prefix.

" + }, + "EncryptionConfig":{ + "shape":"EncryptionConfig", + "documentation":"

The S3 encryption configuration.

" + } + }, + "documentation":"

Information about the S3 storage type.

" + }, + "SecurityKey":{ + "type":"structure", + "members":{ + "AssociationId":{ + "shape":"AssociationId", + "documentation":"

The existing association identifier that uniquely identifies the resource type and storage config for the given instance ID.

" + }, + "Key":{ + "shape":"PEM", + "documentation":"

The key of the security key.

" + }, + "CreationTime":{ + "shape":"timestamp", + "documentation":"

When the security key was created.

" + } + }, + "documentation":"

Configuration information of the security key.

" + }, + "SecurityKeysList":{ + "type":"list", + "member":{"shape":"SecurityKey"} + }, "SecurityProfileId":{"type":"string"}, "SecurityProfileIds":{ "type":"list", @@ -3385,6 +4863,15 @@ "type":"string", "sensitive":true }, + "ServiceQuotaExceededException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

The service quota has been exceeded.

", + "error":{"httpStatusCode":402}, + "exception":true + }, "StartChatContactRequest":{ "type":"structure", "required":[ @@ -3574,6 +5061,16 @@ "members":{ } }, + "StorageType":{ + "type":"string", + "enum":[ + "S3", + "KINESIS_VIDEO_STREAM", + "KINESIS_STREAM", + "KINESIS_FIREHOSE" + ] + }, + "String":{"type":"string"}, "SuspendContactRecordingRequest":{ "type":"structure", "required":[ @@ -3668,6 +5165,7 @@ "error":{"httpStatusCode":429}, "exception":true }, + "Timestamp":{"type":"timestamp"}, "Unit":{ "type":"string", "enum":[ @@ -3779,6 +5277,62 @@ } } }, + "UpdateInstanceAttributeRequest":{ + "type":"structure", + "required":[ + "InstanceId", + "AttributeType", + "Value" + ], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "AttributeType":{ + "shape":"InstanceAttributeType", + "documentation":"

The type of attribute.

", + "location":"uri", + "locationName":"AttributeType" + }, + "Value":{ + "shape":"InstanceAttributeValue", + "documentation":"

The value for the attribute. Maximum character limit is 100.

" + } + } + }, + "UpdateInstanceStorageConfigRequest":{ + "type":"structure", + "required":[ + "InstanceId", + "AssociationId", + "ResourceType", + "StorageConfig" + ], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "AssociationId":{ + "shape":"AssociationId", + "documentation":"

The existing association identifier that uniquely identifies the resource type and storage config for the given instance ID.

", + "location":"uri", + "locationName":"AssociationId" + }, + "ResourceType":{ + "shape":"InstanceStorageResourceType", + "documentation":"

A valid resource type.

", + "location":"querystring", + "locationName":"resourceType" + }, + "StorageConfig":{"shape":"InstanceStorageConfig"} + } + }, "UpdateRoutingProfileConcurrencyRequest":{ "type":"structure", "required":[ From 87e17c4846d2dd333f4599204a6f0a91d7476c36 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 20 Nov 2020 19:06:15 +0000 Subject: [PATCH 249/339] Updated endpoints.json. --- .../feature-AWSSDKforJavav2-bedacd4.json | 6 +++++ .../regions/internal/region/endpoints.json | 23 +++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json new file mode 100644 index 000000000000..ae3f84993e9e --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." +} diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json index f8a48eeaf495..e695fc726dcb 100644 --- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json +++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json @@ -1800,6 +1800,12 @@ }, "hostname" : "rds.eu-west-3.amazonaws.com" }, + "sa-east-1" : { + "credentialScope" : { + "region" : "sa-east-1" + }, + "hostname" : "rds.sa-east-1.amazonaws.com" + }, "us-east-1" : { "credentialScope" : { "region" : "us-east-1" @@ -8017,12 +8023,24 @@ "protocols" : [ "https" ] }, "endpoints" : { + "dataplane-us-gov-east-1" : { + "credentialScope" : { + "region" : "us-gov-east-1" + }, + "hostname" : "greengrass-ats.iot.us-gov-east-1.amazonaws.com" + }, "dataplane-us-gov-west-1" : { "credentialScope" : { "region" : "us-gov-west-1" }, "hostname" : "greengrass-ats.iot.us-gov-west-1.amazonaws.com" }, + "fips-us-gov-east-1" : { + "credentialScope" : { + "region" : "us-gov-east-1" + }, + "hostname" : "greengrass-fips.us-gov-east-1.amazonaws.com" + }, "us-gov-east-1" : { }, "us-gov-west-1" : { "credentialScope" : { @@ -9239,6 +9257,11 @@ "us-isob-east-1" : { } } }, + "codedeploy" : { + "endpoints" : { + "us-isob-east-1" : { } + } + }, "config" : { "endpoints" : { "us-isob-east-1" : { } From c1b2513adfabb7ece91fd5b367320292956e2339 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 20 Nov 2020 19:06:45 +0000 Subject: [PATCH 250/339] Release 2.15.33. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.33.json | 78 +++++++++++++++++++ .../feature-AWSAppMesh-08f09e3.json | 6 -- .../feature-AWSCloudHSMV2-7f8400a.json | 6 -- .../feature-AWSSDKforJavav2-bedacd4.json | 6 -- ...-AWSServiceCatalogAppRegistry-c444172.json | 6 -- .../feature-AWSSingleSignon-9e785be.json | 6 -- .../feature-AmazonChime-b0fa82b.json | 6 -- ...eature-AmazonCodeGuruReviewer-498f922.json | 6 -- ...feature-AmazonCognitoIdentity-a3f29eb.json | 6 -- .../feature-AmazonConnectService-f6b98bd.json | 6 -- .../feature-AmazonMacie2-3f83ac8.json | 6 -- ...re-AmazonSimpleStorageService-f7a18eb.json | 6 -- ...ture-ManagedStreamingforKafka-337db0d.json | 6 -- CHANGELOG.md | 49 ++++++++++++ README.md | 8 +- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 298 files changed, 414 insertions(+), 359 deletions(-) create mode 100644 .changes/2.15.33.json delete mode 100644 .changes/next-release/feature-AWSAppMesh-08f09e3.json delete mode 100644 .changes/next-release/feature-AWSCloudHSMV2-7f8400a.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json delete mode 100644 .changes/next-release/feature-AWSServiceCatalogAppRegistry-c444172.json delete mode 100644 .changes/next-release/feature-AWSSingleSignon-9e785be.json delete mode 100644 .changes/next-release/feature-AmazonChime-b0fa82b.json delete mode 100644 .changes/next-release/feature-AmazonCodeGuruReviewer-498f922.json delete mode 100644 .changes/next-release/feature-AmazonCognitoIdentity-a3f29eb.json delete mode 100644 .changes/next-release/feature-AmazonConnectService-f6b98bd.json delete mode 100644 .changes/next-release/feature-AmazonMacie2-3f83ac8.json delete mode 100644 .changes/next-release/feature-AmazonSimpleStorageService-f7a18eb.json delete mode 100644 .changes/next-release/feature-ManagedStreamingforKafka-337db0d.json diff --git a/.changes/2.15.33.json b/.changes/2.15.33.json new file mode 100644 index 000000000000..19d7726cfee1 --- /dev/null +++ b/.changes/2.15.33.json @@ -0,0 +1,78 @@ +{ + "version": "2.15.33", + "date": "2020-11-20", + "entries": [ + { + "type": "feature", + "category": "AWS CloudHSM V2", + "contributor": "", + "description": "Added managed backup retention, a feature that enables customers to retain backups for a configurable period after which CloudHSM service will automatically delete them." + }, + { + "type": "feature", + "category": "Amazon Cognito Identity", + "contributor": "", + "description": "Added SDK pagination support for ListIdentityPools" + }, + { + "type": "feature", + "category": "Managed Streaming for Kafka", + "contributor": "", + "description": "This release adds support for PER TOPIC PER PARTITION monitoring on AWS MSK clusters." + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." + }, + { + "type": "feature", + "category": "Amazon Connect Service", + "contributor": "", + "description": "This release adds a set of Amazon Connect APIs to programmatically control instance creation, modification, description and deletion." + }, + { + "type": "feature", + "category": "Amazon Macie 2", + "contributor": "", + "description": "The Amazon Macie API now provides S3 bucket metadata that indicates whether any one-time or recurring classification jobs are configured to analyze data in a bucket." + }, + { + "type": "feature", + "category": "Amazon Simple Storage Service", + "contributor": "", + "description": "Add new documentation regarding automatically generated Content-MD5 headers when using the SDK or CLI." + }, + { + "type": "feature", + "category": "Amazon Chime", + "contributor": "", + "description": "The Amazon Chime SDK for messaging provides the building blocks needed to build chat and other real-time collaboration features." + }, + { + "type": "feature", + "category": "AWS Service Catalog App Registry", + "contributor": "", + "description": "AWS Service Catalog AppRegistry Documentation update" + }, + { + "type": "feature", + "category": "Amazon CodeGuru Reviewer", + "contributor": "", + "description": "This release supports tagging repository association resources in Amazon CodeGuru Reviewer." + }, + { + "type": "feature", + "category": "AWS Single Sign-on", + "contributor": "", + "description": "Added support for retrieving SSO credentials: https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-sso.html." + }, + { + "type": "feature", + "category": "AWS App Mesh", + "contributor": "", + "description": "This release makes tag value a required attribute of the tag's key-value pair." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSAppMesh-08f09e3.json b/.changes/next-release/feature-AWSAppMesh-08f09e3.json deleted file mode 100644 index ad4fcf84ad08..000000000000 --- a/.changes/next-release/feature-AWSAppMesh-08f09e3.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS App Mesh", - "contributor": "", - "description": "This release makes tag value a required attribute of the tag's key-value pair." -} diff --git a/.changes/next-release/feature-AWSCloudHSMV2-7f8400a.json b/.changes/next-release/feature-AWSCloudHSMV2-7f8400a.json deleted file mode 100644 index 24a3639647ef..000000000000 --- a/.changes/next-release/feature-AWSCloudHSMV2-7f8400a.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS CloudHSM V2", - "contributor": "", - "description": "Added managed backup retention, a feature that enables customers to retain backups for a configurable period after which CloudHSM service will automatically delete them." -} diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json deleted file mode 100644 index ae3f84993e9e..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS SDK for Java v2", - "contributor": "", - "description": "Updated service endpoint metadata." -} diff --git a/.changes/next-release/feature-AWSServiceCatalogAppRegistry-c444172.json b/.changes/next-release/feature-AWSServiceCatalogAppRegistry-c444172.json deleted file mode 100644 index 49c5ac2272ab..000000000000 --- a/.changes/next-release/feature-AWSServiceCatalogAppRegistry-c444172.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Service Catalog App Registry", - "contributor": "", - "description": "AWS Service Catalog AppRegistry Documentation update" -} diff --git a/.changes/next-release/feature-AWSSingleSignon-9e785be.json b/.changes/next-release/feature-AWSSingleSignon-9e785be.json deleted file mode 100644 index fdbc37435586..000000000000 --- a/.changes/next-release/feature-AWSSingleSignon-9e785be.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "category": "AWS Single Sign-on", - "contributor": "", - "type": "feature", - "description": "Added support for retrieving SSO credentials: https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-sso.html." -} diff --git a/.changes/next-release/feature-AmazonChime-b0fa82b.json b/.changes/next-release/feature-AmazonChime-b0fa82b.json deleted file mode 100644 index 69bde98146a3..000000000000 --- a/.changes/next-release/feature-AmazonChime-b0fa82b.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Chime", - "contributor": "", - "description": "The Amazon Chime SDK for messaging provides the building blocks needed to build chat and other real-time collaboration features." -} diff --git a/.changes/next-release/feature-AmazonCodeGuruReviewer-498f922.json b/.changes/next-release/feature-AmazonCodeGuruReviewer-498f922.json deleted file mode 100644 index 2983dc61c33b..000000000000 --- a/.changes/next-release/feature-AmazonCodeGuruReviewer-498f922.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon CodeGuru Reviewer", - "contributor": "", - "description": "This release supports tagging repository association resources in Amazon CodeGuru Reviewer." -} diff --git a/.changes/next-release/feature-AmazonCognitoIdentity-a3f29eb.json b/.changes/next-release/feature-AmazonCognitoIdentity-a3f29eb.json deleted file mode 100644 index 123b720d26d8..000000000000 --- a/.changes/next-release/feature-AmazonCognitoIdentity-a3f29eb.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Cognito Identity", - "contributor": "", - "description": "Added SDK pagination support for ListIdentityPools" -} diff --git a/.changes/next-release/feature-AmazonConnectService-f6b98bd.json b/.changes/next-release/feature-AmazonConnectService-f6b98bd.json deleted file mode 100644 index 1b896e5340c8..000000000000 --- a/.changes/next-release/feature-AmazonConnectService-f6b98bd.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Connect Service", - "contributor": "", - "description": "This release adds a set of Amazon Connect APIs to programmatically control instance creation, modification, description and deletion." -} diff --git a/.changes/next-release/feature-AmazonMacie2-3f83ac8.json b/.changes/next-release/feature-AmazonMacie2-3f83ac8.json deleted file mode 100644 index 6d6135dbbb57..000000000000 --- a/.changes/next-release/feature-AmazonMacie2-3f83ac8.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Macie 2", - "contributor": "", - "description": "The Amazon Macie API now provides S3 bucket metadata that indicates whether any one-time or recurring classification jobs are configured to analyze data in a bucket." -} diff --git a/.changes/next-release/feature-AmazonSimpleStorageService-f7a18eb.json b/.changes/next-release/feature-AmazonSimpleStorageService-f7a18eb.json deleted file mode 100644 index b2782dddaaf3..000000000000 --- a/.changes/next-release/feature-AmazonSimpleStorageService-f7a18eb.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Simple Storage Service", - "contributor": "", - "description": "Add new documentation regarding automatically generated Content-MD5 headers when using the SDK or CLI." -} diff --git a/.changes/next-release/feature-ManagedStreamingforKafka-337db0d.json b/.changes/next-release/feature-ManagedStreamingforKafka-337db0d.json deleted file mode 100644 index e9ed9a386685..000000000000 --- a/.changes/next-release/feature-ManagedStreamingforKafka-337db0d.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Managed Streaming for Kafka", - "contributor": "", - "description": "This release adds support for PER TOPIC PER PARTITION monitoring on AWS MSK clusters." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index 36d5f2c6ac4f..96f9e99299fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,52 @@ +# __2.15.33__ __2020-11-20__ +## __AWS App Mesh__ + - ### Features + - This release makes tag value a required attribute of the tag's key-value pair. + +## __AWS CloudHSM V2__ + - ### Features + - Added managed backup retention, a feature that enables customers to retain backups for a configurable period after which CloudHSM service will automatically delete them. + +## __AWS SDK for Java v2__ + - ### Features + - Updated service endpoint metadata. + +## __AWS Service Catalog App Registry__ + - ### Features + - AWS Service Catalog AppRegistry Documentation update + +## __AWS Single Sign-on__ + - ### Features + - Added support for retrieving SSO credentials: https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-sso.html. + +## __Amazon Chime__ + - ### Features + - The Amazon Chime SDK for messaging provides the building blocks needed to build chat and other real-time collaboration features. + +## __Amazon CodeGuru Reviewer__ + - ### Features + - This release supports tagging repository association resources in Amazon CodeGuru Reviewer. + +## __Amazon Cognito Identity__ + - ### Features + - Added SDK pagination support for ListIdentityPools + +## __Amazon Connect Service__ + - ### Features + - This release adds a set of Amazon Connect APIs to programmatically control instance creation, modification, description and deletion. + +## __Amazon Macie 2__ + - ### Features + - The Amazon Macie API now provides S3 bucket metadata that indicates whether any one-time or recurring classification jobs are configured to analyze data in a bucket. + +## __Amazon Simple Storage Service__ + - ### Features + - Add new documentation regarding automatically generated Content-MD5 headers when using the SDK or CLI. + +## __Managed Streaming for Kafka__ + - ### Features + - This release adds support for PER TOPIC PER PARTITION monitoring on AWS MSK clusters. + # __2.15.32__ __2020-11-19__ ## __AWS Cost Explorer Service__ - ### Features diff --git a/README.md b/README.md index 5683c1817fd1..22f7a7b01fe3 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.32 + 2.15.33 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.32 + 2.15.33 software.amazon.awssdk s3 - 2.15.32 + 2.15.33 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.32 + 2.15.33 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index f8a486e0c57b..a9a1f0f1e27d 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index b102e6e1eab7..9080bf5097eb 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 853231081ad1..5d68ab6cb72f 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.15.33-SNAPSHOT + 2.15.33 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index ad35bbe87444..a633a50e5183 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 09aa6cd8ff6d..39ccbabdcd46 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.33-SNAPSHOT + 2.15.33 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index cc5bd63965af..ef72cfd5853b 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.33-SNAPSHOT + 2.15.33 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 7c78acc156ed..448223a35a16 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.15.33-SNAPSHOT + 2.15.33 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index cf4b20f3b3cd..7771a3867eb7 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.33-SNAPSHOT + 2.15.33 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 6ace3215e13e..d1924a51a0e2 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.15.33-SNAPSHOT + 2.15.33 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 35de5de52b74..0309bf7b3e73 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.33-SNAPSHOT + 2.15.33 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 44fa56966341..3050ecf36fef 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 3c9e6037d4c7..3a3bb06fc9d4 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index a579a608937c..f156fce9b132 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.33-SNAPSHOT + 2.15.33 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index c065208cf019..7fd330b2684e 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.33-SNAPSHOT + 2.15.33 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 9db810b97ccb..076a68508b60 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index d90d94cb8390..618736882a63 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 7e23d5e4f2d8..989def0d3d9f 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.33-SNAPSHOT + 2.15.33 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 410a4ea17c1a..7d96e833396f 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.15.33-SNAPSHOT + 2.15.33 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index db0dd306c8fb..35a003cfd353 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 381c8a04d4bd..193589aea307 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.15.33-SNAPSHOT + 2.15.33 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 75c487d2a60d..75fb6a33ee2b 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.15.33-SNAPSHOT + 2.15.33 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index ec88eb9c08be..463d8172b486 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.15.33-SNAPSHOT + 2.15.33 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index fe0585d72525..e5c6d0046062 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 03fd55de97da..b8bc3c941e21 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index d4e5e759d835..355b17e609ad 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.33-SNAPSHOT + 2.15.33 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index dd35f449dbaf..e356943dcc89 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.33-SNAPSHOT + 2.15.33 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index a2b91e14ce9e..b1174aab8946 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.15.33-SNAPSHOT + 2.15.33 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 ea933a64af11..149205b00349 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.15.33-SNAPSHOT + 2.15.33 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 15de96858079..ed1bd8fe23d2 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.15.33-SNAPSHOT + 2.15.33 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index bca3c475985e..1ba49bd2c18c 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.15.33-SNAPSHOT + 2.15.33 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 125c4133b3c5..f9f34ac717f6 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 8ffec68adda0..5ebcdbbc1876 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.15.33-SNAPSHOT + 2.15.33 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index dcc486b7a741..a7cf55f55174 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.15.33-SNAPSHOT + 2.15.33 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 46cf553582b5..f6d07644125d 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.33-SNAPSHOT + 2.15.33 metric-publishers diff --git a/pom.xml b/pom.xml index 0956c3b0e8e7..75068f875d54 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.33-SNAPSHOT + 2.15.33 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 0d306c7c730d..3ebcb71e1b3b 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.33-SNAPSHOT + 2.15.33 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 6918f92fe634..5cd69576fa8c 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.15.33-SNAPSHOT + 2.15.33 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 313271e850ca..b0488beb8b8b 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.33-SNAPSHOT + 2.15.33 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index cd93dfe4bd6c..80ecd6e5d85a 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 755f75598511..334288923216 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index e344005c2116..5478065cac1a 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 495c4e86a670..e2147acf3ae0 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 0e613865f40d..a32b7c42d674 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index e5caa6430de0..e1de2b25376b 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 58f47f54bf03..05897b48e18a 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index f92a2a9d3cd2..1e2da70a6ee3 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 0e3ddc7aabcd..b7380883b5ae 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 61b1061151fe..6373f5c13075 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 27c9711c92b0..fa5dd1dbea5c 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index b04163d50b6c..0bd21150bc61 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index ddbc0334e271..26a6bb974ba9 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 46252c8f2ae0..eb44204dc6c0 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 164d12e27b1d..30612ae59a19 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index d7a7dbf6ebed..465e896308b0 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 7ded957c369e..d553113ed6d8 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 9bf75b29668b..7032152962d4 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 4eb73df3b6a5..a60ea6b73076 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 791bba304630..28cc6a75ea35 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index ab19a66afc0f..13f5d5b0a741 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 6b8f5f86be6b..3393f265f666 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 9f31c44fd248..24a6fc15573b 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 046bd83965b5..8d42c6e89c6c 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 5867453aad7b..16cf19964098 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index ce45ddee266a..8c72841835f3 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index ebb49ebcd1b0..9728513c0ad5 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 9b895fe8a907..34731d4b61c5 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index ccf4837585e6..4df77a014769 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 6faf39285ae4..f19f3a64449f 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 836ede666477..838dfd950491 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 0b4c361c60e7..7aa15f31befb 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 04ccff33d158..7f86f8533987 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index b1db0f70b6ab..e1d2985a5edf 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 3be8526e09b8..84ae249bae04 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index e51e44ae2020..3a3fb46ba93f 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index f0933c876747..caced06577fc 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 6d69d3e137df..3db51442b00e 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index ed99b5dcc728..22978d8e780f 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index d41e50b8925e..28d17ecf70fa 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index d5521037c40b..2e8c5f56ca11 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 6dad700bd668..86664b346d73 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 20c67e10bb88..14b006d1f35b 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index d27b1b62a273..14d46cc59d39 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 4b52ae656291..bafa46ac7b68 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index f1d875a0aad7..1467913bfdab 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 88c984ba3b0e..12efac7e3c61 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 7883b8a95618..0ed345bca242 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index cbff3ee11ae0..bcdbafa6a1b6 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 0565de633092..27a176a45858 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 3cfbb41d90d6..bed301c89125 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 946b5cdab1c2..f430661a861c 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 3de2267ec94a..b5ce8abe6f29 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 72479cba15a9..9bde44c14d1b 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 9d3368806292..a1664350a91e 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 11993d1e8f2d..ae9a12840975 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index a5d85c7ea975..9813f3161ad3 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 65b6c6b0ca23..53c544d46332 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index e3073a6c881d..0e58e3af8394 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index bd9732c07afc..a39e6227eb41 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index d9a7226c6c4e..f6ca1595a734 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 277a62dd922f..e7d79e4364e6 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index bda9bc83fdd1..04cc0a5239d5 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 9492972a890f..0ed488a0dd4b 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 0d9c5f1491fe..0097a83675cd 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 6d6a595bc73e..d9287b6cffd2 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index d74e19c4ec9f..862fb9ef3afe 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index a42b44500ce2..e76c02d5ef1c 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 8115cb706167..349d4eb6b703 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index a9acf09d1a2e..bdb50020fbd1 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 2db275697262..ee262f7f768b 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index a1360d605690..79874e7b2a6e 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 86f1550f568b..824f87b2cb45 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 79235ed268ec..19cf905dd039 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 7b9fd043c892..59dff73596c2 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index b69be448768d..650885ccdb71 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 6e3c04c25217..557eff797ffe 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 099398724946..6230c0ca25bd 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 6528a04e38b1..b1f5d0f16486 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index bf134d99be65..2cba9ab902a7 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 2f858c5d3d48..83ada7e18d75 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index e558f65534d6..eab71ab8e1a3 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index fcfb9cd4c3a4..758f961083dc 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index d4699670c303..17128d0ac56f 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 0758bfb5da9f..fc73453b41b5 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 397df377ff82..c95c1308317c 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 682f0a7b1893..33df75901a72 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index c5df660a3faa..13aff52ed823 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index dfd84cb372b7..a677bbc73304 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index c95d5953d5d5..97605c7ae216 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 0b49662275b0..9a9d85ada47c 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 49a0ecb81056..7dd692d2dc32 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 0506e875d2fc..d2e8994701b2 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 70a72d4c62c9..1d2ee464e84b 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index a5a6a6add325..2985d2832403 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index aa66ce56ef94..ed5503b6e99f 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index ed4c536eefd6..b3c3001536ba 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 1b77948e26b0..a7948ee9b6bc 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index ff5b5a9f0d15..8272177efdf4 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 12a3a8190c38..56aa0b7276d6 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 5969febdd70d..b489694b8d7f 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 7cd24f3ce4e7..4353ce52f7b9 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index c3ba311d7451..045a3aa470b2 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 882b0f995505..928d2835ed2c 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 68adb18b0563..87b78a473b10 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index d99763263d23..c4b3793c8029 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 22f58350f0ed..13a762899db1 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 6a07a6a79551..3c044b6010d1 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index f36c8689bcc8..d4980a46b88c 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 21735ce637bf..a038b304531e 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index f63cb4b5ba1d..1a11ff0add8e 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 1494d27dd1bf..773908efac4e 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 70ae51557e69..06a08916330b 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index cd5481bf2f60..dfb047e72912 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 22e4163aa189..8ea3ddee6749 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index c9f42e4f8f00..d8cc5eb2d823 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 81e7b7dd05b7..02ce098669b5 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 296b65e1db75..29d51ebaab02 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 60138fb21f90..c8f571eaf512 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 47e77d7c8db9..5313c298270a 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index ed87cebde107..1b515e9886f6 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 7f9391ea9826..a4cc60f1bdde 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 7eb4de19a750..a2d3d1fd2697 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 086f1c751412..4d1740845090 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 10f14c7bad25..dcfbc646b898 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 41e7ca824eca..b75fe757c7b4 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 2054287892f3..d7cb37b59af8 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 1dd3ee4a0777..532b7e12ad1c 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 5145e62b38c3..d13c88d56644 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 57a6871c6a4c..791d28de46f1 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index fa601bfa1e59..41487d21c9e4 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 14431d2a84a5..6be3ff71f4de 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 982ad2b3bc8b..b76e8c2fd5a2 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 6c2c973726f1..21ceec04583d 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 3f168ebc1a36..931ca21b381f 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 27e25e65dc90..74852f64db6a 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 1de10ec92eec..d467a0da1af1 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 309c5b40f17d..12dd9f24961f 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 409b272d91f0..96ce5b3d3351 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 36831735222d..aead5cf8e173 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 5fbed3f1dccb..d54cf7835edf 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 7b8438eaf7d2..4bf592b97875 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 13f53065ac67..ed71461ee491 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 12ed6f569f7a..206870dd0a4a 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 323b23e77b03..adaf0708e34d 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 18c9185cdc44..8f5ecbab015f 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index b13da7abe81c..2d9eaa1a69cc 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 1f7372478a79..b8f1ffa0aeb6 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 398aa5bd0760..3d95b3d2a017 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 409f1d52d566..09e1c8460c73 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 4180bc914d45..24368a01b2a9 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 0fc9e4510b48..fe83f9aa3163 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index f5b9214a3dca..712e28e502bf 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 903a37e68b73..65a119ccb04a 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 50a5ae4d4da9..1df587e26009 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index 4f1c80d4e747..48dd9ca4dec1 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index d03aac455de9..e0bda2a84f59 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index f92d3cda2e43..9c26873b546a 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 069a4130fc2d..6a1c50f74226 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 1b510935597b..ebe5279daa55 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index f17ac05de125..0308f882275b 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index af330c3206d8..8fb9429718d3 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 1d9ba3e7e485..e6d4753d95a3 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 1a9714153995..5c66110b9252 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 71464d96d8ae..de64c828aaf1 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 476a451369bd..0d10cb281f46 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 23016523df6e..30f4e47d0e14 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index d7ab9d189041..c87e5a9e2902 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 1953a026c135..d54732fa8079 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index b7ab04210802..2536803c3958 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.33-SNAPSHOT + 2.15.33 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index ccf16c5aec7c..f6dc21b2d1a0 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 5e8d107cabf7..147ab4308047 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 9ccad533ac2e..dd95470edf30 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 37495a853ed2..4ebb9c141fb0 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index b9fe77581124..ea6516efec69 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index f892da531e17..c0e45b3a5f94 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 3917bbec7875..cc8b6596e65d 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index a0cbcc2359e6..7477d0ad7c25 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 6067ec859377..c4413b0d6e26 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 640389477170..9b4b62aeb0b8 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index c7548ebc456d..2a16b0e15fbc 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index ad1c69ad7843..610f4c948309 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index f716bff48969..4550076d2e35 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 7f18cef2ad7c..814bb5750f12 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 5cedbb33cff5..621053b15ab4 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index e4bf7e1de037..09d32f8fb1da 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 7a06214b6e4f..d00516f3c1bf 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 9a3a930d9dc4..99b76ecadfbc 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 1a2850e5a184..79adc4861cca 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 8dfc5ff0b7be..8ddc18fec3fe 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 1ce3217469c8..18130bc039de 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 1cd1cdd72283..1ea09cbe5bf0 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index eab687f6d514..917b3b516dd6 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index ef1ef5c11903..2d36da2f52aa 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index b05ba0543a5c..223ddef14183 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 037a33e10a75..8ec87fcc5ca8 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 113455f8e4a5..02909373e05e 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 98e8ae66b0df..41c754e0b728 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index bdf2fb8ad9e2..e82bbb005242 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 1651033bddf2..0b6855f7f43f 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index eddb385663cd..8113ed59bb2f 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 3840319d05e9..8f1d0827664b 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 49df1b8f6802..a36a3e35c215 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 473875894e0c..de6230ca68ed 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index c2da228d3477..142577d95f34 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index d9c9eeee8f55..a5a21c61c1cd 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 81bab3bffc7e..f21ffc6d4cff 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index a75d484629ff..4fefb5ad98dc 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 956d12eac2cc..21be0fb4b95c 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index f693b9abcb79..78906ec3d2e5 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index ead0c39b12ee..6ec7036a718a 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index f87e0510aaad..6d3212721d6d 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 59711856f0a5..7d25f127c849 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index e9efb6722d40..2c12a74f21b7 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index e89b067e351e..48aec7f4b49e 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index de4af621dc02..1ed362d2cc75 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 7c780259eae5..f25e4bdae2f3 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index e7d08b9bb53b..c2dd06a80218 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 6082dd1502c9..b6920413f894 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 810b148e1dda..c648c8245df3 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 64731da23cf3..c65ff785e0b2 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 55ea7bb5f23c..8d3bf3229e4a 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 8ca482afa0c5..9f1457fb127a 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 157d1d305ad6..beaf2ad5d34b 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 7836bc761442..ac155d169ec9 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 297c13248db3..d4e319fa98ee 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 545c4bfe7c9c..11b1c8292a93 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index ebe1c7772365..d9b283d5d0a9 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 7b897e358a67..f3b38c2ca9f1 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index bf095501a4cf..d4e539a43f16 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index a9c8ef133816..8d7ae2f692d4 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 942d7cbbbaeb..802b3d03c218 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 0533fa7f66cf..142d74cb8628 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 968717813152..dd8c17fdae5a 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33-SNAPSHOT + 2.15.33 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 50572e0081a8..b81b9e2eb7db 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.15.33-SNAPSHOT + 2.15.33 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 55683707ab67..60bd7d71b219 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.15.33-SNAPSHOT + 2.15.33 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 02e0f21313b2..e4b257773896 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.15.33-SNAPSHOT + 2.15.33 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 83140801b5f4..05d53b9fe8c5 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.15.33-SNAPSHOT + 2.15.33 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 2b71e5022571..16d96b902ffc 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.15.33-SNAPSHOT + 2.15.33 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 258a635f821b..c89d6f698ec0 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.33-SNAPSHOT + 2.15.33 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 2bdc51f619fd..a0db84e12246 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.15.33-SNAPSHOT + 2.15.33 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 5a181d03ad81..3545aa613b5e 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.15.33-SNAPSHOT + 2.15.33 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index e39494b44bfc..3d5139bca70c 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.15.33-SNAPSHOT + 2.15.33 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 3debbe299703..aedf2c9fea14 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.15.33-SNAPSHOT + 2.15.33 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 7fa07800d46d..9849195d3477 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.33-SNAPSHOT + 2.15.33 4.0.0 From b8dff2f1a31b8d3bebfb77656a69857e86bab6e0 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Fri, 20 Nov 2020 20:25:48 +0000 Subject: [PATCH 251/339] Update to next snapshot version: 2.15.34-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/pom.xml | 2 +- services/servicecatalogappregistry/pom.xml | 2 +- services/servicediscovery/pom.xml | 2 +- services/servicequotas/pom.xml | 2 +- services/ses/pom.xml | 2 +- services/sesv2/pom.xml | 2 +- services/sfn/pom.xml | 2 +- services/shield/pom.xml | 2 +- services/signer/pom.xml | 2 +- services/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 283 files changed, 283 insertions(+), 283 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index a9a1f0f1e27d..bd22e13ae850 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 9080bf5097eb..577825412a2f 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 5d68ab6cb72f..ded9dbcc9917 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.15.33 + 2.15.34-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index a633a50e5183..d7e1201b8e55 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 39ccbabdcd46..af87ffe6b193 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.33 + 2.15.34-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index ef72cfd5853b..96d2204e81d0 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.33 + 2.15.34-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 448223a35a16..6d1522bb81ab 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.15.33 + 2.15.34-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 7771a3867eb7..44443724ab4c 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.33 + 2.15.34-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index d1924a51a0e2..6566b1011a67 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.15.33 + 2.15.34-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 0309bf7b3e73..47529d1f6b72 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.33 + 2.15.34-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 3050ecf36fef..343705788b2a 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 3a3bb06fc9d4..e66d72447f60 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index f156fce9b132..6c867b29d60d 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.33 + 2.15.34-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 7fd330b2684e..548a67f1375e 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.33 + 2.15.34-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 076a68508b60..9f392d2bde93 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 618736882a63..8b3eb13a7f4a 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 989def0d3d9f..6aa2686fb9d5 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.33 + 2.15.34-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 7d96e833396f..ec12b619b543 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.15.33 + 2.15.34-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 35a003cfd353..9de0e99c3b8c 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 193589aea307..4d8f6c3ab408 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.15.33 + 2.15.34-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 75fb6a33ee2b..0eb83605446f 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.15.33 + 2.15.34-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 463d8172b486..caa2924544c2 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.15.33 + 2.15.34-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index e5c6d0046062..9e444839082e 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index b8bc3c941e21..650bfc79281c 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 355b17e609ad..cf2a8ee96d5c 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.33 + 2.15.34-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index e356943dcc89..5050889cddeb 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.33 + 2.15.34-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index b1174aab8946..efcc405bd407 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.15.33 + 2.15.34-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index 149205b00349..6a4357f78a50 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.15.33 + 2.15.34-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index ed1bd8fe23d2..4a0e6c3b73a6 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.15.33 + 2.15.34-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 1ba49bd2c18c..6e6a597070c6 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.15.33 + 2.15.34-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index f9f34ac717f6..d2a877464246 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 5ebcdbbc1876..13aa18facbad 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.15.33 + 2.15.34-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index a7cf55f55174..1432fa9890ba 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.15.33 + 2.15.34-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index f6d07644125d..a8ee4bafa18c 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.33 + 2.15.34-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 75068f875d54..7398fd886db5 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.33 + 2.15.34-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 3ebcb71e1b3b..7dc323f2a5d4 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.33 + 2.15.34-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 5cd69576fa8c..a55fd7eae1ed 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.15.33 + 2.15.34-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index b0488beb8b8b..f8dc1cc1ccdb 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.33 + 2.15.34-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 80ecd6e5d85a..1a49154ffaa8 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 334288923216..f1485c9b5d10 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 5478065cac1a..feffc3e44de7 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index e2147acf3ae0..e427eace2e27 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index a32b7c42d674..852145a28046 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index e1de2b25376b..acca5aa8598b 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 05897b48e18a..80f2908b2625 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 1e2da70a6ee3..178916f0ccd1 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index b7380883b5ae..244b68872906 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 6373f5c13075..4cffe01c170d 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index fa5dd1dbea5c..9596515e41aa 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 0bd21150bc61..bb2cdc6613c8 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 26a6bb974ba9..a7034854fee9 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index eb44204dc6c0..48db62170953 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 30612ae59a19..c75d5e6a1fdb 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 465e896308b0..6763d4e14282 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index d553113ed6d8..810170e4334e 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 7032152962d4..2cd9b0bb68c6 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index a60ea6b73076..d7e7bcd4cab8 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 28cc6a75ea35..66b55373a73d 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 13f5d5b0a741..b9aa1fb3887e 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 3393f265f666..f69d595a59c8 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 24a6fc15573b..97dc43014510 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 8d42c6e89c6c..1296fc5762c7 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 16cf19964098..a64b68379283 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 8c72841835f3..1b4cf88931f3 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 9728513c0ad5..86f651d8e621 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 34731d4b61c5..2b2040d25f87 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 4df77a014769..e8e2d5c7b19f 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index f19f3a64449f..63f5f702055a 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 838dfd950491..2b9f27bfa596 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 7aa15f31befb..92fa938ebd34 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 7f86f8533987..552bcd765ad0 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index e1d2985a5edf..32e87f770abb 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 84ae249bae04..043f0595fed1 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 3a3fb46ba93f..515b256c145d 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index caced06577fc..f7f8362855c6 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 3db51442b00e..bacb3e48bcc5 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 22978d8e780f..b5b1dcf05ff2 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 28d17ecf70fa..11ce27434d7d 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 2e8c5f56ca11..4bdc8dc2cee0 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 86664b346d73..2c7901dc811f 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 14b006d1f35b..e8e9e13a4bac 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 14d46cc59d39..bc36c90649cc 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index bafa46ac7b68..1f5fd4515769 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 1467913bfdab..df35dfe75c74 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 12efac7e3c61..12fef26a35ff 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 0ed345bca242..3558f6272138 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index bcdbafa6a1b6..18f44a4b8569 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 27a176a45858..41474bbc2f4c 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index bed301c89125..cfdf5c00760e 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index f430661a861c..ee4ea388e232 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index b5ce8abe6f29..620dae815a1e 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 9bde44c14d1b..738371fe71b2 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index a1664350a91e..57daf97068a7 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index ae9a12840975..96bfa2ade1df 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 9813f3161ad3..5dd9c2bae937 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 53c544d46332..3dfa55322683 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index 0e58e3af8394..1aaa561ee65d 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index a39e6227eb41..69d2baac9a9b 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index f6ca1595a734..6deafc6d2ce3 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index e7d79e4364e6..57dc0999eafe 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 04cc0a5239d5..877d06f160e0 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 0ed488a0dd4b..4569c26b486e 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 0097a83675cd..2cdca9bcda45 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index d9287b6cffd2..b32ca56636fa 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 862fb9ef3afe..18e8f30dad5d 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index e76c02d5ef1c..0f0994a19fd4 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 349d4eb6b703..f57ffc84b3c4 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index bdb50020fbd1..e250c63ac56a 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index ee262f7f768b..edd10b174596 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 79874e7b2a6e..8de0a2dc60c1 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 824f87b2cb45..7d12bdd9ccdf 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 19cf905dd039..2474c94d8b61 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 59dff73596c2..e268dfb296a9 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 650885ccdb71..a6bc9db1d52e 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 557eff797ffe..404393bd5186 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 6230c0ca25bd..d6544184471b 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index b1f5d0f16486..369a5e23597a 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 2cba9ab902a7..ec9a4d97939d 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 83ada7e18d75..44cfc173db85 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index eab71ab8e1a3..ba86cc50dfe2 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 758f961083dc..d3e72461802c 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 17128d0ac56f..1b8cc9df34cd 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index fc73453b41b5..08da2eef7ac2 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index c95c1308317c..388de5a0fedb 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 33df75901a72..51d2063d2818 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 13aff52ed823..486c9d1d1c63 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index a677bbc73304..ee295aa80752 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 97605c7ae216..8013c5e092c3 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 9a9d85ada47c..b8e7ea090792 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 7dd692d2dc32..a09aed66468a 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index d2e8994701b2..cea5fa28f553 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 1d2ee464e84b..012512b0bdd9 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 2985d2832403..7718d81273d5 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index ed5503b6e99f..ffdd7e2a108f 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index b3c3001536ba..538e298ce867 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index a7948ee9b6bc..be02e95f886b 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 8272177efdf4..c240f5a48218 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 56aa0b7276d6..5fdf7ffae5bf 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index b489694b8d7f..472fb82488cb 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 4353ce52f7b9..7e257570c6c5 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 045a3aa470b2..b9ba872100f9 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 928d2835ed2c..5f3e66c4f23d 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 87b78a473b10..28dc65d6d5f8 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index c4b3793c8029..699fcb0b2c06 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 13a762899db1..2192ccafdc0a 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 3c044b6010d1..f6cf0200e6a7 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index d4980a46b88c..319263a27991 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index a038b304531e..0dd6541c3009 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 1a11ff0add8e..9775965ac73e 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 773908efac4e..c666e05e385c 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 06a08916330b..89f600b34a42 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index dfb047e72912..b6273ba1ce20 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 8ea3ddee6749..408f4f7aee1f 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index d8cc5eb2d823..6a8d35e2b0b8 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 02ce098669b5..f537dda168a0 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 29d51ebaab02..fd9357c970ff 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index c8f571eaf512..778f492dca23 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 5313c298270a..a985a6b7417b 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 1b515e9886f6..2aab0cbd7fe0 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index a4cc60f1bdde..314f6e86f6dc 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index a2d3d1fd2697..575442cf138a 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 4d1740845090..50e28e08aa65 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index dcfbc646b898..1de21e63b9fd 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index b75fe757c7b4..a047c62e07cf 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index d7cb37b59af8..6e0150c8fc2d 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 532b7e12ad1c..d6276eaddfd1 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index d13c88d56644..e6fdd070765f 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 791d28de46f1..4a9a25ad4836 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 41487d21c9e4..0419934322fa 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 6be3ff71f4de..49b696f698c5 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index b76e8c2fd5a2..54c5ad9458ee 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 21ceec04583d..4ee2ee395398 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 931ca21b381f..b8cd851fb928 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 74852f64db6a..e2f5c329cc83 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index d467a0da1af1..3d0b7e697288 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 12dd9f24961f..62b602d5feda 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 96ce5b3d3351..0a4a8602c5dd 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index aead5cf8e173..b6600f207ec2 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index d54cf7835edf..3b164c07366f 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 4bf592b97875..919ee545dcd0 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index ed71461ee491..1f26e199f74a 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 206870dd0a4a..c2607b78db1c 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index adaf0708e34d..3b8ca4e0f27a 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 8f5ecbab015f..b60143badb22 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 2d9eaa1a69cc..5c86cd3bc182 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index b8f1ffa0aeb6..db51d8973538 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 3d95b3d2a017..9d1995fec82b 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 09e1c8460c73..f864d9999e0b 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 24368a01b2a9..949bb813e008 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index fe83f9aa3163..9f6674509da9 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 712e28e502bf..904fe472603d 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 65a119ccb04a..cc76d4cdf236 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 1df587e26009..babfbd60dd62 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index 48dd9ca4dec1..44b92996a905 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index e0bda2a84f59..aab5a85f19f3 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 9c26873b546a..12f26fb05397 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 6a1c50f74226..248c3ad9c8f1 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index ebe5279daa55..cbd7df1a5582 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 0308f882275b..52bd272c5c49 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 8fb9429718d3..444059abaf60 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index e6d4753d95a3..891fe8196981 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 5c66110b9252..9efb7d92f56e 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index de64c828aaf1..c764245bd540 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 0d10cb281f46..de69250710ae 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 30f4e47d0e14..92f1572ab97a 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index c87e5a9e2902..e0b1ffa0bcf2 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index d54732fa8079..c1156439a6fd 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 2536803c3958..5ceed5eab700 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.33 + 2.15.34-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index f6dc21b2d1a0..18ac77964f40 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 147ab4308047..4023ceaf48a2 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index dd95470edf30..6cbb51938d73 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 4ebb9c141fb0..26c187267229 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index ea6516efec69..30390d685875 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index c0e45b3a5f94..4a95d630e030 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index cc8b6596e65d..6acc2b3ab99a 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 7477d0ad7c25..4f69f700816a 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index c4413b0d6e26..06215dd5fa23 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 9b4b62aeb0b8..71c5d1427c91 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 2a16b0e15fbc..5c7d16b5dd51 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 610f4c948309..5a7947d953d5 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 4550076d2e35..06943394ed70 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 814bb5750f12..b168ad49fefe 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 621053b15ab4..807336aa3826 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 09d32f8fb1da..b19d1438dc43 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index d00516f3c1bf..c08d0d275560 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 99b76ecadfbc..8621c7c2c647 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 79adc4861cca..88b03ed58e30 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 8ddc18fec3fe..fbb515ec5849 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 18130bc039de..40a7cdc13e3f 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 1ea09cbe5bf0..1e8928bef03e 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 917b3b516dd6..c6d346392978 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 2d36da2f52aa..63a808dbb3cc 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 223ddef14183..834f3b6c872c 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 8ec87fcc5ca8..ab1068a7513c 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 02909373e05e..e09f93de9202 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 41c754e0b728..1d12346daba6 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index e82bbb005242..bd9729d24515 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 0b6855f7f43f..0d362ed9674e 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 8113ed59bb2f..5a96373682c0 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 8f1d0827664b..5bbccd0a9388 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index a36a3e35c215..7142824dee86 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index de6230ca68ed..dcdcbdfcaa60 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 142577d95f34..eb1a27a89b3b 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index a5a21c61c1cd..3c23f310c4fd 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index f21ffc6d4cff..70da013a2d6a 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 4fefb5ad98dc..c5983e69cea7 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 21be0fb4b95c..fb62a9a1c8c5 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 78906ec3d2e5..e0405209f9d9 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 6ec7036a718a..d348f60b6f43 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 6d3212721d6d..ccd24633d6e4 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 7d25f127c849..81d0196491a0 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 2c12a74f21b7..fd0267a0e743 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 48aec7f4b49e..2ac5771df668 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 1ed362d2cc75..a450bfbcdb9d 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index f25e4bdae2f3..235e230090a5 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index c2dd06a80218..68f2a7ae660c 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index b6920413f894..d8676e279b23 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index c648c8245df3..09d14c809445 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index c65ff785e0b2..41d185feeff2 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 8d3bf3229e4a..17747c5535de 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 9f1457fb127a..80c429773cd4 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index beaf2ad5d34b..4cfa9db771c1 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index ac155d169ec9..c16a4bf65db7 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index d4e319fa98ee..63734941268f 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 11b1c8292a93..d7d2ec0bebdd 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index d9b283d5d0a9..409b453b3b83 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index f3b38c2ca9f1..411127014eb8 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index d4e539a43f16..b79d0adee126 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 8d7ae2f692d4..b0d5b15c40f7 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 802b3d03c218..f4fe0e4e8e64 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 142d74cb8628..b7033283ad85 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index dd8c17fdae5a..8d28d8b88e60 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.33 + 2.15.34-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index b81b9e2eb7db..102d18bca07e 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.15.33 + 2.15.34-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 60bd7d71b219..0da0ea087657 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.15.33 + 2.15.34-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index e4b257773896..72e5f12e7ffe 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.15.33 + 2.15.34-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 05d53b9fe8c5..ce9b34c18357 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.15.33 + 2.15.34-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 16d96b902ffc..579d23cad96a 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.15.33 + 2.15.34-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index c89d6f698ec0..9a2b0395e6ea 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.33 + 2.15.34-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index a0db84e12246..da7a64f835a4 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.15.33 + 2.15.34-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 3545aa613b5e..784a5bfb9ca3 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.15.33 + 2.15.34-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 3d5139bca70c..97ce3dc8fc36 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.15.33 + 2.15.34-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index aedf2c9fea14..e56f10d9fb6b 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.15.33 + 2.15.34-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 9849195d3477..14cf8fd8816e 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.33 + 2.15.34-SNAPSHOT 4.0.0 From 7efe00bceae1ea6237c5299630789fe031e1c61b Mon Sep 17 00:00:00 2001 From: Anna-Karin Salander Date: Wed, 18 Nov 2020 15:54:39 -0800 Subject: [PATCH 252/339] Adds call to interceptor to disable double URL encoding for S3 control requests in addition to S3 requests --- ...oubleUrlEncodingForSigningInterceptor.java | 37 +++++++ .../services/s3control/execution.interceptors | 1 + ...est.java => NonArnOutpostRequestTest.java} | 2 +- .../arns/S3AccessPointArnTest.java | 25 ++--- .../signing/UrlEncodingTest.java | 101 ++++++++++++++++++ 5 files changed, 149 insertions(+), 17 deletions(-) create mode 100644 services/s3control/src/main/java/software/amazon/awssdk/services/s3control/internal/interceptors/DisableDoubleUrlEncodingForSigningInterceptor.java rename services/s3control/src/test/java/software/amazon/awssdk/services/s3control/internal/functionaltests/arns/{NonArnOutpostRequetsTest.java => NonArnOutpostRequestTest.java} (98%) create mode 100644 services/s3control/src/test/java/software/amazon/awssdk/services/s3control/internal/functionaltests/signing/UrlEncodingTest.java diff --git a/services/s3control/src/main/java/software/amazon/awssdk/services/s3control/internal/interceptors/DisableDoubleUrlEncodingForSigningInterceptor.java b/services/s3control/src/main/java/software/amazon/awssdk/services/s3control/internal/interceptors/DisableDoubleUrlEncodingForSigningInterceptor.java new file mode 100644 index 000000000000..01c8cbcbbc38 --- /dev/null +++ b/services/s3control/src/main/java/software/amazon/awssdk/services/s3control/internal/interceptors/DisableDoubleUrlEncodingForSigningInterceptor.java @@ -0,0 +1,37 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.s3control.internal.interceptors; + +import software.amazon.awssdk.annotations.SdkInternalApi; +import software.amazon.awssdk.auth.signer.AwsSignerExecutionAttribute; +import software.amazon.awssdk.core.interceptor.Context; +import software.amazon.awssdk.core.interceptor.ExecutionAttributes; +import software.amazon.awssdk.core.interceptor.ExecutionInterceptor; + +/** + * Execution interceptor which modifies the HTTP request to S3 Control to + * add a signer attribute that will instruct the signer to not double-url-encode path elements. + * S3 Control expects path elements to be encoded only once in the canonical URI. + * Similar functionality exists for S3. + */ +@SdkInternalApi +public final class DisableDoubleUrlEncodingForSigningInterceptor implements ExecutionInterceptor { + + @Override + public void beforeExecution(Context.BeforeExecution context, ExecutionAttributes executionAttributes) { + executionAttributes.putAttribute(AwsSignerExecutionAttribute.SIGNER_DOUBLE_URL_ENCODE, Boolean.FALSE); + } +} diff --git a/services/s3control/src/main/resources/software/amazon/awssdk/services/s3control/execution.interceptors b/services/s3control/src/main/resources/software/amazon/awssdk/services/s3control/execution.interceptors index b19e9f79a356..bc59d1fe2d3e 100644 --- a/services/s3control/src/main/resources/software/amazon/awssdk/services/s3control/execution.interceptors +++ b/services/s3control/src/main/resources/software/amazon/awssdk/services/s3control/execution.interceptors @@ -1,2 +1,3 @@ +software.amazon.awssdk.services.s3control.internal.interceptors.DisableDoubleUrlEncodingForSigningInterceptor software.amazon.awssdk.services.s3control.internal.interceptors.EndpointAddressInterceptor software.amazon.awssdk.services.s3control.internal.interceptors.PayloadSigningInterceptor \ No newline at end of file diff --git a/services/s3control/src/test/java/software/amazon/awssdk/services/s3control/internal/functionaltests/arns/NonArnOutpostRequetsTest.java b/services/s3control/src/test/java/software/amazon/awssdk/services/s3control/internal/functionaltests/arns/NonArnOutpostRequestTest.java similarity index 98% rename from services/s3control/src/test/java/software/amazon/awssdk/services/s3control/internal/functionaltests/arns/NonArnOutpostRequetsTest.java rename to services/s3control/src/test/java/software/amazon/awssdk/services/s3control/internal/functionaltests/arns/NonArnOutpostRequestTest.java index 4f3e7cd17a3c..12534ca47bbe 100644 --- a/services/s3control/src/test/java/software/amazon/awssdk/services/s3control/internal/functionaltests/arns/NonArnOutpostRequetsTest.java +++ b/services/s3control/src/test/java/software/amazon/awssdk/services/s3control/internal/functionaltests/arns/NonArnOutpostRequestTest.java @@ -34,7 +34,7 @@ import software.amazon.awssdk.services.s3control.S3ControlClient; -public class NonArnOutpostRequetsTest extends S3ControlWireMockTestBase { +public class NonArnOutpostRequestTest extends S3ControlWireMockTestBase { private S3ControlClient s3; private static final String EXPECTED_URL = "/v20180820/bucket"; diff --git a/services/s3control/src/test/java/software/amazon/awssdk/services/s3control/internal/functionaltests/arns/S3AccessPointArnTest.java b/services/s3control/src/test/java/software/amazon/awssdk/services/s3control/internal/functionaltests/arns/S3AccessPointArnTest.java index e84c9e5f98af..b22ede8fec84 100644 --- a/services/s3control/src/test/java/software/amazon/awssdk/services/s3control/internal/functionaltests/arns/S3AccessPointArnTest.java +++ b/services/s3control/src/test/java/software/amazon/awssdk/services/s3control/internal/functionaltests/arns/S3AccessPointArnTest.java @@ -21,10 +21,9 @@ import org.junit.rules.ExpectedException; import software.amazon.awssdk.regions.Region; import software.amazon.awssdk.services.s3control.S3ControlClient; -import software.amazon.awssdk.services.s3control.S3ControlClientBuilder; public class S3AccessPointArnTest extends S3ControlWireMockTestBase { - private S3ControlClient s3; + private S3ControlClient s3Control; private static final String EXPECTED_URL = "/v20180820/accesspoint/myendpoint"; @Rule @@ -32,63 +31,57 @@ public class S3AccessPointArnTest extends S3ControlWireMockTestBase { @Before public void methodSetUp() { - s3 = buildClient(); + s3Control = buildClient(); } @Test public void malformedArn_MissingOutpostSegment_shouldThrowException() { - S3ControlClient s3ControlForTest = buildClientCustom().build(); - String accessPointArn = "arn:aws:s3-outposts:us-west-2:123456789012:outpost"; exception.expect(IllegalArgumentException.class); exception.expectMessage("Unknown ARN type"); - s3ControlForTest.getAccessPoint(b -> b.name(accessPointArn)); + s3Control.getAccessPoint(b -> b.name(accessPointArn)); } @Test public void malformedArn_MissingAccessPointSegment_shouldThrowException() { - S3ControlClient s3ControlForTest = buildClientCustom().build(); - String accessPointArn = "arn:aws:s3-outposts:us-west-2:123456789012:outpost:op-01234567890123456"; exception.expect(IllegalArgumentException.class); exception.expectMessage("Invalid format"); - s3ControlForTest.getAccessPoint(b -> b.name(accessPointArn)); + s3Control.getAccessPoint(b -> b.name(accessPointArn)); } @Test public void malformedArn_MissingAccessPointName_shouldThrowException() { - S3ControlClient s3ControlForTest = buildClientCustom().build(); - String accessPointArn = "arn:aws:s3-outposts:us-west-2:123456789012:outpost:myaccesspoint"; exception.expect(IllegalArgumentException.class); exception.expectMessage("Invalid format"); - s3ControlForTest.getAccessPoint(b -> b.name(accessPointArn)); + s3Control.getAccessPoint(b -> b.name(accessPointArn)); } @Test public void accessPointArn_ClientHasCustomEndpoint_throwsIllegalArgumentException() { - S3ControlClient s3Control = buildClientWithCustomEndpoint("https://foo.bar", "us-east-1"); + S3ControlClient s3ControlCustom = buildClientWithCustomEndpoint("https://foo.bar", "us-east-1"); String accessPointArn = "arn:aws:s3-outposts:us-west-2:123456789012:outpost:op-01234567890123456:accesspoint" + ":myaccesspoint"; exception.expect(IllegalArgumentException.class); exception.expectMessage("endpoint"); - s3Control.getAccessPoint(b -> b.name(accessPointArn)); + s3ControlCustom.getAccessPoint(b -> b.name(accessPointArn)); } @Test public void bucketArnDifferentRegionNoConfigFlag_throwsIllegalArgumentException() { - S3ControlClient s3ControlForTest = initializedBuilder().region(Region.of("us-east-1")).build(); + S3ControlClient s3ControlCustom = initializedBuilder().region(Region.of("us-east-1")).build(); String accessPointArn = "arn:aws:s3-outposts:us-west-2:123456789012:outpost:op-01234567890123456:accesspoint" + ":myaccesspoint"; exception.expect(IllegalArgumentException.class); exception.expectMessage("does not match the region the client was configured with"); - s3ControlForTest.getAccessPoint(b -> b.name(accessPointArn)); + s3ControlCustom.getAccessPoint(b -> b.name(accessPointArn)); } @Override diff --git a/services/s3control/src/test/java/software/amazon/awssdk/services/s3control/internal/functionaltests/signing/UrlEncodingTest.java b/services/s3control/src/test/java/software/amazon/awssdk/services/s3control/internal/functionaltests/signing/UrlEncodingTest.java new file mode 100644 index 000000000000..0e65c83f2a3d --- /dev/null +++ b/services/s3control/src/test/java/software/amazon/awssdk/services/s3control/internal/functionaltests/signing/UrlEncodingTest.java @@ -0,0 +1,101 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.services.s3control.internal.functionaltests.signing; + +import static com.github.tomakehurst.wiremock.client.WireMock.aResponse; +import static com.github.tomakehurst.wiremock.client.WireMock.get; +import static com.github.tomakehurst.wiremock.client.WireMock.stubFor; +import static com.github.tomakehurst.wiremock.client.WireMock.urlMatching; +import static org.assertj.core.api.Assertions.assertThat; + +import java.net.URI; +import com.github.tomakehurst.wiremock.junit.WireMockRule; +import org.junit.Before; +import org.junit.Rule; +import org.junit.Test; +import software.amazon.awssdk.auth.credentials.AwsBasicCredentials; +import software.amazon.awssdk.auth.signer.AwsSignerExecutionAttribute; +import software.amazon.awssdk.core.interceptor.Context; +import software.amazon.awssdk.core.interceptor.ExecutionAttributes; +import software.amazon.awssdk.core.interceptor.ExecutionInterceptor; +import software.amazon.awssdk.http.SdkHttpRequest; +import software.amazon.awssdk.regions.Region; +import software.amazon.awssdk.services.s3control.S3ControlClient; + + +public class UrlEncodingTest { + private static final URI HTTP_LOCALHOST_URI = URI.create("http://localhost:8080/"); + private static final String EXPECTED_URL = "/v20180820/jobs/id"; + + private S3ControlClient s3Control; + private ExecutionAttributeInterceptor interceptor; + + @Rule + public WireMockRule mockServer = new WireMockRule(); + + protected S3ControlClient buildClient() { + this.interceptor = new ExecutionAttributeInterceptor(HTTP_LOCALHOST_URI); + + return S3ControlClient.builder() + .credentialsProvider(() -> AwsBasicCredentials.create("test", "test")) + .region(Region.US_WEST_2) + .overrideConfiguration(o -> o.addExecutionInterceptor(this.interceptor)) + .build(); + } + + @Before + public void methodSetUp() { + s3Control = buildClient(); + } + + @Test + public void any_request_should_set_double_url_encode_to_false() { + stubFor(get(urlMatching(EXPECTED_URL)).willReturn(aResponse().withBody("").withStatus(200))); + + s3Control.describeJob(b -> b.accountId("123456789012").jobId("id")); + + assertThat(interceptor.signerDoubleUrlEncode()).isNotNull(); + assertThat(interceptor.signerDoubleUrlEncode()).isFalse(); + } + + /** + * In addition to checking the signing attribute, the interceptor sets the endpoint since + * S3 control prepends the account id to the host name and wiremock won't intercept the request + */ + private static class ExecutionAttributeInterceptor implements ExecutionInterceptor { + private final URI rerouteEndpoint; + private Boolean signerDoubleUrlEncode; + + ExecutionAttributeInterceptor(URI rerouteEndpoint) { + this.rerouteEndpoint = rerouteEndpoint; + } + + @Override + public void beforeExecution(Context.BeforeExecution context, ExecutionAttributes executionAttributes) { + signerDoubleUrlEncode = executionAttributes.getAttribute(AwsSignerExecutionAttribute.SIGNER_DOUBLE_URL_ENCODE); + } + + @Override + public SdkHttpRequest modifyHttpRequest(Context.ModifyHttpRequest context, ExecutionAttributes executionAttributes) { + SdkHttpRequest request = context.httpRequest(); + return request.toBuilder().uri(rerouteEndpoint).build(); + } + + public Boolean signerDoubleUrlEncode() { + return signerDoubleUrlEncode; + } + } +} From 57e3b2403c7deda35f6c4867cfc34bf8a08e15c3 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:05:10 +0000 Subject: [PATCH 253/339] Managed Streaming for Kafka Update: Adding MAINTENANCE and REBOOTING_BROKER to Cluster states. --- .../feature-ManagedStreamingforKafka-bdad770.json | 6 ++++++ .../main/resources/codegen-resources/service-2.json | 12 +++++++----- 2 files changed, 13 insertions(+), 5 deletions(-) create mode 100644 .changes/next-release/feature-ManagedStreamingforKafka-bdad770.json diff --git a/.changes/next-release/feature-ManagedStreamingforKafka-bdad770.json b/.changes/next-release/feature-ManagedStreamingforKafka-bdad770.json new file mode 100644 index 000000000000..a14f98e457b8 --- /dev/null +++ b/.changes/next-release/feature-ManagedStreamingforKafka-bdad770.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Managed Streaming for Kafka", + "contributor": "", + "description": "Adding MAINTENANCE and REBOOTING_BROKER to Cluster states." +} diff --git a/services/kafka/src/main/resources/codegen-resources/service-2.json b/services/kafka/src/main/resources/codegen-resources/service-2.json index 36934477840f..0354971783f8 100644 --- a/services/kafka/src/main/resources/codegen-resources/service-2.json +++ b/services/kafka/src/main/resources/codegen-resources/service-2.json @@ -1411,7 +1411,7 @@ "State": { "shape": "ClusterState", "locationName": "state", - "documentation": "\n

The state of the cluster. The possible states are CREATING, ACTIVE, and FAILED.

\n " + "documentation": "\n

The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, MAINTENANCE, REBOOTING_BROKER, and UPDATING.

\n " }, "StateInfo" : { "shape" : "StateInfo", @@ -1529,9 +1529,11 @@ "enum": [ "ACTIVE", "CREATING", - "UPDATING", "DELETING", - "FAILED" + "FAILED", + "MAINTENANCE", + "REBOOTING_BROKER", + "UPDATING" ] }, "CompatibleKafkaVersion" : { @@ -1755,7 +1757,7 @@ "State": { "shape": "ClusterState", "locationName": "state", - "documentation": "\n

The state of the cluster. The possible states are CREATING, ACTIVE, and FAILED.

\n " + "documentation": "\n

The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, MAINTENANCE, REBOOTING_BROKER, and UPDATING.

\n " } } }, @@ -1849,7 +1851,7 @@ "State": { "shape": "ClusterState", "locationName": "state", - "documentation": "\n

The state of the cluster. The possible states are CREATING, ACTIVE, and FAILED.

\n " + "documentation": "\n

The state of the cluster. The possible states are ACTIVE, CREATING, DELETING, FAILED, MAINTENANCE, REBOOTING_BROKER, and UPDATING.

\n " } } }, From bdb269c4350f123d4da89cb99eb5b13031b3ee3e Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:05:10 +0000 Subject: [PATCH 254/339] AWS CodeStar connections Update: Added support for the UpdateHost API. --- ...eature-AWSCodeStarconnections-69c1f55.json | 6 ++ .../codegen-resources/service-2.json | 96 ++++++++++++++++--- 2 files changed, 89 insertions(+), 13 deletions(-) create mode 100644 .changes/next-release/feature-AWSCodeStarconnections-69c1f55.json diff --git a/.changes/next-release/feature-AWSCodeStarconnections-69c1f55.json b/.changes/next-release/feature-AWSCodeStarconnections-69c1f55.json new file mode 100644 index 000000000000..5b91031ebd15 --- /dev/null +++ b/.changes/next-release/feature-AWSCodeStarconnections-69c1f55.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS CodeStar connections", + "contributor": "", + "description": "Added support for the UpdateHost API." +} diff --git a/services/codestarconnections/src/main/resources/codegen-resources/service-2.json b/services/codestarconnections/src/main/resources/codegen-resources/service-2.json index 8086a7f75c5b..7c3dce35a31a 100644 --- a/services/codestarconnections/src/main/resources/codegen-resources/service-2.json +++ b/services/codestarconnections/src/main/resources/codegen-resources/service-2.json @@ -91,7 +91,8 @@ "input":{"shape":"GetHostInput"}, "output":{"shape":"GetHostOutput"}, "errors":[ - {"shape":"ResourceNotFoundException"} + {"shape":"ResourceNotFoundException"}, + {"shape":"ResourceUnavailableException"} ], "documentation":"

Returns the host ARN and details such as status, provider type, endpoint, and, if applicable, the VPC configuration.

" }, @@ -154,6 +155,22 @@ {"shape":"ResourceNotFoundException"} ], "documentation":"

Removes tags from an AWS resource.

" + }, + "UpdateHost":{ + "name":"UpdateHost", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateHostInput"}, + "output":{"shape":"UpdateHostOutput"}, + "errors":[ + {"shape":"ConflictException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ResourceUnavailableException"}, + {"shape":"UnsupportedOperationException"} + ], + "documentation":"

Updates a specified host with the provided configurations.

" } }, "shapes":{ @@ -166,7 +183,16 @@ "AmazonResourceName":{ "type":"string", "max":1011, - "min":1 + "min":1, + "pattern":"arn:aws(-[\\w]+)*:.+:.+:[0-9]{12}:.+" + }, + "ConflictException":{ + "type":"structure", + "members":{ + "Message":{"shape":"ErrorMessage"} + }, + "documentation":"

Two conflicting operations have been made on the same resource.

", + "exception":true }, "Connection":{ "type":"structure", @@ -181,7 +207,7 @@ }, "ProviderType":{ "shape":"ProviderType", - "documentation":"

The name of the external provider where your third-party code repository is configured. The valid provider type is Bitbucket.

" + "documentation":"

The name of the external provider where your third-party code repository is configured.

" }, "OwnerAccountId":{ "shape":"AccountId", @@ -211,7 +237,8 @@ "ConnectionName":{ "type":"string", "max":32, - "min":1 + "min":1, + "pattern":"[\\s\\S]*" }, "ConnectionStatus":{ "type":"string", @@ -227,7 +254,7 @@ "members":{ "ProviderType":{ "shape":"ProviderType", - "documentation":"

The name of the external provider where your third-party code repository is configured. The valid provider type is Bitbucket.

" + "documentation":"

The name of the external provider where your third-party code repository is configured.

" }, "ConnectionName":{ "shape":"ConnectionName", @@ -426,8 +453,9 @@ }, "HostName":{ "type":"string", - "max":32, - "min":1 + "max":64, + "min":1, + "pattern":".*" }, "HostStatus":{"type":"string"}, "HostStatusMessage":{"type":"string"}, @@ -526,7 +554,8 @@ "NextToken":{ "type":"string", "max":1024, - "min":1 + "min":1, + "pattern":".*" }, "ProviderType":{ "type":"string", @@ -554,6 +583,8 @@ }, "SecurityGroupId":{ "type":"string", + "max":20, + "min":11, "pattern":"sg-\\w{8}(\\w{9})?" }, "SecurityGroupIds":{ @@ -564,6 +595,8 @@ }, "SubnetId":{ "type":"string", + "max":24, + "min":15, "pattern":"subnet-\\w{8}(\\w{9})?" }, "SubnetIds":{ @@ -593,7 +626,8 @@ "TagKey":{ "type":"string", "max":128, - "min":1 + "min":1, + "pattern":".*" }, "TagKeyList":{ "type":"list", @@ -632,12 +666,22 @@ "TagValue":{ "type":"string", "max":256, - "min":0 + "min":0, + "pattern":".*" }, "TlsCertificate":{ "type":"string", "max":16384, - "min":1 + "min":1, + "pattern":"[\\s\\S]*" + }, + "UnsupportedOperationException":{ + "type":"structure", + "members":{ + "Message":{"shape":"ErrorMessage"} + }, + "documentation":"

The operation is not supported. Check the connection status and try again.

", + "exception":true }, "UntagResourceInput":{ "type":"structure", @@ -661,10 +705,34 @@ "members":{ } }, + "UpdateHostInput":{ + "type":"structure", + "required":["HostArn"], + "members":{ + "HostArn":{ + "shape":"HostArn", + "documentation":"

The Amazon Resource Name (ARN) of the host to be updated.

" + }, + "ProviderEndpoint":{ + "shape":"Url", + "documentation":"

The URL or endpoint of the host to be updated.

" + }, + "VpcConfiguration":{ + "shape":"VpcConfiguration", + "documentation":"

The VPC configuration of the host to be updated. A VPC must be configured and the infrastructure to be represented by the host must already be connected to the VPC.

" + } + } + }, + "UpdateHostOutput":{ + "type":"structure", + "members":{ + } + }, "Url":{ "type":"string", "max":512, - "min":1 + "min":1, + "pattern":".*" }, "VpcConfiguration":{ "type":"structure", @@ -695,8 +763,10 @@ }, "VpcId":{ "type":"string", + "max":21, + "min":12, "pattern":"vpc-\\w{8}(\\w{9})?" } }, - "documentation":"AWS CodeStar Connections

The CodeStar Connections feature is in preview release and is subject to change.

This AWS CodeStar Connections API Reference provides descriptions and usage examples of the operations and data types for the AWS CodeStar Connections API. You can use the connections API to work with connections and installations.

Connections are configurations that you use to connect AWS resources to external code repositories. Each connection is a resource that can be given to services such as CodePipeline to connect to a third-party repository such as Bitbucket. For example, you can add the connection in CodePipeline so that it triggers your pipeline when a code change is made to your third-party code repository. Each connection is named and associated with a unique ARN that is used to reference the connection.

When you create a connection, the console initiates a third-party connection handshake. Installations are the apps that are used to conduct this handshake. For example, the installation for the Bitbucket provider type is the Bitbucket Cloud app. When you create a connection, you can choose an existing installation or create one.

When you want to create a connection to an installed provider type such as GitHub Enterprise Server, you create a host for your connections.

You can work with connections by calling:

  • CreateConnection, which creates a uniquely named connection that can be referenced by services such as CodePipeline.

  • DeleteConnection, which deletes the specified connection.

  • GetConnection, which returns information about the connection, including the connection status.

  • ListConnections, which lists the connections associated with your account.

You can work with hosts by calling:

  • CreateHost, which creates a host that represents the infrastructure where your provider is installed.

  • DeleteHost, which deletes the specified host.

  • GetHost, which returns information about the host, including the setup status.

  • ListHosts, which lists the hosts associated with your account.

You can work with tags in AWS CodeStar Connections by calling the following:

  • ListTagsForResource, which gets information about AWS tags for a specified Amazon Resource Name (ARN) in AWS CodeStar Connections.

  • TagResource, which adds or updates tags for a resource in AWS CodeStar Connections.

  • UntagResource, which removes tags for a resource in AWS CodeStar Connections.

For information about how to use AWS CodeStar Connections, see the Developer Tools User Guide.

" + "documentation":"AWS CodeStar Connections

This AWS CodeStar Connections API Reference provides descriptions and usage examples of the operations and data types for the AWS CodeStar Connections API. You can use the connections API to work with connections and installations.

Connections are configurations that you use to connect AWS resources to external code repositories. Each connection is a resource that can be given to services such as CodePipeline to connect to a third-party repository such as Bitbucket. For example, you can add the connection in CodePipeline so that it triggers your pipeline when a code change is made to your third-party code repository. Each connection is named and associated with a unique ARN that is used to reference the connection.

When you create a connection, the console initiates a third-party connection handshake. Installations are the apps that are used to conduct this handshake. For example, the installation for the Bitbucket provider type is the Bitbucket app. When you create a connection, you can choose an existing installation or create one.

When you want to create a connection to an installed provider type such as GitHub Enterprise Server, you create a host for your connections.

You can work with connections by calling:

  • CreateConnection, which creates a uniquely named connection that can be referenced by services such as CodePipeline.

  • DeleteConnection, which deletes the specified connection.

  • GetConnection, which returns information about the connection, including the connection status.

  • ListConnections, which lists the connections associated with your account.

You can work with hosts by calling:

  • CreateHost, which creates a host that represents the infrastructure where your provider is installed.

  • DeleteHost, which deletes the specified host.

  • GetHost, which returns information about the host, including the setup status.

  • ListHosts, which lists the hosts associated with your account.

You can work with tags in AWS CodeStar Connections by calling the following:

  • ListTagsForResource, which gets information about AWS tags for a specified Amazon Resource Name (ARN) in AWS CodeStar Connections.

  • TagResource, which adds or updates tags for a resource in AWS CodeStar Connections.

  • UntagResource, which removes tags for a resource in AWS CodeStar Connections.

For information about how to use AWS CodeStar Connections, see the Developer Tools User Guide.

" } From c8bf11bd71faf589ab9d55852c6a1ce2c010823d Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:05:11 +0000 Subject: [PATCH 255/339] Amazon Translate Update: This update adds new operations to create and manage parallel data in Amazon Translate. Parallel data is a resource that you can use to run Active Custom Translation jobs. --- .../feature-AmazonTranslate-1726b74.json | 6 + .../codegen-resources/paginators-1.json | 5 + .../codegen-resources/service-2.json | 415 +++++++++++++++++- 3 files changed, 425 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AmazonTranslate-1726b74.json diff --git a/.changes/next-release/feature-AmazonTranslate-1726b74.json b/.changes/next-release/feature-AmazonTranslate-1726b74.json new file mode 100644 index 000000000000..15649e5352e0 --- /dev/null +++ b/.changes/next-release/feature-AmazonTranslate-1726b74.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Translate", + "contributor": "", + "description": "This update adds new operations to create and manage parallel data in Amazon Translate. Parallel data is a resource that you can use to run Active Custom Translation jobs." +} diff --git a/services/translate/src/main/resources/codegen-resources/paginators-1.json b/services/translate/src/main/resources/codegen-resources/paginators-1.json index 67f44714aca2..7447f8e1bf87 100644 --- a/services/translate/src/main/resources/codegen-resources/paginators-1.json +++ b/services/translate/src/main/resources/codegen-resources/paginators-1.json @@ -1,5 +1,10 @@ { "pagination": { + "ListParallelData": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken" + }, "ListTerminologies": { "input_token": "NextToken", "limit_key": "MaxResults", diff --git a/services/translate/src/main/resources/codegen-resources/service-2.json b/services/translate/src/main/resources/codegen-resources/service-2.json index 0eb1ba3e13eb..c1947e759c45 100644 --- a/services/translate/src/main/resources/codegen-resources/service-2.json +++ b/services/translate/src/main/resources/codegen-resources/service-2.json @@ -13,6 +13,40 @@ "uid":"translate-2017-07-01" }, "operations":{ + "CreateParallelData":{ + "name":"CreateParallelData", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateParallelDataRequest"}, + "output":{"shape":"CreateParallelDataResponse"}, + "errors":[ + {"shape":"InvalidParameterValueException"}, + {"shape":"InvalidRequestException"}, + {"shape":"LimitExceededException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ConflictException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Creates a parallel data resource in Amazon Translate by importing an input file from Amazon S3. Parallel data files contain examples of source phrases and their translations from your translation memory. By adding parallel data, you can influence the style, tone, and word choice in your translation output.

" + }, + "DeleteParallelData":{ + "name":"DeleteParallelData", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteParallelDataRequest"}, + "output":{"shape":"DeleteParallelDataResponse"}, + "errors":[ + {"shape":"ConcurrentModificationException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Deletes a parallel data resource in Amazon Translate.

" + }, "DeleteTerminology":{ "name":"DeleteTerminology", "http":{ @@ -43,6 +77,22 @@ ], "documentation":"

Gets the properties associated with an asycnhronous batch translation job including name, ID, status, source and target languages, input/output S3 buckets, and so on.

" }, + "GetParallelData":{ + "name":"GetParallelData", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetParallelDataRequest"}, + "output":{"shape":"GetParallelDataResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InvalidParameterValueException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Provides information about a parallel data resource.

" + }, "GetTerminology":{ "name":"GetTerminology", "http":{ @@ -75,6 +125,21 @@ ], "documentation":"

Creates or updates a custom terminology, depending on whether or not one already exists for the given terminology name. Importing a terminology with the same name as an existing one will merge the terminologies based on the chosen merge strategy. Currently, the only supported merge strategy is OVERWRITE, and so the imported terminology will overwrite an existing terminology of the same name.

If you import a terminology that overwrites an existing one, the new terminology take up to 10 minutes to fully propagate and be available for use in a translation due to cache policies with the DataPlane service that performs the translations.

" }, + "ListParallelData":{ + "name":"ListParallelData", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListParallelDataRequest"}, + "output":{"shape":"ListParallelDataResponse"}, + "errors":[ + {"shape":"InvalidParameterValueException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Provides a list of your parallel data resources in Amazon Translate.

" + }, "ListTerminologies":{ "name":"ListTerminologies", "http":{ @@ -157,6 +222,26 @@ {"shape":"ServiceUnavailableException"} ], "documentation":"

Translates input text from the source language to the target language. For a list of available languages and language codes, see what-is-languages.

" + }, + "UpdateParallelData":{ + "name":"UpdateParallelData", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateParallelDataRequest"}, + "output":{"shape":"UpdateParallelDataResponse"}, + "errors":[ + {"shape":"ConcurrentModificationException"}, + {"shape":"InvalidParameterValueException"}, + {"shape":"InvalidRequestException"}, + {"shape":"LimitExceededException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ConflictException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Updates a previously created parallel data resource by importing a new input file from Amazon S3.

" } }, "shapes":{ @@ -190,11 +275,91 @@ "min":1, "pattern":"^[a-zA-Z0-9-]+$" }, + "ConcurrentModificationException":{ + "type":"structure", + "members":{ + "Message":{"shape":"String"} + }, + "documentation":"

Another modification is being made. That modification must complete before you can make your change.

", + "exception":true + }, + "ConflictException":{ + "type":"structure", + "members":{ + "Message":{"shape":"String"} + }, + "documentation":"

There was a conflict processing the request. Try your request again.

", + "exception":true + }, "ContentType":{ "type":"string", "max":256, "pattern":"^[-\\w.]+\\/[-\\w.+]+$" }, + "CreateParallelDataRequest":{ + "type":"structure", + "required":[ + "Name", + "ParallelDataConfig", + "ClientToken" + ], + "members":{ + "Name":{ + "shape":"ResourceName", + "documentation":"

A custom name for the parallel data resource in Amazon Translate. You must assign a name that is unique in the account and region.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

A custom description for the parallel data resource in Amazon Translate.

" + }, + "ParallelDataConfig":{ + "shape":"ParallelDataConfig", + "documentation":"

Specifies the format and S3 location of the parallel data input file.

" + }, + "EncryptionKey":{"shape":"EncryptionKey"}, + "ClientToken":{ + "shape":"ClientTokenString", + "documentation":"

A unique identifier for the request. This token is automatically generated when you use Amazon Translate through an AWS SDK.

", + "idempotencyToken":true + } + } + }, + "CreateParallelDataResponse":{ + "type":"structure", + "members":{ + "Name":{ + "shape":"ResourceName", + "documentation":"

The custom name that you assigned to the parallel data resource.

" + }, + "Status":{ + "shape":"ParallelDataStatus", + "documentation":"

The status of the parallel data resource. When the resource is ready for you to use, the status is ACTIVE.

" + } + } + }, + "DeleteParallelDataRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"ResourceName", + "documentation":"

The name of the parallel data resource that is being deleted.

" + } + } + }, + "DeleteParallelDataResponse":{ + "type":"structure", + "members":{ + "Name":{ + "shape":"ResourceName", + "documentation":"

The name of the parallel data resource that is being deleted.

" + }, + "Status":{ + "shape":"ParallelDataStatus", + "documentation":"

The status of the parallel data deletion.

" + } + } + }, "DeleteTerminologyRequest":{ "type":"structure", "required":["Name"], @@ -257,7 +422,7 @@ "documentation":"

The Amazon Resource Name (ARN) of the encryption key being used to encrypt the custom terminology.

" } }, - "documentation":"

The encryption key used to encrypt the custom terminologies used by Amazon Translate.

" + "documentation":"

The encryption key used to encrypt this object.

" }, "EncryptionKeyID":{ "type":"string", @@ -269,6 +434,37 @@ "type":"string", "enum":["KMS"] }, + "GetParallelDataRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"ResourceName", + "documentation":"

The name of the parallel data resource that is being retrieved.

" + } + } + }, + "GetParallelDataResponse":{ + "type":"structure", + "members":{ + "ParallelDataProperties":{ + "shape":"ParallelDataProperties", + "documentation":"

The properties of the parallel data resource that is being retrieved.

" + }, + "DataLocation":{ + "shape":"ParallelDataDataLocation", + "documentation":"

The location of the most recent parallel data input file that was successfully imported into Amazon Translate. The location is returned as a presigned URL that has a 30 minute expiration.

" + }, + "AuxiliaryDataLocation":{ + "shape":"ParallelDataDataLocation", + "documentation":"

The Amazon S3 location of a file that provides any errors or warnings that were produced by your input file. This file was created when Amazon Translate attempted to create a parallel data resource. The location is returned as a presigned URL to that has a 30 minute expiration.

" + }, + "LatestUpdateAttemptAuxiliaryDataLocation":{ + "shape":"ParallelDataDataLocation", + "documentation":"

The Amazon S3 location of a file that provides any errors or warnings that were produced by your input file. This file was created when Amazon Translate attempted to update a parallel data resource. The location is returned as a presigned URL to that has a 30 minute expiration.

" + } + } + }, "GetTerminologyRequest":{ "type":"structure", "required":[ @@ -455,6 +651,32 @@ "documentation":"

The specified limit has been exceeded. Review your request and retry it with a quantity below the stated limit.

", "exception":true }, + "ListParallelDataRequest":{ + "type":"structure", + "members":{ + "NextToken":{ + "shape":"NextToken", + "documentation":"

A string that specifies the next page of results to return in a paginated response.

" + }, + "MaxResults":{ + "shape":"MaxResultsInteger", + "documentation":"

The maximum number of parallel data resources returned for each request.

" + } + } + }, + "ListParallelDataResponse":{ + "type":"structure", + "members":{ + "ParallelDataPropertiesList":{ + "shape":"ParallelDataPropertiesList", + "documentation":"

The properties of the parallel data resources returned by this request.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The string to use in a subsequent request to get the next page of results in a paginated response. This value is null if there are no additional pages.

" + } + } + }, "ListTerminologiesRequest":{ "type":"structure", "members":{ @@ -511,6 +733,7 @@ } } }, + "Long":{"type":"long"}, "MaxResultsInteger":{ "type":"integer", "max":500, @@ -536,6 +759,140 @@ }, "documentation":"

The output configuration properties for a batch translation job.

" }, + "ParallelDataArn":{ + "type":"string", + "max":512, + "min":1 + }, + "ParallelDataConfig":{ + "type":"structure", + "required":[ + "S3Uri", + "Format" + ], + "members":{ + "S3Uri":{ + "shape":"S3Uri", + "documentation":"

The URI of the Amazon S3 folder that contains the parallel data input file. The folder must be in the same Region as the API endpoint you are calling.

" + }, + "Format":{ + "shape":"ParallelDataFormat", + "documentation":"

The format of the parallel data input file.

" + } + }, + "documentation":"

Specifies the format and S3 location of the parallel data input file.

" + }, + "ParallelDataDataLocation":{ + "type":"structure", + "required":[ + "RepositoryType", + "Location" + ], + "members":{ + "RepositoryType":{ + "shape":"String", + "documentation":"

Describes the repository that contains the parallel data input file.

" + }, + "Location":{ + "shape":"String", + "documentation":"

The Amazon S3 location of the parallel data input file. The location is returned as a presigned URL to that has a 30 minute expiration.

" + } + }, + "documentation":"

The location of the most recent parallel data input file that was successfully imported into Amazon Translate.

" + }, + "ParallelDataFormat":{ + "type":"string", + "enum":[ + "TSV", + "CSV", + "TMX" + ] + }, + "ParallelDataProperties":{ + "type":"structure", + "members":{ + "Name":{ + "shape":"ResourceName", + "documentation":"

The custom name assigned to the parallel data resource.

" + }, + "Arn":{ + "shape":"ParallelDataArn", + "documentation":"

The Amazon Resource Name (ARN) of the parallel data resource.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

The description assigned to the parallel data resource.

" + }, + "Status":{ + "shape":"ParallelDataStatus", + "documentation":"

The status of the parallel data resource. When the parallel data is ready for you to use, the status is ACTIVE.

" + }, + "SourceLanguageCode":{ + "shape":"LanguageCodeString", + "documentation":"

The source language of the translations in the parallel data file.

" + }, + "TargetLanguageCodes":{ + "shape":"LanguageCodeStringList", + "documentation":"

The language codes for the target languages available in the parallel data file. All possible target languages are returned as an array.

" + }, + "ParallelDataConfig":{ + "shape":"ParallelDataConfig", + "documentation":"

Specifies the format and S3 location of the parallel data input file.

" + }, + "Message":{ + "shape":"UnboundedLengthString", + "documentation":"

Additional information from Amazon Translate about the parallel data resource.

" + }, + "ImportedDataSize":{ + "shape":"Long", + "documentation":"

The number of UTF-8 characters that Amazon Translate imported from the parallel data input file. This number includes only the characters in your translation examples. It does not include characters that are used to format your file. For example, if you provided a Translation Memory Exchange (.tmx) file, this number does not include the tags.

" + }, + "ImportedRecordCount":{ + "shape":"Long", + "documentation":"

The number of records successfully imported from the parallel data input file.

" + }, + "FailedRecordCount":{ + "shape":"Long", + "documentation":"

The number of records unsuccessfully imported from the parallel data input file.

" + }, + "SkippedRecordCount":{ + "shape":"Long", + "documentation":"

The number of items in the input file that Amazon Translate skipped when you created or updated the parallel data resource. For example, Amazon Translate skips empty records, empty target texts, and empty lines.

" + }, + "EncryptionKey":{"shape":"EncryptionKey"}, + "CreatedAt":{ + "shape":"Timestamp", + "documentation":"

The time at which the parallel data resource was created.

" + }, + "LastUpdatedAt":{ + "shape":"Timestamp", + "documentation":"

The time at which the parallel data resource was last updated.

" + }, + "LatestUpdateAttemptStatus":{ + "shape":"ParallelDataStatus", + "documentation":"

The status of the most recent update attempt for the parallel data resource.

" + }, + "LatestUpdateAttemptAt":{ + "shape":"Timestamp", + "documentation":"

The time that the most recent update was attempted.

" + } + }, + "documentation":"

The properties of a parallel data resource.

" + }, + "ParallelDataPropertiesList":{ + "type":"list", + "member":{"shape":"ParallelDataProperties"} + }, + "ParallelDataStatus":{ + "type":"string", + "enum":[ + "CREATING", + "UPDATING", + "ACTIVE", + "DELETING", + "FAILED" + ] + }, "ResourceName":{ "type":"string", "max":256, @@ -607,6 +964,10 @@ "shape":"ResourceNameList", "documentation":"

The name of the terminology to use in the batch translation job. For a list of available terminologies, use the ListTerminologies operation.

" }, + "ParallelDataNames":{ + "shape":"ResourceNameList", + "documentation":"

The names of the parallel data resources to use in the batch translation job. For a list of available parallel data resources, use the ListParallelData operation.

" + }, "ClientToken":{ "shape":"ClientTokenString", "documentation":"

A unique identifier for the request. This token is auto-generated when using the Amazon Translate SDK.

", @@ -843,6 +1204,10 @@ "shape":"ResourceNameList", "documentation":"

A list containing the names of the terminologies applied to a translation job. Only one terminology can be applied per StartTextTranslationJob request at this time.

" }, + "ParallelDataNames":{ + "shape":"ResourceNameList", + "documentation":"

A list containing the names of the parallel data resources applied to the translation job.

" + }, "Message":{ "shape":"UnboundedLengthString", "documentation":"

An explanation of any errors that may have occured during the translation job.

" @@ -951,6 +1316,54 @@ }, "documentation":"

Amazon Translate does not support translation from the language of the source text into the requested target language. For more information, see how-to-error-msg.

", "exception":true + }, + "UpdateParallelDataRequest":{ + "type":"structure", + "required":[ + "Name", + "ParallelDataConfig", + "ClientToken" + ], + "members":{ + "Name":{ + "shape":"ResourceName", + "documentation":"

The name of the parallel data resource being updated.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

A custom description for the parallel data resource in Amazon Translate.

" + }, + "ParallelDataConfig":{ + "shape":"ParallelDataConfig", + "documentation":"

Specifies the format and S3 location of the parallel data input file.

" + }, + "ClientToken":{ + "shape":"ClientTokenString", + "documentation":"

A unique identifier for the request. This token is automatically generated when you use Amazon Translate through an AWS SDK.

", + "idempotencyToken":true + } + } + }, + "UpdateParallelDataResponse":{ + "type":"structure", + "members":{ + "Name":{ + "shape":"ResourceName", + "documentation":"

The name of the parallel data resource being updated.

" + }, + "Status":{ + "shape":"ParallelDataStatus", + "documentation":"

The status of the parallel data resource that you are attempting to update. Your update request is accepted only if this status is either ACTIVE or FAILED.

" + }, + "LatestUpdateAttemptStatus":{ + "shape":"ParallelDataStatus", + "documentation":"

The status of the parallel data update attempt. When the updated parallel data resource is ready for you to use, the status is ACTIVE.

" + }, + "LatestUpdateAttemptAt":{ + "shape":"Timestamp", + "documentation":"

The time that the most recent update was attempted.

" + } + } } }, "documentation":"

Provides translation between one source language and another of the same set of languages.

" From bc9894d6a40daaa739f9fd2fd189646c1372dd7a Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:05:11 +0000 Subject: [PATCH 256/339] Amazon CloudWatch Application Insights Update: Add Detected Workload to ApplicationComponent which shows the workloads that installed in the component --- ...CloudWatchApplicationInsights-54f29e9.json | 6 + .../codegen-resources/service-2.json | 185 +++++++++++++++--- 2 files changed, 164 insertions(+), 27 deletions(-) create mode 100644 .changes/next-release/feature-AmazonCloudWatchApplicationInsights-54f29e9.json diff --git a/.changes/next-release/feature-AmazonCloudWatchApplicationInsights-54f29e9.json b/.changes/next-release/feature-AmazonCloudWatchApplicationInsights-54f29e9.json new file mode 100644 index 000000000000..17a8997db68d --- /dev/null +++ b/.changes/next-release/feature-AmazonCloudWatchApplicationInsights-54f29e9.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon CloudWatch Application Insights", + "contributor": "", + "description": "Add Detected Workload to ApplicationComponent which shows the workloads that installed in the component" +} diff --git a/services/applicationinsights/src/main/resources/codegen-resources/service-2.json b/services/applicationinsights/src/main/resources/codegen-resources/service-2.json index 1c847097a688..6780ae22c3bd 100644 --- a/services/applicationinsights/src/main/resources/codegen-resources/service-2.json +++ b/services/applicationinsights/src/main/resources/codegen-resources/service-2.json @@ -27,7 +27,8 @@ {"shape":"ResourceNotFoundException"}, {"shape":"ValidationException"}, {"shape":"InternalServerException"}, - {"shape":"TagsAlreadyExistException"} + {"shape":"TagsAlreadyExistException"}, + {"shape":"AccessDeniedException"} ], "documentation":"

Adds an application that is created from a resource group.

" }, @@ -426,11 +427,20 @@ } }, "shapes":{ + "AccessDeniedException":{ + "type":"structure", + "members":{ + "Message":{"shape":"ErrorMsg"} + }, + "documentation":"

User does not have permissions to perform this action.

", + "exception":true + }, "AffectedResource":{"type":"string"}, "AmazonResourceName":{ "type":"string", "max":1011, - "min":1 + "min":1, + "pattern":"^arn:aws(-\\w+)*:[\\w\\d-]+:([\\w\\d-]*)?:[\\w\\d_-]*([:/].+)*$" }, "ApplicationComponent":{ "type":"structure", @@ -439,10 +449,18 @@ "shape":"ComponentName", "documentation":"

The name of the component.

" }, + "ComponentRemarks":{ + "shape":"Remarks", + "documentation":"

If logging is supported for the resource type, indicates whether the component has configured logs to be monitored.

" + }, "ResourceType":{ "shape":"ResourceType", "documentation":"

The resource type. Supported resource types include EC2 instances, Auto Scaling group, Classic ELB, Application ELB, and SQS Queue.

" }, + "OsType":{ + "shape":"OsType", + "documentation":"

The operating system of the component.

" + }, "Tier":{ "shape":"Tier", "documentation":"

The stack tier of the application component.

" @@ -450,6 +468,10 @@ "Monitor":{ "shape":"Monitor", "documentation":"

Indicates whether the application component is monitored.

" + }, + "DetectedWorkload":{ + "shape":"DetectedWorkload", + "documentation":"

Workloads detected in the application component.

" } }, "documentation":"

Describes a standalone resource or similarly grouped resources that the application is made up of.

" @@ -508,7 +530,8 @@ "enum":[ "EC2", "CODE_DEPLOY", - "HEALTH" + "HEALTH", + "RDS" ] }, "CodeDeployApplication":{"type":"string"}, @@ -519,9 +542,15 @@ "ComponentConfiguration":{ "type":"string", "max":10000, - "min":1 + "min":1, + "pattern":"[\\S\\s]+" + }, + "ComponentName":{ + "type":"string", + "max":1011, + "min":1, + "pattern":"(?:^[\\d\\w\\-_\\.+]*$)|(?:^arn:aws(-\\w+)*:[\\w\\d-]+:([\\w\\d-]*)?:[\\w\\d_-]*([:/].+)*$)" }, - "ComponentName":{"type":"string"}, "ConfigurationEvent":{ "type":"structure", "members":{ @@ -563,6 +592,7 @@ "type":"string", "enum":[ "CLOUDWATCH_ALARM", + "CLOUDWATCH_LOG", "CLOUDFORMATION", "SSM_ASSOCIATION" ] @@ -624,7 +654,7 @@ "documentation":"

The name of the resource group.

" }, "ComponentName":{ - "shape":"ComponentName", + "shape":"CustomComponentName", "documentation":"

The name of the component.

" }, "ResourceList":{ @@ -662,11 +692,11 @@ }, "Pattern":{ "shape":"LogPatternRegex", - "documentation":"

The log pattern.

" + "documentation":"

The log pattern. The pattern must be DFA compatible. Patterns that utilize forward lookahead or backreference constructions are not supported.

" }, "Rank":{ "shape":"LogPatternRank", - "documentation":"

Rank of the log pattern.

" + "documentation":"

Rank of the log pattern. Must be a value between 1 and 1,000,000. The patterns are sorted by rank, so we recommend that you set your highest priority patterns with the lowest rank. A pattern of rank 1 will be the first to get matched to a log line. A pattern of rank 1,000,000 will be last to get matched. When you configure custom log patterns from the console, a Low severity pattern translates to a 750,000 rank. A Medium severity pattern translates to a 500,000 rank. And a High severity pattern translates to a 250,000 rank. Rank values less than 1 or greater than 1,000,000 are reserved for AWS-provided patterns.

" } } }, @@ -683,6 +713,12 @@ } } }, + "CustomComponentName":{ + "type":"string", + "max":128, + "min":1, + "pattern":"^[\\d\\w\\-_\\.+]*$" + }, "DeleteApplicationRequest":{ "type":"structure", "required":["ResourceGroupName"], @@ -710,7 +746,7 @@ "documentation":"

The name of the resource group.

" }, "ComponentName":{ - "shape":"ComponentName", + "shape":"CustomComponentName", "documentation":"

The name of the component.

" } } @@ -950,6 +986,15 @@ } } }, + "DetectedWorkload":{ + "type":"map", + "key":{"shape":"Tier"}, + "value":{"shape":"WorkloadMetaData"} + }, + "EbsCause":{"type":"string"}, + "EbsEvent":{"type":"string"}, + "EbsRequestId":{"type":"string"}, + "EbsResult":{"type":"string"}, "Ec2State":{"type":"string"}, "EndTime":{"type":"timestamp"}, "ErrorMsg":{"type":"string"}, @@ -1232,19 +1277,19 @@ "members":{ "PatternSetName":{ "shape":"LogPatternSetName", - "documentation":"

The name of the log pattern. A log pattern name can contains at many as 30 characters, and it cannot be empty. The characters can be Unicode letters, digits or one of the following symbols: period, dash, underscore.

" + "documentation":"

The name of the log pattern. A log pattern name can contain as many as 30 characters, and it cannot be empty. The characters can be Unicode letters, digits, or one of the following symbols: period, dash, underscore.

" }, "PatternName":{ "shape":"LogPatternName", - "documentation":"

The name of the log pattern. A log pattern name can contains at many as 50 characters, and it cannot be empty. The characters can be Unicode letters, digits or one of the following symbols: period, dash, underscore.

" + "documentation":"

The name of the log pattern. A log pattern name can contain as many as 50 characters, and it cannot be empty. The characters can be Unicode letters, digits, or one of the following symbols: period, dash, underscore.

" }, "Pattern":{ "shape":"LogPatternRegex", - "documentation":"

A regular expression that defines the log pattern. A log pattern can contains at many as 50 characters, and it cannot be empty.

" + "documentation":"

A regular expression that defines the log pattern. A log pattern can contain as many as 50 characters, and it cannot be empty. The pattern must be DFA compatible. Patterns that utilize forward lookahead or backreference constructions are not supported.

" }, "Rank":{ "shape":"LogPatternRank", - "documentation":"

Rank of the log pattern.

" + "documentation":"

Rank of the log pattern. Must be a value between 1 and 1,000,000. The patterns are sorted by rank, so we recommend that you set your highest priority patterns with the lowest rank. A pattern of rank 1 will be the first to get matched to a log line. A pattern of rank 1,000,000 will be last to get matched. When you configure custom log patterns from the console, a Low severity pattern translates to a 750,000 rank. A Medium severity pattern translates to a 500,000 rank. And a High severity pattern translates to a 250,000 rank. Rank values less than 1 or greater than 1,000,000 are reserved for AWS-provided patterns.

" } }, "documentation":"

An object that defines the log patterns that belongs to a LogPatternSet.

" @@ -1263,7 +1308,8 @@ "LogPatternRegex":{ "type":"string", "max":50, - "min":1 + "min":1, + "pattern":"[\\S\\s]+" }, "LogPatternSetList":{ "type":"list", @@ -1281,10 +1327,11 @@ "max":40, "min":1 }, + "MetaDataKey":{"type":"string"}, + "MetaDataValue":{"type":"string"}, "MetricName":{"type":"string"}, "MetricNamespace":{"type":"string"}, "Monitor":{"type":"boolean"}, - "NewComponentName":{"type":"string"}, "Observation":{ "type":"structure", "members":{ @@ -1396,6 +1443,50 @@ "shape":"Ec2State", "documentation":"

The state of the instance, such as STOPPING or TERMINATING.

" }, + "RdsEventCategories":{ + "shape":"RdsEventCategories", + "documentation":"

The category of an RDS event.

" + }, + "RdsEventMessage":{ + "shape":"RdsEventMessage", + "documentation":"

The message of an RDS event.

" + }, + "S3EventName":{ + "shape":"S3EventName", + "documentation":"

The name of the S3 CloudWatch Event-based observation.

" + }, + "StatesExecutionArn":{ + "shape":"StatesExecutionArn", + "documentation":"

The Amazon Resource Name (ARN) of the step function execution-based observation.

" + }, + "StatesArn":{ + "shape":"StatesArn", + "documentation":"

The Amazon Resource Name (ARN) of the step function-based observation.

" + }, + "StatesStatus":{ + "shape":"StatesStatus", + "documentation":"

The status of the step function-related observation.

" + }, + "StatesInput":{ + "shape":"StatesInput", + "documentation":"

The input to the step function-based observation.

" + }, + "EbsEvent":{ + "shape":"EbsEvent", + "documentation":"

The type of EBS CloudWatch event, such as createVolume, deleteVolume or attachVolume.

" + }, + "EbsResult":{ + "shape":"EbsResult", + "documentation":"

The result of an EBS CloudWatch event, such as failed or succeeded.

" + }, + "EbsCause":{ + "shape":"EbsCause", + "documentation":"

The cause of an EBS CloudWatch event.

" + }, + "EbsRequestId":{ + "shape":"EbsRequestId", + "documentation":"

The request ID of an EBS CloudWatch event.

" + }, "XRayFaultPercent":{ "shape":"XRayFaultPercent", "documentation":"

The X-Ray request fault percentage for this node.

" @@ -1441,9 +1532,22 @@ "OpsItemSNSTopicArn":{ "type":"string", "max":300, - "min":20 + "min":20, + "pattern":"^arn:aws(-\\w+)*:[\\w\\d-]+:([\\w\\d-]*)?:[\\w\\d_-]*([:/].+)*$" + }, + "OsType":{ + "type":"string", + "enum":[ + "WINDOWS", + "LINUX" + ] + }, + "PaginationToken":{ + "type":"string", + "max":1024, + "min":1, + "pattern":".+" }, - "PaginationToken":{"type":"string"}, "Problem":{ "type":"structure", "members":{ @@ -1500,6 +1604,8 @@ "type":"list", "member":{"shape":"Problem"} }, + "RdsEventCategories":{"type":"string"}, + "RdsEventMessage":{"type":"string"}, "RelatedObservations":{ "type":"structure", "members":{ @@ -1515,7 +1621,8 @@ "ResourceARN":{ "type":"string", "max":1011, - "min":1 + "min":1, + "pattern":"^arn:aws(-\\w+)*:[\\w\\d-]+:([\\w\\d-]*)?:[\\w\\d_-]*([:/].+)*$" }, "ResourceGroupName":{ "type":"string", @@ -1543,7 +1650,13 @@ "documentation":"

The resource does not exist in the customer account.

", "exception":true }, - "ResourceType":{"type":"string"}, + "ResourceType":{ + "type":"string", + "max":50, + "min":1, + "pattern":"[0-9a-zA-Z:_]*" + }, + "S3EventName":{"type":"string"}, "SeverityLevel":{ "type":"string", "enum":[ @@ -1555,6 +1668,10 @@ "SourceARN":{"type":"string"}, "SourceType":{"type":"string"}, "StartTime":{"type":"timestamp"}, + "StatesArn":{"type":"string"}, + "StatesExecutionArn":{"type":"string"}, + "StatesInput":{"type":"string"}, + "StatesStatus":{"type":"string"}, "Status":{ "type":"string", "enum":[ @@ -1584,7 +1701,8 @@ "TagKey":{ "type":"string", "max":128, - "min":1 + "min":1, + "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$" }, "TagKeyList":{ "type":"list", @@ -1623,7 +1741,8 @@ "TagValue":{ "type":"string", "max":256, - "min":0 + "min":0, + "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$" }, "TagsAlreadyExistException":{ "type":"structure", @@ -1636,11 +1755,18 @@ "Tier":{ "type":"string", "enum":[ + "CUSTOM", "DEFAULT", "DOT_NET_CORE", "DOT_NET_WORKER", + "DOT_NET_WEB_TIER", "DOT_NET_WEB", - "SQL_SERVER" + "SQL_SERVER", + "SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP", + "MYSQL", + "POSTGRESQL", + "JAVA_JMX", + "ORACLE" ], "max":50, "min":1 @@ -1762,11 +1888,11 @@ "documentation":"

The name of the resource group.

" }, "ComponentName":{ - "shape":"ComponentName", + "shape":"CustomComponentName", "documentation":"

The name of the component.

" }, "NewComponentName":{ - "shape":"NewComponentName", + "shape":"CustomComponentName", "documentation":"

The new name of the component.

" }, "ResourceList":{ @@ -1802,11 +1928,11 @@ }, "Pattern":{ "shape":"LogPatternRegex", - "documentation":"

The log pattern.

" + "documentation":"

The log pattern. The pattern must be DFA compatible. Patterns that utilize forward lookahead or backreference constructions are not supported.

" }, "Rank":{ "shape":"LogPatternRank", - "documentation":"

Rank of the log pattern.

" + "documentation":"

Rank of the log pattern. Must be a value between 1 and 1,000,000. The patterns are sorted by rank, so we recommend that you set your highest priority patterns with the lowest rank. A pattern of rank 1 will be the first to get matched to a log line. A pattern of rank 1,000,000 will be last to get matched. When you configure custom log patterns from the console, a Low severity pattern translates to a 750,000 rank. A Medium severity pattern translates to a 500,000 rank. And a High severity pattern translates to a 250,000 rank. Rank values less than 1 or greater than 1,000,000 are reserved for AWS-provided patterns.

" } } }, @@ -1832,6 +1958,11 @@ "exception":true }, "Value":{"type":"double"}, + "WorkloadMetaData":{ + "type":"map", + "key":{"shape":"MetaDataKey"}, + "value":{"shape":"MetaDataValue"} + }, "XRayErrorPercent":{"type":"integer"}, "XRayFaultPercent":{"type":"integer"}, "XRayNodeName":{"type":"string"}, @@ -1840,5 +1971,5 @@ "XRayRequestCount":{"type":"integer"}, "XRayThrottlePercent":{"type":"integer"} }, - "documentation":"Amazon CloudWatch Application Insights for .NET and SQL Server

Amazon CloudWatch Application Insights for .NET and SQL Server is a service that helps you detect common problems with your .NET and SQL Server-based applications. It enables you to pinpoint the source of issues in your applications (built with technologies such as Microsoft IIS, .NET, and Microsoft SQL Server), by providing key insights into detected problems.

After you onboard your application, CloudWatch Application Insights for .NET and SQL Server identifies, recommends, and sets up metrics and logs. It continuously analyzes and correlates your metrics and logs for unusual behavior to surface actionable problems with your application. For example, if your application is slow and unresponsive and leading to HTTP 500 errors in your Application Load Balancer (ALB), Application Insights informs you that a memory pressure problem with your SQL Server database is occurring. It bases this analysis on impactful metrics and log errors.

" + "documentation":"Amazon CloudWatch Application Insights

Amazon CloudWatch Application Insights is a service that helps you detect common problems with your applications. It enables you to pinpoint the source of issues in your applications (built with technologies such as Microsoft IIS, .NET, and Microsoft SQL Server), by providing key insights into detected problems.

After you onboard your application, CloudWatch Application Insights identifies, recommends, and sets up metrics and logs. It continuously analyzes and correlates your metrics and logs for unusual behavior to surface actionable problems with your application. For example, if your application is slow and unresponsive and leading to HTTP 500 errors in your Application Load Balancer (ALB), Application Insights informs you that a memory pressure problem with your SQL Server database is occurring. It bases this analysis on impactful metrics and log errors.

" } From 7acd70ff9f3bfb068b4e11b710c10913e2ae41ae Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:05:10 +0000 Subject: [PATCH 257/339] Amazon DynamoDB Update: With this release, you can capture data changes in any Amazon DynamoDB table as an Amazon Kinesis data stream. You also can use PartiQL (SQL-compatible language) to manipulate data in DynamoDB tables. --- .../feature-AmazonDynamoDB-413a11c.json | 6 + .../codegen-resources/dynamodb/service-2.json | 393 ++++++++++++++++++ 2 files changed, 399 insertions(+) create mode 100644 .changes/next-release/feature-AmazonDynamoDB-413a11c.json diff --git a/.changes/next-release/feature-AmazonDynamoDB-413a11c.json b/.changes/next-release/feature-AmazonDynamoDB-413a11c.json new file mode 100644 index 000000000000..6114ab600083 --- /dev/null +++ b/.changes/next-release/feature-AmazonDynamoDB-413a11c.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon DynamoDB", + "contributor": "", + "description": "With this release, you can capture data changes in any Amazon DynamoDB table as an Amazon Kinesis data stream. You also can use PartiQL (SQL-compatible language) to manipulate data in DynamoDB tables." +} diff --git a/services/dynamodb/src/main/resources/codegen-resources/dynamodb/service-2.json b/services/dynamodb/src/main/resources/codegen-resources/dynamodb/service-2.json index 9b4eeec1326b..4fcc27691301 100755 --- a/services/dynamodb/src/main/resources/codegen-resources/dynamodb/service-2.json +++ b/services/dynamodb/src/main/resources/codegen-resources/dynamodb/service-2.json @@ -13,6 +13,20 @@ "uid":"dynamodb-2012-08-10" }, "operations":{ + "BatchExecuteStatement":{ + "name":"BatchExecuteStatement", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"BatchExecuteStatementInput"}, + "output":{"shape":"BatchExecuteStatementOutput"}, + "errors":[ + {"shape":"RequestLimitExceeded"}, + {"shape":"InternalServerError"} + ], + "documentation":"

This operation allows you to perform batch reads and writes on data stored in DynamoDB, using PartiQL.

" + }, "BatchGetItem":{ "name":"BatchGetItem", "http":{ @@ -266,6 +280,22 @@ "endpointdiscovery":{ } }, + "DescribeKinesisStreamingDestination":{ + "name":"DescribeKinesisStreamingDestination", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeKinesisStreamingDestinationInput"}, + "output":{"shape":"DescribeKinesisStreamingDestinationOutput"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServerError"} + ], + "documentation":"

Returns information about the status of Kinesis streaming.

", + "endpointdiscovery":{ + } + }, "DescribeLimits":{ "name":"DescribeLimits", "http":{ @@ -327,6 +357,81 @@ "endpointdiscovery":{ } }, + "DisableKinesisStreamingDestination":{ + "name":"DisableKinesisStreamingDestination", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"KinesisStreamingDestinationInput"}, + "output":{"shape":"KinesisStreamingDestinationOutput"}, + "errors":[ + {"shape":"InternalServerError"}, + {"shape":"LimitExceededException"}, + {"shape":"ResourceInUseException"}, + {"shape":"ResourceNotFoundException"} + ], + "documentation":"

Stops replication from the DynamoDB table to the Kinesis data stream. This is done without deleting either of the resources.

", + "endpointdiscovery":{ + } + }, + "EnableKinesisStreamingDestination":{ + "name":"EnableKinesisStreamingDestination", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"KinesisStreamingDestinationInput"}, + "output":{"shape":"KinesisStreamingDestinationOutput"}, + "errors":[ + {"shape":"InternalServerError"}, + {"shape":"LimitExceededException"}, + {"shape":"ResourceInUseException"}, + {"shape":"ResourceNotFoundException"} + ], + "documentation":"

Starts table data replication to the specified Kinesis data stream at a timestamp chosen during the enable workflow. If this operation doesn't return results immediately, use DescribeKinesisStreamingDestination to check if streaming to the Kinesis data stream is ACTIVE.

", + "endpointdiscovery":{ + } + }, + "ExecuteStatement":{ + "name":"ExecuteStatement", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ExecuteStatementInput"}, + "output":{"shape":"ExecuteStatementOutput"}, + "errors":[ + {"shape":"ConditionalCheckFailedException"}, + {"shape":"ProvisionedThroughputExceededException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ItemCollectionSizeLimitExceededException"}, + {"shape":"TransactionConflictException"}, + {"shape":"RequestLimitExceeded"}, + {"shape":"InternalServerError"}, + {"shape":"DuplicateItemException"} + ], + "documentation":"

This operation allows you to perform reads and singleton writes on data stored in DynamoDB, using PartiQL.

" + }, + "ExecuteTransaction":{ + "name":"ExecuteTransaction", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ExecuteTransactionInput"}, + "output":{"shape":"ExecuteTransactionOutput"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"TransactionCanceledException"}, + {"shape":"TransactionInProgressException"}, + {"shape":"IdempotentParameterMismatchException"}, + {"shape":"ProvisionedThroughputExceededException"}, + {"shape":"RequestLimitExceeded"}, + {"shape":"InternalServerError"} + ], + "documentation":"

This operation allows you to perform transactional reads or writes on data stored in DynamoDB, using PartiQL.

" + }, "ExportTableToPointInTime":{ "name":"ExportTableToPointInTime", "http":{ @@ -1216,6 +1321,25 @@ "max":100, "min":1 }, + "BatchExecuteStatementInput":{ + "type":"structure", + "required":["Statements"], + "members":{ + "Statements":{ + "shape":"PartiQLBatchRequest", + "documentation":"

The list of PartiQL statements representing the batch to run.

" + } + } + }, + "BatchExecuteStatementOutput":{ + "type":"structure", + "members":{ + "Responses":{ + "shape":"PartiQLBatchResponse", + "documentation":"

The response to each PartiQL statement in the batch.

" + } + } + }, "BatchGetItemInput":{ "type":"structure", "required":["RequestItems"], @@ -1258,6 +1382,73 @@ "key":{"shape":"TableName"}, "value":{"shape":"ItemList"} }, + "BatchStatementError":{ + "type":"structure", + "members":{ + "Code":{ + "shape":"BatchStatementErrorCodeEnum", + "documentation":"

The error code associated with the failed PartiQL batch statement.

" + }, + "Message":{ + "shape":"String", + "documentation":"

The error message associated with the PartiQL batch resposne.

" + } + }, + "documentation":"

An error associated with a statement in a PartiQL batch that was run.

" + }, + "BatchStatementErrorCodeEnum":{ + "type":"string", + "enum":[ + "ConditionalCheckFailed", + "ItemCollectionSizeLimitExceeded", + "RequestLimitExceeded", + "ValidationError", + "ProvisionedThroughputExceeded", + "TransactionConflict", + "ThrottlingError", + "InternalServerError", + "ResourceNotFound", + "AccessDenied", + "DuplicateItem" + ] + }, + "BatchStatementRequest":{ + "type":"structure", + "required":["Statement"], + "members":{ + "Statement":{ + "shape":"PartiQLStatement", + "documentation":"

A valid PartiQL statement.

" + }, + "Parameters":{ + "shape":"PreparedStatementParameters", + "documentation":"

The parameters associated with a PartiQL statement in the batch request.

" + }, + "ConsistentRead":{ + "shape":"ConsistentRead", + "documentation":"

The read consistency of the PartiQL batch request.

" + } + }, + "documentation":"

A PartiQL batch statement request.

" + }, + "BatchStatementResponse":{ + "type":"structure", + "members":{ + "Error":{ + "shape":"BatchStatementError", + "documentation":"

The error associated with a failed PartiQL batch statement.

" + }, + "TableName":{ + "shape":"TableName", + "documentation":"

The table name associated with a failed PartiQL batch statement.

" + }, + "Item":{ + "shape":"AttributeMap", + "documentation":"

A DynamoDB item associated with a BatchStatementResponse

" + } + }, + "documentation":"

A PartiQL batch statement response..

" + }, "BatchWriteItemInput":{ "type":"structure", "required":["RequestItems"], @@ -2099,6 +2290,29 @@ } } }, + "DescribeKinesisStreamingDestinationInput":{ + "type":"structure", + "required":["TableName"], + "members":{ + "TableName":{ + "shape":"TableName", + "documentation":"

The name of the table being described.

" + } + } + }, + "DescribeKinesisStreamingDestinationOutput":{ + "type":"structure", + "members":{ + "TableName":{ + "shape":"TableName", + "documentation":"

The name of the table being described.

" + }, + "KinesisDataStreamDestinations":{ + "shape":"KinesisDataStreamDestinations", + "documentation":"

The list of replica structures for the table being described.

" + } + } + }, "DescribeLimitsInput":{ "type":"structure", "members":{ @@ -2186,7 +2400,25 @@ } } }, + "DestinationStatus":{ + "type":"string", + "enum":[ + "ENABLING", + "ACTIVE", + "DISABLING", + "DISABLED", + "ENABLE_FAILED" + ] + }, "Double":{"type":"double"}, + "DuplicateItemException":{ + "type":"structure", + "members":{ + "message":{"shape":"ErrorMessage"} + }, + "documentation":"

There was an attempt to insert an item with the same primary key as an item that already exists in the DynamoDB table.

", + "exception":true + }, "Endpoint":{ "type":"structure", "required":[ @@ -2212,6 +2444,65 @@ "ErrorMessage":{"type":"string"}, "ExceptionDescription":{"type":"string"}, "ExceptionName":{"type":"string"}, + "ExecuteStatementInput":{ + "type":"structure", + "required":["Statement"], + "members":{ + "Statement":{ + "shape":"PartiQLStatement", + "documentation":"

The PartiQL statement representing the operation to run.

" + }, + "Parameters":{ + "shape":"PreparedStatementParameters", + "documentation":"

The parameters for the PartiQL statement, if any.

" + }, + "ConsistentRead":{ + "shape":"ConsistentRead", + "documentation":"

The consistency of a read operation. If set to true, then a strongly consistent read is used; otherwise, an eventually consistent read is used.

" + }, + "NextToken":{ + "shape":"PartiQLNextToken", + "documentation":"

Set this value to get remaining results, if NextToken was returned in the statement response.

" + } + } + }, + "ExecuteStatementOutput":{ + "type":"structure", + "members":{ + "Items":{ + "shape":"ItemList", + "documentation":"

If a read operation was used, this property will contain the result of the reade operation; a map of attribute names and their values. For the write operations this value will be empty.

" + }, + "NextToken":{ + "shape":"PartiQLNextToken", + "documentation":"

If the response of a read request exceeds the response payload limit DynamoDB will set this value in the response. If set, you can use that this value in the subsequent request to get the remaining results.

" + } + } + }, + "ExecuteTransactionInput":{ + "type":"structure", + "required":["TransactStatements"], + "members":{ + "TransactStatements":{ + "shape":"ParameterizedStatements", + "documentation":"

The list of PartiQL statements representing the transaction to run.

" + }, + "ClientRequestToken":{ + "shape":"ClientRequestToken", + "documentation":"

Set this value to get remaining results, if NextToken was returned in the statement response.

", + "idempotencyToken":true + } + } + }, + "ExecuteTransactionOutput":{ + "type":"structure", + "members":{ + "Responses":{ + "shape":"ItemResponseList", + "documentation":"

The response to a PartiQL transaction.

" + } + } + }, "ExpectedAttributeMap":{ "type":"map", "key":{"shape":"AttributeName"}, @@ -2990,6 +3281,62 @@ }, "documentation":"

Represents a set of primary keys and, for each key, the attributes to retrieve from the table.

For each primary key, you must provide all of the key attributes. For example, with a simple primary key, you only need to provide the partition key. For a composite primary key, you must provide both the partition key and the sort key.

" }, + "KinesisDataStreamDestination":{ + "type":"structure", + "members":{ + "StreamArn":{ + "shape":"StreamArn", + "documentation":"

The ARN for a specific Kinesis data stream.

" + }, + "DestinationStatus":{ + "shape":"DestinationStatus", + "documentation":"

The current status of replication.

" + }, + "DestinationStatusDescription":{ + "shape":"String", + "documentation":"

The human-readable string that corresponds to the replica status.

" + } + }, + "documentation":"

Describes a Kinesis data stream destination.

" + }, + "KinesisDataStreamDestinations":{ + "type":"list", + "member":{"shape":"KinesisDataStreamDestination"} + }, + "KinesisStreamingDestinationInput":{ + "type":"structure", + "required":[ + "TableName", + "StreamArn" + ], + "members":{ + "TableName":{ + "shape":"TableName", + "documentation":"

The name of the DynamoDB table.

" + }, + "StreamArn":{ + "shape":"StreamArn", + "documentation":"

The ARN for a Kinesis data stream.

" + } + } + }, + "KinesisStreamingDestinationOutput":{ + "type":"structure", + "members":{ + "TableName":{ + "shape":"TableName", + "documentation":"

The name of the table being modified.

" + }, + "StreamArn":{ + "shape":"StreamArn", + "documentation":"

The ARN for the specific Kinesis data stream.

" + }, + "DestinationStatus":{ + "shape":"DestinationStatus", + "documentation":"

The current status of the replication.

" + } + } + }, "LastUpdateDateTime":{"type":"timestamp"}, "LimitExceededException":{ "type":"structure", @@ -3318,6 +3665,47 @@ "type":"list", "member":{"shape":"NumberAttributeValue"} }, + "ParameterizedStatement":{ + "type":"structure", + "required":["Statement"], + "members":{ + "Statement":{ + "shape":"PartiQLStatement", + "documentation":"

A PartiQL statment that uses parameters.

" + }, + "Parameters":{ + "shape":"PreparedStatementParameters", + "documentation":"

The parameter values.

" + } + }, + "documentation":"

Represents a PartiQL statment that uses parameters.

" + }, + "ParameterizedStatements":{ + "type":"list", + "member":{"shape":"ParameterizedStatement"}, + "max":25, + "min":1 + }, + "PartiQLBatchRequest":{ + "type":"list", + "member":{"shape":"BatchStatementRequest"}, + "max":25, + "min":1 + }, + "PartiQLBatchResponse":{ + "type":"list", + "member":{"shape":"BatchStatementResponse"} + }, + "PartiQLNextToken":{ + "type":"string", + "max":32768, + "min":1 + }, + "PartiQLStatement":{ + "type":"string", + "max":8192, + "min":1 + }, "PointInTimeRecoveryDescription":{ "type":"structure", "members":{ @@ -3370,6 +3758,11 @@ "type":"long", "min":1 }, + "PreparedStatementParameters":{ + "type":"list", + "member":{"shape":"AttributeValue"}, + "min":1 + }, "Projection":{ "type":"structure", "members":{ From 25647115b38af22670f2753e5fb6c0829ff2d95b Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:05:30 +0000 Subject: [PATCH 258/339] Auto Scaling Update: Documentation updates and corrections for Amazon EC2 Auto Scaling API Reference and SDKs. --- .../feature-AutoScaling-546c9db.json | 6 ++++ .../codegen-resources/service-2.json | 28 +++++++++---------- 2 files changed, 20 insertions(+), 14 deletions(-) create mode 100644 .changes/next-release/feature-AutoScaling-546c9db.json diff --git a/.changes/next-release/feature-AutoScaling-546c9db.json b/.changes/next-release/feature-AutoScaling-546c9db.json new file mode 100644 index 000000000000..64398ae537b5 --- /dev/null +++ b/.changes/next-release/feature-AutoScaling-546c9db.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Auto Scaling", + "contributor": "", + "description": "Documentation updates and corrections for Amazon EC2 Auto Scaling API Reference and SDKs." +} diff --git a/services/autoscaling/src/main/resources/codegen-resources/service-2.json b/services/autoscaling/src/main/resources/codegen-resources/service-2.json index 14a47c30469e..f75da0c12148 100644 --- a/services/autoscaling/src/main/resources/codegen-resources/service-2.json +++ b/services/autoscaling/src/main/resources/codegen-resources/service-2.json @@ -39,7 +39,7 @@ {"shape":"ResourceContentionFault"}, {"shape":"ServiceLinkedRoleFailure"} ], - "documentation":"

Attaches one or more target groups to the specified Auto Scaling group.

To describe the target groups for an Auto Scaling group, call the DescribeLoadBalancerTargetGroups API. To detach the target group from the Auto Scaling group, call the DetachLoadBalancerTargetGroups API.

With Application Load Balancers and Network Load Balancers, instances are registered as targets with a target group. With Classic Load Balancers, instances are registered with the load balancer. For more information, see Attaching a load balancer to your Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

Attaches one or more target groups to the specified Auto Scaling group.

This operation is used with the following load balancer types:

  • Application Load Balancer - Operates at the application layer (layer 7) and supports HTTP and HTTPS.

  • Network Load Balancer - Operates at the transport layer (layer 4) and supports TCP, TLS, and UDP.

  • Gateway Load Balancer - Operates at the network layer (layer 3).

To describe the target groups for an Auto Scaling group, call the DescribeLoadBalancerTargetGroups API. To detach the target group from the Auto Scaling group, call the DetachLoadBalancerTargetGroups API.

For more information, see Elastic Load Balancing and Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide.

" }, "AttachLoadBalancers":{ "name":"AttachLoadBalancers", @@ -56,7 +56,7 @@ {"shape":"ResourceContentionFault"}, {"shape":"ServiceLinkedRoleFailure"} ], - "documentation":"

To attach an Application Load Balancer or a Network Load Balancer, use the AttachLoadBalancerTargetGroups API operation instead.

Attaches one or more Classic Load Balancers to the specified Auto Scaling group. Amazon EC2 Auto Scaling registers the running instances with these Classic Load Balancers.

To describe the load balancers for an Auto Scaling group, call the DescribeLoadBalancers API. To detach the load balancer from the Auto Scaling group, call the DetachLoadBalancers API.

For more information, see Attaching a load balancer to your Auto Scaling group in the Amazon EC2 Auto Scaling User Guide.

" + "documentation":"

To attach an Application Load Balancer, Network Load Balancer, or Gateway Load Balancer, use the AttachLoadBalancerTargetGroups API operation instead.

Attaches one or more Classic Load Balancers to the specified Auto Scaling group. Amazon EC2 Auto Scaling registers the running instances with these Classic Load Balancers.

To describe the load balancers for an Auto Scaling group, call the DescribeLoadBalancers API. To detach the load balancer from the Auto Scaling group, call the DetachLoadBalancers API.

For more information, see Elastic Load Balancing and Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide.

" }, "BatchDeleteScheduledAction":{ "name":"BatchDeleteScheduledAction", @@ -437,7 +437,7 @@ "errors":[ {"shape":"ResourceContentionFault"} ], - "documentation":"

Describes the load balancers for the specified Auto Scaling group.

This operation describes only Classic Load Balancers. If you have Application Load Balancers or Network Load Balancers, use the DescribeLoadBalancerTargetGroups API instead.

" + "documentation":"

Describes the load balancers for the specified Auto Scaling group.

This operation describes only Classic Load Balancers. If you have Application Load Balancers, Network Load Balancers, or Gateway Load Balancers, use the DescribeLoadBalancerTargetGroups API instead.

" }, "DescribeMetricCollectionTypes":{ "name":"DescribeMetricCollectionTypes", @@ -616,7 +616,7 @@ "errors":[ {"shape":"ResourceContentionFault"} ], - "documentation":"

Detaches one or more Classic Load Balancers from the specified Auto Scaling group.

This operation detaches only Classic Load Balancers. If you have Application Load Balancers or Network Load Balancers, use the DetachLoadBalancerTargetGroups API instead.

When you detach a load balancer, it enters the Removing state while deregistering the instances in the group. When all instances are deregistered, then you can no longer describe the load balancer using the DescribeLoadBalancers API call. The instances remain running.

" + "documentation":"

Detaches one or more Classic Load Balancers from the specified Auto Scaling group.

This operation detaches only Classic Load Balancers. If you have Application Load Balancers, Network Load Balancers, or Gateway Load Balancers, use the DetachLoadBalancerTargetGroups API instead.

When you detach a load balancer, it enters the Removing state while deregistering the instances in the group. When all instances are deregistered, then you can no longer describe the load balancer using the DescribeLoadBalancers API call. The instances remain running.

" }, "DisableMetricsCollection":{ "name":"DisableMetricsCollection", @@ -1069,7 +1069,7 @@ }, "TargetGroupARNs":{ "shape":"TargetGroupARNs", - "documentation":"

The Amazon Resource Names (ARN) of the target groups. You can specify up to 10 target groups.

" + "documentation":"

The Amazon Resource Names (ARN) of the target groups. You can specify up to 10 target groups. To get the ARN of a target group, use the Elastic Load Balancing DescribeTargetGroups API operation.

" } } }, @@ -1519,7 +1519,7 @@ }, "MixedInstancesPolicy":{ "shape":"MixedInstancesPolicy", - "documentation":"

An embedded object that specifies a mixed instances policy. The required parameters must be specified. If optional parameters are unspecified, their default values are used.

The policy includes parameters that not only define the distribution of On-Demand Instances and Spot Instances, the maximum price to pay for Spot Instances, and how the Auto Scaling group allocates instance types to fulfill On-Demand and Spot capacities, but also the parameters that specify the instance configuration information—the launch template and instance types. The policy can also include a weight for each instance type and different launch templates for individual instance types. For more information, see Auto Scaling groups with multiple instance types and purchase options in the Amazon EC2 Auto Scaling User Guide.

Conditional: You must specify either a launch template (LaunchTemplate or MixedInstancesPolicy) or a launch configuration (LaunchConfigurationName or InstanceId).

" + "documentation":"

An embedded object that specifies a mixed instances policy. The required parameters must be specified. If optional parameters are unspecified, their default values are used.

The policy includes parameters that not only define the distribution of On-Demand Instances and Spot Instances, the maximum price to pay for Spot Instances, and how the Auto Scaling group allocates instance types to fulfill On-Demand and Spot capacities, but also the parameters that specify the instance configuration information—the launch template and instance types. The policy can also include a weight for each instance type and different launch templates for individual instance types. For more information, see Auto Scaling groups with multiple instance types and purchase options in the Amazon EC2 Auto Scaling User Guide.

" }, "InstanceId":{ "shape":"XmlStringMaxLen19", @@ -1547,7 +1547,7 @@ }, "LoadBalancerNames":{ "shape":"LoadBalancerNames", - "documentation":"

A list of Classic Load Balancers associated with this Auto Scaling group. For Application Load Balancers and Network Load Balancers, specify TargetGroupARNs instead.

" + "documentation":"

A list of Classic Load Balancers associated with this Auto Scaling group. For Application Load Balancers, Network Load Balancers, and Gateway Load Balancers, specify the TargetGroupARNs property instead.

" }, "TargetGroupARNs":{ "shape":"TargetGroupARNs", @@ -1673,7 +1673,7 @@ }, "PlacementTenancy":{ "shape":"XmlStringMaxLen64", - "documentation":"

The tenancy of the instance. An instance with dedicated tenancy runs on isolated, single-tenant hardware and can only be launched into a VPC.

To launch dedicated instances into a shared tenancy VPC (a VPC with the instance placement tenancy attribute set to default), you must set the value of this parameter to dedicated.

If you specify PlacementTenancy, you must specify at least one subnet for VPCZoneIdentifier when you create your group.

For more information, see Configuring instance tenancy with Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide.

Valid Values: default | dedicated

" + "documentation":"

The tenancy of the instance. An instance with dedicated tenancy runs on isolated, single-tenant hardware and can only be launched into a VPC.

To launch dedicated instances into a shared tenancy VPC (a VPC with the instance placement tenancy attribute set to default), you must set the value of this parameter to dedicated.

If you specify PlacementTenancy, you must specify at least one subnet for VPCZoneIdentifier when you create your group.

For more information, see Configuring instance tenancy with Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide.

Valid Values: default | dedicated

" }, "MetadataOptions":{ "shape":"InstanceMetadataOptions", @@ -2623,15 +2623,15 @@ }, "SpotAllocationStrategy":{ "shape":"XmlString", - "documentation":"

Indicates how to allocate instances across Spot Instance pools. If the allocation strategy is lowest-price, the Auto Scaling group launches instances using the Spot pools with the lowest price, and evenly allocates your instances across the number of Spot pools that you specify. If the allocation strategy is capacity-optimized, the Auto Scaling group launches instances using Spot pools that are optimally chosen based on the available Spot capacity. Defaults to lowest-price if not specified.

" + "documentation":"

Indicates how to allocate instances across Spot Instance pools. If the allocation strategy is capacity-optimized (recommended), the Auto Scaling group launches instances using Spot pools that are optimally chosen based on the available Spot capacity. If the allocation strategy is lowest-price, the Auto Scaling group launches instances using the Spot pools with the lowest price, and evenly allocates your instances across the number of Spot pools that you specify. Defaults to lowest-price if not specified.

" }, "SpotInstancePools":{ "shape":"SpotInstancePools", - "documentation":"

The number of Spot Instance pools across which to allocate your Spot Instances. The Spot pools are determined from the different instance types in the overrides. Defaults to 2 if not specified. Valid only when the Spot allocation strategy is lowest-price.

Valid Range: Minimum value of 1. Maximum value of 20.

" + "documentation":"

The number of Spot Instance pools across which to allocate your Spot Instances. The Spot pools are determined from the different instance types in the overrides. Valid only when the Spot allocation strategy is lowest-price. Value must be in the range of 1 to 20. Defaults to 2 if not specified.

" }, "SpotMaxPrice":{ "shape":"MixedInstanceSpotPrice", - "documentation":"

The maximum price per unit hour that you are willing to pay for a Spot Instance. If you leave the value of this parameter blank (which is the default), the maximum Spot price is set at the On-Demand price. To remove a value that you previously set, include the parameter but leave the value blank.

" + "documentation":"

The maximum price per unit hour that you are willing to pay for a Spot Instance. If you leave the value at its default (empty), Amazon EC2 Auto Scaling uses the On-Demand price as the maximum Spot price. To remove a value that you previously set, include the property but specify an empty string (\"\") for the value.

" } }, "documentation":"

Describes an instances distribution for an Auto Scaling group with a MixedInstancesPolicy.

The instances distribution specifies the distribution of On-Demand Instances and Spot Instances, the maximum price to pay for Spot Instances, and how the Auto Scaling group allocates instance types to fulfill On-Demand and Spot capacities.

When you update SpotAllocationStrategy, SpotInstancePools, or SpotMaxPrice, this update action does not deploy any changes across the running Amazon EC2 instances in the group. Your existing Spot Instances continue to run as long as the maximum price for those instances is higher than the current Spot price. When scale out occurs, Amazon EC2 Auto Scaling launches instances based on the new settings. When scale in occurs, Amazon EC2 Auto Scaling terminates instances according to the group's termination policies.

" @@ -2831,7 +2831,7 @@ }, "WeightedCapacity":{ "shape":"XmlStringMaxLen32", - "documentation":"

The number of capacity units provided by the specified instance type in terms of virtual CPUs, memory, storage, throughput, or other relative performance characteristic. When a Spot or On-Demand Instance is provisioned, the capacity units count toward the desired capacity. Amazon EC2 Auto Scaling provisions instances until the desired capacity is totally fulfilled, even if this results in an overage. For example, if there are 2 units remaining to fulfill capacity, and Amazon EC2 Auto Scaling can only provision an instance with a WeightedCapacity of 5 units, the instance is provisioned, and the desired capacity is exceeded by 3 units. For more information, see Instance weighting for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide.

Valid Range: Minimum value of 1. Maximum value of 999.

" + "documentation":"

The number of capacity units provided by the specified instance type in terms of virtual CPUs, memory, storage, throughput, or other relative performance characteristic. When a Spot or On-Demand Instance is provisioned, the capacity units count toward the desired capacity. Amazon EC2 Auto Scaling provisions instances until the desired capacity is totally fulfilled, even if this results in an overage. For example, if there are 2 units remaining to fulfill capacity, and Amazon EC2 Auto Scaling can only provision an instance with a WeightedCapacity of 5 units, the instance is provisioned, and the desired capacity is exceeded by 3 units. For more information, see Instance weighting for Amazon EC2 Auto Scaling in the Amazon EC2 Auto Scaling User Guide. Value must be in the range of 1 to 999.

" }, "LaunchTemplateSpecification":{ "shape":"LaunchTemplateSpecification", @@ -2845,11 +2845,11 @@ "members":{ "LaunchTemplateId":{ "shape":"XmlStringMaxLen255", - "documentation":"

The ID of the launch template. To get the template ID, use the Amazon EC2 DescribeLaunchTemplates API operation. New launch templates can be created using the Amazon EC2 CreateLaunchTemplate API. You must specify either a LaunchTemplateId or a LaunchTemplateName.

" + "documentation":"

The ID of the launch template. To get the template ID, use the Amazon EC2 DescribeLaunchTemplates API operation. New launch templates can be created using the Amazon EC2 CreateLaunchTemplate API.

Conditional: You must specify either a LaunchTemplateId or a LaunchTemplateName.

" }, "LaunchTemplateName":{ "shape":"LaunchTemplateName", - "documentation":"

The name of the launch template. To get the template name, use the Amazon EC2 DescribeLaunchTemplates API operation. New launch templates can be created using the Amazon EC2 CreateLaunchTemplate API. You must specify either a LaunchTemplateId or a LaunchTemplateName.

" + "documentation":"

The name of the launch template. To get the template name, use the Amazon EC2 DescribeLaunchTemplates API operation. New launch templates can be created using the Amazon EC2 CreateLaunchTemplate API.

Conditional: You must specify either a LaunchTemplateId or a LaunchTemplateName.

" }, "Version":{ "shape":"XmlStringMaxLen255", From 98e41e6bda249223d5fd69b384cf03915318a747 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:05:14 +0000 Subject: [PATCH 259/339] AWS Signer Update: AWS Signer is launching code-signing for AWS Lambda. Now customers can cryptographically sign Lambda code to ensure trust, integrity, and functionality. --- .../feature-AWSSigner-2da8a84.json | 6 + .../codegen-resources/service-2.json | 631 +++++++++++++++++- 2 files changed, 610 insertions(+), 27 deletions(-) create mode 100644 .changes/next-release/feature-AWSSigner-2da8a84.json diff --git a/.changes/next-release/feature-AWSSigner-2da8a84.json b/.changes/next-release/feature-AWSSigner-2da8a84.json new file mode 100644 index 000000000000..0d20cd9736fd --- /dev/null +++ b/.changes/next-release/feature-AWSSigner-2da8a84.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Signer", + "contributor": "", + "description": "AWS Signer is launching code-signing for AWS Lambda. Now customers can cryptographically sign Lambda code to ensure trust, integrity, and functionality." +} diff --git a/services/signer/src/main/resources/codegen-resources/service-2.json b/services/signer/src/main/resources/codegen-resources/service-2.json index c72da71cf41a..4902d01f6af4 100644 --- a/services/signer/src/main/resources/codegen-resources/service-2.json +++ b/services/signer/src/main/resources/codegen-resources/service-2.json @@ -13,6 +13,25 @@ "uid":"signer-2017-08-25" }, "operations":{ + "AddProfilePermission":{ + "name":"AddProfilePermission", + "http":{ + "method":"POST", + "requestUri":"/signing-profiles/{profileName}/permissions" + }, + "input":{"shape":"AddProfilePermissionRequest"}, + "output":{"shape":"AddProfilePermissionResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ServiceLimitExceededException"}, + {"shape":"ConflictException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"InternalServiceErrorException"} + ], + "documentation":"

Adds cross-account permissions to a signing profile.

" + }, "CancelSigningProfile":{ "name":"CancelSigningProfile", "http":{ @@ -23,7 +42,7 @@ "errors":[ {"shape":"ResourceNotFoundException"}, {"shape":"AccessDeniedException"}, - {"shape":"ThrottlingException"}, + {"shape":"TooManyRequestsException"}, {"shape":"InternalServiceErrorException"} ], "documentation":"

Changes the state of an ACTIVE signing profile to CANCELED. A canceled profile is still viewable with the ListSigningProfiles operation, but it cannot perform new signing jobs, and is deleted two years after cancelation.

" @@ -39,6 +58,7 @@ "errors":[ {"shape":"ResourceNotFoundException"}, {"shape":"AccessDeniedException"}, + {"shape":"TooManyRequestsException"}, {"shape":"InternalServiceErrorException"} ], "documentation":"

Returns information about a specific code signing job. You specify the job by using the jobId value that is returned by the StartSigningJob operation.

" @@ -54,6 +74,7 @@ "errors":[ {"shape":"ResourceNotFoundException"}, {"shape":"AccessDeniedException"}, + {"shape":"TooManyRequestsException"}, {"shape":"InternalServiceErrorException"} ], "documentation":"

Returns information on a specific signing platform.

" @@ -69,11 +90,28 @@ "errors":[ {"shape":"ResourceNotFoundException"}, {"shape":"AccessDeniedException"}, - {"shape":"ThrottlingException"}, + {"shape":"TooManyRequestsException"}, {"shape":"InternalServiceErrorException"} ], "documentation":"

Returns information on a specific signing profile.

" }, + "ListProfilePermissions":{ + "name":"ListProfilePermissions", + "http":{ + "method":"GET", + "requestUri":"/signing-profiles/{profileName}/permissions" + }, + "input":{"shape":"ListProfilePermissionsRequest"}, + "output":{"shape":"ListProfilePermissionsResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"InternalServiceErrorException"} + ], + "documentation":"

Lists the cross-account permissions associated with a signing profile.

" + }, "ListSigningJobs":{ "name":"ListSigningJobs", "http":{ @@ -85,7 +123,7 @@ "errors":[ {"shape":"ValidationException"}, {"shape":"AccessDeniedException"}, - {"shape":"ThrottlingException"}, + {"shape":"TooManyRequestsException"}, {"shape":"InternalServiceErrorException"} ], "documentation":"

Lists all your signing jobs. You can use the maxResults parameter to limit the number of signing jobs that are returned in the response. If additional jobs remain to be listed, code signing returns a nextToken value. Use this value in subsequent calls to ListSigningJobs to fetch the remaining values. You can continue calling ListSigningJobs with your maxResults parameter and with new values that code signing returns in the nextToken parameter until all of your signing jobs have been returned.

" @@ -101,7 +139,7 @@ "errors":[ {"shape":"ValidationException"}, {"shape":"AccessDeniedException"}, - {"shape":"ThrottlingException"}, + {"shape":"TooManyRequestsException"}, {"shape":"InternalServiceErrorException"} ], "documentation":"

Lists all signing platforms available in code signing that match the request parameters. If additional jobs remain to be listed, code signing returns a nextToken value. Use this value in subsequent calls to ListSigningJobs to fetch the remaining values. You can continue calling ListSigningJobs with your maxResults parameter and with new values that code signing returns in the nextToken parameter until all of your signing jobs have been returned.

" @@ -116,7 +154,7 @@ "output":{"shape":"ListSigningProfilesResponse"}, "errors":[ {"shape":"AccessDeniedException"}, - {"shape":"ThrottlingException"}, + {"shape":"TooManyRequestsException"}, {"shape":"InternalServiceErrorException"} ], "documentation":"

Lists all available signing profiles in your AWS account. Returns only profiles with an ACTIVE status unless the includeCanceled request field is set to true. If additional jobs remain to be listed, code signing returns a nextToken value. Use this value in subsequent calls to ListSigningJobs to fetch the remaining values. You can continue calling ListSigningJobs with your maxResults parameter and with new values that code signing returns in the nextToken parameter until all of your signing jobs have been returned.

" @@ -132,7 +170,8 @@ "errors":[ {"shape":"InternalServiceErrorException"}, {"shape":"BadRequestException"}, - {"shape":"NotFoundException"} + {"shape":"NotFoundException"}, + {"shape":"TooManyRequestsException"} ], "documentation":"

Returns a list of the tags associated with a signing profile resource.

" }, @@ -148,11 +187,61 @@ {"shape":"ResourceNotFoundException"}, {"shape":"AccessDeniedException"}, {"shape":"ValidationException"}, - {"shape":"ThrottlingException"}, + {"shape":"TooManyRequestsException"}, {"shape":"InternalServiceErrorException"} ], "documentation":"

Creates a signing profile. A signing profile is a code signing template that can be used to carry out a pre-defined signing job. For more information, see http://docs.aws.amazon.com/signer/latest/developerguide/gs-profile.html

" }, + "RemoveProfilePermission":{ + "name":"RemoveProfilePermission", + "http":{ + "method":"DELETE", + "requestUri":"/signing-profiles/{profileName}/permissions/{statementId}" + }, + "input":{"shape":"RemoveProfilePermissionRequest"}, + "output":{"shape":"RemoveProfilePermissionResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ConflictException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"InternalServiceErrorException"} + ], + "documentation":"

Removes cross-account permissions from a signing profile.

" + }, + "RevokeSignature":{ + "name":"RevokeSignature", + "http":{ + "method":"PUT", + "requestUri":"/signing-jobs/{jobId}/revoke" + }, + "input":{"shape":"RevokeSignatureRequest"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"InternalServiceErrorException"} + ], + "documentation":"

Changes the state of a signing job to REVOKED. This indicates that the signature is no longer valid.

" + }, + "RevokeSigningProfile":{ + "name":"RevokeSigningProfile", + "http":{ + "method":"PUT", + "requestUri":"/signing-profiles/{profileName}/revoke" + }, + "input":{"shape":"RevokeSigningProfileRequest"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"InternalServiceErrorException"} + ], + "documentation":"

Changes the state of a signing profile to REVOKED. This indicates that signatures generated using the signing profile after an effective start date are no longer valid.

" + }, "StartSigningJob":{ "name":"StartSigningJob", "http":{ @@ -166,6 +255,7 @@ {"shape":"ResourceNotFoundException"}, {"shape":"AccessDeniedException"}, {"shape":"ThrottlingException"}, + {"shape":"TooManyRequestsException"}, {"shape":"InternalServiceErrorException"} ], "documentation":"

Initiates a signing job to be performed on the code provided. Signing jobs are viewable by the ListSigningJobs operation for two years after they are performed. Note the following requirements:

  • You must create an Amazon S3 source bucket. For more information, see Create a Bucket in the Amazon S3 Getting Started Guide.

  • Your S3 source bucket must be version enabled.

  • You must create an S3 destination bucket. Code signing uses your S3 destination bucket to write your signed code.

  • You specify the name of the source and destination buckets when calling the StartSigningJob operation.

  • You must also specify a request token that identifies your request to code signing.

You can call the DescribeSigningJob and the ListSigningJobs actions after you call StartSigningJob.

For a Java example that shows how to use this action, see http://docs.aws.amazon.com/acm/latest/userguide/

" @@ -181,7 +271,8 @@ "errors":[ {"shape":"InternalServiceErrorException"}, {"shape":"BadRequestException"}, - {"shape":"NotFoundException"} + {"shape":"NotFoundException"}, + {"shape":"TooManyRequestsException"} ], "documentation":"

Adds one or more tags to a signing profile. Tags are labels that you can use to identify and organize your AWS resources. Each tag consists of a key and an optional value. To specify the signing profile, use its Amazon Resource Name (ARN). To specify the tag, use a key-value pair.

" }, @@ -196,26 +287,85 @@ "errors":[ {"shape":"InternalServiceErrorException"}, {"shape":"BadRequestException"}, - {"shape":"NotFoundException"} + {"shape":"NotFoundException"}, + {"shape":"TooManyRequestsException"} ], "documentation":"

Removes one or more tags from a signing profile. To remove the tags, specify a list of tag keys.

" } }, "shapes":{ - "key":{"type":"string"}, "AccessDeniedException":{ "type":"structure", "members":{ - "message":{"shape":"ErrorMessage"} + "message":{"shape":"ErrorMessage"}, + "code":{"shape":"ErrorCode"} }, "documentation":"

You do not have sufficient access to perform this action.

", "error":{"httpStatusCode":403}, "exception":true }, + "AccountId":{ + "type":"string", + "max":12, + "min":12, + "pattern":"^[0-9]{12}$" + }, + "AddProfilePermissionRequest":{ + "type":"structure", + "required":[ + "action", + "principal", + "statementId", + "profileName" + ], + "members":{ + "profileName":{ + "shape":"ProfileName", + "documentation":"

The human-readable name of the signing profile.

", + "location":"uri", + "locationName":"profileName" + }, + "profileVersion":{ + "shape":"ProfileVersion", + "documentation":"

The version of the signing profile.

" + }, + "action":{ + "shape":"String", + "documentation":"

The AWS Signer action permitted as part of cross-account permissions.

" + }, + "principal":{ + "shape":"String", + "documentation":"

The AWS principal receiving cross-account permissions. This may be an IAM role or another AWS account ID.

" + }, + "revisionId":{ + "shape":"String", + "documentation":"

A unique identifier for the current profile revision.

" + }, + "statementId":{ + "shape":"String", + "documentation":"

A unique identifier for the cross-account permission statement.

" + } + } + }, + "AddProfilePermissionResponse":{ + "type":"structure", + "members":{ + "revisionId":{ + "shape":"String", + "documentation":"

A unique identifier for the current profile revision.

" + } + } + }, + "Arn":{ + "type":"string", + "max":2048, + "min":20 + }, "BadRequestException":{ "type":"structure", "members":{ - "message":{"shape":"ErrorMessage"} + "message":{"shape":"ErrorMessage"}, + "code":{"shape":"ErrorCode"} }, "documentation":"

The request contains invalid parameters for the ARN or tags. This exception also occurs when you call a tagging API on a cancelled signing profile.

", "error":{"httpStatusCode":400}, @@ -240,8 +390,16 @@ }, "CertificateArn":{"type":"string"}, "ClientRequestToken":{"type":"string"}, - "CompletedAt":{"type":"timestamp"}, - "CreatedAt":{"type":"timestamp"}, + "ConflictException":{ + "type":"structure", + "members":{ + "message":{"shape":"ErrorMessage"}, + "code":{"shape":"ErrorCode"} + }, + "documentation":"

The resource encountered a conflicting state.

", + "error":{"httpStatusCode":409}, + "exception":true + }, "DescribeSigningJobRequest":{ "type":"structure", "required":["jobId"], @@ -273,10 +431,18 @@ "shape":"PlatformId", "documentation":"

The microcontroller platform to which your signed code image will be distributed.

" }, + "platformDisplayName":{ + "shape":"DisplayName", + "documentation":"

A human-readable name for the signing platform associated with the signing job.

" + }, "profileName":{ "shape":"ProfileName", "documentation":"

The name of the profile that initiated the signing operation.

" }, + "profileVersion":{ + "shape":"ProfileVersion", + "documentation":"

The version of the signing profile used to initiate the signing job.

" + }, "overrides":{ "shape":"SigningPlatformOverrides", "documentation":"

A list of any overrides that were applied to the signing operation.

" @@ -286,13 +452,17 @@ "documentation":"

Map of user-assigned key-value pairs used during signing. These values contain any information that you specified for use in your signing job.

" }, "createdAt":{ - "shape":"CreatedAt", + "shape":"Timestamp", "documentation":"

Date and time that the signing job was created.

" }, "completedAt":{ - "shape":"CompletedAt", + "shape":"Timestamp", "documentation":"

Date and time that the signing job was completed.

" }, + "signatureExpiresAt":{ + "shape":"Timestamp", + "documentation":"

Thr expiration timestamp for the signature generated by the signing job.

" + }, "requestedBy":{ "shape":"RequestedBy", "documentation":"

The IAM principal that requested the signing job.

" @@ -305,9 +475,21 @@ "shape":"StatusReason", "documentation":"

String value that contains the status reason.

" }, + "revocationRecord":{ + "shape":"SigningJobRevocationRecord", + "documentation":"

A revocation record if the signature generated by the signing job has been revoked. Contains a timestamp and the ID of the IAM entity that revoked the signature.

" + }, "signedObject":{ "shape":"SignedObject", "documentation":"

Name of the S3 bucket where the signed code image is saved by code signing.

" + }, + "jobOwner":{ + "shape":"AccountId", + "documentation":"

The AWS account ID of the job owner.

" + }, + "jobInvoker":{ + "shape":"AccountId", + "documentation":"

The IAM entity that initiated the signing job.

" } } }, @@ -351,6 +533,7 @@ "type":"list", "member":{"shape":"EncryptionAlgorithm"} }, + "ErrorCode":{"type":"string"}, "ErrorMessage":{"type":"string"}, "GetSigningPlatformRequest":{ "type":"structure", @@ -398,6 +581,10 @@ "maxSizeInMB":{ "shape":"MaxSizeInMB", "documentation":"

The maximum size (in MB) of the payload that can be signed by the target platform.

" + }, + "revocationSupported":{ + "shape":"bool", + "documentation":"

A flag indicating whether signatures generated for the signing platform can be revoked.

" } } }, @@ -410,6 +597,12 @@ "documentation":"

The name of the target signing profile.

", "location":"uri", "locationName":"profileName" + }, + "profileOwner":{ + "shape":"AccountId", + "documentation":"

The AWS account ID of the profile owner.

", + "location":"querystring", + "locationName":"profileOwner" } } }, @@ -420,6 +613,15 @@ "shape":"ProfileName", "documentation":"

The name of the target signing profile.

" }, + "profileVersion":{ + "shape":"ProfileVersion", + "documentation":"

The current version of the signing profile.

" + }, + "profileVersionArn":{ + "shape":"Arn", + "documentation":"

The signing profile ARN, including the profile version.

" + }, + "revocationRecord":{"shape":"SigningProfileRevocationRecord"}, "signingMaterial":{ "shape":"SigningMaterial", "documentation":"

The ARN of the certificate that the target profile uses for signing operations.

" @@ -428,6 +630,11 @@ "shape":"PlatformId", "documentation":"

The ID of the platform that is used by the target signing profile.

" }, + "platformDisplayName":{ + "shape":"DisplayName", + "documentation":"

A human-readable name for the signing platform associated with the signing profile.

" + }, + "signatureValidityPeriod":{"shape":"SignatureValidityPeriod"}, "overrides":{ "shape":"SigningPlatformOverrides", "documentation":"

A list of overrides applied by the target signing profile for signing operations.

" @@ -440,6 +647,10 @@ "shape":"SigningProfileStatus", "documentation":"

The status of the target signing profile.

" }, + "statusReason":{ + "shape":"String", + "documentation":"

Reason for the status of the target signing profile.

" + }, "arn":{ "shape":"string", "documentation":"

The Amazon Resource Name (ARN) for the signing profile.

" @@ -491,10 +702,12 @@ "type":"list", "member":{"shape":"ImageFormat"} }, + "Integer":{"type":"integer"}, "InternalServiceErrorException":{ "type":"structure", "members":{ - "message":{"shape":"ErrorMessage"} + "message":{"shape":"ErrorMessage"}, + "code":{"shape":"ErrorCode"} }, "documentation":"

An internal error occurred.

", "error":{"httpStatusCode":500}, @@ -502,6 +715,45 @@ }, "JobId":{"type":"string"}, "Key":{"type":"string"}, + "ListProfilePermissionsRequest":{ + "type":"structure", + "required":["profileName"], + "members":{ + "profileName":{ + "shape":"ProfileName", + "documentation":"

Name of the signing profile containing the cross-account permissions.

", + "location":"uri", + "locationName":"profileName" + }, + "nextToken":{ + "shape":"String", + "documentation":"

String for specifying the next set of paginated results.

", + "location":"querystring", + "locationName":"nextToken" + } + } + }, + "ListProfilePermissionsResponse":{ + "type":"structure", + "members":{ + "revisionId":{ + "shape":"String", + "documentation":"

The identifier for the current revision of profile permissions.

" + }, + "policySizeBytes":{ + "shape":"PolicySizeBytes", + "documentation":"

Total size of the policy associated with the Signing Profile in bytes.

" + }, + "permissions":{ + "shape":"Permissions", + "documentation":"

List of permissions associated with the Signing Profile.

" + }, + "nextToken":{ + "shape":"String", + "documentation":"

String for specifying the next set of paginated results.

" + } + } + }, "ListSigningJobsRequest":{ "type":"structure", "members":{ @@ -534,6 +786,30 @@ "documentation":"

String for specifying the next set of paginated results to return. After you receive a response with truncated results, use this parameter in a subsequent request. Set it to the value of nextToken from the response that you just received.

", "location":"querystring", "locationName":"nextToken" + }, + "isRevoked":{ + "shape":"bool", + "documentation":"

Filters results to return only signing jobs with revoked signatures.

", + "location":"querystring", + "locationName":"isRevoked" + }, + "signatureExpiresBefore":{ + "shape":"Timestamp", + "documentation":"

Filters results to return only signing jobs with signatures expiring before a specified timestamp.

", + "location":"querystring", + "locationName":"signatureExpiresBefore" + }, + "signatureExpiresAfter":{ + "shape":"Timestamp", + "documentation":"

Filters results to return only signing jobs with signatures expiring after a specified timestamp.

", + "location":"querystring", + "locationName":"signatureExpiresAfter" + }, + "jobInvoker":{ + "shape":"AccountId", + "documentation":"

Filters results to return only signing jobs initiated by a specified IAM entity.

", + "location":"querystring", + "locationName":"jobInvoker" } } }, @@ -618,6 +894,18 @@ "documentation":"

Value for specifying the next set of paginated results to return. After you receive a response with truncated results, use this parameter in a subsequent request. Set it to the value of nextToken from the response that you just received.

", "location":"querystring", "locationName":"nextToken" + }, + "platformId":{ + "shape":"PlatformId", + "documentation":"

Filters results to return only signing jobs initiated for a specified signing platform.

", + "location":"querystring", + "locationName":"platformId" + }, + "statuses":{ + "shape":"Statuses", + "documentation":"

Filters results to return only signing jobs with statuses in the specified list.

", + "location":"querystring", + "locationName":"statuses" } } }, @@ -666,13 +954,41 @@ "NotFoundException":{ "type":"structure", "members":{ - "message":{"shape":"ErrorMessage"} + "message":{"shape":"ErrorMessage"}, + "code":{"shape":"ErrorCode"} }, "documentation":"

The signing profile was not found.

", "error":{"httpStatusCode":404}, "exception":true }, + "Permission":{ + "type":"structure", + "members":{ + "action":{ + "shape":"String", + "documentation":"

An AWS Signer action permitted as part of cross-account permissions.

" + }, + "principal":{ + "shape":"String", + "documentation":"

The AWS principal that has been granted a cross-account permission.

" + }, + "statementId":{ + "shape":"String", + "documentation":"

A unique identifier for a cross-account permission statement.

" + }, + "profileVersion":{ + "shape":"ProfileVersion", + "documentation":"

The signing profile version that a permission applies to.

" + } + }, + "documentation":"

A cross-account permission for a signing profile.

" + }, + "Permissions":{ + "type":"list", + "member":{"shape":"Permission"} + }, "PlatformId":{"type":"string"}, + "PolicySizeBytes":{"type":"integer"}, "Prefix":{"type":"string"}, "ProfileName":{ "type":"string", @@ -680,11 +996,16 @@ "min":2, "pattern":"^[a-zA-Z0-9_]{2,}" }, + "ProfileVersion":{ + "type":"string", + "max":10, + "min":10, + "pattern":"^[a-zA-Z0-9]{10}$" + }, "PutSigningProfileRequest":{ "type":"structure", "required":[ "profileName", - "signingMaterial", "platformId" ], "members":{ @@ -698,6 +1019,10 @@ "shape":"SigningMaterial", "documentation":"

The AWS Certificate Manager certificate that will be used to sign code with the new signing profile.

" }, + "signatureValidityPeriod":{ + "shape":"SignatureValidityPeriod", + "documentation":"

The default validity period override for any signature generated using this signing profile. If unspecified, the default is 135 months.

" + }, "platformId":{ "shape":"PlatformId", "documentation":"

The ID of the signing platform to be created.

" @@ -722,6 +1047,51 @@ "arn":{ "shape":"string", "documentation":"

The Amazon Resource Name (ARN) of the signing profile created.

" + }, + "profileVersion":{ + "shape":"ProfileVersion", + "documentation":"

The version of the signing profile being created.

" + }, + "profileVersionArn":{ + "shape":"Arn", + "documentation":"

The signing profile ARN, including the profile version.

" + } + } + }, + "RemoveProfilePermissionRequest":{ + "type":"structure", + "required":[ + "revisionId", + "profileName", + "statementId" + ], + "members":{ + "profileName":{ + "shape":"ProfileName", + "documentation":"

A human-readable name for the signing profile with permissions to be removed.

", + "location":"uri", + "locationName":"profileName" + }, + "revisionId":{ + "shape":"String", + "documentation":"

An identifier for the current revision of the signing profile permissions.

", + "location":"querystring", + "locationName":"revisionId" + }, + "statementId":{ + "shape":"String", + "documentation":"

A unique identifier for the cross-account permissions statement.

", + "location":"uri", + "locationName":"statementId" + } + } + }, + "RemoveProfilePermissionResponse":{ + "type":"structure", + "members":{ + "revisionId":{ + "shape":"String", + "documentation":"

An identifier for the current revision of the profile permissions.

" } } }, @@ -729,12 +1099,70 @@ "ResourceNotFoundException":{ "type":"structure", "members":{ - "message":{"shape":"ErrorMessage"} + "message":{"shape":"ErrorMessage"}, + "code":{"shape":"ErrorCode"} }, "documentation":"

A specified resource could not be found.

", "error":{"httpStatusCode":404}, "exception":true }, + "RevocationReasonString":{ + "type":"string", + "max":500, + "min":1 + }, + "RevokeSignatureRequest":{ + "type":"structure", + "required":[ + "reason", + "jobId" + ], + "members":{ + "jobId":{ + "shape":"JobId", + "documentation":"

ID of the signing job to be revoked.

", + "location":"uri", + "locationName":"jobId" + }, + "jobOwner":{ + "shape":"AccountId", + "documentation":"

AWS account ID of the job owner.

" + }, + "reason":{ + "shape":"RevocationReasonString", + "documentation":"

The reason for revoking the signing job.

" + } + } + }, + "RevokeSigningProfileRequest":{ + "type":"structure", + "required":[ + "profileVersion", + "reason", + "effectiveTime", + "profileName" + ], + "members":{ + "profileName":{ + "shape":"ProfileName", + "documentation":"

The name of the signing profile to be revoked.

", + "location":"uri", + "locationName":"profileName" + }, + "profileVersion":{ + "shape":"ProfileVersion", + "documentation":"

The version of the signing profile to be revoked.

" + }, + "reason":{ + "shape":"RevocationReasonString", + "documentation":"

The reason for revoking a signing profile.

" + }, + "effectiveTime":{ + "shape":"Timestamp", + "documentation":"

A timestamp for when revocation of a Signing Profile should become effective. Signatures generated using the signing profile after this timestamp are not trusted.

" + } + } + }, "S3Destination":{ "type":"structure", "members":{ @@ -757,7 +1185,7 @@ "documentation":"

Name of the S3 bucket.

" }, "key":{ - "shape":"key", + "shape":"Key", "documentation":"

Key name that uniquely identifies a signed code image in your bucket.

" } }, @@ -786,6 +1214,30 @@ }, "documentation":"

Information about the S3 bucket where you saved your unsigned code.

" }, + "ServiceLimitExceededException":{ + "type":"structure", + "members":{ + "message":{"shape":"ErrorMessage"}, + "code":{"shape":"ErrorCode"} + }, + "documentation":"

The client is making a request that exceeds service limits.

", + "error":{"httpStatusCode":402}, + "exception":true + }, + "SignatureValidityPeriod":{ + "type":"structure", + "members":{ + "value":{ + "shape":"Integer", + "documentation":"

The numerical value of the time unit for signature validity.

" + }, + "type":{ + "shape":"ValidityType", + "documentation":"

The time unit for signature validity.

" + } + }, + "documentation":"

The validity period for a signing job.

" + }, "SignedObject":{ "type":"structure", "members":{ @@ -866,16 +1318,66 @@ "documentation":"

A SigningMaterial object that contains the Amazon Resource Name (ARN) of the certificate used for the signing job.

" }, "createdAt":{ - "shape":"CreatedAt", + "shape":"Timestamp", "documentation":"

The date and time that the signing job was created.

" }, "status":{ "shape":"SigningStatus", "documentation":"

The status of the signing job.

" + }, + "isRevoked":{ + "shape":"bool", + "documentation":"

Indicates whether the signing job is revoked.

" + }, + "profileName":{ + "shape":"ProfileName", + "documentation":"

The name of the signing profile that created a signing job.

" + }, + "profileVersion":{ + "shape":"ProfileVersion", + "documentation":"

The version of the signing profile that created a signing job.

" + }, + "platformId":{ + "shape":"PlatformId", + "documentation":"

The unique identifier for a signing platform.

" + }, + "platformDisplayName":{ + "shape":"DisplayName", + "documentation":"

The name of a signing platform.

" + }, + "signatureExpiresAt":{ + "shape":"Timestamp", + "documentation":"

The time when the signature of a signing job expires.

" + }, + "jobOwner":{ + "shape":"AccountId", + "documentation":"

The AWS account ID of the job owner.

" + }, + "jobInvoker":{ + "shape":"AccountId", + "documentation":"

The AWS account ID of the job invoker.

" } }, "documentation":"

Contains information about a signing job.

" }, + "SigningJobRevocationRecord":{ + "type":"structure", + "members":{ + "reason":{ + "shape":"String", + "documentation":"

A caller-supplied reason for revocation.

" + }, + "revokedAt":{ + "shape":"Timestamp", + "documentation":"

The time of revocation.

" + }, + "revokedBy":{ + "shape":"String", + "documentation":"

The identity of the revoker.

" + } + }, + "documentation":"

Revocation information for a signing job.

" + }, "SigningJobs":{ "type":"list", "member":{"shape":"SigningJob"} @@ -929,6 +1431,10 @@ "maxSizeInMB":{ "shape":"MaxSizeInMB", "documentation":"

The maximum size (in MB) of code that can be signed by a code signing platform.

" + }, + "revocationSupported":{ + "shape":"bool", + "documentation":"

Indicates whether revocation is supported for the platform.

" } }, "documentation":"

Contains information about the signing configurations and parameters that are used to perform a code signing job.

" @@ -958,14 +1464,30 @@ "shape":"ProfileName", "documentation":"

The name of the signing profile.

" }, + "profileVersion":{ + "shape":"ProfileVersion", + "documentation":"

The version of a signing profile.

" + }, + "profileVersionArn":{ + "shape":"Arn", + "documentation":"

The ARN of a signing profile, including the profile version.

" + }, "signingMaterial":{ "shape":"SigningMaterial", "documentation":"

The ACM certificate that is available for use by a signing profile.

" }, + "signatureValidityPeriod":{ + "shape":"SignatureValidityPeriod", + "documentation":"

The validity period for a signing job created using this signing profile.

" + }, "platformId":{ "shape":"PlatformId", "documentation":"

The ID of a platform that is available for use by a signing profile.

" }, + "platformDisplayName":{ + "shape":"DisplayName", + "documentation":"

The name of the signing platform.

" + }, "signingParameters":{ "shape":"SigningParameters", "documentation":"

The parameters that are available for use by a code signing user.

" @@ -985,11 +1507,30 @@ }, "documentation":"

Contains information about the ACM certificates and code signing configuration parameters that can be used by a given code signing user.

" }, + "SigningProfileRevocationRecord":{ + "type":"structure", + "members":{ + "revocationEffectiveFrom":{ + "shape":"Timestamp", + "documentation":"

The time when revocation becomes effective.

" + }, + "revokedAt":{ + "shape":"Timestamp", + "documentation":"

The time when the signing profile was revoked.

" + }, + "revokedBy":{ + "shape":"String", + "documentation":"

The identity of the revoker.

" + } + }, + "documentation":"

Revocation information for a signing profile.

" + }, "SigningProfileStatus":{ "type":"string", "enum":[ "Active", - "Canceled" + "Canceled", + "Revoked" ] }, "SigningProfiles":{ @@ -1019,6 +1560,7 @@ "required":[ "source", "destination", + "profileName", "clientRequestToken" ], "members":{ @@ -1038,6 +1580,10 @@ "shape":"ClientRequestToken", "documentation":"

String that identifies the signing request. All calls after the first that use this token return the same response as the first call.

", "idempotencyToken":true + }, + "profileOwner":{ + "shape":"AccountId", + "documentation":"

The AWS account ID of the signing profile owner.

" } } }, @@ -1047,10 +1593,18 @@ "jobId":{ "shape":"JobId", "documentation":"

The ID of your signing job.

" + }, + "jobOwner":{ + "shape":"AccountId", + "documentation":"

The AWS account ID of the signing job owner.

" } } }, "StatusReason":{"type":"string"}, + "Statuses":{ + "type":"list", + "member":{"shape":"SigningProfileStatus"} + }, "String":{"type":"string"}, "TagKey":{ "type":"string", @@ -1102,9 +1656,23 @@ "ThrottlingException":{ "type":"structure", "members":{ - "message":{"shape":"ErrorMessage"} + "message":{"shape":"ErrorMessage"}, + "code":{"shape":"ErrorCode"} + }, + "documentation":"

The request was denied due to request throttling.

Instead of this error, TooManyRequestsException should be used.

", + "deprecated":true, + "deprecatedMessage":"Instead of this error, TooManyRequestsException should be used.", + "error":{"httpStatusCode":429}, + "exception":true + }, + "Timestamp":{"type":"timestamp"}, + "TooManyRequestsException":{ + "type":"structure", + "members":{ + "message":{"shape":"ErrorMessage"}, + "code":{"shape":"ErrorCode"} }, - "documentation":"

The signing job has been throttled.

", + "documentation":"

The allowed number of job-signing requests has been exceeded.

This error supersedes the error ThrottlingException.

", "error":{"httpStatusCode":429}, "exception":true }, @@ -1137,15 +1705,24 @@ "ValidationException":{ "type":"structure", "members":{ - "message":{"shape":"ErrorMessage"} + "message":{"shape":"ErrorMessage"}, + "code":{"shape":"ErrorCode"} }, "documentation":"

You signing certificate could not be validated.

", "error":{"httpStatusCode":400}, "exception":true }, + "ValidityType":{ + "type":"string", + "enum":[ + "DAYS", + "MONTHS", + "YEARS" + ] + }, "Version":{"type":"string"}, "bool":{"type":"boolean"}, "string":{"type":"string"} }, - "documentation":"

With code signing for IoT, you can sign code that you create for any IoT device that is supported by Amazon Web Services (AWS). Code signing is available through Amazon FreeRTOS and AWS IoT Device Management, and integrated with AWS Certificate Manager (ACM). In order to sign code, you import a third-party code signing certificate with ACM that is used to sign updates in Amazon FreeRTOS and AWS IoT Device Management. For general information about using code signing, see the Code Signing for IoT Developer Guide.

" + "documentation":"

AWS Signer is a fully managed code signing service to help you ensure the trust and integrity of your code.

AWS Signer supports the following applications:

With code signing for AWS Lambda, you can sign AWS Lambda deployment packages. Integrated support is provided for Amazon S3, Amazon CloudWatch, and AWS CloudTrail. In order to sign code, you create a signing profile and then use Signer to sign Lambda zip files in S3.

With code signing for IoT, you can sign code for any IoT device that is supported by AWS. IoT code signing is available for Amazon FreeRTOS and AWS IoT Device Management, and is integrated with AWS Certificate Manager (ACM). In order to sign code, you import a third-party code signing certificate using ACM, and use that to sign updates in Amazon FreeRTOS and AWS IoT Device Management.

For more information about AWS Signer, see the AWS Signer Developer Guide.

" } From bd99396b2c25a8abecf116a7517a7ae680a1fc21 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:05:26 +0000 Subject: [PATCH 260/339] AWS Outposts Update: Support specifying tags during the creation of the Outpost resource. Tags are now returned in the response body of Outpost APIs. --- .../feature-AWSOutposts-a7c51da.json | 6 ++++ .../codegen-resources/service-2.json | 36 +++++++++++++++++-- 2 files changed, 39 insertions(+), 3 deletions(-) create mode 100644 .changes/next-release/feature-AWSOutposts-a7c51da.json diff --git a/.changes/next-release/feature-AWSOutposts-a7c51da.json b/.changes/next-release/feature-AWSOutposts-a7c51da.json new file mode 100644 index 000000000000..e15923e1b884 --- /dev/null +++ b/.changes/next-release/feature-AWSOutposts-a7c51da.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Outposts", + "contributor": "", + "description": "Support specifying tags during the creation of the Outpost resource. Tags are now returned in the response body of Outpost APIs." +} diff --git a/services/outposts/src/main/resources/codegen-resources/service-2.json b/services/outposts/src/main/resources/codegen-resources/service-2.json index 1e973028c7c5..2c119ca151a9 100644 --- a/services/outposts/src/main/resources/codegen-resources/service-2.json +++ b/services/outposts/src/main/resources/codegen-resources/service-2.json @@ -166,7 +166,11 @@ "Description":{"shape":"OutpostDescription"}, "SiteId":{"shape":"SiteId"}, "AvailabilityZone":{"shape":"AvailabilityZone"}, - "AvailabilityZoneId":{"shape":"AvailabilityZoneId"} + "AvailabilityZoneId":{"shape":"AvailabilityZoneId"}, + "Tags":{ + "shape":"TagMap", + "documentation":"

The tags to apply to the Outpost.

" + } } }, "CreateOutpostOutput":{ @@ -360,7 +364,11 @@ "Description":{"shape":"OutpostDescription"}, "LifeCycleStatus":{"shape":"LifeCycleStatus"}, "AvailabilityZone":{"shape":"AvailabilityZone"}, - "AvailabilityZoneId":{"shape":"AvailabilityZoneId"} + "AvailabilityZoneId":{"shape":"AvailabilityZoneId"}, + "Tags":{ + "shape":"TagMap", + "documentation":"

The Outpost tags.

" + } }, "documentation":"

Information about an Outpost.

" }, @@ -414,7 +422,11 @@ "SiteId":{"shape":"SiteId"}, "AccountId":{"shape":"AccountId"}, "Name":{"shape":"SiteName"}, - "Description":{"shape":"SiteDescription"} + "Description":{"shape":"SiteDescription"}, + "Tags":{ + "shape":"TagMap", + "documentation":"

The site tags.

" + } }, "documentation":"

Information about a site.

" }, @@ -439,6 +451,24 @@ "min":1, "pattern":"^[\\S ]+$" }, + "TagKey":{ + "type":"string", + "max":128, + "min":1, + "pattern":"^(?!aws:)[a-zA-Z+-=._:/]+$" + }, + "TagMap":{ + "type":"map", + "key":{"shape":"TagKey"}, + "value":{"shape":"TagValue"}, + "max":50, + "min":1 + }, + "TagValue":{ + "type":"string", + "max":256, + "pattern":"^[\\S \\n]+$" + }, "Token":{ "type":"string", "documentation":"

The pagination token.

", From cc109d12bcbd1281d6aa1334fb208fe9ef59014a Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:05:31 +0000 Subject: [PATCH 261/339] AWS License Manager Update: AWS License Manager now provides the ability for license administrators to be able to associate license configurations to AMIs shared with their AWS account --- .../next-release/feature-AWSLicenseManager-3f46d96.json | 6 ++++++ .../src/main/resources/codegen-resources/service-2.json | 8 ++++++++ 2 files changed, 14 insertions(+) create mode 100644 .changes/next-release/feature-AWSLicenseManager-3f46d96.json diff --git a/.changes/next-release/feature-AWSLicenseManager-3f46d96.json b/.changes/next-release/feature-AWSLicenseManager-3f46d96.json new file mode 100644 index 000000000000..fc38e38ab30b --- /dev/null +++ b/.changes/next-release/feature-AWSLicenseManager-3f46d96.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS License Manager", + "contributor": "", + "description": "AWS License Manager now provides the ability for license administrators to be able to associate license configurations to AMIs shared with their AWS account" +} diff --git a/services/licensemanager/src/main/resources/codegen-resources/service-2.json b/services/licensemanager/src/main/resources/codegen-resources/service-2.json index 832d2c75cc83..a8a02bf9659d 100644 --- a/services/licensemanager/src/main/resources/codegen-resources/service-2.json +++ b/services/licensemanager/src/main/resources/codegen-resources/service-2.json @@ -692,6 +692,10 @@ "AssociationTime":{ "shape":"DateTime", "documentation":"

Time when the license configuration was associated with the resource.

" + }, + "AmiAssociationScope":{ + "shape":"String", + "documentation":"

Scope of AMI associations.

" } }, "documentation":"

Describes an association with a license configuration.

" @@ -803,6 +807,10 @@ "LicenseConfigurationArn":{ "shape":"String", "documentation":"

Amazon Resource Name (ARN) of the license configuration.

" + }, + "AmiAssociationScope":{ + "shape":"String", + "documentation":"

Scope of AMI associations.

" } }, "documentation":"

Details for associating a license configuration with a resource.

" From b6d5b4e56fea92e6dba88f9a124c76fa1dce11e1 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:05:11 +0000 Subject: [PATCH 262/339] Amazon Timestream Query Update: Amazon Timestream now supports "QueryStatus" in Query API which has information about cumulative bytes scanned, metered, as well as progress percentage for the query. --- ...feature-AmazonTimestreamQuery-604404d.json | 6 +++++ .../codegen-resources/paginators-1.json | 3 ++- .../codegen-resources/service-2.json | 23 +++++++++++++++++++ 3 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AmazonTimestreamQuery-604404d.json diff --git a/.changes/next-release/feature-AmazonTimestreamQuery-604404d.json b/.changes/next-release/feature-AmazonTimestreamQuery-604404d.json new file mode 100644 index 000000000000..ce4df8196f00 --- /dev/null +++ b/.changes/next-release/feature-AmazonTimestreamQuery-604404d.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Timestream Query", + "contributor": "", + "description": "Amazon Timestream now supports \"QueryStatus\" in Query API which has information about cumulative bytes scanned, metered, as well as progress percentage for the query." +} diff --git a/services/timestreamquery/src/main/resources/codegen-resources/paginators-1.json b/services/timestreamquery/src/main/resources/codegen-resources/paginators-1.json index 1eb99abdb142..dcc93dac8de3 100644 --- a/services/timestreamquery/src/main/resources/codegen-resources/paginators-1.json +++ b/services/timestreamquery/src/main/resources/codegen-resources/paginators-1.json @@ -5,7 +5,8 @@ "limit_key": "MaxRows", "non_aggregate_keys": [ "ColumnInfo", - "QueryId" + "QueryId", + "QueryStatus" ], "output_token": "NextToken", "result_key": "Rows" diff --git a/services/timestreamquery/src/main/resources/codegen-resources/service-2.json b/services/timestreamquery/src/main/resources/codegen-resources/service-2.json index 4a68cd17b573..fd388619dca7 100644 --- a/services/timestreamquery/src/main/resources/codegen-resources/service-2.json +++ b/services/timestreamquery/src/main/resources/codegen-resources/service-2.json @@ -178,6 +178,7 @@ } } }, + "Double":{"type":"double"}, "Endpoint":{ "type":"structure", "required":[ @@ -288,9 +289,31 @@ "ColumnInfo":{ "shape":"ColumnInfoList", "documentation":"

The column data types of the returned result set.

" + }, + "QueryStatus":{ + "shape":"QueryStatus", + "documentation":"

Information about the status of the query, including progress and bytes scannned.

" } } }, + "QueryStatus":{ + "type":"structure", + "members":{ + "ProgressPercentage":{ + "shape":"Double", + "documentation":"

The progress of the query, expressed as a percentage.

" + }, + "CumulativeBytesScanned":{ + "shape":"Long", + "documentation":"

The amount of data scanned by the query in bytes. This is a cumulative sum and represents the total amount of bytes scanned since the query was started.

" + }, + "CumulativeBytesMetered":{ + "shape":"Long", + "documentation":"

The amount of data scanned by the query in bytes that you will be charged for. This is a cumulative sum and represents the total amount of data that you will be charged for since the query was started. The charge is applied only once and is either applied when the query completes execution or when the query is cancelled.

" + } + }, + "documentation":"

Information about the status of the query, including progress and bytes scannned.

" + }, "QueryString":{ "type":"string", "sensitive":true From 2b565c994c236338136987266a6504ce2315d67f Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:05:40 +0000 Subject: [PATCH 263/339] AWS Single Sign-On Admin Update: AWS Single Sign-On now enables attribute-based access control for workforce identities to simplify permissions in AWS --- .../feature-AWSSingleSignOnAdmin-6abbb96.json | 6 + .../codegen-resources/service-2.json | 230 ++++++++++++++++++ 2 files changed, 236 insertions(+) create mode 100644 .changes/next-release/feature-AWSSingleSignOnAdmin-6abbb96.json diff --git a/.changes/next-release/feature-AWSSingleSignOnAdmin-6abbb96.json b/.changes/next-release/feature-AWSSingleSignOnAdmin-6abbb96.json new file mode 100644 index 000000000000..7e3a80aa366f --- /dev/null +++ b/.changes/next-release/feature-AWSSingleSignOnAdmin-6abbb96.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Single Sign-On Admin", + "contributor": "", + "description": "AWS Single Sign-On now enables attribute-based access control for workforce identities to simplify permissions in AWS" +} diff --git a/services/ssoadmin/src/main/resources/codegen-resources/service-2.json b/services/ssoadmin/src/main/resources/codegen-resources/service-2.json index 9f6ebc321edd..e886ccab6c71 100644 --- a/services/ssoadmin/src/main/resources/codegen-resources/service-2.json +++ b/services/ssoadmin/src/main/resources/codegen-resources/service-2.json @@ -52,6 +52,24 @@ ], "documentation":"

Assigns access to a principal for a specified AWS account using a specified permission set.

The term principal here refers to a user or group that is defined in AWS SSO.

As part of a successful CreateAccountAssignment call, the specified permission set will automatically be provisioned to the account in the form of an IAM policy attached to the SSO-created IAM role. If the permission set is subsequently updated, the corresponding IAM policies attached to roles in your accounts will not be updated automatically. In this case, you will need to call ProvisionPermissionSet to make these updates.

" }, + "CreateInstanceAccessControlAttributeConfiguration":{ + "name":"CreateInstanceAccessControlAttributeConfiguration", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateInstanceAccessControlAttributeConfigurationRequest"}, + "output":{"shape":"CreateInstanceAccessControlAttributeConfigurationResponse"}, + "errors":[ + {"shape":"InternalServerException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ThrottlingException"}, + {"shape":"ValidationException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ConflictException"} + ], + "documentation":"

Enables the attributes-based access control (ABAC) feature for the specified AWS SSO instance. You can also specify new attributes to add to your ABAC configuration during the enabling process. For more information about ABAC, see Attribute-Based Access Control in the AWS SSO User Guide.

" + }, "CreatePermissionSet":{ "name":"CreatePermissionSet", "http":{ @@ -107,6 +125,24 @@ ], "documentation":"

Deletes the inline policy from a specified permission set.

" }, + "DeleteInstanceAccessControlAttributeConfiguration":{ + "name":"DeleteInstanceAccessControlAttributeConfiguration", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteInstanceAccessControlAttributeConfigurationRequest"}, + "output":{"shape":"DeleteInstanceAccessControlAttributeConfigurationResponse"}, + "errors":[ + {"shape":"InternalServerException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ThrottlingException"}, + {"shape":"ValidationException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ConflictException"} + ], + "documentation":"

Disables the attributes-based access control (ABAC) feature for the specified AWS SSO instance and deletes all of the attribute mappings that have been configured. Once deleted, any attributes that are received from an identity source and any custom attributes you have previously configured will not be passed. For more information about ABAC, see Attribute-Based Access Control in the AWS SSO User Guide.

" + }, "DeletePermissionSet":{ "name":"DeletePermissionSet", "http":{ @@ -159,6 +195,23 @@ ], "documentation":"

Describes the status of the assignment deletion request.

" }, + "DescribeInstanceAccessControlAttributeConfiguration":{ + "name":"DescribeInstanceAccessControlAttributeConfiguration", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeInstanceAccessControlAttributeConfigurationRequest"}, + "output":{"shape":"DescribeInstanceAccessControlAttributeConfigurationResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServerException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ThrottlingException"}, + {"shape":"ValidationException"} + ], + "documentation":"

Returns the list of AWS SSO identity store attributes that have been configured to work with attributes-based access control (ABAC) for the specified AWS SSO instance. This will not return attributes configured and sent by an external identity provider. For more information about ABAC, see Attribute-Based Access Control in the AWS SSO User Guide.

" + }, "DescribePermissionSet":{ "name":"DescribePermissionSet", "http":{ @@ -471,6 +524,24 @@ ], "documentation":"

Disassociates a set of tags from a specified resource.

" }, + "UpdateInstanceAccessControlAttributeConfiguration":{ + "name":"UpdateInstanceAccessControlAttributeConfiguration", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateInstanceAccessControlAttributeConfigurationRequest"}, + "output":{"shape":"UpdateInstanceAccessControlAttributeConfigurationResponse"}, + "errors":[ + {"shape":"InternalServerException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ThrottlingException"}, + {"shape":"ValidationException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ConflictException"} + ], + "documentation":"

Updates the AWS SSO identity store attributes to use with the AWS SSO instance for attributes-based access control (ABAC). When using an external identity provider as an identity source, you can pass attributes through the SAML assertion as an alternative to configuring attributes from the AWS SSO identity store. If a SAML assertion passes any of these attributes, AWS SSO will replace the attribute value with the value from the AWS SSO identity store. For more information about ABAC, see Attribute-Based Access Control in the AWS SSO User Guide.

" + }, "UpdatePermissionSet":{ "name":"UpdatePermissionSet", "http":{ @@ -491,6 +562,59 @@ } }, "shapes":{ + "AccessControlAttribute":{ + "type":"structure", + "required":[ + "Key", + "Value" + ], + "members":{ + "Key":{ + "shape":"AccessControlAttributeKey", + "documentation":"

The name of the attribute associated with your identities in your identity source. This is used to map a specified attribute in your identity source with an attribute in AWS SSO.

" + }, + "Value":{ + "shape":"AccessControlAttributeValue", + "documentation":"

The value used for mapping a specified attribute to an identity source.

" + } + }, + "documentation":"

These are AWS SSO identity store attributes that you can configure for use in attributes-based access control (ABAC). You can create permission policies that determine who can access your AWS resources based upon the configured attribute value(s). When you enable ABAC and specify AccessControlAttributes, AWS SSO passes the attribute(s) value of the authenticated user into IAM for use in policy evaluation.

" + }, + "AccessControlAttributeKey":{ + "type":"string", + "max":128, + "min":1, + "pattern":"[\\p{L}\\p{Z}\\p{N}_.:\\/=+\\-@]+" + }, + "AccessControlAttributeList":{ + "type":"list", + "member":{"shape":"AccessControlAttribute"}, + "max":50, + "min":0 + }, + "AccessControlAttributeValue":{ + "type":"structure", + "required":["Source"], + "members":{ + "Source":{ + "shape":"AccessControlAttributeValueSourceList", + "documentation":"

The identity source to use when mapping a specified attribute to AWS SSO.

" + } + }, + "documentation":"

The value used for mapping a specified attribute to an identity source.

" + }, + "AccessControlAttributeValueSource":{ + "type":"string", + "max":256, + "min":0, + "pattern":"[\\p{L}\\p{Z}\\p{N}_.:\\/=+\\-@\\[\\]\\{\\}\\$\\\\\"]*" + }, + "AccessControlAttributeValueSourceList":{ + "type":"list", + "member":{"shape":"AccessControlAttributeValueSource"}, + "max":1, + "min":1 + }, "AccessDeniedException":{ "type":"structure", "members":{ @@ -698,6 +822,28 @@ } } }, + "CreateInstanceAccessControlAttributeConfigurationRequest":{ + "type":"structure", + "required":[ + "InstanceArn", + "InstanceAccessControlAttributeConfiguration" + ], + "members":{ + "InstanceArn":{ + "shape":"InstanceArn", + "documentation":"

The ARN of the SSO instance under which the operation will be executed.

" + }, + "InstanceAccessControlAttributeConfiguration":{ + "shape":"InstanceAccessControlAttributeConfiguration", + "documentation":"

Specifies the AWS SSO identity store attributes to add to your ABAC configuration. When using an external identity provider as an identity source, you can pass attributes through the SAML assertion as an alternative to configuring attributes from the AWS SSO identity store. If a SAML assertion passes any of these attributes, AWS SSO will replace the attribute value with the value from the AWS SSO identity store.

" + } + } + }, + "CreateInstanceAccessControlAttributeConfigurationResponse":{ + "type":"structure", + "members":{ + } + }, "CreatePermissionSetRequest":{ "type":"structure", "required":[ @@ -809,6 +955,21 @@ "members":{ } }, + "DeleteInstanceAccessControlAttributeConfigurationRequest":{ + "type":"structure", + "required":["InstanceArn"], + "members":{ + "InstanceArn":{ + "shape":"InstanceArn", + "documentation":"

The ARN of the SSO instance under which the operation will be executed.

" + } + } + }, + "DeleteInstanceAccessControlAttributeConfigurationResponse":{ + "type":"structure", + "members":{ + } + }, "DeletePermissionSetRequest":{ "type":"structure", "required":[ @@ -883,6 +1044,33 @@ } } }, + "DescribeInstanceAccessControlAttributeConfigurationRequest":{ + "type":"structure", + "required":["InstanceArn"], + "members":{ + "InstanceArn":{ + "shape":"InstanceArn", + "documentation":"

The ARN of the SSO instance under which the operation will be executed.

" + } + } + }, + "DescribeInstanceAccessControlAttributeConfigurationResponse":{ + "type":"structure", + "members":{ + "Status":{ + "shape":"InstanceAccessControlAttributeConfigurationStatus", + "documentation":"

The status of the attribute configuration process.

" + }, + "StatusReason":{ + "shape":"InstanceAccessControlAttributeConfigurationStatusReason", + "documentation":"

Provides more details about the current status of the specified attribute.

" + }, + "InstanceAccessControlAttributeConfiguration":{ + "shape":"InstanceAccessControlAttributeConfiguration", + "documentation":"

Gets the list of AWS SSO identity store attributes added to your ABAC configuration.

" + } + } + }, "DescribePermissionSetProvisioningStatusRequest":{ "type":"structure", "required":[ @@ -1006,6 +1194,26 @@ "min":1, "pattern":"^[a-zA-Z0-9-]*" }, + "InstanceAccessControlAttributeConfiguration":{ + "type":"structure", + "required":["AccessControlAttributes"], + "members":{ + "AccessControlAttributes":{ + "shape":"AccessControlAttributeList", + "documentation":"

Lists the attributes that are configured for ABAC in the specified AWS SSO instance.

" + } + }, + "documentation":"

Specifies the attributes to add to your attribute-based access control (ABAC) configuration.

" + }, + "InstanceAccessControlAttributeConfigurationStatus":{ + "type":"string", + "enum":[ + "ENABLED", + "CREATION_IN_PROGRESS", + "CREATION_FAILED" + ] + }, + "InstanceAccessControlAttributeConfigurationStatusReason":{"type":"string"}, "InstanceArn":{ "type":"string", "max":1224, @@ -1779,6 +1987,28 @@ "members":{ } }, + "UpdateInstanceAccessControlAttributeConfigurationRequest":{ + "type":"structure", + "required":[ + "InstanceArn", + "InstanceAccessControlAttributeConfiguration" + ], + "members":{ + "InstanceArn":{ + "shape":"InstanceArn", + "documentation":"

The ARN of the SSO instance under which the operation will be executed.

" + }, + "InstanceAccessControlAttributeConfiguration":{ + "shape":"InstanceAccessControlAttributeConfiguration", + "documentation":"

Updates the attributes for your ABAC configuration.

" + } + } + }, + "UpdateInstanceAccessControlAttributeConfigurationResponse":{ + "type":"structure", + "members":{ + } + }, "UpdatePermissionSetRequest":{ "type":"structure", "required":[ From cc69db264edb94a8863897f1d0c07990d7cf9ed4 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:05:12 +0000 Subject: [PATCH 264/339] AWS Lambda Update: This release includes support for new feature: Code Signing for AWS Lambda. This adds new resources and APIs to configure Lambda functions to accept and verify signed code artifacts at deployment. --- .../feature-AWSLambda-4eca0eb.json | 6 + .../codegen-resources/paginators-1.json | 12 + .../codegen-resources/service-2.json | 561 +++++++++++++++++- 3 files changed, 573 insertions(+), 6 deletions(-) create mode 100644 .changes/next-release/feature-AWSLambda-4eca0eb.json diff --git a/.changes/next-release/feature-AWSLambda-4eca0eb.json b/.changes/next-release/feature-AWSLambda-4eca0eb.json new file mode 100644 index 000000000000..49c6dc17d964 --- /dev/null +++ b/.changes/next-release/feature-AWSLambda-4eca0eb.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Lambda", + "contributor": "", + "description": "This release includes support for new feature: Code Signing for AWS Lambda. This adds new resources and APIs to configure Lambda functions to accept and verify signed code artifacts at deployment." +} diff --git a/services/lambda/src/main/resources/codegen-resources/paginators-1.json b/services/lambda/src/main/resources/codegen-resources/paginators-1.json index dd31bcb2ceea..cd03e6bb38f0 100644 --- a/services/lambda/src/main/resources/codegen-resources/paginators-1.json +++ b/services/lambda/src/main/resources/codegen-resources/paginators-1.json @@ -6,6 +6,12 @@ "output_token": "NextMarker", "result_key": "Aliases" }, + "ListCodeSigningConfigs": { + "input_token": "Marker", + "limit_key": "MaxItems", + "output_token": "NextMarker", + "result_key": "CodeSigningConfigs" + }, "ListEventSourceMappings": { "input_token": "Marker", "limit_key": "MaxItems", @@ -24,6 +30,12 @@ "output_token": "NextMarker", "result_key": "Functions" }, + "ListFunctionsByCodeSigningConfig": { + "input_token": "Marker", + "limit_key": "MaxItems", + "output_token": "NextMarker", + "result_key": "FunctionArns" + }, "ListLayerVersions": { "input_token": "Marker", "limit_key": "MaxItems", diff --git a/services/lambda/src/main/resources/codegen-resources/service-2.json b/services/lambda/src/main/resources/codegen-resources/service-2.json index faf48b53dc40..5c9a215f7747 100644 --- a/services/lambda/src/main/resources/codegen-resources/service-2.json +++ b/services/lambda/src/main/resources/codegen-resources/service-2.json @@ -68,6 +68,21 @@ ], "documentation":"

Creates an alias for a Lambda function version. Use aliases to provide clients with a function identifier that you can update to invoke a different version.

You can also map an alias to split invocation requests between two versions. Use the RoutingConfig parameter to specify a second version and the percentage of invocation requests that it receives.

" }, + "CreateCodeSigningConfig":{ + "name":"CreateCodeSigningConfig", + "http":{ + "method":"POST", + "requestUri":"/2020-04-22/code-signing-configs/", + "responseCode":201 + }, + "input":{"shape":"CreateCodeSigningConfigRequest"}, + "output":{"shape":"CreateCodeSigningConfigResponse"}, + "errors":[ + {"shape":"ServiceException"}, + {"shape":"InvalidParameterValueException"} + ], + "documentation":"

Creates a code signing configuration. A code signing configuration defines a list of allowed signing profiles and defines the code-signing validation policy (action to be taken if deployment validation checks fail).

" + }, "CreateEventSourceMapping":{ "name":"CreateEventSourceMapping", "http":{ @@ -101,9 +116,12 @@ {"shape":"ResourceNotFoundException"}, {"shape":"ResourceConflictException"}, {"shape":"TooManyRequestsException"}, - {"shape":"CodeStorageExceededException"} + {"shape":"CodeStorageExceededException"}, + {"shape":"CodeVerificationFailedException"}, + {"shape":"InvalidCodeSignatureException"}, + {"shape":"CodeSigningConfigNotFoundException"} ], - "documentation":"

Creates a Lambda function. To create a function, you need a deployment package and an execution role. The deployment package contains your function code. The execution role grants the function permission to use AWS services, such as Amazon CloudWatch Logs for log streaming and AWS X-Ray for request tracing.

When you create a function, Lambda provisions an instance of the function and its supporting resources. If your function connects to a VPC, this process can take a minute or so. During this time, you can't invoke or modify the function. The State, StateReason, and StateReasonCode fields in the response from GetFunctionConfiguration indicate when the function is ready to invoke. For more information, see Function States.

A function has an unpublished version, and can have published versions and aliases. The unpublished version changes when you update your function's code and configuration. A published version is a snapshot of your function code and configuration that can't be changed. An alias is a named resource that maps to a version, and can be changed to map to a different version. Use the Publish parameter to create version 1 of your function from its initial configuration.

The other parameters let you configure version-specific and function-level settings. You can modify version-specific settings later with UpdateFunctionConfiguration. Function-level settings apply to both the unpublished and published versions of the function, and include tags (TagResource) and per-function concurrency limits (PutFunctionConcurrency).

If another account or an AWS service invokes your function, use AddPermission to grant permission by creating a resource-based IAM policy. You can grant permissions at the function level, on a version, or on an alias.

To invoke your function directly, use Invoke. To invoke your function in response to events in other AWS services, create an event source mapping (CreateEventSourceMapping), or configure a function trigger in the other service. For more information, see Invoking Functions.

" + "documentation":"

Creates a Lambda function. To create a function, you need a deployment package and an execution role. The deployment package contains your function code. The execution role grants the function permission to use AWS services, such as Amazon CloudWatch Logs for log streaming and AWS X-Ray for request tracing.

When you create a function, Lambda provisions an instance of the function and its supporting resources. If your function connects to a VPC, this process can take a minute or so. During this time, you can't invoke or modify the function. The State, StateReason, and StateReasonCode fields in the response from GetFunctionConfiguration indicate when the function is ready to invoke. For more information, see Function States.

A function has an unpublished version, and can have published versions and aliases. The unpublished version changes when you update your function's code and configuration. A published version is a snapshot of your function code and configuration that can't be changed. An alias is a named resource that maps to a version, and can be changed to map to a different version. Use the Publish parameter to create version 1 of your function from its initial configuration.

The other parameters let you configure version-specific and function-level settings. You can modify version-specific settings later with UpdateFunctionConfiguration. Function-level settings apply to both the unpublished and published versions of the function, and include tags (TagResource) and per-function concurrency limits (PutFunctionConcurrency).

To enable code signing for this function, specify the ARN of a code-signing configuration. When a user attempts to deploy a code package with UpdateFunctionCode, Lambda checks that the code package has a valid signature from a trusted publisher. The code-signing configuration includes set set of signing profiles, which define the trusted publishers for this function.

If another account or an AWS service invokes your function, use AddPermission to grant permission by creating a resource-based IAM policy. You can grant permissions at the function level, on a version, or on an alias.

To invoke your function directly, use Invoke. To invoke your function in response to events in other AWS services, create an event source mapping (CreateEventSourceMapping), or configure a function trigger in the other service. For more information, see Invoking Functions.

" }, "DeleteAlias":{ "name":"DeleteAlias", @@ -121,6 +139,23 @@ ], "documentation":"

Deletes a Lambda function alias.

" }, + "DeleteCodeSigningConfig":{ + "name":"DeleteCodeSigningConfig", + "http":{ + "method":"DELETE", + "requestUri":"/2020-04-22/code-signing-configs/{CodeSigningConfigArn}", + "responseCode":204 + }, + "input":{"shape":"DeleteCodeSigningConfigRequest"}, + "output":{"shape":"DeleteCodeSigningConfigResponse"}, + "errors":[ + {"shape":"ServiceException"}, + {"shape":"InvalidParameterValueException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ResourceConflictException"} + ], + "documentation":"

Deletes the code signing configuration. You can delete the code signing configuration only if no function is using it.

" + }, "DeleteEventSourceMapping":{ "name":"DeleteEventSourceMapping", "http":{ @@ -156,6 +191,24 @@ ], "documentation":"

Deletes a Lambda function. To delete a specific function version, use the Qualifier parameter. Otherwise, all versions and aliases are deleted.

To delete Lambda event source mappings that invoke a function, use DeleteEventSourceMapping. For AWS services and resources that invoke your function directly, delete the trigger in the service where you originally configured it.

" }, + "DeleteFunctionCodeSigningConfig":{ + "name":"DeleteFunctionCodeSigningConfig", + "http":{ + "method":"DELETE", + "requestUri":"/2020-06-30/functions/{FunctionName}/code-signing-config", + "responseCode":204 + }, + "input":{"shape":"DeleteFunctionCodeSigningConfigRequest"}, + "errors":[ + {"shape":"InvalidParameterValueException"}, + {"shape":"CodeSigningConfigNotFoundException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ServiceException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ResourceConflictException"} + ], + "documentation":"

Removes the code signing configuration from the function.

" + }, "DeleteFunctionConcurrency":{ "name":"DeleteFunctionConcurrency", "http":{ @@ -252,6 +305,22 @@ ], "documentation":"

Returns details about a Lambda function alias.

" }, + "GetCodeSigningConfig":{ + "name":"GetCodeSigningConfig", + "http":{ + "method":"GET", + "requestUri":"/2020-04-22/code-signing-configs/{CodeSigningConfigArn}", + "responseCode":200 + }, + "input":{"shape":"GetCodeSigningConfigRequest"}, + "output":{"shape":"GetCodeSigningConfigResponse"}, + "errors":[ + {"shape":"ServiceException"}, + {"shape":"InvalidParameterValueException"}, + {"shape":"ResourceNotFoundException"} + ], + "documentation":"

Returns information about the specified code signing configuration.

" + }, "GetEventSourceMapping":{ "name":"GetEventSourceMapping", "http":{ @@ -286,6 +355,23 @@ ], "documentation":"

Returns information about the function or function version, with a link to download the deployment package that's valid for 10 minutes. If you specify a function version, only details that are specific to that version are returned.

" }, + "GetFunctionCodeSigningConfig":{ + "name":"GetFunctionCodeSigningConfig", + "http":{ + "method":"GET", + "requestUri":"/2020-06-30/functions/{FunctionName}/code-signing-config", + "responseCode":200 + }, + "input":{"shape":"GetFunctionCodeSigningConfigRequest"}, + "output":{"shape":"GetFunctionCodeSigningConfigResponse"}, + "errors":[ + {"shape":"InvalidParameterValueException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ServiceException"}, + {"shape":"TooManyRequestsException"} + ], + "documentation":"

Returns the code signing configuration for the specified function.

" + }, "GetFunctionConcurrency":{ "name":"GetFunctionConcurrency", "http":{ @@ -497,6 +583,21 @@ ], "documentation":"

Returns a list of aliases for a Lambda function.

" }, + "ListCodeSigningConfigs":{ + "name":"ListCodeSigningConfigs", + "http":{ + "method":"GET", + "requestUri":"/2020-04-22/code-signing-configs/", + "responseCode":200 + }, + "input":{"shape":"ListCodeSigningConfigsRequest"}, + "output":{"shape":"ListCodeSigningConfigsResponse"}, + "errors":[ + {"shape":"ServiceException"}, + {"shape":"InvalidParameterValueException"} + ], + "documentation":"

Returns a list of code signing configurations for the specified function. A request returns up to 10,000 configurations per call. You can use the MaxItems parameter to return fewer configurations per call.

" + }, "ListEventSourceMappings":{ "name":"ListEventSourceMappings", "http":{ @@ -547,6 +648,22 @@ ], "documentation":"

Returns a list of Lambda functions, with the version-specific configuration of each. Lambda returns up to 50 functions per call.

Set FunctionVersion to ALL to include all published versions of each function in addition to the unpublished version. To get more information about a function or version, use GetFunction.

" }, + "ListFunctionsByCodeSigningConfig":{ + "name":"ListFunctionsByCodeSigningConfig", + "http":{ + "method":"GET", + "requestUri":"/2020-04-22/code-signing-configs/{CodeSigningConfigArn}/functions", + "responseCode":200 + }, + "input":{"shape":"ListFunctionsByCodeSigningConfigRequest"}, + "output":{"shape":"ListFunctionsByCodeSigningConfigResponse"}, + "errors":[ + {"shape":"ServiceException"}, + {"shape":"InvalidParameterValueException"}, + {"shape":"ResourceNotFoundException"} + ], + "documentation":"

List the functions that use the specified code signing configuration. You can use this method prior to deleting a code signing configuration, to verify that no functions are using it.

" + }, "ListLayerVersions":{ "name":"ListLayerVersions", "http":{ @@ -668,6 +785,25 @@ ], "documentation":"

Creates a version from the current code and configuration of a function. Use versions to create a snapshot of your function code and configuration that doesn't change.

AWS Lambda doesn't publish a version if the function's configuration and code haven't changed since the last version. Use UpdateFunctionCode or UpdateFunctionConfiguration to update the function before publishing a version.

Clients can invoke versions directly or with an alias. To create an alias, use CreateAlias.

" }, + "PutFunctionCodeSigningConfig":{ + "name":"PutFunctionCodeSigningConfig", + "http":{ + "method":"PUT", + "requestUri":"/2020-06-30/functions/{FunctionName}/code-signing-config", + "responseCode":200 + }, + "input":{"shape":"PutFunctionCodeSigningConfigRequest"}, + "output":{"shape":"PutFunctionCodeSigningConfigResponse"}, + "errors":[ + {"shape":"ServiceException"}, + {"shape":"InvalidParameterValueException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"ResourceConflictException"}, + {"shape":"CodeSigningConfigNotFoundException"} + ], + "documentation":"

Update the code signing configuration for the function. Changes to the code signing configuration take effect the next time a user tries to deploy a code package to the function.

" + }, "PutFunctionConcurrency":{ "name":"PutFunctionConcurrency", "http":{ @@ -808,6 +944,22 @@ ], "documentation":"

Updates the configuration of a Lambda function alias.

" }, + "UpdateCodeSigningConfig":{ + "name":"UpdateCodeSigningConfig", + "http":{ + "method":"PUT", + "requestUri":"/2020-04-22/code-signing-configs/{CodeSigningConfigArn}", + "responseCode":200 + }, + "input":{"shape":"UpdateCodeSigningConfigRequest"}, + "output":{"shape":"UpdateCodeSigningConfigResponse"}, + "errors":[ + {"shape":"ServiceException"}, + {"shape":"InvalidParameterValueException"}, + {"shape":"ResourceNotFoundException"} + ], + "documentation":"

Update the code signing configuration. Changes to the code signing configuration take effect the next time a user tries to deploy a code package to the function.

" + }, "UpdateEventSourceMapping":{ "name":"UpdateEventSourceMapping", "http":{ @@ -843,9 +995,12 @@ {"shape":"TooManyRequestsException"}, {"shape":"CodeStorageExceededException"}, {"shape":"PreconditionFailedException"}, - {"shape":"ResourceConflictException"} + {"shape":"ResourceConflictException"}, + {"shape":"CodeVerificationFailedException"}, + {"shape":"InvalidCodeSignatureException"}, + {"shape":"CodeSigningConfigNotFoundException"} ], - "documentation":"

Updates a Lambda function's code.

The function's code is locked when you publish a version. You can't modify the code of a published version, only the unpublished version.

" + "documentation":"

Updates a Lambda function's code. If code signing is enabled for the function, the code package must be signed by a trusted publisher. For more information, see Configuring code signing.

The function's code is locked when you publish a version. You can't modify the code of a published version, only the unpublished version.

" }, "UpdateFunctionConfiguration":{ "name":"UpdateFunctionConfiguration", @@ -862,7 +1017,10 @@ {"shape":"InvalidParameterValueException"}, {"shape":"TooManyRequestsException"}, {"shape":"ResourceConflictException"}, - {"shape":"PreconditionFailedException"} + {"shape":"PreconditionFailedException"}, + {"shape":"CodeVerificationFailedException"}, + {"shape":"InvalidCodeSignatureException"}, + {"shape":"CodeSigningConfigNotFoundException"} ], "documentation":"

Modify the version-specific settings of a Lambda function.

When you update a function, Lambda provisions an instance of the function and its supporting resources. If your function connects to a VPC, this process can take a minute. During this time, you can't modify the function, but you can still invoke it. The LastUpdateStatus, LastUpdateStatusReason, and LastUpdateStatusReasonCode fields in the response from GetFunctionConfiguration indicate when the update is complete and the function is processing events with the new configuration. For more information, see Function States.

These settings can vary between versions of a function and are locked when you publish a version. You can't modify the configuration of a published version, only the unpublished version.

To configure function concurrency, use PutFunctionConcurrency. To grant invoke permissions to an account or AWS service, use AddPermission.

" }, @@ -1109,6 +1267,17 @@ }, "documentation":"

The traffic-shifting configuration of a Lambda function alias.

" }, + "AllowedPublishers":{ + "type":"structure", + "required":["SigningProfileVersionArns"], + "members":{ + "SigningProfileVersionArns":{ + "shape":"SigningProfileVersionArns", + "documentation":"

The Amazon Resource Name (ARN) for each of the signing profiles. A signing profile defines a trusted user who can sign a code package.

" + } + }, + "documentation":"

List of signing profiles that can sign a code package.

" + }, "Arn":{ "type":"string", "pattern":"arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\\-])+:([a-z]{2}(-gov)?-[a-z]+-\\d{1})?:(\\d{12})?:(.*)" @@ -1128,6 +1297,83 @@ "streaming":true }, "Boolean":{"type":"boolean"}, + "CodeSigningConfig":{ + "type":"structure", + "required":[ + "CodeSigningConfigId", + "CodeSigningConfigArn", + "AllowedPublishers", + "CodeSigningPolicies", + "LastModified" + ], + "members":{ + "CodeSigningConfigId":{ + "shape":"CodeSigningConfigId", + "documentation":"

Unique identifer for the Code signing configuration.

" + }, + "CodeSigningConfigArn":{ + "shape":"CodeSigningConfigArn", + "documentation":"

The Amazon Resource Name (ARN) of the Code signing configuration.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

Code signing configuration description.

" + }, + "AllowedPublishers":{ + "shape":"AllowedPublishers", + "documentation":"

List of allowed publishers.

" + }, + "CodeSigningPolicies":{ + "shape":"CodeSigningPolicies", + "documentation":"

The code signing policy controls the validation failure action for signature mismatch or expiry.

" + }, + "LastModified":{ + "shape":"Timestamp", + "documentation":"

The date and time that the Code signing configuration was last modified, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD).

" + } + }, + "documentation":"

Details about a Code signing configuration.

" + }, + "CodeSigningConfigArn":{ + "type":"string", + "max":200, + "pattern":"arn:(aws[a-zA-Z-]*)?:lambda:[a-z]{2}((-gov)|(-iso(b?)))?-[a-z]+-\\d{1}:\\d{12}:code-signing-config:csc-[a-z0-9]{17}" + }, + "CodeSigningConfigId":{ + "type":"string", + "pattern":"csc-[a-zA-Z0-9-_\\.]{17}" + }, + "CodeSigningConfigList":{ + "type":"list", + "member":{"shape":"CodeSigningConfig"} + }, + "CodeSigningConfigNotFoundException":{ + "type":"structure", + "members":{ + "Type":{"shape":"String"}, + "Message":{"shape":"String"} + }, + "documentation":"

The specified code signing configuration does not exist.

", + "error":{"httpStatusCode":404}, + "exception":true + }, + "CodeSigningPolicies":{ + "type":"structure", + "members":{ + "UntrustedArtifactOnDeployment":{ + "shape":"CodeSigningPolicy", + "documentation":"

Code signing configuration policy for deployment validation failure. If you set the policy to Enforce, Lambda blocks the deployment request if code-signing validation checks fail. If you set the policy to Warn, Lambda allows the deployment and creates a CloudWatch log.

Default value: Warn

" + } + }, + "documentation":"

Code signing configuration policies specifies the validation failure action for signature mismatch or expiry.

" + }, + "CodeSigningPolicy":{ + "type":"string", + "enum":[ + "Warn", + "Enforce" + ] + }, "CodeStorageExceededException":{ "type":"structure", "members":{ @@ -1141,10 +1387,20 @@ "error":{"httpStatusCode":400}, "exception":true }, + "CodeVerificationFailedException":{ + "type":"structure", + "members":{ + "Type":{"shape":"String"}, + "Message":{"shape":"String"} + }, + "documentation":"

The code signature failed one or more of the validation checks for signature mismatch or expiry, and the code signing policy is set to ENFORCE. Lambda blocks the deployment.

", + "error":{"httpStatusCode":400}, + "exception":true + }, "CompatibleRuntimes":{ "type":"list", "member":{"shape":"Runtime"}, - "max":5 + "max":15 }, "Concurrency":{ "type":"structure", @@ -1187,6 +1443,34 @@ } } }, + "CreateCodeSigningConfigRequest":{ + "type":"structure", + "required":["AllowedPublishers"], + "members":{ + "Description":{ + "shape":"Description", + "documentation":"

Descriptive name for this code signing configuration.

" + }, + "AllowedPublishers":{ + "shape":"AllowedPublishers", + "documentation":"

Signing profiles for this code signing configuration.

" + }, + "CodeSigningPolicies":{ + "shape":"CodeSigningPolicies", + "documentation":"

The code signing policies define the actions to take if the validation checks fail.

" + } + } + }, + "CreateCodeSigningConfigResponse":{ + "type":"structure", + "required":["CodeSigningConfig"], + "members":{ + "CodeSigningConfig":{ + "shape":"CodeSigningConfig", + "documentation":"

The code signing configuration.

" + } + } + }, "CreateEventSourceMappingRequest":{ "type":"structure", "required":[ @@ -1333,6 +1617,10 @@ "FileSystemConfigs":{ "shape":"FileSystemConfigList", "documentation":"

Connection settings for an Amazon EFS file system.

" + }, + "CodeSigningConfigArn":{ + "shape":"CodeSigningConfigArn", + "documentation":"

To enable code signing for this function, specify the ARN of a code-signing configuration. A code-signing configuration includes set set of signing profiles, which define the trusted publishers for this function.

" } } }, @@ -1368,6 +1656,23 @@ } } }, + "DeleteCodeSigningConfigRequest":{ + "type":"structure", + "required":["CodeSigningConfigArn"], + "members":{ + "CodeSigningConfigArn":{ + "shape":"CodeSigningConfigArn", + "documentation":"

The The Amazon Resource Name (ARN) of the code signing configuration.

", + "location":"uri", + "locationName":"CodeSigningConfigArn" + } + } + }, + "DeleteCodeSigningConfigResponse":{ + "type":"structure", + "members":{ + } + }, "DeleteEventSourceMappingRequest":{ "type":"structure", "required":["UUID"], @@ -1380,6 +1685,18 @@ } } }, + "DeleteFunctionCodeSigningConfigRequest":{ + "type":"structure", + "required":["FunctionName"], + "members":{ + "FunctionName":{ + "shape":"FunctionName", + "documentation":"

The name of the Lambda function.

Name formats

  • Function name - MyFunction.

  • Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction.

  • Partial ARN - 123456789012:function:MyFunction.

The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.

", + "location":"uri", + "locationName":"FunctionName" + } + } + }, "DeleteFunctionConcurrencyRequest":{ "type":"structure", "required":["FunctionName"], @@ -1762,6 +2079,10 @@ "type":"string", "pattern":"arn:(aws[a-zA-Z-]*)?:lambda:[a-z]{2}(-gov)?-[a-z]+-\\d{1}:\\d{12}:function:[a-zA-Z0-9-_]+(:(\\$LATEST|[a-zA-Z0-9-_]+))?" }, + "FunctionArnList":{ + "type":"list", + "member":{"shape":"FunctionArn"} + }, "FunctionCode":{ "type":"structure", "members":{ @@ -1908,6 +2229,14 @@ "FileSystemConfigs":{ "shape":"FileSystemConfigList", "documentation":"

Connection settings for an Amazon EFS file system.

" + }, + "SigningProfileVersionArn":{ + "shape":"Arn", + "documentation":"

The ARN of the signing profile version.

" + }, + "SigningJobArn":{ + "shape":"Arn", + "documentation":"

The ARN of the signing job.

" } }, "documentation":"

Details about a function's configuration.

" @@ -1994,6 +2323,28 @@ } } }, + "GetCodeSigningConfigRequest":{ + "type":"structure", + "required":["CodeSigningConfigArn"], + "members":{ + "CodeSigningConfigArn":{ + "shape":"CodeSigningConfigArn", + "documentation":"

The The Amazon Resource Name (ARN) of the code signing configuration.

", + "location":"uri", + "locationName":"CodeSigningConfigArn" + } + } + }, + "GetCodeSigningConfigResponse":{ + "type":"structure", + "required":["CodeSigningConfig"], + "members":{ + "CodeSigningConfig":{ + "shape":"CodeSigningConfig", + "documentation":"

The code signing configuration

" + } + } + }, "GetEventSourceMappingRequest":{ "type":"structure", "required":["UUID"], @@ -2006,6 +2357,35 @@ } } }, + "GetFunctionCodeSigningConfigRequest":{ + "type":"structure", + "required":["FunctionName"], + "members":{ + "FunctionName":{ + "shape":"FunctionName", + "documentation":"

The name of the Lambda function.

Name formats

  • Function name - MyFunction.

  • Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction.

  • Partial ARN - 123456789012:function:MyFunction.

The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.

", + "location":"uri", + "locationName":"FunctionName" + } + } + }, + "GetFunctionCodeSigningConfigResponse":{ + "type":"structure", + "required":[ + "CodeSigningConfigArn", + "FunctionName" + ], + "members":{ + "CodeSigningConfigArn":{ + "shape":"CodeSigningConfigArn", + "documentation":"

The The Amazon Resource Name (ARN) of the code signing configuration.

" + }, + "FunctionName":{ + "shape":"FunctionName", + "documentation":"

The name of the Lambda function.

Name formats

  • Function name - MyFunction.

  • Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction.

  • Partial ARN - 123456789012:function:MyFunction.

The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.

" + } + } + }, "GetFunctionConcurrencyRequest":{ "type":"structure", "required":["FunctionName"], @@ -2294,6 +2674,16 @@ }, "HttpStatus":{"type":"integer"}, "Integer":{"type":"integer"}, + "InvalidCodeSignatureException":{ + "type":"structure", + "members":{ + "Type":{"shape":"String"}, + "Message":{"shape":"String"} + }, + "documentation":"

The code signature failed the integrity check. Lambda always blocks deployment if the integrity check fails, even if code signing policy is set to WARN.

", + "error":{"httpStatusCode":400}, + "exception":true + }, "InvalidParameterValueException":{ "type":"structure", "members":{ @@ -2556,6 +2946,14 @@ "CodeSize":{ "shape":"Long", "documentation":"

The size of the layer archive in bytes.

" + }, + "SigningProfileVersionArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) for a signing profile version.

" + }, + "SigningJobArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of a signing job.

" } }, "documentation":"

An AWS Lambda layer.

" @@ -2626,6 +3024,14 @@ "CodeSize":{ "shape":"Long", "documentation":"

The size of the layer archive in bytes.

" + }, + "SigningProfileVersionArn":{ + "shape":"String", + "documentation":"

The Amazon Resource Name (ARN) for a signing profile version.

" + }, + "SigningJobArn":{ + "shape":"String", + "documentation":"

The Amazon Resource Name (ARN) of a signing job.

" } }, "documentation":"

Details about a version of an AWS Lambda layer.

" @@ -2738,6 +3144,36 @@ } } }, + "ListCodeSigningConfigsRequest":{ + "type":"structure", + "members":{ + "Marker":{ + "shape":"String", + "documentation":"

Specify the pagination token that's returned by a previous request to retrieve the next page of results.

", + "location":"querystring", + "locationName":"Marker" + }, + "MaxItems":{ + "shape":"MaxListItems", + "documentation":"

Maximum number of items to return.

", + "location":"querystring", + "locationName":"MaxItems" + } + } + }, + "ListCodeSigningConfigsResponse":{ + "type":"structure", + "members":{ + "NextMarker":{ + "shape":"String", + "documentation":"

The pagination token that's included if more results are available.

" + }, + "CodeSigningConfigs":{ + "shape":"CodeSigningConfigList", + "documentation":"

The code signing configurations

" + } + } + }, "ListEventSourceMappingsRequest":{ "type":"structure", "members":{ @@ -2817,6 +3253,43 @@ } } }, + "ListFunctionsByCodeSigningConfigRequest":{ + "type":"structure", + "required":["CodeSigningConfigArn"], + "members":{ + "CodeSigningConfigArn":{ + "shape":"CodeSigningConfigArn", + "documentation":"

The The Amazon Resource Name (ARN) of the code signing configuration.

", + "location":"uri", + "locationName":"CodeSigningConfigArn" + }, + "Marker":{ + "shape":"String", + "documentation":"

Specify the pagination token that's returned by a previous request to retrieve the next page of results.

", + "location":"querystring", + "locationName":"Marker" + }, + "MaxItems":{ + "shape":"MaxListItems", + "documentation":"

Maximum number of items to return.

", + "location":"querystring", + "locationName":"MaxItems" + } + } + }, + "ListFunctionsByCodeSigningConfigResponse":{ + "type":"structure", + "members":{ + "NextMarker":{ + "shape":"String", + "documentation":"

The pagination token that's included if more results are available.

" + }, + "FunctionArns":{ + "shape":"FunctionArnList", + "documentation":"

The function ARNs.

" + } + } + }, "ListFunctionsRequest":{ "type":"structure", "members":{ @@ -3332,6 +3805,42 @@ } } }, + "PutFunctionCodeSigningConfigRequest":{ + "type":"structure", + "required":[ + "CodeSigningConfigArn", + "FunctionName" + ], + "members":{ + "CodeSigningConfigArn":{ + "shape":"CodeSigningConfigArn", + "documentation":"

The The Amazon Resource Name (ARN) of the code signing configuration.

" + }, + "FunctionName":{ + "shape":"FunctionName", + "documentation":"

The name of the Lambda function.

Name formats

  • Function name - MyFunction.

  • Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction.

  • Partial ARN - 123456789012:function:MyFunction.

The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.

", + "location":"uri", + "locationName":"FunctionName" + } + } + }, + "PutFunctionCodeSigningConfigResponse":{ + "type":"structure", + "required":[ + "CodeSigningConfigArn", + "FunctionName" + ], + "members":{ + "CodeSigningConfigArn":{ + "shape":"CodeSigningConfigArn", + "documentation":"

The The Amazon Resource Name (ARN) of the code signing configuration.

" + }, + "FunctionName":{ + "shape":"FunctionName", + "documentation":"

The name of the Lambda function.

Name formats

  • Function name - MyFunction.

  • Function ARN - arn:aws:lambda:us-west-2:123456789012:function:MyFunction.

  • Partial ARN - 123456789012:function:MyFunction.

The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.

" + } + } + }, "PutFunctionConcurrencyRequest":{ "type":"structure", "required":[ @@ -3659,6 +4168,12 @@ "error":{"httpStatusCode":500}, "exception":true }, + "SigningProfileVersionArns":{ + "type":"list", + "member":{"shape":"Arn"}, + "max":20, + "min":1 + }, "SourceAccessConfiguration":{ "type":"structure", "members":{ @@ -3908,6 +4423,40 @@ } } }, + "UpdateCodeSigningConfigRequest":{ + "type":"structure", + "required":["CodeSigningConfigArn"], + "members":{ + "CodeSigningConfigArn":{ + "shape":"CodeSigningConfigArn", + "documentation":"

The The Amazon Resource Name (ARN) of the code signing configuration.

", + "location":"uri", + "locationName":"CodeSigningConfigArn" + }, + "Description":{ + "shape":"Description", + "documentation":"

Descriptive name for this code signing configuration.

" + }, + "AllowedPublishers":{ + "shape":"AllowedPublishers", + "documentation":"

Signing profiles for this code signing configuration.

" + }, + "CodeSigningPolicies":{ + "shape":"CodeSigningPolicies", + "documentation":"

The code signing policy.

" + } + } + }, + "UpdateCodeSigningConfigResponse":{ + "type":"structure", + "required":["CodeSigningConfig"], + "members":{ + "CodeSigningConfig":{ + "shape":"CodeSigningConfig", + "documentation":"

The code signing configuration

" + } + } + }, "UpdateEventSourceMappingRequest":{ "type":"structure", "required":["UUID"], From 93ec73998adfee1e4ebb77fa135c53bba35e20c2 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:05:13 +0000 Subject: [PATCH 265/339] AWS SecurityHub Update: Updated the account management API to support the integration with AWS Organizations. Added new methods to allow users to view and manage the delegated administrator account for Security Hub. --- .../feature-AWSSecurityHub-36ca262.json | 6 + .../codegen-resources/paginators-1.json | 5 + .../codegen-resources/service-2.json | 253 ++++++++++++++++-- 3 files changed, 244 insertions(+), 20 deletions(-) create mode 100644 .changes/next-release/feature-AWSSecurityHub-36ca262.json diff --git a/.changes/next-release/feature-AWSSecurityHub-36ca262.json b/.changes/next-release/feature-AWSSecurityHub-36ca262.json new file mode 100644 index 000000000000..940fedf6185f --- /dev/null +++ b/.changes/next-release/feature-AWSSecurityHub-36ca262.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS SecurityHub", + "contributor": "", + "description": "Updated the account management API to support the integration with AWS Organizations. Added new methods to allow users to view and manage the delegated administrator account for Security Hub." +} diff --git a/services/securityhub/src/main/resources/codegen-resources/paginators-1.json b/services/securityhub/src/main/resources/codegen-resources/paginators-1.json index c7924802d10c..7726e5357a8e 100644 --- a/services/securityhub/src/main/resources/codegen-resources/paginators-1.json +++ b/services/securityhub/src/main/resources/codegen-resources/paginators-1.json @@ -49,6 +49,11 @@ "input_token": "NextToken", "output_token": "NextToken", "limit_key": "MaxResults" + }, + "ListOrganizationAdminAccounts": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults" } } } diff --git a/services/securityhub/src/main/resources/codegen-resources/service-2.json b/services/securityhub/src/main/resources/codegen-resources/service-2.json index 55f7e285541b..5b298cbf2829 100644 --- a/services/securityhub/src/main/resources/codegen-resources/service-2.json +++ b/services/securityhub/src/main/resources/codegen-resources/service-2.json @@ -27,7 +27,7 @@ {"shape":"ResourceNotFoundException"}, {"shape":"InvalidAccessException"} ], - "documentation":"

Accepts the invitation to be a member account and be monitored by the Security Hub master account that the invitation was sent from.

When the member account accepts the invitation, permission is granted to the master account to view findings generated in the member account.

" + "documentation":"

Accepts the invitation to be a member account and be monitored by the Security Hub master account that the invitation was sent from.

This operation is only used by member accounts that are not added through Organizations.

When the member account accepts the invitation, permission is granted to the master account to view findings generated in the member account.

" }, "BatchDisableStandards":{ "name":"BatchDisableStandards", @@ -142,7 +142,7 @@ {"shape":"InvalidAccessException"}, {"shape":"ResourceConflictException"} ], - "documentation":"

Creates a member association in Security Hub between the specified accounts and the account used to make the request, which is the master account. To successfully create a member, you must use this action from an account that already has Security Hub enabled. To enable Security Hub, you can use the EnableSecurityHub operation.

After you use CreateMembers to create member account associations in Security Hub, you must use the InviteMembers operation to invite the accounts to enable Security Hub and become member accounts in Security Hub.

If the account owner accepts the invitation, the account becomes a member account in Security Hub. A permissions policy is added that permits the master account to view the findings generated in the member account. When Security Hub is enabled in the invited account, findings start to be sent to both the member and master accounts.

To remove the association between the master and member accounts, use the DisassociateFromMasterAccount or DisassociateMembers operation.

" + "documentation":"

Creates a member association in Security Hub between the specified accounts and the account used to make the request, which is the master account. If you are integrated with Organizations, then the master account is the Security Hub administrator account that is designated by the organization management account.

CreateMembers is always used to add accounts that are not organization members.

For accounts that are part of an organization, CreateMembers is only used in the following cases:

  • Security Hub is not configured to automatically add new accounts in an organization.

  • The account was disassociated or deleted in Security Hub.

This action can only be used by an account that has Security Hub enabled. To enable Security Hub, you can use the EnableSecurityHub operation.

For accounts that are not organization members, you create the account association and then send an invitation to the member account. To send the invitation, you use the InviteMembers operation. If the account owner accepts the invitation, the account becomes a member account in Security Hub.

Accounts that are part of an organization do not receive an invitation. They automatically become a member account in Security Hub.

A permissions policy is added that permits the master account to view the findings generated in the member account. When Security Hub is enabled in a member account, findings are sent to both the member and master accounts.

To remove the association between the master and member accounts, use the DisassociateFromMasterAccount or DisassociateMembers operation.

" }, "DeclineInvitations":{ "name":"DeclineInvitations", @@ -158,7 +158,7 @@ {"shape":"InvalidAccessException"}, {"shape":"ResourceNotFoundException"} ], - "documentation":"

Declines invitations to become a member account.

" + "documentation":"

Declines invitations to become a member account.

This operation is only used by accounts that are not part of an organization. Organization accounts do not receive invitations.

" }, "DeleteActionTarget":{ "name":"DeleteActionTarget", @@ -208,7 +208,7 @@ {"shape":"ResourceNotFoundException"}, {"shape":"InvalidAccessException"} ], - "documentation":"

Deletes invitations received by the AWS account to become a member account.

" + "documentation":"

Deletes invitations received by the AWS account to become a member account.

This operation is only used by accounts that are not part of an organization. Organization accounts do not receive invitations.

" }, "DeleteMembers":{ "name":"DeleteMembers", @@ -225,7 +225,7 @@ {"shape":"LimitExceededException"}, {"shape":"ResourceNotFoundException"} ], - "documentation":"

Deletes the specified member accounts from Security Hub.

" + "documentation":"

Deletes the specified member accounts from Security Hub.

Can be used to delete member accounts that belong to an organization as well as member accounts that were invited manually.

" }, "DescribeActionTargets":{ "name":"DescribeActionTargets", @@ -260,6 +260,22 @@ ], "documentation":"

Returns details about the Hub resource in your account, including the HubArn and the time when you enabled Security Hub.

" }, + "DescribeOrganizationConfiguration":{ + "name":"DescribeOrganizationConfiguration", + "http":{ + "method":"GET", + "requestUri":"/organization/configuration" + }, + "input":{"shape":"DescribeOrganizationConfigurationRequest"}, + "output":{"shape":"DescribeOrganizationConfigurationResponse"}, + "errors":[ + {"shape":"InternalException"}, + {"shape":"InvalidInputException"}, + {"shape":"InvalidAccessException"}, + {"shape":"LimitExceededException"} + ], + "documentation":"

Returns information about the Organizations configuration for Security Hub. Can only be called from a Security Hub administrator account.

" + }, "DescribeProducts":{ "name":"DescribeProducts", "http":{ @@ -324,6 +340,22 @@ ], "documentation":"

Disables the integration of the specified product with Security Hub. After the integration is disabled, findings from that product are no longer sent to Security Hub.

" }, + "DisableOrganizationAdminAccount":{ + "name":"DisableOrganizationAdminAccount", + "http":{ + "method":"POST", + "requestUri":"/organization/admin/disable" + }, + "input":{"shape":"DisableOrganizationAdminAccountRequest"}, + "output":{"shape":"DisableOrganizationAdminAccountResponse"}, + "errors":[ + {"shape":"InternalException"}, + {"shape":"InvalidInputException"}, + {"shape":"InvalidAccessException"}, + {"shape":"LimitExceededException"} + ], + "documentation":"

Disables a Security Hub administrator account. Can only be called by the organization management account.

" + }, "DisableSecurityHub":{ "name":"DisableSecurityHub", "http":{ @@ -355,7 +387,7 @@ {"shape":"LimitExceededException"}, {"shape":"ResourceNotFoundException"} ], - "documentation":"

Disassociates the current Security Hub member account from the associated master account.

" + "documentation":"

Disassociates the current Security Hub member account from the associated master account.

This operation is only used by accounts that are not part of an organization. For organization accounts, only the master account (the designated Security Hub administrator) can disassociate a member account.

" }, "DisassociateMembers":{ "name":"DisassociateMembers", @@ -372,7 +404,7 @@ {"shape":"LimitExceededException"}, {"shape":"ResourceNotFoundException"} ], - "documentation":"

Disassociates the specified member accounts from the associated master account.

" + "documentation":"

Disassociates the specified member accounts from the associated master account.

Can be used to disassociate both accounts that are in an organization and accounts that were invited manually.

" }, "EnableImportFindingsForProduct":{ "name":"EnableImportFindingsForProduct", @@ -391,6 +423,22 @@ ], "documentation":"

Enables the integration of a partner product with Security Hub. Integrated products send findings to Security Hub.

When you enable a product integration, a permissions policy that grants permission for the product to send findings to Security Hub is applied.

" }, + "EnableOrganizationAdminAccount":{ + "name":"EnableOrganizationAdminAccount", + "http":{ + "method":"POST", + "requestUri":"/organization/admin/enable" + }, + "input":{"shape":"EnableOrganizationAdminAccountRequest"}, + "output":{"shape":"EnableOrganizationAdminAccountResponse"}, + "errors":[ + {"shape":"InternalException"}, + {"shape":"InvalidInputException"}, + {"shape":"InvalidAccessException"}, + {"shape":"LimitExceededException"} + ], + "documentation":"

Designates the Security Hub administrator account for an organization. Can only be called by the organization management account.

" + }, "EnableSecurityHub":{ "name":"EnableSecurityHub", "http":{ @@ -505,7 +553,7 @@ {"shape":"LimitExceededException"}, {"shape":"ResourceNotFoundException"} ], - "documentation":"

Provides the details for the Security Hub master account for the current member account.

" + "documentation":"

Provides the details for the Security Hub master account for the current member account.

Can be used by both member accounts that are in an organization and accounts that were invited manually.

" }, "GetMembers":{ "name":"GetMembers", @@ -522,7 +570,7 @@ {"shape":"LimitExceededException"}, {"shape":"ResourceNotFoundException"} ], - "documentation":"

Returns the details for the Security Hub member accounts for the specified account IDs.

" + "documentation":"

Returns the details for the Security Hub member accounts for the specified account IDs.

A master account can be either a delegated Security Hub administrator account for an organization or a master account that enabled Security Hub manually.

The results include both member accounts that are in an organization and accounts that were invited manually.

" }, "InviteMembers":{ "name":"InviteMembers", @@ -539,7 +587,7 @@ {"shape":"LimitExceededException"}, {"shape":"ResourceNotFoundException"} ], - "documentation":"

Invites other AWS accounts to become member accounts for the Security Hub master account that the invitation is sent from.

Before you can use this action to invite a member, you must first use the CreateMembers action to create the member account in Security Hub.

When the account owner accepts the invitation to become a member account and enables Security Hub, the master account can view the findings generated from the member account.

" + "documentation":"

Invites other AWS accounts to become member accounts for the Security Hub master account that the invitation is sent from.

This operation is only used to invite accounts that do not belong to an organization. Organization accounts do not receive invitations.

Before you can use this action to invite a member, you must first use the CreateMembers action to create the member account in Security Hub.

When the account owner enables Security Hub and accepts the invitation to become a member account, the master account can view the findings generated from the member account.

" }, "ListEnabledProductsForImport":{ "name":"ListEnabledProductsForImport", @@ -570,7 +618,7 @@ {"shape":"InvalidAccessException"}, {"shape":"LimitExceededException"} ], - "documentation":"

Lists all Security Hub membership invitations that were sent to the current AWS account.

" + "documentation":"

Lists all Security Hub membership invitations that were sent to the current AWS account.

This operation is only used by accounts that do not belong to an organization. Organization accounts do not receive invitations.

" }, "ListMembers":{ "name":"ListMembers", @@ -586,7 +634,23 @@ {"shape":"InvalidAccessException"}, {"shape":"LimitExceededException"} ], - "documentation":"

Lists details about all member accounts for the current Security Hub master account.

" + "documentation":"

Lists details about all member accounts for the current Security Hub master account.

The results include both member accounts that belong to an organization and member accounts that were invited manually.

" + }, + "ListOrganizationAdminAccounts":{ + "name":"ListOrganizationAdminAccounts", + "http":{ + "method":"GET", + "requestUri":"/organization/admin" + }, + "input":{"shape":"ListOrganizationAdminAccountsRequest"}, + "output":{"shape":"ListOrganizationAdminAccountsResponse"}, + "errors":[ + {"shape":"InternalException"}, + {"shape":"InvalidInputException"}, + {"shape":"InvalidAccessException"}, + {"shape":"LimitExceededException"} + ], + "documentation":"

Lists the Security Hub administrator accounts. Can only be called by the organization management account.

" }, "ListTagsForResource":{ "name":"ListTagsForResource", @@ -684,6 +748,22 @@ ], "documentation":"

Updates the Security Hub insight identified by the specified insight ARN.

" }, + "UpdateOrganizationConfiguration":{ + "name":"UpdateOrganizationConfiguration", + "http":{ + "method":"POST", + "requestUri":"/organization/configuration" + }, + "input":{"shape":"UpdateOrganizationConfigurationRequest"}, + "output":{"shape":"UpdateOrganizationConfigurationResponse"}, + "errors":[ + {"shape":"InternalException"}, + {"shape":"InvalidInputException"}, + {"shape":"InvalidAccessException"}, + {"shape":"LimitExceededException"} + ], + "documentation":"

Used to update the configuration related to Organizations. Can only be called from a Security Hub administrator account.

" + }, "UpdateSecurityHubConfiguration":{ "name":"UpdateSecurityHubConfiguration", "http":{ @@ -753,6 +833,7 @@ }, "AccountDetails":{ "type":"structure", + "required":["AccountId"], "members":{ "AccountId":{ "shape":"AccountId", @@ -801,6 +882,36 @@ "type":"list", "member":{"shape":"ActionTarget"} }, + "AdminAccount":{ + "type":"structure", + "members":{ + "AccountId":{ + "shape":"NonEmptyString", + "documentation":"

The AWS account identifier of the Security Hub administrator account.

" + }, + "Status":{ + "shape":"AdminStatus", + "documentation":"

The current status of the Security Hub administrator account. Indicates whether the account is currently enabled as a Security Hub administrator.

" + } + }, + "documentation":"

Represents a Security Hub administrator account designated by an organization management account.

" + }, + "AdminAccounts":{ + "type":"list", + "member":{"shape":"AdminAccount"} + }, + "AdminStatus":{ + "type":"string", + "enum":[ + "ENABLED", + "DISABLE_IN_PROGRESS" + ] + }, + "AdminsMaxResults":{ + "type":"integer", + "max":10, + "min":1 + }, "ArnList":{ "type":"list", "member":{"shape":"NonEmptyString"} @@ -6222,10 +6333,11 @@ }, "CreateMembersRequest":{ "type":"structure", + "required":["AccountDetails"], "members":{ "AccountDetails":{ "shape":"AccountDetailsList", - "documentation":"

The list of accounts to associate with the Security Hub master account. For each account, the list includes the account ID and the email address.

" + "documentation":"

The list of accounts to associate with the Security Hub master account. For each account, the list includes the account ID and optionally the email address.

" } } }, @@ -6238,6 +6350,11 @@ } } }, + "CrossAccountMaxResults":{ + "type":"integer", + "max":50, + "min":1 + }, "Cvss":{ "type":"structure", "members":{ @@ -6384,6 +6501,7 @@ }, "DeleteMembersRequest":{ "type":"structure", + "required":["AccountIds"], "members":{ "AccountIds":{ "shape":"AccountIdList", @@ -6459,6 +6577,24 @@ } } }, + "DescribeOrganizationConfigurationRequest":{ + "type":"structure", + "members":{ + } + }, + "DescribeOrganizationConfigurationResponse":{ + "type":"structure", + "members":{ + "AutoEnable":{ + "shape":"Boolean", + "documentation":"

Whether to automatically enable Security Hub for new accounts in the organization.

If set to true, then Security Hub is enabled for new accounts. If set to false, then new accounts are not added automatically.

" + }, + "MemberAccountLimitReached":{ + "shape":"Boolean", + "documentation":"

Whether the maximum number of allowed member accounts are already associated with the Security Hub administrator account.

" + } + } + }, "DescribeProductsRequest":{ "type":"structure", "members":{ @@ -6496,7 +6632,7 @@ "members":{ "StandardsSubscriptionArn":{ "shape":"NonEmptyString", - "documentation":"

The ARN of a resource that represents your subscription to a supported standard.

", + "documentation":"

The ARN of a resource that represents your subscription to a supported standard. To get the subscription ARNs of the standards you have enabled, use the GetEnabledStandards operation.

", "location":"uri", "locationName":"StandardsSubscriptionArn" }, @@ -6574,6 +6710,21 @@ "members":{ } }, + "DisableOrganizationAdminAccountRequest":{ + "type":"structure", + "required":["AdminAccountId"], + "members":{ + "AdminAccountId":{ + "shape":"NonEmptyString", + "documentation":"

The AWS account identifier of the Security Hub administrator account.

" + } + } + }, + "DisableOrganizationAdminAccountResponse":{ + "type":"structure", + "members":{ + } + }, "DisableSecurityHubRequest":{ "type":"structure", "members":{ @@ -6596,6 +6747,7 @@ }, "DisassociateMembersRequest":{ "type":"structure", + "required":["AccountIds"], "members":{ "AccountIds":{ "shape":"AccountIdList", @@ -6628,6 +6780,21 @@ } } }, + "EnableOrganizationAdminAccountRequest":{ + "type":"structure", + "required":["AdminAccountId"], + "members":{ + "AdminAccountId":{ + "shape":"NonEmptyString", + "documentation":"

The AWS account identifier of the account to designate as the Security Hub administrator account.

" + } + } + }, + "EnableOrganizationAdminAccountResponse":{ + "type":"structure", + "members":{ + } + }, "EnableSecurityHubRequest":{ "type":"structure", "members":{ @@ -6952,7 +7119,7 @@ "Message":{"shape":"NonEmptyString"}, "Code":{"shape":"NonEmptyString"} }, - "documentation":"

AWS Security Hub isn't enabled for the account used to make this request.

", + "documentation":"

There is an issue with the account used to make the request. Either Security Hub is not enabled for the account, or the account does not have permission to perform this action.

", "error":{"httpStatusCode":401}, "exception":true }, @@ -6994,6 +7161,7 @@ }, "InviteMembersRequest":{ "type":"structure", + "required":["AccountIds"], "members":{ "AccountIds":{ "shape":"AccountIdList", @@ -7066,7 +7234,7 @@ "Message":{"shape":"NonEmptyString"}, "Code":{"shape":"NonEmptyString"} }, - "documentation":"

The request was rejected because it attempted to create resources beyond the current AWS account limits. The error code describes the limit exceeded.

", + "documentation":"

The request was rejected because it attempted to create resources beyond the current AWS account or throttling limits. The error code describes the limit exceeded.

", "error":{"httpStatusCode":429}, "exception":true }, @@ -7104,7 +7272,7 @@ "type":"structure", "members":{ "MaxResults":{ - "shape":"MaxResults", + "shape":"CrossAccountMaxResults", "documentation":"

The maximum number of items to return in the response.

", "location":"querystring", "locationName":"MaxResults" @@ -7135,12 +7303,12 @@ "members":{ "OnlyAssociated":{ "shape":"Boolean", - "documentation":"

Specifies which member accounts to include in the response based on their relationship status with the master account. The default value is TRUE.

If OnlyAssociated is set to TRUE, the response includes member accounts whose relationship status with the master is set to ENABLED or DISABLED.

If OnlyAssociated is set to FALSE, the response includes all existing member accounts.

", + "documentation":"

Specifies which member accounts to include in the response based on their relationship status with the master account. The default value is TRUE.

If OnlyAssociated is set to TRUE, the response includes member accounts whose relationship status with the master is set to ENABLED.

If OnlyAssociated is set to FALSE, the response includes all existing member accounts.

", "location":"querystring", "locationName":"OnlyAssociated" }, "MaxResults":{ - "shape":"MaxResults", + "shape":"CrossAccountMaxResults", "documentation":"

The maximum number of items to return in the response.

", "location":"querystring", "locationName":"MaxResults" @@ -7166,6 +7334,36 @@ } } }, + "ListOrganizationAdminAccountsRequest":{ + "type":"structure", + "members":{ + "MaxResults":{ + "shape":"AdminsMaxResults", + "documentation":"

The maximum number of items to return in the response.

", + "location":"querystring", + "locationName":"MaxResults" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token that is required for pagination. On your first call to the ListOrganizationAdminAccounts operation, set the value of this parameter to NULL. For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.

", + "location":"querystring", + "locationName":"NextToken" + } + } + }, + "ListOrganizationAdminAccountsResponse":{ + "type":"structure", + "members":{ + "AdminAccounts":{ + "shape":"AdminAccounts", + "documentation":"

The list of Security Hub administrator accounts.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The pagination token to use to request the next page of results.

" + } + } + }, "ListTagsForResourceRequest":{ "type":"structure", "required":["ResourceArn"], @@ -7308,7 +7506,7 @@ }, "MemberStatus":{ "shape":"NonEmptyString", - "documentation":"

The status of the relationship between the member account and its master account.

The status can have one of the following values:

  • CREATED - Indicates that the master account added the member account, but has not yet invited the member account.

  • INVITED - Indicates that the master account invited the member account. The member account has not yet responded to the invitation.

  • ASSOCIATED - Indicates that the member account accepted the invitation.

  • REMOVED - Indicates that the master account disassociated the member account.

  • RESIGNED - Indicates that the member account disassociated themselves from the master account.

  • DELETED - Indicates that the master account deleted the member account.

" + "documentation":"

The status of the relationship between the member account and its master account.

The status can have one of the following values:

  • CREATED - Indicates that the master account added the member account, but has not yet invited the member account.

  • INVITED - Indicates that the master account invited the member account. The member account has not yet responded to the invitation.

  • ENABLED - Indicates that the member account is currently active. For manually invited member accounts, indicates that the member account accepted the invitation.

  • REMOVED - Indicates that the master account disassociated the member account.

  • RESIGNED - Indicates that the member account disassociated themselves from the master account.

  • DELETED - Indicates that the master account deleted the member account.

" }, "InvitedAt":{ "shape":"Timestamp", @@ -8524,6 +8722,21 @@ "members":{ } }, + "UpdateOrganizationConfigurationRequest":{ + "type":"structure", + "required":["AutoEnable"], + "members":{ + "AutoEnable":{ + "shape":"Boolean", + "documentation":"

Whether to automatically enable Security Hub for new accounts in the organization.

By default, this is false, and new accounts are not added automatically.

To automatically enable Security Hub for new accounts, set this to true.

" + } + } + }, + "UpdateOrganizationConfigurationResponse":{ + "type":"structure", + "members":{ + } + }, "UpdateSecurityHubConfigurationRequest":{ "type":"structure", "members":{ From ae26661f1e1907c76dfd7b43763a74c621241142 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:05:12 +0000 Subject: [PATCH 266/339] Amazon Elastic MapReduce Update: Add API support for EMR Studio, a new notebook-first IDE for data scientists and data engineers with single sign-on, Jupyter notebooks, automated infrastructure provisioning, and job diagnosis. --- ...eature-AmazonElasticMapReduce-50d080a.json | 6 + .../codegen-resources/paginators-1.json | 10 + .../codegen-resources/service-2.json | 714 ++++++++++++++++-- 3 files changed, 663 insertions(+), 67 deletions(-) create mode 100644 .changes/next-release/feature-AmazonElasticMapReduce-50d080a.json diff --git a/.changes/next-release/feature-AmazonElasticMapReduce-50d080a.json b/.changes/next-release/feature-AmazonElasticMapReduce-50d080a.json new file mode 100644 index 000000000000..d77d06e0164c --- /dev/null +++ b/.changes/next-release/feature-AmazonElasticMapReduce-50d080a.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Elastic MapReduce", + "contributor": "", + "description": "Add API support for EMR Studio, a new notebook-first IDE for data scientists and data engineers with single sign-on, Jupyter notebooks, automated infrastructure provisioning, and job diagnosis." +} diff --git a/services/emr/src/main/resources/codegen-resources/paginators-1.json b/services/emr/src/main/resources/codegen-resources/paginators-1.json index 7d72c7c103b0..d5b5407b3464 100644 --- a/services/emr/src/main/resources/codegen-resources/paginators-1.json +++ b/services/emr/src/main/resources/codegen-resources/paginators-1.json @@ -42,6 +42,16 @@ "input_token": "Marker", "output_token": "Marker", "result_key": "Steps" + }, + "ListStudioSessionMappings": { + "input_token": "Marker", + "output_token": "Marker", + "result_key": "SessionMappings" + }, + "ListStudios": { + "input_token": "Marker", + "output_token": "Marker", + "result_key": "Studios" } } } \ No newline at end of file diff --git a/services/emr/src/main/resources/codegen-resources/service-2.json b/services/emr/src/main/resources/codegen-resources/service-2.json index e29a3289175a..692b62a9555a 100644 --- a/services/emr/src/main/resources/codegen-resources/service-2.json +++ b/services/emr/src/main/resources/codegen-resources/service-2.json @@ -79,7 +79,7 @@ {"shape":"InternalServerError"}, {"shape":"InvalidRequestException"} ], - "documentation":"

Cancels a pending step or steps in a running cluster. Available only in Amazon EMR versions 4.8.0 and later, excluding version 5.0.0. A maximum of 256 steps are allowed in each CancelSteps request. CancelSteps is idempotent but asynchronous; it does not guarantee a step will be canceled, even if the request is successfully submitted. You can only cancel steps that are in a PENDING state.

" + "documentation":"

Cancels a pending step or steps in a running cluster. Available only in Amazon EMR versions 4.8.0 and later, excluding version 5.0.0. A maximum of 256 steps are allowed in each CancelSteps request. CancelSteps is idempotent but asynchronous; it does not guarantee that a step will be canceled, even if the request is successfully submitted. You can only cancel steps that are in a PENDING state.

" }, "CreateSecurityConfiguration":{ "name":"CreateSecurityConfiguration", @@ -95,6 +95,33 @@ ], "documentation":"

Creates a security configuration, which is stored in the service and can be specified when a cluster is created.

" }, + "CreateStudio":{ + "name":"CreateStudio", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateStudioInput"}, + "output":{"shape":"CreateStudioOutput"}, + "errors":[ + {"shape":"InternalServerException"}, + {"shape":"InvalidRequestException"} + ], + "documentation":"

The Amazon EMR Studio APIs are in preview release for Amazon EMR and are subject to change.

Creates a new Amazon EMR Studio.

" + }, + "CreateStudioSessionMapping":{ + "name":"CreateStudioSessionMapping", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateStudioSessionMappingInput"}, + "errors":[ + {"shape":"InternalServerError"}, + {"shape":"InvalidRequestException"} + ], + "documentation":"

The Amazon EMR Studio APIs are in preview release for Amazon EMR and are subject to change.

Maps a user or group to the Amazon EMR Studio specified by StudioId, and applies a session policy to refine Studio permissions for that user or group.

" + }, "DeleteSecurityConfiguration":{ "name":"DeleteSecurityConfiguration", "http":{ @@ -109,6 +136,32 @@ ], "documentation":"

Deletes a security configuration.

" }, + "DeleteStudio":{ + "name":"DeleteStudio", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteStudioInput"}, + "errors":[ + {"shape":"InternalServerException"}, + {"shape":"InvalidRequestException"} + ], + "documentation":"

The Amazon EMR Studio APIs are in preview release for Amazon EMR and are subject to change.

Removes an Amazon EMR Studio from the Studio metadata store.

" + }, + "DeleteStudioSessionMapping":{ + "name":"DeleteStudioSessionMapping", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteStudioSessionMappingInput"}, + "errors":[ + {"shape":"InternalServerError"}, + {"shape":"InvalidRequestException"} + ], + "documentation":"

The Amazon EMR Studio APIs are in preview release for Amazon EMR and are subject to change.

Removes a user or group from an Amazon EMR Studio.

" + }, "DescribeCluster":{ "name":"DescribeCluster", "http":{ @@ -134,7 +187,7 @@ "errors":[ {"shape":"InternalServerError"} ], - "documentation":"

This API is deprecated and will eventually be removed. We recommend you use ListClusters, DescribeCluster, ListSteps, ListInstanceGroups and ListBootstrapActions instead.

DescribeJobFlows returns a list of job flows that match all of the supplied parameters. The parameters can include a list of job flow IDs, job flow states, and restrictions on job flow creation date and time.

Regardless of supplied parameters, only job flows created within the last two months are returned.

If no parameters are supplied, then job flows matching either of the following criteria are returned:

  • Job flows created and completed in the last two weeks

  • Job flows created within the last two months that are in one of the following states: RUNNING, WAITING, SHUTTING_DOWN, STARTING

Amazon EMR can return a maximum of 512 job flow descriptions.

", + "documentation":"

This API is no longer supported and will eventually be removed. We recommend you use ListClusters, DescribeCluster, ListSteps, ListInstanceGroups and ListBootstrapActions instead.

DescribeJobFlows returns a list of job flows that match all of the supplied parameters. The parameters can include a list of job flow IDs, job flow states, and restrictions on job flow creation date and time.

Regardless of supplied parameters, only job flows created within the last two months are returned.

If no parameters are supplied, then job flows matching either of the following criteria are returned:

  • Job flows created and completed in the last two weeks

  • Job flows created within the last two months that are in one of the following states: RUNNING, WAITING, SHUTTING_DOWN, STARTING

Amazon EMR can return a maximum of 512 job flow descriptions.

", "deprecated":true }, "DescribeNotebookExecution":{ @@ -179,6 +232,20 @@ ], "documentation":"

Provides more detail about the cluster step.

" }, + "DescribeStudio":{ + "name":"DescribeStudio", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeStudioInput"}, + "output":{"shape":"DescribeStudioOutput"}, + "errors":[ + {"shape":"InternalServerException"}, + {"shape":"InvalidRequestException"} + ], + "documentation":"

The Amazon EMR Studio APIs are in preview release for Amazon EMR and are subject to change.

Returns details for the specified Amazon EMR Studio including ID, Name, VPC, Studio access URL, and so on.

" + }, "GetBlockPublicAccessConfiguration":{ "name":"GetBlockPublicAccessConfiguration", "http":{ @@ -201,7 +268,21 @@ }, "input":{"shape":"GetManagedScalingPolicyInput"}, "output":{"shape":"GetManagedScalingPolicyOutput"}, - "documentation":"

Fetches the attached managed scaling policy for an Amazon EMR cluster.

" + "documentation":"

Fetches the attached managed scaling policy for an Amazon EMR cluster.

" + }, + "GetStudioSessionMapping":{ + "name":"GetStudioSessionMapping", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetStudioSessionMappingInput"}, + "output":{"shape":"GetStudioSessionMappingOutput"}, + "errors":[ + {"shape":"InternalServerError"}, + {"shape":"InvalidRequestException"} + ], + "documentation":"

The Amazon EMR Studio APIs are in preview release for Amazon EMR and are subject to change.

Fetches mapping details for the specified Amazon EMR Studio and identity (user or group).

" }, "ListBootstrapActions":{ "name":"ListBootstrapActions", @@ -315,6 +396,34 @@ ], "documentation":"

Provides a list of steps for the cluster in reverse order unless you specify stepIds with the request of filter by StepStates. You can specify a maximum of ten stepIDs.

" }, + "ListStudioSessionMappings":{ + "name":"ListStudioSessionMappings", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListStudioSessionMappingsInput"}, + "output":{"shape":"ListStudioSessionMappingsOutput"}, + "errors":[ + {"shape":"InternalServerError"}, + {"shape":"InvalidRequestException"} + ], + "documentation":"

The Amazon EMR Studio APIs are in preview release for Amazon EMR and are subject to change.

Returns a list of all user or group session mappings for the EMR Studio specified by StudioId.

" + }, + "ListStudios":{ + "name":"ListStudios", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListStudiosInput"}, + "output":{"shape":"ListStudiosOutput"}, + "errors":[ + {"shape":"InternalServerException"}, + {"shape":"InvalidRequestException"} + ], + "documentation":"

The Amazon EMR Studio APIs are in preview release for Amazon EMR and are subject to change.

Returns a list of all Amazon EMR Studios associated with the AWS account. The list includes details such as ID, Studio Access URL, and creation time for each Studio.

" + }, "ModifyCluster":{ "name":"ModifyCluster", "http":{ @@ -386,7 +495,7 @@ }, "input":{"shape":"PutManagedScalingPolicyInput"}, "output":{"shape":"PutManagedScalingPolicyOutput"}, - "documentation":"

Creates or updates a managed scaling policy for an Amazon EMR cluster. The managed scaling policy defines the limits for resources, such as EC2 instances that can be added or terminated from a cluster. The policy only applies to the core and task nodes. The master node cannot be scaled after initial configuration.

" + "documentation":"

Creates or updates a managed scaling policy for an Amazon EMR cluster. The managed scaling policy defines the limits for resources, such as EC2 instances that can be added or terminated from a cluster. The policy only applies to the core and task nodes. The master node cannot be scaled after initial configuration.

" }, "RemoveAutoScalingPolicy":{ "name":"RemoveAutoScalingPolicy", @@ -497,6 +606,19 @@ {"shape":"InternalServerError"} ], "documentation":"

TerminateJobFlows shuts a list of clusters (job flows) down. When a job flow is shut down, any step not yet completed is canceled and the EC2 instances on which the cluster is running are stopped. Any log files not already saved are uploaded to Amazon S3 if a LogUri was specified when the cluster was created.

The maximum number of clusters allowed is 10. The call to TerminateJobFlows is asynchronous. Depending on the configuration of the cluster, it may take up to 1-5 minutes for the cluster to completely terminate and release allocated resources, such as Amazon EC2 instances.

" + }, + "UpdateStudioSessionMapping":{ + "name":"UpdateStudioSessionMapping", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateStudioSessionMappingInput"}, + "errors":[ + {"shape":"InternalServerError"}, + {"shape":"InvalidRequestException"} + ], + "documentation":"

The Amazon EMR Studio APIs are in preview release for Amazon EMR and are subject to change.

Updates the session policy attached to the user or group for the specified Amazon EMR Studio.

" } }, "shapes":{ @@ -620,7 +742,7 @@ }, "Tags":{ "shape":"TagList", - "documentation":"

A list of tags to associate with a cluster and propagate to EC2 instances. Tags are user-defined key/value pairs that consist of a required key string with a maximum of 128 characters, and an optional value string with a maximum of 256 characters.

" + "documentation":"

A list of tags to associate with a cluster and propagate to EC2 instances. Tags are user-defined key-value pairs that consist of a required key string with a maximum of 128 characters, and an optional value string with a maximum of 256 characters.

" } }, "documentation":"

This input identifies a cluster and a list of tags to attach.

" @@ -670,6 +792,13 @@ "max":2048, "min":20 }, + "AuthMode":{ + "type":"string", + "enum":[ + "SSO", + "IAM" + ] + }, "AutoScalingPolicy":{ "type":"structure", "required":[ @@ -759,7 +888,7 @@ "members":{ "BlockPublicSecurityGroupRules":{ "shape":"Boolean", - "documentation":"

Indicates whether EMR block public access is enabled (true) or disabled (false). By default, the value is false for accounts that have created EMR clusters before July 2019. For accounts created after this, the default is true.

" + "documentation":"

Indicates whether Amazon EMR block public access is enabled (true) or disabled (false). By default, the value is false for accounts that have created EMR clusters before July 2019. For accounts created after this, the default is true.

" }, "PermittedPublicSecurityGroupRuleRanges":{ "shape":"PortRanges", @@ -855,7 +984,7 @@ "members":{ "ClusterId":{ "shape":"XmlStringMaxLen256", - "documentation":"

The ClusterID for which specified steps will be canceled. Use RunJobFlow and ListClusters to get ClusterIDs.

" + "documentation":"

The ClusterID for the specified steps that will be canceled. Use RunJobFlow and ListClusters to get ClusterIDs.

" }, "StepIds":{ "shape":"StepIdsList", @@ -863,7 +992,7 @@ }, "StepCancellationOption":{ "shape":"StepCancellationOption", - "documentation":"

The option to choose for cancelling RUNNING steps. By default, the value is SEND_INTERRUPT.

" + "documentation":"

The option to choose to cancel RUNNING steps. By default, the value is SEND_INTERRUPT.

" } }, "documentation":"

The input argument to the CancelSteps operation.

" @@ -1022,7 +1151,7 @@ }, "ScaleDownBehavior":{ "shape":"ScaleDownBehavior", - "documentation":"

The way that individual Amazon EC2 instances terminate when an automatic scale-in activity occurs or an instance group is resized. TERMINATE_AT_INSTANCE_HOUR indicates that Amazon EMR terminates nodes at the instance-hour boundary, regardless of when the request to terminate the instance was submitted. This option is only available with Amazon EMR 5.1.0 and later and is the default for clusters created using that version. TERMINATE_AT_TASK_COMPLETION indicates that Amazon EMR blacklists and drains tasks from nodes before terminating the Amazon EC2 instances, regardless of the instance-hour boundary. With either behavior, Amazon EMR removes the least active nodes first and blocks instance termination if it could lead to HDFS corruption. TERMINATE_AT_TASK_COMPLETION is available only in Amazon EMR version 4.1.0 and later, and is the default for versions of Amazon EMR earlier than 5.1.0.

" + "documentation":"

The way that individual Amazon EC2 instances terminate when an automatic scale-in activity occurs or an instance group is resized. TERMINATE_AT_INSTANCE_HOUR indicates that Amazon EMR terminates nodes at the instance-hour boundary, regardless of when the request to terminate the instance was submitted. This option is only available with Amazon EMR 5.1.0 and later and is the default for clusters created using that version. TERMINATE_AT_TASK_COMPLETION indicates that Amazon EMR adds nodes to a deny list and drains tasks from nodes before terminating the Amazon EC2 instances, regardless of the instance-hour boundary. With either behavior, Amazon EMR removes the least active nodes first and blocks instance termination if it could lead to HDFS corruption. TERMINATE_AT_TASK_COMPLETION is available only in Amazon EMR version 4.1.0 and later, and is the default for versions of Amazon EMR earlier than 5.1.0.

" }, "CustomAmiId":{ "shape":"XmlStringMaxLen256", @@ -1030,7 +1159,7 @@ }, "EbsRootVolumeSize":{ "shape":"Integer", - "documentation":"

The size, in GiB, of the EBS root device volume of the Linux AMI that is used for each EC2 instance. Available in Amazon EMR version 4.x and later.

" + "documentation":"

The size, in GiB, of the Amazon EBS root device volume of the Linux AMI that is used for each EC2 instance. Available in Amazon EMR version 4.x and later.

" }, "RepoUpgradeOnBoot":{ "shape":"RepoUpgradeOnBoot", @@ -1038,7 +1167,7 @@ }, "KerberosAttributes":{ "shape":"KerberosAttributes", - "documentation":"

Attributes for Kerberos configuration when Kerberos authentication is enabled using a security configuration. For more information see Use Kerberos Authentication in the EMR Management Guide.

" + "documentation":"

Attributes for Kerberos configuration when Kerberos authentication is enabled using a security configuration. For more information see Use Kerberos Authentication in the Amazon EMR Management Guide.

" }, "ClusterArn":{ "shape":"ArnType", @@ -1164,7 +1293,7 @@ }, "ReadyDateTime":{ "shape":"Date", - "documentation":"

The date and time when the cluster was ready to execute steps.

" + "documentation":"

The date and time when the cluster was ready to run steps.

" }, "EndDateTime":{ "shape":"Date", @@ -1218,19 +1347,19 @@ }, "MinimumCapacityUnits":{ "shape":"Integer", - "documentation":"

The lower boundary of EC2 units. It is measured through VCPU cores or instances for instance groups and measured through units for instance fleets. Managed scaling activities are not allowed beyond this boundary. The limit only applies to the core and task nodes. The master node cannot be scaled after initial configuration.

" + "documentation":"

The lower boundary of EC2 units. It is measured through vCPU cores or instances for instance groups and measured through units for instance fleets. Managed scaling activities are not allowed beyond this boundary. The limit only applies to the core and task nodes. The master node cannot be scaled after initial configuration.

" }, "MaximumCapacityUnits":{ "shape":"Integer", - "documentation":"

The upper boundary of EC2 units. It is measured through VCPU cores or instances for instance groups and measured through units for instance fleets. Managed scaling activities are not allowed beyond this boundary. The limit only applies to the core and task nodes. The master node cannot be scaled after initial configuration.

" + "documentation":"

The upper boundary of EC2 units. It is measured through vCPU cores or instances for instance groups and measured through units for instance fleets. Managed scaling activities are not allowed beyond this boundary. The limit only applies to the core and task nodes. The master node cannot be scaled after initial configuration.

" }, "MaximumOnDemandCapacityUnits":{ "shape":"Integer", - "documentation":"

The upper boundary of On-Demand EC2 units. It is measured through VCPU cores or instances for instance groups and measured through units for instance fleets. The On-Demand units are not allowed to scale beyond this boundary. The parameter is used to split capacity allocation between On-Demand and Spot instances.

" + "documentation":"

The upper boundary of On-Demand EC2 units. It is measured through vCPU cores or instances for instance groups and measured through units for instance fleets. The On-Demand units are not allowed to scale beyond this boundary. The parameter is used to split capacity allocation between On-Demand and Spot Instances.

" }, "MaximumCoreCapacityUnits":{ "shape":"Integer", - "documentation":"

The upper boundary of EC2 units for core node type in a cluster. It is measured through VCPU cores or instances for instance groups and measured through units for instance fleets. The core units are not allowed to scale beyond this boundary. The parameter is used to split capacity allocation between core and task nodes.

" + "documentation":"

The upper boundary of EC2 units for core node type in a cluster. It is measured through vCPU cores or instances for instance groups and measured through units for instance fleets. The core units are not allowed to scale beyond this boundary. The parameter is used to split capacity allocation between core and task nodes.

" } }, "documentation":"

The EC2 unit limits for a managed scaling policy. The managed scaling activity of a cluster can not be above or below these limits. The limit only applies to the core and task nodes. The master node cannot be scaled after initial configuration.

" @@ -1299,6 +1428,108 @@ } } }, + "CreateStudioInput":{ + "type":"structure", + "required":[ + "Name", + "AuthMode", + "VpcId", + "SubnetIds", + "ServiceRole", + "UserRole", + "WorkspaceSecurityGroupId", + "EngineSecurityGroupId" + ], + "members":{ + "Name":{ + "shape":"XmlStringMaxLen256", + "documentation":"

A descriptive name for the Amazon EMR Studio.

" + }, + "Description":{ + "shape":"XmlStringMaxLen256", + "documentation":"

A detailed description of the Studio.

" + }, + "AuthMode":{ + "shape":"AuthMode", + "documentation":"

Specifies whether the Studio authenticates users using single sign-on (SSO) or IAM. Amazon EMR Studio currently only supports SSO authentication.

" + }, + "VpcId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The ID of the Amazon Virtual Private Cloud (Amazon VPC) to associate with the Studio.

" + }, + "SubnetIds":{ + "shape":"SubnetIdList", + "documentation":"

A list of subnet IDs to associate with the Studio. The subnets must belong to the VPC specified by VpcId. Studio users can create a Workspace in any of the specified subnets.

" + }, + "ServiceRole":{ + "shape":"XmlString", + "documentation":"

The IAM role that will be assumed by the Amazon EMR Studio. The service role provides a way for Amazon EMR Studio to interoperate with other AWS services.

" + }, + "UserRole":{ + "shape":"XmlString", + "documentation":"

The IAM user role that will be assumed by users and groups logged in to a Studio. The permissions attached to this IAM role can be scoped down for each user or group using session policies.

" + }, + "WorkspaceSecurityGroupId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The ID of the Amazon EMR Studio Workspace security group. The Workspace security group allows outbound network traffic to resources in the Engine security group, and it must be in the same VPC specified by VpcId.

" + }, + "EngineSecurityGroupId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The ID of the Amazon EMR Studio Engine security group. The Engine security group allows inbound network traffic from the Workspace security group, and it must be in the same VPC specified by VpcId.

" + }, + "DefaultS3Location":{ + "shape":"XmlString", + "documentation":"

The default Amazon S3 location to back up EMR Studio Workspaces and notebook files. A Studio user can select an alternative Amazon S3 location when creating a Workspace.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

A list of tags to associate with the Studio. Tags are user-defined key-value pairs that consist of a required key string with a maximum of 128 characters, and an optional value string with a maximum of 256 characters.

" + } + } + }, + "CreateStudioOutput":{ + "type":"structure", + "members":{ + "StudioId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The ID of the Amazon EMR Studio.

" + }, + "Url":{ + "shape":"XmlString", + "documentation":"

The unique Studio access URL.

" + } + } + }, + "CreateStudioSessionMappingInput":{ + "type":"structure", + "required":[ + "StudioId", + "IdentityType", + "SessionPolicyArn" + ], + "members":{ + "StudioId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The ID of the Amazon EMR Studio to which the user or group will be mapped.

" + }, + "IdentityId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The globally unique identifier (GUID) of the user or group from the AWS SSO Identity Store. For more information, see UserId and GroupId in the AWS SSO Identity Store API Reference. Either IdentityName or IdentityId must be specified.

" + }, + "IdentityName":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The name of the user or group. For more information, see UserName and DisplayName in the AWS SSO Identity Store API Reference. Either IdentityName or IdentityId must be specified.

" + }, + "IdentityType":{ + "shape":"IdentityType", + "documentation":"

Specifies whether the identity to map to the Studio is a user or a group.

" + }, + "SessionPolicyArn":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The Amazon Resource Name (ARN) for the session policy that will be applied to the user or group. Session policies refine Studio user permissions without the need to use multiple IAM user roles.

" + } + } + }, "Date":{"type":"timestamp"}, "DeleteSecurityConfigurationInput":{ "type":"structure", @@ -1315,6 +1546,41 @@ "members":{ } }, + "DeleteStudioInput":{ + "type":"structure", + "required":["StudioId"], + "members":{ + "StudioId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The ID of the Amazon EMR Studio.

" + } + } + }, + "DeleteStudioSessionMappingInput":{ + "type":"structure", + "required":[ + "StudioId", + "IdentityType" + ], + "members":{ + "StudioId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The ID of the Amazon EMR Studio.

" + }, + "IdentityId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The globally unique identifier (GUID) of the user or group to remove from the Amazon EMR Studio. For more information, see UserId and GroupId in the AWS SSO Identity Store API Reference. Either IdentityName or IdentityId must be specified.

" + }, + "IdentityName":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The name of the user name or group to remove from the Studio. For more information, see UserName and DisplayName in the AWS SSO Identity Store API Reference. Either IdentityName or IdentityId must be specified.

" + }, + "IdentityType":{ + "shape":"IdentityType", + "documentation":"

Specifies whether the identity to delete from the Studio is a user or a group.

" + } + } + }, "DescribeClusterInput":{ "type":"structure", "required":["ClusterId"], @@ -1442,6 +1708,25 @@ }, "documentation":"

This output contains the description of the cluster step.

" }, + "DescribeStudioInput":{ + "type":"structure", + "required":["StudioId"], + "members":{ + "StudioId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The Amazon EMR Studio ID.

" + } + } + }, + "DescribeStudioOutput":{ + "type":"structure", + "members":{ + "Studio":{ + "shape":"Studio", + "documentation":"

The Amazon EMR Studio details.

" + } + } + }, "EC2InstanceIdsList":{ "type":"list", "member":{"shape":"InstanceId"} @@ -1607,7 +1892,7 @@ }, "Message":{ "shape":"String", - "documentation":"

The descriptive message including the error the EMR service has identified as the cause of step failure. This is text from an error log that describes the root cause of the failure.

" + "documentation":"

The descriptive message including the error the Amazon EMR service has identified as the cause of step failure. This is text from an error log that describes the root cause of the failure.

" }, "LogFile":{ "shape":"String", @@ -1644,7 +1929,7 @@ "members":{ "ClusterId":{ "shape":"ClusterId", - "documentation":"

Specifies the ID of the cluster for which the managed scaling policy will be fetched.

" + "documentation":"

Specifies the ID of the cluster for which the managed scaling policy will be fetched.

" } } }, @@ -1653,7 +1938,41 @@ "members":{ "ManagedScalingPolicy":{ "shape":"ManagedScalingPolicy", - "documentation":"

Specifies the managed scaling policy that is attached to an Amazon EMR cluster.

" + "documentation":"

Specifies the managed scaling policy that is attached to an Amazon EMR cluster.

" + } + } + }, + "GetStudioSessionMappingInput":{ + "type":"structure", + "required":[ + "StudioId", + "IdentityType" + ], + "members":{ + "StudioId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The ID of the Amazon EMR Studio.

" + }, + "IdentityId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The globally unique identifier (GUID) of the user or group. For more information, see UserId and GroupId in the AWS SSO Identity Store API Reference. Either IdentityName or IdentityId must be specified.

" + }, + "IdentityName":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The name of the user or group to fetch. For more information, see UserName and DisplayName in the AWS SSO Identity Store API Reference. Either IdentityName or IdentityId must be specified.

" + }, + "IdentityType":{ + "shape":"IdentityType", + "documentation":"

Specifies whether the identity to fetch is a user or a group.

" + } + } + }, + "GetStudioSessionMappingOutput":{ + "type":"structure", + "members":{ + "SessionMapping":{ + "shape":"SessionMappingDetail", + "documentation":"

The session mapping details for the specified Amazon EMR Studio and identity, including session policy ARN and creation time.

" } } }, @@ -1689,7 +2008,7 @@ }, "Properties":{ "shape":"StringMap", - "documentation":"

The list of Java properties that are set when the step runs. You can use these properties to pass key value pairs to your main function.

" + "documentation":"

The list of Java properties that are set when the step runs. You can use these properties to pass key-value pairs to your main function.

" }, "MainClass":{ "shape":"String", @@ -1702,6 +2021,13 @@ }, "documentation":"

A cluster step consisting of a JAR file whose main function will be executed. The main function submits a job for Hadoop to execute and waits for the job to finish or fail.

" }, + "IdentityType":{ + "type":"string", + "enum":[ + "USER", + "GROUP" + ] + }, "Instance":{ "type":"structure", "members":{ @@ -1784,7 +2110,7 @@ }, "TargetOnDemandCapacity":{ "shape":"WholeNumber", - "documentation":"

The target capacity of On-Demand units for the instance fleet, which determines how many On-Demand instances to provision. When the instance fleet launches, Amazon EMR tries to provision On-Demand instances as specified by InstanceTypeConfig. Each instance configuration has a specified WeightedCapacity. When an On-Demand instance is provisioned, the WeightedCapacity units count toward the target capacity. Amazon EMR provisions instances until the target capacity is totally fulfilled, even if this results in an overage. For example, if there are 2 units remaining to fulfill capacity, and Amazon EMR can only provision an instance with a WeightedCapacity of 5 units, the instance is provisioned, and the target capacity is exceeded by 3 units. You can use InstanceFleet$ProvisionedOnDemandCapacity to determine the Spot capacity units that have been provisioned for the instance fleet.

If not specified or set to 0, only Spot instances are provisioned for the instance fleet using TargetSpotCapacity. At least one of TargetSpotCapacity and TargetOnDemandCapacity should be greater than 0. For a master instance fleet, only one of TargetSpotCapacity and TargetOnDemandCapacity can be specified, and its value must be 1.

" + "documentation":"

The target capacity of On-Demand units for the instance fleet, which determines how many On-Demand Instances to provision. When the instance fleet launches, Amazon EMR tries to provision On-Demand Instances as specified by InstanceTypeConfig. Each instance configuration has a specified WeightedCapacity. When an On-Demand Instance is provisioned, the WeightedCapacity units count toward the target capacity. Amazon EMR provisions instances until the target capacity is totally fulfilled, even if this results in an overage. For example, if there are 2 units remaining to fulfill capacity, and Amazon EMR can only provision an instance with a WeightedCapacity of 5 units, the instance is provisioned, and the target capacity is exceeded by 3 units. You can use InstanceFleet$ProvisionedOnDemandCapacity to determine the Spot capacity units that have been provisioned for the instance fleet.

If not specified or set to 0, only Spot Instances are provisioned for the instance fleet using TargetSpotCapacity. At least one of TargetSpotCapacity and TargetOnDemandCapacity should be greater than 0. For a master instance fleet, only one of TargetSpotCapacity and TargetOnDemandCapacity can be specified, and its value must be 1.

" }, "TargetSpotCapacity":{ "shape":"WholeNumber", @@ -1807,7 +2133,7 @@ "documentation":"

Describes the launch specification for an instance fleet.

" } }, - "documentation":"

Describes an instance fleet, which is a group of EC2 instances that host a particular node type (master, core, or task) in an Amazon EMR cluster. Instance fleets can consist of a mix of instance types and On-Demand and Spot instances, which are provisioned to meet a defined target capacity.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions.

" + "documentation":"

Describes an instance fleet, which is a group of EC2 instances that host a particular node type (master, core, or task) in an Amazon EMR cluster. Instance fleets can consist of a mix of instance types and On-Demand and Spot Instances, which are provisioned to meet a defined target capacity.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions.

" }, "InstanceFleetConfig":{ "type":"structure", @@ -1823,11 +2149,11 @@ }, "TargetOnDemandCapacity":{ "shape":"WholeNumber", - "documentation":"

The target capacity of On-Demand units for the instance fleet, which determines how many On-Demand instances to provision. When the instance fleet launches, Amazon EMR tries to provision On-Demand instances as specified by InstanceTypeConfig. Each instance configuration has a specified WeightedCapacity. When an On-Demand instance is provisioned, the WeightedCapacity units count toward the target capacity. Amazon EMR provisions instances until the target capacity is totally fulfilled, even if this results in an overage. For example, if there are 2 units remaining to fulfill capacity, and Amazon EMR can only provision an instance with a WeightedCapacity of 5 units, the instance is provisioned, and the target capacity is exceeded by 3 units.

If not specified or set to 0, only Spot instances are provisioned for the instance fleet using TargetSpotCapacity. At least one of TargetSpotCapacity and TargetOnDemandCapacity should be greater than 0. For a master instance fleet, only one of TargetSpotCapacity and TargetOnDemandCapacity can be specified, and its value must be 1.

" + "documentation":"

The target capacity of On-Demand units for the instance fleet, which determines how many On-Demand Instances to provision. When the instance fleet launches, Amazon EMR tries to provision On-Demand Instances as specified by InstanceTypeConfig. Each instance configuration has a specified WeightedCapacity. When an On-Demand Instance is provisioned, the WeightedCapacity units count toward the target capacity. Amazon EMR provisions instances until the target capacity is totally fulfilled, even if this results in an overage. For example, if there are 2 units remaining to fulfill capacity, and Amazon EMR can only provision an instance with a WeightedCapacity of 5 units, the instance is provisioned, and the target capacity is exceeded by 3 units.

If not specified or set to 0, only Spot Instances are provisioned for the instance fleet using TargetSpotCapacity. At least one of TargetSpotCapacity and TargetOnDemandCapacity should be greater than 0. For a master instance fleet, only one of TargetSpotCapacity and TargetOnDemandCapacity can be specified, and its value must be 1.

" }, "TargetSpotCapacity":{ "shape":"WholeNumber", - "documentation":"

The target capacity of Spot units for the instance fleet, which determines how many Spot instances to provision. When the instance fleet launches, Amazon EMR tries to provision Spot instances as specified by InstanceTypeConfig. Each instance configuration has a specified WeightedCapacity. When a Spot instance is provisioned, the WeightedCapacity units count toward the target capacity. Amazon EMR provisions instances until the target capacity is totally fulfilled, even if this results in an overage. For example, if there are 2 units remaining to fulfill capacity, and Amazon EMR can only provision an instance with a WeightedCapacity of 5 units, the instance is provisioned, and the target capacity is exceeded by 3 units.

If not specified or set to 0, only On-Demand instances are provisioned for the instance fleet. At least one of TargetSpotCapacity and TargetOnDemandCapacity should be greater than 0. For a master instance fleet, only one of TargetSpotCapacity and TargetOnDemandCapacity can be specified, and its value must be 1.

" + "documentation":"

The target capacity of Spot units for the instance fleet, which determines how many Spot Instances to provision. When the instance fleet launches, Amazon EMR tries to provision Spot Instances as specified by InstanceTypeConfig. Each instance configuration has a specified WeightedCapacity. When a Spot Instance is provisioned, the WeightedCapacity units count toward the target capacity. Amazon EMR provisions instances until the target capacity is totally fulfilled, even if this results in an overage. For example, if there are 2 units remaining to fulfill capacity, and Amazon EMR can only provision an instance with a WeightedCapacity of 5 units, the instance is provisioned, and the target capacity is exceeded by 3 units.

If not specified or set to 0, only On-Demand Instances are provisioned for the instance fleet. At least one of TargetSpotCapacity and TargetOnDemandCapacity should be greater than 0. For a master instance fleet, only one of TargetSpotCapacity and TargetOnDemandCapacity can be specified, and its value must be 1.

" }, "InstanceTypeConfigs":{ "shape":"InstanceTypeConfigList", @@ -1873,14 +2199,14 @@ "members":{ "SpotSpecification":{ "shape":"SpotProvisioningSpecification", - "documentation":"

The launch specification for Spot instances in the fleet, which determines the defined duration, provisioning timeout behavior, and allocation strategy.

" + "documentation":"

The launch specification for Spot Instances in the fleet, which determines the defined duration, provisioning timeout behavior, and allocation strategy.

" }, "OnDemandSpecification":{ "shape":"OnDemandProvisioningSpecification", - "documentation":"

The launch specification for On-Demand instances in the instance fleet, which determines the allocation strategy.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions. On-Demand instances allocation strategy is available in Amazon EMR version 5.12.1 and later.

" + "documentation":"

The launch specification for On-Demand Instances in the instance fleet, which determines the allocation strategy.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions. On-Demand Instances allocation strategy is available in Amazon EMR version 5.12.1 and later.

" } }, - "documentation":"

The launch specification for Spot instances in the fleet, which determines the defined duration, provisioning timeout behavior, and allocation strategy.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions. On-Demand and Spot instance allocation strategies are available in Amazon EMR version 5.12.1 and later.

" + "documentation":"

The launch specification for Spot Instances in the fleet, which determines the defined duration, provisioning timeout behavior, and allocation strategy.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions. On-Demand and Spot Instance allocation strategies are available in Amazon EMR version 5.12.1 and later.

" }, "InstanceFleetState":{ "type":"string", @@ -1982,7 +2308,7 @@ }, "BidPrice":{ "shape":"String", - "documentation":"

The bid price for each EC2 Spot instance type as defined by InstanceType. Expressed in USD. If neither BidPrice nor BidPriceAsPercentageOfOnDemandPrice is provided, BidPriceAsPercentageOfOnDemandPrice defaults to 100%.

" + "documentation":"

The bid price for each EC2 Spot Instance type as defined by InstanceType. Expressed in USD. If neither BidPrice nor BidPriceAsPercentageOfOnDemandPrice is provided, BidPriceAsPercentageOfOnDemandPrice defaults to 100%.

" }, "InstanceType":{ "shape":"InstanceType", @@ -2057,7 +2383,7 @@ }, "BidPrice":{ "shape":"XmlStringMaxLen256", - "documentation":"

The bid price for each EC2 Spot instance type as defined by InstanceType. Expressed in USD. If neither BidPrice nor BidPriceAsPercentageOfOnDemandPrice is provided, BidPriceAsPercentageOfOnDemandPrice defaults to 100%.

" + "documentation":"

The bid price for each EC2 Spot Instance type as defined by InstanceType. Expressed in USD. If neither BidPrice nor BidPriceAsPercentageOfOnDemandPrice is provided, BidPriceAsPercentageOfOnDemandPrice defaults to 100%.

" }, "InstanceType":{ "shape":"InstanceType", @@ -2116,7 +2442,7 @@ }, "BidPrice":{ "shape":"XmlStringMaxLen256", - "documentation":"

The bid price for each EC2 Spot instance type as defined by InstanceType. Expressed in USD. If neither BidPrice nor BidPriceAsPercentageOfOnDemandPrice is provided, BidPriceAsPercentageOfOnDemandPrice defaults to 100%.

" + "documentation":"

The bid price for each EC2 Spot Instance type as defined by InstanceType. Expressed in USD. If neither BidPrice nor BidPriceAsPercentageOfOnDemandPrice is provided, BidPriceAsPercentageOfOnDemandPrice defaults to 100%.

" }, "InstanceType":{ "shape":"InstanceType", @@ -2176,7 +2502,7 @@ "members":{ "InstanceGroupId":{ "shape":"XmlStringMaxLen256", - "documentation":"

Unique ID of the instance group to expand or shrink.

" + "documentation":"

Unique ID of the instance group to modify.

" }, "InstanceCount":{ "shape":"Integer", @@ -2413,22 +2739,22 @@ }, "BidPrice":{ "shape":"XmlStringMaxLen256", - "documentation":"

The bid price for each EC2 Spot instance type as defined by InstanceType. Expressed in USD. If neither BidPrice nor BidPriceAsPercentageOfOnDemandPrice is provided, BidPriceAsPercentageOfOnDemandPrice defaults to 100%.

" + "documentation":"

The bid price for each EC2 Spot Instance type as defined by InstanceType. Expressed in USD. If neither BidPrice nor BidPriceAsPercentageOfOnDemandPrice is provided, BidPriceAsPercentageOfOnDemandPrice defaults to 100%.

" }, "BidPriceAsPercentageOfOnDemandPrice":{ "shape":"NonNegativeDouble", - "documentation":"

The bid price, as a percentage of On-Demand price, for each EC2 Spot instance as defined by InstanceType. Expressed as a number (for example, 20 specifies 20%). If neither BidPrice nor BidPriceAsPercentageOfOnDemandPrice is provided, BidPriceAsPercentageOfOnDemandPrice defaults to 100%.

" + "documentation":"

The bid price, as a percentage of On-Demand price, for each EC2 Spot Instance as defined by InstanceType. Expressed as a number (for example, 20 specifies 20%). If neither BidPrice nor BidPriceAsPercentageOfOnDemandPrice is provided, BidPriceAsPercentageOfOnDemandPrice defaults to 100%.

" }, "EbsConfiguration":{ "shape":"EbsConfiguration", - "documentation":"

The configuration of Amazon Elastic Block Storage (EBS) attached to each instance as defined by InstanceType.

" + "documentation":"

The configuration of Amazon Elastic Block Storage (Amazon EBS) attached to each instance as defined by InstanceType.

" }, "Configurations":{ "shape":"ConfigurationList", "documentation":"

A configuration classification that applies when provisioning cluster instances, which can include configurations for applications and software that run on the cluster.

" } }, - "documentation":"

An instance type configuration for each instance type in an instance fleet, which determines the EC2 instances Amazon EMR attempts to provision to fulfill On-Demand and Spot target capacities. There can be a maximum of 5 instance type configurations in a fleet.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions.

" + "documentation":"

An instance type configuration for each instance type in an instance fleet, which determines the EC2 instances Amazon EMR attempts to provision to fulfill On-Demand and Spot target capacities. There can be a maximum of five instance type configurations in a fleet.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions.

" }, "InstanceTypeConfigList":{ "type":"list", @@ -2447,11 +2773,11 @@ }, "BidPrice":{ "shape":"XmlStringMaxLen256", - "documentation":"

The bid price for each EC2 Spot instance type as defined by InstanceType. Expressed in USD.

" + "documentation":"

The bid price for each EC2 Spot Instance type as defined by InstanceType. Expressed in USD.

" }, "BidPriceAsPercentageOfOnDemandPrice":{ "shape":"NonNegativeDouble", - "documentation":"

The bid price, as a percentage of On-Demand price, for each EC2 Spot instance as defined by InstanceType. Expressed as a number (for example, 20 specifies 20%).

" + "documentation":"

The bid price, as a percentage of On-Demand price, for each EC2 Spot Instance as defined by InstanceType. Expressed as a number (for example, 20 specifies 20%).

" }, "Configurations":{ "shape":"ConfigurationList", @@ -2459,7 +2785,7 @@ }, "EbsBlockDevices":{ "shape":"EbsBlockDeviceList", - "documentation":"

The configuration of Amazon Elastic Block Storage (EBS) attached to each instance as defined by InstanceType.

" + "documentation":"

The configuration of Amazon Elastic Block Storage (Amazon EBS) attached to each instance as defined by InstanceType.

" }, "EbsOptimized":{ "shape":"BooleanObject", @@ -2554,7 +2880,7 @@ }, "SupportedProducts":{ "shape":"SupportedProductsList", - "documentation":"

A list of strings set by third party software when the job flow is launched. If you are not using third party software to manage the job flow this value is empty.

" + "documentation":"

A list of strings set by third-party software when the job flow is launched. If you are not using third-party software to manage the job flow, this value is empty.

" }, "VisibleToAllUsers":{ "shape":"Boolean", @@ -2566,7 +2892,7 @@ }, "ServiceRole":{ "shape":"XmlString", - "documentation":"

The IAM role that will be assumed by the Amazon EMR service to access AWS resources on your behalf.

" + "documentation":"

The IAM role that is assumed by the Amazon EMR service to access AWS resources on your behalf.

" }, "AutoScalingRole":{ "shape":"XmlString", @@ -2574,7 +2900,7 @@ }, "ScaleDownBehavior":{ "shape":"ScaleDownBehavior", - "documentation":"

The way that individual Amazon EC2 instances terminate when an automatic scale-in activity occurs or an instance group is resized. TERMINATE_AT_INSTANCE_HOUR indicates that Amazon EMR terminates nodes at the instance-hour boundary, regardless of when the request to terminate the instance was submitted. This option is only available with Amazon EMR 5.1.0 and later and is the default for clusters created using that version. TERMINATE_AT_TASK_COMPLETION indicates that Amazon EMR blacklists and drains tasks from nodes before terminating the Amazon EC2 instances, regardless of the instance-hour boundary. With either behavior, Amazon EMR removes the least active nodes first and blocks instance termination if it could lead to HDFS corruption. TERMINATE_AT_TASK_COMPLETION available only in Amazon EMR version 4.1.0 and later, and is the default for versions of Amazon EMR earlier than 5.1.0.

" + "documentation":"

The way that individual Amazon EC2 instances terminate when an automatic scale-in activity occurs or an instance group is resized. TERMINATE_AT_INSTANCE_HOUR indicates that Amazon EMR terminates nodes at the instance-hour boundary, regardless of when the request to terminate the instance was submitted. This option is only available with Amazon EMR 5.1.0 and later and is the default for clusters created using that version. TERMINATE_AT_TASK_COMPLETION indicates that Amazon EMR adds nodes to a deny list and drains tasks from nodes before terminating the Amazon EC2 instances, regardless of the instance-hour boundary. With either behavior, Amazon EMR removes the least active nodes first and blocks instance termination if it could lead to HDFS corruption. TERMINATE_AT_TASK_COMPLETION available only in Amazon EMR version 4.1.0 and later, and is the default for versions of Amazon EMR earlier than 5.1.0.

" } }, "documentation":"

A description of a cluster (job flow).

" @@ -2660,7 +2986,7 @@ }, "Ec2KeyName":{ "shape":"XmlStringMaxLen256", - "documentation":"

The name of the EC2 key pair that can be used to ssh to the master node as the user called \"hadoop.\"

" + "documentation":"

The name of the EC2 key pair that can be used to connect to the master node using SSH as the user called \"hadoop.\"

" }, "Placement":{ "shape":"PlacementType", @@ -2676,7 +3002,7 @@ }, "HadoopVersion":{ "shape":"XmlStringMaxLen256", - "documentation":"

Applies only to Amazon EMR release versions earlier than 4.0. The Hadoop version for the cluster. Valid inputs are \"0.18\" (deprecated), \"0.20\" (deprecated), \"0.20.205\" (deprecated), \"1.0.3\", \"2.2.0\", or \"2.4.0\". If you do not set this value, the default of 0.18 is used, unless the AmiVersion parameter is set in the RunJobFlow call, in which case the default version of Hadoop for that AMI version is used.

" + "documentation":"

Applies only to Amazon EMR release versions earlier than 4.0. The Hadoop version for the cluster. Valid inputs are \"0.18\" (no longer maintained), \"0.20\" (no longer maintained), \"0.20.205\" (no longer maintained), \"1.0.3\", \"2.2.0\", or \"2.4.0\". If you do not set this value, the default of 0.18 is used, unless the AmiVersion parameter is set in the RunJobFlow call, in which case the default version of Hadoop for that AMI version is used.

" }, "Ec2SubnetId":{ "shape":"XmlStringMaxLen256", @@ -2707,7 +3033,7 @@ "documentation":"

A list of additional Amazon EC2 security group IDs for the core and task nodes.

" } }, - "documentation":"

A description of the Amazon EC2 instance on which the cluster (job flow) runs. A valid JobFlowInstancesConfig must contain either InstanceGroups or InstanceFleets, which is the recommended configuration. They cannot be used together. You may also have MasterInstanceType, SlaveInstanceType, and InstanceCount (all three must be present), but we don't recommend this configuration.

" + "documentation":"

A description of the Amazon EC2 instance on which the cluster (job flow) runs. A valid JobFlowInstancesConfig must contain either InstanceGroups or InstanceFleets. They cannot be used together. You may also have MasterInstanceType, SlaveInstanceType, and InstanceCount (all three must be present), but we don't recommend this configuration.

" }, "JobFlowInstancesDetail":{ "type":"structure", @@ -2743,11 +3069,11 @@ }, "NormalizedInstanceHours":{ "shape":"Integer", - "documentation":"

An approximation of the cost of the cluster, represented in m1.small/hours. This value is incremented one time for every hour that an m1.small runs. Larger instances are weighted more, so an Amazon EC2 instance that is roughly four times more expensive would result in the normalized instance hours being incremented by four. This result is only an approximation and does not reflect the actual billing rate.

" + "documentation":"

An approximation of the cost of the cluster, represented in m1.small/hours. This value is increased one time for every hour that an m1.small instance runs. Larger instances are weighted more heavily, so an Amazon EC2 instance that is roughly four times more expensive would result in the normalized instance hours being increased incrementally four times. This result is only an approximation and does not reflect the actual billing rate.

" }, "Ec2KeyName":{ "shape":"XmlStringMaxLen256", - "documentation":"

The name of an Amazon EC2 key pair that can be used to ssh to the master node.

" + "documentation":"

The name of an Amazon EC2 key pair that can be used to connect to the master node using SSH.

" }, "Ec2SubnetId":{ "shape":"XmlStringMaxLen256", @@ -2800,21 +3126,21 @@ "documentation":"

The Active Directory password for ADDomainJoinUser.

" } }, - "documentation":"

Attributes for Kerberos configuration when Kerberos authentication is enabled using a security configuration. For more information see Use Kerberos Authentication in the EMR Management Guide.

" + "documentation":"

Attributes for Kerberos configuration when Kerberos authentication is enabled using a security configuration. For more information see Use Kerberos Authentication in the Amazon EMR Management Guide.

" }, "KeyValue":{ "type":"structure", "members":{ "Key":{ "shape":"XmlString", - "documentation":"

The unique identifier of a key value pair.

" + "documentation":"

The unique identifier of a key-value pair.

" }, "Value":{ "shape":"XmlString", "documentation":"

The value part of the identified key.

" } }, - "documentation":"

A key value pair.

" + "documentation":"

A key-value pair.

" }, "KeyValueList":{ "type":"list", @@ -3087,6 +3413,58 @@ }, "documentation":"

This output contains the list of steps returned in reverse order. This means that the last step is the first element in the list.

" }, + "ListStudioSessionMappingsInput":{ + "type":"structure", + "members":{ + "StudioId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The ID of the Amazon EMR Studio.

" + }, + "IdentityType":{ + "shape":"IdentityType", + "documentation":"

Specifies whether to return session mappings for users or groups. If not specified, the results include session mapping details for both users and groups.

" + }, + "Marker":{ + "shape":"Marker", + "documentation":"

The pagination token that indicates the set of results to retrieve.

" + } + } + }, + "ListStudioSessionMappingsOutput":{ + "type":"structure", + "members":{ + "SessionMappings":{ + "shape":"SessionMappingSummaryList", + "documentation":"

A list of session mapping summary objects. Each object includes session mapping details such as creation time, identity type (user or group), and Studio ID.

" + }, + "Marker":{ + "shape":"Marker", + "documentation":"

The pagination token that indicates the next set of results to retrieve.

" + } + } + }, + "ListStudiosInput":{ + "type":"structure", + "members":{ + "Marker":{ + "shape":"Marker", + "documentation":"

The pagination token that indicates the set of results to retrieve.

" + } + } + }, + "ListStudiosOutput":{ + "type":"structure", + "members":{ + "Studios":{ + "shape":"StudioSummaryList", + "documentation":"

The list of Studio summary objects.

" + }, + "Marker":{ + "shape":"Marker", + "documentation":"

The pagination token that indicates the next set of results to retrieve.

" + } + } + }, "Long":{"type":"long"}, "ManagedScalingPolicy":{ "type":"structure", @@ -3239,7 +3617,7 @@ }, "Tags":{ "shape":"TagList", - "documentation":"

A list of tags associated with a notebook execution. Tags are user-defined key value pairs that consist of a required key string with a maximum of 128 characters and an optional value string with a maximum of 256 characters.

" + "documentation":"

A list of tags associated with a notebook execution. Tags are user-defined key-value pairs that consist of a required key string with a maximum of 128 characters and an optional value string with a maximum of 256 characters.

" } }, "documentation":"

A notebook execution. An execution is a specific instance that an EMR Notebook is run using the StartNotebookExecution action.

" @@ -3303,10 +3681,10 @@ "members":{ "AllocationStrategy":{ "shape":"OnDemandProvisioningAllocationStrategy", - "documentation":"

Specifies the strategy to use in launching On-Demand instance fleets. Currently, the only option is lowest-price (the default), which launches the lowest price first.

" + "documentation":"

Specifies the strategy to use in launching On-Demand Instance fleets. Currently, the only option is lowest-price (the default), which launches the lowest price first.

" } }, - "documentation":"

The launch specification for On-Demand instances in the instance fleet, which determines the allocation strategy.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions. On-Demand instances allocation strategy is available in Amazon EMR version 5.12.1 and later.

" + "documentation":"

The launch specification for On-Demand Instances in the instance fleet, which determines the allocation strategy.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions. On-Demand Instances allocation strategy is available in Amazon EMR version 5.12.1 and later.

" }, "OptionalArnType":{ "type":"string", @@ -3446,11 +3824,11 @@ "members":{ "ClusterId":{ "shape":"ClusterId", - "documentation":"

Specifies the ID of an EMR cluster where the managed scaling policy is attached.

" + "documentation":"

Specifies the ID of an EMR cluster where the managed scaling policy is attached.

" }, "ManagedScalingPolicy":{ "shape":"ManagedScalingPolicy", - "documentation":"

Specifies the constraints for the managed scaling policy.

" + "documentation":"

Specifies the constraints for the managed scaling policy.

" } } }, @@ -3545,7 +3923,7 @@ }, "LogEncryptionKmsKeyId":{ "shape":"XmlString", - "documentation":"

The AWS KMS customer master key (CMK) used for encrypting log files. If a value is not provided, the logs will remain encrypted by AES-256. This attribute is only available with EMR version 5.30.0 and later, excluding EMR 6.0.0.

" + "documentation":"

The AWS KMS customer master key (CMK) used for encrypting log files. If a value is not provided, the logs remain encrypted by AES-256. This attribute is only available with Amazon EMR version 5.30.0 and later, excluding Amazon EMR 6.0.0.

" }, "AdditionalInfo":{ "shape":"XmlString", @@ -3613,7 +3991,7 @@ }, "ScaleDownBehavior":{ "shape":"ScaleDownBehavior", - "documentation":"

Specifies the way that individual Amazon EC2 instances terminate when an automatic scale-in activity occurs or an instance group is resized. TERMINATE_AT_INSTANCE_HOUR indicates that Amazon EMR terminates nodes at the instance-hour boundary, regardless of when the request to terminate the instance was submitted. This option is only available with Amazon EMR 5.1.0 and later and is the default for clusters created using that version. TERMINATE_AT_TASK_COMPLETION indicates that Amazon EMR blacklists and drains tasks from nodes before terminating the Amazon EC2 instances, regardless of the instance-hour boundary. With either behavior, Amazon EMR removes the least active nodes first and blocks instance termination if it could lead to HDFS corruption. TERMINATE_AT_TASK_COMPLETION available only in Amazon EMR version 4.1.0 and later, and is the default for versions of Amazon EMR earlier than 5.1.0.

" + "documentation":"

Specifies the way that individual Amazon EC2 instances terminate when an automatic scale-in activity occurs or an instance group is resized. TERMINATE_AT_INSTANCE_HOUR indicates that Amazon EMR terminates nodes at the instance-hour boundary, regardless of when the request to terminate the instance was submitted. This option is only available with Amazon EMR 5.1.0 and later and is the default for clusters created using that version. TERMINATE_AT_TASK_COMPLETION indicates that Amazon EMR adds nodes to a deny list and drains tasks from nodes before terminating the Amazon EC2 instances, regardless of the instance-hour boundary. With either behavior, Amazon EMR removes the least active nodes first and blocks instance termination if it could lead to HDFS corruption. TERMINATE_AT_TASK_COMPLETION available only in Amazon EMR version 4.1.0 and later, and is the default for versions of Amazon EMR earlier than 5.1.0.

" }, "CustomAmiId":{ "shape":"XmlStringMaxLen256", @@ -3621,7 +3999,7 @@ }, "EbsRootVolumeSize":{ "shape":"Integer", - "documentation":"

The size, in GiB, of the EBS root device volume of the Linux AMI that is used for each EC2 instance. Available in Amazon EMR version 4.x and later.

" + "documentation":"

The size, in GiB, of the Amazon EBS root device volume of the Linux AMI that is used for each EC2 instance. Available in Amazon EMR version 4.x and later.

" }, "RepoUpgradeOnBoot":{ "shape":"RepoUpgradeOnBoot", @@ -3629,7 +4007,7 @@ }, "KerberosAttributes":{ "shape":"KerberosAttributes", - "documentation":"

Attributes for Kerberos configuration when Kerberos authentication is enabled using a security configuration. For more information see Use Kerberos Authentication in the EMR Management Guide.

" + "documentation":"

Attributes for Kerberos configuration when Kerberos authentication is enabled using a security configuration. For more information see Use Kerberos Authentication in the Amazon EMR Management Guide.

" }, "StepConcurrencyLevel":{ "shape":"Integer", @@ -3779,6 +4157,74 @@ "type":"list", "member":{"shape":"XmlStringMaxLen256"} }, + "SessionMappingDetail":{ + "type":"structure", + "members":{ + "StudioId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The ID of the Amazon EMR Studio.

" + }, + "IdentityId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The globally unique identifier (GUID) of the user or group.

" + }, + "IdentityName":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The name of the user or group. For more information, see UserName and DisplayName in the AWS SSO Identity Store API Reference.

" + }, + "IdentityType":{ + "shape":"IdentityType", + "documentation":"

Specifies whether the identity mapped to the Studio is a user or a group.

" + }, + "SessionPolicyArn":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The Amazon Resource Name (ARN) of the session policy associated with the user or group.

" + }, + "CreationTime":{ + "shape":"Date", + "documentation":"

The time the session mapping was created.

" + }, + "LastModifiedTime":{ + "shape":"Date", + "documentation":"

The time the session mapping was last modified.

" + } + }, + "documentation":"

Details for an Amazon EMR Studio session mapping including creation time, user or group ID, Studio ID, and so on.

" + }, + "SessionMappingSummary":{ + "type":"structure", + "members":{ + "StudioId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The ID of the Amazon EMR Studio.

" + }, + "IdentityId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The globally unique identifier (GUID) of the user or group from the AWS SSO Identity Store.

" + }, + "IdentityName":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The name of the user or group. For more information, see UserName and DisplayName in the AWS SSO Identity Store API Reference.

" + }, + "IdentityType":{ + "shape":"IdentityType", + "documentation":"

Specifies whether the identity mapped to the Studio is a user or a group.

" + }, + "SessionPolicyArn":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The Amazon Resource Name (ARN) of the session policy associated with the user or group.

" + }, + "CreationTime":{ + "shape":"Date", + "documentation":"

The time the session mapping was created.

" + } + }, + "documentation":"

Details for an Amazon EMR Studio session mapping. The details do not include the time the session mapping was last modified.

" + }, + "SessionMappingSummaryList":{ + "type":"list", + "member":{"shape":"SessionMappingSummary"} + }, "SetTerminationProtectionInput":{ "type":"structure", "required":[ @@ -3861,22 +4307,22 @@ "members":{ "TimeoutDurationMinutes":{ "shape":"WholeNumber", - "documentation":"

The spot provisioning timeout period in minutes. If Spot instances are not provisioned within this time period, the TimeOutAction is taken. Minimum value is 5 and maximum value is 1440. The timeout applies only during initial provisioning, when the cluster is first created.

" + "documentation":"

The spot provisioning timeout period in minutes. If Spot Instances are not provisioned within this time period, the TimeOutAction is taken. Minimum value is 5 and maximum value is 1440. The timeout applies only during initial provisioning, when the cluster is first created.

" }, "TimeoutAction":{ "shape":"SpotProvisioningTimeoutAction", - "documentation":"

The action to take when TargetSpotCapacity has not been fulfilled when the TimeoutDurationMinutes has expired; that is, when all Spot instances could not be provisioned within the Spot provisioning timeout. Valid values are TERMINATE_CLUSTER and SWITCH_TO_ON_DEMAND. SWITCH_TO_ON_DEMAND specifies that if no Spot instances are available, On-Demand Instances should be provisioned to fulfill any remaining Spot capacity.

" + "documentation":"

The action to take when TargetSpotCapacity has not been fulfilled when the TimeoutDurationMinutes has expired; that is, when all Spot Instances could not be provisioned within the Spot provisioning timeout. Valid values are TERMINATE_CLUSTER and SWITCH_TO_ON_DEMAND. SWITCH_TO_ON_DEMAND specifies that if no Spot Instances are available, On-Demand Instances should be provisioned to fulfill any remaining Spot capacity.

" }, "BlockDurationMinutes":{ "shape":"WholeNumber", - "documentation":"

The defined duration for Spot instances (also known as Spot blocks) in minutes. When specified, the Spot instance does not terminate before the defined duration expires, and defined duration pricing for Spot instances applies. Valid values are 60, 120, 180, 240, 300, or 360. The duration period starts as soon as a Spot instance receives its instance ID. At the end of the duration, Amazon EC2 marks the Spot instance for termination and provides a Spot instance termination notice, which gives the instance a two-minute warning before it terminates.

" + "documentation":"

The defined duration for Spot Instances (also known as Spot blocks) in minutes. When specified, the Spot Instance does not terminate before the defined duration expires, and defined duration pricing for Spot instances applies. Valid values are 60, 120, 180, 240, 300, or 360. The duration period starts as soon as a Spot Instance receives its instance ID. At the end of the duration, Amazon EC2 marks the Spot Instance for termination and provides a Spot Instance termination notice, which gives the instance a two-minute warning before it terminates.

" }, "AllocationStrategy":{ "shape":"SpotProvisioningAllocationStrategy", - "documentation":"

Specifies the strategy to use in launching Spot instance fleets. Currently, the only option is capacity-optimized (the default), which launches instances from Spot instance pools with optimal capacity for the number of instances that are launching.

" + "documentation":"

Specifies the strategy to use in launching Spot Instance fleets. Currently, the only option is capacity-optimized (the default), which launches instances from Spot Instance pools with optimal capacity for the number of instances that are launching.

" } }, - "documentation":"

The launch specification for Spot instances in the instance fleet, which determines the defined duration, provisioning timeout behavior, and allocation strategy.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions. Spot instance allocation strategy is available in Amazon EMR version 5.12.1 and later.

" + "documentation":"

The launch specification for Spot Instances in the instance fleet, which determines the defined duration, provisioning timeout behavior, and allocation strategy.

The instance fleet configuration is available only in Amazon EMR versions 4.8.0 and later, excluding 5.0.x versions. Spot Instance allocation strategy is available in Amazon EMR version 5.12.1 and later.

" }, "SpotProvisioningTimeoutAction":{ "type":"string", @@ -3924,7 +4370,7 @@ }, "Tags":{ "shape":"TagList", - "documentation":"

A list of tags associated with a notebook execution. Tags are user-defined key value pairs that consist of a required key string with a maximum of 128 characters and an optional value string with a maximum of 256 characters.

" + "documentation":"

A list of tags associated with a notebook execution. Tags are user-defined key-value pairs that consist of a required key string with a maximum of 128 characters and an optional value string with a maximum of 256 characters.

" } } }, @@ -4199,6 +4645,110 @@ "key":{"shape":"String"}, "value":{"shape":"String"} }, + "Studio":{ + "type":"structure", + "members":{ + "StudioId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The ID of the EMR Studio.

" + }, + "StudioArn":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The Amazon Resource Name (ARN) of the EMR Studio.

" + }, + "Name":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The name of the EMR Studio.

" + }, + "Description":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The detailed description of the EMR Studio.

" + }, + "AuthMode":{ + "shape":"AuthMode", + "documentation":"

Specifies whether the Studio authenticates users using single sign-on (SSO) or IAM.

" + }, + "VpcId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The ID of the VPC associated with the EMR Studio.

" + }, + "SubnetIds":{ + "shape":"SubnetIdList", + "documentation":"

The list of IDs of the subnets associated with the Amazon EMR Studio.

" + }, + "ServiceRole":{ + "shape":"XmlString", + "documentation":"

The name of the IAM role assumed by the Amazon EMR Studio.

" + }, + "UserRole":{ + "shape":"XmlString", + "documentation":"

The name of the IAM role assumed by users logged in to the Amazon EMR Studio.

" + }, + "WorkspaceSecurityGroupId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The ID of the Workspace security group associated with the Amazon EMR Studio. The Workspace security group allows outbound network traffic to resources in the Engine security group and to the internet.

" + }, + "EngineSecurityGroupId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The ID of the Engine security group associated with the Amazon EMR Studio. The Engine security group allows inbound network traffic from resources in the Workspace security group.

" + }, + "Url":{ + "shape":"XmlString", + "documentation":"

The unique access URL of the Amazon EMR Studio.

" + }, + "CreationTime":{ + "shape":"Date", + "documentation":"

The time the Amazon EMR Studio was created.

" + }, + "DefaultS3Location":{ + "shape":"XmlString", + "documentation":"

The default Amazon S3 location to back up Amazon EMR Studio Workspaces and notebook files.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

A list of tags associated with the Amazon EMR Studio.

" + } + }, + "documentation":"

Details for an Amazon EMR Studio including ID, creation time, name, and so on.

" + }, + "StudioSummary":{ + "type":"structure", + "members":{ + "StudioId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The ID of the Amazon EMR Studio.

" + }, + "Name":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The name of the Amazon EMR Studio.

" + }, + "VpcId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The ID of the Virtual Private Cloud (Amazon VPC) associated with the Amazon EMR Studio.

" + }, + "Description":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The detailed description of the EMR Studio.

" + }, + "Url":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The unique access URL of the Amazon EMR Studio.

" + }, + "CreationTime":{ + "shape":"Date", + "documentation":"

The time when the Amazon EMR Studio was created.

" + } + }, + "documentation":"

Details for an Amazon EMR Studio, including ID, Name, VPC, and Description. The details do not include subnets, IAM roles, security groups, or tags associated with the Studio.

" + }, + "StudioSummaryList":{ + "type":"list", + "member":{"shape":"StudioSummary"} + }, + "SubnetIdList":{ + "type":"list", + "member":{"shape":"String"} + }, "SupportedProductConfig":{ "type":"structure", "members":{ @@ -4229,7 +4779,7 @@ "documentation":"

A user-defined value, which is optional in a tag. For more information, see Tag Clusters.

" } }, - "documentation":"

A key/value pair containing user-defined metadata that you can associate with an Amazon EMR resource. Tags make it easier to associate clusters in various ways, such as grouping clusters to track your Amazon EMR resource allocation costs. For more information, see Tag Clusters.

" + "documentation":"

A key-value pair containing user-defined metadata that you can associate with an Amazon EMR resource. Tags make it easier to associate clusters in various ways, such as grouping clusters to track your Amazon EMR resource allocation costs. For more information, see Tag Clusters.

" }, "TagList":{ "type":"list", @@ -4241,7 +4791,7 @@ "members":{ "JobFlowIds":{ "shape":"XmlStringList", - "documentation":"

A list of job flows to be shutdown.

" + "documentation":"

A list of job flows to be shut down.

" } }, "documentation":"

Input to the TerminateJobFlows operation.

" @@ -4278,6 +4828,36 @@ "COUNT_PER_SECOND" ] }, + "UpdateStudioSessionMappingInput":{ + "type":"structure", + "required":[ + "StudioId", + "IdentityType", + "SessionPolicyArn" + ], + "members":{ + "StudioId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The ID of the EMR Studio.

" + }, + "IdentityId":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The globally unique identifier (GUID) of the user or group. For more information, see UserId and GroupId in the AWS SSO Identity Store API Reference. Either IdentityName or IdentityId must be specified.

" + }, + "IdentityName":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The name of the user or group to update. For more information, see UserName and DisplayName in the AWS SSO Identity Store API Reference. Either IdentityName or IdentityId must be specified.

" + }, + "IdentityType":{ + "shape":"IdentityType", + "documentation":"

Specifies whether the identity to update is a user or a group.

" + }, + "SessionPolicyArn":{ + "shape":"XmlStringMaxLen256", + "documentation":"

The Amazon Resource Name (ARN) of the session policy to associate with the specified user or group.

" + } + } + }, "VolumeSpecification":{ "type":"structure", "required":[ @@ -4325,5 +4905,5 @@ "member":{"shape":"XmlStringMaxLen256"} } }, - "documentation":"

Amazon EMR is a web service that makes it easy to process large amounts of data efficiently. Amazon EMR uses Hadoop processing combined with several AWS products to do tasks such as web indexing, data mining, log file analysis, machine learning, scientific simulation, and data warehousing.

" + "documentation":"

Amazon EMR is a web service that makes it easier to process large amounts of data efficiently. Amazon EMR uses Hadoop processing combined with several AWS services to do tasks such as web indexing, data mining, log file analysis, machine learning, scientific simulation, and data warehouse management.

" } From f97ea3b3db2a37875a0c78e189b377d1e0102abb Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:05:24 +0000 Subject: [PATCH 267/339] CodeArtifact Update: Add support for the NuGet package format. --- .../feature-CodeArtifact-b99b7cd.json | 6 ++ .../codegen-resources/service-2.json | 94 ++++++++++--------- 2 files changed, 54 insertions(+), 46 deletions(-) create mode 100644 .changes/next-release/feature-CodeArtifact-b99b7cd.json diff --git a/.changes/next-release/feature-CodeArtifact-b99b7cd.json b/.changes/next-release/feature-CodeArtifact-b99b7cd.json new file mode 100644 index 000000000000..e418ef98cc82 --- /dev/null +++ b/.changes/next-release/feature-CodeArtifact-b99b7cd.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "CodeArtifact", + "contributor": "", + "description": "Add support for the NuGet package format." +} diff --git a/services/codeartifact/src/main/resources/codegen-resources/service-2.json b/services/codeartifact/src/main/resources/codegen-resources/service-2.json index 2b7ae7c9af93..43b491adcad1 100644 --- a/services/codeartifact/src/main/resources/codegen-resources/service-2.json +++ b/services/codeartifact/src/main/resources/codegen-resources/service-2.json @@ -350,7 +350,7 @@ {"shape":"ThrottlingException"}, {"shape":"ValidationException"} ], - "documentation":"

Returns the endpoint of a repository for a specific package format. A repository has one endpoint for each package format:

  • npm

  • pypi

  • maven

" + "documentation":"

Returns the endpoint of a repository for a specific package format. A repository has one endpoint for each package format:

  • npm

  • pypi

  • maven

  • nuget

" }, "GetRepositoryPermissionsPolicy":{ "name":"GetRepositoryPermissionsPolicy", @@ -700,7 +700,7 @@ }, "externalConnection":{ "shape":"ExternalConnectionName", - "documentation":"

The name of the external connection to add to the repository. The following values are supported:

  • public:npmjs - for the npm public repository.

  • public:pypi - for the Python Package Index.

  • public:maven-central - for Maven Central.

  • public:maven-googleandroid - for the Google Android repository.

  • public:maven-gradleplugins - for the Gradle plugins repository.

  • public:maven-commonsware - for the CommonsWare Android repository.

", + "documentation":"

The name of the external connection to add to the repository. The following values are supported:

  • public:npmjs - for the npm public repository.

  • public:pypi - for the Python Package Index.

  • public:maven-central - for Maven Central.

  • public:maven-googleandroid - for the Google Android repository.

  • public:maven-gradleplugins - for the Gradle plugins repository.

  • public:maven-commonsware - for the CommonsWare Android repository.

  • public:nuget-org - for the NuGet Gallery.

", "location":"querystring", "locationName":"external-connection" } @@ -775,13 +775,13 @@ }, "format":{ "shape":"PackageFormat", - "documentation":"

The format of the package that is copied. The valid package types are:

  • npm: A Node Package Manager (npm) package.

  • pypi: A Python Package Index (PyPI) package.

  • maven: A Maven package that contains compiled code in a distributable format, such as a JAR file.

", + "documentation":"

The format of the package that is copied. The valid package types are:

  • npm: A Node Package Manager (npm) package.

  • pypi: A Python Package Index (PyPI) package.

  • maven: A Maven package that contains compiled code in a distributable format, such as a JAR file.

  • nuget: A NuGet package.

", "location":"querystring", "locationName":"format" }, "namespace":{ "shape":"PackageNamespace", - "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

", + "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

  • A NuGet package does not contain a corresponding component, so NuGet packages do not have a namespace.

", "location":"querystring", "locationName":"namespace" }, @@ -989,13 +989,13 @@ }, "format":{ "shape":"PackageFormat", - "documentation":"

The format of the package versions to delete. The valid values are:

  • npm

  • pypi

  • maven

", + "documentation":"

The format of the package versions to delete. The valid values are:

  • npm

  • pypi

  • maven

  • nuget

", "location":"querystring", "locationName":"format" }, "namespace":{ "shape":"PackageNamespace", - "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

", + "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

  • A NuGet package does not contain a corresponding component, so NuGet packages do not have a namespace.

", "location":"querystring", "locationName":"namespace" }, @@ -1160,13 +1160,13 @@ }, "format":{ "shape":"PackageFormat", - "documentation":"

A format that specifies the type of the requested package version. The valid values are:

  • npm

  • pypi

  • maven

", + "documentation":"

A format that specifies the type of the requested package version. The valid values are:

  • npm

  • pypi

  • maven

  • nuget

", "location":"querystring", "locationName":"format" }, "namespace":{ "shape":"PackageNamespace", - "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

", + "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

  • A NuGet package does not contain a corresponding component, so NuGet packages do not have a namespace.

", "location":"querystring", "locationName":"namespace" }, @@ -1308,13 +1308,13 @@ }, "format":{ "shape":"PackageFormat", - "documentation":"

A format that specifies the type of package versions you want to dispose. The valid values are:

  • npm

  • pypi

  • maven

", + "documentation":"

A format that specifies the type of package versions you want to dispose. The valid values are:

  • npm

  • pypi

  • maven

  • nuget

", "location":"querystring", "locationName":"format" }, "namespace":{ "shape":"PackageNamespace", - "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

", + "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

  • A NuGet package does not contain a corresponding component, so NuGet packages do not have a namespace.

", "location":"querystring", "locationName":"namespace" }, @@ -1544,13 +1544,13 @@ }, "format":{ "shape":"PackageFormat", - "documentation":"

A format that specifies the type of the package version with the requested asset file. The valid values are:

  • npm

  • pypi

  • maven

", + "documentation":"

A format that specifies the type of the package version with the requested asset file. The valid values are:

  • npm

  • pypi

  • maven

  • nuget

", "location":"querystring", "locationName":"format" }, "namespace":{ "shape":"PackageNamespace", - "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

", + "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

  • A NuGet package does not contain a corresponding component, so NuGet packages do not have a namespace.

", "location":"querystring", "locationName":"namespace" }, @@ -1638,13 +1638,13 @@ }, "format":{ "shape":"PackageFormat", - "documentation":"

A format that specifies the type of the package version with the requested readme file. The valid values are:

  • npm

  • pypi

  • maven

", + "documentation":"

A format that specifies the type of the package version with the requested readme file. The valid values are:

  • npm

  • pypi

  • maven

  • nuget

", "location":"querystring", "locationName":"format" }, "namespace":{ "shape":"PackageNamespace", - "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

", + "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

  • A NuGet package does not contain a corresponding component, so NuGet packages do not have a namespace.

", "location":"querystring", "locationName":"namespace" }, @@ -1667,11 +1667,11 @@ "members":{ "format":{ "shape":"PackageFormat", - "documentation":"

The format of the package with the requested readme file. Valid format types are:

  • npm

  • pypi

  • maven

" + "documentation":"

The format of the package with the requested readme file. Valid format types are:

  • npm

  • pypi

  • maven

  • nuget

" }, "namespace":{ "shape":"PackageNamespace", - "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

" + "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

  • A NuGet package does not contain a corresponding component, so NuGet packages do not have a namespace.

" }, "package":{ "shape":"PackageName", @@ -1719,7 +1719,7 @@ }, "format":{ "shape":"PackageFormat", - "documentation":"

Returns which endpoint of a repository to return. A repository has one endpoint for each package format:

  • npm

  • pypi

  • maven

", + "documentation":"

Returns which endpoint of a repository to return. A repository has one endpoint for each package format:

  • npm

  • pypi

  • maven

  • nuget

", "location":"querystring", "locationName":"format" } @@ -1881,13 +1881,13 @@ }, "format":{ "shape":"PackageFormat", - "documentation":"

The format of the package that contains the returned package version assets. The valid package types are:

  • npm: A Node Package Manager (npm) package.

  • pypi: A Python Package Index (PyPI) package.

  • maven: A Maven package that contains compiled code in a distributable format, such as a JAR file.

", + "documentation":"

The format of the package that contains the returned package version assets. The valid package types are:

  • npm: A Node Package Manager (npm) package.

  • pypi: A Python Package Index (PyPI) package.

  • maven: A Maven package that contains compiled code in a distributable format, such as a JAR file.

  • nuget: A NuGet package.

", "location":"querystring", "locationName":"format" }, "namespace":{ "shape":"PackageNamespace", - "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

", + "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

  • A NuGet package does not contain a corresponding component, so NuGet packages do not have a namespace.

", "location":"querystring", "locationName":"namespace" }, @@ -1926,7 +1926,7 @@ }, "namespace":{ "shape":"PackageNamespace", - "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

" + "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

  • A NuGet package does not contain a corresponding component, so NuGet packages do not have a namespace.

" }, "package":{ "shape":"PackageName", @@ -1980,13 +1980,13 @@ }, "format":{ "shape":"PackageFormat", - "documentation":"

The format of the package with the requested dependencies. The valid package types are:

  • npm: A Node Package Manager (npm) package.

  • pypi: A Python Package Index (PyPI) package.

  • maven: A Maven package that contains compiled code in a distributable format, such as a JAR file.

", + "documentation":"

The format of the package with the requested dependencies. The valid package types are:

  • npm: A Node Package Manager (npm) package.

  • pypi: A Python Package Index (PyPI) package.

  • maven: A Maven package that contains compiled code in a distributable format, such as a JAR file.

  • nuget: A NuGet package.

", "location":"querystring", "locationName":"format" }, "namespace":{ "shape":"PackageNamespace", - "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

", + "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

  • A NuGet package does not contain a corresponding component, so NuGet packages do not have a namespace.

", "location":"querystring", "locationName":"namespace" }, @@ -2015,11 +2015,11 @@ "members":{ "format":{ "shape":"PackageFormat", - "documentation":"

A format that specifies the type of the package that contains the returned dependencies. The valid values are:

  • npm

  • pypi

  • maven

" + "documentation":"

A format that specifies the type of the package that contains the returned dependencies. The valid values are:

  • npm

  • pypi

  • maven

  • nuget

" }, "namespace":{ "shape":"PackageNamespace", - "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

" + "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

  • A NuGet package does not contain a corresponding component, so NuGet packages do not have a namespace.

" }, "package":{ "shape":"PackageName", @@ -2077,13 +2077,13 @@ }, "format":{ "shape":"PackageFormat", - "documentation":"

The format of the returned packages. The valid package types are:

  • npm: A Node Package Manager (npm) package.

  • pypi: A Python Package Index (PyPI) package.

  • maven: A Maven package that contains compiled code in a distributable format, such as a JAR file.

", + "documentation":"

The format of the returned packages. The valid package types are:

  • npm: A Node Package Manager (npm) package.

  • pypi: A Python Package Index (PyPI) package.

  • maven: A Maven package that contains compiled code in a distributable format, such as a JAR file.

  • nuget: A NuGet package.

", "location":"querystring", "locationName":"format" }, "namespace":{ "shape":"PackageNamespace", - "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

", + "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

  • A NuGet package does not contain a corresponding component, so NuGet packages do not have a namespace.

", "location":"querystring", "locationName":"namespace" }, @@ -2128,11 +2128,11 @@ }, "format":{ "shape":"PackageFormat", - "documentation":"

A format of the package. Valid package format values are:

  • npm

  • pypi

  • maven

" + "documentation":"

A format of the package. Valid package format values are:

  • npm

  • pypi

  • maven

  • nuget

" }, "namespace":{ "shape":"PackageNamespace", - "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

" + "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

  • A NuGet package does not contain a corresponding component, so NuGet packages do not have a namespace.

" }, "package":{ "shape":"PackageName", @@ -2180,19 +2180,19 @@ }, "format":{ "shape":"PackageFormat", - "documentation":"

The format of the packages. The valid package types are:

  • npm: A Node Package Manager (npm) package.

  • pypi: A Python Package Index (PyPI) package.

  • maven: A Maven package that contains compiled code in a distributable format, such as a JAR file.

", + "documentation":"

The format of the packages. The valid package types are:

  • npm: A Node Package Manager (npm) package.

  • pypi: A Python Package Index (PyPI) package.

  • maven: A Maven package that contains compiled code in a distributable format, such as a JAR file.

  • nuget: A NuGet package.

", "location":"querystring", "locationName":"format" }, "namespace":{ "shape":"PackageNamespace", - "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

", + "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

  • A NuGet package does not contain a corresponding component, so NuGet packages do not have a namespace.

", "location":"querystring", "locationName":"namespace" }, "packagePrefix":{ "shape":"PackageName", - "documentation":"

A prefix used to filter returned repositories. Only repositories with names that start with repositoryPrefix are returned.

", + "documentation":"

A prefix used to filter returned packages. Only packages with names that start with packagePrefix are returned.

", "location":"querystring", "locationName":"package-prefix" }, @@ -2352,7 +2352,7 @@ "members":{ "namespace":{ "shape":"PackageNamespace", - "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

" + "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

  • A NuGet package does not contain a corresponding component, so NuGet packages do not have a namespace.

" }, "package":{ "shape":"PackageName", @@ -2378,7 +2378,8 @@ "enum":[ "npm", "pypi", - "maven" + "maven", + "nuget" ] }, "PackageName":{ @@ -2398,11 +2399,11 @@ "members":{ "format":{ "shape":"PackageFormat", - "documentation":"

The format of the package. Valid values are:

  • npm

  • pypi

  • maven

" + "documentation":"

The format of the package. Valid values are:

  • npm

  • pypi

  • maven

  • nuget

" }, "namespace":{ "shape":"PackageNamespace", - "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

" + "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

  • A NuGet package does not contain a corresponding component, so NuGet packages do not have a namespace.

" }, "package":{ "shape":"PackageName", @@ -2426,11 +2427,11 @@ "members":{ "format":{ "shape":"PackageFormat", - "documentation":"

The format of the package version. The valid package formats are:

  • npm: A Node Package Manager (npm) package.

  • pypi: A Python Package Index (PyPI) package.

  • maven: A Maven package that contains compiled code in a distributable format, such as a JAR file.

" + "documentation":"

The format of the package version. The valid package formats are:

  • npm: A Node Package Manager (npm) package.

  • pypi: A Python Package Index (PyPI) package.

  • maven: A Maven package that contains compiled code in a distributable format, such as a JAR file.

  • nuget: A NuGet package.

" }, "namespace":{ "shape":"PackageNamespace", - "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

" + "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

  • A NuGet package does not contain a corresponding component, so NuGet packages do not have a namespace.

" }, "packageName":{ "shape":"PackageName", @@ -2507,7 +2508,8 @@ }, "PackageVersionList":{ "type":"list", - "member":{"shape":"PackageVersion"} + "member":{"shape":"PackageVersion"}, + "max":100 }, "PackageVersionRevision":{ "type":"string", @@ -2704,7 +2706,7 @@ }, "packageFormat":{ "shape":"PackageFormat", - "documentation":"

The package format associated with a repository's external connection. The valid package formats are:

  • npm: A Node Package Manager (npm) package.

  • pypi: A Python Package Index (PyPI) package.

  • maven: A Maven package that contains compiled code in a distributable format, such as a JAR file.

" + "documentation":"

The package format associated with a repository's external connection. The valid package formats are:

  • npm: A Node Package Manager (npm) package.

  • pypi: A Python Package Index (PyPI) package.

  • maven: A Maven package that contains compiled code in a distributable format, such as a JAR file.

  • nuget: A NuGet package.

" }, "status":{ "shape":"ExternalConnectionStatus", @@ -2856,11 +2858,11 @@ "members":{ "key":{ "shape":"TagKey", - "documentation":"

The tag's key.

" + "documentation":"

The tag key.

" }, "value":{ "shape":"TagValue", - "documentation":"

The tag's value.

" + "documentation":"

The tag value.

" } }, "documentation":"

A tag is a key-value pair that can be used to manage, search for, or filter resources in AWS CodeArtifact.

" @@ -2891,7 +2893,7 @@ "members":{ "resourceArn":{ "shape":"Arn", - "documentation":"

The Amazon Resource Name (ARN) of the resource to which you want to add or update tags.

", + "documentation":"

The Amazon Resource Name (ARN) of the resource that you want to add or update tags for.

", "location":"querystring", "locationName":"resourceArn" }, @@ -2937,7 +2939,7 @@ "members":{ "resourceArn":{ "shape":"Arn", - "documentation":"

The Amazon Resource Name (ARN) of the resource to which you want to remove tags.

", + "documentation":"

The Amazon Resource Name (ARN) of the resource that you want to remove tags from.

", "location":"querystring", "locationName":"resourceArn" }, @@ -2983,13 +2985,13 @@ }, "format":{ "shape":"PackageFormat", - "documentation":"

A format that specifies the type of the package with the statuses to update. The valid values are:

  • npm

  • pypi

  • maven

", + "documentation":"

A format that specifies the type of the package with the statuses to update. The valid values are:

  • npm

  • pypi

  • maven

  • nuget

", "location":"querystring", "locationName":"format" }, "namespace":{ "shape":"PackageNamespace", - "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

", + "documentation":"

The namespace of the package. The package component that specifies its namespace depends on its type. For example:

  • The namespace of a Maven package is its groupId.

  • The namespace of an npm package is its scope.

  • A Python package does not contain a corresponding component, so Python packages do not have a namespace.

  • A NuGet package does not contain a corresponding component, so NuGet packages do not have a namespace.

", "location":"querystring", "locationName":"namespace" }, @@ -3128,5 +3130,5 @@ ] } }, - "documentation":"

AWS CodeArtifact is a fully managed artifact repository compatible with language-native package managers and build tools such as npm, Apache Maven, and pip. You can use CodeArtifact to share packages with development teams and pull packages. Packages can be pulled from both public and CodeArtifact repositories. You can also create an upstream relationship between a CodeArtifact repository and another repository, which effectively merges their contents from the point of view of a package manager client.

AWS CodeArtifact Components

Use the information in this guide to help you work with the following CodeArtifact components:

  • Repository: A CodeArtifact repository contains a set of package versions, each of which maps to a set of assets, or files. Repositories are polyglot, so a single repository can contain packages of any supported type. Each repository exposes endpoints for fetching and publishing packages using tools like the npm CLI, the Maven CLI ( mvn ), and pip .

  • Domain: Repositories are aggregated into a higher-level entity known as a domain. All package assets and metadata are stored in the domain, but are consumed through repositories. A given package asset, such as a Maven JAR file, is stored once per domain, no matter how many repositories it's present in. All of the assets and metadata in a domain are encrypted with the same customer master key (CMK) stored in AWS Key Management Service (AWS KMS).

    Each repository is a member of a single domain and can't be moved to a different domain.

    The domain allows organizational policy to be applied across multiple repositories, such as which accounts can access repositories in the domain, and which public repositories can be used as sources of packages.

    Although an organization can have multiple domains, we recommend a single production domain that contains all published artifacts so that teams can find and share packages across their organization.

  • Package: A package is a bundle of software and the metadata required to resolve dependencies and install the software. CodeArtifact supports npm, PyPI, and Maven package formats.

    In CodeArtifact, a package consists of:

    • A name (for example, webpack is the name of a popular npm package)

    • An optional namespace (for example, @types in @types/node)

    • A set of versions (for example, 1.0.0, 1.0.1, 1.0.2, etc.)

    • Package-level metadata (for example, npm tags)

  • Package version: A version of a package, such as @types/node 12.6.9. The version number format and semantics vary for different package formats. For example, npm package versions must conform to the Semantic Versioning specification. In CodeArtifact, a package version consists of the version identifier, metadata at the package version level, and a set of assets.

  • Upstream repository: One repository is upstream of another when the package versions in it can be accessed from the repository endpoint of the downstream repository, effectively merging the contents of the two repositories from the point of view of a client. CodeArtifact allows creating an upstream relationship between two repositories.

  • Asset: An individual file stored in CodeArtifact associated with a package version, such as an npm .tgz file or Maven POM and JAR files.

CodeArtifact supports these operations:

  • AssociateExternalConnection: Adds an existing external connection to a repository.

  • CopyPackageVersions: Copies package versions from one repository to another repository in the same domain.

  • CreateDomain: Creates a domain

  • CreateRepository: Creates a CodeArtifact repository in a domain.

  • DeleteDomain: Deletes a domain. You cannot delete a domain that contains repositories.

  • DeleteDomainPermissionsPolicy: Deletes the resource policy that is set on a domain.

  • DeletePackageVersions: Deletes versions of a package. After a package has been deleted, it can be republished, but its assets and metadata cannot be restored because they have been permanently removed from storage.

  • DeleteRepository: Deletes a repository.

  • DeleteRepositoryPermissionsPolicy: Deletes the resource policy that is set on a repository.

  • DescribeDomain: Returns a DomainDescription object that contains information about the requested domain.

  • DescribePackageVersion: Returns a PackageVersionDescription object that contains details about a package version.

  • DescribeRepository: Returns a RepositoryDescription object that contains detailed information about the requested repository.

  • DisposePackageVersions: Disposes versions of a package. A package version with the status Disposed cannot be restored because they have been permanently removed from storage.

  • DisassociateExternalConnection: Removes an existing external connection from a repository.

  • GetAuthorizationToken: Generates a temporary authorization token for accessing repositories in the domain. The token expires the authorization period has passed. The default authorization period is 12 hours and can be customized to any length with a maximum of 12 hours.

  • GetDomainPermissionsPolicy: Returns the policy of a resource that is attached to the specified domain.

  • GetPackageVersionAsset: Returns the contents of an asset that is in a package version.

  • GetPackageVersionReadme: Gets the readme file or descriptive text for a package version.

  • GetRepositoryEndpoint: Returns the endpoint of a repository for a specific package format. A repository has one endpoint for each package format:

    • npm

    • pypi

    • maven

  • GetRepositoryPermissionsPolicy: Returns the resource policy that is set on a repository.

  • ListDomains: Returns a list of DomainSummary objects. Each returned DomainSummary object contains information about a domain.

  • ListPackages: Lists the packages in a repository.

  • ListPackageVersionAssets: Lists the assets for a given package version.

  • ListPackageVersionDependencies: Returns a list of the direct dependencies for a package version.

  • ListPackageVersions: Returns a list of package versions for a specified package in a repository.

  • ListRepositories: Returns a list of repositories owned by the AWS account that called this method.

  • ListRepositoriesInDomain: Returns a list of the repositories in a domain.

  • PutDomainPermissionsPolicy: Attaches a resource policy to a domain.

  • PutRepositoryPermissionsPolicy: Sets the resource policy on a repository that specifies permissions to access it.

  • UpdatePackageVersionsStatus: Updates the status of one or more versions of a package.

  • UpdateRepository: Updates the properties of a repository.

" + "documentation":"

AWS CodeArtifact is a fully managed artifact repository compatible with language-native package managers and build tools such as npm, Apache Maven, NuGet, and pip. You can use CodeArtifact to share packages with development teams and pull packages. Packages can be pulled from both public and CodeArtifact repositories. You can also create an upstream relationship between a CodeArtifact repository and another repository, which effectively merges their contents from the point of view of a package manager client.

AWS CodeArtifact Components

Use the information in this guide to help you work with the following CodeArtifact components:

  • Repository: A CodeArtifact repository contains a set of package versions, each of which maps to a set of assets, or files. Repositories are polyglot, so a single repository can contain packages of any supported type. Each repository exposes endpoints for fetching and publishing packages using tools like the npm CLI, the NuGet CLI, the Maven CLI ( mvn ), and pip .

  • Domain: Repositories are aggregated into a higher-level entity known as a domain. All package assets and metadata are stored in the domain, but are consumed through repositories. A given package asset, such as a Maven JAR file, is stored once per domain, no matter how many repositories it's present in. All of the assets and metadata in a domain are encrypted with the same customer master key (CMK) stored in AWS Key Management Service (AWS KMS).

    Each repository is a member of a single domain and can't be moved to a different domain.

    The domain allows organizational policy to be applied across multiple repositories, such as which accounts can access repositories in the domain, and which public repositories can be used as sources of packages.

    Although an organization can have multiple domains, we recommend a single production domain that contains all published artifacts so that teams can find and share packages across their organization.

  • Package: A package is a bundle of software and the metadata required to resolve dependencies and install the software. CodeArtifact supports npm, PyPI, Maven, and NuGet package formats.

    In CodeArtifact, a package consists of:

    • A name (for example, webpack is the name of a popular npm package)

    • An optional namespace (for example, @types in @types/node)

    • A set of versions (for example, 1.0.0, 1.0.1, 1.0.2, etc.)

    • Package-level metadata (for example, npm tags)

  • Package version: A version of a package, such as @types/node 12.6.9. The version number format and semantics vary for different package formats. For example, npm package versions must conform to the Semantic Versioning specification. In CodeArtifact, a package version consists of the version identifier, metadata at the package version level, and a set of assets.

  • Upstream repository: One repository is upstream of another when the package versions in it can be accessed from the repository endpoint of the downstream repository, effectively merging the contents of the two repositories from the point of view of a client. CodeArtifact allows creating an upstream relationship between two repositories.

  • Asset: An individual file stored in CodeArtifact associated with a package version, such as an npm .tgz file or Maven POM and JAR files.

CodeArtifact supports these operations:

  • AssociateExternalConnection: Adds an existing external connection to a repository.

  • CopyPackageVersions: Copies package versions from one repository to another repository in the same domain.

  • CreateDomain: Creates a domain

  • CreateRepository: Creates a CodeArtifact repository in a domain.

  • DeleteDomain: Deletes a domain. You cannot delete a domain that contains repositories.

  • DeleteDomainPermissionsPolicy: Deletes the resource policy that is set on a domain.

  • DeletePackageVersions: Deletes versions of a package. After a package has been deleted, it can be republished, but its assets and metadata cannot be restored because they have been permanently removed from storage.

  • DeleteRepository: Deletes a repository.

  • DeleteRepositoryPermissionsPolicy: Deletes the resource policy that is set on a repository.

  • DescribeDomain: Returns a DomainDescription object that contains information about the requested domain.

  • DescribePackageVersion: Returns a PackageVersionDescription object that contains details about a package version.

  • DescribeRepository: Returns a RepositoryDescription object that contains detailed information about the requested repository.

  • DisposePackageVersions: Disposes versions of a package. A package version with the status Disposed cannot be restored because they have been permanently removed from storage.

  • DisassociateExternalConnection: Removes an existing external connection from a repository.

  • GetAuthorizationToken: Generates a temporary authorization token for accessing repositories in the domain. The token expires the authorization period has passed. The default authorization period is 12 hours and can be customized to any length with a maximum of 12 hours.

  • GetDomainPermissionsPolicy: Returns the policy of a resource that is attached to the specified domain.

  • GetPackageVersionAsset: Returns the contents of an asset that is in a package version.

  • GetPackageVersionReadme: Gets the readme file or descriptive text for a package version.

  • GetRepositoryEndpoint: Returns the endpoint of a repository for a specific package format. A repository has one endpoint for each package format:

    • npm

    • pypi

    • maven

    • nuget

  • GetRepositoryPermissionsPolicy: Returns the resource policy that is set on a repository.

  • ListDomains: Returns a list of DomainSummary objects. Each returned DomainSummary object contains information about a domain.

  • ListPackages: Lists the packages in a repository.

  • ListPackageVersionAssets: Lists the assets for a given package version.

  • ListPackageVersionDependencies: Returns a list of the direct dependencies for a package version.

  • ListPackageVersions: Returns a list of package versions for a specified package in a repository.

  • ListRepositories: Returns a list of repositories owned by the AWS account that called this method.

  • ListRepositoriesInDomain: Returns a list of the repositories in a domain.

  • ListTagsForResource: Returns a list of the tags associated with a resource.

  • PutDomainPermissionsPolicy: Attaches a resource policy to a domain.

  • PutRepositoryPermissionsPolicy: Sets the resource policy on a repository that specifies permissions to access it.

  • TagResource: Adds or updates tags for a resource.

  • UntagResource: Removes a tag from a resource.

  • UpdatePackageVersionsStatus: Updates the status of one or more versions of a package.

  • UpdateRepository: Updates the properties of a repository.

" } From 070ebc1fc05265d1e572d843df90ace566a2176b Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:05:12 +0000 Subject: [PATCH 268/339] AWS IoT Update: This release enables users to identify different file types in the over-the-air update (OTA) functionality using fileType parameter for CreateOTAUpdate API --- .changes/next-release/feature-AWSIoT-1cf7cd7.json | 6 ++++++ .../src/main/resources/codegen-resources/service-2.json | 9 +++++++++ 2 files changed, 15 insertions(+) create mode 100644 .changes/next-release/feature-AWSIoT-1cf7cd7.json diff --git a/.changes/next-release/feature-AWSIoT-1cf7cd7.json b/.changes/next-release/feature-AWSIoT-1cf7cd7.json new file mode 100644 index 000000000000..c7e30996923d --- /dev/null +++ b/.changes/next-release/feature-AWSIoT-1cf7cd7.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS IoT", + "contributor": "", + "description": "This release enables users to identify different file types in the over-the-air update (OTA) functionality using fileType parameter for CreateOTAUpdate API" +} diff --git a/services/iot/src/main/resources/codegen-resources/service-2.json b/services/iot/src/main/resources/codegen-resources/service-2.json index 37d2f6b29576..3cbd4f4d20db 100644 --- a/services/iot/src/main/resources/codegen-resources/service-2.json +++ b/services/iot/src/main/resources/codegen-resources/service-2.json @@ -9053,6 +9053,11 @@ "documentation":"

The location of the OTA update.

" }, "FileName":{"type":"string"}, + "FileType":{ + "type":"integer", + "max":255, + "min":0 + }, "FindingId":{ "type":"string", "max":128, @@ -12638,6 +12643,10 @@ "shape":"FileName", "documentation":"

The name of the file.

" }, + "fileType":{ + "shape":"FileType", + "documentation":"

An integer value you can include in the job document to allow your devices to identify the type of file received from the cloud.

" + }, "fileVersion":{ "shape":"OTAUpdateFileVersion", "documentation":"

The file version.

" From 473fa82369446ee9789b58f5354dd22c46df34f8 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:05:48 +0000 Subject: [PATCH 269/339] Amazon ElastiCache Update: Documentation updates for elasticache --- .../next-release/feature-AmazonElastiCache-73f0df6.json | 6 ++++++ .../src/main/resources/codegen-resources/service-2.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AmazonElastiCache-73f0df6.json diff --git a/.changes/next-release/feature-AmazonElastiCache-73f0df6.json b/.changes/next-release/feature-AmazonElastiCache-73f0df6.json new file mode 100644 index 000000000000..801e9105ca33 --- /dev/null +++ b/.changes/next-release/feature-AmazonElastiCache-73f0df6.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon ElastiCache", + "contributor": "", + "description": "Documentation updates for elasticache" +} diff --git a/services/elasticache/src/main/resources/codegen-resources/service-2.json b/services/elasticache/src/main/resources/codegen-resources/service-2.json index 153a9ba7602f..1cf7fd5bf33a 100644 --- a/services/elasticache/src/main/resources/codegen-resources/service-2.json +++ b/services/elasticache/src/main/resources/codegen-resources/service-2.json @@ -3352,7 +3352,7 @@ }, "OfferingType":{ "shape":"String", - "documentation":"

The offering type filter value. Use this parameter to show only the available offerings matching the specified offering type.

Valid Values: \"Light Utilization\"|\"Medium Utilization\"|\"Heavy Utilization\"

" + "documentation":"

The offering type filter value. Use this parameter to show only the available offerings matching the specified offering type.

Valid Values: \"Light Utilization\"|\"Medium Utilization\"|\"Heavy Utilization\" |\"All Upfront\"|\"Partial Upfront\"| \"No Upfront\"

" }, "MaxRecords":{ "shape":"IntegerOptional", From 5c360da3ba8620d776fb81ebbc725fd1d61a7091 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:05:12 +0000 Subject: [PATCH 270/339] Amazon Elastic Compute Cloud Update: This release adds support for Multiple Private DNS names to DescribeVpcEndpointServices response. --- ...ure-AmazonElasticComputeCloud-8d4b5c9.json | 6 +++++ .../codegen-resources/service-2.json | 23 +++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-8d4b5c9.json diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-8d4b5c9.json b/.changes/next-release/feature-AmazonElasticComputeCloud-8d4b5c9.json new file mode 100644 index 000000000000..dcca71795bc9 --- /dev/null +++ b/.changes/next-release/feature-AmazonElasticComputeCloud-8d4b5c9.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "This release adds support for Multiple Private DNS names to DescribeVpcEndpointServices response." +} diff --git a/services/ec2/src/main/resources/codegen-resources/service-2.json b/services/ec2/src/main/resources/codegen-resources/service-2.json index 2576dbdaadd6..4cbac98719da 100755 --- a/services/ec2/src/main/resources/codegen-resources/service-2.json +++ b/services/ec2/src/main/resources/codegen-resources/service-2.json @@ -30355,6 +30355,24 @@ "Role" ] }, + "PrivateDnsDetails":{ + "type":"structure", + "members":{ + "PrivateDnsName":{ + "shape":"String", + "documentation":"

The private DNS name assigned to the VPC endpoint service.

", + "locationName":"privateDnsName" + } + }, + "documentation":"

Information about the Private DNS name for interface endpoints.

" + }, + "PrivateDnsDetailsSet":{ + "type":"list", + "member":{ + "shape":"PrivateDnsDetails", + "locationName":"item" + } + }, "PrivateDnsNameConfiguration":{ "type":"structure", "members":{ @@ -34580,6 +34598,11 @@ "documentation":"

The private DNS name for the service.

", "locationName":"privateDnsName" }, + "PrivateDnsNames":{ + "shape":"PrivateDnsDetailsSet", + "documentation":"

The private DNS names assigned to the VPC endpoint service.

", + "locationName":"privateDnsNameSet" + }, "VpcEndpointPolicySupported":{ "shape":"Boolean", "documentation":"

Indicates whether the service supports endpoint policies.

", From 36b9c2094175cf48cc89831882bd482c9cef576f Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:05:20 +0000 Subject: [PATCH 271/339] AWS Glue Update: Feature1 - Glue crawler adds data lineage configuration option. Feature2 - AWS Glue Data Catalog adds APIs for PartitionIndex creation and deletion as part of Enhancement Partition Management feature. --- .../next-release/feature-AWSGlue-4e90067.json | 6 + .../codegen-resources/service-2.json | 173 +++++++++++++++++- 2 files changed, 177 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AWSGlue-4e90067.json diff --git a/.changes/next-release/feature-AWSGlue-4e90067.json b/.changes/next-release/feature-AWSGlue-4e90067.json new file mode 100644 index 000000000000..1e28c1002112 --- /dev/null +++ b/.changes/next-release/feature-AWSGlue-4e90067.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Glue", + "contributor": "", + "description": "Feature1 - Glue crawler adds data lineage configuration option. Feature2 - AWS Glue Data Catalog adds APIs for PartitionIndex creation and deletion as part of Enhancement Partition Management feature." +} diff --git a/services/glue/src/main/resources/codegen-resources/service-2.json b/services/glue/src/main/resources/codegen-resources/service-2.json index 044a0cbed88a..d55787e83e1f 100644 --- a/services/glue/src/main/resources/codegen-resources/service-2.json +++ b/services/glue/src/main/resources/codegen-resources/service-2.json @@ -391,6 +391,25 @@ ], "documentation":"

Creates a new partition.

" }, + "CreatePartitionIndex":{ + "name":"CreatePartitionIndex", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreatePartitionIndexRequest"}, + "output":{"shape":"CreatePartitionIndexResponse"}, + "errors":[ + {"shape":"AlreadyExistsException"}, + {"shape":"InvalidInputException"}, + {"shape":"EntityNotFoundException"}, + {"shape":"ResourceNumberLimitExceededException"}, + {"shape":"InternalServiceException"}, + {"shape":"OperationTimeoutException"}, + {"shape":"GlueEncryptionException"} + ], + "documentation":"

Creates a specified partition index in an existing table.

" + }, "CreateRegistry":{ "name":"CreateRegistry", "http":{ @@ -691,6 +710,24 @@ ], "documentation":"

Deletes a specified partition.

" }, + "DeletePartitionIndex":{ + "name":"DeletePartitionIndex", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeletePartitionIndexRequest"}, + "output":{"shape":"DeletePartitionIndexResponse"}, + "errors":[ + {"shape":"InternalServiceException"}, + {"shape":"OperationTimeoutException"}, + {"shape":"InvalidInputException"}, + {"shape":"EntityNotFoundException"}, + {"shape":"ConflictException"}, + {"shape":"GlueEncryptionException"} + ], + "documentation":"

Deletes a specified partition index from an existing table.

" + }, "DeleteRegistry":{ "name":"DeleteRegistry", "http":{ @@ -2603,6 +2640,38 @@ "exception":true }, "AttemptCount":{"type":"integer"}, + "BackfillError":{ + "type":"structure", + "members":{ + "Code":{ + "shape":"BackfillErrorCode", + "documentation":"

The error code for an error that occurred when registering partition indexes for an existing table.

" + }, + "Partitions":{ + "shape":"BackfillErroredPartitionsList", + "documentation":"

A list of a limited number of partitions in the response.

" + } + }, + "documentation":"

A list of errors that can occur when registering partition indexes for an existing table.

These errors give the details about why an index registration failed and provide a limited number of partitions in the response, so that you can fix the partitions at fault and try registering the index again. The most common set of errors that can occur are categorized as follows:

  • EncryptedPartitionError: The partitions are encrypted.

  • InvalidPartitionTypeDataError: The partition value doesn't match the data type for that partition column.

  • MissingPartitionValueError: The partitions are encrypted.

  • UnsupportedPartitionCharacterError: Characters inside the partition value are not supported. For example: U+0000 , U+0001, U+0002.

  • InternalError: Any error which does not belong to other error codes.

" + }, + "BackfillErrorCode":{ + "type":"string", + "enum":[ + "ENCRYPTED_PARTITION_ERROR", + "INTERNAL_ERROR", + "INVALID_PARTITION_TYPE_DATA_ERROR", + "MISSING_PARTITION_VALUE_ERROR", + "UNSUPPORTED_PARTITION_CHARACTER_ERROR" + ] + }, + "BackfillErroredPartitionsList":{ + "type":"list", + "member":{"shape":"PartitionValueList"} + }, + "BackfillErrors":{ + "type":"list", + "member":{"shape":"BackfillError"} + }, "BatchCreatePartitionRequest":{ "type":"structure", "required":[ @@ -3955,6 +4024,10 @@ "shape":"SchemaChangePolicy", "documentation":"

The policy that specifies update and delete behaviors for the crawler.

" }, + "LineageConfiguration":{ + "shape":"LineageConfiguration", + "documentation":"

A configuration that specifies whether data lineage is enabled for the crawler.

" + }, "State":{ "shape":"CrawlerState", "documentation":"

Indicates whether the crawler is running, or whether a run is pending.

" @@ -3999,6 +4072,13 @@ "documentation":"

Specifies a crawler program that examines a data source and uses classifiers to try to determine its schema. If successful, the crawler records metadata concerning the data source in the AWS Glue Data Catalog.

" }, "CrawlerConfiguration":{"type":"string"}, + "CrawlerLineageSettings":{ + "type":"string", + "enum":[ + "ENABLE", + "DISABLE" + ] + }, "CrawlerList":{ "type":"list", "member":{"shape":"Crawler"} @@ -4226,6 +4306,10 @@ "shape":"RecrawlPolicy", "documentation":"

A policy that specifies whether to crawl the entire dataset again, or to crawl only folders that were added since the last crawler run.

" }, + "LineageConfiguration":{ + "shape":"LineageConfiguration", + "documentation":"

Specifies data lineage configuration settings for the crawler.

" + }, "Configuration":{ "shape":"CrawlerConfiguration", "documentation":"

Crawler configuration information. This versioned JSON string allows users to specify aspects of a crawler's behavior. For more information, see Configuring a Crawler.

" @@ -4663,6 +4747,37 @@ } } }, + "CreatePartitionIndexRequest":{ + "type":"structure", + "required":[ + "DatabaseName", + "TableName", + "PartitionIndex" + ], + "members":{ + "CatalogId":{ + "shape":"CatalogIdString", + "documentation":"

The catalog ID where the table resides.

" + }, + "DatabaseName":{ + "shape":"NameString", + "documentation":"

Specifies the name of a database in which you want to create a partition index.

" + }, + "TableName":{ + "shape":"NameString", + "documentation":"

Specifies the name of a table in which you want to create a partition index.

" + }, + "PartitionIndex":{ + "shape":"PartitionIndex", + "documentation":"

Specifies a PartitionIndex structure to create a partition index in an existing table.

" + } + } + }, + "CreatePartitionIndexResponse":{ + "type":"structure", + "members":{ + } + }, "CreatePartitionRequest":{ "type":"structure", "required":[ @@ -5540,6 +5655,37 @@ } } }, + "DeletePartitionIndexRequest":{ + "type":"structure", + "required":[ + "DatabaseName", + "TableName", + "IndexName" + ], + "members":{ + "CatalogId":{ + "shape":"CatalogIdString", + "documentation":"

The catalog ID where the table resides.

" + }, + "DatabaseName":{ + "shape":"NameString", + "documentation":"

Specifies the name of a database from which you want to delete a partition index.

" + }, + "TableName":{ + "shape":"NameString", + "documentation":"

Specifies the name of a table from which you want to delete a partition index.

" + }, + "IndexName":{ + "shape":"NameString", + "documentation":"

The name of the partition index to be deleted.

" + } + } + }, + "DeletePartitionIndexResponse":{ + "type":"structure", + "members":{ + } + }, "DeletePartitionRequest":{ "type":"structure", "required":[ @@ -8712,6 +8858,16 @@ ] }, "LatestSchemaVersionBoolean":{"type":"boolean"}, + "LineageConfiguration":{ + "type":"structure", + "members":{ + "CrawlerLineageSettings":{ + "shape":"CrawlerLineageSettings", + "documentation":"

Specifies whether data lineage is enabled for the crawler. Valid values are:

  • ENABLE: enables data lineage for the crawler

  • DISABLE: disables data lineage for the crawler

" + } + }, + "documentation":"

Specifies data lineage configuration settings for the crawler.

" + }, "ListCrawlersRequest":{ "type":"structure", "members":{ @@ -9570,7 +9726,11 @@ }, "IndexStatus":{ "shape":"PartitionIndexStatus", - "documentation":"

The status of the partition index.

" + "documentation":"

The status of the partition index.

The possible statuses are:

  • CREATING: The index is being created. When an index is in a CREATING state, the index or its table cannot be deleted.

  • ACTIVE: The index creation succeeds.

  • FAILED: The index creation fails.

  • DELETING: The index is deleted from the list of indexes.

" + }, + "BackfillErrors":{ + "shape":"BackfillErrors", + "documentation":"

A list of errors that can occur when registering partition indexes for an existing table.

" } }, "documentation":"

A descriptor for a partition index in a table.

" @@ -9586,7 +9746,12 @@ }, "PartitionIndexStatus":{ "type":"string", - "enum":["ACTIVE"] + "enum":[ + "CREATING", + "ACTIVE", + "DELETING", + "FAILED" + ] }, "PartitionInput":{ "type":"structure", @@ -11990,6 +12155,10 @@ "shape":"RecrawlPolicy", "documentation":"

A policy that specifies whether to crawl the entire dataset again, or to crawl only folders that were added since the last crawler run.

" }, + "LineageConfiguration":{ + "shape":"LineageConfiguration", + "documentation":"

Specifies data lineage configuration settings for the crawler.

" + }, "Configuration":{ "shape":"CrawlerConfiguration", "documentation":"

Crawler configuration information. This versioned JSON string allows users to specify aspects of a crawler's behavior. For more information, see Configuring a Crawler.

" From 0d2bbe96f8ede6a1499ff8f2ab48f21f9658e289 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:05:19 +0000 Subject: [PATCH 272/339] Amazon Forecast Service Update: Releasing the set of PredictorBacktestExportJob APIs which allow customers to export backtest values and item-level metrics data from Predictor training. --- ...feature-AmazonForecastService-3407d71.json | 6 + .../codegen-resources/paginators-1.json | 6 + .../codegen-resources/service-2.json | 219 +++++++++++++++++- 3 files changed, 228 insertions(+), 3 deletions(-) create mode 100644 .changes/next-release/feature-AmazonForecastService-3407d71.json diff --git a/.changes/next-release/feature-AmazonForecastService-3407d71.json b/.changes/next-release/feature-AmazonForecastService-3407d71.json new file mode 100644 index 000000000000..605e7bac85aa --- /dev/null +++ b/.changes/next-release/feature-AmazonForecastService-3407d71.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Forecast Service", + "contributor": "", + "description": "Releasing the set of PredictorBacktestExportJob APIs which allow customers to export backtest values and item-level metrics data from Predictor training." +} diff --git a/services/forecast/src/main/resources/codegen-resources/paginators-1.json b/services/forecast/src/main/resources/codegen-resources/paginators-1.json index 57661322c1a0..da6de7d8f44d 100644 --- a/services/forecast/src/main/resources/codegen-resources/paginators-1.json +++ b/services/forecast/src/main/resources/codegen-resources/paginators-1.json @@ -30,6 +30,12 @@ "output_token": "NextToken", "result_key": "Forecasts" }, + "ListPredictorBacktestExportJobs": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "PredictorBacktestExportJobs" + }, "ListPredictors": { "input_token": "NextToken", "limit_key": "MaxResults", diff --git a/services/forecast/src/main/resources/codegen-resources/service-2.json b/services/forecast/src/main/resources/codegen-resources/service-2.json index 43df730e8051..cc234f8e3cb6 100644 --- a/services/forecast/src/main/resources/codegen-resources/service-2.json +++ b/services/forecast/src/main/resources/codegen-resources/service-2.json @@ -113,6 +113,23 @@ ], "documentation":"

Creates an Amazon Forecast predictor.

In the request, provide a dataset group and either specify an algorithm or let Amazon Forecast choose an algorithm for you using AutoML. If you specify an algorithm, you also can override algorithm-specific hyperparameters.

Amazon Forecast uses the algorithm to train a predictor using the latest version of the datasets in the specified dataset group. You can then generate a forecast using the CreateForecast operation.

To see the evaluation metrics, use the GetAccuracyMetrics operation.

You can specify a featurization configuration to fill and aggregate the data fields in the TARGET_TIME_SERIES dataset to improve model training. For more information, see FeaturizationConfig.

For RELATED_TIME_SERIES datasets, CreatePredictor verifies that the DataFrequency specified when the dataset was created matches the ForecastFrequency. TARGET_TIME_SERIES datasets don't have this restriction. Amazon Forecast also verifies the delimiter and timestamp format. For more information, see howitworks-datasets-groups.

By default, predictors are trained and evaluated at the 0.1 (P10), 0.5 (P50), and 0.9 (P90) quantiles. You can choose custom forecast types to train and evaluate your predictor by setting the ForecastTypes.

AutoML

If you want Amazon Forecast to evaluate each algorithm and choose the one that minimizes the objective function, set PerformAutoML to true. The objective function is defined as the mean of the weighted losses over the forecast types. By default, these are the p10, p50, and p90 quantile losses. For more information, see EvaluationResult.

When AutoML is enabled, the following properties are disallowed:

  • AlgorithmArn

  • HPOConfig

  • PerformHPO

  • TrainingParameters

To get a list of all of your predictors, use the ListPredictors operation.

Before you can use the predictor to create a forecast, the Status of the predictor must be ACTIVE, signifying that training has completed. To get the status, use the DescribePredictor operation.

" }, + "CreatePredictorBacktestExportJob":{ + "name":"CreatePredictorBacktestExportJob", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreatePredictorBacktestExportJobRequest"}, + "output":{"shape":"CreatePredictorBacktestExportJobResponse"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"ResourceAlreadyExistsException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ResourceInUseException"}, + {"shape":"LimitExceededException"} + ], + "documentation":"

Exports backtest forecasts and accuracy metrics generated by the CreatePredictor operation. Two CSV files are exported to a specified S3 bucket.

You must specify a DataDestination object that includes an AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket. For more information, see aws-forecast-iam-roles.

" + }, "DeleteDataset":{ "name":"DeleteDataset", "http":{ @@ -203,6 +220,21 @@ "documentation":"

Deletes a predictor created using the CreatePredictor operation. You can delete only predictor that have a status of ACTIVE or CREATE_FAILED. To get the status, use the DescribePredictor operation.

", "idempotent":true }, + "DeletePredictorBacktestExportJob":{ + "name":"DeletePredictorBacktestExportJob", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeletePredictorBacktestExportJobRequest"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ResourceInUseException"} + ], + "documentation":"

Deletes a predictor backtest export job.

", + "idempotent":true + }, "DescribeDataset":{ "name":"DescribeDataset", "http":{ @@ -293,6 +325,21 @@ "documentation":"

Describes a predictor created using the CreatePredictor operation.

In addition to listing the properties provided in the CreatePredictor request, this operation lists the following properties:

  • DatasetImportJobArns - The dataset import jobs used to import training data.

  • AutoMLAlgorithmArns - If AutoML is performed, the algorithms that were evaluated.

  • CreationTime

  • LastModificationTime

  • Status

  • Message - If an error occurred, information about the error.

", "idempotent":true }, + "DescribePredictorBacktestExportJob":{ + "name":"DescribePredictorBacktestExportJob", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribePredictorBacktestExportJobRequest"}, + "output":{"shape":"DescribePredictorBacktestExportJobResponse"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"ResourceNotFoundException"} + ], + "documentation":"

Describes a predictor backtest export job created using the CreatePredictorBacktestExportJob operation.

In addition to listing the properties provided by the user in the CreatePredictorBacktestExportJob request, this operation lists the following properties:

  • CreationTime

  • LastModificationTime

  • Status

  • Message (if an error occurred)

", + "idempotent":true + }, "GetAccuracyMetrics":{ "name":"GetAccuracyMetrics", "http":{ @@ -382,6 +429,21 @@ "documentation":"

Returns a list of forecasts created using the CreateForecast operation. For each forecast, this operation returns a summary of its properties, including its Amazon Resource Name (ARN). To retrieve the complete set of properties, specify the ARN with the DescribeForecast operation. You can filter the list using an array of Filter objects.

", "idempotent":true }, + "ListPredictorBacktestExportJobs":{ + "name":"ListPredictorBacktestExportJobs", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListPredictorBacktestExportJobsRequest"}, + "output":{"shape":"ListPredictorBacktestExportJobsResponse"}, + "errors":[ + {"shape":"InvalidNextTokenException"}, + {"shape":"InvalidInputException"} + ], + "documentation":"

Returns a list of predictor backtest export jobs created using the CreatePredictorBacktestExportJob operation. This operation returns a summary for each backtest export job. You can filter the list using an array of Filter objects.

To retrieve the complete set of properties for a particular backtest export job, use the ARN with the DescribePredictorBacktestExportJob operation.

", + "idempotent":true + }, "ListPredictors":{ "name":"ListPredictors", "http":{ @@ -724,6 +786,38 @@ } } }, + "CreatePredictorBacktestExportJobRequest":{ + "type":"structure", + "required":[ + "PredictorBacktestExportJobName", + "PredictorArn", + "Destination" + ], + "members":{ + "PredictorBacktestExportJobName":{ + "shape":"Name", + "documentation":"

The name for the backtest export job.

" + }, + "PredictorArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the predictor that you want to export.

" + }, + "Destination":{"shape":"DataDestination"}, + "Tags":{ + "shape":"Tags", + "documentation":"

Optional metadata to help you categorize and organize your backtests. Each tag consists of a key and an optional value, both of which you define. Tag keys and values are case sensitive.

The following restrictions apply to tags:

  • For each resource, each tag key must be unique and each tag key must have one value.

  • Maximum number of tags per resource: 50.

  • Maximum key length: 128 Unicode characters in UTF-8.

  • Maximum value length: 256 Unicode characters in UTF-8.

  • Accepted characters: all letters and numbers, spaces representable in UTF-8, and + - = . _ : / @. If your tagging schema is used across other services and resources, the character restrictions of those services also apply.

  • Key prefixes cannot include any upper or lowercase combination of aws: or AWS:. Values can have this prefix. If a tag value has aws as its prefix but the key does not, Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit. You cannot edit or delete tag keys with this prefix.

" + } + } + }, + "CreatePredictorBacktestExportJobResponse":{ + "type":"structure", + "members":{ + "PredictorBacktestExportJobArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the predictor backtest export job that you want to export.

" + } + } + }, "CreatePredictorRequest":{ "type":"structure", "required":[ @@ -805,7 +899,7 @@ "documentation":"

The path to an Amazon Simple Storage Service (Amazon S3) bucket along with the credentials to access the bucket.

" } }, - "documentation":"

The destination for an exported forecast, an AWS Identity and Access Management (IAM) role that allows Amazon Forecast to access the location and, optionally, an AWS Key Management Service (KMS) key. This object is submitted in the CreateForecastExportJob request.

" + "documentation":"

The destination for an export job, an AWS Identity and Access Management (IAM) role that allows Amazon Forecast to access the location and, optionally, an AWS Key Management Service (KMS) key.

" }, "DataSource":{ "type":"structure", @@ -974,6 +1068,16 @@ } } }, + "DeletePredictorBacktestExportJobRequest":{ + "type":"structure", + "required":["PredictorBacktestExportJobArn"], + "members":{ + "PredictorBacktestExportJobArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the predictor backtest export job to delete.

" + } + } + }, "DeletePredictorRequest":{ "type":"structure", "required":["PredictorArn"], @@ -1239,6 +1343,50 @@ } } }, + "DescribePredictorBacktestExportJobRequest":{ + "type":"structure", + "required":["PredictorBacktestExportJobArn"], + "members":{ + "PredictorBacktestExportJobArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the predictor backtest export job.

" + } + } + }, + "DescribePredictorBacktestExportJobResponse":{ + "type":"structure", + "members":{ + "PredictorBacktestExportJobArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the predictor backtest export job.

" + }, + "PredictorBacktestExportJobName":{ + "shape":"Name", + "documentation":"

The name of the predictor backtest export job.

" + }, + "PredictorArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the predictor.

" + }, + "Destination":{"shape":"DataDestination"}, + "Message":{ + "shape":"Message", + "documentation":"

Information about any errors that may have occurred during the backtest export.

" + }, + "Status":{ + "shape":"Status", + "documentation":"

The status of the predictor backtest export job. States include:

  • ACTIVE

  • CREATE_PENDING

  • CREATE_IN_PROGRESS

  • CREATE_FAILED

  • DELETE_PENDING

  • DELETE_IN_PROGRESS

  • DELETE_FAILED

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

When the predictor backtest export job was created.

" + }, + "LastModificationTime":{ + "shape":"Timestamp", + "documentation":"

When the last successful export job finished.

" + } + } + }, "DescribePredictorRequest":{ "type":"structure", "required":["PredictorArn"], @@ -1371,7 +1519,7 @@ "members":{ "ForecastType":{ "shape":"ForecastType", - "documentation":"

Forecast types can be quantiles from 0.01 to 0.99 (by increments of 0.01), and the mean.

" + "documentation":"

The Forecast type used to compute WAPE and RMSE.

" }, "WAPE":{ "shape":"Double", @@ -1883,6 +2031,36 @@ } } }, + "ListPredictorBacktestExportJobsRequest":{ + "type":"structure", + "members":{ + "NextToken":{ + "shape":"NextToken", + "documentation":"

If the result of the previous request was truncated, the response includes a NextToken. To retrieve the next set of results, use the token in the next request. Tokens expire after 24 hours.

" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The number of items to return in the response.

" + }, + "Filters":{ + "shape":"Filters", + "documentation":"

An array of filters. For each filter, provide a condition and a match statement. The condition is either IS or IS_NOT, which specifies whether to include or exclude the predictor backtest export jobs that match the statement from the list. The match statement consists of a key and a value.

Filter properties

  • Condition - The condition to apply. Valid values are IS and IS_NOT. To include the predictor backtest export jobs that match the statement, specify IS. To exclude matching predictor backtest export jobs, specify IS_NOT.

  • Key - The name of the parameter to filter on. Valid values are PredictorBacktestExportJobArn and Status.

  • Value - The value to match.

" + } + } + }, + "ListPredictorBacktestExportJobsResponse":{ + "type":"structure", + "members":{ + "PredictorBacktestExportJobs":{ + "shape":"PredictorBacktestExportJobs", + "documentation":"

An array of objects that summarize the properties of each predictor backtest export job.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

Returns this token if the response is truncated. To retrieve the next set of results, use the token in the next request.

" + } + } + }, "ListPredictorsRequest":{ "type":"structure", "members":{ @@ -1997,6 +2175,41 @@ "max":256, "pattern":"^[a-zA-Z0-9\\-\\_\\.\\/\\[\\]\\,\\\"\\\\\\s]+$" }, + "PredictorBacktestExportJobSummary":{ + "type":"structure", + "members":{ + "PredictorBacktestExportJobArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the predictor backtest export job.

" + }, + "PredictorBacktestExportJobName":{ + "shape":"Name", + "documentation":"

The name of the predictor backtest export job.

" + }, + "Destination":{"shape":"DataDestination"}, + "Status":{ + "shape":"Status", + "documentation":"

The status of the predictor backtest export job. States include:

  • ACTIVE

  • CREATE_PENDING

  • CREATE_IN_PROGRESS

  • CREATE_FAILED

  • DELETE_PENDING

  • DELETE_IN_PROGRESS

  • DELETE_FAILED

" + }, + "Message":{ + "shape":"ErrorMessage", + "documentation":"

Information about any errors that may have occurred during the backtest export.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

When the predictor backtest export job was created.

" + }, + "LastModificationTime":{ + "shape":"Timestamp", + "documentation":"

When the last successful export job finished.

" + } + }, + "documentation":"

Provides a summary of the predictor backtest export job properties used in the ListPredictorBacktestExportJobs operation. To get a complete set of properties, call the DescribePredictorBacktestExportJob operation, and provide the listed PredictorBacktestExportJobArn.

" + }, + "PredictorBacktestExportJobs":{ + "type":"list", + "member":{"shape":"PredictorBacktestExportJobSummary"} + }, "PredictorEvaluationResults":{ "type":"list", "member":{"shape":"EvaluationResult"} @@ -2113,7 +2326,7 @@ "documentation":"

The Amazon Resource Name (ARN) of an AWS Key Management Service (KMS) key.

" } }, - "documentation":"

The path to the file(s) in an Amazon Simple Storage Service (Amazon S3) bucket, and an AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the file(s). Optionally, includes an AWS Key Management Service (KMS) key. This object is part of the DataSource object that is submitted in the CreateDatasetImportJob request, and part of the DataDestination object that is submitted in the CreateForecastExportJob request.

" + "documentation":"

The path to the file(s) in an Amazon Simple Storage Service (Amazon S3) bucket, and an AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the file(s). Optionally, includes an AWS Key Management Service (KMS) key. This object is part of the DataSource object that is submitted in the CreateDatasetImportJob request, and part of the DataDestination object.

" }, "S3Path":{ "type":"string", From 540639c5b27ea13533a71bb0672ba2e1ae76f0cd Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:05:13 +0000 Subject: [PATCH 273/339] Amazon EC2 Container Service Update: This release adds support for updating capacity providers, specifying custom instance warmup periods for capacity providers, and using deployment circuit breaker for your ECS Services. --- ...ure-AmazonEC2ContainerService-37408b5.json | 6 + .../codegen-resources/service-2.json | 121 ++++++++++++++++-- 2 files changed, 118 insertions(+), 9 deletions(-) create mode 100644 .changes/next-release/feature-AmazonEC2ContainerService-37408b5.json diff --git a/.changes/next-release/feature-AmazonEC2ContainerService-37408b5.json b/.changes/next-release/feature-AmazonEC2ContainerService-37408b5.json new file mode 100644 index 000000000000..1d9241e5dee0 --- /dev/null +++ b/.changes/next-release/feature-AmazonEC2ContainerService-37408b5.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon EC2 Container Service", + "contributor": "", + "description": "This release adds support for updating capacity providers, specifying custom instance warmup periods for capacity providers, and using deployment circuit breaker for your ECS Services." +} diff --git a/services/ecs/src/main/resources/codegen-resources/service-2.json b/services/ecs/src/main/resources/codegen-resources/service-2.json index 6cebe54cad6b..a9b8b85a577d 100644 --- a/services/ecs/src/main/resources/codegen-resources/service-2.json +++ b/services/ecs/src/main/resources/codegen-resources/service-2.json @@ -715,6 +715,21 @@ ], "documentation":"

Deletes specified tags from a resource.

" }, + "UpdateCapacityProvider":{ + "name":"UpdateCapacityProvider", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateCapacityProviderRequest"}, + "output":{"shape":"UpdateCapacityProviderResponse"}, + "errors":[ + {"shape":"ServerException"}, + {"shape":"ClientException"}, + {"shape":"InvalidParameterException"} + ], + "documentation":"

Modifies the parameters for a capacity provider.

" + }, "UpdateClusterSettings":{ "name":"UpdateClusterSettings", "http":{ @@ -961,6 +976,17 @@ }, "documentation":"

The details of the Auto Scaling group for the capacity provider.

" }, + "AutoScalingGroupProviderUpdate":{ + "type":"structure", + "members":{ + "managedScaling":{"shape":"ManagedScaling"}, + "managedTerminationProtection":{ + "shape":"ManagedTerminationProtection", + "documentation":"

The managed termination protection setting to use for the Auto Scaling group capacity provider. This determines whether the Auto Scaling group has managed termination protection.

When using managed termination protection, managed scaling must also be used otherwise managed termination protection will not work.

When managed termination protection is enabled, Amazon ECS prevents the Amazon EC2 instances in an Auto Scaling group that contain tasks from being terminated during a scale-in action. The Auto Scaling group and each instance in the Auto Scaling group must have instance protection from scale-in actions enabled as well. For more information, see Instance Protection in the AWS Auto Scaling User Guide.

When managed termination protection is disabled, your Amazon EC2 instances are not protected from termination when the Auto Scaling group scales in.

" + } + }, + "documentation":"

The details of the Auto Scaling group capacity provider to update.

" + }, "AwsVpcConfiguration":{ "type":"structure", "required":["subnets"], @@ -1083,7 +1109,10 @@ "enum":[ "DELETE_IN_PROGRESS", "DELETE_COMPLETE", - "DELETE_FAILED" + "DELETE_FAILED", + "UPDATE_IN_PROGRESS", + "UPDATE_COMPLETE", + "UPDATE_FAILED" ] }, "CapacityProviders":{ @@ -1413,7 +1442,7 @@ }, "user":{ "shape":"String", - "documentation":"

The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

You can use the following formats. If specifying a UID or GID, you must specify it as a positive integer.

  • user

  • user:group

  • uid

  • uid:gid

  • user:gid

  • uid:group

This parameter is not supported for Windows containers or tasks that use the awsvpc network mode.

" + "documentation":"

The user to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

When running tasks using the host network mode, you should not run containers using the root user (UID 0). It is considered best practice to use a non-root user.

You can specify the user using the following formats. If specifying a UID or GID, you must specify it as a positive integer.

  • user

  • user:group

  • uid

  • uid:gid

  • user:gid

  • uid:group

This parameter is not supported for Windows containers or tasks that use the awsvpc network mode.

" }, "workingDirectory":{ "shape":"String", @@ -2084,6 +2113,10 @@ "shape":"Integer", "documentation":"

The number of tasks in the deployment that are in the RUNNING status.

" }, + "failedTasks":{ + "shape":"Integer", + "documentation":"

The number of consecutively failed tasks in the deployment. A task is considered a failure if the service scheduler can't launch the task, the task doesn't transition to a RUNNING state, or if it fails any of its defined health checks and is stopped.

Once a service deployment has one or more successfully running tasks, the failed task count resets to zero and stops being evaluated.

" + }, "createdAt":{ "shape":"Timestamp", "documentation":"

The Unix timestamp for when the service deployment was created.

" @@ -2107,13 +2140,43 @@ "networkConfiguration":{ "shape":"NetworkConfiguration", "documentation":"

The VPC subnet and security group configuration for tasks that receive their own elastic network interface by using the awsvpc networking mode.

" + }, + "rolloutState":{ + "shape":"DeploymentRolloutState", + "documentation":"

The rolloutState of a service is only returned for services that use the rolling update (ECS) deployment type that are not behind a Classic Load Balancer.

The rollout state of the deployment. When a service deployment is started, it begins in an IN_PROGRESS state. When the service reaches a steady state, the deployment will transition to a COMPLETED state. If the service fails to reach a steady state and circuit breaker is enabled, the deployment will transition to a FAILED state. A deployment in FAILED state will launch no new tasks. For more information, see DeploymentCircuitBreaker.

" + }, + "rolloutStateReason":{ + "shape":"String", + "documentation":"

A description of the rollout state of a deployment.

" } }, "documentation":"

The details of an Amazon ECS service deployment. This is used only when a service uses the ECS deployment controller type.

" }, + "DeploymentCircuitBreaker":{ + "type":"structure", + "required":[ + "enable", + "rollback" + ], + "members":{ + "enable":{ + "shape":"Boolean", + "documentation":"

Whether to enable the deployment circuit breaker logic for the service.

" + }, + "rollback":{ + "shape":"Boolean", + "documentation":"

Whether to enable Amazon ECS to roll back the service if a service deployment fails. If rollback is enabled, when a service deployment fails, the service is rolled back to the last deployment that completed successfully.

" + } + }, + "documentation":"

The deployment circuit breaker can only be used for services using the rolling update (ECS) deployment type that are not behind a Classic Load Balancer.

The deployment circuit breaker determines whether a service deployment will fail if the service can't reach a steady state. If enabled, a service deployment will transition to a failed state and stop launching new tasks. You can also enable Amazon ECS to roll back your service to the last completed deployment after a failure. For more information, see Rolling update in the Amazon Elastic Container Service Developer Guide.

" + }, "DeploymentConfiguration":{ "type":"structure", "members":{ + "deploymentCircuitBreaker":{ + "shape":"DeploymentCircuitBreaker", + "documentation":"

The deployment circuit breaker can only be used for services using the rolling update (ECS) deployment type.

The deployment circuit breaker determines whether a service deployment will fail if the service can't reach a steady state. If deployment circuit breaker is enabled, a service deployment will transition to a failed state and stop launching new tasks. If rollback is enabled, when a service deployment fails, the service is rolled back to the last deployment that completed successfully.

" + }, "maximumPercent":{ "shape":"BoxedInteger", "documentation":"

If a service is using the rolling update (ECS) deployment type, the maximum percent parameter represents an upper limit on the number of tasks in a service that are allowed in the RUNNING or PENDING state during a deployment, as a percentage of the desired number of tasks (rounded down to the nearest integer), and while any container instances are in the DRAINING state if the service contains tasks using the EC2 launch type. This parameter enables you to define the deployment batch size. For example, if your service has a desired number of four tasks and a maximum percent value of 200%, the scheduler may start four new tasks before stopping the four older tasks (provided that the cluster resources required to do this are available). The default value for maximum percent is 200%.

If a service is using the blue/green (CODE_DEPLOY) or EXTERNAL deployment types and tasks that use the EC2 launch type, the maximum percent value is set to the default value and is used to define the upper limit on the number of the tasks in the service that remain in the RUNNING state while the container instances are in the DRAINING state. If the tasks in the service use the Fargate launch type, the maximum percent value is not used, although it is returned when describing your service.

" @@ -2144,6 +2207,14 @@ "EXTERNAL" ] }, + "DeploymentRolloutState":{ + "type":"string", + "enum":[ + "COMPLETED", + "FAILED", + "IN_PROGRESS" + ] + }, "Deployments":{ "type":"list", "member":{"shape":"Deployment"} @@ -2611,11 +2682,11 @@ "members":{ "credentialsParameter":{ "shape":"String", - "documentation":"

The authorization credential option to use.

The authorization credential options can be provided using either the AWS Secrets Manager ARN or the AWS Systems Manager ARN. The ARNs refer to the stored credentials.

options:

" + "documentation":"

The authorization credential option to use. The authorization credential options can be provided using either the Amazon Resource Name (ARN) of an AWS Secrets Manager secret or AWS Systems Manager Parameter Store parameter. The ARNs refer to the stored credentials.

" }, "domain":{ "shape":"String", - "documentation":"

A fully qualified domain name hosted by an AWS Directory Service Managed Microsoft AD (Active Directory) or self-hosted EC2 AD.

" + "documentation":"

A fully qualified domain name hosted by an AWS Directory Service Managed Microsoft AD (Active Directory) or self-hosted AD on Amazon EC2.

" } }, "documentation":"

The authorization configuration details for Amazon FSx for Windows File Server file system. See FSxWindowsFileServerVolumeConfiguration in the Amazon Elastic Container Service API Reference.

For more information and the input format, see Amazon FSx for Windows File Server Volumes in the Amazon Elastic Container Service Developer Guide.

" @@ -3304,15 +3375,24 @@ }, "minimumScalingStepSize":{ "shape":"ManagedScalingStepSize", - "documentation":"

The minimum number of Amazon EC2 instances that Amazon ECS will scale out at one time. The scale in process is not affected by this parameter If this parameter is omitted, the default value of 1 is used.

When additional capacity is required, Amazon ECS will scale up the minimum scaling step size even if the actual demand is less than the minimum scaling step size.

If you use a capacity provider with an Auto Scaling group configured with more than one Amazon EC2 instance type or Availability Zone, Amazon ECS will scale up by the exact minimum scaling step size value and will ignore both the maximum scaling step size as well as the capacity demand.

" + "documentation":"

The minimum number of container instances that Amazon ECS will scale in or scale out at one time. If this parameter is omitted, the default value of 1 is used.

" }, "maximumScalingStepSize":{ "shape":"ManagedScalingStepSize", - "documentation":"

The maximum number of Amazon EC2 instances that Amazon ECS will scale out at one time. The scale in process is not affected by this parameter. If this parameter is omitted, the default value of 10000 is used.

" + "documentation":"

The maximum number of container instances that Amazon ECS will scale in or scale out at one time. If this parameter is omitted, the default value of 10000 is used.

" + }, + "instanceWarmupPeriod":{ + "shape":"ManagedScalingInstanceWarmupPeriod", + "documentation":"

The period of time, in seconds, after a newly launched Amazon EC2 instance can contribute to CloudWatch metrics for Auto Scaling group. If this parameter is omitted, the default value of 300 seconds is used.

" } }, "documentation":"

The managed scaling settings for the Auto Scaling group capacity provider.

When managed scaling is enabled, Amazon ECS manages the scale-in and scale-out actions of the Auto Scaling group. Amazon ECS manages a target tracking scaling policy using an Amazon ECS-managed CloudWatch metric with the specified targetCapacity value as the target value for the metric. For more information, see Using Managed Scaling in the Amazon Elastic Container Service Developer Guide.

If managed scaling is disabled, the user must manage the scaling of the Auto Scaling group.

" }, + "ManagedScalingInstanceWarmupPeriod":{ + "type":"integer", + "max":10000, + "min":0 + }, "ManagedScalingStatus":{ "type":"string", "enum":[ @@ -3584,7 +3664,7 @@ "documentation":"

The set of network configuration parameters to provide the Container Network Interface (CNI) plugin, specified as key-value pairs.

  • IgnoredUID - (Required) The user ID (UID) of the proxy container as defined by the user parameter in a container definition. This is used to ensure the proxy ignores its own traffic. If IgnoredGID is specified, this field can be empty.

  • IgnoredGID - (Required) The group ID (GID) of the proxy container as defined by the user parameter in a container definition. This is used to ensure the proxy ignores its own traffic. If IgnoredUID is specified, this field can be empty.

  • AppPorts - (Required) The list of ports that the application uses. Network traffic to these ports is forwarded to the ProxyIngressPort and ProxyEgressPort.

  • ProxyIngressPort - (Required) Specifies the port that incoming traffic to the AppPorts is directed to.

  • ProxyEgressPort - (Required) Specifies the port that outgoing traffic from the AppPorts is directed to.

  • EgressIgnoredPorts - (Required) The egress traffic going to the specified ports is ignored and not redirected to the ProxyEgressPort. It can be an empty list.

  • EgressIgnoredIPs - (Required) The egress traffic going to the specified IP addresses is ignored and not redirected to the ProxyEgressPort. It can be an empty list.

" } }, - "documentation":"

The configuration details for the App Mesh proxy.

For tasks using the EC2 launch type, the container instances require at least version 1.26.0 of the container agent and at least version 1.26.0-1 of the ecs-init package to enable a proxy configuration. If your container instances are launched from the Amazon ECS-optimized AMI version 20190301 or later, then they contain the required versions of the container agent and ecs-init. For more information, see Amazon ECS-optimized Linux AMI in the Amazon Elastic Container Service Developer Guide.

For tasks using the Fargate launch type, the task or service requires platform version 1.3.0 or later.

" + "documentation":"

The configuration details for the App Mesh proxy.

For tasks using the EC2 launch type, the container instances require at least version 1.26.0 of the container agent and at least version 1.26.0-1 of the ecs-init package to enable a proxy configuration. If your container instances are launched from the Amazon ECS-optimized AMI version 20190301 or later, then they contain the required versions of the container agent and ecs-init. For more information, see Amazon ECS-optimized Linux AMI

" }, "ProxyConfigurationProperties":{ "type":"list", @@ -3769,7 +3849,7 @@ }, "networkMode":{ "shape":"NetworkMode", - "documentation":"

The Docker networking mode to use for the containers in the task. The valid values are none, bridge, awsvpc, and host. The default Docker network mode is bridge. If you are using the Fargate launch type, the awsvpc network mode is required. If you are using the EC2 launch type, any network mode can be used. If the network mode is set to none, you cannot specify port mappings in your container definitions, and the tasks containers do not have external connectivity. The host and awsvpc network modes offer the highest networking performance for containers because they use the EC2 network stack instead of the virtualized network stack provided by the bridge mode.

With the host and awsvpc network modes, exposed container ports are mapped directly to the corresponding host port (for the host network mode) or the attached elastic network interface port (for the awsvpc network mode), so you cannot take advantage of dynamic host port mappings.

If the network mode is awsvpc, the task is allocated an elastic network interface, and you must specify a NetworkConfiguration value when you create a service or run a task with the task definition. For more information, see Task Networking in the Amazon Elastic Container Service Developer Guide.

Currently, only Amazon ECS-optimized AMIs, other Amazon Linux variants with the ecs-init package, or AWS Fargate infrastructure support the awsvpc network mode.

If the network mode is host, you cannot run multiple instantiations of the same task on a single container instance when port mappings are used.

Docker for Windows uses different network modes than Docker for Linux. When you register a task definition with Windows containers, you must not specify a network mode. If you use the console to register a task definition with Windows containers, you must choose the <default> network mode object.

For more information, see Network settings in the Docker run reference.

" + "documentation":"

The Docker networking mode to use for the containers in the task. The valid values are none, bridge, awsvpc, and host. If no network mode is specified, the default is bridge.

For Amazon ECS tasks on Fargate, the awsvpc network mode is required. For Amazon ECS tasks on Amazon EC2 instances, any network mode can be used. If the network mode is set to none, you cannot specify port mappings in your container definitions, and the tasks containers do not have external connectivity. The host and awsvpc network modes offer the highest networking performance for containers because they use the EC2 network stack instead of the virtualized network stack provided by the bridge mode.

With the host and awsvpc network modes, exposed container ports are mapped directly to the corresponding host port (for the host network mode) or the attached elastic network interface port (for the awsvpc network mode), so you cannot take advantage of dynamic host port mappings.

When using the host network mode, you should not run containers using the root user (UID 0). It is considered best practice to use a non-root user.

If the network mode is awsvpc, the task is allocated an elastic network interface, and you must specify a NetworkConfiguration value when you create a service or run a task with the task definition. For more information, see Task Networking in the Amazon Elastic Container Service Developer Guide.

Currently, only Amazon ECS-optimized AMIs, other Amazon Linux variants with the ecs-init package, or AWS Fargate infrastructure support the awsvpc network mode.

If the network mode is host, you cannot run multiple instantiations of the same task on a single container instance when port mappings are used.

Docker for Windows uses different network modes than Docker for Linux. When you register a task definition with Windows containers, you must not specify a network mode. If you use the console to register a task definition with Windows containers, you must choose the <default> network mode object.

For more information, see Network settings in the Docker run reference.

" }, "containerDefinitions":{ "shape":"ContainerDefinitions", @@ -4783,7 +4863,7 @@ }, "networkMode":{ "shape":"NetworkMode", - "documentation":"

The Docker networking mode to use for the containers in the task. The valid values are none, bridge, awsvpc, and host. The default Docker network mode is bridge. If you are using the Fargate launch type, the awsvpc network mode is required. If you are using the EC2 launch type, any network mode can be used. If the network mode is set to none, you cannot specify port mappings in your container definitions, and the tasks containers do not have external connectivity. The host and awsvpc network modes offer the highest networking performance for containers because they use the EC2 network stack instead of the virtualized network stack provided by the bridge mode.

With the host and awsvpc network modes, exposed container ports are mapped directly to the corresponding host port (for the host network mode) or the attached elastic network interface port (for the awsvpc network mode), so you cannot take advantage of dynamic host port mappings.

If the network mode is awsvpc, the task is allocated an elastic network interface, and you must specify a NetworkConfiguration value when you create a service or run a task with the task definition. For more information, see Task Networking in the Amazon Elastic Container Service Developer Guide.

Currently, only Amazon ECS-optimized AMIs, other Amazon Linux variants with the ecs-init package, or AWS Fargate infrastructure support the awsvpc network mode.

If the network mode is host, you cannot run multiple instantiations of the same task on a single container instance when port mappings are used.

Docker for Windows uses different network modes than Docker for Linux. When you register a task definition with Windows containers, you must not specify a network mode. If you use the console to register a task definition with Windows containers, you must choose the <default> network mode object.

For more information, see Network settings in the Docker run reference.

" + "documentation":"

The Docker networking mode to use for the containers in the task. The valid values are none, bridge, awsvpc, and host. If no network mode is specified, the default is bridge.

For Amazon ECS tasks on Fargate, the awsvpc network mode is required. For Amazon ECS tasks on Amazon EC2 instances, any network mode can be used. If the network mode is set to none, you cannot specify port mappings in your container definitions, and the tasks containers do not have external connectivity. The host and awsvpc network modes offer the highest networking performance for containers because they use the EC2 network stack instead of the virtualized network stack provided by the bridge mode.

With the host and awsvpc network modes, exposed container ports are mapped directly to the corresponding host port (for the host network mode) or the attached elastic network interface port (for the awsvpc network mode), so you cannot take advantage of dynamic host port mappings.

When using the host network mode, you should not run containers using the root user (UID 0). It is considered best practice to use a non-root user.

If the network mode is awsvpc, the task is allocated an elastic network interface, and you must specify a NetworkConfiguration value when you create a service or run a task with the task definition. For more information, see Task Networking in the Amazon Elastic Container Service Developer Guide.

Currently, only Amazon ECS-optimized AMIs, other Amazon Linux variants with the ecs-init package, or AWS Fargate infrastructure support the awsvpc network mode.

If the network mode is host, you cannot run multiple instantiations of the same task on a single container instance when port mappings are used.

Docker for Windows uses different network modes than Docker for Linux. When you register a task definition with Windows containers, you must not specify a network mode. If you use the console to register a task definition with Windows containers, you must choose the <default> network mode object.

For more information, see Network settings in the Docker run reference.

" }, "revision":{ "shape":"Integer", @@ -5162,6 +5242,29 @@ "members":{ } }, + "UpdateCapacityProviderRequest":{ + "type":"structure", + "required":[ + "name", + "autoScalingGroupProvider" + ], + "members":{ + "name":{ + "shape":"String", + "documentation":"

An object representing the parameters to update for the Auto Scaling group capacity provider.

" + }, + "autoScalingGroupProvider":{ + "shape":"AutoScalingGroupProviderUpdate", + "documentation":"

The name of the capacity provider to update.

" + } + } + }, + "UpdateCapacityProviderResponse":{ + "type":"structure", + "members":{ + "capacityProvider":{"shape":"CapacityProvider"} + } + }, "UpdateClusterSettingsRequest":{ "type":"structure", "required":[ From c1266f2ee2c3ce6dbd109883c2852c338d94beab Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:07:49 +0000 Subject: [PATCH 274/339] Updated endpoints.json. --- .../next-release/feature-AWSSDKforJavav2-bedacd4.json | 6 ++++++ .../awssdk/regions/internal/region/endpoints.json | 10 ++++++++++ 2 files changed, 16 insertions(+) create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json new file mode 100644 index 000000000000..ae3f84993e9e --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." +} diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json index e695fc726dcb..92cb2ded7bb5 100644 --- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json +++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json @@ -6736,6 +6736,16 @@ "cn-northwest-1" : { } } }, + "docdb" : { + "endpoints" : { + "cn-northwest-1" : { + "credentialScope" : { + "region" : "cn-northwest-1" + }, + "hostname" : "rds.cn-northwest-1.amazonaws.com.cn" + } + } + }, "ds" : { "endpoints" : { "cn-north-1" : { }, From bc315e77d622fb07393c4dd8b8d122a987b3cac9 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:08:22 +0000 Subject: [PATCH 275/339] Release 2.15.34. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.34.json | 138 ++++++++++++++++++ ...eature-AWSCodeStarconnections-69c1f55.json | 6 - .../next-release/feature-AWSGlue-4e90067.json | 6 - .../next-release/feature-AWSIoT-1cf7cd7.json | 6 - .../feature-AWSLambda-4eca0eb.json | 6 - .../feature-AWSLicenseManager-3f46d96.json | 6 - .../feature-AWSOutposts-a7c51da.json | 6 - .../feature-AWSSDKforJavav2-bedacd4.json | 6 - .../feature-AWSSecurityHub-36ca262.json | 6 - .../feature-AWSSigner-2da8a84.json | 6 - .../feature-AWSSingleSignOnAdmin-6abbb96.json | 6 - ...CloudWatchApplicationInsights-54f29e9.json | 6 - .../feature-AmazonDynamoDB-413a11c.json | 6 - ...ure-AmazonEC2ContainerService-37408b5.json | 6 - .../feature-AmazonElastiCache-73f0df6.json | 6 - ...ure-AmazonElasticComputeCloud-8d4b5c9.json | 6 - ...eature-AmazonElasticMapReduce-50d080a.json | 6 - ...feature-AmazonForecastService-3407d71.json | 6 - ...feature-AmazonTimestreamQuery-604404d.json | 6 - .../feature-AmazonTranslate-1726b74.json | 6 - .../feature-AutoScaling-546c9db.json | 6 - .../feature-CodeArtifact-b99b7cd.json | 6 - ...ture-ManagedStreamingforKafka-bdad770.json | 6 - CHANGELOG.md | 89 +++++++++++ README.md | 8 +- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 308 files changed, 514 insertions(+), 419 deletions(-) create mode 100644 .changes/2.15.34.json delete mode 100644 .changes/next-release/feature-AWSCodeStarconnections-69c1f55.json delete mode 100644 .changes/next-release/feature-AWSGlue-4e90067.json delete mode 100644 .changes/next-release/feature-AWSIoT-1cf7cd7.json delete mode 100644 .changes/next-release/feature-AWSLambda-4eca0eb.json delete mode 100644 .changes/next-release/feature-AWSLicenseManager-3f46d96.json delete mode 100644 .changes/next-release/feature-AWSOutposts-a7c51da.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json delete mode 100644 .changes/next-release/feature-AWSSecurityHub-36ca262.json delete mode 100644 .changes/next-release/feature-AWSSigner-2da8a84.json delete mode 100644 .changes/next-release/feature-AWSSingleSignOnAdmin-6abbb96.json delete mode 100644 .changes/next-release/feature-AmazonCloudWatchApplicationInsights-54f29e9.json delete mode 100644 .changes/next-release/feature-AmazonDynamoDB-413a11c.json delete mode 100644 .changes/next-release/feature-AmazonEC2ContainerService-37408b5.json delete mode 100644 .changes/next-release/feature-AmazonElastiCache-73f0df6.json delete mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-8d4b5c9.json delete mode 100644 .changes/next-release/feature-AmazonElasticMapReduce-50d080a.json delete mode 100644 .changes/next-release/feature-AmazonForecastService-3407d71.json delete mode 100644 .changes/next-release/feature-AmazonTimestreamQuery-604404d.json delete mode 100644 .changes/next-release/feature-AmazonTranslate-1726b74.json delete mode 100644 .changes/next-release/feature-AutoScaling-546c9db.json delete mode 100644 .changes/next-release/feature-CodeArtifact-b99b7cd.json delete mode 100644 .changes/next-release/feature-ManagedStreamingforKafka-bdad770.json diff --git a/.changes/2.15.34.json b/.changes/2.15.34.json new file mode 100644 index 000000000000..bf6631bf63c0 --- /dev/null +++ b/.changes/2.15.34.json @@ -0,0 +1,138 @@ +{ + "version": "2.15.34", + "date": "2020-11-23", + "entries": [ + { + "type": "feature", + "category": "Amazon DynamoDB", + "contributor": "", + "description": "With this release, you can capture data changes in any Amazon DynamoDB table as an Amazon Kinesis data stream. You also can use PartiQL (SQL-compatible language) to manipulate data in DynamoDB tables." + }, + { + "type": "feature", + "category": "AWS Outposts", + "contributor": "", + "description": "Support specifying tags during the creation of the Outpost resource. Tags are now returned in the response body of Outpost APIs." + }, + { + "type": "feature", + "category": "AWS Single Sign-On Admin", + "contributor": "", + "description": "AWS Single Sign-On now enables attribute-based access control for workforce identities to simplify permissions in AWS" + }, + { + "type": "feature", + "category": "AWS Glue", + "contributor": "", + "description": "Feature1 - Glue crawler adds data lineage configuration option. Feature2 - AWS Glue Data Catalog adds APIs for PartitionIndex creation and deletion as part of Enhancement Partition Management feature." + }, + { + "type": "feature", + "category": "AWS IoT", + "contributor": "", + "description": "This release enables users to identify different file types in the over-the-air update (OTA) functionality using fileType parameter for CreateOTAUpdate API" + }, + { + "type": "feature", + "category": "Amazon Elastic MapReduce", + "contributor": "", + "description": "Add API support for EMR Studio, a new notebook-first IDE for data scientists and data engineers with single sign-on, Jupyter notebooks, automated infrastructure provisioning, and job diagnosis." + }, + { + "type": "feature", + "category": "Amazon Translate", + "contributor": "", + "description": "This update adds new operations to create and manage parallel data in Amazon Translate. Parallel data is a resource that you can use to run Active Custom Translation jobs." + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." + }, + { + "type": "feature", + "category": "Amazon EC2 Container Service", + "contributor": "", + "description": "This release adds support for updating capacity providers, specifying custom instance warmup periods for capacity providers, and using deployment circuit breaker for your ECS Services." + }, + { + "type": "feature", + "category": "CodeArtifact", + "contributor": "", + "description": "Add support for the NuGet package format." + }, + { + "type": "feature", + "category": "AWS License Manager", + "contributor": "", + "description": "AWS License Manager now provides the ability for license administrators to be able to associate license configurations to AMIs shared with their AWS account" + }, + { + "type": "feature", + "category": "Auto Scaling", + "contributor": "", + "description": "Documentation updates and corrections for Amazon EC2 Auto Scaling API Reference and SDKs." + }, + { + "type": "feature", + "category": "AWS CodeStar connections", + "contributor": "", + "description": "Added support for the UpdateHost API." + }, + { + "type": "feature", + "category": "Managed Streaming for Kafka", + "contributor": "", + "description": "Adding MAINTENANCE and REBOOTING_BROKER to Cluster states." + }, + { + "type": "feature", + "category": "Amazon Timestream Query", + "contributor": "", + "description": "Amazon Timestream now supports \"QueryStatus\" in Query API which has information about cumulative bytes scanned, metered, as well as progress percentage for the query." + }, + { + "type": "feature", + "category": "Amazon ElastiCache", + "contributor": "", + "description": "Documentation updates for elasticache" + }, + { + "type": "feature", + "category": "AWS SecurityHub", + "contributor": "", + "description": "Updated the account management API to support the integration with AWS Organizations. Added new methods to allow users to view and manage the delegated administrator account for Security Hub." + }, + { + "type": "feature", + "category": "Amazon Forecast Service", + "contributor": "", + "description": "Releasing the set of PredictorBacktestExportJob APIs which allow customers to export backtest values and item-level metrics data from Predictor training." + }, + { + "type": "feature", + "category": "Amazon CloudWatch Application Insights", + "contributor": "", + "description": "Add Detected Workload to ApplicationComponent which shows the workloads that installed in the component" + }, + { + "type": "feature", + "category": "AWS Signer", + "contributor": "", + "description": "AWS Signer is launching code-signing for AWS Lambda. Now customers can cryptographically sign Lambda code to ensure trust, integrity, and functionality." + }, + { + "type": "feature", + "category": "AWS Lambda", + "contributor": "", + "description": "This release includes support for new feature: Code Signing for AWS Lambda. This adds new resources and APIs to configure Lambda functions to accept and verify signed code artifacts at deployment." + }, + { + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "This release adds support for Multiple Private DNS names to DescribeVpcEndpointServices response." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSCodeStarconnections-69c1f55.json b/.changes/next-release/feature-AWSCodeStarconnections-69c1f55.json deleted file mode 100644 index 5b91031ebd15..000000000000 --- a/.changes/next-release/feature-AWSCodeStarconnections-69c1f55.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS CodeStar connections", - "contributor": "", - "description": "Added support for the UpdateHost API." -} diff --git a/.changes/next-release/feature-AWSGlue-4e90067.json b/.changes/next-release/feature-AWSGlue-4e90067.json deleted file mode 100644 index 1e28c1002112..000000000000 --- a/.changes/next-release/feature-AWSGlue-4e90067.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Glue", - "contributor": "", - "description": "Feature1 - Glue crawler adds data lineage configuration option. Feature2 - AWS Glue Data Catalog adds APIs for PartitionIndex creation and deletion as part of Enhancement Partition Management feature." -} diff --git a/.changes/next-release/feature-AWSIoT-1cf7cd7.json b/.changes/next-release/feature-AWSIoT-1cf7cd7.json deleted file mode 100644 index c7e30996923d..000000000000 --- a/.changes/next-release/feature-AWSIoT-1cf7cd7.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS IoT", - "contributor": "", - "description": "This release enables users to identify different file types in the over-the-air update (OTA) functionality using fileType parameter for CreateOTAUpdate API" -} diff --git a/.changes/next-release/feature-AWSLambda-4eca0eb.json b/.changes/next-release/feature-AWSLambda-4eca0eb.json deleted file mode 100644 index 49c6dc17d964..000000000000 --- a/.changes/next-release/feature-AWSLambda-4eca0eb.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Lambda", - "contributor": "", - "description": "This release includes support for new feature: Code Signing for AWS Lambda. This adds new resources and APIs to configure Lambda functions to accept and verify signed code artifacts at deployment." -} diff --git a/.changes/next-release/feature-AWSLicenseManager-3f46d96.json b/.changes/next-release/feature-AWSLicenseManager-3f46d96.json deleted file mode 100644 index fc38e38ab30b..000000000000 --- a/.changes/next-release/feature-AWSLicenseManager-3f46d96.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS License Manager", - "contributor": "", - "description": "AWS License Manager now provides the ability for license administrators to be able to associate license configurations to AMIs shared with their AWS account" -} diff --git a/.changes/next-release/feature-AWSOutposts-a7c51da.json b/.changes/next-release/feature-AWSOutposts-a7c51da.json deleted file mode 100644 index e15923e1b884..000000000000 --- a/.changes/next-release/feature-AWSOutposts-a7c51da.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Outposts", - "contributor": "", - "description": "Support specifying tags during the creation of the Outpost resource. Tags are now returned in the response body of Outpost APIs." -} diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json deleted file mode 100644 index ae3f84993e9e..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS SDK for Java v2", - "contributor": "", - "description": "Updated service endpoint metadata." -} diff --git a/.changes/next-release/feature-AWSSecurityHub-36ca262.json b/.changes/next-release/feature-AWSSecurityHub-36ca262.json deleted file mode 100644 index 940fedf6185f..000000000000 --- a/.changes/next-release/feature-AWSSecurityHub-36ca262.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS SecurityHub", - "contributor": "", - "description": "Updated the account management API to support the integration with AWS Organizations. Added new methods to allow users to view and manage the delegated administrator account for Security Hub." -} diff --git a/.changes/next-release/feature-AWSSigner-2da8a84.json b/.changes/next-release/feature-AWSSigner-2da8a84.json deleted file mode 100644 index 0d20cd9736fd..000000000000 --- a/.changes/next-release/feature-AWSSigner-2da8a84.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Signer", - "contributor": "", - "description": "AWS Signer is launching code-signing for AWS Lambda. Now customers can cryptographically sign Lambda code to ensure trust, integrity, and functionality." -} diff --git a/.changes/next-release/feature-AWSSingleSignOnAdmin-6abbb96.json b/.changes/next-release/feature-AWSSingleSignOnAdmin-6abbb96.json deleted file mode 100644 index 7e3a80aa366f..000000000000 --- a/.changes/next-release/feature-AWSSingleSignOnAdmin-6abbb96.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Single Sign-On Admin", - "contributor": "", - "description": "AWS Single Sign-On now enables attribute-based access control for workforce identities to simplify permissions in AWS" -} diff --git a/.changes/next-release/feature-AmazonCloudWatchApplicationInsights-54f29e9.json b/.changes/next-release/feature-AmazonCloudWatchApplicationInsights-54f29e9.json deleted file mode 100644 index 17a8997db68d..000000000000 --- a/.changes/next-release/feature-AmazonCloudWatchApplicationInsights-54f29e9.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon CloudWatch Application Insights", - "contributor": "", - "description": "Add Detected Workload to ApplicationComponent which shows the workloads that installed in the component" -} diff --git a/.changes/next-release/feature-AmazonDynamoDB-413a11c.json b/.changes/next-release/feature-AmazonDynamoDB-413a11c.json deleted file mode 100644 index 6114ab600083..000000000000 --- a/.changes/next-release/feature-AmazonDynamoDB-413a11c.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon DynamoDB", - "contributor": "", - "description": "With this release, you can capture data changes in any Amazon DynamoDB table as an Amazon Kinesis data stream. You also can use PartiQL (SQL-compatible language) to manipulate data in DynamoDB tables." -} diff --git a/.changes/next-release/feature-AmazonEC2ContainerService-37408b5.json b/.changes/next-release/feature-AmazonEC2ContainerService-37408b5.json deleted file mode 100644 index 1d9241e5dee0..000000000000 --- a/.changes/next-release/feature-AmazonEC2ContainerService-37408b5.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon EC2 Container Service", - "contributor": "", - "description": "This release adds support for updating capacity providers, specifying custom instance warmup periods for capacity providers, and using deployment circuit breaker for your ECS Services." -} diff --git a/.changes/next-release/feature-AmazonElastiCache-73f0df6.json b/.changes/next-release/feature-AmazonElastiCache-73f0df6.json deleted file mode 100644 index 801e9105ca33..000000000000 --- a/.changes/next-release/feature-AmazonElastiCache-73f0df6.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon ElastiCache", - "contributor": "", - "description": "Documentation updates for elasticache" -} diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-8d4b5c9.json b/.changes/next-release/feature-AmazonElasticComputeCloud-8d4b5c9.json deleted file mode 100644 index dcca71795bc9..000000000000 --- a/.changes/next-release/feature-AmazonElasticComputeCloud-8d4b5c9.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Elastic Compute Cloud", - "contributor": "", - "description": "This release adds support for Multiple Private DNS names to DescribeVpcEndpointServices response." -} diff --git a/.changes/next-release/feature-AmazonElasticMapReduce-50d080a.json b/.changes/next-release/feature-AmazonElasticMapReduce-50d080a.json deleted file mode 100644 index d77d06e0164c..000000000000 --- a/.changes/next-release/feature-AmazonElasticMapReduce-50d080a.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Elastic MapReduce", - "contributor": "", - "description": "Add API support for EMR Studio, a new notebook-first IDE for data scientists and data engineers with single sign-on, Jupyter notebooks, automated infrastructure provisioning, and job diagnosis." -} diff --git a/.changes/next-release/feature-AmazonForecastService-3407d71.json b/.changes/next-release/feature-AmazonForecastService-3407d71.json deleted file mode 100644 index 605e7bac85aa..000000000000 --- a/.changes/next-release/feature-AmazonForecastService-3407d71.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Forecast Service", - "contributor": "", - "description": "Releasing the set of PredictorBacktestExportJob APIs which allow customers to export backtest values and item-level metrics data from Predictor training." -} diff --git a/.changes/next-release/feature-AmazonTimestreamQuery-604404d.json b/.changes/next-release/feature-AmazonTimestreamQuery-604404d.json deleted file mode 100644 index ce4df8196f00..000000000000 --- a/.changes/next-release/feature-AmazonTimestreamQuery-604404d.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Timestream Query", - "contributor": "", - "description": "Amazon Timestream now supports \"QueryStatus\" in Query API which has information about cumulative bytes scanned, metered, as well as progress percentage for the query." -} diff --git a/.changes/next-release/feature-AmazonTranslate-1726b74.json b/.changes/next-release/feature-AmazonTranslate-1726b74.json deleted file mode 100644 index 15649e5352e0..000000000000 --- a/.changes/next-release/feature-AmazonTranslate-1726b74.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Translate", - "contributor": "", - "description": "This update adds new operations to create and manage parallel data in Amazon Translate. Parallel data is a resource that you can use to run Active Custom Translation jobs." -} diff --git a/.changes/next-release/feature-AutoScaling-546c9db.json b/.changes/next-release/feature-AutoScaling-546c9db.json deleted file mode 100644 index 64398ae537b5..000000000000 --- a/.changes/next-release/feature-AutoScaling-546c9db.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Auto Scaling", - "contributor": "", - "description": "Documentation updates and corrections for Amazon EC2 Auto Scaling API Reference and SDKs." -} diff --git a/.changes/next-release/feature-CodeArtifact-b99b7cd.json b/.changes/next-release/feature-CodeArtifact-b99b7cd.json deleted file mode 100644 index e418ef98cc82..000000000000 --- a/.changes/next-release/feature-CodeArtifact-b99b7cd.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "CodeArtifact", - "contributor": "", - "description": "Add support for the NuGet package format." -} diff --git a/.changes/next-release/feature-ManagedStreamingforKafka-bdad770.json b/.changes/next-release/feature-ManagedStreamingforKafka-bdad770.json deleted file mode 100644 index a14f98e457b8..000000000000 --- a/.changes/next-release/feature-ManagedStreamingforKafka-bdad770.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Managed Streaming for Kafka", - "contributor": "", - "description": "Adding MAINTENANCE and REBOOTING_BROKER to Cluster states." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index 96f9e99299fd..6c5cef0b9c31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,92 @@ +# __2.15.34__ __2020-11-23__ +## __AWS CodeStar connections__ + - ### Features + - Added support for the UpdateHost API. + +## __AWS Glue__ + - ### Features + - Feature1 - Glue crawler adds data lineage configuration option. Feature2 - AWS Glue Data Catalog adds APIs for PartitionIndex creation and deletion as part of Enhancement Partition Management feature. + +## __AWS IoT__ + - ### Features + - This release enables users to identify different file types in the over-the-air update (OTA) functionality using fileType parameter for CreateOTAUpdate API + +## __AWS Lambda__ + - ### Features + - This release includes support for new feature: Code Signing for AWS Lambda. This adds new resources and APIs to configure Lambda functions to accept and verify signed code artifacts at deployment. + +## __AWS License Manager__ + - ### Features + - AWS License Manager now provides the ability for license administrators to be able to associate license configurations to AMIs shared with their AWS account + +## __AWS Outposts__ + - ### Features + - Support specifying tags during the creation of the Outpost resource. Tags are now returned in the response body of Outpost APIs. + +## __AWS SDK for Java v2__ + - ### Features + - Updated service endpoint metadata. + +## __AWS SecurityHub__ + - ### Features + - Updated the account management API to support the integration with AWS Organizations. Added new methods to allow users to view and manage the delegated administrator account for Security Hub. + +## __AWS Signer__ + - ### Features + - AWS Signer is launching code-signing for AWS Lambda. Now customers can cryptographically sign Lambda code to ensure trust, integrity, and functionality. + +## __AWS Single Sign-On Admin__ + - ### Features + - AWS Single Sign-On now enables attribute-based access control for workforce identities to simplify permissions in AWS + +## __Amazon CloudWatch Application Insights__ + - ### Features + - Add Detected Workload to ApplicationComponent which shows the workloads that installed in the component + +## __Amazon DynamoDB__ + - ### Features + - With this release, you can capture data changes in any Amazon DynamoDB table as an Amazon Kinesis data stream. You also can use PartiQL (SQL-compatible language) to manipulate data in DynamoDB tables. + +## __Amazon EC2 Container Service__ + - ### Features + - This release adds support for updating capacity providers, specifying custom instance warmup periods for capacity providers, and using deployment circuit breaker for your ECS Services. + +## __Amazon ElastiCache__ + - ### Features + - Documentation updates for elasticache + +## __Amazon Elastic Compute Cloud__ + - ### Features + - This release adds support for Multiple Private DNS names to DescribeVpcEndpointServices response. + +## __Amazon Elastic MapReduce__ + - ### Features + - Add API support for EMR Studio, a new notebook-first IDE for data scientists and data engineers with single sign-on, Jupyter notebooks, automated infrastructure provisioning, and job diagnosis. + +## __Amazon Forecast Service__ + - ### Features + - Releasing the set of PredictorBacktestExportJob APIs which allow customers to export backtest values and item-level metrics data from Predictor training. + +## __Amazon Timestream Query__ + - ### Features + - Amazon Timestream now supports "QueryStatus" in Query API which has information about cumulative bytes scanned, metered, as well as progress percentage for the query. + +## __Amazon Translate__ + - ### Features + - This update adds new operations to create and manage parallel data in Amazon Translate. Parallel data is a resource that you can use to run Active Custom Translation jobs. + +## __Auto Scaling__ + - ### Features + - Documentation updates and corrections for Amazon EC2 Auto Scaling API Reference and SDKs. + +## __CodeArtifact__ + - ### Features + - Add support for the NuGet package format. + +## __Managed Streaming for Kafka__ + - ### Features + - Adding MAINTENANCE and REBOOTING_BROKER to Cluster states. + # __2.15.33__ __2020-11-20__ ## __AWS App Mesh__ - ### Features diff --git a/README.md b/README.md index 22f7a7b01fe3..f0d77a392f87 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.33 + 2.15.34 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.33 + 2.15.34 software.amazon.awssdk s3 - 2.15.33 + 2.15.34 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.33 + 2.15.34 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index bd22e13ae850..dbbe0fb58e68 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 577825412a2f..1c098a6e0b51 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index ded9dbcc9917..dcbf467c56df 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.15.34-SNAPSHOT + 2.15.34 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index d7e1201b8e55..306e389682fb 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index af87ffe6b193..1dc3875136b0 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.34-SNAPSHOT + 2.15.34 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 96d2204e81d0..ebc526140972 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.34-SNAPSHOT + 2.15.34 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 6d1522bb81ab..7fd3666bf629 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.15.34-SNAPSHOT + 2.15.34 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 44443724ab4c..72e768ac777f 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.34-SNAPSHOT + 2.15.34 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 6566b1011a67..cd71e76a7b7f 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.15.34-SNAPSHOT + 2.15.34 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 47529d1f6b72..0ac1f85eec36 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.34-SNAPSHOT + 2.15.34 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 343705788b2a..81ccf8931d2a 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index e66d72447f60..d8adfc4e03bc 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 6c867b29d60d..93d1fbe2cbbb 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.34-SNAPSHOT + 2.15.34 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 548a67f1375e..d64af821ca6e 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.34-SNAPSHOT + 2.15.34 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 9f392d2bde93..a42b50da4b9f 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 8b3eb13a7f4a..9e7d45e6eda1 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 6aa2686fb9d5..d3515f69dc75 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.34-SNAPSHOT + 2.15.34 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index ec12b619b543..c0d121db7b32 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.15.34-SNAPSHOT + 2.15.34 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 9de0e99c3b8c..16d80bebf9b1 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 4d8f6c3ab408..efc5028aeae6 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.15.34-SNAPSHOT + 2.15.34 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 0eb83605446f..ae7a208560b7 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.15.34-SNAPSHOT + 2.15.34 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index caa2924544c2..892d6bd7dcfc 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.15.34-SNAPSHOT + 2.15.34 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 9e444839082e..8681665ee754 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 650bfc79281c..784fd9cc90fa 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index cf2a8ee96d5c..72b86362b09b 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.34-SNAPSHOT + 2.15.34 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 5050889cddeb..0f423e7604bb 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.34-SNAPSHOT + 2.15.34 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index efcc405bd407..6384346f50d0 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.15.34-SNAPSHOT + 2.15.34 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 6a4357f78a50..b6bde48d73b8 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.15.34-SNAPSHOT + 2.15.34 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 4a0e6c3b73a6..0f4065f7cdac 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.15.34-SNAPSHOT + 2.15.34 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 6e6a597070c6..11eec7b958c1 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.15.34-SNAPSHOT + 2.15.34 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index d2a877464246..4444f5f6c30a 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 13aa18facbad..cf5440a1a4cf 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.15.34-SNAPSHOT + 2.15.34 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 1432fa9890ba..66022814b973 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.15.34-SNAPSHOT + 2.15.34 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index a8ee4bafa18c..1674d8bcb94a 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.34-SNAPSHOT + 2.15.34 metric-publishers diff --git a/pom.xml b/pom.xml index 7398fd886db5..40b79a5db3de 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.34-SNAPSHOT + 2.15.34 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 7dc323f2a5d4..21cc2def5bca 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.34-SNAPSHOT + 2.15.34 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index a55fd7eae1ed..06b045c3dcac 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.15.34-SNAPSHOT + 2.15.34 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index f8dc1cc1ccdb..3410b6d6eb76 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.34-SNAPSHOT + 2.15.34 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 1a49154ffaa8..cc250fabc33f 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index f1485c9b5d10..b005c5155b5c 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index feffc3e44de7..afe0e3af0468 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index e427eace2e27..3a1b8cf43f2a 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 852145a28046..cee9f6262ae2 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index acca5aa8598b..6cec9eb37b1d 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 80f2908b2625..6edb2685927c 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 178916f0ccd1..2d9f8ccfd53f 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 244b68872906..836e089f58f7 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 4cffe01c170d..663fc1a89085 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 9596515e41aa..dff16004573d 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index bb2cdc6613c8..be4315db61bc 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index a7034854fee9..dd517f9d8ff2 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 48db62170953..71f457215fcd 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index c75d5e6a1fdb..8510e3fbcda3 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 6763d4e14282..72417675495a 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 810170e4334e..ed3520f8a4e4 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 2cd9b0bb68c6..d00001f497b1 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index d7e7bcd4cab8..aea514d16771 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 66b55373a73d..7687581f9473 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index b9aa1fb3887e..d460015c2d48 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index f69d595a59c8..cf3e93f90c66 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 97dc43014510..5b8f6cd0b967 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 1296fc5762c7..e2ea66c49b47 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index a64b68379283..4f477d8b0fe6 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 1b4cf88931f3..77951b4d9209 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 86f651d8e621..5936705d66f6 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 2b2040d25f87..396d9ab90550 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index e8e2d5c7b19f..5b580e354a00 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 63f5f702055a..9e38c9b7cac0 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 2b9f27bfa596..71763a0b20d5 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 92fa938ebd34..9e802318b247 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 552bcd765ad0..70032ba015ca 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 32e87f770abb..c0db3d9554c6 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 043f0595fed1..3c08fd796453 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 515b256c145d..9554b48efc90 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index f7f8362855c6..d66464c3655d 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index bacb3e48bcc5..9beab35109eb 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index b5b1dcf05ff2..43d78f0440cc 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 11ce27434d7d..83e07b84a84b 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 4bdc8dc2cee0..1b013dae9e95 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 2c7901dc811f..539c2a4d87d2 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index e8e9e13a4bac..e8a41c90fef8 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index bc36c90649cc..e044283d492e 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 1f5fd4515769..ff0943fca646 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index df35dfe75c74..5cb583b3dfbb 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 12fef26a35ff..f44d3df8c3e7 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 3558f6272138..9e85d6d6935e 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 18f44a4b8569..c710bb1f4561 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 41474bbc2f4c..742ec2fb8d11 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index cfdf5c00760e..f0d9db0b958f 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index ee4ea388e232..400b2488e342 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 620dae815a1e..5edea6904e71 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 738371fe71b2..993891ef283c 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 57daf97068a7..3dffcea20d87 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 96bfa2ade1df..5a311d55997c 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 5dd9c2bae937..0886809d1032 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 3dfa55322683..8650fac98391 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index 1aaa561ee65d..152e87fe81fe 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 69d2baac9a9b..803a4377fa77 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 6deafc6d2ce3..7682aba101ab 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 57dc0999eafe..1f785ee3ff3c 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 877d06f160e0..52648e8042a8 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 4569c26b486e..d581dd40e134 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 2cdca9bcda45..97aad8e36f27 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index b32ca56636fa..d9b0b7cc9361 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 18e8f30dad5d..9bf0d9258b47 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 0f0994a19fd4..59837dcf24bd 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index f57ffc84b3c4..f9aa88aad854 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index e250c63ac56a..5c784718cf9e 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index edd10b174596..7317183d6e26 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 8de0a2dc60c1..7af7f84a3eba 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 7d12bdd9ccdf..dd4d0a100f10 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 2474c94d8b61..782d09a4df21 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index e268dfb296a9..39e12a7d12f7 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index a6bc9db1d52e..454d7bc0088f 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 404393bd5186..b304c55e07a1 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index d6544184471b..fa9e7cc19d56 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 369a5e23597a..52c08ccffb48 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index ec9a4d97939d..3d024dda33e2 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 44cfc173db85..48164bda3a4b 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index ba86cc50dfe2..9d889c19033e 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index d3e72461802c..ae43e2b368f8 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 1b8cc9df34cd..775063de2225 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 08da2eef7ac2..c4e078f080e6 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 388de5a0fedb..5c317ddc71d2 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 51d2063d2818..30613b0c723d 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 486c9d1d1c63..b6a2ba8dd70d 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index ee295aa80752..f865b0994766 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 8013c5e092c3..1fb91c06b4aa 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index b8e7ea090792..8589239a9bbb 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index a09aed66468a..233c71f9ad3e 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index cea5fa28f553..b3927ae862d0 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 012512b0bdd9..1349c403d896 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 7718d81273d5..5c8b297ce231 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index ffdd7e2a108f..d6abef6c1d68 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 538e298ce867..a1c4d7cfebc7 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index be02e95f886b..d5568dd98d3b 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index c240f5a48218..363994771395 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 5fdf7ffae5bf..0cd14e2cc0f1 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 472fb82488cb..da34cfe9ae8e 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 7e257570c6c5..8dc14e0f9f03 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index b9ba872100f9..4b6e22f797cc 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 5f3e66c4f23d..f166c8bb1801 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 28dc65d6d5f8..d87b865f6389 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 699fcb0b2c06..e4c662861cba 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 2192ccafdc0a..7c961a42b559 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index f6cf0200e6a7..50609d5fefb1 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 319263a27991..a67b51432741 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 0dd6541c3009..8148d25679be 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 9775965ac73e..ee3c4a967ae7 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index c666e05e385c..f896ef83e3b9 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 89f600b34a42..54af323d032b 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index b6273ba1ce20..8e1c8abe85f6 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 408f4f7aee1f..e968e127c115 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 6a8d35e2b0b8..76f04d863f9e 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index f537dda168a0..40dcdd603604 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index fd9357c970ff..3551dab2c38a 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 778f492dca23..4ca8f5d95ce4 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index a985a6b7417b..e1c7a9dba805 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 2aab0cbd7fe0..955ae4bf7c5f 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 314f6e86f6dc..acfb5e3e2c49 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 575442cf138a..450b109645be 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 50e28e08aa65..6c1c287c0195 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 1de21e63b9fd..ab770b2d8e93 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index a047c62e07cf..99586c627f8a 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 6e0150c8fc2d..3bf498de149d 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index d6276eaddfd1..ad18ad21b42e 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index e6fdd070765f..197044175eeb 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 4a9a25ad4836..cd79a7d7b8df 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 0419934322fa..90250ede40e6 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 49b696f698c5..dec0e591da58 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 54c5ad9458ee..b2b1c9ecaed3 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 4ee2ee395398..bf9b5ed7f9c6 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index b8cd851fb928..786b7bfb2268 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index e2f5c329cc83..dc5e7e818f08 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 3d0b7e697288..3421807813d7 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 62b602d5feda..439c79192f64 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 0a4a8602c5dd..95f6ae357034 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index b6600f207ec2..e1f96a79325e 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 3b164c07366f..5be6f1131f1d 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 919ee545dcd0..69f609faf37d 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 1f26e199f74a..e80fc1c90f18 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index c2607b78db1c..a376b8035050 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 3b8ca4e0f27a..502c51a54923 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index b60143badb22..1a12715a194b 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 5c86cd3bc182..71a00b5a5ec2 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index db51d8973538..efcde74dce34 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 9d1995fec82b..d9b152cdc5e4 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index f864d9999e0b..909a16be8f3a 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 949bb813e008..0354c5123a08 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 9f6674509da9..59caad5ae584 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 904fe472603d..5b690b146c2f 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index cc76d4cdf236..b3767b746151 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index babfbd60dd62..894157154259 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index 44b92996a905..fb8e97cbeb20 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index aab5a85f19f3..89b5cbd67803 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 12f26fb05397..d02a7e96573f 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 248c3ad9c8f1..b30ce2683962 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index cbd7df1a5582..7647eb1efc80 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 52bd272c5c49..6773142fc500 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 444059abaf60..81b2e6e7b7fc 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 891fe8196981..c35febd15ecb 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 9efb7d92f56e..b76ca6199918 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index c764245bd540..6c0569e53f6f 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index de69250710ae..71096667c07b 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 92f1572ab97a..c486f23e2b91 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index e0b1ffa0bcf2..b11995bfc221 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index c1156439a6fd..64396c82b238 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 5ceed5eab700..4cbd31dcc0f5 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.34-SNAPSHOT + 2.15.34 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 18ac77964f40..d3e524c73c5f 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 4023ceaf48a2..d64940f49310 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 6cbb51938d73..86ea59a3465b 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 26c187267229..109b945e3400 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 30390d685875..bc02688c7f33 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 4a95d630e030..f51cfb1f4c19 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 6acc2b3ab99a..1ff75cd29d2c 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 4f69f700816a..d6a1539f9ef9 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 06215dd5fa23..05e64f5b545a 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 71c5d1427c91..36d52faf51a4 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 5c7d16b5dd51..9f3f6be04df2 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 5a7947d953d5..46f97df9f437 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 06943394ed70..e69a17e2b1f9 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index b168ad49fefe..cd4bc964a9b6 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 807336aa3826..1f4686eca8ca 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index b19d1438dc43..6b1341ca2c38 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index c08d0d275560..e4be9890025c 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 8621c7c2c647..0673a5a19f2e 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 88b03ed58e30..805bc66152f1 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index fbb515ec5849..dec68d9c086c 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 40a7cdc13e3f..bc3e95e43110 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 1e8928bef03e..a28e4c8dc43a 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index c6d346392978..f7c343a36445 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 63a808dbb3cc..f71360159d2b 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 834f3b6c872c..7de7b2cecafd 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index ab1068a7513c..9f88876c3f58 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index e09f93de9202..85108237f5b5 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 1d12346daba6..d17943150095 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index bd9729d24515..47aaaae98ad8 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 0d362ed9674e..250956da8726 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 5a96373682c0..d67fc4c91fb7 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 5bbccd0a9388..e1dbe3765bbb 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 7142824dee86..a109e0e3a72b 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index dcdcbdfcaa60..0ea632b7e23f 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index eb1a27a89b3b..a05aa4a558fc 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 3c23f310c4fd..d21c6fe4b9d4 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 70da013a2d6a..781a26de9f4b 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index c5983e69cea7..4e948a69a5eb 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index fb62a9a1c8c5..020e2ac170f0 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index e0405209f9d9..1205d0d937ed 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index d348f60b6f43..53b0a1b57d37 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index ccd24633d6e4..035aa429c07e 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 81d0196491a0..c5158bbdb9ce 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index fd0267a0e743..260c00f860a0 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 2ac5771df668..cecaa01ab187 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index a450bfbcdb9d..a5a54f40cfec 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 235e230090a5..cb768d50fd44 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 68f2a7ae660c..d95344021104 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index d8676e279b23..14f6d344ddae 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 09d14c809445..0e757ccf545d 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 41d185feeff2..70e36fc8b6e2 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 17747c5535de..f6c38fdec537 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 80c429773cd4..25fabcdab587 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 4cfa9db771c1..a9de1d900fd7 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index c16a4bf65db7..170e0c07883f 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 63734941268f..b97aa66645f3 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index d7d2ec0bebdd..87048cdb7411 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 409b453b3b83..876a2f9a617e 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 411127014eb8..f68b43c3575c 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index b79d0adee126..40ad576b330e 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index b0d5b15c40f7..42425167d7ae 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index f4fe0e4e8e64..d8aa6a50e89f 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index b7033283ad85..a5b9aafc0a8c 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 8d28d8b88e60..68272b0873e8 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34-SNAPSHOT + 2.15.34 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 102d18bca07e..197dc446cbb4 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.15.34-SNAPSHOT + 2.15.34 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 0da0ea087657..64dc3c360407 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.15.34-SNAPSHOT + 2.15.34 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 72e5f12e7ffe..e3c6ad6228b2 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.15.34-SNAPSHOT + 2.15.34 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index ce9b34c18357..b3b3c380433f 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.15.34-SNAPSHOT + 2.15.34 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 579d23cad96a..922956cb071c 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.15.34-SNAPSHOT + 2.15.34 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 9a2b0395e6ea..b1d08fea01eb 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.34-SNAPSHOT + 2.15.34 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index da7a64f835a4..fadc81012c64 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.15.34-SNAPSHOT + 2.15.34 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 784a5bfb9ca3..fd2454eaf068 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.15.34-SNAPSHOT + 2.15.34 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 97ce3dc8fc36..6ea15be58f53 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.15.34-SNAPSHOT + 2.15.34 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index e56f10d9fb6b..ad1182fe9a69 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.15.34-SNAPSHOT + 2.15.34 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 14cf8fd8816e..e0733fd9814d 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.34-SNAPSHOT + 2.15.34 4.0.0 From 8e4fb6d45e3cf29918361ed791a6bbba8e1598d1 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Mon, 23 Nov 2020 19:34:54 +0000 Subject: [PATCH 276/339] Update to next snapshot version: 2.15.35-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/pom.xml | 2 +- services/servicecatalogappregistry/pom.xml | 2 +- services/servicediscovery/pom.xml | 2 +- services/servicequotas/pom.xml | 2 +- services/ses/pom.xml | 2 +- services/sesv2/pom.xml | 2 +- services/sfn/pom.xml | 2 +- services/shield/pom.xml | 2 +- services/signer/pom.xml | 2 +- services/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 283 files changed, 283 insertions(+), 283 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index dbbe0fb58e68..9d0003e0439f 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 1c098a6e0b51..3ba239287954 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index dcbf467c56df..73313ba5bdf4 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.15.34 + 2.15.35-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 306e389682fb..b9a799e5b7bb 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 1dc3875136b0..578ccf56f1ad 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.34 + 2.15.35-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index ebc526140972..1d18abbaea85 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.34 + 2.15.35-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 7fd3666bf629..41f6b220ffcb 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.15.34 + 2.15.35-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 72e768ac777f..07561d83ef11 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.34 + 2.15.35-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index cd71e76a7b7f..4fa76946b8b0 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.15.34 + 2.15.35-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 0ac1f85eec36..36bd506ddaf5 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.34 + 2.15.35-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 81ccf8931d2a..57ce327add86 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index d8adfc4e03bc..a6233f0c5a43 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 93d1fbe2cbbb..cad275b04594 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.34 + 2.15.35-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index d64af821ca6e..363f2d0dca96 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.34 + 2.15.35-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index a42b50da4b9f..f6c1714417f3 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 9e7d45e6eda1..ec6f820ed518 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index d3515f69dc75..8d1f8fdbbe92 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.34 + 2.15.35-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index c0d121db7b32..6ee6bb919068 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.15.34 + 2.15.35-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 16d80bebf9b1..373c7966089f 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index efc5028aeae6..c0530cb3f5fa 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.15.34 + 2.15.35-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index ae7a208560b7..5703001426ef 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.15.34 + 2.15.35-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 892d6bd7dcfc..034605020b43 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.15.34 + 2.15.35-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 8681665ee754..91583ac19fe0 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 784fd9cc90fa..92e2dd556026 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 72b86362b09b..5c325b921cde 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.34 + 2.15.35-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 0f423e7604bb..f23d6e9123c8 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.34 + 2.15.35-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 6384346f50d0..26d842ab10e8 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.15.34 + 2.15.35-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index b6bde48d73b8..6cf8a964e815 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.15.34 + 2.15.35-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 0f4065f7cdac..6e88b4acf326 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.15.34 + 2.15.35-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 11eec7b958c1..bc96fc0607cf 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.15.34 + 2.15.35-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 4444f5f6c30a..b51dc3ac810b 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index cf5440a1a4cf..4900aa13bc77 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.15.34 + 2.15.35-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 66022814b973..8d7d3babb8d6 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.15.34 + 2.15.35-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 1674d8bcb94a..3ad1b993081d 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.34 + 2.15.35-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 40b79a5db3de..6fb154b52485 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.34 + 2.15.35-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 21cc2def5bca..6002b955357c 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.34 + 2.15.35-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 06b045c3dcac..bb2f08a38a37 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.15.34 + 2.15.35-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 3410b6d6eb76..27cb8c84873e 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.34 + 2.15.35-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index cc250fabc33f..6b205f45b79d 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index b005c5155b5c..6fce2cd36653 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index afe0e3af0468..5d91eba096b2 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 3a1b8cf43f2a..433043c41c5c 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index cee9f6262ae2..ad68b09517a6 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 6cec9eb37b1d..fead2292a95b 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 6edb2685927c..c0ad831e940b 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 2d9f8ccfd53f..55cd2e4f0a16 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 836e089f58f7..ddde183e4419 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 663fc1a89085..84db588efe4d 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index dff16004573d..d344fe0b233a 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index be4315db61bc..f7064968ed4f 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index dd517f9d8ff2..4c376212c7cc 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 71f457215fcd..29f413937bd6 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 8510e3fbcda3..741760442ce1 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 72417675495a..cec299fc6197 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index ed3520f8a4e4..05ae9998c69e 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index d00001f497b1..afadcfc9ff57 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index aea514d16771..d806ee3c9b1b 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 7687581f9473..5be8292b6e14 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index d460015c2d48..1faa20bee7e7 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index cf3e93f90c66..ef778e38a813 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 5b8f6cd0b967..f3124ace31de 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index e2ea66c49b47..c9fdfb3a6f67 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 4f477d8b0fe6..41cf38f2cfc1 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 77951b4d9209..6c13a3f5a2d0 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 5936705d66f6..884bbf2d1844 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 396d9ab90550..e13d60a09291 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 5b580e354a00..8824138ede22 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 9e38c9b7cac0..dcf9994adcc7 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 71763a0b20d5..f7273a8797ed 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 9e802318b247..d67780697877 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 70032ba015ca..f7006c4c41f2 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index c0db3d9554c6..f8304bb539e2 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 3c08fd796453..0346093f1d80 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 9554b48efc90..2d590b2a377e 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index d66464c3655d..e969dca4a3ca 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 9beab35109eb..a86dd0c80493 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 43d78f0440cc..c82ec981734d 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 83e07b84a84b..4665a7c836b6 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 1b013dae9e95..3def91233342 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 539c2a4d87d2..113ec1d4b2e8 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index e8a41c90fef8..e86e364b229f 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index e044283d492e..21c788251f9d 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index ff0943fca646..4083cd03cba9 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 5cb583b3dfbb..e2f51e033009 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index f44d3df8c3e7..83538968a60e 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 9e85d6d6935e..7da350e29bee 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index c710bb1f4561..df2156fe074a 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 742ec2fb8d11..212fb1cb86fc 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index f0d9db0b958f..8653a3d31ff4 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 400b2488e342..36cac46339f7 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 5edea6904e71..359331e77eb0 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 993891ef283c..ac839abcf41f 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 3dffcea20d87..d94b63d23c01 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 5a311d55997c..2cd06d38890c 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 0886809d1032..4e8e5ad3d7ff 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 8650fac98391..0f472349c9b4 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index 152e87fe81fe..1a7a4699866e 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 803a4377fa77..2b036bffd78d 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 7682aba101ab..7e9f192a1196 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 1f785ee3ff3c..3c7fac5f7b43 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 52648e8042a8..f014df16b605 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index d581dd40e134..273ee11ef9d1 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 97aad8e36f27..399c96c10e23 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index d9b0b7cc9361..ce6ad18555a9 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 9bf0d9258b47..3d68e2197cce 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 59837dcf24bd..7a35b54b75d7 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index f9aa88aad854..ac982ce1f988 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 5c784718cf9e..66f1eda20ea5 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 7317183d6e26..71964e9e7c57 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 7af7f84a3eba..ed848cf21d7f 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index dd4d0a100f10..12243d81ca97 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 782d09a4df21..e8cc83be08e3 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 39e12a7d12f7..a10e689d087a 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 454d7bc0088f..0f9f43c0264b 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index b304c55e07a1..f7d4814249c8 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index fa9e7cc19d56..4be04d868e7a 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 52c08ccffb48..d99e1a69bee7 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 3d024dda33e2..ead9fb276891 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 48164bda3a4b..0edcdb476978 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 9d889c19033e..b67575354e03 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index ae43e2b368f8..9f79b92dc9c9 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 775063de2225..cd0523d497bf 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index c4e078f080e6..59a5951f4d67 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 5c317ddc71d2..996f7e82fc68 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 30613b0c723d..4919e93f505f 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index b6a2ba8dd70d..cd110e78faf9 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index f865b0994766..84e01af26704 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 1fb91c06b4aa..5aaafa1f94a2 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 8589239a9bbb..102c6ba726b4 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 233c71f9ad3e..d9964016468a 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index b3927ae862d0..abbd5c58cf9e 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 1349c403d896..2e8abb1d6cab 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 5c8b297ce231..21768901de87 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index d6abef6c1d68..0ecbd6a0dc3e 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index a1c4d7cfebc7..23e3542eb106 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index d5568dd98d3b..2957a8297441 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 363994771395..76a97f466538 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 0cd14e2cc0f1..c2de981c8f7c 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index da34cfe9ae8e..01a25c8ec423 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 8dc14e0f9f03..85ddc9f4ba9c 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 4b6e22f797cc..ff0da46a8bbf 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index f166c8bb1801..98f5f745c78d 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index d87b865f6389..0b53f6191e6e 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index e4c662861cba..9d20914ddfe5 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 7c961a42b559..9a116887dddf 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 50609d5fefb1..07831c41d7ac 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index a67b51432741..943d45f06797 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 8148d25679be..71791549b1b5 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index ee3c4a967ae7..a26eb1bee847 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index f896ef83e3b9..29551f46c2a1 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 54af323d032b..3a70484dff3a 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 8e1c8abe85f6..4dc7b7463ae0 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index e968e127c115..a63d860f1392 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 76f04d863f9e..6e4f29273299 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 40dcdd603604..021d5b19309c 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 3551dab2c38a..82e1d6d7fe4d 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 4ca8f5d95ce4..8c94d65d66ee 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index e1c7a9dba805..6905acb97ece 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 955ae4bf7c5f..53d359c3ccaa 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index acfb5e3e2c49..89c92358f8ac 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 450b109645be..6c63a3248e1b 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 6c1c287c0195..b338d064ca34 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index ab770b2d8e93..ddf77ddd1109 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 99586c627f8a..7c85d7a3bf7f 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 3bf498de149d..a1c209839c6c 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index ad18ad21b42e..59383fb48632 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 197044175eeb..7d77bb8a8733 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index cd79a7d7b8df..88cace794b84 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 90250ede40e6..67752b34c907 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index dec0e591da58..97b577dc1135 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index b2b1c9ecaed3..4cd366156a62 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index bf9b5ed7f9c6..4453986b6c6c 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 786b7bfb2268..cc6c23e47190 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index dc5e7e818f08..be6bf186b2d2 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 3421807813d7..73c0561b8bd5 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 439c79192f64..a5e13dbc236f 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 95f6ae357034..0e8e85d5611b 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index e1f96a79325e..bea45e51eb56 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 5be6f1131f1d..ef13500c82c7 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 69f609faf37d..ee4f2d22eb4b 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index e80fc1c90f18..fdfbc048ad4d 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index a376b8035050..057a82cc305c 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 502c51a54923..02ecf0a866ab 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 1a12715a194b..be1ff65c15b1 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 71a00b5a5ec2..ab2d43bd4c5a 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index efcde74dce34..07caac518ad0 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index d9b152cdc5e4..59e368eabdcc 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 909a16be8f3a..95d25cd3aa18 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 0354c5123a08..245c1e0b8b7b 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 59caad5ae584..e22e791d4e55 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 5b690b146c2f..87f699e8ae7f 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index b3767b746151..cddb042bec83 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 894157154259..bc378f79c1ab 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index fb8e97cbeb20..ba3ed6377205 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 89b5cbd67803..7e88611b9a57 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index d02a7e96573f..db2106111a80 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index b30ce2683962..690545808dc2 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 7647eb1efc80..0e553fa9881e 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 6773142fc500..d4312a63c525 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 81b2e6e7b7fc..3d96a8fa4878 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index c35febd15ecb..632c38ddc219 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index b76ca6199918..9c4bd499b959 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 6c0569e53f6f..026c83759495 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 71096667c07b..db2b4bbafcbb 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index c486f23e2b91..bed0c7a4401f 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index b11995bfc221..4ce1db215da9 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 64396c82b238..b8f7a7c83162 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 4cbd31dcc0f5..45eb57e4b7ee 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.34 + 2.15.35-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index d3e524c73c5f..0feda2e4c369 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index d64940f49310..037bc04c2b43 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 86ea59a3465b..0bf4cff84dd4 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 109b945e3400..9ccbcdec5d2f 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index bc02688c7f33..eae916814ec1 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index f51cfb1f4c19..b63c5c91ccf1 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 1ff75cd29d2c..6f90bb746d31 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index d6a1539f9ef9..2a7a89bb60d5 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 05e64f5b545a..42e849525b6e 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 36d52faf51a4..f5392b32ac51 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 9f3f6be04df2..9bac96783149 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 46f97df9f437..997da6e5c8dd 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index e69a17e2b1f9..58f0f9ac593d 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index cd4bc964a9b6..7be532398a17 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 1f4686eca8ca..0dcc37232281 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 6b1341ca2c38..df998c868227 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index e4be9890025c..9abc8adea5e3 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 0673a5a19f2e..ddb807ace2ab 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 805bc66152f1..acc492b82623 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index dec68d9c086c..31ee01510eea 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index bc3e95e43110..39d4f841b8b3 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index a28e4c8dc43a..9794533f3c58 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index f7c343a36445..1cd14950dc1c 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index f71360159d2b..a03b7f68a728 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 7de7b2cecafd..dfe1ea1830af 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 9f88876c3f58..18b9760cb554 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 85108237f5b5..95edbd546a20 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index d17943150095..1cb71b7f0dcb 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index 47aaaae98ad8..461e8487c7ee 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 250956da8726..c26d6e488f74 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index d67fc4c91fb7..a7b9bf0bab05 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index e1dbe3765bbb..61de904c7cd9 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index a109e0e3a72b..abd0c30f7ee4 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 0ea632b7e23f..ab3488bbc443 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index a05aa4a558fc..3311f0a6d750 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index d21c6fe4b9d4..f4d02a9e8d70 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 781a26de9f4b..c6d9a724db96 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 4e948a69a5eb..9edd7d0d6a40 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 020e2ac170f0..44c8531f51f5 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 1205d0d937ed..b63f02f31738 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 53b0a1b57d37..100538edb326 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 035aa429c07e..e689d9ae5c11 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index c5158bbdb9ce..f8dee76a0cfe 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 260c00f860a0..719f5c69655d 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index cecaa01ab187..f838461cd230 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index a5a54f40cfec..9c5be75cb39a 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index cb768d50fd44..ada6a2186014 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index d95344021104..efe084985b15 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 14f6d344ddae..477d2ef855e1 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 0e757ccf545d..7d38284418d4 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 70e36fc8b6e2..88ff31a89acc 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index f6c38fdec537..d18e778dbd0f 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 25fabcdab587..f73fbfcfb47d 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index a9de1d900fd7..420d208fe1ae 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 170e0c07883f..dae1b50a5934 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index b97aa66645f3..3e4209a53d68 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 87048cdb7411..615ec10fb52b 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 876a2f9a617e..487f55840cdc 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index f68b43c3575c..61512b7e80dc 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 40ad576b330e..996840590582 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 42425167d7ae..c905de4a2002 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index d8aa6a50e89f..abc50747ef5a 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index a5b9aafc0a8c..2080bed7d602 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 68272b0873e8..c3d1bf551738 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.34 + 2.15.35-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 197dc446cbb4..da57c3e0b84f 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.15.34 + 2.15.35-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 64dc3c360407..32ae74b902b1 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.15.34 + 2.15.35-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index e3c6ad6228b2..5b548bf738ce 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.15.34 + 2.15.35-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index b3b3c380433f..901a213cb8a2 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.15.34 + 2.15.35-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 922956cb071c..1954035a2df6 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.15.34 + 2.15.35-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index b1d08fea01eb..1f80fd9f6776 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.34 + 2.15.35-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index fadc81012c64..b31ed71d8c42 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.15.34 + 2.15.35-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index fd2454eaf068..5d6e5788e052 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.15.34 + 2.15.35-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 6ea15be58f53..76ac1c590ab2 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.15.34 + 2.15.35-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index ad1182fe9a69..8d1bd6b67068 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.15.34 + 2.15.35-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index e0733fd9814d..b00943b1861a 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.34 + 2.15.35-SNAPSHOT 4.0.0 From cc41204a022adcacd4139d2003a2d5766bb751ad Mon Sep 17 00:00:00 2001 From: Somaya Date: Mon, 5 Oct 2020 12:40:34 -0700 Subject: [PATCH 277/339] Add closed issue message github action --- .github/workflows/closed-issue-message.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/closed-issue-message.yml diff --git a/.github/workflows/closed-issue-message.yml b/.github/workflows/closed-issue-message.yml new file mode 100644 index 000000000000..3340afb1f3b1 --- /dev/null +++ b/.github/workflows/closed-issue-message.yml @@ -0,0 +1,17 @@ +name: Closed Issue Message +on: + issues: + types: [closed] +jobs: + auto_comment: + runs-on: ubuntu-latest + steps: + - uses: aws-actions/closed-issue-message@v1 + with: + # These inputs are both required + repo-token: "${{ secrets.GITHUB_TOKEN }}" + message: | + ### ⚠️COMMENT VISIBILITY WARNING⚠️ + Comments on closed issues are hard for our team to see. + If you need more assistance, please either tag a team member or open a new issue that references this one. + If you wish to keep having a conversation with other community members under this issue feel free to do so. From f7db4779b57a9f51b5e8fc2886a349e2526ff6b2 Mon Sep 17 00:00:00 2001 From: Somaya Date: Wed, 21 Oct 2020 20:06:57 -0700 Subject: [PATCH 278/339] edit text --- .github/workflows/closed-issue-message.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/closed-issue-message.yml b/.github/workflows/closed-issue-message.yml index 3340afb1f3b1..e1137cf61719 100644 --- a/.github/workflows/closed-issue-message.yml +++ b/.github/workflows/closed-issue-message.yml @@ -13,5 +13,5 @@ jobs: message: | ### ⚠️COMMENT VISIBILITY WARNING⚠️ Comments on closed issues are hard for our team to see. - If you need more assistance, please either tag a team member or open a new issue that references this one. + If you need more assistance, please open a new issue that references this one. If you wish to keep having a conversation with other community members under this issue feel free to do so. From 6d52627eb0be858e7b50d18d9dcc4215123c3b0d Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 24 Nov 2020 19:09:28 +0000 Subject: [PATCH 279/339] AWS CloudFormation Update: Adds support for the new Modules feature for CloudFormation. A module encapsulates one or more resources and their respective configurations for reuse across your organization. --- .../feature-AWSCloudFormation-595f394.json | 6 +++ .../codegen-resources/service-2.json | 51 +++++++++++++++++-- 2 files changed, 53 insertions(+), 4 deletions(-) create mode 100644 .changes/next-release/feature-AWSCloudFormation-595f394.json diff --git a/.changes/next-release/feature-AWSCloudFormation-595f394.json b/.changes/next-release/feature-AWSCloudFormation-595f394.json new file mode 100644 index 000000000000..fa998f06c7c0 --- /dev/null +++ b/.changes/next-release/feature-AWSCloudFormation-595f394.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS CloudFormation", + "contributor": "", + "description": "Adds support for the new Modules feature for CloudFormation. A module encapsulates one or more resources and their respective configurations for reuse across your organization." +} diff --git a/services/cloudformation/src/main/resources/codegen-resources/service-2.json b/services/cloudformation/src/main/resources/codegen-resources/service-2.json index a2c6a009005a..95134db6aa07 100644 --- a/services/cloudformation/src/main/resources/codegen-resources/service-2.json +++ b/services/cloudformation/src/main/resources/codegen-resources/service-2.json @@ -1611,7 +1611,7 @@ "documentation":"

The organization root ID or organizational unit (OU) IDs to which StackSets deploys.

" } }, - "documentation":"

[Service-managed permissions] The AWS Organizations accounts to which StackSets deploys. StackSets does not deploy stack instances to the organization master account, even if the master account is in your organization or in an OU in your organization.

For update operations, you can specify either Accounts or OrganizationalUnitIds. For create and delete operations, specify OrganizationalUnitIds.

" + "documentation":"

[Service-managed permissions] The AWS Organizations accounts to which StackSets deploys. StackSets does not deploy stack instances to the organization management account, even if the organization management account is in your organization or in an OU in your organization.

For update operations, you can specify either Accounts or OrganizationalUnitIds. For create and delete operations, specify OrganizationalUnitIds.

" }, "DeprecatedStatus":{ "type":"string", @@ -2970,6 +2970,10 @@ "shape":"DeprecatedStatus", "documentation":"

The deprecation status of the types that you want to get summary information about.

Valid values include:

  • LIVE: The type is registered for use in CloudFormation operations.

  • DEPRECATED: The type has been deregistered and can no longer be used in CloudFormation operations.

" }, + "Type":{ + "shape":"RegistryType", + "documentation":"

The type of extension.

" + }, "MaxResults":{ "shape":"MaxResults", "documentation":"

The maximum number of results to be returned with a single call. If the number of available results exceeds this maximum, the response includes a NextToken value that you can assign to the NextToken request parameter to get the next set of results.

" @@ -3017,6 +3021,7 @@ }, "documentation":"

Contains logging configuration information for a type.

" }, + "LogicalIdHierarchy":{"type":"string"}, "LogicalResourceId":{"type":"string"}, "LogicalResourceIds":{ "type":"list", @@ -3039,6 +3044,20 @@ "min":1 }, "Metadata":{"type":"string"}, + "ModuleInfo":{ + "type":"structure", + "members":{ + "TypeHierarchy":{ + "shape":"TypeHierarchy", + "documentation":"

A concantenated list of the the module type or types containing the resource. Module types are listed starting with the inner-most nested module, and separated by /.

In the following example, the resource was created from a module of type AWS::First::Example::MODULE, that is nested inside a parent module of type AWS::Second::Example::MODULE.

AWS::First::Example::MODULE/AWS::Second::Example::MODULE

" + }, + "LogicalIdHierarchy":{ + "shape":"LogicalIdHierarchy", + "documentation":"

A concantenated list of the logical IDs of the module or modules containing the resource. Modules are listed starting with the inner-most nested module, and separated by /.

In the following example, the resource was created from a module, moduleA, that is nested inside a parent module, moduleB.

moduleA/moduleB

For more information, see Referencing resources in a module in the CloudFormation User Guide.

" + } + }, + "documentation":"

Contains information about the module from which the resource was created, if the resource was created from a module included in the stack template.

For more information on modules, see Using modules to encapsulate and reuse resource configurations in the CloudFormation User Guide.

" + }, "MonitoringTimeInMinutes":{ "type":"integer", "max":180, @@ -3439,7 +3458,10 @@ }, "RegistryType":{ "type":"string", - "enum":["RESOURCE"] + "enum":[ + "RESOURCE", + "MODULE" + ] }, "Replacement":{ "type":"string", @@ -3508,6 +3530,10 @@ "ChangeSetId":{ "shape":"ChangeSetId", "documentation":"

The change set ID of the nested change set.

" + }, + "ModuleInfo":{ + "shape":"ModuleInfo", + "documentation":"

Contains information about the module from which the resource was created, if the resource was created from a module included in the stack template.

" } }, "documentation":"

The ResourceChange structure describes the resource and the action that AWS CloudFormation will perform on it if you execute this change set.

" @@ -4277,6 +4303,10 @@ "DriftInformation":{ "shape":"StackResourceDriftInformation", "documentation":"

Information about whether the resource's actual configuration differs, or has drifted, from its expected configuration, as defined in the stack template and any values specified as template parameters. For more information, see Detecting Unregulated Configuration Changes to Stacks and Resources.

" + }, + "ModuleInfo":{ + "shape":"ModuleInfo", + "documentation":"

Contains information about the module from which the resource was created, if the resource was created from a module included in the stack template.

" } }, "documentation":"

The StackResource data type.

" @@ -4333,6 +4363,10 @@ "DriftInformation":{ "shape":"StackResourceDriftInformation", "documentation":"

Information about whether the resource's actual configuration differs, or has drifted, from its expected configuration, as defined in the stack template and any values specified as template parameters. For more information, see Detecting Unregulated Configuration Changes to Stacks and Resources.

" + }, + "ModuleInfo":{ + "shape":"ModuleInfo", + "documentation":"

Contains information about the module from which the resource was created, if the resource was created from a module included in the stack template.

" } }, "documentation":"

Contains detailed information about the specified stack resource.

" @@ -4386,6 +4420,10 @@ "Timestamp":{ "shape":"Timestamp", "documentation":"

Time at which AWS CloudFormation performed drift detection on the stack resource.

" + }, + "ModuleInfo":{ + "shape":"ModuleInfo", + "documentation":"

Contains information about the module from which the resource was created, if the resource was created from a module included in the stack template.

" } }, "documentation":"

Contains the drift information for a resource that has been checked for drift. This includes actual and expected property values for resources in which AWS CloudFormation has detected drift. Only resource properties explicitly defined in the stack template are checked for drift. For more information, see Detecting Unregulated Configuration Changes to Stacks and Resources.

Resources that do not currently support drift detection cannot be checked. For a list of resources that support drift detection, see Resources that Support Drift Detection.

Use DetectStackResourceDrift to detect drift on individual resources, or DetectStackDrift to detect drift on all resources in a given stack that support drift detection.

" @@ -4479,6 +4517,10 @@ "DriftInformation":{ "shape":"StackResourceDriftInformationSummary", "documentation":"

Information about whether the resource's actual configuration differs, or has drifted, from its expected configuration, as defined in the stack template and any values specified as template parameters. For more information, see Detecting Unregulated Configuration Changes to Stacks and Resources.

" + }, + "ModuleInfo":{ + "shape":"ModuleInfo", + "documentation":"

Contains information about the module from which the resource was created, if the resource was created from a module included in the stack template.

" } }, "documentation":"

Contains high-level information about the specified stack resource.

" @@ -5108,11 +5150,12 @@ "max":1024, "pattern":"arn:aws[A-Za-z0-9-]{0,64}:cloudformation:[A-Za-z0-9-]{1,64}:([0-9]{12})?:type/.+" }, + "TypeHierarchy":{"type":"string"}, "TypeName":{ "type":"string", - "max":196, + "max":204, "min":10, - "pattern":"[A-Za-z0-9]{2,64}::[A-Za-z0-9]{2,64}::[A-Za-z0-9]{2,64}" + "pattern":"[A-Za-z0-9]{2,64}::[A-Za-z0-9]{2,64}::[A-Za-z0-9]{2,64}(::MODULE){0,1}" }, "TypeNotFoundException":{ "type":"structure", From cd2dd13f0eb0b905a7261df73e9cdc5917ff079a Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 24 Nov 2020 19:09:32 +0000 Subject: [PATCH 280/339] AWS CloudTrail Update: CloudTrail now includes advanced event selectors, which give you finer-grained control over the events that are logged to your trail. --- .../feature-AWSCloudTrail-caec95b.json | 6 ++ .../codegen-resources/service-2.json | 76 ++++++++++++++++--- 2 files changed, 72 insertions(+), 10 deletions(-) create mode 100644 .changes/next-release/feature-AWSCloudTrail-caec95b.json diff --git a/.changes/next-release/feature-AWSCloudTrail-caec95b.json b/.changes/next-release/feature-AWSCloudTrail-caec95b.json new file mode 100644 index 000000000000..3e3ba112ce79 --- /dev/null +++ b/.changes/next-release/feature-AWSCloudTrail-caec95b.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS CloudTrail", + "contributor": "", + "description": "CloudTrail now includes advanced event selectors, which give you finer-grained control over the events that are logged to your trail." +} diff --git a/services/cloudtrail/src/main/resources/codegen-resources/service-2.json b/services/cloudtrail/src/main/resources/codegen-resources/service-2.json index 9b2edf9a3cd6..99868dd2b6bc 100644 --- a/services/cloudtrail/src/main/resources/codegen-resources/service-2.json +++ b/services/cloudtrail/src/main/resources/codegen-resources/service-2.json @@ -249,7 +249,7 @@ {"shape":"UnsupportedOperationException"}, {"shape":"OperationNotPermittedException"} ], - "documentation":"

Looks up management events or CloudTrail Insights events that are captured by CloudTrail. You can look up events that occurred in a region within the last 90 days. Lookup supports the following attributes for management events:

  • AWS access key

  • Event ID

  • Event name

  • Event source

  • Read only

  • Resource name

  • Resource type

  • User name

Lookup supports the following attributes for Insights events:

  • Event ID

  • Event name

  • Event source

All attributes are optional. The default number of results returned is 50, with a maximum of 50 possible. The response includes a token that you can use to get the next page of results.

The rate of lookup requests is limited to two per second per account. If this limit is exceeded, a throttling error occurs.

", + "documentation":"

Looks up management events or CloudTrail Insights events that are captured by CloudTrail. You can look up events that occurred in a region within the last 90 days. Lookup supports the following attributes for management events:

  • AWS access key

  • Event ID

  • Event name

  • Event source

  • Read only

  • Resource name

  • Resource type

  • User name

Lookup supports the following attributes for Insights events:

  • Event ID

  • Event name

  • Event source

All attributes are optional. The default number of results returned is 50, with a maximum of 50 possible. The response includes a token that you can use to get the next page of results.

The rate of lookup requests is limited to two per second, per account, per region. If this limit is exceeded, a throttling error occurs.

", "idempotent":true }, "PutEventSelectors":{ @@ -419,6 +419,39 @@ }, "documentation":"

Returns the objects or data listed below if successful. Otherwise, returns an error.

" }, + "AdvancedEventSelector":{ + "type":"structure", + "required":[ + "Name", + "FieldSelectors" + ], + "members":{ + "Name":{"shape":"SelectorName"}, + "FieldSelectors":{"shape":"AdvancedFieldSelectors"} + } + }, + "AdvancedEventSelectors":{ + "type":"list", + "member":{"shape":"AdvancedEventSelector"} + }, + "AdvancedFieldSelector":{ + "type":"structure", + "required":["Field"], + "members":{ + "Field":{"shape":"SelectorField"}, + "Equals":{"shape":"Operator"}, + "StartsWith":{"shape":"Operator"}, + "EndsWith":{"shape":"Operator"}, + "NotEquals":{"shape":"Operator"}, + "NotStartsWith":{"shape":"Operator"}, + "NotEndsWith":{"shape":"Operator"} + } + }, + "AdvancedFieldSelectors":{ + "type":"list", + "member":{"shape":"AdvancedFieldSelector"}, + "min":1 + }, "Boolean":{"type":"boolean"}, "ByteBuffer":{"type":"blob"}, "CloudTrailARNInvalidException":{ @@ -675,7 +708,7 @@ }, "IncludeManagementEvents":{ "shape":"Boolean", - "documentation":"

Specify if you want your event selector to include management events for your trail.

For more information, see Management Events in the AWS CloudTrail User Guide.

By default, the value is true.

" + "documentation":"

Specify if you want your event selector to include management events for your trail.

For more information, see Management Events in the AWS CloudTrail User Guide.

By default, the value is true.

The first copy of management events is free. You are charged for additional copies of management events that you are logging on any subsequent trail in the same region. For more information about CloudTrail pricing, see AWS CloudTrail Pricing.

" }, "DataResources":{ "shape":"DataResources", @@ -720,7 +753,8 @@ "EventSelectors":{ "shape":"EventSelectors", "documentation":"

The event selectors that are configured for the trail.

" - } + }, + "AdvancedEventSelectors":{"shape":"AdvancedEventSelectors"} } }, "GetInsightSelectorsRequest":{ @@ -1045,7 +1079,7 @@ "type":"structure", "members":{ }, - "documentation":"

This exception is thrown when the KMS key does not exist, or when the S3 bucket and the KMS key are not in the same region.

", + "documentation":"

This exception is thrown when the KMS key does not exist, when the S3 bucket and the KMS key are not in the same region, or when the KMS key associated with the SNS topic either does not exist or is not in the same region.

", "exception":true }, "ListPublicKeysRequest":{ @@ -1237,6 +1271,17 @@ "documentation":"

This exception is thrown when the requested operation is not permitted.

", "exception":true }, + "Operator":{ + "type":"list", + "member":{"shape":"OperatorValue"}, + "min":1 + }, + "OperatorValue":{ + "type":"string", + "max":2048, + "min":1, + "pattern":".+" + }, "OrganizationNotInAllFeaturesModeException":{ "type":"structure", "members":{ @@ -1279,10 +1324,7 @@ }, "PutEventSelectorsRequest":{ "type":"structure", - "required":[ - "TrailName", - "EventSelectors" - ], + "required":["TrailName"], "members":{ "TrailName":{ "shape":"String", @@ -1291,7 +1333,8 @@ "EventSelectors":{ "shape":"EventSelectors", "documentation":"

Specifies the settings for your event selectors. You can configure up to five event selectors for a trail.

" - } + }, + "AdvancedEventSelectors":{"shape":"AdvancedEventSelectors"} } }, "PutEventSelectorsResponse":{ @@ -1304,7 +1347,8 @@ "EventSelectors":{ "shape":"EventSelectors", "documentation":"

Specifies the event selectors configured for your trail.

" - } + }, + "AdvancedEventSelectors":{"shape":"AdvancedEventSelectors"} } }, "PutInsightSelectorsRequest":{ @@ -1428,6 +1472,18 @@ "documentation":"

This exception is thrown when the specified S3 bucket does not exist.

", "exception":true }, + "SelectorField":{ + "type":"string", + "max":1000, + "min":1, + "pattern":"[\\w|\\d|\\.|_]+" + }, + "SelectorName":{ + "type":"string", + "max":1000, + "min":1, + "pattern":".+" + }, "StartLoggingRequest":{ "type":"structure", "required":["Name"], From 2a46ab726540554b617323a4212fbbaf3da19cef Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 24 Nov 2020 19:09:29 +0000 Subject: [PATCH 281/339] Amazon FSx Update: This release adds the capability to increase storage capacity of Amazon FSx for Lustre file systems, providing the flexibility to meet evolving storage needs over time. --- .../feature-AmazonFSx-a912970.json | 6 ++++ .../codegen-resources/service-2.json | 29 ++++++++++--------- 2 files changed, 21 insertions(+), 14 deletions(-) create mode 100644 .changes/next-release/feature-AmazonFSx-a912970.json diff --git a/.changes/next-release/feature-AmazonFSx-a912970.json b/.changes/next-release/feature-AmazonFSx-a912970.json new file mode 100644 index 000000000000..fd742416e961 --- /dev/null +++ b/.changes/next-release/feature-AmazonFSx-a912970.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon FSx", + "contributor": "", + "description": "This release adds the capability to increase storage capacity of Amazon FSx for Lustre file systems, providing the flexibility to meet evolving storage needs over time." +} diff --git a/services/fsx/src/main/resources/codegen-resources/service-2.json b/services/fsx/src/main/resources/codegen-resources/service-2.json index fdb7d01cc1bb..60635b816a82 100644 --- a/services/fsx/src/main/resources/codegen-resources/service-2.json +++ b/services/fsx/src/main/resources/codegen-resources/service-2.json @@ -63,7 +63,7 @@ {"shape":"ServiceLimitExceeded"}, {"shape":"InternalServerError"} ], - "documentation":"

Creates a backup of an existing Amazon FSx file system. Creating regular backups for your file system is a best practice, enabling you to restore a file system from a backup if an issue arises with the original file system.

For Amazon FSx for Lustre file systems, you can create a backup only for file systems with the following configuration:

  • a Persistent deployment type

  • is not linked to a data respository.

For more information about backing up Amazon FSx for Lustre file systems, see Working with FSx for Lustre backups.

For more information about backing up Amazon FSx for Lustre file systems, see Working with FSx for Windows backups.

If a backup with the specified client request token exists, and the parameters match, this operation returns the description of the existing backup. If a backup specified client request token exists, and the parameters don't match, this operation returns IncompatibleParameterError. If a backup with the specified client request token doesn't exist, CreateBackup does the following:

  • Creates a new Amazon FSx backup with an assigned ID, and an initial lifecycle state of CREATING.

  • Returns the description of the backup.

By using the idempotent operation, you can retry a CreateBackup operation without the risk of creating an extra backup. This approach can be useful when an initial call fails in a way that makes it unclear whether a backup was created. If you use the same client request token and the initial call created a backup, the operation returns a successful result because all the parameters are the same.

The CreateBackup operation returns while the backup's lifecycle state is still CREATING. You can check the backup creation status by calling the DescribeBackups operation, which returns the backup state along with other information.

", + "documentation":"

Creates a backup of an existing Amazon FSx file system. Creating regular backups for your file system is a best practice, enabling you to restore a file system from a backup if an issue arises with the original file system.

For Amazon FSx for Lustre file systems, you can create a backup only for file systems with the following configuration:

  • a Persistent deployment type

  • is not linked to a data respository.

For more information about backing up Amazon FSx for Lustre file systems, see Working with FSx for Lustre backups.

For more information about backing up Amazon FSx for Windows file systems, see Working with FSx for Windows backups.

If a backup with the specified client request token exists, and the parameters match, this operation returns the description of the existing backup. If a backup specified client request token exists, and the parameters don't match, this operation returns IncompatibleParameterError. If a backup with the specified client request token doesn't exist, CreateBackup does the following:

  • Creates a new Amazon FSx backup with an assigned ID, and an initial lifecycle state of CREATING.

  • Returns the description of the backup.

By using the idempotent operation, you can retry a CreateBackup operation without the risk of creating an extra backup. This approach can be useful when an initial call fails in a way that makes it unclear whether a backup was created. If you use the same client request token and the initial call created a backup, the operation returns a successful result because all the parameters are the same.

The CreateBackup operation returns while the backup's lifecycle state is still CREATING. You can check the backup creation status by calling the DescribeBackups operation, which returns the backup state along with other information.

", "idempotent":true }, "CreateDataRepositoryTask":{ @@ -83,7 +83,7 @@ {"shape":"InternalServerError"}, {"shape":"DataRepositoryTaskExecuting"} ], - "documentation":"

Creates an Amazon FSx for Lustre data repository task. You use data repository tasks to perform bulk operations between your Amazon FSx file system and its linked data repository. An example of a data repository task is exporting any data and metadata changes, including POSIX metadata, to files, directories, and symbolic links (symlinks) from your FSx file system to its linked data repository. A CreateDataRepositoryTask operation will fail if a data repository is not linked to the FSx file system. To learn more about data repository tasks, see Using Data Repository Tasks. To learn more about linking a data repository to your file system, see Setting the Export Prefix.

", + "documentation":"

Creates an Amazon FSx for Lustre data repository task. You use data repository tasks to perform bulk operations between your Amazon FSx file system and its linked data repository. An example of a data repository task is exporting any data and metadata changes, including POSIX metadata, to files, directories, and symbolic links (symlinks) from your FSx file system to its linked data repository. A CreateDataRepositoryTask operation will fail if a data repository is not linked to the FSx file system. To learn more about data repository tasks, see Data Repository Tasks. To learn more about linking a data repository to your file system, see Linking your file system to an S3 bucket.

", "idempotent":true }, "CreateFileSystem":{ @@ -313,7 +313,7 @@ {"shape":"MissingFileSystemConfiguration"}, {"shape":"ServiceLimitExceeded"} ], - "documentation":"

Use this operation to update the configuration of an existing Amazon FSx file system. You can update multiple properties in a single request.

For Amazon FSx for Windows File Server file systems, you can update the following properties:

  • AutomaticBackupRetentionDays

  • DailyAutomaticBackupStartTime

  • SelfManagedActiveDirectoryConfiguration

  • StorageCapacity

  • ThroughputCapacity

  • WeeklyMaintenanceStartTime

For Amazon FSx for Lustre file systems, you can update the following properties:

  • AutoImportPolicy

  • AutomaticBackupRetentionDays

  • DailyAutomaticBackupStartTime

  • WeeklyMaintenanceStartTime

" + "documentation":"

Use this operation to update the configuration of an existing Amazon FSx file system. You can update multiple properties in a single request.

For Amazon FSx for Windows File Server file systems, you can update the following properties:

  • AutomaticBackupRetentionDays

  • DailyAutomaticBackupStartTime

  • SelfManagedActiveDirectoryConfiguration

  • StorageCapacity

  • ThroughputCapacity

  • WeeklyMaintenanceStartTime

For Amazon FSx for Lustre file systems, you can update the following properties:

  • AutoImportPolicy

  • AutomaticBackupRetentionDays

  • DailyAutomaticBackupStartTime

  • StorageCapacity

  • WeeklyMaintenanceStartTime

" } }, "shapes":{ @@ -385,7 +385,7 @@ }, "Status":{ "shape":"Status", - "documentation":"

Describes the status of the administrative action, as follows:

  • FAILED - Amazon FSx failed to process the administrative action successfully.

  • IN_PROGRESS - Amazon FSx is processing the administrative action.

  • PENDING - Amazon FSx is waiting to process the administrative action.

  • COMPLETED - Amazon FSx has finished processing the administrative task.

  • UPDATED_OPTIMIZING - For a storage capacity increase update, Amazon FSx has updated the file system with the new storage capacity, and is now performing the storage optimization process. For more information, see Managing Storage Capacity.

" + "documentation":"

Describes the status of the administrative action, as follows:

  • FAILED - Amazon FSx failed to process the administrative action successfully.

  • IN_PROGRESS - Amazon FSx is processing the administrative action.

  • PENDING - Amazon FSx is waiting to process the administrative action.

  • COMPLETED - Amazon FSx has finished processing the administrative task.

  • UPDATED_OPTIMIZING - For a storage capacity increase update, Amazon FSx has updated the file system with the new storage capacity, and is now performing the storage optimization process. For more information, see Managing storage capacity in the Amazon FSx for Windows File Server User Guide and Managing storage and throughput capacity in the Amazon FSx for Lustre User Guide.

" }, "TargetFileSystemValues":{ "shape":"FileSystem", @@ -393,7 +393,7 @@ }, "FailureDetails":{"shape":"AdministrativeActionFailureDetails"} }, - "documentation":"

Describes a specific Amazon FSx Administrative Action for the current Windows file system.

" + "documentation":"

Describes a specific Amazon FSx administrative action for the current Windows or Lustre file system.

" }, "AdministrativeActionFailureDetails":{ "type":"structure", @@ -407,7 +407,7 @@ }, "AdministrativeActionType":{ "type":"string", - "documentation":"

Describes the type of administrative action, as follows:

  • FILE_SYSTEM_UPDATE - A file system update administrative action initiated by the user from the Amazon FSx console, API (UpdateFileSystem), or CLI (update-file-system).

  • STORAGE_OPTIMIZATION - Once the FILE_SYSTEM_UPDATE task to increase a file system's storage capacity completes successfully, a STORAGE_OPTIMIZATION task starts. Storage optimization is the process of migrating the file system data to the new, larger disks. You can track the storage migration progress using the ProgressPercent property. When STORAGE_OPTIMIZATION completes successfully, the parent FILE_SYSTEM_UPDATE action status changes to COMPLETED. For more information, see Managing Storage Capacity.

  • FILE_SYSTEM_ALIAS_ASSOCIATION - A file system update to associate a new DNS alias with the file system. For more information, see .

  • FILE_SYSTEM_ALIAS_DISASSOCIATION - A file system update to disassociate a DNS alias from the file system. For more information, see .

", + "documentation":"

Describes the type of administrative action, as follows:

  • FILE_SYSTEM_UPDATE - A file system update administrative action initiated by the user from the Amazon FSx console, API (UpdateFileSystem), or CLI (update-file-system).

  • STORAGE_OPTIMIZATION - Once the FILE_SYSTEM_UPDATE task to increase a file system's storage capacity completes successfully, a STORAGE_OPTIMIZATION task starts.

    • For Windows, storage optimization is the process of migrating the file system data to the new, larger disks.

    • For Lustre, storage optimization consists of rebalancing the data across the existing and newly added file servers.

    You can track the storage optimization progress using the ProgressPercent property. When STORAGE_OPTIMIZATION completes successfully, the parent FILE_SYSTEM_UPDATE action status changes to COMPLETED. For more information, see Managing storage capacity in the Amazon FSx for Windows File Server User Guide and Managing storage and throughput capacity in the Amazon FSx for Lustre User Guide.

  • FILE_SYSTEM_ALIAS_ASSOCIATION - A file system update to associate a new DNS alias with the file system. For more information, see .

  • FILE_SYSTEM_ALIAS_DISASSOCIATION - A file system update to disassociate a DNS alias from the file system. For more information, see .

", "enum":[ "FILE_SYSTEM_UPDATE", "STORAGE_OPTIMIZATION", @@ -447,7 +447,7 @@ "Aliases":{ "type":"list", "member":{"shape":"Alias"}, - "documentation":"

An array of one or more DNS aliases that are currently associated with the Amazon FSx file system. Aliases allow you to use existing DNS names to access the data in your Amazon FSx file system. You can associate up to 50 aliases with a file system at any time. You can associate additional DNS aliases after you create the file system using the AssociateFileSystemAliases operation. You can remove DNS aliases from the file system after it is created using the DisassociateFileSystemAliases operation. You only need to specify the alias name in the request payload. For more information, see DNS aliases.

", + "documentation":"

An array of one or more DNS aliases that are currently associated with the Amazon FSx file system. Aliases allow you to use existing DNS names to access the data in your Amazon FSx file system. You can associate up to 50 aliases with a file system at any time. You can associate additional DNS aliases after you create the file system using the AssociateFileSystemAliases operation. You can remove DNS aliases from the file system after it is created using the DisassociateFileSystemAliases operation. You only need to specify the alias name in the request payload. For more information, see DNS aliases.

", "max":50 }, "AlternateDNSName":{ @@ -529,7 +529,7 @@ }, "Lifecycle":{ "shape":"BackupLifecycle", - "documentation":"

The lifecycle status of the backup.

  • AVAILABLE - The backup is fully available.

  • CREATING - FSx is creating the backup.

  • TRANSFERRING - For Lustre file systems only; FSx is transferring the backup to S3.

  • DELETED - The backup was deleted is no longer available.

  • FAILED - Amazon FSx could not complete the backup.

" + "documentation":"

The lifecycle status of the backup.

  • AVAILABLE - The backup is fully available.

  • PENDING - For user-initiated backups on Lustre file systems only; Amazon FSx has not started creating the backup.

  • CREATING - Amazon FSx is creating the backup.

  • TRANSFERRING - For user-initiated backups on Lustre file systems only; Amazon FSx is transferring the backup to S3.

  • DELETED - Amazon FSx deleted the backup and it is no longer available.

  • FAILED - Amazon FSx could not complete the backup.

" }, "FailureDetails":{ "shape":"BackupFailureDetails", @@ -565,7 +565,7 @@ "documentation":"

The configuration of the self-managed Microsoft Active Directory (AD) to which the Windows File Server instance is joined.

" } }, - "documentation":"

A backup of an Amazon FSx for file system.

" + "documentation":"

A backup of an Amazon FSx file system. For more information see:

" }, "BackupFailureDetails":{ "type":"structure", @@ -600,13 +600,14 @@ }, "BackupLifecycle":{ "type":"string", - "documentation":"

The lifecycle status of the backup.

  • AVAILABLE - The backup is fully available.

  • CREATING - FSx is creating the new user-intiated backup

  • TRANSFERRING - For user-initiated backups on Lustre file systems only; FSx is backing up the file system.

  • DELETED - The backup was deleted is no longer available.

  • FAILED - Amazon FSx could not complete the backup.

", + "documentation":"

The lifecycle status of the backup.

  • AVAILABLE - The backup is fully available.

  • PENDING - For user-initiated backups on Lustre file systems only; Amazon FSx has not started creating the backup.

  • CREATING - Amazon FSx is creating the new user-intiated backup

  • TRANSFERRING - For user-initiated backups on Lustre file systems only; Amazon FSx is backing up the file system.

  • DELETED - Amazon FSx deleted the backup and it is no longer available.

  • FAILED - Amazon FSx could not complete the backup.

", "enum":[ "AVAILABLE", "CREATING", "TRANSFERRING", "DELETED", - "FAILED" + "FAILED", + "PENDING" ] }, "BackupNotFound":{ @@ -959,7 +960,7 @@ }, "Aliases":{ "shape":"AlternateDNSNames", - "documentation":"

An array of one or more DNS alias names that you want to associate with the Amazon FSx file system. Aliases allow you to use existing DNS names to access the data in your Amazon FSx file system. You can associate up to 50 aliases with a file system at any time. You can associate additional DNS aliases after you create the file system using the AssociateFileSystemAliases operation. You can remove DNS aliases from the file system after it is created using the DisassociateFileSystemAliases operation. You only need to specify the alias name in the request payload.

For more information, see Working with DNS Aliases and Walkthrough 5: Using DNS aliases to access your file system, including additional steps you must take to be able to access your file system using a DNS alias.

An alias name has to meet the following requirements:

  • Formatted as a fully-qualified domain name (FQDN), hostname.domain, for example, accounting.example.com.

  • Can contain alphanumeric characters and the hyphen (-).

  • Cannot start or end with a hyphen.

  • Can start with a numeric.

For DNS alias names, Amazon FSx stores alphabetic characters as lowercase letters (a-z), regardless of how you specify them: as uppercase letters, lowercase letters, or the corresponding letters in escape codes.

" + "documentation":"

An array of one or more DNS alias names that you want to associate with the Amazon FSx file system. Aliases allow you to use existing DNS names to access the data in your Amazon FSx file system. You can associate up to 50 aliases with a file system at any time. You can associate additional DNS aliases after you create the file system using the AssociateFileSystemAliases operation. You can remove DNS aliases from the file system after it is created using the DisassociateFileSystemAliases operation. You only need to specify the alias name in the request payload.

For more information, see Working with DNS Aliases and Walkthrough 5: Using DNS aliases to access your file system, including additional steps you must take to be able to access your file system using a DNS alias.

An alias name has to meet the following requirements:

  • Formatted as a fully-qualified domain name (FQDN), hostname.domain, for example, accounting.example.com.

  • Can contain alphanumeric characters and the hyphen (-).

  • Cannot start or end with a hyphen.

  • Can start with a numeric.

For DNS alias names, Amazon FSx stores alphabetic characters as lowercase letters (a-z), regardless of how you specify them: as uppercase letters, lowercase letters, or the corresponding letters in escape codes.

" } }, "documentation":"

The configuration object for the Microsoft Windows file system used in CreateFileSystem and CreateFileSystemFromBackup operations.

" @@ -1545,7 +1546,7 @@ "FailureDetails":{"shape":"FileSystemFailureDetails"}, "StorageCapacity":{ "shape":"StorageCapacity", - "documentation":"

The storage capacity of the file system in gigabytes (GB).

" + "documentation":"

The storage capacity of the file system in gibibytes (GiB).

" }, "StorageType":{ "shape":"StorageType", @@ -2283,7 +2284,7 @@ }, "StorageCapacity":{ "shape":"StorageCapacity", - "documentation":"

Use this parameter to increase the storage capacity of an Amazon FSx for Windows File Server file system. Specifies the storage capacity target value, GiB, for the file system you're updating. The storage capacity target value must be at least 10 percent (%) greater than the current storage capacity value. In order to increase storage capacity, the file system needs to have at least 16 MB/s of throughput capacity. You cannot make a storage capacity increase request if there is an existing storage capacity increase request in progress. For more information, see Managing Storage Capacity.

" + "documentation":"

Use this parameter to increase the storage capacity of an Amazon FSx file system. Specifies the storage capacity target value, GiB, to increase the storage capacity for the file system that you're updating. You cannot make a storage capacity increase request if there is an existing storage capacity increase request in progress.

For Windows file systems, the storage capacity target value must be at least 10 percent (%) greater than the current storage capacity value. In order to increase storage capacity, the file system must have at least 16 MB/s of throughput capacity.

For Lustre file systems, the storage capacity target value can be the following:

  • For SCRATCH_2 and PERSISTENT_1 SSD deployment types, valid values are in multiples of 2400 GiB. The value must be greater than the current storage capacity.

  • For PERSISTENT HDD file systems, valid values are multiples of 6000 GiB for 12 MB/s/TiB file systems and multiples of 1800 GiB for 40 MB/s/TiB file systems. The values must be greater than the current storage capacity.

  • For SCRATCH_1 file systems, you cannot increase the storage capacity.

For more information, see Managing storage capacity in the Amazon FSx for Windows File Server User Guide and Managing storage and throughput capacity in the Amazon FSx for Lustre User Guide.

" }, "WindowsConfiguration":{ "shape":"UpdateFileSystemWindowsConfiguration", From abfdcb6630b62e8adfc7ecb77e2d6115e8655167 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 24 Nov 2020 19:09:30 +0000 Subject: [PATCH 282/339] AWS Elastic Beanstalk Update: Updates the Integer constraint of DescribeEnvironmentManagedActionHistory's MaxItems parameter to [1, 100]. --- .../next-release/feature-AWSElasticBeanstalk-1fe8b2a.json | 6 ++++++ .../src/main/resources/codegen-resources/service-2.json | 7 ++++++- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AWSElasticBeanstalk-1fe8b2a.json diff --git a/.changes/next-release/feature-AWSElasticBeanstalk-1fe8b2a.json b/.changes/next-release/feature-AWSElasticBeanstalk-1fe8b2a.json new file mode 100644 index 000000000000..6a9a1ff5a0b2 --- /dev/null +++ b/.changes/next-release/feature-AWSElasticBeanstalk-1fe8b2a.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Elastic Beanstalk", + "contributor": "", + "description": "Updates the Integer constraint of DescribeEnvironmentManagedActionHistory's MaxItems parameter to [1, 100]." +} diff --git a/services/elasticbeanstalk/src/main/resources/codegen-resources/service-2.json b/services/elasticbeanstalk/src/main/resources/codegen-resources/service-2.json index 6d2fcb8a6b05..f2b2b94f7474 100755 --- a/services/elasticbeanstalk/src/main/resources/codegen-resources/service-2.json +++ b/services/elasticbeanstalk/src/main/resources/codegen-resources/service-2.json @@ -1947,7 +1947,7 @@ "documentation":"

The pagination token returned by a previous request.

" }, "MaxItems":{ - "shape":"Integer", + "shape":"ManagedActionHistoryMaxItems", "documentation":"

The maximum number of items to return for a single request.

" } }, @@ -2973,6 +2973,11 @@ "max":100, "min":1 }, + "ManagedActionHistoryMaxItems":{ + "type":"integer", + "max":100, + "min":1 + }, "ManagedActionInvalidStateException":{ "type":"structure", "members":{ From 37ded4738bb839c0d1f319fb125d6e5933e54974 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 24 Nov 2020 19:09:32 +0000 Subject: [PATCH 283/339] Amazon Comprehend Update: Support Comprehend events detection APIs --- .../feature-AmazonComprehend-f000a74.json | 6 + .../codegen-resources/paginators-1.json | 5 + .../codegen-resources/service-2.json | 284 +++++++++++++++++- 3 files changed, 291 insertions(+), 4 deletions(-) create mode 100644 .changes/next-release/feature-AmazonComprehend-f000a74.json diff --git a/.changes/next-release/feature-AmazonComprehend-f000a74.json b/.changes/next-release/feature-AmazonComprehend-f000a74.json new file mode 100644 index 000000000000..2fe272e289b5 --- /dev/null +++ b/.changes/next-release/feature-AmazonComprehend-f000a74.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Comprehend", + "contributor": "", + "description": "Support Comprehend events detection APIs" +} diff --git a/services/comprehend/src/main/resources/codegen-resources/paginators-1.json b/services/comprehend/src/main/resources/codegen-resources/paginators-1.json index 0a98c5b4e9fd..3c7889ffc025 100644 --- a/services/comprehend/src/main/resources/codegen-resources/paginators-1.json +++ b/services/comprehend/src/main/resources/codegen-resources/paginators-1.json @@ -25,6 +25,11 @@ "output_token": "NextToken", "limit_key": "MaxResults" }, + "ListEventsDetectionJobs": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults" + }, "ListKeyPhrasesDetectionJobs": { "input_token": "NextToken", "output_token": "NextToken", diff --git a/services/comprehend/src/main/resources/codegen-resources/service-2.json b/services/comprehend/src/main/resources/codegen-resources/service-2.json index 63fbd425d313..8b0597aa5117 100644 --- a/services/comprehend/src/main/resources/codegen-resources/service-2.json +++ b/services/comprehend/src/main/resources/codegen-resources/service-2.json @@ -322,6 +322,22 @@ ], "documentation":"

Provides details about an entity recognizer including status, S3 buckets containing training data, recognizer metadata, metrics, and so on.

" }, + "DescribeEventsDetectionJob":{ + "name":"DescribeEventsDetectionJob", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeEventsDetectionJobRequest"}, + "output":{"shape":"DescribeEventsDetectionJobResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"JobNotFoundException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Gets the status and details of an events detection job.

" + }, "DescribeKeyPhrasesDetectionJob":{ "name":"DescribeKeyPhrasesDetectionJob", "http":{ @@ -577,6 +593,22 @@ ], "documentation":"

Gets a list of the properties of all entity recognizers that you created, including recognizers currently in training. Allows you to filter the list of recognizers based on criteria such as status and submission time. This call returns up to 500 entity recognizers in the list, with a default number of 100 recognizers in the list.

The results of this list are not in any particular order. Please get the list and sort locally if needed.

" }, + "ListEventsDetectionJobs":{ + "name":"ListEventsDetectionJobs", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListEventsDetectionJobsRequest"}, + "output":{"shape":"ListEventsDetectionJobsResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"InvalidFilterException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Gets a list of the events detection jobs that you have submitted.

" + }, "ListKeyPhrasesDetectionJobs":{ "name":"ListKeyPhrasesDetectionJobs", "http":{ @@ -708,6 +740,22 @@ ], "documentation":"

Starts an asynchronous entity detection job for a collection of documents. Use the operation to track the status of a job.

This API can be used for either standard entity detection or custom entity recognition. In order to be used for custom entity recognition, the optional EntityRecognizerArn must be used in order to provide access to the recognizer being used to detect the custom entity.

" }, + "StartEventsDetectionJob":{ + "name":"StartEventsDetectionJob", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"StartEventsDetectionJobRequest"}, + "output":{"shape":"StartEventsDetectionJobResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"TooManyRequestsException"}, + {"shape":"KmsKeyValidationException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Starts an asynchronous event detection job for a collection of documents.

" + }, "StartKeyPhrasesDetectionJob":{ "name":"StartKeyPhrasesDetectionJob", "http":{ @@ -802,6 +850,21 @@ ], "documentation":"

Stops an entities detection job in progress.

If the job state is IN_PROGRESS the job is marked for termination and put into the STOP_REQUESTED state. If the job completes before it can be stopped, it is put into the COMPLETED state; otherwise the job is stopped and put into the STOPPED state.

If the job is in the COMPLETED or FAILED state when you call the StopDominantLanguageDetectionJob operation, the operation returns a 400 Internal Request Exception.

When a job is stopped, any documents already processed are written to the output location.

" }, + "StopEventsDetectionJob":{ + "name":"StopEventsDetectionJob", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"StopEventsDetectionJobRequest"}, + "output":{"shape":"StopEventsDetectionJobResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"JobNotFoundException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Stops an events detection job in progress.

" + }, "StopKeyPhrasesDetectionJob":{ "name":"StopKeyPhrasesDetectionJob", "http":{ @@ -1322,7 +1385,7 @@ }, "Labels":{ "shape":"ListOfLabels", - "documentation":"

The labels used the document being analyzed. These are used for multi-label trained models. Individual labels represent different categories that are related in some manner and are not multually exclusive. For example, a movie can be just an action movie, or it can be an action movie, a science fiction movie, and a comedy, all at the same time.

" + "documentation":"

The labels used the document being analyzed. These are used for multi-label trained models. Individual labels represent different categories that are related in some manner and are not mutually exclusive. For example, a movie can be just an action movie, or it can be an action movie, a science fiction movie, and a comedy, all at the same time.

" } }, "sensitive":true @@ -1689,6 +1752,25 @@ } } }, + "DescribeEventsDetectionJobRequest":{ + "type":"structure", + "required":["JobId"], + "members":{ + "JobId":{ + "shape":"JobId", + "documentation":"

The identifier of the events detection job.

" + } + } + }, + "DescribeEventsDetectionJobResponse":{ + "type":"structure", + "members":{ + "EventsDetectionJobProperties":{ + "shape":"EventsDetectionJobProperties", + "documentation":"

An object that contains the properties associated with an event detection job.

" + } + } + }, "DescribeKeyPhrasesDetectionJobRequest":{ "type":"structure", "required":["JobId"], @@ -2292,7 +2374,7 @@ "documentation":"

Specifies a date after which the returned endpoint or endpoints were created.

" } }, - "documentation":"

The filter used to determine which endpoints are are returned. You can filter jobs on their name, model, status, or the date and time that they were created. You can only set one filter at a time.

" + "documentation":"

The filter used to determine which endpoints are returned. You can filter jobs on their name, model, status, or the date and time that they were created. You can only set one filter at a time.

" }, "EndpointProperties":{ "type":"structure", @@ -2716,7 +2798,7 @@ }, "F1Score":{ "shape":"Double", - "documentation":"

A measure of how accurate the recognizer results are for for a specific entity type in the test data. It is derived from the Precision and Recall values. The F1Score is the harmonic average of the two scores. The highest score is 1, and the worst score is 0.

" + "documentation":"

A measure of how accurate the recognizer results are for a specific entity type in the test data. It is derived from the Precision and Recall values. The F1Score is the harmonic average of the two scores. The highest score is 1, and the worst score is 0.

" } }, "documentation":"

Detailed information about the accuracy of an entity recognizer for a specific entity type.

" @@ -2736,6 +2818,88 @@ }, "documentation":"

An entity type within a labeled training dataset that Amazon Comprehend uses to train a custom entity recognizer.

" }, + "EventTypeString":{ + "type":"string", + "max":40, + "min":1, + "pattern":"[A-Z_]*" + }, + "EventsDetectionJobFilter":{ + "type":"structure", + "members":{ + "JobName":{ + "shape":"JobName", + "documentation":"

Filters on the name of the events detection job.

" + }, + "JobStatus":{ + "shape":"JobStatus", + "documentation":"

Filters the list of jobs based on job status. Returns only jobs with the specified status.

" + }, + "SubmitTimeBefore":{ + "shape":"Timestamp", + "documentation":"

Filters the list of jobs based on the time that the job was submitted for processing. Returns only jobs submitted before the specified time. Jobs are returned in ascending order, oldest to newest.

" + }, + "SubmitTimeAfter":{ + "shape":"Timestamp", + "documentation":"

Filters the list of jobs based on the time that the job was submitted for processing. Returns only jobs submitted after the specified time. Jobs are returned in descending order, newest to oldest.

" + } + }, + "documentation":"

Provides information for filtering a list of event detection jobs.

" + }, + "EventsDetectionJobProperties":{ + "type":"structure", + "members":{ + "JobId":{ + "shape":"JobId", + "documentation":"

The identifier assigned to the events detection job.

" + }, + "JobName":{ + "shape":"JobName", + "documentation":"

The name you assigned the events detection job.

" + }, + "JobStatus":{ + "shape":"JobStatus", + "documentation":"

The current status of the events detection job.

" + }, + "Message":{ + "shape":"AnyLengthString", + "documentation":"

A description of the status of the events detection job.

" + }, + "SubmitTime":{ + "shape":"Timestamp", + "documentation":"

The time that the events detection job was submitted for processing.

" + }, + "EndTime":{ + "shape":"Timestamp", + "documentation":"

The time that the events detection job completed.

" + }, + "InputDataConfig":{ + "shape":"InputDataConfig", + "documentation":"

The input data configuration that you supplied when you created the events detection job.

" + }, + "OutputDataConfig":{ + "shape":"OutputDataConfig", + "documentation":"

The output data configuration that you supplied when you created the events detection job.

" + }, + "LanguageCode":{ + "shape":"LanguageCode", + "documentation":"

The language code of the input documents.

" + }, + "DataAccessRoleArn":{ + "shape":"IamRoleArn", + "documentation":"

The Amazon Resource Name (ARN) of the AWS Identify and Access Management (IAM) role that grants Amazon Comprehend read access to your input data.

" + }, + "TargetEventTypes":{ + "shape":"TargetEventTypes", + "documentation":"

The types of events that are detected by the job.

" + } + }, + "documentation":"

Provides information about an events detection job.

" + }, + "EventsDetectionJobPropertiesList":{ + "type":"list", + "member":{"shape":"EventsDetectionJobProperties"} + }, "Float":{"type":"float"}, "IamRoleArn":{ "type":"string", @@ -3143,6 +3307,36 @@ } } }, + "ListEventsDetectionJobsRequest":{ + "type":"structure", + "members":{ + "Filter":{ + "shape":"EventsDetectionJobFilter", + "documentation":"

Filters the jobs that are returned. You can filter jobs on their name, status, or the date and time that they were submitted. You can only set one filter at a time.

" + }, + "NextToken":{ + "shape":"String", + "documentation":"

Identifies the next page of results to return.

" + }, + "MaxResults":{ + "shape":"MaxResultsInteger", + "documentation":"

The maximum number of results to return in each page.

" + } + } + }, + "ListEventsDetectionJobsResponse":{ + "type":"structure", + "members":{ + "EventsDetectionJobPropertiesList":{ + "shape":"EventsDetectionJobPropertiesList", + "documentation":"

A list containing the properties of each job that is returned.

" + }, + "NextToken":{ + "shape":"String", + "documentation":"

Identifies the next page of results to return.

" + } + } + }, "ListKeyPhrasesDetectionJobsRequest":{ "type":"structure", "members":{ @@ -3925,6 +4119,60 @@ } } }, + "StartEventsDetectionJobRequest":{ + "type":"structure", + "required":[ + "InputDataConfig", + "OutputDataConfig", + "DataAccessRoleArn", + "LanguageCode", + "TargetEventTypes" + ], + "members":{ + "InputDataConfig":{ + "shape":"InputDataConfig", + "documentation":"

Specifies the format and location of the input data for the job.

" + }, + "OutputDataConfig":{ + "shape":"OutputDataConfig", + "documentation":"

Specifies where to send the output files.

" + }, + "DataAccessRoleArn":{ + "shape":"IamRoleArn", + "documentation":"

The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role that grants Amazon Comprehend read access to your input data.

" + }, + "JobName":{ + "shape":"JobName", + "documentation":"

The identifier of the events detection job.

" + }, + "LanguageCode":{ + "shape":"LanguageCode", + "documentation":"

The language code of the input documents.

" + }, + "ClientRequestToken":{ + "shape":"ClientRequestTokenString", + "documentation":"

An unique identifier for the request. If you don't set the client request token, Amazon Comprehend generates one.

", + "idempotencyToken":true + }, + "TargetEventTypes":{ + "shape":"TargetEventTypes", + "documentation":"

The types of events to detect in the input documents.

" + } + } + }, + "StartEventsDetectionJobResponse":{ + "type":"structure", + "members":{ + "JobId":{ + "shape":"JobId", + "documentation":"

An unique identifier for the request. If you don't set the client request token, Amazon Comprehend generates one.

" + }, + "JobStatus":{ + "shape":"JobStatus", + "documentation":"

The status of the events detection job.

" + } + } + }, "StartKeyPhrasesDetectionJobRequest":{ "type":"structure", "required":[ @@ -4199,6 +4447,29 @@ } } }, + "StopEventsDetectionJobRequest":{ + "type":"structure", + "required":["JobId"], + "members":{ + "JobId":{ + "shape":"JobId", + "documentation":"

The identifier of the events detection job to stop.

" + } + } + }, + "StopEventsDetectionJobResponse":{ + "type":"structure", + "members":{ + "JobId":{ + "shape":"JobId", + "documentation":"

The identifier of the events detection job to stop.

" + }, + "JobStatus":{ + "shape":"JobStatus", + "documentation":"

The status of the events detection job.

" + } + } + }, "StopKeyPhrasesDetectionJobRequest":{ "type":"structure", "required":["JobId"], @@ -4406,6 +4677,11 @@ "max":256, "min":0 }, + "TargetEventTypes":{ + "type":"list", + "member":{"shape":"EventTypeString"}, + "min":1 + }, "TextSizeLimitExceededException":{ "type":"structure", "members":{ @@ -4587,7 +4863,7 @@ "documentation":"

The ID for each subnet being used in your private VPC. This subnet is a subset of the a range of IPv4 addresses used by the VPC and is specific to a given availability zone in the VPC’s region. This ID number is preceded by \"subnet-\", for instance: \"subnet-04ccf456919e69055\". For more information, see VPCs and Subnets.

" } }, - "documentation":"

Configuration parameters for an optional private Virtual Private Cloud (VPC) containing the resources you are using for the job. For For more information, see Amazon VPC.

" + "documentation":"

Configuration parameters for an optional private Virtual Private Cloud (VPC) containing the resources you are using for the job. For more information, see Amazon VPC.

" } }, "documentation":"

Amazon Comprehend is an AWS service for gaining insight into the content of documents. Use these actions to determine the topics contained in your documents, the topics they discuss, the predominant sentiment expressed in them, the predominant language used, and more.

" From 0c33d1f0a7ecafc318578f39e8134163e3999204 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 24 Nov 2020 19:09:35 +0000 Subject: [PATCH 284/339] Amazon Appflow Update: Upsolver as a destination connector and documentation update. --- .../feature-AmazonAppflow-633b439.json | 6 ++ .../codegen-resources/service-2.json | 60 ++++++++++++++++++- 2 files changed, 64 insertions(+), 2 deletions(-) create mode 100644 .changes/next-release/feature-AmazonAppflow-633b439.json diff --git a/.changes/next-release/feature-AmazonAppflow-633b439.json b/.changes/next-release/feature-AmazonAppflow-633b439.json new file mode 100644 index 000000000000..061e0a389104 --- /dev/null +++ b/.changes/next-release/feature-AmazonAppflow-633b439.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Appflow", + "contributor": "", + "description": "Upsolver as a destination connector and documentation update." +} diff --git a/services/appflow/src/main/resources/codegen-resources/service-2.json b/services/appflow/src/main/resources/codegen-resources/service-2.json index ece72b1fd765..b1c0d1dd5f7f 100644 --- a/services/appflow/src/main/resources/codegen-resources/service-2.json +++ b/services/appflow/src/main/resources/codegen-resources/service-2.json @@ -639,6 +639,10 @@ "EventBridge":{ "shape":"EventBridgeMetadata", "documentation":"

The connector metadata specific to Amazon EventBridge.

" + }, + "Upsolver":{ + "shape":"UpsolverMetadata", + "documentation":"

The connector metadata specific to Upsolver.

" } }, "documentation":"

A structure to specify connector-specific metadata such as oAuthScopes, supportedRegions, privateLinkServiceUrl, and so on.

" @@ -955,7 +959,8 @@ "Infornexus", "Amplitude", "Veeva", - "EventBridge" + "EventBridge", + "Upsolver" ] }, "ConnectorTypeList":{ @@ -1413,6 +1418,10 @@ "EventBridge":{ "shape":"EventBridgeDestinationProperties", "documentation":"

The properties required to query Amazon EventBridge.

" + }, + "Upsolver":{ + "shape":"UpsolverDestinationProperties", + "documentation":"

The properties required to query Upsolver.

" } }, "documentation":"

This stores the information that is required to query a particular connector.

" @@ -2606,7 +2615,7 @@ "members":{ "scheduleExpression":{ "shape":"ScheduleExpression", - "documentation":"

The scheduling expression that determines when and how often the rule runs.

" + "documentation":"

The scheduling expression that determines the rate at which the schedule will run, for example rate(5minutes).

" }, "dataPullMode":{ "shape":"DataPullMode", @@ -3437,6 +3446,53 @@ "max":256, "pattern":"\\S+" }, + "UpsolverBucketName":{ + "type":"string", + "max":63, + "min":16, + "pattern":"^(upsolver-appflow)\\S*" + }, + "UpsolverDestinationProperties":{ + "type":"structure", + "required":[ + "bucketName", + "s3OutputFormatConfig" + ], + "members":{ + "bucketName":{ + "shape":"UpsolverBucketName", + "documentation":"

The Upsolver Amazon S3 bucket name in which Amazon AppFlow places the transferred data.

" + }, + "bucketPrefix":{ + "shape":"BucketPrefix", + "documentation":"

The object key for the destination Upsolver Amazon S3 bucket in which Amazon AppFlow places the files.

" + }, + "s3OutputFormatConfig":{ + "shape":"UpsolverS3OutputFormatConfig", + "documentation":"

The configuration that determines how data is formatted when Upsolver is used as the flow destination.

" + } + }, + "documentation":"

The properties that are applied when Upsolver is used as a destination.

" + }, + "UpsolverMetadata":{ + "type":"structure", + "members":{ + }, + "documentation":"

The connector metadata specific to Upsolver.

" + }, + "UpsolverS3OutputFormatConfig":{ + "type":"structure", + "required":["prefixConfig"], + "members":{ + "fileType":{ + "shape":"FileType", + "documentation":"

Indicates the file type that Amazon AppFlow places in the Upsolver Amazon S3 bucket.

" + }, + "prefixConfig":{"shape":"PrefixConfig"}, + "aggregationConfig":{"shape":"AggregationConfig"} + }, + "documentation":"

The configuration that determines how Amazon AppFlow formats the flow output data when Upsolver is used as the destination.

" + }, "Username":{ "type":"string", "max":512, From affe73349b95ba1b787e6fc522031d552b45edad Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 24 Nov 2020 19:09:37 +0000 Subject: [PATCH 285/339] AWS Batch Update: Add Ec2Configuration in ComputeEnvironment.ComputeResources. Use in CreateComputeEnvironment API to enable AmazonLinux2 support. --- .../feature-AWSBatch-3efb3f9.json | 6 +++ .../codegen-resources/service-2.json | 37 ++++++++++++++++++- 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/feature-AWSBatch-3efb3f9.json diff --git a/.changes/next-release/feature-AWSBatch-3efb3f9.json b/.changes/next-release/feature-AWSBatch-3efb3f9.json new file mode 100644 index 000000000000..809884570f66 --- /dev/null +++ b/.changes/next-release/feature-AWSBatch-3efb3f9.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Batch", + "contributor": "", + "description": "Add Ec2Configuration in ComputeEnvironment.ComputeResources. Use in CreateComputeEnvironment API to enable AmazonLinux2 support." +} diff --git a/services/batch/src/main/resources/codegen-resources/service-2.json b/services/batch/src/main/resources/codegen-resources/service-2.json index f300782e00d2..82ae85e75095 100644 --- a/services/batch/src/main/resources/codegen-resources/service-2.json +++ b/services/batch/src/main/resources/codegen-resources/service-2.json @@ -576,7 +576,9 @@ }, "imageId":{ "shape":"String", - "documentation":"

The Amazon Machine Image (AMI) ID used for instances launched in the compute environment.

" + "documentation":"

The Amazon Machine Image (AMI) ID used for instances launched in the compute environment. This parameter is overridden by the imageIdOverride member of the Ec2Configuration structure.

", + "deprecated":true, + "deprecatedMessage":"This field is deprecated, use ec2Configuration[].imageIdOverride instead." }, "subnets":{ "shape":"StringList", @@ -613,6 +615,10 @@ "launchTemplate":{ "shape":"LaunchTemplateSpecification", "documentation":"

The launch template to use for your compute resources. Any other compute resource parameters that you specify in a CreateComputeEnvironment API operation override the same parameters in the launch template. You must specify either the launch template ID or launch template name in the request, but not both. For more information, see Launch Template Support in the AWS Batch User Guide.

" + }, + "ec2Configuration":{ + "shape":"Ec2ConfigurationList", + "documentation":"

Provides additional details used to selecting the AMI to use for instances in a compute environment.

" } }, "documentation":"

An object representing an AWS Batch compute resource.

" @@ -1150,6 +1156,25 @@ "type":"list", "member":{"shape":"Device"} }, + "Ec2Configuration":{ + "type":"structure", + "required":["imageType"], + "members":{ + "imageType":{ + "shape":"ImageType", + "documentation":"

The image type to match with the instance type to pick an AMI. If the imageIdOverride parameter is not specified, then a recent Amazon ECS-optimized AMI will be used.

ECS_AL2

Amazon Linux 2− Default for all AWS Graviton-based instance families (for example, C6g, M6g, R6g, and T4g) and can be used for all non-GPU instance types.

ECS_AL2_NVIDIA

Amazon Linux 2 (GPU)−Default for all GPU instance families (for example P4 and G4) and can be used for all non-AWS Graviton-based instance types.

ECS_AL1

Amazon Linux−Default for all non-GPU, non-AWS-Graviton instance families. Amazon Linux is reaching the end-of-life of standard support. For more information, see Amazon Linux AMI.

" + }, + "imageIdOverride":{ + "shape":"ImageIdOverride", + "documentation":"

The AMI ID used for instances launched in the compute environment that match the image type. This setting overrides the imageId set in the computeResource object.

" + } + }, + "documentation":"

Provides information used to select Amazon Machine Images (AMIs) for instances in the compute environment. If the Ec2Configuration is not specified, the default is ECS_AL1.

" + }, + "Ec2ConfigurationList":{ + "type":"list", + "member":{"shape":"Ec2Configuration"} + }, "EnvironmentVariables":{ "type":"list", "member":{"shape":"KeyValuePair"} @@ -1191,6 +1216,16 @@ }, "documentation":"

Determine whether your data volume persists on the host container instance and where it is stored. If this parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.

" }, + "ImageIdOverride":{ + "type":"string", + "max":256, + "min":1 + }, + "ImageType":{ + "type":"string", + "max":256, + "min":1 + }, "Integer":{"type":"integer"}, "JQState":{ "type":"string", From b2cd2b15bf3795792cb595f9e1f9681bad88ecc6 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 24 Nov 2020 19:09:35 +0000 Subject: [PATCH 286/339] Amazon Cognito Identity Provider Update: This release adds ability to configure Cognito User Pools with third party sms and email providers for sending notifications to users. --- ...AmazonCognitoIdentityProvider-b8b5858.json | 6 ++ .../codegen-resources/service-2.json | 88 +++++++++++++++---- 2 files changed, 78 insertions(+), 16 deletions(-) create mode 100644 .changes/next-release/feature-AmazonCognitoIdentityProvider-b8b5858.json diff --git a/.changes/next-release/feature-AmazonCognitoIdentityProvider-b8b5858.json b/.changes/next-release/feature-AmazonCognitoIdentityProvider-b8b5858.json new file mode 100644 index 000000000000..9c98c9784485 --- /dev/null +++ b/.changes/next-release/feature-AmazonCognitoIdentityProvider-b8b5858.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Cognito Identity Provider", + "contributor": "", + "description": "This release adds ability to configure Cognito User Pools with third party sms and email providers for sending notifications to users." +} diff --git a/services/cognitoidentityprovider/src/main/resources/codegen-resources/service-2.json b/services/cognitoidentityprovider/src/main/resources/codegen-resources/service-2.json index f2ac09aaea18..dd56c8251fcd 100755 --- a/services/cognitoidentityprovider/src/main/resources/codegen-resources/service-2.json +++ b/services/cognitoidentityprovider/src/main/resources/codegen-resources/service-2.json @@ -1618,7 +1618,7 @@ {"shape":"UserNotConfirmedException"}, {"shape":"InternalErrorException"} ], - "documentation":"

Set the user's multi-factor authentication (MFA) method preference, including which MFA factors are enabled and if any are preferred. Only one factor can be set as preferred. The preferred MFA factor will be used to authenticate a user if multiple factors are enabled. If multiple options are enabled and no preference is set, a challenge to choose an MFA option will be returned during sign in.

" + "documentation":"

Set the user's multi-factor authentication (MFA) method preference, including which MFA factors are enabled and if any are preferred. Only one factor can be set as preferred. The preferred MFA factor will be used to authenticate a user if multiple factors are enabled. If multiple options are enabled and no preference is set, a challenge to choose an MFA option will be returned during sign in. If an MFA type is enabled for a user, the user will be prompted for MFA during all sign in attempts, unless device tracking is turned on and the device has been trusted. If you would like MFA to be applied selectively based on the assessed risk level of sign in attempts, disable MFA for users and turn on Adaptive Authentication for the user pool.

" }, "SetUserPoolMfaConfig":{ "name":"SetUserPoolMfaConfig", @@ -3941,11 +3941,11 @@ }, "EmailVerificationMessage":{ "shape":"EmailVerificationMessageType", - "documentation":"

A string representing the email verification message.

" + "documentation":"

A string representing the email verification message. EmailVerificationMessage is allowed only if EmailSendingAccount is DEVELOPER.

" }, "EmailVerificationSubject":{ "shape":"EmailVerificationSubjectType", - "documentation":"

A string representing the email verification subject.

" + "documentation":"

A string representing the email verification subject. EmailVerificationSubject is allowed only if EmailSendingAccount is DEVELOPER.

" }, "VerificationMessageTemplate":{ "shape":"VerificationMessageTemplateType", @@ -4031,6 +4031,50 @@ }, "documentation":"

The configuration for a custom domain that hosts the sign-up and sign-in webpages for your application.

" }, + "CustomEmailLambdaVersionConfigType":{ + "type":"structure", + "required":[ + "LambdaVersion", + "LambdaArn" + ], + "members":{ + "LambdaVersion":{ + "shape":"CustomEmailSenderLambdaVersionType", + "documentation":"

The Lambda version represents the signature of the \"request\" attribute in the \"event\" information Amazon Cognito passes to your custom email Lambda function. The only supported value is V1_0.

" + }, + "LambdaArn":{ + "shape":"ArnType", + "documentation":"

The Lambda Amazon Resource Name of the Lambda function that Amazon Cognito triggers to send email notifications to users.

" + } + }, + "documentation":"

A custom email sender Lambda configuration type.

" + }, + "CustomEmailSenderLambdaVersionType":{ + "type":"string", + "enum":["V1_0"] + }, + "CustomSMSLambdaVersionConfigType":{ + "type":"structure", + "required":[ + "LambdaVersion", + "LambdaArn" + ], + "members":{ + "LambdaVersion":{ + "shape":"CustomSMSSenderLambdaVersionType", + "documentation":"

The Lambda version represents the signature of the \"request\" attribute in the \"event\" information Amazon Cognito passes to your custom SMS Lambda function. The only supported value is V1_0.

" + }, + "LambdaArn":{ + "shape":"ArnType", + "documentation":"

The Lambda Amazon Resource Name of the Lambda function that Amazon Cognito triggers to send SMS notifications to users.

" + } + }, + "documentation":"

A custom SMS sender Lambda configuration type.

" + }, + "CustomSMSSenderLambdaVersionType":{ + "type":"string", + "enum":["V1_0"] + }, "DateType":{"type":"timestamp"}, "DefaultEmailOptionType":{ "type":"string", @@ -4525,7 +4569,7 @@ }, "EmailSendingAccount":{ "shape":"EmailSendingAccountType", - "documentation":"

Specifies whether Amazon Cognito emails your users by using its built-in email functionality or your Amazon SES email configuration. Specify one of the following values:

COGNITO_DEFAULT

When Amazon Cognito emails your users, it uses its built-in email functionality. When you use the default option, Amazon Cognito allows only a limited number of emails each day for your user pool. For typical production environments, the default email limit is below the required delivery volume. To achieve a higher delivery volume, specify DEVELOPER to use your Amazon SES email configuration.

To look up the email delivery limit for the default option, see Limits in Amazon Cognito in the Amazon Cognito Developer Guide.

The default FROM address is no-reply@verificationemail.com. To customize the FROM address, provide the ARN of an Amazon SES verified email address for the SourceArn parameter.

DEVELOPER

When Amazon Cognito emails your users, it uses your Amazon SES configuration. Amazon Cognito calls Amazon SES on your behalf to send email from your verified email address. When you use this option, the email delivery limits are the same limits that apply to your Amazon SES verified email address in your AWS account.

If you use this option, you must provide the ARN of an Amazon SES verified email address for the SourceArn parameter.

Before Amazon Cognito can email your users, it requires additional permissions to call Amazon SES on your behalf. When you update your user pool with this option, Amazon Cognito creates a service-linked role, which is a type of IAM role, in your AWS account. This role contains the permissions that allow Amazon Cognito to access Amazon SES and send email messages with your address. For more information about the service-linked role that Amazon Cognito creates, see Using Service-Linked Roles for Amazon Cognito in the Amazon Cognito Developer Guide.

" + "documentation":"

Specifies whether Amazon Cognito emails your users by using its built-in email functionality or your Amazon SES email configuration. Specify one of the following values:

COGNITO_DEFAULT

When Amazon Cognito emails your users, it uses its built-in email functionality. When you use the default option, Amazon Cognito allows only a limited number of emails each day for your user pool. For typical production environments, the default email limit is below the required delivery volume. To achieve a higher delivery volume, specify DEVELOPER to use your Amazon SES email configuration.

To look up the email delivery limit for the default option, see Limits in Amazon Cognito in the Amazon Cognito Developer Guide.

The default FROM address is no-reply@verificationemail.com. To customize the FROM address, provide the ARN of an Amazon SES verified email address for the SourceArn parameter.

If EmailSendingAccount is COGNITO_DEFAULT, the following parameters aren't allowed:

  • EmailVerificationMessage

  • EmailVerificationSubject

  • InviteMessageTemplate.EmailMessage

  • InviteMessageTemplate.EmailSubject

  • VerificationMessageTemplate.EmailMessage

  • VerificationMessageTemplate.EmailMessageByLink

  • VerificationMessageTemplate.EmailSubject,

  • VerificationMessageTemplate.EmailSubjectByLink

DEVELOPER EmailSendingAccount is required.

DEVELOPER

When Amazon Cognito emails your users, it uses your Amazon SES configuration. Amazon Cognito calls Amazon SES on your behalf to send email from your verified email address. When you use this option, the email delivery limits are the same limits that apply to your Amazon SES verified email address in your AWS account.

If you use this option, you must provide the ARN of an Amazon SES verified email address for the SourceArn parameter.

Before Amazon Cognito can email your users, it requires additional permissions to call Amazon SES on your behalf. When you update your user pool with this option, Amazon Cognito creates a service-linked role, which is a type of IAM role, in your AWS account. This role contains the permissions that allow Amazon Cognito to access Amazon SES and send email messages with your address. For more information about the service-linked role that Amazon Cognito creates, see Using Service-Linked Roles for Amazon Cognito in the Amazon Cognito Developer Guide.

" }, "From":{ "shape":"StringType", @@ -4536,7 +4580,7 @@ "documentation":"

The set of configuration rules that can be applied to emails sent using Amazon SES. A configuration set is applied to an email by including a reference to the configuration set in the headers of the email. Once applied, all of the rules in that configuration set are applied to the email. Configuration sets can be used to apply the following types of rules to emails:

  • Event publishing – Amazon SES can track the number of send, delivery, open, click, bounce, and complaint events for each email sent. Use event publishing to send information about these events to other AWS services such as SNS and CloudWatch.

  • IP pool management – When leasing dedicated IP addresses with Amazon SES, you can create groups of IP addresses, called dedicated IP pools. You can then associate the dedicated IP pools with configuration sets.

" } }, - "documentation":"

The email configuration type.

" + "documentation":"

The email configuration type.

Amazon Cognito has specific regions for use with Amazon SES. For more information on the supported regions, see Email Settings for Amazon Cognito User Pools.

" }, "EmailNotificationBodyType":{ "type":"string", @@ -5388,6 +5432,18 @@ "UserMigration":{ "shape":"ArnType", "documentation":"

The user migration Lambda config type.

" + }, + "CustomSMSSender":{ + "shape":"CustomSMSLambdaVersionConfigType", + "documentation":"

A custom SMS sender AWS Lambda trigger.

" + }, + "CustomEmailSender":{ + "shape":"CustomEmailLambdaVersionConfigType", + "documentation":"

A custom email sender AWS Lambda trigger.

" + }, + "KMSKeyID":{ + "shape":"ArnType", + "documentation":"

The Amazon Resource Name of Key Management Service Customer master keys . Amazon Cognito uses the key to encrypt codes and temporary passwords sent to CustomEmailSender and CustomSMSSender.

" } }, "documentation":"

Specifies the configuration for AWS Lambda triggers.

" @@ -5793,11 +5849,11 @@ }, "EmailMessage":{ "shape":"EmailVerificationMessageType", - "documentation":"

The message template for email messages.

" + "documentation":"

The message template for email messages. EmailMessage is allowed only if EmailSendingAccount is DEVELOPER.

" }, "EmailSubject":{ "shape":"EmailVerificationSubjectType", - "documentation":"

The subject line for email messages.

" + "documentation":"

The subject line for email messages. EmailSubject is allowed only if EmailSendingAccount is DEVELOPER.

" } }, "documentation":"

The message template structure.

" @@ -6386,14 +6442,14 @@ "members":{ "Enabled":{ "shape":"BooleanType", - "documentation":"

Specifies whether SMS text message MFA is enabled.

" + "documentation":"

Specifies whether SMS text message MFA is enabled. If an MFA type is enabled for a user, the user will be prompted for MFA during all sign in attempts, unless device tracking is turned on and the device has been trusted.

" }, "PreferredMfa":{ "shape":"BooleanType", "documentation":"

Specifies whether SMS is the preferred MFA method.

" } }, - "documentation":"

The type used for enabling SMS MFA at the user level.

" + "documentation":"

The type used for enabling SMS MFA at the user level. Phone numbers don't need to be verified to be used for SMS MFA. If an MFA type is enabled for a user, the user will be prompted for MFA during all sign in attempts, unless device tracking is turned on and the device has been trusted. If you would like MFA to be applied selectively based on the assessed risk level of sign in attempts, disable MFA for users and turn on Adaptive Authentication for the user pool.

" }, "SchemaAttributeType":{ "type":"structure", @@ -6718,7 +6774,7 @@ "members":{ "SnsCallerArn":{ "shape":"ArnType", - "documentation":"

The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) caller. This is the ARN of the IAM role in your AWS account which Cognito will use to send SMS messages.

" + "documentation":"

The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (SNS) caller. This is the ARN of the IAM role in your AWS account which Cognito will use to send SMS messages. SMS messages are subject to a spending limit.

" }, "ExternalId":{ "shape":"StringType", @@ -6776,14 +6832,14 @@ "members":{ "Enabled":{ "shape":"BooleanType", - "documentation":"

Specifies whether software token MFA is enabled.

" + "documentation":"

Specifies whether software token MFA is enabled. If an MFA type is enabled for a user, the user will be prompted for MFA during all sign in attempts, unless device tracking is turned on and the device has been trusted.

" }, "PreferredMfa":{ "shape":"BooleanType", "documentation":"

Specifies whether software token MFA is the preferred MFA method.

" } }, - "documentation":"

The type used for enabling software token MFA at the user level.

" + "documentation":"

The type used for enabling software token MFA at the user level. If an MFA type is enabled for a user, the user will be prompted for MFA during all sign in attempts, unless device tracking is turned on and the device has been trusted. If you would like MFA to be applied selectively based on the assessed risk level of sign in attempts, disable MFA for users and turn on Adaptive Authentication for the user pool.

" }, "StartUserImportJobRequest":{ "type":"structure", @@ -8061,19 +8117,19 @@ }, "EmailMessage":{ "shape":"EmailVerificationMessageType", - "documentation":"

The email message template.

" + "documentation":"

The email message template. EmailMessage is allowed only if EmailSendingAccount is DEVELOPER.

" }, "EmailSubject":{ "shape":"EmailVerificationSubjectType", - "documentation":"

The subject line for the email message template.

" + "documentation":"

The subject line for the email message template. EmailSubject is allowed only if EmailSendingAccount is DEVELOPER.

" }, "EmailMessageByLink":{ "shape":"EmailVerificationMessageByLinkType", - "documentation":"

The email message template for sending a confirmation link to the user.

" + "documentation":"

The email message template for sending a confirmation link to the user. EmailMessageByLink is allowed only if EmailSendingAccount is DEVELOPER.

" }, "EmailSubjectByLink":{ "shape":"EmailVerificationSubjectByLinkType", - "documentation":"

The subject line for the email message template for sending a confirmation link to the user.

" + "documentation":"

The subject line for the email message template for sending a confirmation link to the user. EmailSubjectByLink is allowed only EmailSendingAccount is DEVELOPER.

" }, "DefaultEmailOption":{ "shape":"DefaultEmailOptionType", From 7c3a09aafa03c7559633a27e51e550b20c16dd4f Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 24 Nov 2020 19:09:31 +0000 Subject: [PATCH 287/339] AWS Elemental MediaConvert Update: AWS Elemental MediaConvert SDK has added support for Vorbis and Opus audio in OGG/OGA containers. --- ...ture-AWSElementalMediaConvert-e1fa2a3.json | 6 ++ .../codegen-resources/service-2.json | 93 +++++++++++++++++-- 2 files changed, 90 insertions(+), 9 deletions(-) create mode 100644 .changes/next-release/feature-AWSElementalMediaConvert-e1fa2a3.json diff --git a/.changes/next-release/feature-AWSElementalMediaConvert-e1fa2a3.json b/.changes/next-release/feature-AWSElementalMediaConvert-e1fa2a3.json new file mode 100644 index 000000000000..a885f3621836 --- /dev/null +++ b/.changes/next-release/feature-AWSElementalMediaConvert-e1fa2a3.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Elemental MediaConvert", + "contributor": "", + "description": "AWS Elemental MediaConvert SDK has added support for Vorbis and Opus audio in OGG/OGA containers." +} diff --git a/services/mediaconvert/src/main/resources/codegen-resources/service-2.json b/services/mediaconvert/src/main/resources/codegen-resources/service-2.json index 729d2555eec1..6b2e185fd53c 100644 --- a/services/mediaconvert/src/main/resources/codegen-resources/service-2.json +++ b/services/mediaconvert/src/main/resources/codegen-resources/service-2.json @@ -2427,7 +2427,7 @@ }, "CmafClientCache": { "type": "string", - "documentation": "When set to ENABLED, sets #EXT-X-ALLOW-CACHE:no tag, which prevents client from saving media segments for later replay.", + "documentation": "Disable this setting only when your workflow requires the #EXT-X-ALLOW-CACHE:no tag. Otherwise, keep the default value Enabled (ENABLED) and control caching in your video distribution set up. For example, use the Cache-Control http header.", "enum": [ "DISABLED", "ENABLED" @@ -2501,7 +2501,7 @@ "ClientCache": { "shape": "CmafClientCache", "locationName": "clientCache", - "documentation": "When set to ENABLED, sets #EXT-X-ALLOW-CACHE:no tag, which prevents client from saving media segments for later replay." + "documentation": "Disable this setting only when your workflow requires the #EXT-X-ALLOW-CACHE:no tag. Otherwise, keep the default value Enabled (ENABLED) and control caching in your video distribution set up. For example, use the Cache-Control http header." }, "CodecSpecification": { "shape": "CmafCodecSpecification", @@ -2666,6 +2666,14 @@ "DISABLED" ] }, + "CmfcAudioDuration": { + "type": "string", + "documentation": "Specify this setting only when your output will be consumed by a downstream repackaging workflow that is sensitive to very small duration differences between video and audio. For this situation, choose Match video duration (MATCH_VIDEO_DURATION). In all other cases, keep the default value, Default codec duration (DEFAULT_CODEC_DURATION). When you choose Match video duration, MediaConvert pads the output audio streams with silence or trims them to ensure that the total duration of each audio stream is at least as long as the total duration of the video stream. After padding or trimming, the audio stream duration is no more than one frame longer than the video stream. MediaConvert applies audio padding or trimming only to the end of the last segment of the output. For unsegmented outputs, MediaConvert adds padding only to the end of the file. When you keep the default value, any minor discrepancies between audio and video duration will depend on your output audio codec.", + "enum": [ + "DEFAULT_CODEC_DURATION", + "MATCH_VIDEO_DURATION" + ] + }, "CmfcScte35Esam": { "type": "string", "documentation": "Use this setting only when you specify SCTE-35 markers from ESAM. Choose INSERT to put SCTE-35 markers in this output at the insertion points that you specify in an ESAM XML document. Provide the document in the setting SCC XML (sccXml).", @@ -2685,6 +2693,11 @@ "CmfcSettings": { "type": "structure", "members": { + "AudioDuration": { + "shape": "CmfcAudioDuration", + "locationName": "audioDuration", + "documentation": "Specify this setting only when your output will be consumed by a downstream repackaging workflow that is sensitive to very small duration differences between video and audio. For this situation, choose Match video duration (MATCH_VIDEO_DURATION). In all other cases, keep the default value, Default codec duration (DEFAULT_CODEC_DURATION). When you choose Match video duration, MediaConvert pads the output audio streams with silence or trims them to ensure that the total duration of each audio stream is at least as long as the total duration of the video stream. After padding or trimming, the audio stream duration is no more than one frame longer than the video stream. MediaConvert applies audio padding or trimming only to the end of the last segment of the output. For unsegmented outputs, MediaConvert adds padding only to the end of the file. When you keep the default value, any minor discrepancies between audio and video duration will depend on your output audio codec." + }, "Scte35Esam": { "shape": "CmfcScte35Esam", "locationName": "scte35Esam", @@ -2923,12 +2936,12 @@ "Tags": { "shape": "__mapOf__string", "locationName": "tags", - "documentation": "Optional. The tags that you want to add to the resource. You can tag resources with a key-value pair or with only a key." + "documentation": "Optional. The tags that you want to add to the resource. You can tag resources with a key-value pair or with only a key. Use standard AWS tags on your job for automatic integration with AWS services and for custom integrations and workflows." }, "UserMetadata": { "shape": "__mapOf__string", "locationName": "userMetadata", - "documentation": "Optional. User-defined metadata that you want to associate with an MediaConvert job. You specify metadata in key/value pairs." + "documentation": "Optional. User-defined metadata that you want to associate with an MediaConvert job. You specify metadata in key/value pairs. Use only for existing integrations or workflows that rely on job metadata tags. Otherwise, we recommend that you use standard AWS tags." } }, "required": [ @@ -3182,6 +3195,11 @@ "locationName": "minBufferTime", "documentation": "Minimum time of initially buffered media that is needed to ensure smooth playout." }, + "MinFinalSegmentLength": { + "shape": "__doubleMin0Max2147483647", + "locationName": "minFinalSegmentLength", + "documentation": "Keep this setting at the default value of 0, unless you are troubleshooting a problem with how devices play back the end of your video asset. If you know that player devices are hanging on the final segment of your video because the length of your final segment is too short, use this setting to specify a minimum final segment length, in seconds. Choose a value that is greater than or equal to 1 and less than your segment length. When you specify a value for this setting, the encoder will combine any final segment that is shorter than the length that you specify with the previous segment. For example, your segment length is 3 seconds and your final segment is .5 seconds without a minimum final segment length; when you set the minimum final segment length to 1, your final segment is 3.5 seconds." + }, "MpdProfile": { "shape": "DashIsoMpdProfile", "locationName": "mpdProfile", @@ -5491,7 +5509,7 @@ }, "HlsClientCache": { "type": "string", - "documentation": "When set to ENABLED, sets #EXT-X-ALLOW-CACHE:no tag, which prevents client from saving media segments for later replay.", + "documentation": "Disable this setting only when your workflow requires the #EXT-X-ALLOW-CACHE:no tag. Otherwise, keep the default value Enabled (ENABLED) and control caching in your video distribution set up. For example, use the Cache-Control http header.", "enum": [ "DISABLED", "ENABLED" @@ -5598,7 +5616,7 @@ "ClientCache": { "shape": "HlsClientCache", "locationName": "clientCache", - "documentation": "When set to ENABLED, sets #EXT-X-ALLOW-CACHE:no tag, which prevents client from saving media segments for later replay." + "documentation": "Disable this setting only when your workflow requires the #EXT-X-ALLOW-CACHE:no tag. Otherwise, keep the default value Enabled (ENABLED) and control caching in your video distribution set up. For example, use the Cache-Control http header." }, "CodecSpecification": { "shape": "HlsCodecSpecification", @@ -5929,7 +5947,7 @@ "documentation": "Enable Denoise (InputDenoiseFilter) to filter noise from the input. Default is disabled. Only applicable to MPEG2, H.264, H.265, and uncompressed video inputs." }, "FileInput": { - "shape": "__stringPatternS3MM2PPMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMKKAAMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8WWEEBBMMLLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMXXMMLLHttpsMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMKKAAMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8WWEEBBMMLLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMXXMMLL", + "shape": "__stringPatternS3MM2PPMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMKKAAMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8WWEEBBMMLLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMXXMMLLOOGGGGaAHttpsMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMKKAAMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8WWEEBBMMLLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMXXMMLLOOGGGGaA", "locationName": "fileInput", "documentation": "Specify the source file for your transcoding job. You can use multiple inputs in a single job. The service concatenates these inputs, in the order that you specify them in the job, to create the outputs. If your input format is IMF, specify your input by providing the path to your CPL. For example, \"s3://bucket/vf/cpl.xml\". If the CPL is in an incomplete IMP, make sure to use *Supplemental IMPs* (SupplementalImps) to specify any supplemental IMPs that contain assets referenced by the CPL." }, @@ -7055,6 +7073,14 @@ "ATSC" ] }, + "M2tsAudioDuration": { + "type": "string", + "documentation": "Specify this setting only when your output will be consumed by a downstream repackaging workflow that is sensitive to very small duration differences between video and audio. For this situation, choose Match video duration (MATCH_VIDEO_DURATION). In all other cases, keep the default value, Default codec duration (DEFAULT_CODEC_DURATION). When you choose Match video duration, MediaConvert pads the output audio streams with silence or trims them to ensure that the total duration of each audio stream is at least as long as the total duration of the video stream. After padding or trimming, the audio stream duration is no more than one frame longer than the video stream. MediaConvert applies audio padding or trimming only to the end of the last segment of the output. For unsegmented outputs, MediaConvert adds padding only to the end of the file. When you keep the default value, any minor discrepancies between audio and video duration will depend on your output audio codec.", + "enum": [ + "DEFAULT_CODEC_DURATION", + "MATCH_VIDEO_DURATION" + ] + }, "M2tsBufferModel": { "type": "string", "documentation": "Controls what buffer model to use for accurate interleaving. If set to MULTIPLEX, use multiplex buffer model. If set to NONE, this can lead to lower latency, but low-memory devices may not be able to play back the stream without interruptions.", @@ -7166,6 +7192,11 @@ "locationName": "audioBufferModel", "documentation": "Selects between the DVB and ATSC buffer models for Dolby Digital audio." }, + "AudioDuration": { + "shape": "M2tsAudioDuration", + "locationName": "audioDuration", + "documentation": "Specify this setting only when your output will be consumed by a downstream repackaging workflow that is sensitive to very small duration differences between video and audio. For this situation, choose Match video duration (MATCH_VIDEO_DURATION). In all other cases, keep the default value, Default codec duration (DEFAULT_CODEC_DURATION). When you choose Match video duration, MediaConvert pads the output audio streams with silence or trims them to ensure that the total duration of each audio stream is at least as long as the total duration of the video stream. After padding or trimming, the audio stream duration is no more than one frame longer than the video stream. MediaConvert applies audio padding or trimming only to the end of the last segment of the output. For unsegmented outputs, MediaConvert adds padding only to the end of the file. When you keep the default value, any minor discrepancies between audio and video duration will depend on your output audio codec." + }, "AudioFramesPerPes": { "shape": "__integerMin0Max2147483647", "locationName": "audioFramesPerPes", @@ -7344,6 +7375,14 @@ }, "documentation": "MPEG-2 TS container settings. These apply to outputs in a File output group when the output's container (ContainerType) is MPEG-2 Transport Stream (M2TS). In these assets, data is organized by the program map table (PMT). Each transport stream program contains subsets of data, including audio, video, and metadata. Each of these subsets of data has a numerical label called a packet identifier (PID). Each transport stream program corresponds to one MediaConvert output. The PMT lists the types of data in a program along with their PID. Downstream systems and players use the program map table to look up the PID for each type of data it accesses and then uses the PIDs to locate specific data within the asset." }, + "M3u8AudioDuration": { + "type": "string", + "documentation": "Specify this setting only when your output will be consumed by a downstream repackaging workflow that is sensitive to very small duration differences between video and audio. For this situation, choose Match video duration (MATCH_VIDEO_DURATION). In all other cases, keep the default value, Default codec duration (DEFAULT_CODEC_DURATION). When you choose Match video duration, MediaConvert pads the output audio streams with silence or trims them to ensure that the total duration of each audio stream is at least as long as the total duration of the video stream. After padding or trimming, the audio stream duration is no more than one frame longer than the video stream. MediaConvert applies audio padding or trimming only to the end of the last segment of the output. For unsegmented outputs, MediaConvert adds padding only to the end of the file. When you keep the default value, any minor discrepancies between audio and video duration will depend on your output audio codec.", + "enum": [ + "DEFAULT_CODEC_DURATION", + "MATCH_VIDEO_DURATION" + ] + }, "M3u8NielsenId3": { "type": "string", "documentation": "If INSERT, Nielsen inaudible tones for media tracking will be detected in the input audio and an equivalent ID3 tag will be inserted in the output.", @@ -7371,6 +7410,11 @@ "M3u8Settings": { "type": "structure", "members": { + "AudioDuration": { + "shape": "M3u8AudioDuration", + "locationName": "audioDuration", + "documentation": "Specify this setting only when your output will be consumed by a downstream repackaging workflow that is sensitive to very small duration differences between video and audio. For this situation, choose Match video duration (MATCH_VIDEO_DURATION). In all other cases, keep the default value, Default codec duration (DEFAULT_CODEC_DURATION). When you choose Match video duration, MediaConvert pads the output audio streams with silence or trims them to ensure that the total duration of each audio stream is at least as long as the total duration of the video stream. After padding or trimming, the audio stream duration is no more than one frame longer than the video stream. MediaConvert applies audio padding or trimming only to the end of the last segment of the output. For unsegmented outputs, MediaConvert adds padding only to the end of the file. When you keep the default value, any minor discrepancies between audio and video duration will depend on your output audio codec." + }, "AudioFramesPerPes": { "shape": "__integerMin0Max2147483647", "locationName": "audioFramesPerPes", @@ -7696,6 +7740,11 @@ "Mp4Settings": { "type": "structure", "members": { + "AudioDuration": { + "shape": "CmfcAudioDuration", + "locationName": "audioDuration", + "documentation": "Specify this setting only when your output will be consumed by a downstream repackaging workflow that is sensitive to very small duration differences between video and audio. For this situation, choose Match video duration (MATCH_VIDEO_DURATION). In all other cases, keep the default value, Default codec duration (DEFAULT_CODEC_DURATION). When you choose Match video duration, MediaConvert pads the output audio streams with silence or trims them to ensure that the total duration of each audio stream is at least as long as the total duration of the video stream. After padding or trimming, the audio stream duration is no more than one frame longer than the video stream. MediaConvert applies audio padding or trimming only to the end of the last segment of the output. For unsegmented outputs, MediaConvert adds padding only to the end of the file. When you keep the default value, any minor discrepancies between audio and video duration will depend on your output audio codec." + }, "CslgAtom": { "shape": "Mp4CslgAtom", "locationName": "cslgAtom", @@ -7724,6 +7773,22 @@ }, "documentation": "Settings for MP4 container. You can create audio-only AAC outputs with this container." }, + "MpdAccessibilityCaptionHints": { + "type": "string", + "documentation": "Optional. Choose Include (INCLUDE) to have MediaConvert mark up your DASH manifest with elements for embedded 608 captions. This markup isn't generally required, but some video players require it to discover and play embedded 608 captions. Keep the default value, Exclude (EXCLUDE), to leave these elements out. When you enable this setting, this is the markup that MediaConvert includes in your manifest: ", + "enum": [ + "INCLUDE", + "EXCLUDE" + ] + }, + "MpdAudioDuration": { + "type": "string", + "documentation": "Specify this setting only when your output will be consumed by a downstream repackaging workflow that is sensitive to very small duration differences between video and audio. For this situation, choose Match video duration (MATCH_VIDEO_DURATION). In all other cases, keep the default value, Default codec duration (DEFAULT_CODEC_DURATION). When you choose Match video duration, MediaConvert pads the output audio streams with silence or trims them to ensure that the total duration of each audio stream is at least as long as the total duration of the video stream. After padding or trimming, the audio stream duration is no more than one frame longer than the video stream. MediaConvert applies audio padding or trimming only to the end of the last segment of the output. For unsegmented outputs, MediaConvert adds padding only to the end of the file. When you keep the default value, any minor discrepancies between audio and video duration will depend on your output audio codec.", + "enum": [ + "DEFAULT_CODEC_DURATION", + "MATCH_VIDEO_DURATION" + ] + }, "MpdCaptionContainerType": { "type": "string", "documentation": "Use this setting only in DASH output groups that include sidecar TTML or IMSC captions. You specify sidecar captions in a separate output from your audio and video. Choose Raw (RAW) for captions in a single XML file in a raw container. Choose Fragmented MPEG-4 (FRAGMENTED_MP4) for captions in XML format contained within fragmented MP4 files. This set of fragmented MP4 files is separate from your video and audio fragmented MP4 files.", @@ -7751,6 +7816,16 @@ "MpdSettings": { "type": "structure", "members": { + "AccessibilityCaptionHints": { + "shape": "MpdAccessibilityCaptionHints", + "locationName": "accessibilityCaptionHints", + "documentation": "Optional. Choose Include (INCLUDE) to have MediaConvert mark up your DASH manifest with elements for embedded 608 captions. This markup isn't generally required, but some video players require it to discover and play embedded 608 captions. Keep the default value, Exclude (EXCLUDE), to leave these elements out. When you enable this setting, this is the markup that MediaConvert includes in your manifest: " + }, + "AudioDuration": { + "shape": "MpdAudioDuration", + "locationName": "audioDuration", + "documentation": "Specify this setting only when your output will be consumed by a downstream repackaging workflow that is sensitive to very small duration differences between video and audio. For this situation, choose Match video duration (MATCH_VIDEO_DURATION). In all other cases, keep the default value, Default codec duration (DEFAULT_CODEC_DURATION). When you choose Match video duration, MediaConvert pads the output audio streams with silence or trims them to ensure that the total duration of each audio stream is at least as long as the total duration of the video stream. After padding or trimming, the audio stream duration is no more than one frame longer than the video stream. MediaConvert applies audio padding or trimming only to the end of the last segment of the output. For unsegmented outputs, MediaConvert adds padding only to the end of the file. When you keep the default value, any minor discrepancies between audio and video duration will depend on your output audio codec." + }, "CaptionContainerType": { "shape": "MpdCaptionContainerType", "locationName": "captionContainerType", @@ -11249,9 +11324,9 @@ "type": "string", "pattern": "^s3:\\/\\/.*\\/(ASSETMAP.xml)?$" }, - "__stringPatternS3MM2PPMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMKKAAMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8WWEEBBMMLLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMXXMMLLHttpsMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMKKAAMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8WWEEBBMMLLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMXXMMLL": { + "__stringPatternS3MM2PPMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMKKAAMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8WWEEBBMMLLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMXXMMLLOOGGGGaAHttpsMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMKKAAMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8WWEEBBMMLLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMXXMMLLOOGGGGaA": { "type": "string", - "pattern": "^((s3://([^\\/]+\\/+)+([^\\/\\.]+|(([^\\/]*)\\.([mM]2[pP]|[mM]2[vV]|[mM][pP][eE][gG]|[mM][pP]3|[aA][vV][iI]|[mM][pP]4|[fF][lL][vV]|[mM][pP][tT]|[mM][pP][gG]|[mM]4[vV]|[tT][rR][pP]|[fF]4[vV]|[mM]2[tT][sS]|[tT][sS]|264|[hH]264|[mM][kK][vV]|[mM][kK][aA]|[mM][oO][vV]|[mM][tT][sS]|[mM]2[tT]|[wW][mM][vV]|[aA][sS][fF]|[vV][oO][bB]|3[gG][pP]|3[gG][pP][pP]|[mM][xX][fF]|[dD][iI][vV][xX]|[xX][vV][iI][dD]|[rR][aA][wW]|[dD][vV]|[gG][xX][fF]|[mM]1[vV]|3[gG]2|[vV][mM][fF]|[mM]3[uU]8|[wW][eE][bB][mM]|[lL][cC][hH]|[gG][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF][hH][dD]|[wW][aA][vV]|[yY]4[mM]|[xX][mM][lL]))))|(https?://([^\\/]+\\/+)+([^\\/\\.]+|(([^\\/]*)\\.([mM]2[vV]|[mM][pP][eE][gG]|[mM][pP]3|[aA][vV][iI]|[mM][pP]4|[fF][lL][vV]|[mM][pP][tT]|[mM][pP][gG]|[mM]4[vV]|[tT][rR][pP]|[fF]4[vV]|[mM]2[tT][sS]|[tT][sS]|264|[hH]264|[mM][kK][vV]|[mM][kK][aA]|[mM][oO][vV]|[mM][tT][sS]|[mM]2[tT]|[wW][mM][vV]|[aA][sS][fF]|[vV][oO][bB]|3[gG][pP]|3[gG][pP][pP]|[mM][xX][fF]|[dD][iI][vV][xX]|[xX][vV][iI][dD]|[rR][aA][wW]|[dD][vV]|[gG][xX][fF]|[mM]1[vV]|3[gG]2|[vV][mM][fF]|[mM]3[uU]8|[wW][eE][bB][mM]|[lL][cC][hH]|[gG][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF][hH][dD]|[wW][aA][vV]|[yY]4[mM]|[xX][mM][lL])))(\\?([^&=]+=[^&]+&)*[^&=]+=[^&]+)?))$" + "pattern": "^((s3://([^\\/]+\\/+)+([^\\/\\.]+|(([^\\/]*)\\.([mM]2[pP]|[mM]2[vV]|[mM][pP][eE][gG]|[mM][pP]3|[aA][vV][iI]|[mM][pP]4|[fF][lL][vV]|[mM][pP][tT]|[mM][pP][gG]|[mM]4[vV]|[tT][rR][pP]|[fF]4[vV]|[mM]2[tT][sS]|[tT][sS]|264|[hH]264|[mM][kK][vV]|[mM][kK][aA]|[mM][oO][vV]|[mM][tT][sS]|[mM]2[tT]|[wW][mM][vV]|[aA][sS][fF]|[vV][oO][bB]|3[gG][pP]|3[gG][pP][pP]|[mM][xX][fF]|[dD][iI][vV][xX]|[xX][vV][iI][dD]|[rR][aA][wW]|[dD][vV]|[gG][xX][fF]|[mM]1[vV]|3[gG]2|[vV][mM][fF]|[mM]3[uU]8|[wW][eE][bB][mM]|[lL][cC][hH]|[gG][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF][hH][dD]|[wW][aA][vV]|[yY]4[mM]|[xX][mM][lL]|[oO][gG][gGaA]))))|(https?://([^\\/]+\\/+)+([^\\/\\.]+|(([^\\/]*)\\.([mM]2[vV]|[mM][pP][eE][gG]|[mM][pP]3|[aA][vV][iI]|[mM][pP]4|[fF][lL][vV]|[mM][pP][tT]|[mM][pP][gG]|[mM]4[vV]|[tT][rR][pP]|[fF]4[vV]|[mM]2[tT][sS]|[tT][sS]|264|[hH]264|[mM][kK][vV]|[mM][kK][aA]|[mM][oO][vV]|[mM][tT][sS]|[mM]2[tT]|[wW][mM][vV]|[aA][sS][fF]|[vV][oO][bB]|3[gG][pP]|3[gG][pP][pP]|[mM][xX][fF]|[dD][iI][vV][xX]|[xX][vV][iI][dD]|[rR][aA][wW]|[dD][vV]|[gG][xX][fF]|[mM]1[vV]|3[gG]2|[vV][mM][fF]|[mM]3[uU]8|[wW][eE][bB][mM]|[lL][cC][hH]|[gG][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF]_[mM][pP][eE][gG]2|[mM][xX][fF][hH][dD]|[wW][aA][vV]|[yY]4[mM]|[xX][mM][lL]|[oO][gG][gGaA])))(\\?([^&=]+=[^&]+&)*[^&=]+=[^&]+)?))$" }, "__stringPatternS3MM2PPWWEEBBMMMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMKKAAMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8LLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMAAAACCAAIIFFFFMMPP2AACC3EECC3DDTTSSEEHttpsMM2VVMMPPEEGGMMPP3AAVVIIMMPP4FFLLVVMMPPTTMMPPGGMM4VVTTRRPPFF4VVMM2TTSSTTSS264HH264MMKKVVMMKKAAMMOOVVMMTTSSMM2TTWWMMVVAASSFFVVOOBB3GGPP3GGPPPPMMXXFFDDIIVVXXXXVVIIDDRRAAWWDDVVGGXXFFMM1VV3GG2VVMMFFMM3UU8LLCCHHGGXXFFMMPPEEGG2MMXXFFMMPPEEGG2MMXXFFHHDDWWAAVVYY4MMAAAACCAAIIFFFFMMPP2AACC3EECC3DDTTSSEE": { "type": "string", From 80b0adf27f1bc87adc5575f006a628a61f711728 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 24 Nov 2020 19:09:46 +0000 Subject: [PATCH 288/339] AWS CodeBuild Update: Adding GetReportGroupTrend API for Test Reports. --- .../feature-AWSCodeBuild-6ce6791.json | 6 ++ .../codegen-resources/service-2.json | 65 +++++++++++++++++++ 2 files changed, 71 insertions(+) create mode 100644 .changes/next-release/feature-AWSCodeBuild-6ce6791.json diff --git a/.changes/next-release/feature-AWSCodeBuild-6ce6791.json b/.changes/next-release/feature-AWSCodeBuild-6ce6791.json new file mode 100644 index 000000000000..5990ef697a30 --- /dev/null +++ b/.changes/next-release/feature-AWSCodeBuild-6ce6791.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS CodeBuild", + "contributor": "", + "description": "Adding GetReportGroupTrend API for Test Reports." +} 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 1e32284f3868..208512eadedf 100644 --- a/services/codebuild/src/main/resources/codegen-resources/service-2.json +++ b/services/codebuild/src/main/resources/codegen-resources/service-2.json @@ -257,6 +257,19 @@ ], "documentation":"

Returns a list of details about test cases for a report.

" }, + "GetReportGroupTrend":{ + "name":"GetReportGroupTrend", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetReportGroupTrendInput"}, + "output":{"shape":"GetReportGroupTrendOutput"}, + "errors":[ + {"shape":"InvalidInputException"}, + {"shape":"ResourceNotFoundException"} + ] + }, "GetResourcePolicy":{ "name":"GetResourcePolicy", "http":{ @@ -1941,6 +1954,25 @@ "type":"list", "member":{"shape":"FilterGroup"} }, + "GetReportGroupTrendInput":{ + "type":"structure", + "required":[ + "reportGroupArn", + "trendField" + ], + "members":{ + "reportGroupArn":{"shape":"NonEmptyString"}, + "numOfReports":{"shape":"PageSize"}, + "trendField":{"shape":"ReportGroupTrendFieldType"} + } + }, + "GetReportGroupTrendOutput":{ + "type":"structure", + "members":{ + "stats":{"shape":"ReportGroupTrendStats"}, + "rawData":{"shape":"ReportGroupTrendRawDataList"} + } + }, "GetResourcePolicyInput":{ "type":"structure", "required":["resourceArn"], @@ -3157,6 +3189,32 @@ "DELETING" ] }, + "ReportGroupTrendFieldType":{ + "type":"string", + "enum":[ + "PASS_RATE", + "DURATION", + "TOTAL", + "LINE_COVERAGE", + "LINES_COVERED", + "LINES_MISSED", + "BRANCH_COVERAGE", + "BRANCHES_COVERED", + "BRANCHES_MISSED" + ] + }, + "ReportGroupTrendRawDataList":{ + "type":"list", + "member":{"shape":"ReportWithRawData"} + }, + "ReportGroupTrendStats":{ + "type":"structure", + "members":{ + "average":{"shape":"String"}, + "max":{"shape":"String"}, + "min":{"shape":"String"} + } + }, "ReportGroups":{ "type":"list", "member":{"shape":"ReportGroup"}, @@ -3192,6 +3250,13 @@ "CODE_COVERAGE" ] }, + "ReportWithRawData":{ + "type":"structure", + "members":{ + "reportArn":{"shape":"NonEmptyString"}, + "data":{"shape":"String"} + } + }, "Reports":{ "type":"list", "member":{"shape":"Report"}, From 1f576e63418e79f491709cbcf2b33e676d0f14c9 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 24 Nov 2020 19:09:46 +0000 Subject: [PATCH 289/339] AWS Step Functions Update: This release of the AWS Step Functions SDK introduces support for Synchronous Express Workflows --- .../feature-AWSStepFunctions-973a207.json | 6 + .../codegen-resources/service-2.json | 144 +++++++++++++++++- 2 files changed, 144 insertions(+), 6 deletions(-) create mode 100644 .changes/next-release/feature-AWSStepFunctions-973a207.json diff --git a/.changes/next-release/feature-AWSStepFunctions-973a207.json b/.changes/next-release/feature-AWSStepFunctions-973a207.json new file mode 100644 index 000000000000..eb8ab4967b25 --- /dev/null +++ b/.changes/next-release/feature-AWSStepFunctions-973a207.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Step Functions", + "contributor": "", + "description": "This release of the AWS Step Functions SDK introduces support for Synchronous Express Workflows" +} diff --git a/services/sfn/src/main/resources/codegen-resources/service-2.json b/services/sfn/src/main/resources/codegen-resources/service-2.json index 0e42d909e7dd..cf4163c6c13e 100644 --- a/services/sfn/src/main/resources/codegen-resources/service-2.json +++ b/services/sfn/src/main/resources/codegen-resources/service-2.json @@ -286,6 +286,25 @@ "documentation":"

Starts a state machine execution.

StartExecution is idempotent. If StartExecution is called with the same name and input as a running execution, the call will succeed and return the same response as the original request. If the execution is closed or if the input is different, it will return a 400 ExecutionAlreadyExists error. Names can be reused after 90 days.

", "idempotent":true }, + "StartSyncExecution":{ + "name":"StartSyncExecution", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"StartSyncExecutionInput"}, + "output":{"shape":"StartSyncExecutionOutput"}, + "errors":[ + {"shape":"InvalidArn"}, + {"shape":"InvalidExecutionInput"}, + {"shape":"InvalidName"}, + {"shape":"StateMachineDoesNotExist"}, + {"shape":"StateMachineDeleting"}, + {"shape":"StateMachineTypeNotSupported"} + ], + "documentation":"

Starts a Synchronous Express state machine execution.

", + "endpoint":{"hostPrefix":"sync-"} + }, "StopExecution":{ "name":"StopExecution", "http":{ @@ -502,11 +521,33 @@ "max":256, "min":1 }, + "BilledDuration":{ + "type":"long", + "min":0 + }, + "BilledMemoryUsed":{ + "type":"long", + "min":0 + }, + "BillingDetails":{ + "type":"structure", + "members":{ + "billedMemoryUsedInMB":{ + "shape":"BilledMemoryUsed", + "documentation":"

Billed memory consumption of your workflow, in MB.

" + }, + "billedDurationInMilliseconds":{ + "shape":"BilledDuration", + "documentation":"

Billed duration of your workflow, in milliseconds.

" + } + }, + "documentation":"

An object that describes workflow billing details.

" + }, "CloudWatchEventsExecutionDataDetails":{ "type":"structure", "members":{ "included":{ - "shape":"included", + "shape":"includedDetails", "documentation":"

Indicates whether input or output was included in the response. Always true for API calls.

" } }, @@ -703,7 +744,7 @@ "members":{ "executionArn":{ "shape":"Arn", - "documentation":"

The Amazon Resource Name (ARN) that id entifies the execution.

" + "documentation":"

The Amazon Resource Name (ARN) that identifies the execution.

" }, "stateMachineArn":{ "shape":"Arn", @@ -737,7 +778,7 @@ "outputDetails":{"shape":"CloudWatchEventsExecutionDataDetails"}, "traceHeader":{ "shape":"TraceHeader", - "documentation":"

The AWS X-Ray trace header which was passed to the execution.

" + "documentation":"

The AWS X-Ray trace header that was passed to the execution.

" } } }, @@ -915,7 +956,7 @@ "members":{ "executionArn":{ "shape":"Arn", - "documentation":"

The Amazon Resource Name (ARN) that id entifies the execution.

" + "documentation":"

The Amazon Resource Name (ARN) that identifies the execution.

" }, "stateMachineArn":{ "shape":"Arn", @@ -1734,7 +1775,7 @@ "members":{ "executionArn":{ "shape":"Arn", - "documentation":"

The Amazon Resource Name (ARN) that id entifies the execution.

" + "documentation":"

The Amazon Resource Name (ARN) that identifies the execution.

" }, "startDate":{ "shape":"Timestamp", @@ -1742,6 +1783,89 @@ } } }, + "StartSyncExecutionInput":{ + "type":"structure", + "required":["stateMachineArn"], + "members":{ + "stateMachineArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the state machine to execute.

" + }, + "name":{ + "shape":"Name", + "documentation":"

The name of the execution.

" + }, + "input":{ + "shape":"SensitiveData", + "documentation":"

The string that contains the JSON input data for the execution, for example:

\"input\": \"{\\\"first_name\\\" : \\\"test\\\"}\"

If you don't include any JSON input data, you still must include the two braces, for example: \"input\": \"{}\"

Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

" + }, + "traceHeader":{ + "shape":"TraceHeader", + "documentation":"

Passes the AWS X-Ray trace header. The trace header can also be passed in the request payload.

" + } + } + }, + "StartSyncExecutionOutput":{ + "type":"structure", + "required":[ + "executionArn", + "startDate", + "stopDate", + "status" + ], + "members":{ + "executionArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) that identifies the execution.

" + }, + "stateMachineArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) that identifies the state machine.

" + }, + "name":{ + "shape":"Name", + "documentation":"

The name of the execution.

" + }, + "startDate":{ + "shape":"Timestamp", + "documentation":"

The date the execution is started.

" + }, + "stopDate":{ + "shape":"Timestamp", + "documentation":"

If the execution has already ended, the date the execution stopped.

" + }, + "status":{ + "shape":"SyncExecutionStatus", + "documentation":"

The current status of the execution.

" + }, + "error":{ + "shape":"SensitiveError", + "documentation":"

The error code of the failure.

" + }, + "cause":{ + "shape":"SensitiveCause", + "documentation":"

A more detailed explanation of the cause of the failure.

" + }, + "input":{ + "shape":"SensitiveData", + "documentation":"

The string that contains the JSON input data of the execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

" + }, + "inputDetails":{"shape":"CloudWatchEventsExecutionDataDetails"}, + "output":{ + "shape":"SensitiveData", + "documentation":"

The JSON output data of the execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.

This field is set only if the execution succeeds. If the execution fails, this field is null.

" + }, + "outputDetails":{"shape":"CloudWatchEventsExecutionDataDetails"}, + "traceHeader":{ + "shape":"TraceHeader", + "documentation":"

The AWS X-Ray trace header that was passed to the execution.

" + }, + "billingDetails":{ + "shape":"BillingDetails", + "documentation":"

An object that describes workflow billing details, including billed duration and memory use.

" + } + } + }, "StateEnteredEventDetails":{ "type":"structure", "required":["name"], @@ -1894,6 +2018,14 @@ } } }, + "SyncExecutionStatus":{ + "type":"string", + "enum":[ + "SUCCEEDED", + "FAILED", + "TIMED_OUT" + ] + }, "Tag":{ "type":"structure", "members":{ @@ -2268,7 +2400,7 @@ } } }, - "included":{"type":"boolean"}, + "includedDetails":{"type":"boolean"}, "truncated":{"type":"boolean"} }, "documentation":"AWS Step Functions

AWS Step Functions is a service that lets you coordinate the components of distributed applications and microservices using visual workflows.

You can use Step Functions to build applications from individual components, each of which performs a discrete function, or task, allowing you to scale and change applications quickly. Step Functions provides a console that helps visualize the components of your application as a series of steps. Step Functions automatically triggers and tracks each step, and retries steps when there are errors, so your application executes predictably and in the right order every time. Step Functions logs the state of each step, so you can quickly diagnose and debug any issues.

Step Functions manages operations and underlying infrastructure to ensure your application is available at any scale. You can run tasks on AWS, your own servers, or any system that has access to AWS. You can access and use Step Functions using the console, the AWS SDKs, or an HTTP API. For more information about Step Functions, see the AWS Step Functions Developer Guide .

" From 522ac9ccfffaf0047e6e553933b8854fad410e62 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 24 Nov 2020 19:09:36 +0000 Subject: [PATCH 290/339] AmazonMWAA Update: (New Service) Amazon MWAA is a managed service for Apache Airflow that makes it easy for data engineers and data scientists to execute data processing workflows in the cloud. --- .../feature-AmazonMWAA-539f940.json | 6 + aws-sdk-java/pom.xml | 5 + bom/pom.xml | 5 + services/mwaa/pom.xml | 60 + .../codegen-resources/paginators-1.json | 10 + .../codegen-resources/service-2.json | 1207 +++++++++++++++++ services/pom.xml | 1 + 7 files changed, 1294 insertions(+) create mode 100644 .changes/next-release/feature-AmazonMWAA-539f940.json create mode 100644 services/mwaa/pom.xml create mode 100644 services/mwaa/src/main/resources/codegen-resources/paginators-1.json create mode 100644 services/mwaa/src/main/resources/codegen-resources/service-2.json diff --git a/.changes/next-release/feature-AmazonMWAA-539f940.json b/.changes/next-release/feature-AmazonMWAA-539f940.json new file mode 100644 index 000000000000..93c29817a1be --- /dev/null +++ b/.changes/next-release/feature-AmazonMWAA-539f940.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AmazonMWAA", + "contributor": "", + "description": "(New Service) Amazon MWAA is a managed service for Apache Airflow that makes it easy for data engineers and data scientists to execute data processing workflows in the cloud." +} diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 73313ba5bdf4..0cc6da13b744 100644 --- a/aws-sdk-java/pom.xml +++ b/aws-sdk-java/pom.xml @@ -1193,6 +1193,11 @@ Amazon AutoScaling, etc).
networkfirewall ${awsjavasdk.version} + + software.amazon.awssdk + mwaa + ${awsjavasdk.version} + ${project.artifactId}-${project.version} diff --git a/bom/pom.xml b/bom/pom.xml index 578ccf56f1ad..15ee1121968c 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -1318,6 +1318,11 @@ networkfirewall ${awsjavasdk.version} + + software.amazon.awssdk + mwaa + ${awsjavasdk.version} + diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml new file mode 100644 index 000000000000..64caf185aa8a --- /dev/null +++ b/services/mwaa/pom.xml @@ -0,0 +1,60 @@ + + + + + 4.0.0 + + software.amazon.awssdk + services + 2.15.35-SNAPSHOT + + mwaa + AWS Java SDK :: Services :: MWAA + The AWS Java SDK for MWAA module holds the client classes that are used for + communicating with MWAA. + + https://aws.amazon.com/sdkforjava + + + + org.apache.maven.plugins + maven-jar-plugin + + + + software.amazon.awssdk.services.mwaa + + + + + + + + + + software.amazon.awssdk + protocol-core + ${awsjavasdk.version} + + + software.amazon.awssdk + aws-json-protocol + ${awsjavasdk.version} + + + diff --git a/services/mwaa/src/main/resources/codegen-resources/paginators-1.json b/services/mwaa/src/main/resources/codegen-resources/paginators-1.json new file mode 100644 index 000000000000..5e218e4616bb --- /dev/null +++ b/services/mwaa/src/main/resources/codegen-resources/paginators-1.json @@ -0,0 +1,10 @@ +{ + "pagination": { + "ListEnvironments": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "Environments" + } + } +} diff --git a/services/mwaa/src/main/resources/codegen-resources/service-2.json b/services/mwaa/src/main/resources/codegen-resources/service-2.json new file mode 100644 index 000000000000..92e6ba9bf7ad --- /dev/null +++ b/services/mwaa/src/main/resources/codegen-resources/service-2.json @@ -0,0 +1,1207 @@ +{ + "version":"2.0", + "metadata":{ + "apiVersion":"2020-07-01", + "endpointPrefix":"airflow", + "jsonVersion":"1.1", + "protocol":"rest-json", + "serviceFullName":"AmazonMWAA", + "serviceId":"MWAA", + "signatureVersion":"v4", + "signingName":"airflow", + "uid":"mwaa-2020-07-01" + }, + "operations":{ + "CreateCliToken":{ + "name":"CreateCliToken", + "http":{ + "method":"POST", + "requestUri":"/clitoken/{Name}", + "responseCode":200 + }, + "input":{"shape":"CreateCliTokenRequest"}, + "output":{"shape":"CreateCliTokenResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"} + ], + "documentation":"

Create a CLI token to use Airflow CLI.

", + "endpoint":{"hostPrefix":"env."} + }, + "CreateEnvironment":{ + "name":"CreateEnvironment", + "http":{ + "method":"PUT", + "requestUri":"/environments/{Name}", + "responseCode":200 + }, + "input":{"shape":"CreateEnvironmentInput"}, + "output":{"shape":"CreateEnvironmentOutput"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

JSON blob that describes the environment to create.

", + "endpoint":{"hostPrefix":"api."}, + "idempotent":true + }, + "CreateWebLoginToken":{ + "name":"CreateWebLoginToken", + "http":{ + "method":"POST", + "requestUri":"/webtoken/{Name}", + "responseCode":200 + }, + "input":{"shape":"CreateWebLoginTokenRequest"}, + "output":{"shape":"CreateWebLoginTokenResponse"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Create a JWT token to be used to login to Airflow Web UI with claims based Authentication.

", + "endpoint":{"hostPrefix":"env."}, + "idempotent":true + }, + "DeleteEnvironment":{ + "name":"DeleteEnvironment", + "http":{ + "method":"DELETE", + "requestUri":"/environments/{Name}", + "responseCode":200 + }, + "input":{"shape":"DeleteEnvironmentInput"}, + "output":{"shape":"DeleteEnvironmentOutput"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Delete an existing environment.

", + "endpoint":{"hostPrefix":"api."}, + "idempotent":true + }, + "GetEnvironment":{ + "name":"GetEnvironment", + "http":{ + "method":"GET", + "requestUri":"/environments/{Name}", + "responseCode":200 + }, + "input":{"shape":"GetEnvironmentInput"}, + "output":{"shape":"GetEnvironmentOutput"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Get details of an existing environment.

", + "endpoint":{"hostPrefix":"api."} + }, + "ListEnvironments":{ + "name":"ListEnvironments", + "http":{ + "method":"GET", + "requestUri":"/environments", + "responseCode":200 + }, + "input":{"shape":"ListEnvironmentsInput"}, + "output":{"shape":"ListEnvironmentsOutput"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

List Amazon MWAA Environments.

", + "endpoint":{"hostPrefix":"api."} + }, + "ListTagsForResource":{ + "name":"ListTagsForResource", + "http":{ + "method":"GET", + "requestUri":"/tags/{ResourceArn}", + "responseCode":200 + }, + "input":{"shape":"ListTagsForResourceInput"}, + "output":{"shape":"ListTagsForResourceOutput"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

List the tags for MWAA environments.

", + "endpoint":{"hostPrefix":"api."} + }, + "PublishMetrics":{ + "name":"PublishMetrics", + "http":{ + "method":"POST", + "requestUri":"/metrics/environments/{EnvironmentName}", + "responseCode":200 + }, + "input":{"shape":"PublishMetricsInput"}, + "output":{"shape":"PublishMetricsOutput"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

An operation for publishing metrics from the customers to the Ops plane.

", + "endpoint":{"hostPrefix":"ops."} + }, + "TagResource":{ + "name":"TagResource", + "http":{ + "method":"POST", + "requestUri":"/tags/{ResourceArn}", + "responseCode":200 + }, + "input":{"shape":"TagResourceInput"}, + "output":{"shape":"TagResourceOutput"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Add tag to the MWAA environments.

", + "endpoint":{"hostPrefix":"api."} + }, + "UntagResource":{ + "name":"UntagResource", + "http":{ + "method":"DELETE", + "requestUri":"/tags/{ResourceArn}", + "responseCode":200 + }, + "input":{"shape":"UntagResourceInput"}, + "output":{"shape":"UntagResourceOutput"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Remove a tag from the MWAA environments.

", + "endpoint":{"hostPrefix":"api."}, + "idempotent":true + }, + "UpdateEnvironment":{ + "name":"UpdateEnvironment", + "http":{ + "method":"PATCH", + "requestUri":"/environments/{Name}", + "responseCode":200 + }, + "input":{"shape":"UpdateEnvironmentInput"}, + "output":{"shape":"UpdateEnvironmentOutput"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"ValidationException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Update an MWAA environment.

", + "endpoint":{"hostPrefix":"api."} + } + }, + "shapes":{ + "AccessDeniedException":{ + "type":"structure", + "members":{ + "Message":{"shape":"String"} + }, + "documentation":"

Access to the Airflow Web UI or CLI has been Denied. Please follow the MWAA user guide to setup permissions to access the Web UI and CLI functionality.

", + "error":{ + "httpStatusCode":403, + "senderFault":true + }, + "exception":true + }, + "AirflowConfigurationOptions":{ + "type":"map", + "key":{"shape":"ConfigKey"}, + "value":{"shape":"ConfigValue"} + }, + "AirflowVersion":{ + "type":"string", + "max":32, + "min":1, + "pattern":"^[0-9a-z.]+$" + }, + "CloudWatchLogGroupArn":{ + "type":"string", + "max":1224, + "min":1, + "pattern":"^arn:aws(-[a-z]+)?:logs:[a-z0-9\\-]+:\\d{12}:log-group:\\w+" + }, + "ConfigKey":{ + "type":"string", + "max":64, + "min":1, + "pattern":"^[a-z]+([a-z._]*[a-z]+)?$" + }, + "ConfigValue":{ + "type":"string", + "max":256, + "min":1, + "pattern":".*" + }, + "CreateCliTokenRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"EnvironmentName", + "documentation":"

Create a CLI token request for a MWAA environment.

", + "location":"uri", + "locationName":"Name" + } + } + }, + "CreateCliTokenResponse":{ + "type":"structure", + "members":{ + "CliToken":{ + "shape":"SyntheticCreateCliTokenResponseToken", + "documentation":"

Create an Airflow CLI login token response for the provided JWT token.

" + }, + "WebServerHostname":{ + "shape":"Hostname", + "documentation":"

Create an Airflow CLI login token response for the provided webserver hostname.

" + } + } + }, + "CreateEnvironmentInput":{ + "type":"structure", + "required":[ + "DagS3Path", + "ExecutionRoleArn", + "Name", + "NetworkConfiguration", + "SourceBucketArn" + ], + "members":{ + "AirflowConfigurationOptions":{ + "shape":"SyntheticCreateEnvironmentInputAirflowConfigurationOptions", + "documentation":"

The Apache Airflow configuration setting you want to override in your environment. For more information, see Environment configuration.

" + }, + "AirflowVersion":{ + "shape":"AirflowVersion", + "documentation":"

The Apache Airflow version you want to use for your environment.

" + }, + "DagS3Path":{ + "shape":"RelativePath", + "documentation":"

The relative path to the DAG folder on your Amazon S3 storage bucket. For example, dags. For more information, see Importing DAGs on Amazon MWAA.

" + }, + "EnvironmentClass":{ + "shape":"EnvironmentClass", + "documentation":"

The environment class you want to use for your environment. The environment class determines the size of the containers and database used for your Apache Airflow services.

" + }, + "ExecutionRoleArn":{ + "shape":"IamRoleArn", + "documentation":"

The Amazon Resource Name (ARN) of the execution role for your environment. An execution role is an AWS Identity and Access Management (IAM) role that grants MWAA permission to access AWS services and resources used by your environment. For example, arn:aws:iam::123456789:role/my-execution-role. For more information, see Managing access to Amazon Managed Workflows for Apache Airflow.

" + }, + "KmsKey":{ + "shape":"KmsKey", + "documentation":"

The AWS Key Management Service (KMS) key to encrypt and decrypt the data in your environment. You can use an AWS KMS key managed by MWAA, or a custom KMS key (advanced). For more information, see Customer master keys (CMKs) in the AWS KMS developer guide.

" + }, + "LoggingConfiguration":{ + "shape":"LoggingConfigurationInput", + "documentation":"

The Apache Airflow logs you want to send to Amazon CloudWatch Logs.

" + }, + "MaxWorkers":{ + "shape":"MaxWorkers", + "documentation":"

The maximum number of workers that you want to run in your environment. MWAA scales the number of Apache Airflow workers and the Fargate containers that run your tasks up to the number you specify in this field. When there are no more tasks running, and no more in the queue, MWAA disposes of the extra containers leaving the one worker that is included with your environment.

" + }, + "Name":{ + "shape":"EnvironmentName", + "documentation":"

The name of your MWAA environment.

", + "location":"uri", + "locationName":"Name" + }, + "NetworkConfiguration":{ + "shape":"NetworkConfiguration", + "documentation":"

The VPC networking components you want to use for your environment. At least two private subnet identifiers and one VPC security group identifier are required to create an environment. For more information, see Creating the VPC network for a MWAA environment.

" + }, + "PluginsS3ObjectVersion":{ + "shape":"S3ObjectVersion", + "documentation":"

The plugins.zip file version you want to use.

" + }, + "PluginsS3Path":{ + "shape":"RelativePath", + "documentation":"

The relative path to the plugins.zip file on your Amazon S3 storage bucket. For example, plugins.zip. If a relative path is provided in the request, then PluginsS3ObjectVersion is required. For more information, see Importing DAGs on Amazon MWAA.

" + }, + "RequirementsS3ObjectVersion":{ + "shape":"S3ObjectVersion", + "documentation":"

The requirements.txt file version you want to use.

" + }, + "RequirementsS3Path":{ + "shape":"RelativePath", + "documentation":"

The relative path to the requirements.txt file on your Amazon S3 storage bucket. For example, requirements.txt. If a relative path is provided in the request, then RequirementsS3ObjectVersion is required. For more information, see Importing DAGs on Amazon MWAA.

" + }, + "SourceBucketArn":{ + "shape":"S3BucketArn", + "documentation":"

The Amazon Resource Name (ARN) of your Amazon S3 storage bucket. For example, arn:aws:s3:::airflow-mybucketname.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

The metadata tags you want to attach to your environment. For more information, see Tagging AWS resources.

" + }, + "WebserverAccessMode":{ + "shape":"WebserverAccessMode", + "documentation":"

The networking access of your Apache Airflow web server. A public network allows your Airflow UI to be accessed over the Internet by users granted access in your IAM policy. A private network limits access of your Airflow UI to users within your VPC. For more information, see Creating the VPC network for a MWAA environment.

" + }, + "WeeklyMaintenanceWindowStart":{ + "shape":"WeeklyMaintenanceWindowStart", + "documentation":"

The day and time you want MWAA to start weekly maintenance updates on your environment.

" + } + }, + "documentation":"

This section contains the Amazon Managed Workflows for Apache Airflow (MWAA) API reference documentation to create an environment. For more information, see Get started with Amazon Managed Workflows for Apache Airflow.

" + }, + "CreateEnvironmentOutput":{ + "type":"structure", + "members":{ + "Arn":{ + "shape":"EnvironmentArn", + "documentation":"

The resulting Amazon MWAA envirnonment ARN.

" + } + } + }, + "CreateWebLoginTokenRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"EnvironmentName", + "documentation":"

Create an Airflow Web UI login token request for a MWAA environment.

", + "location":"uri", + "locationName":"Name" + } + } + }, + "CreateWebLoginTokenResponse":{ + "type":"structure", + "members":{ + "WebServerHostname":{ + "shape":"Hostname", + "documentation":"

Create an Airflow Web UI login token response for the provided webserver hostname.

" + }, + "WebToken":{ + "shape":"SyntheticCreateWebLoginTokenResponseToken", + "documentation":"

Create an Airflow Web UI login token response for the provided JWT token.

" + } + } + }, + "CreatedAt":{"type":"timestamp"}, + "DeleteEnvironmentInput":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"EnvironmentName", + "documentation":"

The name of the environment to delete.

", + "location":"uri", + "locationName":"Name" + } + } + }, + "DeleteEnvironmentOutput":{ + "type":"structure", + "members":{ + } + }, + "Dimension":{ + "type":"structure", + "required":[ + "Name", + "Value" + ], + "members":{ + "Name":{ + "shape":"String", + "documentation":"

Internal only API.

" + }, + "Value":{ + "shape":"String", + "documentation":"

Internal only API.

" + } + }, + "documentation":"

Internal only API.

" + }, + "Dimensions":{ + "type":"list", + "member":{"shape":"Dimension"} + }, + "Double":{ + "type":"double", + "box":true + }, + "Environment":{ + "type":"structure", + "members":{ + "AirflowConfigurationOptions":{ + "shape":"AirflowConfigurationOptions", + "documentation":"

The Airflow Configuration Options of the Amazon MWAA Environment.

" + }, + "AirflowVersion":{ + "shape":"AirflowVersion", + "documentation":"

The AirflowV ersion of the Amazon MWAA Environment.

" + }, + "Arn":{ + "shape":"EnvironmentArn", + "documentation":"

The ARN of the Amazon MWAA Environment.

" + }, + "CreatedAt":{ + "shape":"CreatedAt", + "documentation":"

The Created At date of the Amazon MWAA Environment.

" + }, + "DagS3Path":{ + "shape":"RelativePath", + "documentation":"

The Dags S3 Path of the Amazon MWAA Environment.

" + }, + "EnvironmentClass":{ + "shape":"EnvironmentClass", + "documentation":"

The Environment Class (size) of the Amazon MWAA Environment.

" + }, + "ExecutionRoleArn":{ + "shape":"IamRoleArn", + "documentation":"

The Execution Role ARN of the Amazon MWAA Environment.

" + }, + "KmsKey":{ + "shape":"KmsKey", + "documentation":"

The Kms Key of the Amazon MWAA Environment.

" + }, + "LastUpdate":{"shape":"LastUpdate"}, + "LoggingConfiguration":{ + "shape":"LoggingConfiguration", + "documentation":"

The Logging Configuration of the Amazon MWAA Environment.

" + }, + "MaxWorkers":{ + "shape":"MaxWorkers", + "documentation":"

The Maximum Workers of the Amazon MWAA Environment.

" + }, + "Name":{ + "shape":"EnvironmentName", + "documentation":"

The name of the Amazon MWAA Environment.

" + }, + "NetworkConfiguration":{"shape":"NetworkConfiguration"}, + "PluginsS3ObjectVersion":{ + "shape":"S3ObjectVersion", + "documentation":"

The Plugins.zip S3 Object Version of the Amazon MWAA Environment.

" + }, + "PluginsS3Path":{ + "shape":"RelativePath", + "documentation":"

The Plugins.zip S3 Path of the Amazon MWAA Environment.

" + }, + "RequirementsS3ObjectVersion":{ + "shape":"S3ObjectVersion", + "documentation":"

The Requirements.txt file S3 Object Version of the Amazon MWAA Environment.

" + }, + "RequirementsS3Path":{ + "shape":"RelativePath", + "documentation":"

The Requirement.txt S3 Path of the Amazon MWAA Environment.

" + }, + "ServiceRoleArn":{ + "shape":"IamRoleArn", + "documentation":"

The Service Role ARN of the Amazon MWAA Environment.

" + }, + "SourceBucketArn":{ + "shape":"S3BucketArn", + "documentation":"

The Source S3 Bucket ARN of the Amazon MWAA Environment.

" + }, + "Status":{ + "shape":"EnvironmentStatus", + "documentation":"

The status of the Amazon MWAA Environment.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

The Tags of the Amazon MWAA Environment.

" + }, + "WebserverAccessMode":{ + "shape":"WebserverAccessMode", + "documentation":"

The Webserver Access Mode of the Amazon MWAA Environment (public or private only).

" + }, + "WebserverUrl":{ + "shape":"WebserverUrl", + "documentation":"

The Webserver URL of the Amazon MWAA Environment.

" + }, + "WeeklyMaintenanceWindowStart":{ + "shape":"WeeklyMaintenanceWindowStart", + "documentation":"

The Weekly Maintenance Window Start of the Amazon MWAA Environment.

" + } + }, + "documentation":"

An Amazon MWAA environment.

" + }, + "EnvironmentArn":{ + "type":"string", + "max":1224, + "min":1, + "pattern":"^arn:aws(-[a-z]+)?:airflow:[a-z0-9\\-]+:\\d{12}:environment/\\w+" + }, + "EnvironmentClass":{ + "type":"string", + "max":1024, + "min":1 + }, + "EnvironmentList":{ + "type":"list", + "member":{"shape":"EnvironmentName"} + }, + "EnvironmentName":{ + "type":"string", + "max":80, + "min":1, + "pattern":"^[a-zA-Z][0-9a-zA-Z-_]*$" + }, + "EnvironmentStatus":{ + "type":"string", + "enum":[ + "CREATING", + "CREATE_FAILED", + "AVAILABLE", + "UPDATING", + "DELETING", + "DELETED" + ] + }, + "ErrorCode":{"type":"string"}, + "ErrorMessage":{ + "type":"string", + "max":1024, + "min":1, + "pattern":"^.+$" + }, + "GetEnvironmentInput":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"EnvironmentName", + "documentation":"

The name of the environment to retrieve.

", + "location":"uri", + "locationName":"Name" + } + } + }, + "GetEnvironmentOutput":{ + "type":"structure", + "members":{ + "Environment":{ + "shape":"Environment", + "documentation":"

A JSON blob with environment details.

" + } + } + }, + "Hostname":{ + "type":"string", + "max":255, + "min":1, + "pattern":"^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\\-]*[a-zA-Z0-9])\\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\\-]*[A-Za-z0-9])$" + }, + "IamRoleArn":{ + "type":"string", + "max":1224, + "min":1, + "pattern":"^arn:aws(-[a-z]+)?:iam::\\d{12}:role/?[a-zA-Z_0-9+=,.@\\-_/]+$" + }, + "Integer":{ + "type":"integer", + "box":true + }, + "InternalServerException":{ + "type":"structure", + "members":{ + "message":{"shape":"String"} + }, + "documentation":"

InternalServerException: An internal error has occurred.

", + "error":{"httpStatusCode":500}, + "exception":true, + "fault":true + }, + "KmsKey":{ + "type":"string", + "max":1224, + "min":1, + "pattern":"^(((arn:aws(-[a-z]+)?:kms:[a-z]{2}-[a-z]+-\\d:\\d+:)?key\\/)?[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}|(arn:aws(-[a-z]+)?:kms:[a-z]{2}-[a-z]+-\\d:\\d+:)?alias/.+)$" + }, + "LastUpdate":{ + "type":"structure", + "members":{ + "CreatedAt":{ + "shape":"UpdateCreatedAt", + "documentation":"

Time that last update occurred.

" + }, + "Error":{ + "shape":"UpdateError", + "documentation":"

Error string of last update, if applicable.

" + }, + "Status":{ + "shape":"UpdateStatus", + "documentation":"

Status of last update of SUCCESS, FAILED, CREATING, DELETING.

" + } + }, + "documentation":"

Last update information for the environment.

" + }, + "ListEnvironmentsInput":{ + "type":"structure", + "members":{ + "MaxResults":{ + "shape":"ListEnvironmentsInputMaxResultsInteger", + "documentation":"

The maximum results when listing MWAA environments.

", + "location":"querystring", + "locationName":"MaxResults" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The Next Token when listing MWAA environments.

", + "location":"querystring", + "locationName":"NextToken" + } + } + }, + "ListEnvironmentsInputMaxResultsInteger":{ + "type":"integer", + "box":true, + "max":25, + "min":1 + }, + "ListEnvironmentsOutput":{ + "type":"structure", + "required":["Environments"], + "members":{ + "Environments":{ + "shape":"EnvironmentList", + "documentation":"

The list of Amazon MWAA Environments.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The Next Token when listing MWAA environments.

" + } + } + }, + "ListTagsForResourceInput":{ + "type":"structure", + "required":["ResourceArn"], + "members":{ + "ResourceArn":{ + "shape":"EnvironmentArn", + "documentation":"

The ARN of the MWAA environment.

", + "location":"uri", + "locationName":"ResourceArn" + } + } + }, + "ListTagsForResourceOutput":{ + "type":"structure", + "members":{ + "Tags":{ + "shape":"TagMap", + "documentation":"

The tags of the MWAA environments.

" + } + } + }, + "LoggingConfiguration":{ + "type":"structure", + "members":{ + "DagProcessingLogs":{"shape":"ModuleLoggingConfiguration"}, + "SchedulerLogs":{"shape":"ModuleLoggingConfiguration"}, + "TaskLogs":{"shape":"ModuleLoggingConfiguration"}, + "WebserverLogs":{"shape":"ModuleLoggingConfiguration"}, + "WorkerLogs":{"shape":"ModuleLoggingConfiguration"} + }, + "documentation":"

The Logging Configuration of your Amazon MWAA environment.

" + }, + "LoggingConfigurationInput":{ + "type":"structure", + "members":{ + "DagProcessingLogs":{"shape":"ModuleLoggingConfigurationInput"}, + "SchedulerLogs":{"shape":"ModuleLoggingConfigurationInput"}, + "TaskLogs":{"shape":"ModuleLoggingConfigurationInput"}, + "WebserverLogs":{"shape":"ModuleLoggingConfigurationInput"}, + "WorkerLogs":{"shape":"ModuleLoggingConfigurationInput"} + }, + "documentation":"

The Logging Configuration of your Amazon MWAA environment.

" + }, + "LoggingEnabled":{ + "type":"boolean", + "box":true + }, + "LoggingLevel":{ + "type":"string", + "enum":[ + "CRITICAL", + "ERROR", + "WARNING", + "INFO", + "DEBUG" + ] + }, + "MaxWorkers":{ + "type":"integer", + "box":true, + "min":1 + }, + "MetricData":{ + "type":"list", + "member":{"shape":"MetricDatum"} + }, + "MetricDatum":{ + "type":"structure", + "required":[ + "MetricName", + "Timestamp" + ], + "members":{ + "Dimensions":{ + "shape":"Dimensions", + "documentation":"

Internal only API.

" + }, + "MetricName":{ + "shape":"String", + "documentation":"

Internal only API.

" + }, + "StatisticValues":{ + "shape":"StatisticSet", + "documentation":"

Internal only API.

" + }, + "Timestamp":{ + "shape":"Timestamp", + "documentation":"

Internal only API.

" + }, + "Unit":{"shape":"Unit"}, + "Value":{ + "shape":"Double", + "documentation":"

Internal only API.

" + } + }, + "documentation":"

Internal only API.

" + }, + "ModuleLoggingConfiguration":{ + "type":"structure", + "members":{ + "CloudWatchLogGroupArn":{ + "shape":"CloudWatchLogGroupArn", + "documentation":"

Provides the ARN for the CloudWatch group where the logs will be published.

" + }, + "Enabled":{ + "shape":"LoggingEnabled", + "documentation":"

Defines that the logging module is enabled.

" + }, + "LogLevel":{ + "shape":"LoggingLevel", + "documentation":"

Defines the log level, which can be CRITICAL, ERROR, WARNING, or INFO.

" + } + }, + "documentation":"

A JSON blob that provides configuration to use for logging with respect to the various Apache Airflow services: DagProcessingLogs, SchedulerLogs, TaskLogs, WebserverLogs, and WorkerLogs.

" + }, + "ModuleLoggingConfigurationInput":{ + "type":"structure", + "required":[ + "Enabled", + "LogLevel" + ], + "members":{ + "Enabled":{ + "shape":"LoggingEnabled", + "documentation":"

Defines that the logging module is enabled.

" + }, + "LogLevel":{ + "shape":"LoggingLevel", + "documentation":"

Defines the log level, which can be CRITICAL, ERROR, WARNING, or INFO.

" + } + }, + "documentation":"

A JSON blob that provides configuration to use for logging with respect to the various Apache Airflow services: DagProcessingLogs, SchedulerLogs, TaskLogs, WebserverLogs, and WorkerLogs.

" + }, + "NetworkConfiguration":{ + "type":"structure", + "members":{ + "SecurityGroupIds":{ + "shape":"SecurityGroupList", + "documentation":"

A JSON list of 1 or more security groups IDs by name, in the same VPC as the subnets.

" + }, + "SubnetIds":{ + "shape":"SubnetList", + "documentation":"

Provide a JSON list of 2 subnet IDs by name. These must be private subnets, in the same VPC, in two different availability zones.

" + } + }, + "documentation":"

Provide the security group and subnet IDs for the workers and scheduler.

" + }, + "NextToken":{ + "type":"string", + "max":2048, + "min":0 + }, + "PublishMetricsInput":{ + "type":"structure", + "required":[ + "EnvironmentName", + "MetricData" + ], + "members":{ + "EnvironmentName":{ + "shape":"EnvironmentName", + "documentation":"

Publishes environment metric data to Amazon CloudWatch.

", + "location":"uri", + "locationName":"EnvironmentName" + }, + "MetricData":{ + "shape":"MetricData", + "documentation":"

Publishes metric data points to Amazon CloudWatch. CloudWatch associates the data points with the specified metrica.

" + } + } + }, + "PublishMetricsOutput":{ + "type":"structure", + "members":{ + } + }, + "RelativePath":{ + "type":"string", + "max":1024, + "min":1, + "pattern":".*" + }, + "ResourceNotFoundException":{ + "type":"structure", + "members":{ + "message":{"shape":"String"} + }, + "documentation":"

ResourceNotFoundException: The resource is not available.

", + "error":{ + "httpStatusCode":404, + "senderFault":true + }, + "exception":true + }, + "S3BucketArn":{ + "type":"string", + "max":1224, + "min":1, + "pattern":"^arn:aws(-[a-z]+)?:s3:::airflow-[a-z0-9.\\-]+$" + }, + "S3ObjectVersion":{ + "type":"string", + "max":1024, + "min":1 + }, + "SecurityGroupId":{ + "type":"string", + "max":1024, + "min":1, + "pattern":"^sg-[a-zA-Z0-9\\-._]+$" + }, + "SecurityGroupList":{ + "type":"list", + "member":{"shape":"SecurityGroupId"}, + "max":5, + "min":1 + }, + "StatisticSet":{ + "type":"structure", + "members":{ + "Maximum":{ + "shape":"Double", + "documentation":"

Internal only API.

" + }, + "Minimum":{ + "shape":"Double", + "documentation":"

Internal only API.

" + }, + "SampleCount":{ + "shape":"Integer", + "documentation":"

Internal only API.

" + }, + "Sum":{ + "shape":"Double", + "documentation":"

Internal only API.

" + } + }, + "documentation":"

Internal only API.

" + }, + "String":{"type":"string"}, + "SubnetId":{ + "type":"string", + "max":1024, + "min":1, + "pattern":"^subnet-[a-zA-Z0-9\\-._]+$" + }, + "SubnetList":{ + "type":"list", + "member":{"shape":"SubnetId"}, + "max":2, + "min":2 + }, + "SyntheticCreateCliTokenResponseToken":{ + "type":"string", + "sensitive":true + }, + "SyntheticCreateEnvironmentInputAirflowConfigurationOptions":{ + "type":"map", + "key":{"shape":"ConfigKey"}, + "value":{"shape":"ConfigValue"}, + "sensitive":true + }, + "SyntheticCreateWebLoginTokenResponseToken":{ + "type":"string", + "sensitive":true + }, + "SyntheticUpdateEnvironmentInputAirflowConfigurationOptions":{ + "type":"map", + "key":{"shape":"ConfigKey"}, + "value":{"shape":"ConfigValue"}, + "sensitive":true + }, + "TagKey":{ + "type":"string", + "max":128, + "min":1, + "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$" + }, + "TagKeyList":{ + "type":"list", + "member":{"shape":"TagKey"}, + "max":50, + "min":0 + }, + "TagMap":{ + "type":"map", + "key":{"shape":"TagKey"}, + "value":{"shape":"TagValue"}, + "max":50, + "min":1 + }, + "TagResourceInput":{ + "type":"structure", + "required":[ + "ResourceArn", + "Tags" + ], + "members":{ + "ResourceArn":{ + "shape":"EnvironmentArn", + "documentation":"

The tag resource ARN of the MWAA environments.

", + "location":"uri", + "locationName":"ResourceArn" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

The tag resource tag of the MWAA environments.

" + } + } + }, + "TagResourceOutput":{ + "type":"structure", + "members":{ + } + }, + "TagValue":{ + "type":"string", + "max":256, + "min":1, + "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$" + }, + "Timestamp":{"type":"timestamp"}, + "Unit":{ + "type":"string", + "documentation":"

Unit

", + "enum":[ + "Seconds", + "Microseconds", + "Milliseconds", + "Bytes", + "Kilobytes", + "Megabytes", + "Gigabytes", + "Terabytes", + "Bits", + "Kilobits", + "Megabits", + "Gigabits", + "Terabits", + "Percent", + "Count", + "Bytes/Second", + "Kilobytes/Second", + "Megabytes/Second", + "Gigabytes/Second", + "Terabytes/Second", + "Bits/Second", + "Kilobits/Second", + "Megabits/Second", + "Gigabits/Second", + "Terabits/Second", + "Count/Second", + "None" + ] + }, + "UntagResourceInput":{ + "type":"structure", + "required":[ + "ResourceArn", + "tagKeys" + ], + "members":{ + "ResourceArn":{ + "shape":"EnvironmentArn", + "documentation":"

The tag resource ARN of the MWAA environments.

", + "location":"uri", + "locationName":"ResourceArn" + }, + "tagKeys":{ + "shape":"TagKeyList", + "documentation":"

The tag resource key of the MWAA environments.

", + "location":"querystring", + "locationName":"tagKeys" + } + } + }, + "UntagResourceOutput":{ + "type":"structure", + "members":{ + } + }, + "UpdateCreatedAt":{"type":"timestamp"}, + "UpdateEnvironmentInput":{ + "type":"structure", + "required":["Name"], + "members":{ + "AirflowConfigurationOptions":{ + "shape":"SyntheticUpdateEnvironmentInputAirflowConfigurationOptions", + "documentation":"

The Airflow Configuration Options to update of your Amazon MWAA environment.

" + }, + "AirflowVersion":{ + "shape":"AirflowVersion", + "documentation":"

The Airflow Version to update of your Amazon MWAA environment.

" + }, + "DagS3Path":{ + "shape":"RelativePath", + "documentation":"

The Dags folder S3 Path to update of your Amazon MWAA environment.

" + }, + "EnvironmentClass":{ + "shape":"EnvironmentClass", + "documentation":"

The Environment Class to update of your Amazon MWAA environment.

" + }, + "ExecutionRoleArn":{ + "shape":"IamRoleArn", + "documentation":"

The Executio Role ARN to update of your Amazon MWAA environment.

" + }, + "LoggingConfiguration":{ + "shape":"LoggingConfigurationInput", + "documentation":"

The Logging Configuration to update of your Amazon MWAA environment.

" + }, + "MaxWorkers":{ + "shape":"MaxWorkers", + "documentation":"

The Maximum Workers to update of your Amazon MWAA environment.

" + }, + "Name":{ + "shape":"EnvironmentName", + "documentation":"

The name of your Amazon MWAA environment that you wish to update.

", + "location":"uri", + "locationName":"Name" + }, + "NetworkConfiguration":{ + "shape":"UpdateNetworkConfigurationInput", + "documentation":"

The Network Configuration to update of your Amazon MWAA environment.

" + }, + "PluginsS3ObjectVersion":{ + "shape":"S3ObjectVersion", + "documentation":"

The Plugins.zip S3 Object Version to update of your Amazon MWAA environment.

" + }, + "PluginsS3Path":{ + "shape":"RelativePath", + "documentation":"

The Plugins.zip S3 Path to update of your Amazon MWAA environment.

" + }, + "RequirementsS3ObjectVersion":{ + "shape":"S3ObjectVersion", + "documentation":"

The Requirements.txt S3 ObjectV ersion to update of your Amazon MWAA environment.

" + }, + "RequirementsS3Path":{ + "shape":"RelativePath", + "documentation":"

The Requirements.txt S3 Path to update of your Amazon MWAA environment.

" + }, + "SourceBucketArn":{ + "shape":"S3BucketArn", + "documentation":"

The S3 Source Bucket ARN to update of your Amazon MWAA environment.

" + }, + "WebserverAccessMode":{ + "shape":"WebserverAccessMode", + "documentation":"

The Webserver Access Mode to update of your Amazon MWAA environment.

" + }, + "WeeklyMaintenanceWindowStart":{ + "shape":"WeeklyMaintenanceWindowStart", + "documentation":"

The Weekly Maintenance Window Start to update of your Amazon MWAA environment.

" + } + } + }, + "UpdateEnvironmentOutput":{ + "type":"structure", + "members":{ + "Arn":{ + "shape":"EnvironmentArn", + "documentation":"

The ARN to update of your Amazon MWAA environment.

" + } + } + }, + "UpdateError":{ + "type":"structure", + "members":{ + "ErrorCode":{ + "shape":"ErrorCode", + "documentation":"

Error code of update.

" + }, + "ErrorMessage":{ + "shape":"ErrorMessage", + "documentation":"

Error message of update.

" + } + }, + "documentation":"

Error information of update, if applicable.

" + }, + "UpdateNetworkConfigurationInput":{ + "type":"structure", + "required":["SecurityGroupIds"], + "members":{ + "SecurityGroupIds":{ + "shape":"SecurityGroupList", + "documentation":"

Provide a JSON list of 1 or more security groups IDs by name, in the same VPC as the subnets.

" + } + }, + "documentation":"

Provide the security group and subnet IDs for the workers and scheduler.

" + }, + "UpdateStatus":{ + "type":"string", + "enum":[ + "SUCCESS", + "PENDING", + "FAILED" + ] + }, + "ValidationException":{ + "type":"structure", + "members":{ + "message":{"shape":"String"} + }, + "documentation":"

ValidationException: The provided input is not valid.

", + "error":{ + "httpStatusCode":400, + "senderFault":true + }, + "exception":true + }, + "WebserverAccessMode":{ + "type":"string", + "enum":[ + "PRIVATE_ONLY", + "PUBLIC_ONLY" + ] + }, + "WebserverUrl":{ + "type":"string", + "max":256, + "min":1, + "pattern":"^https://.+$" + }, + "WeeklyMaintenanceWindowStart":{ + "type":"string", + "max":9, + "min":1, + "pattern":"(MON|TUE|WED|THU|FRI|SAT|SUN):([01]\\d|2[0-3]):(00|30)" + } + }, + "documentation":"

Amazon Managed Workflows for Apache Airflow

This section contains the Amazon Managed Workflows for Apache Airflow (MWAA) API reference documentation. For more information, see What Is Amazon MWAA?.

" +} diff --git a/services/pom.xml b/services/pom.xml index 45eb57e4b7ee..183434bc3824 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -256,6 +256,7 @@ databrew servicecatalogappregistry networkfirewall + mwaa The AWS Java SDK services https://aws.amazon.com/sdkforjava From 35d806510b6dd1ff171785bd8eb0de6831164b0e Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 24 Nov 2020 19:09:35 +0000 Subject: [PATCH 291/339] Amazon Lex Model Building Service Update: Lex now supports es-419, de-DE locales --- .../feature-AmazonLexModelBuildingService-21b35d1.json | 6 ++++++ .../src/main/resources/codegen-resources/service-2.json | 1 + 2 files changed, 7 insertions(+) create mode 100644 .changes/next-release/feature-AmazonLexModelBuildingService-21b35d1.json diff --git a/.changes/next-release/feature-AmazonLexModelBuildingService-21b35d1.json b/.changes/next-release/feature-AmazonLexModelBuildingService-21b35d1.json new file mode 100644 index 000000000000..ecbe80925757 --- /dev/null +++ b/.changes/next-release/feature-AmazonLexModelBuildingService-21b35d1.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Lex Model Building Service", + "contributor": "", + "description": "Lex now supports es-419, de-DE locales" +} diff --git a/services/lexmodelbuilding/src/main/resources/codegen-resources/service-2.json b/services/lexmodelbuilding/src/main/resources/codegen-resources/service-2.json index 0c90f83e9868..042f844cf1b1 100644 --- a/services/lexmodelbuilding/src/main/resources/codegen-resources/service-2.json +++ b/services/lexmodelbuilding/src/main/resources/codegen-resources/service-2.json @@ -2705,6 +2705,7 @@ "en-AU", "en-GB", "en-US", + "es-419", "es-ES", "es-US", "fr-FR", From a2694b9f192dc3cc1c78cec22f0953a983279a69 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 24 Nov 2020 19:09:40 +0000 Subject: [PATCH 292/339] Amazon Transcribe Streaming Service Update: Amazon Transcribe Medical streaming added medical specialties and HTTP/2 support. Amazon Transcribe streaming supports additional languages. Both support OGG/OPUS and FLAC codecs for streaming. --- ...zonTranscribeStreamingService-65a742d.json | 6 + .../codegen-resources/service-2.json | 327 +++++++++++++++++- 2 files changed, 328 insertions(+), 5 deletions(-) create mode 100644 .changes/next-release/feature-AmazonTranscribeStreamingService-65a742d.json diff --git a/.changes/next-release/feature-AmazonTranscribeStreamingService-65a742d.json b/.changes/next-release/feature-AmazonTranscribeStreamingService-65a742d.json new file mode 100644 index 000000000000..42233a757fd9 --- /dev/null +++ b/.changes/next-release/feature-AmazonTranscribeStreamingService-65a742d.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Transcribe Streaming Service", + "contributor": "", + "description": "Amazon Transcribe Medical streaming added medical specialties and HTTP/2 support. Amazon Transcribe streaming supports additional languages. Both support OGG/OPUS and FLAC codecs for streaming." +} diff --git a/services/transcribestreaming/src/main/resources/codegen-resources/service-2.json b/services/transcribestreaming/src/main/resources/codegen-resources/service-2.json index 0edc5c29cbcc..11fc8d66fd90 100644 --- a/services/transcribestreaming/src/main/resources/codegen-resources/service-2.json +++ b/services/transcribestreaming/src/main/resources/codegen-resources/service-2.json @@ -12,6 +12,23 @@ "uid":"transcribe-streaming-2017-10-26" }, "operations":{ + "StartMedicalStreamTranscription":{ + "name":"StartMedicalStreamTranscription", + "http":{ + "method":"POST", + "requestUri":"/medical-stream-transcription" + }, + "input":{"shape":"StartMedicalStreamTranscriptionRequest"}, + "output":{"shape":"StartMedicalStreamTranscriptionResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"LimitExceededException"}, + {"shape":"InternalFailureException"}, + {"shape":"ConflictException"}, + {"shape":"ServiceUnavailableException"} + ], + "documentation":"

Starts a bidirectional HTTP/2 stream where audio is streamed to Amazon Transcribe Medical and the transcription results are streamed to your application.

" + }, "StartStreamTranscription":{ "name":"StartStreamTranscription", "http":{ @@ -78,11 +95,12 @@ "members":{ "Message":{"shape":"String"} }, - "documentation":"

One or more arguments to the StartStreamTranscription operation was invalid. For example, MediaEncoding was not set to pcm or LanguageCode was not set to a valid code. Check the parameters and try your request again.

", + "documentation":"

One or more arguments to the StartStreamTranscription or StartMedicalStreamTranscription operation was invalid. For example, MediaEncoding was not set to a valid encoding, or LanguageCode was not set to a valid code. Check the parameters and try your request again.

", "error":{"httpStatusCode":400}, "exception":true }, "Boolean":{"type":"boolean"}, + "Confidence":{"type":"double"}, "ConflictException":{ "type":"structure", "members":{ @@ -98,7 +116,7 @@ "members":{ "Message":{"shape":"String"} }, - "documentation":"

A problem occurred while processing the audio. Amazon Transcribe terminated processing. Try your request again.

", + "documentation":"

A problem occurred while processing the audio. Amazon Transcribe or Amazon Transcribe Medical terminated processing. Try your request again.

", "error":{"httpStatusCode":500}, "exception":true, "fault":true @@ -154,7 +172,10 @@ "fr-FR", "en-AU", "it-IT", - "de-DE" + "de-DE", + "pt-BR", + "ja-JP", + "ko-KR" ] }, "LimitExceededException":{ @@ -168,13 +189,140 @@ }, "MediaEncoding":{ "type":"string", - "enum":["pcm"] + "enum":[ + "pcm", + "ogg-opus", + "flac" + ] }, "MediaSampleRateHertz":{ "type":"integer", "max":48000, "min":8000 }, + "MedicalAlternative":{ + "type":"structure", + "members":{ + "Transcript":{ + "shape":"String", + "documentation":"

The text that was transcribed from the audio.

" + }, + "Items":{ + "shape":"MedicalItemList", + "documentation":"

A list of objects that contains words and punctuation marks that represents one or more interpretations of the input audio.

" + } + }, + "documentation":"

A list of possible transcriptions for the audio.

" + }, + "MedicalAlternativeList":{ + "type":"list", + "member":{"shape":"MedicalAlternative"} + }, + "MedicalItem":{ + "type":"structure", + "members":{ + "StartTime":{ + "shape":"Double", + "documentation":"

The number of seconds into an audio stream that indicates the creation time of an item.

" + }, + "EndTime":{ + "shape":"Double", + "documentation":"

The number of seconds into an audio stream that indicates the creation time of an item.

" + }, + "Type":{ + "shape":"ItemType", + "documentation":"

The type of the item. PRONUNCIATION indicates that the item is a word that was recognized in the input audio. PUNCTUATION indicates that the item was interpreted as a pause in the input audio, such as a period to indicate the end of a sentence.

" + }, + "Content":{ + "shape":"String", + "documentation":"

The word or punctuation mark that was recognized in the input audio.

" + }, + "Confidence":{ + "shape":"Confidence", + "documentation":"

A value between 0 and 1 for an item that is a confidence score that Amazon Transcribe Medical assigns to each word that it transcribes.

" + }, + "Speaker":{ + "shape":"String", + "documentation":"

If speaker identification is enabled, shows the integer values that correspond to the different speakers identified in the stream. For example, if the value of Speaker in the stream is either a 0 or a 1, that indicates that Amazon Transcribe Medical has identified two speakers in the stream. The value of 0 corresponds to one speaker and the value of 1 corresponds to the other speaker.

" + } + }, + "documentation":"

A word or punctuation that is transcribed from the input audio.

" + }, + "MedicalItemList":{ + "type":"list", + "member":{"shape":"MedicalItem"} + }, + "MedicalResult":{ + "type":"structure", + "members":{ + "ResultId":{ + "shape":"String", + "documentation":"

A unique identifier for the result.

" + }, + "StartTime":{ + "shape":"Double", + "documentation":"

The time, in seconds, from the beginning of the audio stream to the beginning of the result.

" + }, + "EndTime":{ + "shape":"Double", + "documentation":"

The time, in seconds, from the beginning of the audio stream to the end of the result.

" + }, + "IsPartial":{ + "shape":"Boolean", + "documentation":"

Amazon Transcribe Medical divides the incoming audio stream into segments at natural points in the audio. Transcription results are returned based on these segments.

The IsPartial field is true to indicate that Amazon Transcribe Medical has additional transcription data to send. The IsPartial field is false to indicate that this is the last transcription result for the segment.

" + }, + "Alternatives":{ + "shape":"MedicalAlternativeList", + "documentation":"

A list of possible transcriptions of the audio. Each alternative typically contains one Item that contains the result of the transcription.

" + }, + "ChannelId":{ + "shape":"String", + "documentation":"

When channel identification is enabled, Amazon Transcribe Medical transcribes the speech from each audio channel separately.

You can use ChannelId to retrieve the transcription results for a single channel in your audio stream.

" + } + }, + "documentation":"

The results of transcribing a portion of the input audio stream.

" + }, + "MedicalResultList":{ + "type":"list", + "member":{"shape":"MedicalResult"} + }, + "MedicalTranscript":{ + "type":"structure", + "members":{ + "Results":{ + "shape":"MedicalResultList", + "documentation":"

MedicalResult objects that contain the results of transcribing a portion of the input audio stream. The array can be empty.

" + } + }, + "documentation":"

The medical transcript in a MedicalTranscriptEvent.

" + }, + "MedicalTranscriptEvent":{ + "type":"structure", + "members":{ + "Transcript":{ + "shape":"MedicalTranscript", + "documentation":"

The transcription of the audio stream. The transcription is composed of all of the items in the results list.

" + } + }, + "documentation":"

Represents a set of transcription results from the server to the client. It contains one or more segments of the transcription.

", + "event":true + }, + "MedicalTranscriptResultStream":{ + "type":"structure", + "members":{ + "TranscriptEvent":{ + "shape":"MedicalTranscriptEvent", + "documentation":"

A portion of the transcription of the audio stream. Events are sent periodically from Amazon Transcribe Medical to your application. The event can be a partial transcription of a section of the audio stream, or it can be the entire transcription of that portion of the audio stream.

" + }, + "BadRequestException":{"shape":"BadRequestException"}, + "LimitExceededException":{"shape":"LimitExceededException"}, + "InternalFailureException":{"shape":"InternalFailureException"}, + "ConflictException":{"shape":"ConflictException"}, + "ServiceUnavailableException":{"shape":"ServiceUnavailableException"} + }, + "documentation":"

Represents the transcription result stream from Amazon Transcribe Medical to your application.

", + "eventstream":true + }, "NumberOfChannels":{ "type":"integer", "min":2 @@ -229,6 +377,168 @@ "min":36, "pattern":"[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}" }, + "Specialty":{ + "type":"string", + "enum":[ + "PRIMARYCARE", + "CARDIOLOGY", + "NEUROLOGY", + "ONCOLOGY", + "RADIOLOGY", + "UROLOGY" + ] + }, + "StartMedicalStreamTranscriptionRequest":{ + "type":"structure", + "required":[ + "LanguageCode", + "MediaSampleRateHertz", + "MediaEncoding", + "Specialty", + "Type", + "AudioStream" + ], + "members":{ + "LanguageCode":{ + "shape":"LanguageCode", + "documentation":"

Indicates the source language used in the input audio stream. For Amazon Transcribe Medical, this is US English (en-US).

", + "location":"header", + "locationName":"x-amzn-transcribe-language-code" + }, + "MediaSampleRateHertz":{ + "shape":"MediaSampleRateHertz", + "documentation":"

The sample rate of the input audio in Hertz. Sample rates of 16000 Hz or higher are accepted.

", + "location":"header", + "locationName":"x-amzn-transcribe-sample-rate" + }, + "MediaEncoding":{ + "shape":"MediaEncoding", + "documentation":"

The encoding used for the input audio.

", + "location":"header", + "locationName":"x-amzn-transcribe-media-encoding" + }, + "VocabularyName":{ + "shape":"VocabularyName", + "documentation":"

The name of the medical custom vocabulary to use when processing the real-time stream.

", + "location":"header", + "locationName":"x-amzn-transcribe-vocabulary-name" + }, + "Specialty":{ + "shape":"Specialty", + "documentation":"

The medical specialty of the clinician or provider.

", + "location":"header", + "locationName":"x-amzn-transcribe-specialty" + }, + "Type":{ + "shape":"Type", + "documentation":"

The type of input audio. Choose DICTATION for a provider dictating patient notes. Choose CONVERSATION for a dialogue between a patient and one or more medical professionanls.

", + "location":"header", + "locationName":"x-amzn-transcribe-type" + }, + "ShowSpeakerLabel":{ + "shape":"Boolean", + "documentation":"

When true, enables speaker identification in your real-time stream.

", + "location":"header", + "locationName":"x-amzn-transcribe-show-speaker-label" + }, + "SessionId":{ + "shape":"SessionId", + "documentation":"

Optional. An identifier for the transcription session. If you don't provide a session ID, Amazon Transcribe generates one for you and returns it in the response.

", + "location":"header", + "locationName":"x-amzn-transcribe-session-id" + }, + "AudioStream":{"shape":"AudioStream"}, + "EnableChannelIdentification":{ + "shape":"Boolean", + "documentation":"

When true, instructs Amazon Transcribe Medical to process each audio channel separately and then merge the transcription output of each channel into a single transcription.

Amazon Transcribe Medical also produces a transcription of each item. An item includes the start time, end time, and any alternative transcriptions.

You can't set both ShowSpeakerLabel and EnableChannelIdentification in the same request. If you set both, your request returns a BadRequestException.

", + "location":"header", + "locationName":"x-amzn-transcribe-enable-channel-identification" + }, + "NumberOfChannels":{ + "shape":"NumberOfChannels", + "documentation":"

The number of channels that are in your audio stream.

", + "location":"header", + "locationName":"x-amzn-transcribe-number-of-channels" + } + }, + "payload":"AudioStream" + }, + "StartMedicalStreamTranscriptionResponse":{ + "type":"structure", + "members":{ + "RequestId":{ + "shape":"RequestId", + "documentation":"

An identifier for the streaming transcription.

", + "location":"header", + "locationName":"x-amzn-request-id" + }, + "LanguageCode":{ + "shape":"LanguageCode", + "documentation":"

The language code for the response transcript. For Amazon Transcribe Medical, this is US English (en-US).

", + "location":"header", + "locationName":"x-amzn-transcribe-language-code" + }, + "MediaSampleRateHertz":{ + "shape":"MediaSampleRateHertz", + "documentation":"

The sample rate of the input audio in Hertz. Valid value: 16000 Hz.

", + "location":"header", + "locationName":"x-amzn-transcribe-sample-rate" + }, + "MediaEncoding":{ + "shape":"MediaEncoding", + "documentation":"

The encoding used for the input audio stream.

", + "location":"header", + "locationName":"x-amzn-transcribe-media-encoding" + }, + "VocabularyName":{ + "shape":"VocabularyName", + "documentation":"

The name of the vocabulary used when processing the stream.

", + "location":"header", + "locationName":"x-amzn-transcribe-vocabulary-name" + }, + "Specialty":{ + "shape":"Specialty", + "documentation":"

The specialty in the medical domain.

", + "location":"header", + "locationName":"x-amzn-transcribe-specialty" + }, + "Type":{ + "shape":"Type", + "documentation":"

The type of audio that was transcribed.

", + "location":"header", + "locationName":"x-amzn-transcribe-type" + }, + "ShowSpeakerLabel":{ + "shape":"Boolean", + "documentation":"

Shows whether speaker identification was enabled in the stream.

", + "location":"header", + "locationName":"x-amzn-transcribe-show-speaker-label" + }, + "SessionId":{ + "shape":"SessionId", + "documentation":"

Optional. An identifier for the transcription session. If you don't provide a session ID, Amazon Transcribe generates one for you and returns it in the response.

", + "location":"header", + "locationName":"x-amzn-transcribe-session-id" + }, + "TranscriptResultStream":{ + "shape":"MedicalTranscriptResultStream", + "documentation":"

Represents the stream of transcription events from Amazon Transcribe Medical to your application.

" + }, + "EnableChannelIdentification":{ + "shape":"Boolean", + "documentation":"

Shows whether channel identification has been enabled in the stream.

", + "location":"header", + "locationName":"x-amzn-transcribe-enable-channel-identification" + }, + "NumberOfChannels":{ + "shape":"NumberOfChannels", + "documentation":"

The number of channels identified in the stream.

", + "location":"header", + "locationName":"x-amzn-transcribe-number-of-channels" + } + }, + "payload":"TranscriptResultStream" + }, "StartStreamTranscriptionRequest":{ "type":"structure", "required":[ @@ -252,7 +562,7 @@ }, "MediaEncoding":{ "shape":"MediaEncoding", - "documentation":"

The encoding used for the input audio. pcm is the only valid value.

", + "documentation":"

The encoding used for the input audio.

", "location":"header", "locationName":"x-amzn-transcribe-media-encoding" }, @@ -434,6 +744,13 @@ "documentation":"

Represents the transcription result stream from Amazon Transcribe to your application.

", "eventstream":true }, + "Type":{ + "type":"string", + "enum":[ + "CONVERSATION", + "DICTATION" + ] + }, "VocabularyFilterMethod":{ "type":"string", "enum":[ From 501a8114e9175856eb83c50c2392026a0746e7e2 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 24 Nov 2020 19:09:35 +0000 Subject: [PATCH 293/339] Amazon GameLift Update: GameLift FlexMatch is now available as a standalone matchmaking solution. FlexMatch now provides customizable matchmaking for games hosted peer-to-peer, on-premises, or on cloud compute primitives. --- .../feature-AmazonGameLift-5c64e59.json | 6 + .../codegen-resources/service-2.json | 143 +++++++++++------- 2 files changed, 98 insertions(+), 51 deletions(-) create mode 100644 .changes/next-release/feature-AmazonGameLift-5c64e59.json diff --git a/.changes/next-release/feature-AmazonGameLift-5c64e59.json b/.changes/next-release/feature-AmazonGameLift-5c64e59.json new file mode 100644 index 000000000000..fd9499b65797 --- /dev/null +++ b/.changes/next-release/feature-AmazonGameLift-5c64e59.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon GameLift", + "contributor": "", + "description": "GameLift FlexMatch is now available as a standalone matchmaking solution. FlexMatch now provides customizable matchmaking for games hosted peer-to-peer, on-premises, or on cloud compute primitives." +} diff --git a/services/gamelift/src/main/resources/codegen-resources/service-2.json b/services/gamelift/src/main/resources/codegen-resources/service-2.json index 6487a6e742e2..3b533c0e7223 100755 --- a/services/gamelift/src/main/resources/codegen-resources/service-2.json +++ b/services/gamelift/src/main/resources/codegen-resources/service-2.json @@ -26,7 +26,7 @@ {"shape":"InternalServiceException"}, {"shape":"UnsupportedRegionException"} ], - "documentation":"

Registers a player's acceptance or rejection of a proposed FlexMatch match. A matchmaking configuration may require player acceptance; if so, then matches built with that configuration cannot be completed unless all players accept the proposed match within a specified time limit.

When FlexMatch builds a match, all the matchmaking tickets involved in the proposed match are placed into status REQUIRES_ACCEPTANCE. This is a trigger for your game to get acceptance from all players in the ticket. Acceptances are only valid for tickets when they are in this status; all other acceptances result in an error.

To register acceptance, specify the ticket ID, a response, and one or more players. Once all players have registered acceptance, the matchmaking tickets advance to status PLACING, where a new game session is created for the match.

If any player rejects the match, or if acceptances are not received before a specified timeout, the proposed match is dropped. The matchmaking tickets are then handled in one of two ways: For tickets where one or more players rejected the match, the ticket status is returned to SEARCHING to find a new match. For tickets where one or more players failed to respond, the ticket status is set to CANCELLED, and processing is terminated. A new matchmaking request for these players can be submitted as needed.

Learn more

Add FlexMatch to a Game Client

FlexMatch Events Reference

Related operations

" + "documentation":"

Registers a player's acceptance or rejection of a proposed FlexMatch match. A matchmaking configuration may require player acceptance; if so, then matches built with that configuration cannot be completed unless all players accept the proposed match within a specified time limit.

When FlexMatch builds a match, all the matchmaking tickets involved in the proposed match are placed into status REQUIRES_ACCEPTANCE. This is a trigger for your game to get acceptance from all players in the ticket. Acceptances are only valid for tickets when they are in this status; all other acceptances result in an error.

To register acceptance, specify the ticket ID, a response, and one or more players. Once all players have registered acceptance, the matchmaking tickets advance to status PLACING, where a new game session is created for the match.

If any player rejects the match, or if acceptances are not received before a specified timeout, the proposed match is dropped. The matchmaking tickets are then handled in one of two ways: For tickets where one or more players rejected the match, the ticket status is returned to SEARCHING to find a new match. For tickets where one or more players failed to respond, the ticket status is set to CANCELLED, and processing is terminated. A new matchmaking request for these players can be submitted as needed.

Learn more

Add FlexMatch to a Game Client

FlexMatch Events Reference

Related operations

" }, "ClaimGameServer":{ "name":"ClaimGameServer", @@ -172,7 +172,7 @@ {"shape":"UnsupportedRegionException"}, {"shape":"TaggingFailedException"} ], - "documentation":"

Defines a new matchmaking configuration for use with FlexMatch. A matchmaking configuration sets out guidelines for matching players and getting the matches into games. You can set up multiple matchmaking configurations to handle the scenarios needed for your game. Each matchmaking ticket (StartMatchmaking or StartMatchBackfill) specifies a configuration for the match and provides player attributes to support the configuration being used.

To create a matchmaking configuration, at a minimum you must specify the following: configuration name; a rule set that governs how to evaluate players and find acceptable matches; a game session queue to use when placing a new game session for the match; and the maximum time allowed for a matchmaking attempt.

To track the progress of matchmaking tickets, set up an Amazon Simple Notification Service (SNS) to receive notifications, and provide the topic ARN in the matchmaking configuration. An alternative method, continuously poling ticket status with DescribeMatchmaking, should only be used for games in development with low matchmaking usage.

Learn more

Design a FlexMatch Matchmaker

Set Up FlexMatch Event Notification

Related operations

" + "documentation":"

Defines a new matchmaking configuration for use with FlexMatch. Whether your are using FlexMatch with GameLift hosting or as a standalone matchmaking service, the matchmaking configuration sets out rules for matching players and forming teams. If you're also using GameLift hosting, it defines how to start game sessions for each match. Your matchmaking system can use multiple configurations to handle different game scenarios. All matchmaking requests (StartMatchmaking or StartMatchBackfill) identify the matchmaking configuration to use and provide player attributes consistent with that configuration.

To create a matchmaking configuration, you must provide the following: configuration name and FlexMatch mode (with or without GameLift hosting); a rule set that specifies how to evaluate players and find acceptable matches; whether player acceptance is required; and the maximum time allowed for a matchmaking attempt. When using FlexMatch with GameLift hosting, you also need to identify the game session queue to use when starting a game session for the match.

In addition, you must set up an Amazon Simple Notification Service (SNS) to receive matchmaking notifications, and provide the topic ARN in the matchmaking configuration. An alternative method, continuously polling ticket status with DescribeMatchmaking, is only suitable for games in development with low matchmaking usage.

Learn more

FlexMatch Developer Guide

Design a FlexMatch Matchmaker

Set Up FlexMatch Event Notification

Related operations

" }, "CreateMatchmakingRuleSet":{ "name":"CreateMatchmakingRuleSet", @@ -188,7 +188,7 @@ {"shape":"UnsupportedRegionException"}, {"shape":"TaggingFailedException"} ], - "documentation":"

Creates a new rule set for FlexMatch matchmaking. A rule set describes the type of match to create, such as the number and size of teams. It also sets the parameters for acceptable player matches, such as minimum skill level or character type. A rule set is used by a MatchmakingConfiguration.

To create a matchmaking rule set, provide unique rule set name and the rule set body in JSON format. Rule sets must be defined in the same Region as the matchmaking configuration they are used with.

Since matchmaking rule sets cannot be edited, it is a good idea to check the rule set syntax using ValidateMatchmakingRuleSet before creating a new rule set.

Learn more

Related operations

" + "documentation":"

Creates a new rule set for FlexMatch matchmaking. A rule set describes the type of match to create, such as the number and size of teams. It also sets the parameters for acceptable player matches, such as minimum skill level or character type. A rule set is used by a MatchmakingConfiguration.

To create a matchmaking rule set, provide unique rule set name and the rule set body in JSON format. Rule sets must be defined in the same Region as the matchmaking configuration they are used with.

Since matchmaking rule sets cannot be edited, it is a good idea to check the rule set syntax using ValidateMatchmakingRuleSet before creating a new rule set.

Learn more

Related operations

" }, "CreatePlayerSession":{ "name":"CreatePlayerSession", @@ -391,7 +391,7 @@ {"shape":"NotFoundException"}, {"shape":"TaggingFailedException"} ], - "documentation":"

Deletes an existing matchmaking rule set. To delete the rule set, provide the rule set name. Rule sets cannot be deleted if they are currently being used by a matchmaking configuration.

Learn more

Related operations

" + "documentation":"

Deletes an existing matchmaking rule set. To delete the rule set, provide the rule set name. Rule sets cannot be deleted if they are currently being used by a matchmaking configuration.

Learn more

Related operations

" }, "DeleteScalingPolicy":{ "name":"DeleteScalingPolicy", @@ -741,7 +741,7 @@ {"shape":"InternalServiceException"}, {"shape":"UnsupportedRegionException"} ], - "documentation":"

Retrieves one or more matchmaking tickets. Use this operation to retrieve ticket information, including--after a successful match is made--connection information for the resulting new game session.

To request matchmaking tickets, provide a list of up to 10 ticket IDs. If the request is successful, a ticket object is returned for each requested ID that currently exists.

This operation is not designed to be continually called to track matchmaking ticket status. This practice can cause you to exceed your API limit, which results in errors. Instead, as a best practice, set up an Amazon Simple Notification Service (SNS) to receive notifications, and provide the topic ARN in the matchmaking configuration. Continuously poling ticket status with DescribeMatchmaking should only be used for games in development with low matchmaking usage.

Learn more

Add FlexMatch to a Game Client

Set Up FlexMatch Event Notification

Related operations

" + "documentation":"

Retrieves one or more matchmaking tickets. Use this operation to retrieve ticket information, including--after a successful match is made--connection information for the resulting new game session.

To request matchmaking tickets, provide a list of up to 10 ticket IDs. If the request is successful, a ticket object is returned for each requested ID that currently exists.

This operation is not designed to be continually called to track matchmaking ticket status. This practice can cause you to exceed your API limit, which results in errors. Instead, as a best practice, set up an Amazon Simple Notification Service (SNS) to receive notifications, and provide the topic ARN in the matchmaking configuration. Continuously poling ticket status with DescribeMatchmaking should only be used for games in development with low matchmaking usage.

Learn more

Add FlexMatch to a Game Client

Set Up FlexMatch Event Notification

Related operations

" }, "DescribeMatchmakingConfigurations":{ "name":"DescribeMatchmakingConfigurations", @@ -756,7 +756,7 @@ {"shape":"InternalServiceException"}, {"shape":"UnsupportedRegionException"} ], - "documentation":"

Retrieves the details of FlexMatch matchmaking configurations.

This operation offers the following options: (1) retrieve all matchmaking configurations, (2) retrieve configurations for a specified list, or (3) retrieve all configurations that use a specified rule set name. When requesting multiple items, use the pagination parameters to retrieve results as a set of sequential pages.

If successful, a configuration is returned for each requested name. When specifying a list of names, only configurations that currently exist are returned.

Learn more

Setting Up FlexMatch Matchmakers

Related operations

" + "documentation":"

Retrieves the details of FlexMatch matchmaking configurations.

This operation offers the following options: (1) retrieve all matchmaking configurations, (2) retrieve configurations for a specified list, or (3) retrieve all configurations that use a specified rule set name. When requesting multiple items, use the pagination parameters to retrieve results as a set of sequential pages.

If successful, a configuration is returned for each requested name. When specifying a list of names, only configurations that currently exist are returned.

Learn more

Setting Up FlexMatch Matchmakers

Related operations

" }, "DescribeMatchmakingRuleSets":{ "name":"DescribeMatchmakingRuleSets", @@ -772,7 +772,7 @@ {"shape":"NotFoundException"}, {"shape":"UnsupportedRegionException"} ], - "documentation":"

Retrieves the details for FlexMatch matchmaking rule sets. You can request all existing rule sets for the Region, or provide a list of one or more rule set names. When requesting multiple items, use the pagination parameters to retrieve results as a set of sequential pages. If successful, a rule set is returned for each requested name.

Learn more

Related operations

" + "documentation":"

Retrieves the details for FlexMatch matchmaking rule sets. You can request all existing rule sets for the Region, or provide a list of one or more rule set names. When requesting multiple items, use the pagination parameters to retrieve results as a set of sequential pages. If successful, a rule set is returned for each requested name.

Learn more

Related operations

" }, "DescribePlayerSessions":{ "name":"DescribePlayerSessions", @@ -1153,7 +1153,7 @@ {"shape":"InternalServiceException"}, {"shape":"UnsupportedRegionException"} ], - "documentation":"

Finds new players to fill open slots in an existing game session. This operation can be used to add players to matched games that start with fewer than the maximum number of players or to replace players when they drop out. By backfilling with the same matchmaker used to create the original match, you ensure that new players meet the match criteria and maintain a consistent experience throughout the game session. You can backfill a match anytime after a game session has been created.

To request a match backfill, specify a unique ticket ID, the existing game session's ARN, a matchmaking configuration, and a set of data that describes all current players in the game session. If successful, a match backfill ticket is created and returned with status set to QUEUED. The ticket is placed in the matchmaker's ticket pool and processed. Track the status of the ticket to respond as needed.

The process of finding backfill matches is essentially identical to the initial matchmaking process. The matchmaker searches the pool and groups tickets together to form potential matches, allowing only one backfill ticket per potential match. Once the a match is formed, the matchmaker creates player sessions for the new players. All tickets in the match are updated with the game session's connection information, and the GameSession object is updated to include matchmaker data on the new players. For more detail on how match backfill requests are processed, see How Amazon GameLift FlexMatch Works.

Learn more

Backfill Existing Games with FlexMatch

How GameLift FlexMatch Works

Related operations

" + "documentation":"

Finds new players to fill open slots in an existing game session. This operation can be used to add players to matched games that start with fewer than the maximum number of players or to replace players when they drop out. By backfilling with the same matchmaker used to create the original match, you ensure that new players meet the match criteria and maintain a consistent experience throughout the game session. You can backfill a match anytime after a game session has been created.

To request a match backfill, specify a unique ticket ID, the existing game session's ARN, a matchmaking configuration, and a set of data that describes all current players in the game session. If successful, a match backfill ticket is created and returned with status set to QUEUED. The ticket is placed in the matchmaker's ticket pool and processed. Track the status of the ticket to respond as needed.

The process of finding backfill matches is essentially identical to the initial matchmaking process. The matchmaker searches the pool and groups tickets together to form potential matches, allowing only one backfill ticket per potential match. Once the a match is formed, the matchmaker creates player sessions for the new players. All tickets in the match are updated with the game session's connection information, and the GameSession object is updated to include matchmaker data on the new players. For more detail on how match backfill requests are processed, see How Amazon GameLift FlexMatch Works.

Learn more

Backfill Existing Games with FlexMatch

How GameLift FlexMatch Works

Related operations

" }, "StartMatchmaking":{ "name":"StartMatchmaking", @@ -1169,7 +1169,7 @@ {"shape":"InternalServiceException"}, {"shape":"UnsupportedRegionException"} ], - "documentation":"

Uses FlexMatch to create a game match for a group of players based on custom matchmaking rules, and starts a new game for the matched players. Each matchmaking request specifies the type of match to build (team configuration, rules for an acceptable match, etc.). The request also specifies the players to find a match for and where to host the new game session for optimal performance. A matchmaking request might start with a single player or a group of players who want to play together. FlexMatch finds additional players as needed to fill the match. Match type, rules, and the queue used to place a new game session are defined in a MatchmakingConfiguration.

To start matchmaking, provide a unique ticket ID, specify a matchmaking configuration, and include the players to be matched. You must also include a set of player attributes relevant for the matchmaking configuration. If successful, a matchmaking ticket is returned with status set to QUEUED.

Track the status of the ticket to respond as needed and acquire game session connection information for successfully completed matches. Ticket status updates are tracked using event notification through Amazon Simple Notification Service (SNS), which is defined in the matchmaking configuration.

Processing a matchmaking request -- FlexMatch handles a matchmaking request as follows:

  1. Your client code submits a StartMatchmaking request for one or more players and tracks the status of the request ticket.

  2. FlexMatch uses this ticket and others in process to build an acceptable match. When a potential match is identified, all tickets in the proposed match are advanced to the next status.

  3. If the match requires player acceptance (set in the matchmaking configuration), the tickets move into status REQUIRES_ACCEPTANCE. This status triggers your client code to solicit acceptance from all players in every ticket involved in the match, and then call AcceptMatch for each player. If any player rejects or fails to accept the match before a specified timeout, the proposed match is dropped (see AcceptMatch for more details).

  4. Once a match is proposed and accepted, the matchmaking tickets move into status PLACING. FlexMatch locates resources for a new game session using the game session queue (set in the matchmaking configuration) and creates the game session based on the match data.

  5. When the match is successfully placed, the matchmaking tickets move into COMPLETED status. Connection information (including game session endpoint and player session) is added to the matchmaking tickets. Matched players can use the connection information to join the game.

Learn more

Add FlexMatch to a Game Client

Set Up FlexMatch Event Notification

FlexMatch Integration Roadmap

How GameLift FlexMatch Works

Related operations

" + "documentation":"

Uses FlexMatch to create a game match for a group of players based on custom matchmaking rules. If you're also using GameLift hosting, a new game session is started for the matched players. Each matchmaking request identifies one or more players to find a match for, and specifies the type of match to build, including the team configuration and the rules for an acceptable match. When a matchmaking request identifies a group of players who want to play together, FlexMatch finds additional players to fill the match. Match type, rules, and other features are defined in a MatchmakingConfiguration.

To start matchmaking, provide a unique ticket ID, specify a matchmaking configuration, and include the players to be matched. For each player, you must also include the player attribute values that are required by the matchmaking configuration (in the rule set). If successful, a matchmaking ticket is returned with status set to QUEUED.

Track the status of the ticket to respond as needed. If you're also using GameLift hosting, a successfully completed ticket contains game session connection information. Ticket status updates are tracked using event notification through Amazon Simple Notification Service (SNS), which is defined in the matchmaking configuration.

Learn more

Add FlexMatch to a Game Client

Set Up FlexMatch Event Notification

FlexMatch Integration Roadmap

How GameLift FlexMatch Works

Related operations

" }, "StopFleetActions":{ "name":"StopFleetActions", @@ -1217,7 +1217,7 @@ {"shape":"InternalServiceException"}, {"shape":"UnsupportedRegionException"} ], - "documentation":"

Cancels a matchmaking ticket or match backfill ticket that is currently being processed. To stop the matchmaking operation, specify the ticket ID. If successful, work on the ticket is stopped, and the ticket status is changed to CANCELLED.

This call is also used to turn off automatic backfill for an individual game session. This is for game sessions that are created with a matchmaking configuration that has automatic backfill enabled. The ticket ID is included in the MatchmakerData of an updated game session object, which is provided to the game server.

If the operation is successful, the service sends back an empty JSON struct with the HTTP 200 response (not an empty HTTP body).

Learn more

Add FlexMatch to a Game Client

Related operations

" + "documentation":"

Cancels a matchmaking ticket or match backfill ticket that is currently being processed. To stop the matchmaking operation, specify the ticket ID. If successful, work on the ticket is stopped, and the ticket status is changed to CANCELLED.

This call is also used to turn off automatic backfill for an individual game session. This is for game sessions that are created with a matchmaking configuration that has automatic backfill enabled. The ticket ID is included in the MatchmakerData of an updated game session object, which is provided to the game server.

If the operation is successful, the service sends back an empty JSON struct with the HTTP 200 response (not an empty HTTP body).

Learn more

Add FlexMatch to a Game Client

Related operations

" }, "SuspendGameServerGroup":{ "name":"SuspendGameServerGroup", @@ -1436,7 +1436,7 @@ {"shape":"InternalServiceException"}, {"shape":"UnsupportedRegionException"} ], - "documentation":"

Updates settings for a FlexMatch matchmaking configuration. These changes affect all matches and game sessions that are created after the update. To update settings, specify the configuration name to be updated and provide the new settings.

Learn more

Design a FlexMatch Matchmaker

Related operations

" + "documentation":"

Updates settings for a FlexMatch matchmaking configuration. These changes affect all matches and game sessions that are created after the update. To update settings, specify the configuration name to be updated and provide the new settings.

Learn more

Design a FlexMatch Matchmaker

Related operations

" }, "UpdateRuntimeConfiguration":{ "name":"UpdateRuntimeConfiguration", @@ -1484,7 +1484,7 @@ {"shape":"UnsupportedRegionException"}, {"shape":"InvalidRequestException"} ], - "documentation":"

Validates the syntax of a matchmaking rule or rule set. This operation checks that the rule set is using syntactically correct JSON and that it conforms to allowed property expressions. To validate syntax, provide a rule set JSON string.

Learn more

Related operations

" + "documentation":"

Validates the syntax of a matchmaking rule or rule set. This operation checks that the rule set is using syntactically correct JSON and that it conforms to allowed property expressions. To validate syntax, provide a rule set JSON string.

Learn more

Related operations

" } }, "shapes":{ @@ -1820,7 +1820,7 @@ }, "StorageLocation":{ "shape":"S3Location", - "documentation":"

Information indicating where your game build files are stored. Use this parameter only when creating a build with files stored in an S3 bucket that you own. The storage location must specify an S3 bucket name and key. The location must also specify a role ARN that you set up to allow Amazon GameLift to access your S3 bucket. The S3 bucket and your new build must be in the same Region.

" + "documentation":"

The location where your game build files are stored. Use this parameter only when creating a build using files that are stored in an S3 bucket that you own. Identify an S3 bucket name and key, which must in the same Region where you're creating a build. This parameter must also specify the ARN for an IAM role that you've set up to give Amazon GameLift access your S3 bucket. To call this operation with a storage location, you must have IAM PassRole permission. For more details on IAM roles and PassRole permissions, see Set up a role for GameLift access.

" }, "OperatingSystem":{ "shape":"OperatingSystem", @@ -1924,7 +1924,7 @@ }, "InstanceRoleArn":{ "shape":"NonEmptyString", - "documentation":"

A unique identifier for an AWS IAM role that manages access to your AWS services. With an instance role ARN set, any application that runs on an instance in this fleet can assume the role, including install scripts, server processes, and daemons (background processes). Create a role or look up a role's ARN from the IAM dashboard in the AWS Management Console. Learn more about using on-box credentials for your game servers at Access external resources from a game server.

" + "documentation":"

A unique identifier for an AWS IAM role that manages access to your AWS services. Fleets with an instance role ARN allow applications that are running on the fleet's instances to assume the role. Learn more about using on-box credentials for your game servers at Access external resources from a game server. To call this operation with instance role ARN, you must have IAM PassRole permissions. See IAM policy examples for GameLift.

" }, "CertificateConfiguration":{ "shape":"CertificateConfiguration", @@ -1996,7 +1996,7 @@ }, "VpcSubnets":{ "shape":"VpcSubnets", - "documentation":"

A list of virtual private cloud (VPC) subnets to use with instances in the game server group. By default, all GameLift FleetIQ-supported Availability Zones are used. You can use this parameter to specify VPCs that you've set up. This property cannot be updated after the game server group is created, and the corresponding Auto Scaling group will always use the property value that is set with this request, even if the Auto Scaling group is updated directly

" + "documentation":"

A list of virtual private cloud (VPC) subnets to use with instances in the game server group. By default, all GameLift FleetIQ-supported Availability Zones are used. You can use this parameter to specify VPCs that you've set up. This property cannot be updated after the game server group is created, and the corresponding Auto Scaling group will always use the property value that is set with this request, even if the Auto Scaling group is updated directly.

" }, "Tags":{ "shape":"TagList", @@ -2107,7 +2107,6 @@ "type":"structure", "required":[ "Name", - "GameSessionQueueArns", "RequestTimeoutSeconds", "AcceptanceRequired", "RuleSetName" @@ -2123,7 +2122,7 @@ }, "GameSessionQueueArns":{ "shape":"QueueArnsList", - "documentation":"

Amazon Resource Name (ARN) that is assigned to a GameLift game session queue resource and uniquely identifies it. ARNs are unique across all Regions. These queues are used when placing game sessions for matches that are created with this matchmaking configuration. Queues can be located in any Region.

" + "documentation":"

Amazon Resource Name (ARN) that is assigned to a GameLift game session queue resource and uniquely identifies it. ARNs are unique across all Regions. Queues can be located in any Region. Queues are used to start new GameLift-hosted game sessions for matches that are created with this matchmaking configuration. If FlexMatchMode is set to STANDALONE, do not set this parameter.

" }, "RequestTimeoutSeconds":{ "shape":"MatchmakingRequestTimeoutInteger", @@ -2131,11 +2130,11 @@ }, "AcceptanceTimeoutSeconds":{ "shape":"MatchmakingAcceptanceTimeoutInteger", - "documentation":"

The length of time (in seconds) to wait for players to accept a proposed match. If any player rejects the match or fails to accept before the timeout, the ticket continues to look for an acceptable match.

" + "documentation":"

The length of time (in seconds) to wait for players to accept a proposed match, if acceptance is required. If any player rejects the match or fails to accept before the timeout, the tickets are returned to the ticket pool and continue to be evaluated for an acceptable match.

" }, "AcceptanceRequired":{ "shape":"BooleanModel", - "documentation":"

A flag that determines whether a match that was created with this configuration must be accepted by the matched players. To require acceptance, set to TRUE.

" + "documentation":"

A flag that determines whether a match that was created with this configuration must be accepted by the matched players. To require acceptance, set to TRUE. With this option enabled, matchmaking tickets use the status REQUIRES_ACCEPTANCE to indicate when a completed potential match is waiting for player acceptance.

" }, "RuleSetName":{ "shape":"MatchmakingRuleSetName", @@ -2147,7 +2146,7 @@ }, "AdditionalPlayerCount":{ "shape":"WholeNumber", - "documentation":"

The number of player slots in a match to keep open for future players. For example, assume that the configuration's rule set specifies a match for a single 12-person team. If the additional player count is set to 2, only 10 players are initially selected for the match.

" + "documentation":"

The number of player slots in a match to keep open for future players. For example, assume that the configuration's rule set specifies a match for a single 12-person team. If the additional player count is set to 2, only 10 players are initially selected for the match. This parameter is not used if FlexMatchMode is set to STANDALONE.

" }, "CustomEventData":{ "shape":"CustomEventData", @@ -2155,15 +2154,19 @@ }, "GameProperties":{ "shape":"GamePropertyList", - "documentation":"

A set of custom properties for a game session, formatted as key-value pairs. These properties are passed to a game server process in the GameSession object with a request to start a new game session (see Start a Game Session). This information is added to the new GameSession object that is created for a successful match.

" + "documentation":"

A set of custom properties for a game session, formatted as key-value pairs. These properties are passed to a game server process in the GameSession object with a request to start a new game session (see Start a Game Session). This information is added to the new GameSession object that is created for a successful match. This parameter is not used if FlexMatchMode is set to STANDALONE.

" }, "GameSessionData":{ "shape":"GameSessionData", - "documentation":"

A set of custom game session properties, formatted as a single string value. This data is passed to a game server process in the GameSession object with a request to start a new game session (see Start a Game Session). This information is added to the new GameSession object that is created for a successful match.

" + "documentation":"

A set of custom game session properties, formatted as a single string value. This data is passed to a game server process in the GameSession object with a request to start a new game session (see Start a Game Session). This information is added to the new GameSession object that is created for a successful match. This parameter is not used if FlexMatchMode is set to STANDALONE.

" }, "BackfillMode":{ "shape":"BackfillMode", - "documentation":"

The method used to backfill game sessions that are created with this matchmaking configuration. Specify MANUAL when your game manages backfill requests manually or does not use the match backfill feature. Specify AUTOMATIC to have GameLift create a StartMatchBackfill request whenever a game session has one or more open slots. Learn more about manual and automatic backfill in Backfill Existing Games with FlexMatch.

" + "documentation":"

The method used to backfill game sessions that are created with this matchmaking configuration. Specify MANUAL when your game manages backfill requests manually or does not use the match backfill feature. Specify AUTOMATIC to have GameLift create a StartMatchBackfill request whenever a game session has one or more open slots. Learn more about manual and automatic backfill in Backfill Existing Games with FlexMatch. Automatic backfill is not available when FlexMatchMode is set to STANDALONE.

" + }, + "FlexMatchMode":{ + "shape":"FlexMatchMode", + "documentation":"

Indicates whether this matchmaking configuration is being used with GameLift hosting or as a standalone matchmaking solution.

  • STANDALONE - FlexMatch forms matches and returns match information, including players and team assignments, in a MatchmakingSucceeded event.

  • WITH_QUEUE - FlexMatch forms matches and uses the specified GameLift queue to start a game session for the match.

" }, "Tags":{ "shape":"TagList", @@ -2292,7 +2295,7 @@ }, "StorageLocation":{ "shape":"S3Location", - "documentation":"

The location of the Amazon S3 bucket where a zipped file containing your Realtime scripts is stored. The storage location must specify the Amazon S3 bucket name, the zip file name (the \"key\"), and a role ARN that allows Amazon GameLift to access the Amazon S3 storage location. The S3 bucket must be in the same Region where you want to create a new script. By default, Amazon GameLift uploads the latest version of the zip file; if you have S3 object versioning turned on, you can use the ObjectVersion parameter to specify an earlier version.

" + "documentation":"

The Amazon S3 location of your Realtime scripts. The storage location must specify the S3 bucket name, the zip file name (the \"key\"), and an IAM role ARN that allows Amazon GameLift to access the S3 storage location. The S3 bucket must be in the same Region where you are creating a new script. By default, Amazon GameLift uploads the latest version of the zip file; if you have S3 object versioning turned on, you can use the ObjectVersion parameter to specify an earlier version. To call this operation with a storage location, you must have IAM PassRole permission. For more details on IAM roles and PassRole permissions, see Set up a role for GameLift access.

" }, "ZipFile":{ "shape":"ZipBlob", @@ -2417,7 +2420,7 @@ }, "DeleteOption":{ "shape":"GameServerGroupDeleteOption", - "documentation":"

The type of delete to perform. Options include the following:

  • SAFE_DELETE – Terminates the game server group and EC2 Auto Scaling group only when it has no game servers that are in UTILIZED status.

  • FORCE_DELETE – Terminates the game server group, including all active game servers regardless of their utilization status, and the EC2 Auto Scaling group.

  • RETAIN – Does a safe delete of the game server group but retains the EC2 Auto Scaling group as is.

" + "documentation":"

The type of delete to perform. Options include the following:

  • SAFE_DELETE – (default) Terminates the game server group and EC2 Auto Scaling group only when it has no game servers that are in UTILIZED status.

  • FORCE_DELETE – Terminates the game server group, including all active game servers regardless of their utilization status, and the EC2 Auto Scaling group.

  • RETAIN – Does a safe delete of the game server group but retains the EC2 Auto Scaling group as is.

" } } }, @@ -3395,6 +3398,14 @@ "c5.12xlarge", "c5.18xlarge", "c5.24xlarge", + "c5a.large", + "c5a.xlarge", + "c5a.2xlarge", + "c5a.4xlarge", + "c5a.8xlarge", + "c5a.12xlarge", + "c5a.16xlarge", + "c5a.24xlarge", "r3.large", "r3.xlarge", "r3.2xlarge", @@ -3414,6 +3425,14 @@ "r5.12xlarge", "r5.16xlarge", "r5.24xlarge", + "r5a.large", + "r5a.xlarge", + "r5a.2xlarge", + "r5a.4xlarge", + "r5a.8xlarge", + "r5a.12xlarge", + "r5a.16xlarge", + "r5a.24xlarge", "m3.medium", "m3.large", "m3.xlarge", @@ -3430,7 +3449,15 @@ "m5.8xlarge", "m5.12xlarge", "m5.16xlarge", - "m5.24xlarge" + "m5.24xlarge", + "m5a.large", + "m5a.xlarge", + "m5a.2xlarge", + "m5a.4xlarge", + "m5a.8xlarge", + "m5a.12xlarge", + "m5a.16xlarge", + "m5a.24xlarge" ] }, "Event":{ @@ -3608,7 +3635,7 @@ }, "InstanceRoleArn":{ "shape":"NonEmptyString", - "documentation":"

A unique identifier for an AWS IAM role that manages access to your AWS services. With an instance role ARN set, any application that runs on an instance in this fleet can assume the role, including install scripts, server processes, and daemons (background processes). Create a role or look up a role's ARN from the IAM dashboard in the AWS Management Console. Learn more about using on-box credentials for your game servers at Access external resources from a game server.

" + "documentation":"

A unique identifier for an AWS IAM role that manages access to your AWS services.

" }, "CertificateConfiguration":{ "shape":"CertificateConfiguration", @@ -3720,6 +3747,13 @@ "type":"list", "member":{"shape":"FleetUtilization"} }, + "FlexMatchMode":{ + "type":"string", + "enum":[ + "STANDALONE", + "WITH_QUEUE" + ] + }, "Float":{"type":"float"}, "FreeText":{"type":"string"}, "GameProperty":{ @@ -4132,7 +4166,7 @@ }, "MatchmakerData":{ "shape":"MatchmakerData", - "documentation":"

Information about the matchmaking process that was used to create the game session. It is in JSON syntax, formatted as a string. In addition the matchmaking configuration used, it contains data on all players assigned to the match, including player attributes and team assignments. For more details on matchmaker data, see Match Data. Matchmaker data is useful when requesting match backfills, and is updated whenever new players are added during a successful backfill (see StartMatchBackfill).

" + "documentation":"

Information about the matchmaking process that was used to create the game session. It is in JSON syntax, formatted as a string. In addition the matchmaking configuration used, it contains data on all players assigned to the match, including player attributes and team assignments. For more details on matchmaker data, see Match Data. Matchmaker data is useful when requesting match backfills, and is updated whenever new players are added during a successful backfill (see StartMatchBackfill).

" } }, "documentation":"

Properties describing a game session.

A game session in ACTIVE status can host players. When a game session ends, its status is set to TERMINATED.

Once the session ends, the game session object is retained for 30 days. This means you can reuse idempotency token values after this time. Game session logs are retained for 14 days.

" @@ -4166,7 +4200,7 @@ "documentation":"

A collection of player session IDs, one for each player ID that was included in the original matchmaking request.

" } }, - "documentation":"

Connection information for the new game session that is created with matchmaking. (with StartMatchmaking). Once a match is set, the FlexMatch engine places the match and creates a new game session for it. This information, including the game session endpoint and player sessions for each player in the original matchmaking request, is added to the MatchmakingTicket, which can be retrieved by calling DescribeMatchmaking.

" + "documentation":"

Connection information for a new game session that is created in response to a StartMatchmaking request. Once a match is made, the FlexMatch engine creates a new game session for it. This information, including the game session endpoint and player sessions for each player in the original matchmaking request, is added to the MatchmakingTicket, which can be retrieved by calling DescribeMatchmaking.

" }, "GameSessionData":{ "type":"string", @@ -4276,7 +4310,7 @@ }, "MatchmakerData":{ "shape":"MatchmakerData", - "documentation":"

Information on the matchmaking process for this game. Data is in JSON syntax, formatted as a string. It identifies the matchmaking configuration used to create the match, and contains data on all players assigned to the match, including player attributes and team assignments. For more details on matchmaker data, see Match Data.

" + "documentation":"

Information on the matchmaking process for this game. Data is in JSON syntax, formatted as a string. It identifies the matchmaking configuration used to create the match, and contains data on all players assigned to the match, including player attributes and team assignments. For more details on matchmaker data, see Match Data.

" } }, "documentation":"

Object that describes a StartGameSessionPlacement request. This object includes the full details of the original request plus the current status and start/end time stamps.

Game session placement-related operations include:

" @@ -4927,7 +4961,7 @@ }, "ConfigurationArn":{ "shape":"MatchmakingConfigurationArn", - "documentation":"

Amazon Resource Name (ARN) that is assigned to a GameLift matchmaking configuration resource and uniquely identifies it. ARNs are unique across all Regions. In a GameLift configuration ARN, the resource ID matches the Name value.

" + "documentation":"

Amazon Resource Name (ARN) that is assigned to a GameLift matchmaking configuration resource and uniquely identifies it. ARNs are unique across all Regions. In a GameLift configuration ARN, the resource ID matches the Name value.

" }, "Description":{ "shape":"NonZeroAndMaxString", @@ -4935,7 +4969,7 @@ }, "GameSessionQueueArns":{ "shape":"QueueArnsList", - "documentation":"

Amazon Resource Name (ARN) that is assigned to a GameLift game session queue resource and uniquely identifies it. ARNs are unique across all Regions. GameLift uses the listed queues when placing game sessions for matches that are created with this matchmaking configuration. Queues can be located in any Region.

" + "documentation":"

Amazon Resource Name (ARN) that is assigned to a GameLift game session queue resource and uniquely identifies it. ARNs are unique across all Regions. Queues can be located in any Region. Queues are used to start new GameLift-hosted game sessions for matches that are created with this matchmaking configuration. Thais property is not set when FlexMatchMode is set to STANDALONE.

" }, "RequestTimeoutSeconds":{ "shape":"MatchmakingRequestTimeoutInteger", @@ -4943,11 +4977,11 @@ }, "AcceptanceTimeoutSeconds":{ "shape":"MatchmakingAcceptanceTimeoutInteger", - "documentation":"

The length of time (in seconds) to wait for players to accept a proposed match. If any player rejects the match or fails to accept before the timeout, the ticket continues to look for an acceptable match.

" + "documentation":"

The length of time (in seconds) to wait for players to accept a proposed match, if acceptance is required. If any player rejects the match or fails to accept before the timeout, the tickets are returned to the ticket pool and continue to be evaluated for an acceptable match.

" }, "AcceptanceRequired":{ "shape":"BooleanModel", - "documentation":"

A flag that indicates whether a match that was created with this configuration must be accepted by the matched players. To require acceptance, set to TRUE.

" + "documentation":"

A flag that indicates whether a match that was created with this configuration must be accepted by the matched players. To require acceptance, set to TRUE. When this option is enabled, matchmaking tickets use the status REQUIRES_ACCEPTANCE to indicate when a completed potential match is waiting for player acceptance.

" }, "RuleSetName":{ "shape":"MatchmakingIdStringModel", @@ -4963,7 +4997,7 @@ }, "AdditionalPlayerCount":{ "shape":"WholeNumber", - "documentation":"

The number of player slots in a match to keep open for future players. For example, assume that the configuration's rule set specifies a match for a single 12-person team. If the additional player count is set to 2, only 10 players are initially selected for the match.

" + "documentation":"

The number of player slots in a match to keep open for future players. For example, assume that the configuration's rule set specifies a match for a single 12-person team. If the additional player count is set to 2, only 10 players are initially selected for the match. This parameter is not used when FlexMatchMode is set to STANDALONE.

" }, "CustomEventData":{ "shape":"CustomEventData", @@ -4975,15 +5009,19 @@ }, "GameProperties":{ "shape":"GamePropertyList", - "documentation":"

A set of custom properties for a game session, formatted as key-value pairs. These properties are passed to a game server process in the GameSession object with a request to start a new game session (see Start a Game Session). This information is added to the new GameSession object that is created for a successful match.

" + "documentation":"

A set of custom properties for a game session, formatted as key-value pairs. These properties are passed to a game server process in the GameSession object with a request to start a new game session (see Start a Game Session). This information is added to the new GameSession object that is created for a successful match. This parameter is not used when FlexMatchMode is set to STANDALONE.

" }, "GameSessionData":{ "shape":"GameSessionData", - "documentation":"

A set of custom game session properties, formatted as a single string value. This data is passed to a game server process in the GameSession object with a request to start a new game session (see Start a Game Session). This information is added to the new GameSession object that is created for a successful match.

" + "documentation":"

A set of custom game session properties, formatted as a single string value. This data is passed to a game server process in the GameSession object with a request to start a new game session (see Start a Game Session). This information is added to the new GameSession object that is created for a successful match. This parameter is not used when FlexMatchMode is set to STANDALONE.

" }, "BackfillMode":{ "shape":"BackfillMode", - "documentation":"

The method used to backfill game sessions created with this matchmaking configuration. MANUAL indicates that the game makes backfill requests or does not use the match backfill feature. AUTOMATIC indicates that GameLift creates StartMatchBackfill requests whenever a game session has one or more open slots. Learn more about manual and automatic backfill in Backfill Existing Games with FlexMatch.

" + "documentation":"

The method used to backfill game sessions created with this matchmaking configuration. MANUAL indicates that the game makes backfill requests or does not use the match backfill feature. AUTOMATIC indicates that GameLift creates StartMatchBackfill requests whenever a game session has one or more open slots. Learn more about manual and automatic backfill in Backfill Existing Games with FlexMatch. Automatic backfill is not available when FlexMatchMode is set to STANDALONE.

" + }, + "FlexMatchMode":{ + "shape":"FlexMatchMode", + "documentation":"

Indicates whether this matchmaking configuration is being used with GameLift hosting or as a standalone matchmaking solution.

  • STANDALONE - FlexMatch forms matches and returns match information, including players and team assignments, in a MatchmakingSucceeded event.

  • WITH_QUEUE - FlexMatch forms matches and uses the specified GameLift queue to start a game session for the match.

" } }, "documentation":"

Guidelines for use with FlexMatch to match players into games. All matchmaking requests must specify a matchmaking configuration.

" @@ -5055,7 +5093,7 @@ "documentation":"

The time stamp indicating when this data object was created. The format is a number expressed in Unix time as milliseconds (for example \"1469498468.057\").

" } }, - "documentation":"

Set of rule statements, used with FlexMatch, that determine how to build your player matches. Each rule set describes a type of group to be created and defines the parameters for acceptable player matches. Rule sets are used in MatchmakingConfiguration objects.

A rule set may define the following elements for a match. For detailed information and examples showing how to construct a rule set, see Build a FlexMatch Rule Set.

  • Teams -- Required. A rule set must define one or multiple teams for the match and set minimum and maximum team sizes. For example, a rule set might describe a 4x4 match that requires all eight slots to be filled.

  • Player attributes -- Optional. These attributes specify a set of player characteristics to evaluate when looking for a match. Matchmaking requests that use a rule set with player attributes must provide the corresponding attribute values. For example, an attribute might specify a player's skill or level.

  • Rules -- Optional. Rules define how to evaluate potential players for a match based on player attributes. A rule might specify minimum requirements for individual players, teams, or entire matches. For example, a rule might require each player to meet a certain skill level, each team to have at least one player in a certain role, or the match to have a minimum average skill level. or may describe an entire group--such as all teams must be evenly matched or have at least one player in a certain role.

  • Expansions -- Optional. Expansions allow you to relax the rules after a period of time when no acceptable matches are found. This feature lets you balance getting players into games in a reasonable amount of time instead of making them wait indefinitely for the best possible match. For example, you might use an expansion to increase the maximum skill variance between players after 30 seconds.

" + "documentation":"

Set of rule statements, used with FlexMatch, that determine how to build your player matches. Each rule set describes a type of group to be created and defines the parameters for acceptable player matches. Rule sets are used in MatchmakingConfiguration objects.

A rule set may define the following elements for a match. For detailed information and examples showing how to construct a rule set, see Build a FlexMatch Rule Set.

  • Teams -- Required. A rule set must define one or multiple teams for the match and set minimum and maximum team sizes. For example, a rule set might describe a 4x4 match that requires all eight slots to be filled.

  • Player attributes -- Optional. These attributes specify a set of player characteristics to evaluate when looking for a match. Matchmaking requests that use a rule set with player attributes must provide the corresponding attribute values. For example, an attribute might specify a player's skill or level.

  • Rules -- Optional. Rules define how to evaluate potential players for a match based on player attributes. A rule might specify minimum requirements for individual players, teams, or entire matches. For example, a rule might require each player to meet a certain skill level, each team to have at least one player in a certain role, or the match to have a minimum average skill level. or may describe an entire group--such as all teams must be evenly matched or have at least one player in a certain role.

  • Expansions -- Optional. Expansions allow you to relax the rules after a period of time when no acceptable matches are found. This feature lets you balance getting players into games in a reasonable amount of time instead of making them wait indefinitely for the best possible match. For example, you might use an expansion to increase the maximum skill variance between players after 30 seconds.

" }, "MatchmakingRuleSetArn":{ "type":"string", @@ -5119,7 +5157,7 @@ }, "GameSessionConnectionInfo":{ "shape":"GameSessionConnectionInfo", - "documentation":"

Identifier and connection information of the game session created for the match. This information is added to the ticket only after the matchmaking request has been successfully completed.

" + "documentation":"

Identifier and connection information of the game session created for the match. This information is added to the ticket only after the matchmaking request has been successfully completed. This parameter is not set when FlexMatch is being used without GameLift hosting.

" }, "EstimatedWaitTime":{ "shape":"WholeNumber", @@ -5974,7 +6012,6 @@ "type":"structure", "required":[ "ConfigurationName", - "GameSessionArn", "Players" ], "members":{ @@ -5992,7 +6029,7 @@ }, "Players":{ "shape":"PlayerList", - "documentation":"

Match information on all players that are currently assigned to the game session. This information is used by the matchmaker to find new players and add them to the existing game.

  • PlayerID, PlayerAttributes, Team -\\\\- This information is maintained in the GameSession object, MatchmakerData property, for all players who are currently assigned to the game session. The matchmaker data is in JSON syntax, formatted as a string. For more details, see Match Data.

  • LatencyInMs -\\\\- If the matchmaker uses player latency, include a latency value, in milliseconds, for the Region that the game session is currently in. Do not include latency values for any other Region.

" + "documentation":"

Match information on all players that are currently assigned to the game session. This information is used by the matchmaker to find new players and add them to the existing game.

  • PlayerID, PlayerAttributes, Team -\\\\- This information is maintained in the GameSession object, MatchmakerData property, for all players who are currently assigned to the game session. The matchmaker data is in JSON syntax, formatted as a string. For more details, see Match Data.

  • LatencyInMs -\\\\- If the matchmaker uses player latency, include a latency value, in milliseconds, for the Region that the game session is currently in. Do not include latency values for any other Region.

" } }, "documentation":"

Represents the input for a request operation.

" @@ -6595,7 +6632,7 @@ }, "GameSessionQueueArns":{ "shape":"QueueArnsList", - "documentation":"

Amazon Resource Name (ARN) that is assigned to a GameLift game session queue resource and uniquely identifies it. ARNs are unique across all Regions. These queues are used when placing game sessions for matches that are created with this matchmaking configuration. Queues can be located in any Region.

" + "documentation":"

Amazon Resource Name (ARN) that is assigned to a GameLift game session queue resource and uniquely identifies it. ARNs are unique across all Regions. Queues can be located in any Region. Queues are used to start new GameLift-hosted game sessions for matches that are created with this matchmaking configuration. If FlexMatchMode is set to STANDALONE, do not set this parameter.

" }, "RequestTimeoutSeconds":{ "shape":"MatchmakingRequestTimeoutInteger", @@ -6603,11 +6640,11 @@ }, "AcceptanceTimeoutSeconds":{ "shape":"MatchmakingAcceptanceTimeoutInteger", - "documentation":"

The length of time (in seconds) to wait for players to accept a proposed match. If any player rejects the match or fails to accept before the timeout, the ticket continues to look for an acceptable match.

" + "documentation":"

The length of time (in seconds) to wait for players to accept a proposed match, if acceptance is required. If any player rejects the match or fails to accept before the timeout, the tickets are returned to the ticket pool and continue to be evaluated for an acceptable match.

" }, "AcceptanceRequired":{ "shape":"BooleanModel", - "documentation":"

A flag that indicates whether a match that was created with this configuration must be accepted by the matched players. To require acceptance, set to TRUE.

" + "documentation":"

A flag that indicates whether a match that was created with this configuration must be accepted by the matched players. To require acceptance, set to TRUE. With this option enabled, matchmaking tickets use the status REQUIRES_ACCEPTANCE to indicate when a completed potential match is waiting for player acceptance.

" }, "RuleSetName":{ "shape":"MatchmakingRuleSetName", @@ -6615,11 +6652,11 @@ }, "NotificationTarget":{ "shape":"SnsArnStringModel", - "documentation":"

An SNS topic ARN that is set up to receive matchmaking notifications. See Setting up Notifications for Matchmaking for more information.

" + "documentation":"

An SNS topic ARN that is set up to receive matchmaking notifications. See Setting up Notifications for Matchmaking for more information.

" }, "AdditionalPlayerCount":{ "shape":"WholeNumber", - "documentation":"

The number of player slots in a match to keep open for future players. For example, assume that the configuration's rule set specifies a match for a single 12-person team. If the additional player count is set to 2, only 10 players are initially selected for the match.

" + "documentation":"

The number of player slots in a match to keep open for future players. For example, assume that the configuration's rule set specifies a match for a single 12-person team. If the additional player count is set to 2, only 10 players are initially selected for the match. This parameter is not used if FlexMatchMode is set to STANDALONE.

" }, "CustomEventData":{ "shape":"CustomEventData", @@ -6627,15 +6664,19 @@ }, "GameProperties":{ "shape":"GamePropertyList", - "documentation":"

A set of custom properties for a game session, formatted as key-value pairs. These properties are passed to a game server process in the GameSession object with a request to start a new game session (see Start a Game Session). This information is added to the new GameSession object that is created for a successful match.

" + "documentation":"

A set of custom properties for a game session, formatted as key-value pairs. These properties are passed to a game server process in the GameSession object with a request to start a new game session (see Start a Game Session). This information is added to the new GameSession object that is created for a successful match. This parameter is not used if FlexMatchMode is set to STANDALONE.

" }, "GameSessionData":{ "shape":"GameSessionData", - "documentation":"

A set of custom game session properties, formatted as a single string value. This data is passed to a game server process in the GameSession object with a request to start a new game session (see Start a Game Session). This information is added to the new GameSession object that is created for a successful match.

" + "documentation":"

A set of custom game session properties, formatted as a single string value. This data is passed to a game server process in the GameSession object with a request to start a new game session (see Start a Game Session). This information is added to the new GameSession object that is created for a successful match. This parameter is not used if FlexMatchMode is set to STANDALONE.

" }, "BackfillMode":{ "shape":"BackfillMode", - "documentation":"

The method that is used to backfill game sessions created with this matchmaking configuration. Specify MANUAL when your game manages backfill requests manually or does not use the match backfill feature. Specify AUTOMATIC to have GameLift create a StartMatchBackfill request whenever a game session has one or more open slots. Learn more about manual and automatic backfill in Backfill Existing Games with FlexMatch.

" + "documentation":"

The method that is used to backfill game sessions created with this matchmaking configuration. Specify MANUAL when your game manages backfill requests manually or does not use the match backfill feature. Specify AUTOMATIC to have GameLift create a StartMatchBackfill request whenever a game session has one or more open slots. Learn more about manual and automatic backfill in Backfill Existing Games with FlexMatch. Automatic backfill is not available when FlexMatchMode is set to STANDALONE.

" + }, + "FlexMatchMode":{ + "shape":"FlexMatchMode", + "documentation":"

Indicates whether this matchmaking configuration is being used with GameLift hosting or as a standalone matchmaking solution.

  • STANDALONE - FlexMatch forms matches and returns match information, including players and team assignments, in a MatchmakingSucceeded event.

  • WITH_QUEUE - FlexMatch forms matches and uses the specified GameLift queue to start a game session for the match.

" } }, "documentation":"

Represents the input for a request operation.

" @@ -6696,7 +6737,7 @@ }, "StorageLocation":{ "shape":"S3Location", - "documentation":"

The location of the Amazon S3 bucket where a zipped file containing your Realtime scripts is stored. The storage location must specify the Amazon S3 bucket name, the zip file name (the \"key\"), and a role ARN that allows Amazon GameLift to access the Amazon S3 storage location. The S3 bucket must be in the same Region where you want to create a new script. By default, Amazon GameLift uploads the latest version of the zip file; if you have S3 object versioning turned on, you can use the ObjectVersion parameter to specify an earlier version.

" + "documentation":"

The Amazon S3 location of your Realtime scripts. The storage location must specify the S3 bucket name, the zip file name (the \"key\"), and an IAM role ARN that allows Amazon GameLift to access the S3 storage location. The S3 bucket must be in the same Region as the script you're updating. By default, Amazon GameLift uploads the latest version of the zip file; if you have S3 object versioning turned on, you can use the ObjectVersion parameter to specify an earlier version. To call this operation with a storage location, you must have IAM PassRole permission. For more details on IAM roles and PassRole permissions, see Set up a role for GameLift access.

" }, "ZipFile":{ "shape":"ZipBlob", From 81e0b388983d893f3080acf6a66d67866f558166 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 24 Nov 2020 19:09:34 +0000 Subject: [PATCH 294/339] Amazon QuickSight Update: Support for embedding without user registration. New enum EmbeddingIdentityType. A potential breaking change. Affects code that refers IdentityType enum type directly instead of literal string value. --- .../feature-AmazonQuickSight-8a1e822.json | 6 +++ .../codegen-resources/service-2.json | 50 +++++++++++++++++-- 2 files changed, 52 insertions(+), 4 deletions(-) create mode 100644 .changes/next-release/feature-AmazonQuickSight-8a1e822.json diff --git a/.changes/next-release/feature-AmazonQuickSight-8a1e822.json b/.changes/next-release/feature-AmazonQuickSight-8a1e822.json new file mode 100644 index 000000000000..c5e21bb93b1f --- /dev/null +++ b/.changes/next-release/feature-AmazonQuickSight-8a1e822.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon QuickSight", + "contributor": "", + "description": "Support for embedding without user registration. New enum EmbeddingIdentityType. A potential breaking change. Affects code that refers IdentityType enum type directly instead of literal string value." +} diff --git a/services/quicksight/src/main/resources/codegen-resources/service-2.json b/services/quicksight/src/main/resources/codegen-resources/service-2.json index d2e7de23d422..5485e4030ec2 100644 --- a/services/quicksight/src/main/resources/codegen-resources/service-2.json +++ b/services/quicksight/src/main/resources/codegen-resources/service-2.json @@ -977,6 +977,7 @@ {"shape":"IdentityTypeNotSupportedException"}, {"shape":"SessionLifetimeInMinutesInvalidException"}, {"shape":"UnsupportedUserEditionException"}, + {"shape":"UnsupportedPricingPlanException"}, {"shape":"InternalFailureException"} ], "documentation":"

Generates a session URL and authorization code that you can use to embed an Amazon QuickSight read-only dashboard in your web server code. Before you use this command, make sure that you have configured the dashboards and permissions.

Currently, you can use GetDashboardEmbedURL only from the server, not from the user's browser. The following rules apply to the combination of URL and authorization code:

  • They must be used together.

  • They can be used one time only.

  • They are valid for 5 minutes after you run this command.

  • The resulting user session is valid for 10 hours.

For more information, see Embedding Amazon QuickSight in the Amazon QuickSight User Guide .

" @@ -1931,6 +1932,12 @@ }, "documentation":"

Ad hoc (one-time) filtering option.

" }, + "AdditionalDashboardIdList":{ + "type":"list", + "member":{"shape":"RestrictiveResourceId"}, + "max":20, + "min":1 + }, "AliasName":{ "type":"string", "max":2048, @@ -3983,7 +3990,7 @@ }, "ColumnLevelPermissionRulesApplied":{ "shape":"Boolean", - "documentation":"

Indicates if the dataset has column level permission configured.

" + "documentation":"

Indicates if the dataset has column level permission configured.

" } }, "documentation":"

Dataset summary.

" @@ -5938,6 +5945,14 @@ "ENTERPRISE" ] }, + "EmbeddingIdentityType":{ + "type":"string", + "enum":[ + "IAM", + "QUICKSIGHT", + "ANONYMOUS" + ] + }, "EmbeddingUrl":{ "type":"string", "sensitive":true @@ -6076,7 +6091,7 @@ "locationName":"DashboardId" }, "IdentityType":{ - "shape":"IdentityType", + "shape":"EmbeddingIdentityType", "documentation":"

The authentication method that the user uses to sign in.

", "location":"querystring", "locationName":"creds-type" @@ -6110,8 +6125,21 @@ "documentation":"

The Amazon QuickSight user's Amazon Resource Name (ARN), for use with QUICKSIGHT identity type. You can use this for any Amazon QuickSight users in your account (readers, authors, or admins) authenticated as one of the following:

  • Active Directory (AD) users or group members

  • Invited nonfederated users

  • IAM users and IAM role-based sessions authenticated through Federated Single Sign-On using SAML, OpenID Connect, or IAM federation.

Omit this parameter for users in the third group – IAM users and IAM role-based sessions.

", "location":"querystring", "locationName":"user-arn" + }, + "Namespace":{ + "shape":"Namespace", + "documentation":"

The QuickSight namespace that contains the dashboard IDs in this request. If you're not using a custom namespace, set this to \"default\".

", + "location":"querystring", + "locationName":"namespace" + }, + "AdditionalDashboardIds":{ + "shape":"AdditionalDashboardIdList", + "documentation":"

A list of one or more dashboard ids that you want to add to a session that includes anonymous authorizations. IdentityType must be set to ANONYMOUS for this to work, because other other identity types authenticate as QuickSight users. For example, if you set \"--dashboard-id dash_id1 --dashboard-id dash_id2 dash_id3 identity-type ANONYMOUS\", the session can access all three dashboards.

", + "location":"querystring", + "locationName":"additional-dashboard-ids" } - } + }, + "documentation":"

Parameter input for the GetDashboardEmbedUrl operation.

" }, "GetDashboardEmbedUrlResponse":{ "type":"structure", @@ -6129,7 +6157,8 @@ "shape":"String", "documentation":"

The AWS request ID for this operation.

" } - } + }, + "documentation":"

Output returned from the GetDashboardEmbedUrl operation.

" }, "GetSessionEmbedUrlRequest":{ "type":"structure", @@ -9619,6 +9648,19 @@ }, "documentation":"

The theme colors that apply to UI and to charts, excluding data colors. The colors description is a hexadecimal color code that consists of six alphanumerical characters, prefixed with #, for example #37BFF5. For more information, see Using Themes in Amazon QuickSight in the Amazon QuickSight User Guide.

" }, + "UnsupportedPricingPlanException":{ + "type":"structure", + "members":{ + "Message":{"shape":"String"}, + "RequestId":{ + "shape":"String", + "documentation":"

The AWS request ID for this request.

" + } + }, + "documentation":"

This error indicates that you are calling an embedding operation in Amazon QuickSight without the required pricing plan on your AWS account. Before you can use anonymous embedding, a QuickSight administrator needs to add capacity pricing to QuickSight. You can do this on the Manage QuickSight page.

After capacity pricing is added, you can enable anonymous embedding by using the GetDashboardEmbedUrl API operation with the --identity-type ANONYMOUS option.

", + "error":{"httpStatusCode":403}, + "exception":true + }, "UnsupportedUserEditionException":{ "type":"structure", "members":{ From cb6df91794063d81cebb864d6d760e8e64424a86 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 24 Nov 2020 19:09:31 +0000 Subject: [PATCH 295/339] Amazon Timestream Write Update: Adds support of upserts for idempotent updates to Timestream. --- ...feature-AmazonTimestreamWrite-8adb878.json | 6 +++++ .../codegen-resources/service-2.json | 24 +++++++++++++++---- 2 files changed, 25 insertions(+), 5 deletions(-) create mode 100644 .changes/next-release/feature-AmazonTimestreamWrite-8adb878.json diff --git a/.changes/next-release/feature-AmazonTimestreamWrite-8adb878.json b/.changes/next-release/feature-AmazonTimestreamWrite-8adb878.json new file mode 100644 index 000000000000..5999098194c6 --- /dev/null +++ b/.changes/next-release/feature-AmazonTimestreamWrite-8adb878.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Timestream Write", + "contributor": "", + "description": "Adds support of upserts for idempotent updates to Timestream." +} diff --git a/services/timestreamwrite/src/main/resources/codegen-resources/service-2.json b/services/timestreamwrite/src/main/resources/codegen-resources/service-2.json index 2c184eb3e562..9ced833c8668 100644 --- a/services/timestreamwrite/src/main/resources/codegen-resources/service-2.json +++ b/services/timestreamwrite/src/main/resources/codegen-resources/service-2.json @@ -70,7 +70,7 @@ {"shape":"AccessDeniedException"}, {"shape":"InvalidEndpointException"} ], - "documentation":"

Deletes a given Timestream database. This is an irreversible operation. After a database is deleted, the time series data from its tables cannot be recovered.

All tables in the database must be deleted first, or a ValidationException error will be thrown.

", + "documentation":"

Deletes a given Timestream database. This is an irreversible operation. After a database is deleted, the time series data from its tables cannot be recovered.

All tables in the database must be deleted first, or a ValidationException error will be thrown.

Due to the nature of distributed retries, the operation can return either success or a ResourceNotFoundException. Clients should consider them equivalent.

", "endpointdiscovery":{"required":true} }, "DeleteTable":{ @@ -88,7 +88,7 @@ {"shape":"AccessDeniedException"}, {"shape":"InvalidEndpointException"} ], - "documentation":"

Deletes a given Timestream table. This is an irreversible operation. After a Timestream database table is deleted, the time series data stored in the table cannot be recovered.

", + "documentation":"

Deletes a given Timestream table. This is an irreversible operation. After a Timestream database table is deleted, the time series data stored in the table cannot be recovered.

Due to the nature of distributed retries, the operation can return either success or a ResourceNotFoundException. Clients should consider them equivalent.

", "endpointdiscovery":{"required":true} }, "DescribeDatabase":{ @@ -192,6 +192,7 @@ "output":{"shape":"ListTagsForResourceResponse"}, "errors":[ {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, {"shape":"ValidationException"}, {"shape":"InvalidEndpointException"} ], @@ -209,6 +210,7 @@ "errors":[ {"shape":"ResourceNotFoundException"}, {"shape":"ServiceQuotaExceededException"}, + {"shape":"ThrottlingException"}, {"shape":"ValidationException"}, {"shape":"InvalidEndpointException"} ], @@ -226,6 +228,7 @@ "errors":[ {"shape":"ValidationException"}, {"shape":"ServiceQuotaExceededException"}, + {"shape":"ThrottlingException"}, {"shape":"ResourceNotFoundException"}, {"shape":"InvalidEndpointException"} ], @@ -507,7 +510,7 @@ "members":{ "Name":{ "shape":"StringValue256", - "documentation":"

Dimension represents the meta data attributes of the time series. For example, the name and availability zone of an EC2 instance or the name of the manufacturer of a wind turbine are dimensions. Dimension names can only contain alphanumeric characters and underscores. Dimension names cannot end with an underscore.

" + "documentation":"

Dimension represents the meta data attributes of the time series. For example, the name and availability zone of an EC2 instance or the name of the manufacturer of a wind turbine are dimensions.

For constraints on Dimension names, see Naming Constraints.

" }, "Value":{ "shape":"StringValue2048", @@ -692,16 +695,22 @@ }, "Time":{ "shape":"StringValue256", - "documentation":"

Contains the time at which the measure value for the data point was collected.

" + "documentation":"

Contains the time at which the measure value for the data point was collected. The time value plus the unit provides the time elapsed since the epoch. For example, if the time value is 12345 and the unit is ms, then 12345 ms have elapsed since the epoch.

" }, "TimeUnit":{ "shape":"TimeUnit", "documentation":"

The granularity of the timestamp unit. It indicates if the time value is in seconds, milliseconds, nanoseconds or other supported values.

" + }, + "Version":{ + "shape":"RecordVersion", + "documentation":"

64-bit attribute used for record updates. Write requests for duplicate data with a higher version number will update the existing measure value and version. In cases where the measure value is the same, Version will still be updated . Default value is to 1.

", + "box":true } }, "documentation":"

Record represents a time series data point being written into Timestream. Each record contains an array of dimensions. Dimensions represent the meta data attributes of a time series data point such as the instance name or availability zone of an EC2 instance. A record also contains the measure name which is the name of the measure being collected for example the CPU utilization of an EC2 instance. A record also contains the measure value and the value type which is the data type of the measure value. In addition, the record contains the timestamp when the measure was collected that the timestamp unit which represents the granularity of the timestamp.

" }, "RecordIndex":{"type":"integer"}, + "RecordVersion":{"type":"long"}, "Records":{ "type":"list", "member":{"shape":"Record"}, @@ -717,7 +726,12 @@ }, "Reason":{ "shape":"ErrorMessage", - "documentation":"

The reason why a record was not successfully inserted into Timestream. Possible causes of failure include:

  • Records with duplicate data where there are multiple records with the same dimensions, timestamps, and measure names but different measure values.

  • Records with timestamps that lie outside the retention duration of the memory store

  • Records with dimensions or measures that exceed the Timestream defined limits.

For more information, see Access Management in the Timestream Developer Guide.

" + "documentation":"

The reason why a record was not successfully inserted into Timestream. Possible causes of failure include:

  • Records with duplicate data where there are multiple records with the same dimensions, timestamps, and measure names but different measure values.

  • Records with timestamps that lie outside the retention duration of the memory store

    When the retention window is updated, you will receive a RejectedRecords exception if you immediately try to ingest data within the new window. To avoid a RejectedRecords exception, wait until the duration of the new window to ingest new data. For further information, see Best Practices for Configuring Timestream and the explanation of how storage works in Timestream.

  • Records with dimensions or measures that exceed the Timestream defined limits.

For more information, see Access Management in the Timestream Developer Guide.

" + }, + "ExistingVersion":{ + "shape":"RecordVersion", + "documentation":"

The existing version of the record. This value is populated in scenarios where an identical record exists with a higher version than the version in the write request.

", + "box":true } }, "documentation":"

Records that were not successfully inserted into Timestream due to data validation issues that must be resolved prior to reinserting time series data into the system.

" From f90c7a47e78cede49f505523f518feec67ba6b97 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 24 Nov 2020 19:09:42 +0000 Subject: [PATCH 296/339] AWS IoT SiteWise Update: This release adds support for customer managed customer master key (CMK) based encryption in IoT SiteWise. --- .../feature-AWSIoTSiteWise-bf4dfc0.json | 6 + .../codegen-resources/service-2.json | 152 +++++++++++++++++- 2 files changed, 155 insertions(+), 3 deletions(-) create mode 100644 .changes/next-release/feature-AWSIoTSiteWise-bf4dfc0.json diff --git a/.changes/next-release/feature-AWSIoTSiteWise-bf4dfc0.json b/.changes/next-release/feature-AWSIoTSiteWise-bf4dfc0.json new file mode 100644 index 000000000000..c2dd8b78a709 --- /dev/null +++ b/.changes/next-release/feature-AWSIoTSiteWise-bf4dfc0.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS IoT SiteWise", + "contributor": "", + "description": "This release adds support for customer managed customer master key (CMK) based encryption in IoT SiteWise." +} diff --git a/services/iotsitewise/src/main/resources/codegen-resources/service-2.json b/services/iotsitewise/src/main/resources/codegen-resources/service-2.json index 3b4248128126..995f540b24b9 100644 --- a/services/iotsitewise/src/main/resources/codegen-resources/service-2.json +++ b/services/iotsitewise/src/main/resources/codegen-resources/service-2.json @@ -219,7 +219,7 @@ {"shape":"InternalFailureException"}, {"shape":"ThrottlingException"} ], - "documentation":"

Creates a pre-signed URL to a portal. Use this operation to create URLs to portals that use AWS Identity and Access Management (IAM) to authenticate users. An IAM user with access to a portal can call this API to get a URL to that portal. The URL contains a session token that lets the IAM user access the portal.

", + "documentation":"

Creates a pre-signed URL to a portal. Use this operation to create URLs to portals that use AWS Identity and Access Management (IAM) to authenticate users. An IAM user with access to a portal can call this API to get a URL to that portal. The URL contains an authentication token that lets the IAM user access the portal.

", "endpoint":{"hostPrefix":"monitor."} }, "CreateProject":{ @@ -455,6 +455,21 @@ "documentation":"

Retrieves information about a dashboard.

", "endpoint":{"hostPrefix":"monitor."} }, + "DescribeDefaultEncryptionConfiguration":{ + "name":"DescribeDefaultEncryptionConfiguration", + "http":{ + "method":"GET", + "requestUri":"/configuration/account/encryption" + }, + "input":{"shape":"DescribeDefaultEncryptionConfigurationRequest"}, + "output":{"shape":"DescribeDefaultEncryptionConfigurationResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InternalFailureException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Retrieves information about the default encryption configuration for the AWS account in the default or specified region. For more information, see Key management in the AWS IoT SiteWise User Guide.

" + }, "DescribeGateway":{ "name":"DescribeGateway", "http":{ @@ -780,6 +795,23 @@ ], "documentation":"

Retrieves the list of tags for an AWS IoT SiteWise resource.

" }, + "PutDefaultEncryptionConfiguration":{ + "name":"PutDefaultEncryptionConfiguration", + "http":{ + "method":"POST", + "requestUri":"/configuration/account/encryption" + }, + "input":{"shape":"PutDefaultEncryptionConfigurationRequest"}, + "output":{"shape":"PutDefaultEncryptionConfigurationResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InternalFailureException"}, + {"shape":"ThrottlingException"}, + {"shape":"LimitExceededException"}, + {"shape":"ConflictingOperationException"} + ], + "documentation":"

Sets the default encryption configuration for the AWS account. For more information, see Key management in the AWS IoT SiteWise User Guide.

" + }, "PutLoggingOptions":{ "name":"PutLoggingOptions", "http":{ @@ -1795,6 +1827,47 @@ "min":36, "pattern":"\\S{36,64}" }, + "ConfigurationErrorDetails":{ + "type":"structure", + "required":[ + "code", + "message" + ], + "members":{ + "code":{ + "shape":"ErrorCode", + "documentation":"

" + }, + "message":{ + "shape":"ErrorMessage", + "documentation":"

" + } + }, + "documentation":"

" + }, + "ConfigurationState":{ + "type":"string", + "enum":[ + "ACTIVE", + "UPDATE_IN_PROGRESS", + "UPDATE_FAILED" + ] + }, + "ConfigurationStatus":{ + "type":"structure", + "required":["state"], + "members":{ + "state":{ + "shape":"ConfigurationState", + "documentation":"

" + }, + "error":{ + "shape":"ConfigurationErrorDetails", + "documentation":"

" + } + }, + "documentation":"

" + }, "ConflictingOperationException":{ "type":"structure", "required":[ @@ -2143,7 +2216,7 @@ }, "sessionDurationSeconds":{ "shape":"SessionDurationSeconds", - "documentation":"

The duration (in seconds) for which the session at the URL is valid.

Default: 900 seconds (15 minutes)

", + "documentation":"

The duration (in seconds) for which the session at the URL is valid.

Default: 43,200 seconds (12 hours)

", "location":"querystring", "locationName":"sessionDurationSeconds" } @@ -2155,7 +2228,7 @@ "members":{ "presignedPortalUrl":{ "shape":"Url", - "documentation":"

The pre-signed URL to the portal. The URL contains the portal ID and a session token that lets you access the portal. The URL has the following format.

https://<portal-id>.app.iotsitewise.aws/auth?token=<encrypted-token>

" + "documentation":"

The pre-signed URL to the portal. The URL contains the portal ID and an authentication token that lets you access the portal. The URL has the following format.

https://<portal-id>.app.iotsitewise.aws/iam?token=<encrypted-token>

" } } }, @@ -2711,6 +2784,32 @@ } } }, + "DescribeDefaultEncryptionConfigurationRequest":{ + "type":"structure", + "members":{ + } + }, + "DescribeDefaultEncryptionConfigurationResponse":{ + "type":"structure", + "required":[ + "encryptionType", + "configurationStatus" + ], + "members":{ + "encryptionType":{ + "shape":"EncryptionType", + "documentation":"

The type of encryption used for the encryption configuration.

" + }, + "kmsKeyArn":{ + "shape":"ARN", + "documentation":"

The key ARN of the customer managed customer master key (CMK) used for AWS KMS encryption if you use KMS_BASED_ENCRYPTION.

" + }, + "configurationStatus":{ + "shape":"ConfigurationStatus", + "documentation":"

The status of the account configuration. This contains the ConfigurationState. If there's an error, it also contains the ErrorDetails.

" + } + } + }, "DescribeGatewayCapabilityConfigurationRequest":{ "type":"structure", "required":[ @@ -3001,6 +3100,13 @@ "min":1, "pattern":"[^@]+@[^@]+" }, + "EncryptionType":{ + "type":"string", + "enum":[ + "SITEWISE_DEFAULT_ENCRYPTION", + "KMS_BASED_ENCRYPTION" + ] + }, "EntryId":{ "type":"string", "max":64, @@ -3486,6 +3592,11 @@ "error":{"httpStatusCode":400}, "exception":true }, + "KmsKeyId":{ + "type":"string", + "max":2048, + "min":1 + }, "LimitExceededException":{ "type":"structure", "required":["message"], @@ -4282,6 +4393,41 @@ }, "documentation":"

Contains a list of value updates for an asset property in the list of asset entries consumed by the BatchPutAssetPropertyValue API operation.

" }, + "PutDefaultEncryptionConfigurationRequest":{ + "type":"structure", + "required":["encryptionType"], + "members":{ + "encryptionType":{ + "shape":"EncryptionType", + "documentation":"

The type of encryption used for the encryption configuration.

" + }, + "kmsKeyId":{ + "shape":"KmsKeyId", + "documentation":"

The Key ID of the customer managed customer master key (CMK) used for AWS KMS encryption. This is required if you use KMS_BASED_ENCRYPTION.

" + } + } + }, + "PutDefaultEncryptionConfigurationResponse":{ + "type":"structure", + "required":[ + "encryptionType", + "configurationStatus" + ], + "members":{ + "encryptionType":{ + "shape":"EncryptionType", + "documentation":"

The type of encryption used for the encryption configuration.

" + }, + "kmsKeyArn":{ + "shape":"ARN", + "documentation":"

The Key ARN of the AWS KMS CMK used for AWS KMS encryption if you use KMS_BASED_ENCRYPTION.

" + }, + "configurationStatus":{ + "shape":"ConfigurationStatus", + "documentation":"

The status of the account configuration. This contains the ConfigurationState. If there is an error, it also contains the ErrorDetails.

" + } + } + }, "PutLoggingOptionsRequest":{ "type":"structure", "required":["loggingOptions"], From 31934a2c1d5895bda09a8cf3314745a6eddfc08a Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 24 Nov 2020 19:11:57 +0000 Subject: [PATCH 297/339] Updated endpoints.json. --- .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json | 6 ++++++ .../amazon/awssdk/regions/internal/region/endpoints.json | 7 +++++++ 2 files changed, 13 insertions(+) create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json new file mode 100644 index 000000000000..ae3f84993e9e --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." +} diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json index 92cb2ded7bb5..973270b68c5f 100644 --- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json +++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json @@ -5462,6 +5462,7 @@ }, "snowball" : { "endpoints" : { + "af-south-1" : { }, "ap-east-1" : { }, "ap-northeast-1" : { }, "ap-northeast-2" : { }, @@ -7046,6 +7047,12 @@ "cn-northwest-1" : { } } }, + "ram" : { + "endpoints" : { + "cn-north-1" : { }, + "cn-northwest-1" : { } + } + }, "rds" : { "endpoints" : { "cn-north-1" : { }, From 407ff0955ea92ff1b174e77cd4d0dea2b567a565 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 24 Nov 2020 19:12:26 +0000 Subject: [PATCH 298/339] Release 2.15.35. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.35.json | 120 ++++++++++++++++++ .../feature-AWSBatch-3efb3f9.json | 6 - .../feature-AWSCloudFormation-595f394.json | 6 - .../feature-AWSCloudTrail-caec95b.json | 6 - .../feature-AWSCodeBuild-6ce6791.json | 6 - .../feature-AWSElasticBeanstalk-1fe8b2a.json | 6 - ...ture-AWSElementalMediaConvert-e1fa2a3.json | 6 - .../feature-AWSIoTSiteWise-bf4dfc0.json | 6 - .../feature-AWSSDKforJavav2-bedacd4.json | 6 - .../feature-AWSStepFunctions-973a207.json | 6 - .../feature-AmazonAppflow-633b439.json | 6 - ...AmazonCognitoIdentityProvider-b8b5858.json | 6 - .../feature-AmazonComprehend-f000a74.json | 6 - .../feature-AmazonFSx-a912970.json | 6 - .../feature-AmazonGameLift-5c64e59.json | 6 - ...AmazonLexModelBuildingService-21b35d1.json | 6 - .../feature-AmazonMWAA-539f940.json | 6 - .../feature-AmazonQuickSight-8a1e822.json | 6 - ...feature-AmazonTimestreamWrite-8adb878.json | 6 - ...zonTranscribeStreamingService-65a742d.json | 6 - CHANGELOG.md | 77 +++++++++++ README.md | 8 +- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/mwaa/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 306 files changed, 485 insertions(+), 402 deletions(-) create mode 100644 .changes/2.15.35.json delete mode 100644 .changes/next-release/feature-AWSBatch-3efb3f9.json delete mode 100644 .changes/next-release/feature-AWSCloudFormation-595f394.json delete mode 100644 .changes/next-release/feature-AWSCloudTrail-caec95b.json delete mode 100644 .changes/next-release/feature-AWSCodeBuild-6ce6791.json delete mode 100644 .changes/next-release/feature-AWSElasticBeanstalk-1fe8b2a.json delete mode 100644 .changes/next-release/feature-AWSElementalMediaConvert-e1fa2a3.json delete mode 100644 .changes/next-release/feature-AWSIoTSiteWise-bf4dfc0.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json delete mode 100644 .changes/next-release/feature-AWSStepFunctions-973a207.json delete mode 100644 .changes/next-release/feature-AmazonAppflow-633b439.json delete mode 100644 .changes/next-release/feature-AmazonCognitoIdentityProvider-b8b5858.json delete mode 100644 .changes/next-release/feature-AmazonComprehend-f000a74.json delete mode 100644 .changes/next-release/feature-AmazonFSx-a912970.json delete mode 100644 .changes/next-release/feature-AmazonGameLift-5c64e59.json delete mode 100644 .changes/next-release/feature-AmazonLexModelBuildingService-21b35d1.json delete mode 100644 .changes/next-release/feature-AmazonMWAA-539f940.json delete mode 100644 .changes/next-release/feature-AmazonQuickSight-8a1e822.json delete mode 100644 .changes/next-release/feature-AmazonTimestreamWrite-8adb878.json delete mode 100644 .changes/next-release/feature-AmazonTranscribeStreamingService-65a742d.json diff --git a/.changes/2.15.35.json b/.changes/2.15.35.json new file mode 100644 index 000000000000..27df17571e74 --- /dev/null +++ b/.changes/2.15.35.json @@ -0,0 +1,120 @@ +{ + "version": "2.15.35", + "date": "2020-11-24", + "entries": [ + { + "type": "feature", + "category": "Amazon QuickSight", + "contributor": "", + "description": "Support for embedding without user registration. New enum EmbeddingIdentityType. A potential breaking change. Affects code that refers IdentityType enum type directly instead of literal string value." + }, + { + "type": "feature", + "category": "AWS Batch", + "contributor": "", + "description": "Add Ec2Configuration in ComputeEnvironment.ComputeResources. Use in CreateComputeEnvironment API to enable AmazonLinux2 support." + }, + { + "type": "feature", + "category": "AWS CloudTrail", + "contributor": "", + "description": "CloudTrail now includes advanced event selectors, which give you finer-grained control over the events that are logged to your trail." + }, + { + "type": "feature", + "category": "AWS Elemental MediaConvert", + "contributor": "", + "description": "AWS Elemental MediaConvert SDK has added support for Vorbis and Opus audio in OGG/OGA containers." + }, + { + "type": "feature", + "category": "Amazon GameLift", + "contributor": "", + "description": "GameLift FlexMatch is now available as a standalone matchmaking solution. FlexMatch now provides customizable matchmaking for games hosted peer-to-peer, on-premises, or on cloud compute primitives." + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." + }, + { + "type": "feature", + "category": "AWS CodeBuild", + "contributor": "", + "description": "Adding GetReportGroupTrend API for Test Reports." + }, + { + "type": "feature", + "category": "Amazon Comprehend", + "contributor": "", + "description": "Support Comprehend events detection APIs" + }, + { + "type": "feature", + "category": "Amazon Transcribe Streaming Service", + "contributor": "", + "description": "Amazon Transcribe Medical streaming added medical specialties and HTTP/2 support. Amazon Transcribe streaming supports additional languages. Both support OGG/OPUS and FLAC codecs for streaming." + }, + { + "type": "feature", + "category": "Amazon Appflow", + "contributor": "", + "description": "Upsolver as a destination connector and documentation update." + }, + { + "type": "feature", + "category": "Amazon Cognito Identity Provider", + "contributor": "", + "description": "This release adds ability to configure Cognito User Pools with third party sms and email providers for sending notifications to users." + }, + { + "type": "feature", + "category": "Amazon FSx", + "contributor": "", + "description": "This release adds the capability to increase storage capacity of Amazon FSx for Lustre file systems, providing the flexibility to meet evolving storage needs over time." + }, + { + "type": "feature", + "category": "AWS CloudFormation", + "contributor": "", + "description": "Adds support for the new Modules feature for CloudFormation. A module encapsulates one or more resources and their respective configurations for reuse across your organization." + }, + { + "type": "feature", + "category": "AmazonMWAA", + "contributor": "", + "description": "(New Service) Amazon MWAA is a managed service for Apache Airflow that makes it easy for data engineers and data scientists to execute data processing workflows in the cloud." + }, + { + "type": "feature", + "category": "Amazon Timestream Write", + "contributor": "", + "description": "Adds support of upserts for idempotent updates to Timestream." + }, + { + "type": "feature", + "category": "Amazon Lex Model Building Service", + "contributor": "", + "description": "Lex now supports es-419, de-DE locales" + }, + { + "type": "feature", + "category": "AWS IoT SiteWise", + "contributor": "", + "description": "This release adds support for customer managed customer master key (CMK) based encryption in IoT SiteWise." + }, + { + "type": "feature", + "category": "AWS Step Functions", + "contributor": "", + "description": "This release of the AWS Step Functions SDK introduces support for Synchronous Express Workflows" + }, + { + "type": "feature", + "category": "AWS Elastic Beanstalk", + "contributor": "", + "description": "Updates the Integer constraint of DescribeEnvironmentManagedActionHistory's MaxItems parameter to [1, 100]." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSBatch-3efb3f9.json b/.changes/next-release/feature-AWSBatch-3efb3f9.json deleted file mode 100644 index 809884570f66..000000000000 --- a/.changes/next-release/feature-AWSBatch-3efb3f9.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Batch", - "contributor": "", - "description": "Add Ec2Configuration in ComputeEnvironment.ComputeResources. Use in CreateComputeEnvironment API to enable AmazonLinux2 support." -} diff --git a/.changes/next-release/feature-AWSCloudFormation-595f394.json b/.changes/next-release/feature-AWSCloudFormation-595f394.json deleted file mode 100644 index fa998f06c7c0..000000000000 --- a/.changes/next-release/feature-AWSCloudFormation-595f394.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS CloudFormation", - "contributor": "", - "description": "Adds support for the new Modules feature for CloudFormation. A module encapsulates one or more resources and their respective configurations for reuse across your organization." -} diff --git a/.changes/next-release/feature-AWSCloudTrail-caec95b.json b/.changes/next-release/feature-AWSCloudTrail-caec95b.json deleted file mode 100644 index 3e3ba112ce79..000000000000 --- a/.changes/next-release/feature-AWSCloudTrail-caec95b.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS CloudTrail", - "contributor": "", - "description": "CloudTrail now includes advanced event selectors, which give you finer-grained control over the events that are logged to your trail." -} diff --git a/.changes/next-release/feature-AWSCodeBuild-6ce6791.json b/.changes/next-release/feature-AWSCodeBuild-6ce6791.json deleted file mode 100644 index 5990ef697a30..000000000000 --- a/.changes/next-release/feature-AWSCodeBuild-6ce6791.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS CodeBuild", - "contributor": "", - "description": "Adding GetReportGroupTrend API for Test Reports." -} diff --git a/.changes/next-release/feature-AWSElasticBeanstalk-1fe8b2a.json b/.changes/next-release/feature-AWSElasticBeanstalk-1fe8b2a.json deleted file mode 100644 index 6a9a1ff5a0b2..000000000000 --- a/.changes/next-release/feature-AWSElasticBeanstalk-1fe8b2a.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Elastic Beanstalk", - "contributor": "", - "description": "Updates the Integer constraint of DescribeEnvironmentManagedActionHistory's MaxItems parameter to [1, 100]." -} diff --git a/.changes/next-release/feature-AWSElementalMediaConvert-e1fa2a3.json b/.changes/next-release/feature-AWSElementalMediaConvert-e1fa2a3.json deleted file mode 100644 index a885f3621836..000000000000 --- a/.changes/next-release/feature-AWSElementalMediaConvert-e1fa2a3.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Elemental MediaConvert", - "contributor": "", - "description": "AWS Elemental MediaConvert SDK has added support for Vorbis and Opus audio in OGG/OGA containers." -} diff --git a/.changes/next-release/feature-AWSIoTSiteWise-bf4dfc0.json b/.changes/next-release/feature-AWSIoTSiteWise-bf4dfc0.json deleted file mode 100644 index c2dd8b78a709..000000000000 --- a/.changes/next-release/feature-AWSIoTSiteWise-bf4dfc0.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS IoT SiteWise", - "contributor": "", - "description": "This release adds support for customer managed customer master key (CMK) based encryption in IoT SiteWise." -} diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json deleted file mode 100644 index ae3f84993e9e..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS SDK for Java v2", - "contributor": "", - "description": "Updated service endpoint metadata." -} diff --git a/.changes/next-release/feature-AWSStepFunctions-973a207.json b/.changes/next-release/feature-AWSStepFunctions-973a207.json deleted file mode 100644 index eb8ab4967b25..000000000000 --- a/.changes/next-release/feature-AWSStepFunctions-973a207.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Step Functions", - "contributor": "", - "description": "This release of the AWS Step Functions SDK introduces support for Synchronous Express Workflows" -} diff --git a/.changes/next-release/feature-AmazonAppflow-633b439.json b/.changes/next-release/feature-AmazonAppflow-633b439.json deleted file mode 100644 index 061e0a389104..000000000000 --- a/.changes/next-release/feature-AmazonAppflow-633b439.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Appflow", - "contributor": "", - "description": "Upsolver as a destination connector and documentation update." -} diff --git a/.changes/next-release/feature-AmazonCognitoIdentityProvider-b8b5858.json b/.changes/next-release/feature-AmazonCognitoIdentityProvider-b8b5858.json deleted file mode 100644 index 9c98c9784485..000000000000 --- a/.changes/next-release/feature-AmazonCognitoIdentityProvider-b8b5858.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Cognito Identity Provider", - "contributor": "", - "description": "This release adds ability to configure Cognito User Pools with third party sms and email providers for sending notifications to users." -} diff --git a/.changes/next-release/feature-AmazonComprehend-f000a74.json b/.changes/next-release/feature-AmazonComprehend-f000a74.json deleted file mode 100644 index 2fe272e289b5..000000000000 --- a/.changes/next-release/feature-AmazonComprehend-f000a74.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Comprehend", - "contributor": "", - "description": "Support Comprehend events detection APIs" -} diff --git a/.changes/next-release/feature-AmazonFSx-a912970.json b/.changes/next-release/feature-AmazonFSx-a912970.json deleted file mode 100644 index fd742416e961..000000000000 --- a/.changes/next-release/feature-AmazonFSx-a912970.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon FSx", - "contributor": "", - "description": "This release adds the capability to increase storage capacity of Amazon FSx for Lustre file systems, providing the flexibility to meet evolving storage needs over time." -} diff --git a/.changes/next-release/feature-AmazonGameLift-5c64e59.json b/.changes/next-release/feature-AmazonGameLift-5c64e59.json deleted file mode 100644 index fd9499b65797..000000000000 --- a/.changes/next-release/feature-AmazonGameLift-5c64e59.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon GameLift", - "contributor": "", - "description": "GameLift FlexMatch is now available as a standalone matchmaking solution. FlexMatch now provides customizable matchmaking for games hosted peer-to-peer, on-premises, or on cloud compute primitives." -} diff --git a/.changes/next-release/feature-AmazonLexModelBuildingService-21b35d1.json b/.changes/next-release/feature-AmazonLexModelBuildingService-21b35d1.json deleted file mode 100644 index ecbe80925757..000000000000 --- a/.changes/next-release/feature-AmazonLexModelBuildingService-21b35d1.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Lex Model Building Service", - "contributor": "", - "description": "Lex now supports es-419, de-DE locales" -} diff --git a/.changes/next-release/feature-AmazonMWAA-539f940.json b/.changes/next-release/feature-AmazonMWAA-539f940.json deleted file mode 100644 index 93c29817a1be..000000000000 --- a/.changes/next-release/feature-AmazonMWAA-539f940.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AmazonMWAA", - "contributor": "", - "description": "(New Service) Amazon MWAA is a managed service for Apache Airflow that makes it easy for data engineers and data scientists to execute data processing workflows in the cloud." -} diff --git a/.changes/next-release/feature-AmazonQuickSight-8a1e822.json b/.changes/next-release/feature-AmazonQuickSight-8a1e822.json deleted file mode 100644 index c5e21bb93b1f..000000000000 --- a/.changes/next-release/feature-AmazonQuickSight-8a1e822.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon QuickSight", - "contributor": "", - "description": "Support for embedding without user registration. New enum EmbeddingIdentityType. A potential breaking change. Affects code that refers IdentityType enum type directly instead of literal string value." -} diff --git a/.changes/next-release/feature-AmazonTimestreamWrite-8adb878.json b/.changes/next-release/feature-AmazonTimestreamWrite-8adb878.json deleted file mode 100644 index 5999098194c6..000000000000 --- a/.changes/next-release/feature-AmazonTimestreamWrite-8adb878.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Timestream Write", - "contributor": "", - "description": "Adds support of upserts for idempotent updates to Timestream." -} diff --git a/.changes/next-release/feature-AmazonTranscribeStreamingService-65a742d.json b/.changes/next-release/feature-AmazonTranscribeStreamingService-65a742d.json deleted file mode 100644 index 42233a757fd9..000000000000 --- a/.changes/next-release/feature-AmazonTranscribeStreamingService-65a742d.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Transcribe Streaming Service", - "contributor": "", - "description": "Amazon Transcribe Medical streaming added medical specialties and HTTP/2 support. Amazon Transcribe streaming supports additional languages. Both support OGG/OPUS and FLAC codecs for streaming." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c5cef0b9c31..e6af6d3f3d95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,80 @@ +# __2.15.35__ __2020-11-24__ +## __AWS Batch__ + - ### Features + - Add Ec2Configuration in ComputeEnvironment.ComputeResources. Use in CreateComputeEnvironment API to enable AmazonLinux2 support. + +## __AWS CloudFormation__ + - ### Features + - Adds support for the new Modules feature for CloudFormation. A module encapsulates one or more resources and their respective configurations for reuse across your organization. + +## __AWS CloudTrail__ + - ### Features + - CloudTrail now includes advanced event selectors, which give you finer-grained control over the events that are logged to your trail. + +## __AWS CodeBuild__ + - ### Features + - Adding GetReportGroupTrend API for Test Reports. + +## __AWS Elastic Beanstalk__ + - ### Features + - Updates the Integer constraint of DescribeEnvironmentManagedActionHistory's MaxItems parameter to [1, 100]. + +## __AWS Elemental MediaConvert__ + - ### Features + - AWS Elemental MediaConvert SDK has added support for Vorbis and Opus audio in OGG/OGA containers. + +## __AWS IoT SiteWise__ + - ### Features + - This release adds support for customer managed customer master key (CMK) based encryption in IoT SiteWise. + +## __AWS SDK for Java v2__ + - ### Features + - Updated service endpoint metadata. + +## __AWS Step Functions__ + - ### Features + - This release of the AWS Step Functions SDK introduces support for Synchronous Express Workflows + +## __Amazon Appflow__ + - ### Features + - Upsolver as a destination connector and documentation update. + +## __Amazon Cognito Identity Provider__ + - ### Features + - This release adds ability to configure Cognito User Pools with third party sms and email providers for sending notifications to users. + +## __Amazon Comprehend__ + - ### Features + - Support Comprehend events detection APIs + +## __Amazon FSx__ + - ### Features + - This release adds the capability to increase storage capacity of Amazon FSx for Lustre file systems, providing the flexibility to meet evolving storage needs over time. + +## __Amazon GameLift__ + - ### Features + - GameLift FlexMatch is now available as a standalone matchmaking solution. FlexMatch now provides customizable matchmaking for games hosted peer-to-peer, on-premises, or on cloud compute primitives. + +## __Amazon Lex Model Building Service__ + - ### Features + - Lex now supports es-419, de-DE locales + +## __Amazon QuickSight__ + - ### Features + - Support for embedding without user registration. New enum EmbeddingIdentityType. A potential breaking change. Affects code that refers IdentityType enum type directly instead of literal string value. + +## __Amazon Timestream Write__ + - ### Features + - Adds support of upserts for idempotent updates to Timestream. + +## __Amazon Transcribe Streaming Service__ + - ### Features + - Amazon Transcribe Medical streaming added medical specialties and HTTP/2 support. Amazon Transcribe streaming supports additional languages. Both support OGG/OPUS and FLAC codecs for streaming. + +## __AmazonMWAA__ + - ### Features + - (New Service) Amazon MWAA is a managed service for Apache Airflow that makes it easy for data engineers and data scientists to execute data processing workflows in the cloud. + # __2.15.34__ __2020-11-23__ ## __AWS CodeStar connections__ - ### Features diff --git a/README.md b/README.md index f0d77a392f87..cf530a79c8da 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.34 + 2.15.35 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.34 + 2.15.35 software.amazon.awssdk s3 - 2.15.34 + 2.15.35 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.34 + 2.15.35 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 9d0003e0439f..6c9c8dda5377 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 3ba239287954..89030c9f5a6f 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 0cc6da13b744..a485dacc5150 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.15.35-SNAPSHOT + 2.15.35 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index b9a799e5b7bb..24a2ee2411b6 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 15ee1121968c..df5be5f547d1 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.35-SNAPSHOT + 2.15.35 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 1d18abbaea85..5801ccd3809b 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.35-SNAPSHOT + 2.15.35 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 41f6b220ffcb..46718e548cc3 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.15.35-SNAPSHOT + 2.15.35 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 07561d83ef11..4cde90d9e74b 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.35-SNAPSHOT + 2.15.35 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 4fa76946b8b0..f9f94678b26f 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.15.35-SNAPSHOT + 2.15.35 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 36bd506ddaf5..0e5ddaffe6db 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.35-SNAPSHOT + 2.15.35 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 57ce327add86..c47d4cbb220b 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index a6233f0c5a43..48de1e7d5439 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index cad275b04594..ad51cc096a34 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.35-SNAPSHOT + 2.15.35 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 363f2d0dca96..43deb2da5acb 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.35-SNAPSHOT + 2.15.35 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index f6c1714417f3..0c583dce5534 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index ec6f820ed518..32e78ead8916 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 8d1f8fdbbe92..ec3c664df876 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.35-SNAPSHOT + 2.15.35 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 6ee6bb919068..70c1df80a20b 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.15.35-SNAPSHOT + 2.15.35 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 373c7966089f..f26c69ad7bda 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index c0530cb3f5fa..139f03b20ad0 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.15.35-SNAPSHOT + 2.15.35 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 5703001426ef..dded339d3a05 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.15.35-SNAPSHOT + 2.15.35 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 034605020b43..43eefc375158 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.15.35-SNAPSHOT + 2.15.35 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 91583ac19fe0..b9b4296e7403 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 92e2dd556026..c20aeca1c7ab 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 5c325b921cde..07d99bf6889c 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.35-SNAPSHOT + 2.15.35 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index f23d6e9123c8..4bfe16b3a603 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.35-SNAPSHOT + 2.15.35 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 26d842ab10e8..3c1bccf470fb 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.15.35-SNAPSHOT + 2.15.35 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 6cf8a964e815..54c2c9dc1bc6 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.15.35-SNAPSHOT + 2.15.35 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 6e88b4acf326..14134e179627 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.15.35-SNAPSHOT + 2.15.35 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index bc96fc0607cf..e5bf077c11a6 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.15.35-SNAPSHOT + 2.15.35 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index b51dc3ac810b..427018c031a0 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 4900aa13bc77..e8ae99f8fe5b 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.15.35-SNAPSHOT + 2.15.35 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 8d7d3babb8d6..19d3b650c289 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.15.35-SNAPSHOT + 2.15.35 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 3ad1b993081d..cb5f39e12847 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.35-SNAPSHOT + 2.15.35 metric-publishers diff --git a/pom.xml b/pom.xml index 6fb154b52485..190a100bf5bb 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.35-SNAPSHOT + 2.15.35 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 6002b955357c..9e85daf07c27 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.35-SNAPSHOT + 2.15.35 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index bb2f08a38a37..25c16cdefa18 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.15.35-SNAPSHOT + 2.15.35 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 27cb8c84873e..bf4cf053b314 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.35-SNAPSHOT + 2.15.35 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 6b205f45b79d..c644e78860c6 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 6fce2cd36653..8819a742cf14 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 5d91eba096b2..53050adc7f93 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 433043c41c5c..8324d129026f 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index ad68b09517a6..0ee0d397a175 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index fead2292a95b..d11090879aba 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index c0ad831e940b..7c16745a06d7 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 55cd2e4f0a16..f2f278a071e6 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index ddde183e4419..97c1af470cb7 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 84db588efe4d..ef3f4edf49c6 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index d344fe0b233a..47c0d426901f 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index f7064968ed4f..bf4b11c89d59 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 4c376212c7cc..98108e79d2e8 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 29f413937bd6..4f31b4ab9b66 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 741760442ce1..d5b530bd669e 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index cec299fc6197..a3cdea6e82c8 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 05ae9998c69e..4714cda467c4 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index afadcfc9ff57..a4f304362429 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index d806ee3c9b1b..22017216ac50 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 5be8292b6e14..dd0e40a96cae 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 1faa20bee7e7..a3cafccfb31a 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index ef778e38a813..e9c9aca6330b 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index f3124ace31de..53788b16394b 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index c9fdfb3a6f67..9cd0ec204f71 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 41cf38f2cfc1..ab187d765a0e 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 6c13a3f5a2d0..9c0eb210a26d 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 884bbf2d1844..e2a10f726f83 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index e13d60a09291..c4e9fa87d724 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 8824138ede22..ab51995babb3 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index dcf9994adcc7..5931c0557f16 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index f7273a8797ed..2ade47cae2c8 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index d67780697877..4355fb385574 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index f7006c4c41f2..45d718c0f2ac 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index f8304bb539e2..19d7854ce632 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 0346093f1d80..c0a544da5b1d 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 2d590b2a377e..35bf583d89a7 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index e969dca4a3ca..0d07a3755d59 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index a86dd0c80493..6ebd3a902454 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index c82ec981734d..38abbd5827ff 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 4665a7c836b6..be0bbf3cbac3 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 3def91233342..83ba5b8caa95 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 113ec1d4b2e8..41bcab5f8d80 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index e86e364b229f..a5e9331845a6 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 21c788251f9d..551e0edcafe0 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 4083cd03cba9..4fb469289c4a 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index e2f51e033009..b7373bcba67b 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 83538968a60e..d141455d3b1f 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 7da350e29bee..81390bf3df25 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index df2156fe074a..c9e33427b50a 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 212fb1cb86fc..dfe01cf9dbf7 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 8653a3d31ff4..8f74b010c17f 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 36cac46339f7..f7d25bc9cf36 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 359331e77eb0..3068a6458903 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index ac839abcf41f..4356b77d88e6 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index d94b63d23c01..3d4ccb58f599 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 2cd06d38890c..432e7bc636e1 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 4e8e5ad3d7ff..ebcf90fe351b 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 0f472349c9b4..808cf1e47a00 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index 1a7a4699866e..cf4eec83f8ea 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 2b036bffd78d..73d9ccba1a9b 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 7e9f192a1196..da0cbef10351 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 3c7fac5f7b43..05b26329fdf3 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index f014df16b605..29c852eec9ea 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 273ee11ef9d1..a4142b2c58b5 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 399c96c10e23..2e15a92e38c8 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index ce6ad18555a9..8ffaeb91f7e3 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 3d68e2197cce..513a161242c8 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 7a35b54b75d7..510cf209b14b 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index ac982ce1f988..99d7bd6c741c 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 66f1eda20ea5..3e73a5b631cd 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 71964e9e7c57..751f28a8f843 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index ed848cf21d7f..cc4c4cfda146 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 12243d81ca97..4490f595377d 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index e8cc83be08e3..7ea6e764d320 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index a10e689d087a..7b2347d60973 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 0f9f43c0264b..81dd5e73eba0 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index f7d4814249c8..bd8c7a8e1a09 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 4be04d868e7a..e69fcd6630da 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index d99e1a69bee7..b7a8c7c9827b 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index ead9fb276891..d8dc8a7f899a 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 0edcdb476978..34bf46733aa5 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index b67575354e03..4506591d0e85 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 9f79b92dc9c9..6b86219ca60e 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index cd0523d497bf..17c371f6d559 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 59a5951f4d67..62fb5fcf600f 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 996f7e82fc68..3e87fce632a2 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 4919e93f505f..dcf287a96122 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index cd110e78faf9..fd7728c63e72 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 84e01af26704..705abd8494c6 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 5aaafa1f94a2..822857c503c2 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 102c6ba726b4..3a0fce2d38fc 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index d9964016468a..a40bebc2bca5 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index abbd5c58cf9e..662eeb73e17d 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 2e8abb1d6cab..f0eb440067ed 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 21768901de87..1e99cc0c0ac2 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 0ecbd6a0dc3e..10a34869e87a 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 23e3542eb106..3956d63c10ca 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 2957a8297441..daa8d52da1d2 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 76a97f466538..c7d4620c5455 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index c2de981c8f7c..289fba184d29 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 01a25c8ec423..2591a6c5e72a 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 85ddc9f4ba9c..b00a0289b6a4 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index ff0da46a8bbf..08d8204aefc5 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 98f5f745c78d..717ef0cfaf16 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 0b53f6191e6e..46d38997675c 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 9d20914ddfe5..0136f202b1bc 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 9a116887dddf..47f300580f78 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 07831c41d7ac..016c77d1cb2a 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 943d45f06797..b2112dbc62ee 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 71791549b1b5..dd4fc1945403 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index a26eb1bee847..cca9823c2f6a 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 29551f46c2a1..3801b2d5e187 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 3a70484dff3a..143ec9d7606d 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 4dc7b7463ae0..072144dbe37a 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index a63d860f1392..f7f330b376c5 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 6e4f29273299..3d4b3cbd03f3 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 021d5b19309c..d193783606a1 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 82e1d6d7fe4d..8efddb21cf0b 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 8c94d65d66ee..6d56069b6599 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 6905acb97ece..d37acadf1811 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 53d359c3ccaa..3d8008dda4f6 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 89c92358f8ac..9465166158c7 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 6c63a3248e1b..e93f6af28536 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index b338d064ca34..96c279e626f0 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index ddf77ddd1109..42553d1bd5c2 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 7c85d7a3bf7f..20142197865e 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index a1c209839c6c..97d5ce5ffc97 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 59383fb48632..c89aca7e25bc 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 7d77bb8a8733..37213ef8138d 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 88cace794b84..02959e94ed12 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 67752b34c907..e521ae0dd15f 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 97b577dc1135..a85e7e9184cf 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 4cd366156a62..9564363a4b16 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 4453986b6c6c..ce56fa950d9e 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index cc6c23e47190..7305da8ed7d5 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index be6bf186b2d2..d6c442b4fb18 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 73c0561b8bd5..eafe4aefe7ff 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index a5e13dbc236f..c7cd2e5b3b63 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 0e8e85d5611b..963d11287bb5 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index bea45e51eb56..c8f14085642c 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index ef13500c82c7..a853e0e12b70 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index ee4f2d22eb4b..d9b3fd4c54fd 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index fdfbc048ad4d..65e664b56095 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 057a82cc305c..ff2c2b1f5c6c 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 02ecf0a866ab..65078f3cac0a 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index be1ff65c15b1..33958b4b3b75 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index ab2d43bd4c5a..d9d9cc8fd45d 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 07caac518ad0..38888eeb997a 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 59e368eabdcc..be9d25ded943 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 95d25cd3aa18..ca72741769e3 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 245c1e0b8b7b..b3ff40fbcb81 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index e22e791d4e55..745e40c8ef75 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 87f699e8ae7f..5aa6f7834b84 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index cddb042bec83..f47f9a365f9d 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml index 64caf185aa8a..dfd7931e35d6 100644 --- a/services/mwaa/pom.xml +++ b/services/mwaa/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 mwaa AWS Java SDK :: Services :: MWAA diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index bc378f79c1ab..2d6a764067c7 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index ba3ed6377205..2d572d4d3e75 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 7e88611b9a57..257d4b9d20e6 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index db2106111a80..30e4689dcdd2 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 690545808dc2..1bd8be2966ed 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 0e553fa9881e..cbbc06df3b2f 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index d4312a63c525..fbf3597e8077 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 3d96a8fa4878..4b94760a3534 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 632c38ddc219..ae7e129611fa 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 9c4bd499b959..39879227f5ed 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 026c83759495..58491edcf263 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index db2b4bbafcbb..e6bf72dcc30f 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index bed0c7a4401f..f44fe18de714 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 4ce1db215da9..32bb31dd6150 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index b8f7a7c83162..4dd99c2324fc 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 183434bc3824..f9e2c71b4432 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.35-SNAPSHOT + 2.15.35 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 0feda2e4c369..4c0170e95be7 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 037bc04c2b43..802e870e13f0 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 0bf4cff84dd4..358c92923c54 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 9ccbcdec5d2f..fdd39f1064a6 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index eae916814ec1..6cadbbfea5fa 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index b63c5c91ccf1..87ddcc1e43db 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 6f90bb746d31..78679f8812b5 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 2a7a89bb60d5..b158e51358b7 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 42e849525b6e..5aeaf70d777c 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index f5392b32ac51..46cc89a3e8fc 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 9bac96783149..16d9f9751bb9 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 997da6e5c8dd..ccbda6fec0d1 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 58f0f9ac593d..fe970721ff85 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 7be532398a17..9be29bb55110 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 0dcc37232281..c8f90f32b511 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index df998c868227..cd95b2599f87 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 9abc8adea5e3..c5af7a7f32db 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index ddb807ace2ab..92ec2c2b9039 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index acc492b82623..15b473abc9ac 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 31ee01510eea..c2d6f2cb7a31 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 39d4f841b8b3..ac1eee6e816b 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 9794533f3c58..c82358544341 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 1cd14950dc1c..7d1e5ad1e164 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index a03b7f68a728..f98269692490 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index dfe1ea1830af..5b0d298a1aa2 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 18b9760cb554..cd9dd615a7a1 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 95edbd546a20..1ffd8cf88f95 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 1cb71b7f0dcb..d8e6004060e2 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index 461e8487c7ee..0a0ee9270dd8 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index c26d6e488f74..858bdecd303c 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index a7b9bf0bab05..37231d46a5a0 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 61de904c7cd9..0657fee0397d 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index abd0c30f7ee4..4685f6a17f6a 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index ab3488bbc443..cbd604887739 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 3311f0a6d750..8952f16a62d4 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index f4d02a9e8d70..5c74d3c34efa 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index c6d9a724db96..66dc87d5cae1 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 9edd7d0d6a40..ec75622ca444 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 44c8531f51f5..5d21f5a7be2f 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index b63f02f31738..8816d17701de 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 100538edb326..1bf3709d00be 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index e689d9ae5c11..00f4a7a004b4 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index f8dee76a0cfe..a98d54d2f6c8 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 719f5c69655d..56f529660ade 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index f838461cd230..b9857bf29acf 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 9c5be75cb39a..98076ba26d3e 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index ada6a2186014..47c40bdb78e1 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index efe084985b15..a730278f9e9c 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 477d2ef855e1..71e0472a226c 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 7d38284418d4..dab633c1c165 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 88ff31a89acc..a4ecdf1bb323 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index d18e778dbd0f..bd5b545b86f6 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index f73fbfcfb47d..8b2eec1480a3 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 420d208fe1ae..8d851164dad4 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index dae1b50a5934..6451e0b44b99 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 3e4209a53d68..6ca7e6a8c073 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 615ec10fb52b..7fe6874f7c75 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 487f55840cdc..3647636ae7e3 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 61512b7e80dc..08a754837b97 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 996840590582..55f73cda2f82 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index c905de4a2002..59ccd28b7b0f 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index abc50747ef5a..b00dbe9a2111 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 2080bed7d602..5e27882cc8e8 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index c3d1bf551738..7a43e78ab95f 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35-SNAPSHOT + 2.15.35 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index da57c3e0b84f..f3cafe2a9c86 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.15.35-SNAPSHOT + 2.15.35 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 32ae74b902b1..785ff747d216 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.15.35-SNAPSHOT + 2.15.35 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 5b548bf738ce..7d04a677148e 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.15.35-SNAPSHOT + 2.15.35 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 901a213cb8a2..eda864ea8e55 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.15.35-SNAPSHOT + 2.15.35 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 1954035a2df6..0b7f8a523439 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.15.35-SNAPSHOT + 2.15.35 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 1f80fd9f6776..34d8f05eab62 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.35-SNAPSHOT + 2.15.35 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index b31ed71d8c42..e940b1c3ba03 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.15.35-SNAPSHOT + 2.15.35 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 5d6e5788e052..3c518b206932 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.15.35-SNAPSHOT + 2.15.35 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 76ac1c590ab2..88babab08d26 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.15.35-SNAPSHOT + 2.15.35 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 8d1bd6b67068..f4ede0952aa5 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.15.35-SNAPSHOT + 2.15.35 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index b00943b1861a..9b7065f4c19b 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.35-SNAPSHOT + 2.15.35 4.0.0 From 8f06c8a698fa889056d1a6439478ee89cd87d08d Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 24 Nov 2020 19:38:51 +0000 Subject: [PATCH 299/339] Update to next snapshot version: 2.15.36-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/mwaa/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/pom.xml | 2 +- services/servicecatalogappregistry/pom.xml | 2 +- services/servicediscovery/pom.xml | 2 +- services/servicequotas/pom.xml | 2 +- services/ses/pom.xml | 2 +- services/sesv2/pom.xml | 2 +- services/sfn/pom.xml | 2 +- services/shield/pom.xml | 2 +- services/signer/pom.xml | 2 +- services/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 284 files changed, 284 insertions(+), 284 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 6c9c8dda5377..df1f9d133505 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 89030c9f5a6f..d36d0371a2b2 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index a485dacc5150..df21a0d5e549 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.15.35 + 2.15.36-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 24a2ee2411b6..01c709e4acaa 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index df5be5f547d1..e0a350e1685b 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.35 + 2.15.36-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 5801ccd3809b..a046fa7522e1 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.35 + 2.15.36-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 46718e548cc3..718902a1b614 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.15.35 + 2.15.36-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 4cde90d9e74b..d1d08706f781 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.35 + 2.15.36-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index f9f94678b26f..d3d10b956413 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.15.35 + 2.15.36-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 0e5ddaffe6db..bc3f1917a6af 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.35 + 2.15.36-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index c47d4cbb220b..ea6ad1c39f4a 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 48de1e7d5439..6f59484c0240 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index ad51cc096a34..db6cfb987a71 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.35 + 2.15.36-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 43deb2da5acb..290705556b27 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.35 + 2.15.36-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 0c583dce5534..26160ef34574 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 32e78ead8916..ee1a626767f6 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index ec3c664df876..12c00a304277 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.35 + 2.15.36-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 70c1df80a20b..9e22d430dadd 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.15.35 + 2.15.36-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index f26c69ad7bda..3c2275d9e5dc 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index 139f03b20ad0..d7be0858a0de 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.15.35 + 2.15.36-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index dded339d3a05..2adfd27dba48 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.15.35 + 2.15.36-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 43eefc375158..16390a9efc54 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.15.35 + 2.15.36-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index b9b4296e7403..ac8fe3d9b697 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index c20aeca1c7ab..2f255bc20688 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 07d99bf6889c..d7e60eb3b0ce 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.35 + 2.15.36-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 4bfe16b3a603..671e8ec0dcdd 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.35 + 2.15.36-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 3c1bccf470fb..10014d8f6979 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.15.35 + 2.15.36-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index 54c2c9dc1bc6..3e71f020d55d 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.15.35 + 2.15.36-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 14134e179627..fcdaeae8dab5 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.15.35 + 2.15.36-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index e5bf077c11a6..96bbff1c3146 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.15.35 + 2.15.36-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 427018c031a0..8500dcbc79f7 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index e8ae99f8fe5b..8d08c7d3e7b2 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.15.35 + 2.15.36-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 19d3b650c289..e2c931cd1feb 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.15.35 + 2.15.36-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index cb5f39e12847..3948387857b6 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.35 + 2.15.36-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 190a100bf5bb..3d0df50f2774 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.35 + 2.15.36-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 9e85daf07c27..0ade07d636ea 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.35 + 2.15.36-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 25c16cdefa18..19f91e232649 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.15.35 + 2.15.36-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index bf4cf053b314..8f562b578150 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.35 + 2.15.36-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index c644e78860c6..0b42fa2aaa0f 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 8819a742cf14..10647abb61ab 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 53050adc7f93..02f2f9bf033f 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 8324d129026f..0aa69a919116 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 0ee0d397a175..b7536ca98820 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index d11090879aba..ed062c60ff0e 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 7c16745a06d7..77494a8178f0 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index f2f278a071e6..7ad4372df0d7 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 97c1af470cb7..48f277fb3406 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index ef3f4edf49c6..82478955b80e 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 47c0d426901f..fae5bade83f0 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index bf4b11c89d59..2f20ec64eac1 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 98108e79d2e8..74d31757120d 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 4f31b4ab9b66..db88589e91b3 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index d5b530bd669e..7b8386ad1d32 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index a3cdea6e82c8..4a99f9e9208d 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 4714cda467c4..f053bb24c5fd 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index a4f304362429..9ca8954e3d76 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 22017216ac50..20bb8fe8ed39 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index dd0e40a96cae..7354a2a1d3e2 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index a3cafccfb31a..5ee34e3f6eef 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index e9c9aca6330b..88ad9d50a04d 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 53788b16394b..019cbdbf8415 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 9cd0ec204f71..f802a59c5b11 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index ab187d765a0e..e4db7bee29d3 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 9c0eb210a26d..722b03787fe1 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index e2a10f726f83..31d680573318 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index c4e9fa87d724..00d57f125755 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index ab51995babb3..61ed66981f67 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 5931c0557f16..a8fe1d4e5670 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 2ade47cae2c8..7cfc7f081f87 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 4355fb385574..b4791ecb51c5 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 45d718c0f2ac..231b978bfc7d 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 19d7854ce632..40022b3bb1a8 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index c0a544da5b1d..58485b0bd80e 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 35bf583d89a7..68cdb9aac605 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 0d07a3755d59..0eb671aebc82 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 6ebd3a902454..394329d3aaaf 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 38abbd5827ff..0ee08ed7ed42 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index be0bbf3cbac3..84a3b9feb0f1 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 83ba5b8caa95..00f294ae957b 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 41bcab5f8d80..44cc139b0451 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index a5e9331845a6..3c787375e39a 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 551e0edcafe0..4d6076f8e8fd 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 4fb469289c4a..bfccde707bea 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index b7373bcba67b..6f1d14a911cd 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index d141455d3b1f..56bdc55e15db 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 81390bf3df25..d47266dba751 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index c9e33427b50a..91e2f3534fbf 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index dfe01cf9dbf7..f89278741cf9 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 8f74b010c17f..28ad4ebf335d 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index f7d25bc9cf36..1453e3a84adf 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 3068a6458903..7252b1d6b303 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 4356b77d88e6..6405ab95c74d 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 3d4ccb58f599..63a19bb963e6 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 432e7bc636e1..5cb064d3621b 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index ebcf90fe351b..c0c3f6509d17 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 808cf1e47a00..ee6bb6c5985f 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index cf4eec83f8ea..654cd92209aa 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 73d9ccba1a9b..1440d75bff0e 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index da0cbef10351..3ef943606d87 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 05b26329fdf3..c095b961e806 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 29c852eec9ea..ec7656da4e48 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index a4142b2c58b5..6e94513eee5c 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 2e15a92e38c8..cc73251eb0c8 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 8ffaeb91f7e3..95fea5558ccf 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 513a161242c8..2763cb4b6bd1 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 510cf209b14b..56786930c2a8 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 99d7bd6c741c..5646a645ee9b 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 3e73a5b631cd..929384a6ff00 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 751f28a8f843..bef726f440eb 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index cc4c4cfda146..cb1e847598de 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 4490f595377d..e9f4228fedf2 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 7ea6e764d320..5e681e83e6da 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 7b2347d60973..99ec32bb335e 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 81dd5e73eba0..ded8a50fa9b3 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index bd8c7a8e1a09..933c06ba5628 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index e69fcd6630da..54d97acd1896 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index b7a8c7c9827b..f5b7c1dce414 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index d8dc8a7f899a..45fdf8467352 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 34bf46733aa5..c7e5cbe1a085 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 4506591d0e85..2b822995e37c 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 6b86219ca60e..531e03b36d73 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 17c371f6d559..6b0f99b10ce4 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 62fb5fcf600f..227f72eda8ad 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 3e87fce632a2..30a5ddc50717 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index dcf287a96122..312dc91803bc 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index fd7728c63e72..4ff292c17cda 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 705abd8494c6..df6aed7d4881 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 822857c503c2..58ea77d12e13 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 3a0fce2d38fc..b0e1f00668c8 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index a40bebc2bca5..1ecec9f6aa58 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 662eeb73e17d..abcbaeddcc52 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index f0eb440067ed..bc052e890175 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 1e99cc0c0ac2..4450c6a87247 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 10a34869e87a..4f9aa15e74bb 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 3956d63c10ca..7312e50d9092 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index daa8d52da1d2..935ec01d1da0 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index c7d4620c5455..e116b6307e6d 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 289fba184d29..adf6411ea7ec 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 2591a6c5e72a..8164b506477e 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index b00a0289b6a4..428caa2c2a43 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 08d8204aefc5..cdf98abf8cdf 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 717ef0cfaf16..34113128c60a 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 46d38997675c..c302fa52c75b 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 0136f202b1bc..e1442ae68b98 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 47f300580f78..34a35cb7f13d 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 016c77d1cb2a..1e1e6d22b68b 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index b2112dbc62ee..e12bd0b9e089 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index dd4fc1945403..01665a526dfc 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index cca9823c2f6a..c1d6701414d6 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 3801b2d5e187..14f467bb34d3 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 143ec9d7606d..ef8ac0bcd21c 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 072144dbe37a..50c87fea27c9 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index f7f330b376c5..c81c84fa072e 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 3d4b3cbd03f3..4b8edd843522 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index d193783606a1..ca944b9fea58 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 8efddb21cf0b..03015555a44a 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 6d56069b6599..ef099b1e922a 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index d37acadf1811..474b177c9b61 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 3d8008dda4f6..ac6c5b260234 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 9465166158c7..318c00eb5312 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index e93f6af28536..4e6c2f11f6ce 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 96c279e626f0..72c3cf2b4921 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 42553d1bd5c2..be06bd6771ce 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 20142197865e..641afd2cbede 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 97d5ce5ffc97..77ad7e71ffc4 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index c89aca7e25bc..fb75c9b98f9f 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 37213ef8138d..ba2f1bde6b52 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 02959e94ed12..099614ff8e6f 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index e521ae0dd15f..8d328c6d7329 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index a85e7e9184cf..8c2fe61bf17c 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 9564363a4b16..2d59c5819fe5 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index ce56fa950d9e..880b645b90da 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 7305da8ed7d5..cf9cacbe3187 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index d6c442b4fb18..eb5dff9cbe0c 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index eafe4aefe7ff..a66f5a0e2789 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index c7cd2e5b3b63..98f3a244c628 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 963d11287bb5..f400b1ffeb59 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index c8f14085642c..0a03811f9ae4 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index a853e0e12b70..22c4cef566f3 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index d9b3fd4c54fd..7701d746012e 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 65e664b56095..65ac91804e8b 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index ff2c2b1f5c6c..ea31617e7aa9 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 65078f3cac0a..4f1b7f07e9cb 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 33958b4b3b75..f59d68b3b540 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index d9d9cc8fd45d..1d7823d2805b 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 38888eeb997a..8ad5598052e0 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index be9d25ded943..475ebeba22a9 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index ca72741769e3..c179663d63bf 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index b3ff40fbcb81..d2a8ff49026d 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 745e40c8ef75..ce5abe9319f6 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 5aa6f7834b84..a27d34fa8354 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index f47f9a365f9d..d976fa230550 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml index dfd7931e35d6..b76eeb048f37 100644 --- a/services/mwaa/pom.xml +++ b/services/mwaa/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT mwaa AWS Java SDK :: Services :: MWAA diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 2d6a764067c7..bd1b1aa3eb96 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index 2d572d4d3e75..75c8a322f6ff 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 257d4b9d20e6..65dcc228440f 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 30e4689dcdd2..b89178fa4483 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 1bd8be2966ed..aa1d1048208c 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index cbbc06df3b2f..fd7b31f8a8ce 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index fbf3597e8077..b8fa778d627b 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 4b94760a3534..2f9535d1c78a 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index ae7e129611fa..cabffe3577f1 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 39879227f5ed..a7577377f037 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 58491edcf263..827e0f4e0d9a 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index e6bf72dcc30f..9cdd2c6dc970 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index f44fe18de714..69a702dcc8c8 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 32bb31dd6150..806f825e69c6 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 4dd99c2324fc..a354b91a63ff 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index f9e2c71b4432..20b4367ed1ce 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.35 + 2.15.36-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 4c0170e95be7..051f3c1158e7 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 802e870e13f0..3589bc092bd0 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 358c92923c54..4e200411eafe 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index fdd39f1064a6..20ae5792d147 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 6cadbbfea5fa..d4c2cf828867 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 87ddcc1e43db..19be17ae315a 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 78679f8812b5..2ecaea7a83f5 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index b158e51358b7..3872f29ece29 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 5aeaf70d777c..fa681128396e 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 46cc89a3e8fc..08f569958f57 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 16d9f9751bb9..2c6533689209 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index ccbda6fec0d1..c8029d6d5c4f 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index fe970721ff85..dd06afa25950 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 9be29bb55110..18ede94fdf14 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index c8f90f32b511..d69ce70a1fda 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index cd95b2599f87..4d9fab6af932 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index c5af7a7f32db..ef546d7ad915 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 92ec2c2b9039..e65e69d846c4 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 15b473abc9ac..3f902f396f27 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index c2d6f2cb7a31..0c0e17d4bf0d 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index ac1eee6e816b..514d1bef4566 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index c82358544341..a220b905493f 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 7d1e5ad1e164..d3d1584a78cc 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index f98269692490..b2c8c10aeef9 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 5b0d298a1aa2..918f11df174e 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index cd9dd615a7a1..888f6a884983 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 1ffd8cf88f95..5b883df35a7e 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index d8e6004060e2..7a600e5162c8 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index 0a0ee9270dd8..4a60ac1cfd90 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 858bdecd303c..5040449da228 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 37231d46a5a0..1f5616d34494 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 0657fee0397d..788f635a1184 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 4685f6a17f6a..9b3f3318b5ef 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index cbd604887739..e7e05c2daa29 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 8952f16a62d4..c2758afe5f22 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 5c74d3c34efa..e318862c97a4 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 66dc87d5cae1..3bec0d945d0f 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index ec75622ca444..4fd62d564fbc 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 5d21f5a7be2f..895e4b07c321 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 8816d17701de..eda4a026675c 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 1bf3709d00be..bbbc3c1c0976 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 00f4a7a004b4..488fc925df63 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index a98d54d2f6c8..92c23376fedb 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 56f529660ade..f843e24514fa 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index b9857bf29acf..edf845d41404 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 98076ba26d3e..8c7e3c839214 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 47c40bdb78e1..897ffae8adad 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index a730278f9e9c..27e2ec724f49 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 71e0472a226c..1850ad013190 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index dab633c1c165..ba424c70d051 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index a4ecdf1bb323..c6ff92cf6712 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index bd5b545b86f6..9da2837c2b25 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 8b2eec1480a3..ffcef19404c5 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 8d851164dad4..a154d116e144 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 6451e0b44b99..b090185da89d 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 6ca7e6a8c073..a786a9568296 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 7fe6874f7c75..56b890a56cba 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 3647636ae7e3..afd6bb87cff5 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 08a754837b97..210ddda120cd 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 55f73cda2f82..42f07799c729 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 59ccd28b7b0f..e361c4981e99 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index b00dbe9a2111..cc75bf082786 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 5e27882cc8e8..76cfe5a3c5cc 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 7a43e78ab95f..ad5e07697bb3 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.35 + 2.15.36-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index f3cafe2a9c86..3299e41ef3c9 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.15.35 + 2.15.36-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 785ff747d216..8df8ee2148ef 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.15.35 + 2.15.36-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 7d04a677148e..c9f570593eb5 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.15.35 + 2.15.36-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index eda864ea8e55..272a7c1deb2d 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.15.35 + 2.15.36-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 0b7f8a523439..f89dbff215ad 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.15.35 + 2.15.36-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 34d8f05eab62..0ade373edbd8 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.35 + 2.15.36-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index e940b1c3ba03..0a3ce8ce5298 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.15.35 + 2.15.36-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 3c518b206932..92f4fb9833bb 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.15.35 + 2.15.36-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 88babab08d26..6a462fc28340 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.15.35 + 2.15.36-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index f4ede0952aa5..38c1b4e08fed 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.15.35 + 2.15.36-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 9b7065f4c19b..79e76dfdee27 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.35 + 2.15.36-SNAPSHOT 4.0.0 From 957b88fc7496db8b94c76bf8c31f44d6530c189a Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Mon, 23 Nov 2020 13:23:22 -0800 Subject: [PATCH 300/339] Make Lazy implement Closeable so that it can be closed to close its initializer and value. Fixes #2149. --- .../bugfix-AWSSDKforJavav2-a204bec.json | 6 +++++ .../LazyAwsCredentialsProviderTest.java | 27 +++++++++++++++++++ .../software/amazon/awssdk/utils/Lazy.java | 17 +++++++++++- 3 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 .changes/next-release/bugfix-AWSSDKforJavav2-a204bec.json diff --git a/.changes/next-release/bugfix-AWSSDKforJavav2-a204bec.json b/.changes/next-release/bugfix-AWSSDKforJavav2-a204bec.json new file mode 100644 index 000000000000..a5a543d3d40e --- /dev/null +++ b/.changes/next-release/bugfix-AWSSDKforJavav2-a204bec.json @@ -0,0 +1,6 @@ +{ + "type": "bugfix", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Fixed a resource leak that could occur when closing the default credentials provider (or a client using the default credentials provider), when `closeable` credentials like STS or SSO were in use. Fixes [#2149](https://github.com/aws/aws-sdk-java-v2/issues/2149)." +} diff --git a/core/auth/src/test/java/software/amazon/awssdk/auth/credentials/internal/LazyAwsCredentialsProviderTest.java b/core/auth/src/test/java/software/amazon/awssdk/auth/credentials/internal/LazyAwsCredentialsProviderTest.java index 25fcbd0f1f2a..e712ea6257ce 100644 --- a/core/auth/src/test/java/software/amazon/awssdk/auth/credentials/internal/LazyAwsCredentialsProviderTest.java +++ b/core/auth/src/test/java/software/amazon/awssdk/auth/credentials/internal/LazyAwsCredentialsProviderTest.java @@ -20,6 +20,7 @@ import org.junit.Test; import org.mockito.Mockito; import software.amazon.awssdk.auth.credentials.AwsCredentialsProvider; +import software.amazon.awssdk.utils.SdkAutoCloseable; public class LazyAwsCredentialsProviderTest { @SuppressWarnings("unchecked") @@ -48,4 +49,30 @@ public void resolveCredentialsInvokesSupplierExactlyOnce() { Mockito.verify(credentialsConstructor, Mockito.times(1)).get(); Mockito.verify(credentials, Mockito.times(2)).resolveCredentials(); } + + @Test + public void delegatesClosesInitializerAndValue() { + CloseableSupplier initializer = Mockito.mock(CloseableSupplier.class); + CloseableCredentialsProvider value = Mockito.mock(CloseableCredentialsProvider.class); + + Mockito.when(initializer.get()).thenReturn(value); + + LazyAwsCredentialsProvider.create(initializer).close(); + + Mockito.verify(initializer).close(); + Mockito.verify(value).close(); + } + + @Test + public void delegatesClosesInitializerEvenIfGetFails() { + CloseableSupplier initializer = Mockito.mock(CloseableSupplier.class); + Mockito.when(initializer.get()).thenThrow(new RuntimeException()); + + LazyAwsCredentialsProvider.create(initializer).close(); + + Mockito.verify(initializer).close(); + } + + private interface CloseableSupplier extends Supplier, SdkAutoCloseable {} + private interface CloseableCredentialsProvider extends SdkAutoCloseable, AwsCredentialsProvider {} } diff --git a/utils/src/main/java/software/amazon/awssdk/utils/Lazy.java b/utils/src/main/java/software/amazon/awssdk/utils/Lazy.java index 6923ab8a0bd9..2277938de961 100644 --- a/utils/src/main/java/software/amazon/awssdk/utils/Lazy.java +++ b/utils/src/main/java/software/amazon/awssdk/utils/Lazy.java @@ -20,9 +20,11 @@ /** * A class that lazily constructs a value the first time {@link #getValue()} is invoked. + * + * This should be {@link #close()}d if the initializer returns value that needs to be {@link AutoCloseable#close()}d. */ @SdkPublicApi -public class Lazy { +public class Lazy implements SdkAutoCloseable { private final Supplier initializer; private volatile T value; @@ -53,4 +55,17 @@ public String toString() { .add("value", value == null ? "Uninitialized" : value) .build(); } + + @Override + public void close() { + try { + // Make sure the value has been initialized before we attempt to close it + getValue(); + } catch (RuntimeException e) { + // Failed to initialize the value. + } + + IoUtils.closeIfCloseable(initializer, null); + IoUtils.closeIfCloseable(value, null); + } } From c6f32c0804155a2f35d4950df60bc0a916c9d28a Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Tue, 24 Nov 2020 15:18:56 -0800 Subject: [PATCH 301/339] Add LICENSE.txt and NOTICE.txt to META-INF directory of generated JARs. --- .../feature-AWSSDKforJavav2-efc96d4.json | 6 ++++++ pom.xml | 19 +++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-efc96d4.json diff --git a/.changes/next-release/feature-AWSSDKforJavav2-efc96d4.json b/.changes/next-release/feature-AWSSDKforJavav2-efc96d4.json new file mode 100644 index 000000000000..48b203121c32 --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-efc96d4.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Add LICENSE.txt and NOTICE.txt to META-INF directory of generated JARs" +} diff --git a/pom.xml b/pom.xml index 3d0df50f2774..145be64d7482 100644 --- a/pom.xml +++ b/pom.xml @@ -286,6 +286,25 @@ + + add-license-notice + generate-sources + + add-resource + + + + + ${maven.multiModuleProjectDirectory} + + LICENSE.txt + NOTICE.txt + + META-INF + + + + From 668e773818eb7cb095288c6733479a143f0aedcf Mon Sep 17 00:00:00 2001 From: debora-ito Date: Wed, 25 Nov 2020 10:16:31 -0800 Subject: [PATCH 302/339] Add links to Maintenance Policy to README --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index cf530a79c8da..2c8621c4dd08 100644 --- a/README.md +++ b/README.md @@ -132,6 +132,12 @@ You can find sample code for v2 in the following places: * [aws-doc-sdk-examples] repo. * Integration tests in this repo. They are located in the `it` directory under each service module, eg: [s3-integration-tests] +## Maintenance and Support for SDK Major Versions +For information about maintenance and support for SDK major versions and their underlying dependencies, see the following in the AWS SDKs and Tools Shared Configuration and Credentials Reference Guide: + +* [AWS SDKs and Tools Maintenance Policy][maintenance-policy] +* [AWS SDKs and Tools Version Support Matrix][version-matrix] + ## Giving Feedback We need your help in making this SDK great. Please participate in the community and contribute to this effort by submitting issues, participating in discussion forums and submitting pull requests through the following channels: @@ -161,3 +167,5 @@ We need your help in making this SDK great. Please participate in the community [bom]: http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22software.amazon.awssdk%22%20AND%20a%3A%22bom%22 [aws-doc-sdk-examples]: https://github.com/awsdocs/aws-doc-sdk-examples/tree/master/javav2 [s3-integration-tests]: https://github.com/aws/aws-sdk-java-v2/tree/master/services/s3/src/it/java/software/amazon/awssdk/services/s3 +[maintenance-policy]: https://docs.aws.amazon.com/credref/latest/refdocs/maint-policy.html +[version-matrix]: https://docs.aws.amazon.com/credref/latest/refdocs/version-support-matrix.html From fef98ffd1227e7d0f7ea7addef8773ffb3d31153 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 1 Dec 2020 04:21:49 +0000 Subject: [PATCH 303/339] Amazon Elastic Compute Cloud Update: This release introduces Amazon EC2 Mac1 instances, a new Amazon EC2 instance family built on Apple Mac mini computers, powered by AWS Nitro System, and support running macOS workloads on Amazon EC2 --- ...feature-AmazonElasticComputeCloud-bc11f31.json | 6 ++++++ .../resources/codegen-resources/service-2.json | 15 ++++++++++----- 2 files changed, 16 insertions(+), 5 deletions(-) create mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-bc11f31.json diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-bc11f31.json b/.changes/next-release/feature-AmazonElasticComputeCloud-bc11f31.json new file mode 100644 index 000000000000..978abaeaf4f1 --- /dev/null +++ b/.changes/next-release/feature-AmazonElasticComputeCloud-bc11f31.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "This release introduces Amazon EC2 Mac1 instances, a new Amazon EC2 instance family built on Apple Mac mini computers, powered by AWS Nitro System, and support running macOS workloads on Amazon EC2" +} diff --git a/services/ec2/src/main/resources/codegen-resources/service-2.json b/services/ec2/src/main/resources/codegen-resources/service-2.json index 4cbac98719da..a0a254768d5a 100755 --- a/services/ec2/src/main/resources/codegen-resources/service-2.json +++ b/services/ec2/src/main/resources/codegen-resources/service-2.json @@ -19715,7 +19715,8 @@ "shape":"FleetLaunchTemplateConfigRequest", "locationName":"item" }, - "max":50 + "max":50, + "min":0 }, "FleetLaunchTemplateConfigRequest":{ "type":"structure", @@ -19785,7 +19786,8 @@ "shape":"FleetLaunchTemplateOverridesRequest", "locationName":"item" }, - "max":50 + "max":50, + "min":0 }, "FleetLaunchTemplateOverridesRequest":{ "type":"structure", @@ -24394,7 +24396,8 @@ "m6gd.4xlarge", "m6gd.8xlarge", "m6gd.12xlarge", - "m6gd.16xlarge" + "m6gd.16xlarge", + "mac1.metal" ] }, "InstanceTypeHypervisor":{ @@ -31722,7 +31725,8 @@ "type":"list", "member":{"shape":"InstanceType"}, "locationName":"InstanceType", - "max":100 + "max":100, + "min":0 }, "RequestLaunchTemplateData":{ "type":"structure", @@ -38608,7 +38612,8 @@ }, "VersionDescription":{ "type":"string", - "max":255 + "max":255, + "min":0 }, "VersionStringList":{ "type":"list", From b542d229847e2a18672be516b6b6a347d0b7ca92 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 1 Dec 2020 04:22:48 +0000 Subject: [PATCH 304/339] Updated endpoints.json. --- .../feature-AWSSDKforJavav2-bedacd4.json | 6 ++++ .../regions/internal/region/endpoints.json | 28 +++++++++++++------ 2 files changed, 26 insertions(+), 8 deletions(-) create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json new file mode 100644 index 000000000000..ae3f84993e9e --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." +} diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json index 973270b68c5f..29163a1ef01c 100644 --- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json +++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json @@ -242,6 +242,19 @@ "us-west-2" : { } } }, + "airflow" : { + "endpoints" : { + "ap-northeast-1" : { }, + "ap-southeast-1" : { }, + "ap-southeast-2" : { }, + "eu-central-1" : { }, + "eu-north-1" : { }, + "eu-west-1" : { }, + "us-east-1" : { }, + "us-east-2" : { }, + "us-west-2" : { } + } + }, "api.detective" : { "defaults" : { "protocols" : [ "https" ] @@ -849,8 +862,7 @@ }, "chime" : { "defaults" : { - "protocols" : [ "https" ], - "sslCommonName" : "service.chime.aws.amazon.com" + "protocols" : [ "https" ] }, "endpoints" : { "aws-global" : { @@ -1322,8 +1334,10 @@ }, "hostname" : "cognito-identity-fips.us-west-2.amazonaws.com" }, + "sa-east-1" : { }, "us-east-1" : { }, "us-east-2" : { }, + "us-west-1" : { }, "us-west-2" : { } } }, @@ -1358,6 +1372,7 @@ }, "hostname" : "cognito-idp-fips.us-west-2.amazonaws.com" }, + "sa-east-1" : { }, "us-east-1" : { }, "us-east-2" : { }, "us-west-2" : { } @@ -6068,11 +6083,14 @@ }, "transcribestreaming" : { "endpoints" : { + "ap-northeast-1" : { }, + "ap-northeast-2" : { }, "ap-southeast-2" : { }, "ca-central-1" : { }, "eu-central-1" : { }, "eu-west-1" : { }, "eu-west-2" : { }, + "sa-east-1" : { }, "us-east-1" : { }, "us-east-2" : { }, "us-west-2" : { } @@ -7031,12 +7049,6 @@ "region" : "cn-northwest-1" }, "hostname" : "organizations.cn-northwest-1.amazonaws.com.cn" - }, - "fips-aws-cn-global" : { - "credentialScope" : { - "region" : "cn-northwest-1" - }, - "hostname" : "organizations.cn-northwest-1.amazonaws.com.cn" } }, "isRegionalized" : false, From 8276dcc7d798855250bd0b85c567600a6500d6bc Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 1 Dec 2020 04:23:19 +0000 Subject: [PATCH 305/339] Release 2.15.36. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.36.json | 30 +++++++++++++++++++ .../bugfix-AWSSDKforJavav2-a204bec.json | 6 ---- .../feature-AWSSDKforJavav2-bedacd4.json | 6 ---- .../feature-AWSSDKforJavav2-efc96d4.json | 6 ---- ...ure-AmazonElasticComputeCloud-bc11f31.json | 6 ---- CHANGELOG.md | 13 ++++++++ README.md | 8 ++--- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/mwaa/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 291 files changed, 331 insertions(+), 312 deletions(-) create mode 100644 .changes/2.15.36.json delete mode 100644 .changes/next-release/bugfix-AWSSDKforJavav2-a204bec.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-efc96d4.json delete mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-bc11f31.json diff --git a/.changes/2.15.36.json b/.changes/2.15.36.json new file mode 100644 index 000000000000..8094b61486c6 --- /dev/null +++ b/.changes/2.15.36.json @@ -0,0 +1,30 @@ +{ + "version": "2.15.36", + "date": "2020-11-30", + "entries": [ + { + "type": "bugfix", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Fixed a resource leak that could occur when closing the default credentials provider (or a client using the default credentials provider), when `closeable` credentials like STS or SSO were in use. Fixes [#2149](https://github.com/aws/aws-sdk-java-v2/issues/2149)." + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." + }, + { + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "This release introduces Amazon EC2 Mac1 instances, a new Amazon EC2 instance family built on Apple Mac mini computers, powered by AWS Nitro System, and support running macOS workloads on Amazon EC2" + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Add LICENSE.txt and NOTICE.txt to META-INF directory of generated JARs" + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/bugfix-AWSSDKforJavav2-a204bec.json b/.changes/next-release/bugfix-AWSSDKforJavav2-a204bec.json deleted file mode 100644 index a5a543d3d40e..000000000000 --- a/.changes/next-release/bugfix-AWSSDKforJavav2-a204bec.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "bugfix", - "category": "AWS SDK for Java v2", - "contributor": "", - "description": "Fixed a resource leak that could occur when closing the default credentials provider (or a client using the default credentials provider), when `closeable` credentials like STS or SSO were in use. Fixes [#2149](https://github.com/aws/aws-sdk-java-v2/issues/2149)." -} diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json deleted file mode 100644 index ae3f84993e9e..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS SDK for Java v2", - "contributor": "", - "description": "Updated service endpoint metadata." -} diff --git a/.changes/next-release/feature-AWSSDKforJavav2-efc96d4.json b/.changes/next-release/feature-AWSSDKforJavav2-efc96d4.json deleted file mode 100644 index 48b203121c32..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-efc96d4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS SDK for Java v2", - "contributor": "", - "description": "Add LICENSE.txt and NOTICE.txt to META-INF directory of generated JARs" -} diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-bc11f31.json b/.changes/next-release/feature-AmazonElasticComputeCloud-bc11f31.json deleted file mode 100644 index 978abaeaf4f1..000000000000 --- a/.changes/next-release/feature-AmazonElasticComputeCloud-bc11f31.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Elastic Compute Cloud", - "contributor": "", - "description": "This release introduces Amazon EC2 Mac1 instances, a new Amazon EC2 instance family built on Apple Mac mini computers, powered by AWS Nitro System, and support running macOS workloads on Amazon EC2" -} diff --git a/CHANGELOG.md b/CHANGELOG.md index e6af6d3f3d95..de21d8c91c9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# __2.15.36__ __2020-11-30__ +## __AWS SDK for Java v2__ + - ### Features + - Add LICENSE.txt and NOTICE.txt to META-INF directory of generated JARs + - Updated service endpoint metadata. + + - ### Bugfixes + - Fixed a resource leak that could occur when closing the default credentials provider (or a client using the default credentials provider), when `closeable` credentials like STS or SSO were in use. Fixes [#2149](https://github.com/aws/aws-sdk-java-v2/issues/2149). + +## __Amazon Elastic Compute Cloud__ + - ### Features + - This release introduces Amazon EC2 Mac1 instances, a new Amazon EC2 instance family built on Apple Mac mini computers, powered by AWS Nitro System, and support running macOS workloads on Amazon EC2 + # __2.15.35__ __2020-11-24__ ## __AWS Batch__ - ### Features diff --git a/README.md b/README.md index 2c8621c4dd08..8692c9337dca 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.35 + 2.15.36 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.35 + 2.15.36 software.amazon.awssdk s3 - 2.15.35 + 2.15.36 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.35 + 2.15.36 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index df1f9d133505..292a66fad8e7 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index d36d0371a2b2..5493afac3ff5 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index df21a0d5e549..60879587211f 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.15.36-SNAPSHOT + 2.15.36 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 01c709e4acaa..ca5ac6d07084 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index e0a350e1685b..93a5ee56b842 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.36-SNAPSHOT + 2.15.36 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index a046fa7522e1..682c983cb873 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.36-SNAPSHOT + 2.15.36 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 718902a1b614..457ac2f0cda1 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.15.36-SNAPSHOT + 2.15.36 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index d1d08706f781..c904ac03a848 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.36-SNAPSHOT + 2.15.36 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index d3d10b956413..e3ff6a601df3 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.15.36-SNAPSHOT + 2.15.36 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index bc3f1917a6af..dd0bbdc0dc1c 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.36-SNAPSHOT + 2.15.36 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index ea6ad1c39f4a..ea91f4d7f862 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 6f59484c0240..580974b0cd2c 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index db6cfb987a71..23a031fd978b 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.36-SNAPSHOT + 2.15.36 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 290705556b27..9a1b7c7a9e25 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.36-SNAPSHOT + 2.15.36 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 26160ef34574..06f9c95742cb 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index ee1a626767f6..91514f6d05d8 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 12c00a304277..adf1d8cf6eb1 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.36-SNAPSHOT + 2.15.36 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 9e22d430dadd..289ea5b0dc79 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.15.36-SNAPSHOT + 2.15.36 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 3c2275d9e5dc..573e844195f1 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index d7be0858a0de..e13bd0e36178 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.15.36-SNAPSHOT + 2.15.36 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 2adfd27dba48..fe5ed5003778 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.15.36-SNAPSHOT + 2.15.36 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 16390a9efc54..1a4759dab3ea 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.15.36-SNAPSHOT + 2.15.36 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index ac8fe3d9b697..2022f144b866 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 2f255bc20688..a22dc3954ac9 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index d7e60eb3b0ce..4c68e2798506 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.36-SNAPSHOT + 2.15.36 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 671e8ec0dcdd..886b448a91e0 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.36-SNAPSHOT + 2.15.36 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 10014d8f6979..5b041b8ca8d8 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.15.36-SNAPSHOT + 2.15.36 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 3e71f020d55d..228f823c481e 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.15.36-SNAPSHOT + 2.15.36 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index fcdaeae8dab5..f9ab408fd485 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.15.36-SNAPSHOT + 2.15.36 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 96bbff1c3146..be87c3b12447 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.15.36-SNAPSHOT + 2.15.36 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 8500dcbc79f7..5966c6fdd187 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 8d08c7d3e7b2..956569ee482f 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.15.36-SNAPSHOT + 2.15.36 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index e2c931cd1feb..8eaa24c50605 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.15.36-SNAPSHOT + 2.15.36 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 3948387857b6..852b56752327 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.36-SNAPSHOT + 2.15.36 metric-publishers diff --git a/pom.xml b/pom.xml index 145be64d7482..b623aa4bb9ec 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.36-SNAPSHOT + 2.15.36 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 0ade07d636ea..70ceed2370a4 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.36-SNAPSHOT + 2.15.36 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 19f91e232649..ddd6c08ae900 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.15.36-SNAPSHOT + 2.15.36 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 8f562b578150..bd235d7ae135 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.36-SNAPSHOT + 2.15.36 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 0b42fa2aaa0f..2223b3d6c55d 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 10647abb61ab..b936f04a0602 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 02f2f9bf033f..ce06e5c3abf3 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 0aa69a919116..d63569a7849a 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index b7536ca98820..42dcb6a0bad3 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index ed062c60ff0e..bdabfcc9377c 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 77494a8178f0..dd04a645cb70 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 7ad4372df0d7..c3b297694a63 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 48f277fb3406..e955327a1c0c 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 82478955b80e..f7dd2f3261f6 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index fae5bade83f0..01c8df16b9c6 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 2f20ec64eac1..9544ca68dc16 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 74d31757120d..04acff6fa84f 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index db88589e91b3..a2ade480b5f1 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 7b8386ad1d32..9036ac4ed6c3 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 4a99f9e9208d..cc6bf8f25a00 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index f053bb24c5fd..08a869689417 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 9ca8954e3d76..c649b8af72c7 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 20bb8fe8ed39..00c57e0fa055 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 7354a2a1d3e2..a76071416fe7 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 5ee34e3f6eef..1e6a5c521802 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 88ad9d50a04d..19c66bc0a962 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 019cbdbf8415..2ee49ad860a5 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index f802a59c5b11..10018e7574a5 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index e4db7bee29d3..6c97b3e8b871 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 722b03787fe1..1199670a3749 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 31d680573318..230cd2a90d19 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 00d57f125755..a6467448002d 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 61ed66981f67..e5a0f54f24bb 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index a8fe1d4e5670..31af69f3f7ff 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 7cfc7f081f87..215f798a3c50 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index b4791ecb51c5..fc1a74171d83 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 231b978bfc7d..43743ed063a1 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 40022b3bb1a8..62aa5eebd21c 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 58485b0bd80e..757d30c5d784 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 68cdb9aac605..15a38298c402 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 0eb671aebc82..4514cc4becd6 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 394329d3aaaf..136777c46421 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 0ee08ed7ed42..6861910eb72d 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 84a3b9feb0f1..9bad1afb5c0c 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 00f294ae957b..b9b2b4330557 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 44cc139b0451..2fcb45fd295f 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 3c787375e39a..799b933260f5 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 4d6076f8e8fd..d3cfc63f5adc 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index bfccde707bea..d3bd0d3421f0 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 6f1d14a911cd..2fa886ca9768 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 56bdc55e15db..2095c70dfd56 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index d47266dba751..e99c5afdeffe 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 91e2f3534fbf..a242b2c5c02b 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index f89278741cf9..1744b0ec686c 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 28ad4ebf335d..afef8235ca70 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 1453e3a84adf..79215b483b6c 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 7252b1d6b303..9a8c5edac94f 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 6405ab95c74d..455bb78955e0 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 63a19bb963e6..b1c967c05214 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 5cb064d3621b..b658a6159cb8 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index c0c3f6509d17..cee5e55be4fe 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index ee6bb6c5985f..a54b3320c3b0 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index 654cd92209aa..a53dae2d56e9 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 1440d75bff0e..08af754f029d 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 3ef943606d87..29a13469debd 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index c095b961e806..e0430e6aed5c 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index ec7656da4e48..44a6998b1cef 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 6e94513eee5c..39092f31a4a0 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index cc73251eb0c8..7b77bcaaf76d 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 95fea5558ccf..ed594362527a 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 2763cb4b6bd1..103df463da48 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 56786930c2a8..9ec918727f36 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 5646a645ee9b..d3ffaf100e33 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 929384a6ff00..313c29568a2c 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index bef726f440eb..abe4fb184f73 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index cb1e847598de..67865044b12b 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index e9f4228fedf2..a5956408210c 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 5e681e83e6da..86a0a455070f 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 99ec32bb335e..fe91ea695915 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index ded8a50fa9b3..b159f7fc6431 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 933c06ba5628..f58deea39627 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 54d97acd1896..cfd538c88db5 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index f5b7c1dce414..0e40c4623ec2 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 45fdf8467352..fd5c284152a0 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index c7e5cbe1a085..eecdc53386f2 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 2b822995e37c..0fec99509355 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 531e03b36d73..77b39bde5e2e 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 6b0f99b10ce4..328cd2ba0110 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 227f72eda8ad..4542a40f5771 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 30a5ddc50717..5d98ec234288 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 312dc91803bc..228746e92483 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 4ff292c17cda..3b4965f0e599 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index df6aed7d4881..c07d261ede18 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 58ea77d12e13..3355598434fb 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index b0e1f00668c8..74d4bc6a5193 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 1ecec9f6aa58..c3d758768dea 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index abcbaeddcc52..b38bf457b499 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index bc052e890175..71d43b696b97 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 4450c6a87247..704f73724391 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 4f9aa15e74bb..d88d944c0c85 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 7312e50d9092..dbfa53a83a53 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 935ec01d1da0..cdaece08f333 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index e116b6307e6d..70342ac85c06 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index adf6411ea7ec..11d4625da67a 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 8164b506477e..082ed10a10ef 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 428caa2c2a43..d885f7cdbd90 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index cdf98abf8cdf..28a26d91fb20 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 34113128c60a..76898a3e674b 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index c302fa52c75b..983120074b29 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index e1442ae68b98..01684eef05b3 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 34a35cb7f13d..ca6c78f3d468 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 1e1e6d22b68b..4cfbf8862983 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index e12bd0b9e089..9fbbceedf88e 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 01665a526dfc..605ea8a13178 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index c1d6701414d6..921c75d4f114 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 14f467bb34d3..bbfd8c47ce54 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index ef8ac0bcd21c..efc4cc3348b6 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 50c87fea27c9..42a694d538b3 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index c81c84fa072e..b1dc88864177 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 4b8edd843522..252cc5972b2c 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index ca944b9fea58..61ab09fd4583 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 03015555a44a..6445ff33da1a 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index ef099b1e922a..0803490bc3ac 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 474b177c9b61..978deb4dad4a 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index ac6c5b260234..48297409dec9 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 318c00eb5312..c46be1967d0d 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 4e6c2f11f6ce..466a2519cc8d 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 72c3cf2b4921..5d92f8a56448 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index be06bd6771ce..4833ee85be07 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 641afd2cbede..a386a52f0159 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 77ad7e71ffc4..29a103850271 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index fb75c9b98f9f..eb0871d9b2b8 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index ba2f1bde6b52..3cb333a4033c 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 099614ff8e6f..79241002874c 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 8d328c6d7329..91973654a8f1 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 8c2fe61bf17c..b376fac4be24 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 2d59c5819fe5..63a599703699 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 880b645b90da..ece5c8d07d27 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index cf9cacbe3187..aa467e5a2679 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index eb5dff9cbe0c..64f7a19fd480 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index a66f5a0e2789..723955048540 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 98f3a244c628..955c2cadcd18 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index f400b1ffeb59..611e725ec88e 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 0a03811f9ae4..c8d6f7da0e78 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 22c4cef566f3..cb1ea77bb85f 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 7701d746012e..16b9b8319103 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 65ac91804e8b..2d61fb828cc6 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index ea31617e7aa9..9cc04d8168f2 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 4f1b7f07e9cb..27a9bda886cf 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index f59d68b3b540..c2e4b63e8949 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 1d7823d2805b..be16852672c6 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 8ad5598052e0..c9370e6e7e5f 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 475ebeba22a9..72bde67ebddc 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index c179663d63bf..c0ce8e74a321 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index d2a8ff49026d..e9922fe88c5b 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index ce5abe9319f6..875eea07cbac 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index a27d34fa8354..1abd5738cc31 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index d976fa230550..60ce0da46cfa 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml index b76eeb048f37..3d00b9d40950 100644 --- a/services/mwaa/pom.xml +++ b/services/mwaa/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 mwaa AWS Java SDK :: Services :: MWAA diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index bd1b1aa3eb96..e66e8ff9ab90 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index 75c8a322f6ff..c5c12220659f 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 65dcc228440f..1f397700ff39 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index b89178fa4483..20e7bcae017b 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index aa1d1048208c..828197b2b53c 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index fd7b31f8a8ce..fa708da7f644 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index b8fa778d627b..bf3053e87acc 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 2f9535d1c78a..9a81d07913b1 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index cabffe3577f1..845391522c2d 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index a7577377f037..d605cc4bc854 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 827e0f4e0d9a..c6d17b49c80f 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 9cdd2c6dc970..5cb9abd82bfc 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 69a702dcc8c8..acdccc48ca5b 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 806f825e69c6..9a9e2cf146d9 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index a354b91a63ff..5caa5a12ce7a 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 20b4367ed1ce..e85590d47f1c 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.36-SNAPSHOT + 2.15.36 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 051f3c1158e7..74f7bc7603f3 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 3589bc092bd0..ed00f51643d6 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 4e200411eafe..573ecd04c325 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 20ae5792d147..1c45699e8f87 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index d4c2cf828867..bde50d4a580c 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 19be17ae315a..84efe4aabdd5 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 2ecaea7a83f5..925086a84a84 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 3872f29ece29..ad27798a8e21 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index fa681128396e..b305e35e6a7e 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 08f569958f57..54d9b6ffc91e 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 2c6533689209..da578ef56c43 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index c8029d6d5c4f..6760923c1f52 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index dd06afa25950..2cbd964169b4 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 18ede94fdf14..5b3793336b36 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index d69ce70a1fda..6924be6ab089 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 4d9fab6af932..6c81d402c44a 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index ef546d7ad915..7d988a7ed587 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index e65e69d846c4..482099ea7ee9 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 3f902f396f27..8eb8ffd02a53 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 0c0e17d4bf0d..335a479e5734 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 514d1bef4566..6823f6dabb9a 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index a220b905493f..739c57e547d6 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index d3d1584a78cc..2e9620788a7c 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index b2c8c10aeef9..50283fdb2b29 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 918f11df174e..85fd832e6d8a 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 888f6a884983..08b8041ee6bc 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 5b883df35a7e..f4ec5df9c42e 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 7a600e5162c8..e248c54e1794 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index 4a60ac1cfd90..9750d11954a2 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 5040449da228..e0f6b9f56671 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 1f5616d34494..965be355f498 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 788f635a1184..7ec25f743154 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 9b3f3318b5ef..b80e38379f8c 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index e7e05c2daa29..234043bf7bf7 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index c2758afe5f22..954c1e4518da 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index e318862c97a4..7e78d182741b 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 3bec0d945d0f..81b0f0c88c6e 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 4fd62d564fbc..8d99dce1b30d 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 895e4b07c321..5b30767d48d1 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index eda4a026675c..6daf7a9787a4 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index bbbc3c1c0976..1e1b7ecc69f7 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 488fc925df63..d5850fa01aa2 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 92c23376fedb..0d003e97c7ea 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index f843e24514fa..36598acee9cc 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index edf845d41404..7ead1baf3eff 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 8c7e3c839214..07e5ddb90b7d 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 897ffae8adad..dd2bac4d9205 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 27e2ec724f49..64d6081fe15c 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 1850ad013190..43b51c15d91a 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index ba424c70d051..c5913edb3585 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index c6ff92cf6712..2dd7959fab64 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 9da2837c2b25..bef3d0bed6bc 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index ffcef19404c5..115b55631119 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index a154d116e144..d86f24d7cbaa 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index b090185da89d..88bb097b8307 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index a786a9568296..34943ad8304e 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 56b890a56cba..5dad62cf0287 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index afd6bb87cff5..8bce8c424f74 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 210ddda120cd..7ba2dc7bb5f3 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 42f07799c729..59437251ba62 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index e361c4981e99..6fef0fd29593 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index cc75bf082786..6681503c4de0 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 76cfe5a3c5cc..db09874e3e12 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index ad5e07697bb3..65ebf32ff912 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36-SNAPSHOT + 2.15.36 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 3299e41ef3c9..1676c5a4c02b 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.15.36-SNAPSHOT + 2.15.36 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 8df8ee2148ef..eb6903f4a837 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.15.36-SNAPSHOT + 2.15.36 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index c9f570593eb5..bacc94eb8e86 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.15.36-SNAPSHOT + 2.15.36 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 272a7c1deb2d..ea9a54380d1c 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.15.36-SNAPSHOT + 2.15.36 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index f89dbff215ad..4481ab219f9c 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.15.36-SNAPSHOT + 2.15.36 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 0ade373edbd8..cb53b5aaa25c 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.36-SNAPSHOT + 2.15.36 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 0a3ce8ce5298..e3cada538a8c 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.15.36-SNAPSHOT + 2.15.36 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 92f4fb9833bb..ec2555aeff71 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.15.36-SNAPSHOT + 2.15.36 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 6a462fc28340..94574a6cb84d 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.15.36-SNAPSHOT + 2.15.36 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 38c1b4e08fed..a502e0953a00 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.15.36-SNAPSHOT + 2.15.36 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 79e76dfdee27..7530f1995f11 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.36-SNAPSHOT + 2.15.36 4.0.0 From c5d7778d08446e743078492bdbe9daaea8f0e3d9 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Tue, 1 Dec 2020 04:48:36 +0000 Subject: [PATCH 306/339] Update to next snapshot version: 2.15.37-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/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/ecs/pom.xml | 2 +- services/efs/pom.xml | 2 +- services/eks/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/mwaa/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/pom.xml | 2 +- services/servicecatalogappregistry/pom.xml | 2 +- services/servicediscovery/pom.xml | 2 +- services/servicequotas/pom.xml | 2 +- services/ses/pom.xml | 2 +- services/sesv2/pom.xml | 2 +- services/sfn/pom.xml | 2 +- services/shield/pom.xml | 2 +- services/signer/pom.xml | 2 +- services/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 284 files changed, 284 insertions(+), 284 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 292a66fad8e7..7ef358ebe71a 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 5493afac3ff5..e04d22c5a539 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 60879587211f..7df9807da1b1 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.15.36 + 2.15.37-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index ca5ac6d07084..e611b15ffeb3 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 93a5ee56b842..c12256ef4910 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.36 + 2.15.37-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 682c983cb873..4356194c2bf5 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.36 + 2.15.37-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 457ac2f0cda1..e6f15e0ffd4d 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.15.36 + 2.15.37-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index c904ac03a848..8a81d2c008a9 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.36 + 2.15.37-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index e3ff6a601df3..4093497ec406 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.15.36 + 2.15.37-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index dd0bbdc0dc1c..2f2f6e98e7db 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.36 + 2.15.37-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index ea91f4d7f862..290c240c4d41 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 580974b0cd2c..ba10d13c164e 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 23a031fd978b..2ec2350e0196 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.36 + 2.15.37-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 9a1b7c7a9e25..c5ef4a4f2b35 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.36 + 2.15.37-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 06f9c95742cb..05ef91507a5f 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 91514f6d05d8..5c9301e3f338 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index adf1d8cf6eb1..15c275ee33f2 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.36 + 2.15.37-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 289ea5b0dc79..ef612ea4c504 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.15.36 + 2.15.37-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 573e844195f1..f6bf685f49fe 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index e13bd0e36178..de80a2ac4d42 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.15.36 + 2.15.37-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index fe5ed5003778..0061b2da2a23 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.15.36 + 2.15.37-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 1a4759dab3ea..90ca173ac033 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.15.36 + 2.15.37-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 2022f144b866..166989f1ed61 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index a22dc3954ac9..1db9a9270982 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 4c68e2798506..524418be4b4c 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.36 + 2.15.37-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 886b448a91e0..b32509f440e3 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.36 + 2.15.37-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 5b041b8ca8d8..b4ed0c50a960 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.15.36 + 2.15.37-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index 228f823c481e..fb3fa95ef04c 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.15.36 + 2.15.37-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index f9ab408fd485..52cb124232d7 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.15.36 + 2.15.37-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index be87c3b12447..6e1219c8992f 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.15.36 + 2.15.37-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 5966c6fdd187..8dc937e92630 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 956569ee482f..298984ede915 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.15.36 + 2.15.37-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 8eaa24c50605..3aa8fb792aca 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.15.36 + 2.15.37-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 852b56752327..ce195626f9a7 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.36 + 2.15.37-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index b623aa4bb9ec..441ac0d36f92 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.36 + 2.15.37-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 70ceed2370a4..5396ad960130 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.36 + 2.15.37-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index ddd6c08ae900..e4f93cd24e13 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.15.36 + 2.15.37-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index bd235d7ae135..a6b43e03101c 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.36 + 2.15.37-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 2223b3d6c55d..307e004008ad 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index b936f04a0602..9050fe95604a 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index ce06e5c3abf3..05f85d3de0d1 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index d63569a7849a..2471d9d2afe2 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 42dcb6a0bad3..970f64f4b189 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index bdabfcc9377c..c2143ea0799e 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index dd04a645cb70..21a1426b06f2 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index c3b297694a63..48d40e5eb663 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index e955327a1c0c..36cb3bc31719 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index f7dd2f3261f6..0e54fae79844 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 01c8df16b9c6..625d17d69aa6 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 9544ca68dc16..46fd6f9529e5 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 04acff6fa84f..dec4910723c5 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index a2ade480b5f1..d210acb21363 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 9036ac4ed6c3..5fb24799733a 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index cc6bf8f25a00..4a64f023a5fe 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 08a869689417..143db1261476 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index c649b8af72c7..d998f7a8ad6d 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 00c57e0fa055..c4629af6efc0 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index a76071416fe7..be3bb896114b 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 1e6a5c521802..cb4d2146d844 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 19c66bc0a962..70d029251727 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 2ee49ad860a5..af16f3f40804 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 10018e7574a5..56729dcc2d36 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 6c97b3e8b871..875d0f79894a 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 1199670a3749..141329a19702 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 230cd2a90d19..e0d48b8bafad 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index a6467448002d..786f80637dea 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index e5a0f54f24bb..f0d20b3f2d04 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 31af69f3f7ff..0dea11a4d4e0 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 215f798a3c50..19a39090393d 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index fc1a74171d83..43e04181bcc7 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 43743ed063a1..95f76caaa701 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 62aa5eebd21c..021807539475 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 757d30c5d784..c4ec87540168 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 15a38298c402..0bea0c6f0649 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 4514cc4becd6..586c8cf76665 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 136777c46421..97377c619044 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 6861910eb72d..90ab24c048df 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 9bad1afb5c0c..3bc446cf8603 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index b9b2b4330557..69636795dfef 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 2fcb45fd295f..a1228e6fcdfa 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 799b933260f5..a6471ac0096c 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index d3cfc63f5adc..140037bfe5aa 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index d3bd0d3421f0..35c9fdf59698 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 2fa886ca9768..0ac88a22d150 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 2095c70dfd56..ff4d02caf4f1 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index e99c5afdeffe..f6b9dcb7d67f 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index a242b2c5c02b..1f6bf5dd7c43 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 1744b0ec686c..876dbf3a2638 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index afef8235ca70..bcedfaf852d6 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 79215b483b6c..f754966fe499 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 9a8c5edac94f..68280e5dbf87 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 455bb78955e0..855cb0e043a6 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index b1c967c05214..8976c8dce9af 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index b658a6159cb8..7f047fabded0 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index cee5e55be4fe..2ee01b984525 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index a54b3320c3b0..42cfab545c97 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index a53dae2d56e9..624c07798fe5 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 08af754f029d..16b0f94b5f8d 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 29a13469debd..dd05459ca987 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index e0430e6aed5c..8994aec09dd2 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 44a6998b1cef..521fb2db90a7 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 39092f31a4a0..0673f98fa446 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 7b77bcaaf76d..8abe55cbc202 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index ed594362527a..66b6678ec988 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 103df463da48..e7c14a11b165 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 9ec918727f36..08d95a83da29 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index d3ffaf100e33..27f46438e31e 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 313c29568a2c..603373bb3ab5 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index abe4fb184f73..98c96ebddec4 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 67865044b12b..ce144051fbf4 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index a5956408210c..1f5392a00589 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 86a0a455070f..1e1355db3f70 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index fe91ea695915..7d29d71c713e 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index b159f7fc6431..1dfcae6af9c6 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index f58deea39627..1b8f8325f735 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index cfd538c88db5..0f3c48ddba69 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 0e40c4623ec2..c1648bbbcec0 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index fd5c284152a0..d5441a4eaa39 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index eecdc53386f2..4577285ca84f 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 0fec99509355..92cf3f7e091f 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 77b39bde5e2e..36295e9e1e9f 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 328cd2ba0110..7c15f7bd6ae7 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 4542a40f5771..2f3ab2f5dae1 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 5d98ec234288..36eeb0072df7 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 228746e92483..fb3f497542f3 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 3b4965f0e599..a67c3e64e2a0 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index c07d261ede18..8a8ce2f6292c 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 3355598434fb..dcbac276863f 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 74d4bc6a5193..eee42366fca1 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index c3d758768dea..faf9f67bf625 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index b38bf457b499..a7ad39d1a341 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 71d43b696b97..2a9cb4968ff4 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 704f73724391..bfd9d724c639 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index d88d944c0c85..cccf42afabd2 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index dbfa53a83a53..49be52369b49 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index cdaece08f333..77879f7c4c20 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 70342ac85c06..b274f3c1b582 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 11d4625da67a..faf640f31780 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 082ed10a10ef..1314328c9622 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index d885f7cdbd90..8bb6b6bf0d0a 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 28a26d91fb20..7b8eb66e8e71 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 76898a3e674b..2c42f93160e1 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 983120074b29..bb073faf428e 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 01684eef05b3..d96538915671 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index ca6c78f3d468..27520e685856 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 4cfbf8862983..cb44b56eb87d 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 9fbbceedf88e..3a8c329e3c0b 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 605ea8a13178..15442b29117f 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 921c75d4f114..dea7de83e43e 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index bbfd8c47ce54..38e4e54ebf83 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index efc4cc3348b6..88157732d6df 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 42a694d538b3..76b5dd54bfa0 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index b1dc88864177..a5016e0fc615 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 252cc5972b2c..b8cf7b64cbef 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 61ab09fd4583..35f70b1ea472 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 6445ff33da1a..11e658e4de41 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 0803490bc3ac..b80b9d2dfd8c 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 978deb4dad4a..b433a9bb53c9 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 48297409dec9..99974ed77bb9 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index c46be1967d0d..44d29848e378 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 466a2519cc8d..8311c5eaae12 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 5d92f8a56448..0ccda255e5b3 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 4833ee85be07..b8cc535e6b67 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index a386a52f0159..5680db8fef05 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 29a103850271..234dd6554a4a 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index eb0871d9b2b8..bd8548497a2e 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 3cb333a4033c..5adbf2e4c9b1 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 79241002874c..7478a6e6afe0 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 91973654a8f1..e847d807372b 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index b376fac4be24..8bccf756ace2 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 63a599703699..d874b24c68e0 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index ece5c8d07d27..5661b1aee57e 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index aa467e5a2679..96251d0d6959 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 64f7a19fd480..c2450fbc5ab1 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 723955048540..104987e4e936 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 955c2cadcd18..0328f122c2da 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 611e725ec88e..f1523db35edd 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index c8d6f7da0e78..a775704a95ae 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index cb1ea77bb85f..6ea2021e8101 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 16b9b8319103..c6d81c4fcc4d 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 2d61fb828cc6..46b23b6559e8 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 9cc04d8168f2..cee4827bd3bf 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 27a9bda886cf..90cecdb3dfe8 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index c2e4b63e8949..68e1a129cf65 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index be16852672c6..ebf6c64d9538 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index c9370e6e7e5f..a9fb7aa460af 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 72bde67ebddc..fbe32513fe90 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index c0ce8e74a321..677fcb7e8a2d 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index e9922fe88c5b..9a4c54e2b429 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 875eea07cbac..9f3d865f60e7 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 1abd5738cc31..0fe50bafc70e 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 60ce0da46cfa..5c4f7c087da2 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml index 3d00b9d40950..0e44a8701ef6 100644 --- a/services/mwaa/pom.xml +++ b/services/mwaa/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT mwaa AWS Java SDK :: Services :: MWAA diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index e66e8ff9ab90..5db99cf8e578 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index c5c12220659f..1f695aba5a87 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 1f397700ff39..a4aff1ddbf73 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 20e7bcae017b..cc10ecf2b431 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 828197b2b53c..ec38ef1d2f95 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index fa708da7f644..79feac26de73 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index bf3053e87acc..f7745bd74513 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 9a81d07913b1..7c1a16d79dd0 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 845391522c2d..d71743444674 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index d605cc4bc854..e61a62115530 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index c6d17b49c80f..4e6789f3b175 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 5cb9abd82bfc..fa9a51e11ce4 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index acdccc48ca5b..1cd571c93b56 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 9a9e2cf146d9..9e87cb774cfc 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 5caa5a12ce7a..e6797fe6a3a0 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index e85590d47f1c..1e8f1ef167c3 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.36 + 2.15.37-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 74f7bc7603f3..ff90b5c61f00 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index ed00f51643d6..0b5a922c6865 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 573ecd04c325..5399b9abbcbe 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 1c45699e8f87..ab4908cdf567 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index bde50d4a580c..f3cce53dc7c1 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 84efe4aabdd5..57ae53e84932 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 925086a84a84..f0b1e1123d67 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index ad27798a8e21..fdac9b8ec48e 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index b305e35e6a7e..65bdc994181d 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 54d9b6ffc91e..d1b081571ad3 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index da578ef56c43..bf0d3ee87927 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 6760923c1f52..5306c65baf7d 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 2cbd964169b4..7a3744befb87 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 5b3793336b36..71ec10132863 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 6924be6ab089..0594b41a986e 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 6c81d402c44a..b5733839a539 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 7d988a7ed587..02d9a0c7a620 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 482099ea7ee9..5ba94e3d8db0 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 8eb8ffd02a53..ed77570b94ea 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 335a479e5734..a598d3969781 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 6823f6dabb9a..f0b843259c5f 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 739c57e547d6..2831141dea3b 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 2e9620788a7c..cb7862369d40 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 50283fdb2b29..66fde66b82b8 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 85fd832e6d8a..70ad1a6993c5 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 08b8041ee6bc..7994030078cf 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index f4ec5df9c42e..a6ce4c5218b9 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index e248c54e1794..8bed2db14dff 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index 9750d11954a2..45e7c38a918e 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index e0f6b9f56671..448978ed02d6 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 965be355f498..74ce20db7b21 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 7ec25f743154..8657da84bfbc 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index b80e38379f8c..05603d3bdfde 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 234043bf7bf7..f98754e4e18f 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 954c1e4518da..460f0bffc50d 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 7e78d182741b..b513916ca70c 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 81b0f0c88c6e..ea4ef290cffe 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 8d99dce1b30d..a612d111e0ad 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 5b30767d48d1..abad809e80f6 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 6daf7a9787a4..be008ce21854 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 1e1b7ecc69f7..64c83dfbcb3b 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index d5850fa01aa2..e7607b4e0fe9 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 0d003e97c7ea..3e38c5308a15 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 36598acee9cc..6dc9c0a0f69e 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 7ead1baf3eff..4a4d03501a8e 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 07e5ddb90b7d..2cc4f7134bdc 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index dd2bac4d9205..d662be1a841b 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 64d6081fe15c..8c343c66a33d 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 43b51c15d91a..bc2230fc5b8b 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index c5913edb3585..c4a71f10e780 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 2dd7959fab64..e609261110ee 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index bef3d0bed6bc..ca01b4d74e17 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 115b55631119..4ffe54ddc0f8 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index d86f24d7cbaa..f5448741c8c8 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 88bb097b8307..fd9e33e5433a 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 34943ad8304e..a82d3d9a3281 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 5dad62cf0287..bcfcb3f9b77b 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 8bce8c424f74..3e315c76a482 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 7ba2dc7bb5f3..59c43fadd575 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 59437251ba62..75280f7bd7da 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 6fef0fd29593..8a16538b4889 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 6681503c4de0..0122c0cc78ae 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index db09874e3e12..207fd7599b22 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 65ebf32ff912..fa875c49195b 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.36 + 2.15.37-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 1676c5a4c02b..f17bbcd17877 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.15.36 + 2.15.37-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index eb6903f4a837..89f775926bd7 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.15.36 + 2.15.37-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index bacc94eb8e86..4ed502d94f96 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.15.36 + 2.15.37-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index ea9a54380d1c..cd89e4a36f08 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.15.36 + 2.15.37-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 4481ab219f9c..7443c47f969a 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.15.36 + 2.15.37-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index cb53b5aaa25c..f1466705b894 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.36 + 2.15.37-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index e3cada538a8c..843b804073ee 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.15.36 + 2.15.37-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index ec2555aeff71..b38135114b39 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.15.36 + 2.15.37-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 94574a6cb84d..eafcb0c077ac 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.15.36 + 2.15.37-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index a502e0953a00..d9159f6c7797 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.15.36 + 2.15.37-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 7530f1995f11..7caf9c5a336f 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.36 + 2.15.37-SNAPSHOT 4.0.0 From dc5672ff7a6381f6b89f3ac428e9672db31d92a8 Mon Sep 17 00:00:00 2001 From: Matthew Miller Date: Tue, 1 Dec 2020 12:44:29 -0800 Subject: [PATCH 307/339] Add CreateNewServiceModuleMain and FinalizeNewServiceModuleMain release scripts, which are just a split up version of the NewServiceMain release script. --- .../release/CreateNewServiceModuleMain.java | 145 ++++++++++++++++++ .../release/FinalizeNewServiceModuleMain.java | 130 ++++++++++++++++ 2 files changed, 275 insertions(+) create mode 100644 release-scripts/src/main/java/software/amazon/awssdk/release/CreateNewServiceModuleMain.java create mode 100644 release-scripts/src/main/java/software/amazon/awssdk/release/FinalizeNewServiceModuleMain.java diff --git a/release-scripts/src/main/java/software/amazon/awssdk/release/CreateNewServiceModuleMain.java b/release-scripts/src/main/java/software/amazon/awssdk/release/CreateNewServiceModuleMain.java new file mode 100644 index 000000000000..845a78ec169a --- /dev/null +++ b/release-scripts/src/main/java/software/amazon/awssdk/release/CreateNewServiceModuleMain.java @@ -0,0 +1,145 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.release; + +import static java.nio.charset.StandardCharsets.UTF_8; + +import java.io.IOException; +import java.nio.file.FileVisitResult; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.nio.file.SimpleFileVisitor; +import java.nio.file.attribute.BasicFileAttributes; +import java.util.stream.Collectors; +import java.util.stream.Stream; +import org.apache.commons.cli.CommandLine; +import org.apache.commons.io.FileUtils; +import org.apache.commons.lang3.StringUtils; +import software.amazon.awssdk.utils.Validate; +import software.amazon.awssdk.utils.internal.CodegenNamingUtils; + +/** + * A command line application to create a new, empty service. This *does not* add the new service to the shared pom.xmls, that + * should be done via {@link FinalizeNewServiceModuleMain}. + * + * Example usage: + *
+ * mvn exec:java -pl :release-scripts \
+ *     -Dexec.mainClass="software.amazon.awssdk.release.CreateNewServiceModuleMain" \
+ *     -Dexec.args="--maven-project-root /path/to/root
+ *                  --maven-project-version 2.1.4-SNAPSHOT
+ *                  --service-id 'Service Id'
+ *                  --service-module-name service-module-name
+ *                  --service-protocol json"
+ * 
+ */ +public class CreateNewServiceModuleMain extends Cli { + private CreateNewServiceModuleMain() { + super(requiredOption("service-module-name", "The name of the service module to be created."), + requiredOption("service-id", "The service ID of the service module to be created."), + requiredOption("service-protocol", "The protocol of the service module to be created."), + requiredOption("maven-project-root", "The root directory for the maven project."), + requiredOption("maven-project-version", "The maven version of the service module to be created.")); + } + + public static void main(String[] args) { + new CreateNewServiceModuleMain().run(args); + } + + @Override + protected void run(CommandLine commandLine) throws Exception { + new NewServiceCreator(commandLine).run(); + } + + private static class NewServiceCreator { + private final Path mavenProjectRoot; + private final String mavenProjectVersion; + private final String serviceModuleName; + private final String serviceId; + private final String serviceProtocol; + + private NewServiceCreator(CommandLine commandLine) { + this.mavenProjectRoot = Paths.get(commandLine.getOptionValue("maven-project-root").trim()); + this.mavenProjectVersion = commandLine.getOptionValue("maven-project-version").trim(); + this.serviceModuleName = commandLine.getOptionValue("service-module-name").trim(); + this.serviceId = commandLine.getOptionValue("service-id").trim(); + this.serviceProtocol = transformSpecialProtocols(commandLine.getOptionValue("service-protocol").trim()); + + Validate.isTrue(Files.exists(mavenProjectRoot), "Project root does not exist: " + mavenProjectRoot); + } + + private String transformSpecialProtocols(String protocol) { + switch (protocol) { + case "ec2": return "query"; + case "rest-xml": return "xml"; + case "rest-json": return "json"; + default: return protocol; + } + } + + public void run() throws Exception { + Path servicesRoot = mavenProjectRoot.resolve("services"); + Path templateModulePath = servicesRoot.resolve("new-service-template"); + Path newServiceModulePath = servicesRoot.resolve(serviceModuleName); + + createNewModuleFromTemplate(templateModulePath, newServiceModulePath); + replaceTemplatePlaceholders(newServiceModulePath); + } + + private void createNewModuleFromTemplate(Path templateModulePath, Path newServiceModule) throws IOException { + FileUtils.copyDirectory(templateModulePath.toFile(), newServiceModule.toFile()); + } + + private void replaceTemplatePlaceholders(Path newServiceModule) throws IOException { + Files.walkFileTree(newServiceModule, new SimpleFileVisitor() { + @Override + public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException { + replacePlaceholdersInFile(file); + return FileVisitResult.CONTINUE; + } + }); + } + + private void replacePlaceholdersInFile(Path file) throws IOException { + String fileContents = new String(Files.readAllBytes(file), UTF_8); + String newFileContents = replacePlaceholders(fileContents); + Files.write(file, newFileContents.getBytes(UTF_8)); + } + + private String replacePlaceholders(String line) { + String[] searchList = { + "{{MVN_ARTIFACT_ID}}", + "{{MVN_NAME}}", + "{{MVN_VERSION}}", + "{{PROTOCOL}}" + }; + String[] replaceList = { + serviceModuleName, + mavenName(serviceId), + mavenProjectVersion, + serviceProtocol + }; + return StringUtils.replaceEach(line, searchList, replaceList); + } + + private String mavenName(String serviceId) { + return Stream.of(CodegenNamingUtils.splitOnWordBoundaries(serviceId)) + .map(StringUtils::capitalize) + .collect(Collectors.joining(" ")); + } + } +} diff --git a/release-scripts/src/main/java/software/amazon/awssdk/release/FinalizeNewServiceModuleMain.java b/release-scripts/src/main/java/software/amazon/awssdk/release/FinalizeNewServiceModuleMain.java new file mode 100644 index 000000000000..7ff318bff5fa --- /dev/null +++ b/release-scripts/src/main/java/software/amazon/awssdk/release/FinalizeNewServiceModuleMain.java @@ -0,0 +1,130 @@ +/* + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"). + * You may not use this file except in compliance with the License. + * A copy of the License is located at + * + * http://aws.amazon.com/apache2.0 + * + * or in the "license" file accompanying this file. This file is distributed + * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. See the License for the specific language governing + * permissions and limitations under the License. + */ + +package software.amazon.awssdk.release; + +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.List; +import java.util.stream.Collectors; +import java.util.stream.Stream; +import org.apache.commons.cli.CommandLine; +import org.w3c.dom.Document; +import org.w3c.dom.Node; +import software.amazon.awssdk.utils.Validate; + +/** + * A command line application to add new services to the shared pom.xml files. + * + * Example usage: + *
+ * mvn exec:java -pl :release-scripts \
+ *     -Dexec.mainClass="software.amazon.awssdk.release.FinalizeNewServiceModuleMain" \
+ *     -Dexec.args="--maven-project-root /path/to/root
+ *                  --service-module-names service-module-name-1,service-module-name-2"
+ * 
+ */ +public class FinalizeNewServiceModuleMain extends Cli { + private FinalizeNewServiceModuleMain() { + super(requiredOption("service-module-names", + "A comma-separated list containing the name of the service modules to be created."), + requiredOption("maven-project-root", "The root directory for the maven project.")); + } + + public static void main(String[] args) { + new FinalizeNewServiceModuleMain().run(args); + } + + @Override + protected void run(CommandLine commandLine) throws Exception { + new NewServiceCreator(commandLine).run(); + } + + private static class NewServiceCreator { + private final Path mavenProjectRoot; + private final List serviceModuleNames; + + private NewServiceCreator(CommandLine commandLine) { + this.mavenProjectRoot = Paths.get(commandLine.getOptionValue("maven-project-root").trim()); + this.serviceModuleNames = Stream.of(commandLine.getOptionValue("service-module-names").split(",")) + .map(String::trim) + .collect(Collectors.toList()); + + Validate.isTrue(Files.exists(mavenProjectRoot), "Project root does not exist: " + mavenProjectRoot); + } + + public void run() throws Exception { + for (String serviceModuleName : serviceModuleNames) { + Path servicesPomPath = mavenProjectRoot.resolve("services").resolve("pom.xml"); + Path aggregatePomPath = mavenProjectRoot.resolve("aws-sdk-java").resolve("pom.xml"); + Path bomPomPath = mavenProjectRoot.resolve("bom").resolve("pom.xml"); + + new AddSubmoduleTransformer(serviceModuleName).transform(servicesPomPath); + new AddDependencyTransformer(serviceModuleName).transform(aggregatePomPath); + new AddDependencyManagementDependencyTransformer(serviceModuleName).transform(bomPomPath); + } + } + + private static class AddSubmoduleTransformer extends PomTransformer { + private final String serviceModuleName; + + private AddSubmoduleTransformer(String serviceModuleName) { + this.serviceModuleName = serviceModuleName; + } + + @Override + protected void updateDocument(Document doc) { + Node project = findChild(doc, "project"); + Node modules = findChild(project, "modules"); + + modules.appendChild(textElement(doc, "module", serviceModuleName)); + } + } + + private static class AddDependencyTransformer extends PomTransformer { + private final String serviceModuleName; + + private AddDependencyTransformer(String serviceModuleName) { + this.serviceModuleName = serviceModuleName; + } + + @Override + protected void updateDocument(Document doc) { + Node project = findChild(doc, "project"); + Node dependencies = findChild(project, "dependencies"); + + dependencies.appendChild(sdkDependencyElement(doc, serviceModuleName)); + } + } + + private static class AddDependencyManagementDependencyTransformer extends PomTransformer { + private final String serviceModuleName; + + private AddDependencyManagementDependencyTransformer(String serviceModuleName) { + this.serviceModuleName = serviceModuleName; + } + + @Override + protected void updateDocument(Document doc) { + Node project = findChild(doc, "project"); + Node dependencyManagement = findChild(project, "dependencyManagement"); + Node dependencies = findChild(dependencyManagement, "dependencies"); + + dependencies.appendChild(sdkDependencyElement(doc, serviceModuleName)); + } + } + } +} From c099e55210eee93724a6062c45499f3677ac7497 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 2 Dec 2020 00:50:45 +0000 Subject: [PATCH 308/339] Amazon SageMaker Feature Store Runtime Update: This release adds support for Amazon SageMaker Feature Store, which makes it easy for customers to create, version, share, and manage curated data for machine learning (ML) development. --- ...nSageMakerFeatureStoreRuntime-f5ba552.json | 6 + services/sagemakerfeaturestoreruntime/pom.xml | 60 +++++ .../codegen-resources/paginators-1.json | 4 + .../codegen-resources/service-2.json | 249 ++++++++++++++++++ 4 files changed, 319 insertions(+) create mode 100644 .changes/next-release/feature-AmazonSageMakerFeatureStoreRuntime-f5ba552.json create mode 100644 services/sagemakerfeaturestoreruntime/pom.xml create mode 100644 services/sagemakerfeaturestoreruntime/src/main/resources/codegen-resources/paginators-1.json create mode 100644 services/sagemakerfeaturestoreruntime/src/main/resources/codegen-resources/service-2.json diff --git a/.changes/next-release/feature-AmazonSageMakerFeatureStoreRuntime-f5ba552.json b/.changes/next-release/feature-AmazonSageMakerFeatureStoreRuntime-f5ba552.json new file mode 100644 index 000000000000..c612019fa9bf --- /dev/null +++ b/.changes/next-release/feature-AmazonSageMakerFeatureStoreRuntime-f5ba552.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon SageMaker Feature Store Runtime", + "contributor": "", + "description": "This release adds support for Amazon SageMaker Feature Store, which makes it easy for customers to create, version, share, and manage curated data for machine learning (ML) development." +} diff --git a/services/sagemakerfeaturestoreruntime/pom.xml b/services/sagemakerfeaturestoreruntime/pom.xml new file mode 100644 index 000000000000..a292d980b16c --- /dev/null +++ b/services/sagemakerfeaturestoreruntime/pom.xml @@ -0,0 +1,60 @@ + + + + + 4.0.0 + + software.amazon.awssdk + services + 2.15.37-SNAPSHOT + + sagemakerfeaturestoreruntime + AWS Java SDK :: Services :: Sage Maker Feature Store Runtime + The AWS Java SDK for Sage Maker Feature Store Runtime module holds the client classes that are used for + communicating with Sage Maker Feature Store Runtime. + + https://aws.amazon.com/sdkforjava + + + + org.apache.maven.plugins + maven-jar-plugin + + + + software.amazon.awssdk.services.sagemakerfeaturestoreruntime + + + + + + + + + + software.amazon.awssdk + protocol-core + ${awsjavasdk.version} + + + software.amazon.awssdk + aws-json-protocol + ${awsjavasdk.version} + + + diff --git a/services/sagemakerfeaturestoreruntime/src/main/resources/codegen-resources/paginators-1.json b/services/sagemakerfeaturestoreruntime/src/main/resources/codegen-resources/paginators-1.json new file mode 100644 index 000000000000..5677bd8e4a2d --- /dev/null +++ b/services/sagemakerfeaturestoreruntime/src/main/resources/codegen-resources/paginators-1.json @@ -0,0 +1,4 @@ +{ + "pagination": { + } +} diff --git a/services/sagemakerfeaturestoreruntime/src/main/resources/codegen-resources/service-2.json b/services/sagemakerfeaturestoreruntime/src/main/resources/codegen-resources/service-2.json new file mode 100644 index 000000000000..f7a71ea7f971 --- /dev/null +++ b/services/sagemakerfeaturestoreruntime/src/main/resources/codegen-resources/service-2.json @@ -0,0 +1,249 @@ +{ + "version":"2.0", + "metadata":{ + "apiVersion":"2020-07-01", + "endpointPrefix":"featurestore-runtime.sagemaker", + "jsonVersion":"1.1", + "protocol":"rest-json", + "serviceFullName":"Amazon SageMaker Feature Store Runtime", + "serviceId":"SageMaker FeatureStore Runtime", + "signatureVersion":"v4", + "signingName":"sagemaker", + "uid":"sagemaker-featurestore-runtime-2020-07-01" + }, + "operations":{ + "DeleteRecord":{ + "name":"DeleteRecord", + "http":{ + "method":"DELETE", + "requestUri":"/FeatureGroup/{FeatureGroupName}" + }, + "input":{"shape":"DeleteRecordRequest"}, + "errors":[ + {"shape":"ValidationError"}, + {"shape":"InternalFailure"}, + {"shape":"ServiceUnavailable"}, + {"shape":"AccessForbidden"} + ], + "documentation":"

Deletes a Record from a FeatureGroup. A new record will show up in the OfflineStore when the DeleteRecord API is called. This record will have a value of True in the is_deleted column.

" + }, + "GetRecord":{ + "name":"GetRecord", + "http":{ + "method":"GET", + "requestUri":"/FeatureGroup/{FeatureGroupName}" + }, + "input":{"shape":"GetRecordRequest"}, + "output":{"shape":"GetRecordResponse"}, + "errors":[ + {"shape":"ValidationError"}, + {"shape":"ResourceNotFound"}, + {"shape":"InternalFailure"}, + {"shape":"ServiceUnavailable"}, + {"shape":"AccessForbidden"} + ], + "documentation":"

Use for OnlineStore serving from a FeatureStore. Only the latest records stored in the OnlineStore can be retrieved. If no Record with RecordIdentifierValue is found, then an empty result is returned.

" + }, + "PutRecord":{ + "name":"PutRecord", + "http":{ + "method":"PUT", + "requestUri":"/FeatureGroup/{FeatureGroupName}" + }, + "input":{"shape":"PutRecordRequest"}, + "errors":[ + {"shape":"ValidationError"}, + {"shape":"InternalFailure"}, + {"shape":"ServiceUnavailable"}, + {"shape":"AccessForbidden"} + ], + "documentation":"

Used for data ingestion into the FeatureStore. The PutRecord API writes to both the OnlineStore and OfflineStore. If the record is the latest record for the recordIdentifier, the record is written to both the OnlineStore and OfflineStore. If the record is a historic record, it is written only to the OfflineStore.

" + } + }, + "shapes":{ + "AccessForbidden":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

You do not have permission to perform an action.

", + "error":{"httpStatusCode":403}, + "exception":true, + "synthetic":true + }, + "DeleteRecordRequest":{ + "type":"structure", + "required":[ + "FeatureGroupName", + "RecordIdentifierValueAsString", + "EventTime" + ], + "members":{ + "FeatureGroupName":{ + "shape":"FeatureGroupName", + "documentation":"

The name of the feature group to delete the record from.

", + "location":"uri", + "locationName":"FeatureGroupName" + }, + "RecordIdentifierValueAsString":{ + "shape":"ValueAsString", + "documentation":"

The value for the RecordIdentifier that uniquely identifies the record, in string format.

", + "location":"querystring", + "locationName":"RecordIdentifierValueAsString" + }, + "EventTime":{ + "shape":"ValueAsString", + "documentation":"

Timestamp indicating when the deletion event occurred. EventTime can be used to query data at a certain point in time.

", + "location":"querystring", + "locationName":"EventTime" + } + } + }, + "FeatureGroupName":{ + "type":"string", + "max":64, + "min":1, + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*" + }, + "FeatureName":{ + "type":"string", + "max":64, + "min":1, + "pattern":"^[a-zA-Z0-9]([-_]*[a-zA-Z0-9])*" + }, + "FeatureNames":{ + "type":"list", + "member":{"shape":"FeatureName"}, + "min":1 + }, + "FeatureValue":{ + "type":"structure", + "required":[ + "FeatureName", + "ValueAsString" + ], + "members":{ + "FeatureName":{ + "shape":"FeatureName", + "documentation":"

The name of a feature that a feature value corresponds to.

" + }, + "ValueAsString":{ + "shape":"ValueAsString", + "documentation":"

The value associated with a feature, in string format. Note that features types can be String, Integral, or Fractional. This value represents all three types as a string.

" + } + }, + "documentation":"

The value associated with a feature.

" + }, + "GetRecordRequest":{ + "type":"structure", + "required":[ + "FeatureGroupName", + "RecordIdentifierValueAsString" + ], + "members":{ + "FeatureGroupName":{ + "shape":"FeatureGroupName", + "documentation":"

The name of the feature group in which you want to put the records.

", + "location":"uri", + "locationName":"FeatureGroupName" + }, + "RecordIdentifierValueAsString":{ + "shape":"ValueAsString", + "documentation":"

The value that corresponds to RecordIdentifier type and uniquely identifies the record in the FeatureGroup.

", + "location":"querystring", + "locationName":"RecordIdentifierValueAsString" + }, + "FeatureNames":{ + "shape":"FeatureNames", + "documentation":"

List of names of Features to be retrieved. If not specified, the latest value for all the Features are returned.

", + "location":"querystring", + "locationName":"FeatureName" + } + } + }, + "GetRecordResponse":{ + "type":"structure", + "members":{ + "Record":{ + "shape":"Record", + "documentation":"

The record you requested. A list of FeatureValues.

" + } + } + }, + "InternalFailure":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

An internal failure occurred. Try your request again. If the problem persists, contact AWS customer support.

", + "error":{"httpStatusCode":500}, + "exception":true, + "fault":true, + "synthetic":true + }, + "Message":{ + "type":"string", + "max":2048 + }, + "PutRecordRequest":{ + "type":"structure", + "required":[ + "FeatureGroupName", + "Record" + ], + "members":{ + "FeatureGroupName":{ + "shape":"FeatureGroupName", + "documentation":"

The name of the feature group that you want to insert the record into.

", + "location":"uri", + "locationName":"FeatureGroupName" + }, + "Record":{ + "shape":"Record", + "documentation":"

List of FeatureValues to be inserted. This will be a full over-write. If you only want to update few of the feature values, do the following:

  • Use GetRecord to retrieve the latest record.

  • Update the record returned from GetRecord.

  • Use PutRecord to update feature values.

" + } + } + }, + "Record":{ + "type":"list", + "member":{"shape":"FeatureValue"}, + "min":1 + }, + "ResourceNotFound":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

A resource that is required to perform an action was not found.

", + "error":{"httpStatusCode":404}, + "exception":true + }, + "ServiceUnavailable":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

The service is currently unavailable.

", + "error":{"httpStatusCode":503}, + "exception":true, + "fault":true, + "synthetic":true + }, + "ValidationError":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

There was an error validating your request.

", + "error":{"httpStatusCode":400}, + "exception":true, + "synthetic":true + }, + "ValueAsString":{ + "type":"string", + "max":358400, + "pattern":".*" + } + }, + "documentation":"

Contains all data plane API operations and data types for the Amazon SageMaker Feature Store. Use this API to put, delete, and retrieve (get) features from a feature store.

Use the following operations to configure your OnlineStore and OfflineStore features, and to create and manage feature groups:

" +} From 14200065e9258e0a2e6d54a70c68f53b063270c9 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 2 Dec 2020 00:50:46 +0000 Subject: [PATCH 309/339] AWS Lambda Update: This release includes support for a new feature: Container images support in AWS Lambda. This adds APIs for deploying functions as container images. AWS Lambda now supports memory up to 10240MB. --- .../feature-AWSLambda-99d6cfa.json | 6 + .../codegen-resources/service-2.json | 120 ++++++++++++++++-- 2 files changed, 116 insertions(+), 10 deletions(-) create mode 100644 .changes/next-release/feature-AWSLambda-99d6cfa.json diff --git a/.changes/next-release/feature-AWSLambda-99d6cfa.json b/.changes/next-release/feature-AWSLambda-99d6cfa.json new file mode 100644 index 000000000000..2bd4b723499c --- /dev/null +++ b/.changes/next-release/feature-AWSLambda-99d6cfa.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Lambda", + "contributor": "", + "description": "This release includes support for a new feature: Container images support in AWS Lambda. This adds APIs for deploying functions as container images. AWS Lambda now supports memory up to 10240MB." +} diff --git a/services/lambda/src/main/resources/codegen-resources/service-2.json b/services/lambda/src/main/resources/codegen-resources/service-2.json index 5c9a215f7747..5774342f189a 100644 --- a/services/lambda/src/main/resources/codegen-resources/service-2.json +++ b/services/lambda/src/main/resources/codegen-resources/service-2.json @@ -121,7 +121,7 @@ {"shape":"InvalidCodeSignatureException"}, {"shape":"CodeSigningConfigNotFoundException"} ], - "documentation":"

Creates a Lambda function. To create a function, you need a deployment package and an execution role. The deployment package contains your function code. The execution role grants the function permission to use AWS services, such as Amazon CloudWatch Logs for log streaming and AWS X-Ray for request tracing.

When you create a function, Lambda provisions an instance of the function and its supporting resources. If your function connects to a VPC, this process can take a minute or so. During this time, you can't invoke or modify the function. The State, StateReason, and StateReasonCode fields in the response from GetFunctionConfiguration indicate when the function is ready to invoke. For more information, see Function States.

A function has an unpublished version, and can have published versions and aliases. The unpublished version changes when you update your function's code and configuration. A published version is a snapshot of your function code and configuration that can't be changed. An alias is a named resource that maps to a version, and can be changed to map to a different version. Use the Publish parameter to create version 1 of your function from its initial configuration.

The other parameters let you configure version-specific and function-level settings. You can modify version-specific settings later with UpdateFunctionConfiguration. Function-level settings apply to both the unpublished and published versions of the function, and include tags (TagResource) and per-function concurrency limits (PutFunctionConcurrency).

To enable code signing for this function, specify the ARN of a code-signing configuration. When a user attempts to deploy a code package with UpdateFunctionCode, Lambda checks that the code package has a valid signature from a trusted publisher. The code-signing configuration includes set set of signing profiles, which define the trusted publishers for this function.

If another account or an AWS service invokes your function, use AddPermission to grant permission by creating a resource-based IAM policy. You can grant permissions at the function level, on a version, or on an alias.

To invoke your function directly, use Invoke. To invoke your function in response to events in other AWS services, create an event source mapping (CreateEventSourceMapping), or configure a function trigger in the other service. For more information, see Invoking Functions.

" + "documentation":"

Creates a Lambda function. To create a function, you need a deployment package and an execution role. The deployment package is a ZIP archive or image container that contains your function code. The execution role grants the function permission to use AWS services, such as Amazon CloudWatch Logs for log streaming and AWS X-Ray for request tracing.

When you create a function, Lambda provisions an instance of the function and its supporting resources. If your function connects to a VPC, this process can take a minute or so. During this time, you can't invoke or modify the function. The State, StateReason, and StateReasonCode fields in the response from GetFunctionConfiguration indicate when the function is ready to invoke. For more information, see Function States.

A function has an unpublished version, and can have published versions and aliases. The unpublished version changes when you update your function's code and configuration. A published version is a snapshot of your function code and configuration that can't be changed. An alias is a named resource that maps to a version, and can be changed to map to a different version. Use the Publish parameter to create version 1 of your function from its initial configuration.

The other parameters let you configure version-specific and function-level settings. You can modify version-specific settings later with UpdateFunctionConfiguration. Function-level settings apply to both the unpublished and published versions of the function, and include tags (TagResource) and per-function concurrency limits (PutFunctionConcurrency).

You can use code signing if your deployment package is a ZIP archive. To enable code signing for this function, specify the ARN of a code-signing configuration. When a user attempts to deploy a code package with UpdateFunctionCode, Lambda checks that the code package has a valid signature from a trusted publisher. The code-signing configuration includes set set of signing profiles, which define the trusted publishers for this function.

If another account or an AWS service invokes your function, use AddPermission to grant permission by creating a resource-based IAM policy. You can grant permissions at the function level, on a version, or on an alias.

To invoke your function directly, use Invoke. To invoke your function in response to events in other AWS services, create an event source mapping (CreateEventSourceMapping), or configure a function trigger in the other service. For more information, see Invoking Functions.

" }, "DeleteAlias":{ "name":"DeleteAlias", @@ -596,7 +596,7 @@ {"shape":"ServiceException"}, {"shape":"InvalidParameterValueException"} ], - "documentation":"

Returns a list of code signing configurations for the specified function. A request returns up to 10,000 configurations per call. You can use the MaxItems parameter to return fewer configurations per call.

" + "documentation":"

Returns a list of code signing configurations. A request returns up to 10,000 configurations per call. You can use the MaxItems parameter to return fewer configurations per call.

" }, "ListEventSourceMappings":{ "name":"ListEventSourceMappings", @@ -1362,7 +1362,7 @@ "members":{ "UntrustedArtifactOnDeployment":{ "shape":"CodeSigningPolicy", - "documentation":"

Code signing configuration policy for deployment validation failure. If you set the policy to Enforce, Lambda blocks the deployment request if code-signing validation checks fail. If you set the policy to Warn, Lambda allows the deployment and creates a CloudWatch log.

Default value: Warn

" + "documentation":"

Code signing configuration policy for deployment validation failure. If you set the policy to Enforce, Lambda blocks the deployment request if signature validation checks fail. If you set the policy to Warn, Lambda allows the deployment and creates a CloudWatch log.

Default value: Warn

" } }, "documentation":"

Code signing configuration policies specifies the validation failure action for signature mismatch or expiry.

" @@ -1544,9 +1544,7 @@ "type":"structure", "required":[ "FunctionName", - "Runtime", "Role", - "Handler", "Code" ], "members":{ @@ -1590,6 +1588,10 @@ "shape":"VpcConfig", "documentation":"

For network connectivity to AWS resources in a VPC, specify a list of security groups and subnets in the VPC. When you connect a function to a VPC, it can only access resources and the internet through that VPC. For more information, see VPC Settings.

" }, + "PackageType":{ + "shape":"PackageType", + "documentation":"

The type of deployment package. Set to Image for container image and set Zip for ZIP archive.

" + }, "DeadLetterConfig":{ "shape":"DeadLetterConfig", "documentation":"

A dead letter queue configuration that specifies the queue or topic where Lambda sends asynchronous events when they fail processing. For more information, see Dead Letter Queues.

" @@ -1618,9 +1620,13 @@ "shape":"FileSystemConfigList", "documentation":"

Connection settings for an Amazon EFS file system.

" }, + "ImageConfig":{ + "shape":"ImageConfig", + "documentation":"

Configuration values that override the container image Dockerfile.

" + }, "CodeSigningConfigArn":{ "shape":"CodeSigningConfigArn", - "documentation":"

To enable code signing for this function, specify the ARN of a code-signing configuration. A code-signing configuration includes set set of signing profiles, which define the trusted publishers for this function.

" + "documentation":"

To enable code signing for this function, specify the ARN of a code-signing configuration. A code-signing configuration includes a set of signing profiles, which define the trusted publishers for this function.

" } } }, @@ -2101,9 +2107,13 @@ "S3ObjectVersion":{ "shape":"S3ObjectVersion", "documentation":"

For versioned objects, the version of the deployment package object to use.

" + }, + "ImageUri":{ + "shape":"String", + "documentation":"

URI of a container image in the Amazon ECR registry.

" } }, - "documentation":"

The code for the Lambda function. You can specify either an object in Amazon S3, or upload a deployment package directly.

" + "documentation":"

The code for the Lambda function. You can specify either an object in Amazon S3, upload a ZIP archive deployment package directly, or specify the URI of a container image.

" }, "FunctionCodeLocation":{ "type":"structure", @@ -2115,6 +2125,14 @@ "Location":{ "shape":"String", "documentation":"

A presigned URL that you can use to download the deployment package.

" + }, + "ImageUri":{ + "shape":"String", + "documentation":"

URI of a container image in the Amazon ECR registry.

" + }, + "ResolvedImageUri":{ + "shape":"String", + "documentation":"

The resolved URI for the image.

" } }, "documentation":"

Details about a function's deployment package.

" @@ -2230,6 +2248,14 @@ "shape":"FileSystemConfigList", "documentation":"

Connection settings for an Amazon EFS file system.

" }, + "PackageType":{ + "shape":"PackageType", + "documentation":"

The type of deployment package. Set to Image for container image and set Zip for ZIP archive.

" + }, + "ImageConfigResponse":{ + "shape":"ImageConfigResponse", + "documentation":"

The function's image configuration values.

" + }, "SigningProfileVersionArn":{ "shape":"Arn", "documentation":"

The ARN of the signing profile version.

" @@ -2673,6 +2699,52 @@ "pattern":"[^\\s]+" }, "HttpStatus":{"type":"integer"}, + "ImageConfig":{ + "type":"structure", + "members":{ + "EntryPoint":{ + "shape":"StringList", + "documentation":"

Specifies the entry point to their application, which is typically the location of the runtime executable.

" + }, + "Command":{ + "shape":"StringList", + "documentation":"

Specifies parameters that you want to pass in with ENTRYPOINT.

" + }, + "WorkingDirectory":{ + "shape":"WorkingDirectory", + "documentation":"

Specifies the working directory.

" + } + }, + "documentation":"

Configuration values that override the container image Dockerfile. See Override Container settings.

" + }, + "ImageConfigError":{ + "type":"structure", + "members":{ + "ErrorCode":{ + "shape":"String", + "documentation":"

Error code.

" + }, + "Message":{ + "shape":"SensitiveString", + "documentation":"

Error message.

" + } + }, + "documentation":"

Error response to GetFunctionConfiguration.

" + }, + "ImageConfigResponse":{ + "type":"structure", + "members":{ + "ImageConfig":{ + "shape":"ImageConfig", + "documentation":"

Configuration values that override the container image Dockerfile.

" + }, + "Error":{ + "shape":"ImageConfigError", + "documentation":"

Error response to GetFunctionConfiguration.

" + } + }, + "documentation":"

Response to GetFunctionConfiguration request.

" + }, "Integer":{"type":"integer"}, "InvalidCodeSignatureException":{ "type":"structure", @@ -2933,7 +3005,9 @@ "InternalError", "SubnetOutOfIPAddresses", "InvalidSubnet", - "InvalidSecurityGroup" + "InvalidSecurityGroup", + "ImageDeleted", + "ImageAccessDenied" ] }, "Layer":{ @@ -3571,7 +3645,7 @@ }, "MemorySize":{ "type":"integer", - "max":3008, + "max":10240, "min":128 }, "NameSpacedFunctionArn":{ @@ -3618,6 +3692,13 @@ "type":"string", "pattern":"o-[a-z0-9]{10,32}" }, + "PackageType":{ + "type":"string", + "enum":[ + "Zip", + "Image" + ] + }, "ParallelizationFactor":{ "type":"integer", "max":10, @@ -4224,7 +4305,9 @@ "InternalError", "SubnetOutOfIPAddresses", "InvalidSubnet", - "InvalidSecurityGroup" + "InvalidSecurityGroup", + "ImageDeleted", + "ImageAccessDenied" ] }, "StatementId":{ @@ -4234,6 +4317,11 @@ "pattern":"([a-zA-Z0-9-_]+)" }, "String":{"type":"string"}, + "StringList":{ + "type":"list", + "member":{"shape":"String"}, + "max":1500 + }, "SubnetIPAddressLimitReachedException":{ "type":"structure", "members":{ @@ -4535,6 +4623,10 @@ "shape":"S3ObjectVersion", "documentation":"

For versioned objects, the version of the deployment package object to use.

" }, + "ImageUri":{ + "shape":"String", + "documentation":"

URI of a container image in the Amazon ECR registry.

" + }, "Publish":{ "shape":"Boolean", "documentation":"

Set to true to publish a new version of the function after updating the code. This has the same effect as calling PublishVersion separately.

" @@ -4614,6 +4706,10 @@ "FileSystemConfigs":{ "shape":"FileSystemConfigList", "documentation":"

Connection settings for an Amazon EFS file system.

" + }, + "ImageConfig":{ + "shape":"ImageConfig", + "documentation":"

Configuration values that override the container image Dockerfile.

" } } }, @@ -4690,6 +4786,10 @@ "type":"double", "max":1.0, "min":0.0 + }, + "WorkingDirectory":{ + "type":"string", + "max":1000 } }, "documentation":"AWS Lambda

Overview

This is the AWS Lambda API Reference. The AWS Lambda Developer Guide provides additional information. For the service overview, see What is AWS Lambda, and for information about how the service works, see AWS Lambda: How it Works in the AWS Lambda Developer Guide.

" From 0001bbae86b406bde0248d138e86808837e956a1 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 2 Dec 2020 00:50:47 +0000 Subject: [PATCH 310/339] Amazon DevOps Guru Update: (New Service) Amazon DevOps Guru is available in public preview. It's a fully managed service that uses machine learning to analyze your operational solutions to help you find and troubleshoot issues. --- .../feature-AmazonDevOpsGuru-cd04a5e.json | 6 + services/devopsguru/pom.xml | 60 + .../codegen-resources/paginators-1.json | 64 + .../codegen-resources/service-2.json | 1951 +++++++++++++++++ 4 files changed, 2081 insertions(+) create mode 100644 .changes/next-release/feature-AmazonDevOpsGuru-cd04a5e.json create mode 100644 services/devopsguru/pom.xml create mode 100644 services/devopsguru/src/main/resources/codegen-resources/paginators-1.json create mode 100644 services/devopsguru/src/main/resources/codegen-resources/service-2.json diff --git a/.changes/next-release/feature-AmazonDevOpsGuru-cd04a5e.json b/.changes/next-release/feature-AmazonDevOpsGuru-cd04a5e.json new file mode 100644 index 000000000000..7da7b4922f7b --- /dev/null +++ b/.changes/next-release/feature-AmazonDevOpsGuru-cd04a5e.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon DevOps Guru", + "contributor": "", + "description": "(New Service) Amazon DevOps Guru is available in public preview. It's a fully managed service that uses machine learning to analyze your operational solutions to help you find and troubleshoot issues." +} diff --git a/services/devopsguru/pom.xml b/services/devopsguru/pom.xml new file mode 100644 index 000000000000..3fb976227bc8 --- /dev/null +++ b/services/devopsguru/pom.xml @@ -0,0 +1,60 @@ + + + + + 4.0.0 + + software.amazon.awssdk + services + 2.15.37-SNAPSHOT + + devopsguru + AWS Java SDK :: Services :: Dev Ops Guru + The AWS Java SDK for Dev Ops Guru module holds the client classes that are used for + communicating with Dev Ops Guru. + + https://aws.amazon.com/sdkforjava + + + + org.apache.maven.plugins + maven-jar-plugin + + + + software.amazon.awssdk.services.devopsguru + + + + + + + + + + software.amazon.awssdk + protocol-core + ${awsjavasdk.version} + + + software.amazon.awssdk + aws-json-protocol + ${awsjavasdk.version} + + + diff --git a/services/devopsguru/src/main/resources/codegen-resources/paginators-1.json b/services/devopsguru/src/main/resources/codegen-resources/paginators-1.json new file mode 100644 index 000000000000..0360337d2f15 --- /dev/null +++ b/services/devopsguru/src/main/resources/codegen-resources/paginators-1.json @@ -0,0 +1,64 @@ +{ + "pagination": { + "DescribeResourceCollectionHealth": { + "input_token": "NextToken", + "output_token": "NextToken", + "result_key": [ + "CloudFormation" + ] + }, + "GetResourceCollection": { + "input_token": "NextToken", + "output_token": "NextToken", + "result_key": [ + "ResourceCollection.CloudFormation.StackNames" + ], + "non_aggregate_keys": [ + "ResourceCollection" + ] + }, + "ListAnomaliesForInsight": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": [ + "ReactiveAnomalies", + "ProactiveAnomalies" + ] + }, + "ListEvents": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "Events" + }, + "ListInsights": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": [ + "ProactiveInsights", + "ReactiveInsights" + ] + }, + "ListNotificationChannels": { + "input_token": "NextToken", + "output_token": "NextToken", + "result_key": "Channels" + }, + "ListRecommendations": { + "input_token": "NextToken", + "output_token": "NextToken", + "result_key": "Recommendations" + }, + "SearchInsights": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": [ + "ProactiveInsights", + "ReactiveInsights" + ] + } + } +} \ No newline at end of file diff --git a/services/devopsguru/src/main/resources/codegen-resources/service-2.json b/services/devopsguru/src/main/resources/codegen-resources/service-2.json new file mode 100644 index 000000000000..332959980326 --- /dev/null +++ b/services/devopsguru/src/main/resources/codegen-resources/service-2.json @@ -0,0 +1,1951 @@ +{ + "metadata" : { + "apiVersion" : "2020-12-01", + "endpointPrefix" : "devops-guru", + "signingName" : "devops-guru", + "serviceFullName" : "Amazon DevOps Guru", + "serviceId" : "DevOps Guru", + "protocol" : "rest-json", + "jsonVersion" : "1.1", + "uid" : "devops-guru-2020-12-01", + "signatureVersion" : "v4" + }, + "operations" : { + "AddNotificationChannel" : { + "name" : "AddNotificationChannel", + "http" : { + "method" : "PUT", + "requestUri" : "/channels", + "responseCode" : 200 + }, + "input" : { + "shape" : "AddNotificationChannelRequest" + }, + "output" : { + "shape" : "AddNotificationChannelResponse" + }, + "errors" : [ { + "shape" : "ValidationException" + }, { + "shape" : "InternalServerException" + }, { + "shape" : "ServiceQuotaExceededException" + }, { + "shape" : "AccessDeniedException" + }, { + "shape" : "ResourceNotFoundException" + }, { + "shape" : "ThrottlingException" + }, { + "shape" : "ConflictException" + } ] + }, + "DescribeAccountHealth" : { + "name" : "DescribeAccountHealth", + "http" : { + "method" : "GET", + "requestUri" : "/accounts/health", + "responseCode" : 200 + }, + "input" : { + "shape" : "DescribeAccountHealthRequest" + }, + "output" : { + "shape" : "DescribeAccountHealthResponse" + }, + "errors" : [ { + "shape" : "ThrottlingException" + }, { + "shape" : "ValidationException" + }, { + "shape" : "InternalServerException" + }, { + "shape" : "AccessDeniedException" + } ] + }, + "DescribeAccountOverview" : { + "name" : "DescribeAccountOverview", + "http" : { + "method" : "POST", + "requestUri" : "/accounts/overview", + "responseCode" : 200 + }, + "input" : { + "shape" : "DescribeAccountOverviewRequest" + }, + "output" : { + "shape" : "DescribeAccountOverviewResponse" + }, + "errors" : [ { + "shape" : "ThrottlingException" + }, { + "shape" : "ValidationException" + }, { + "shape" : "InternalServerException" + }, { + "shape" : "AccessDeniedException" + } ] + }, + "DescribeAnomaly" : { + "name" : "DescribeAnomaly", + "http" : { + "method" : "GET", + "requestUri" : "/anomalies/{Id}", + "responseCode" : 200 + }, + "input" : { + "shape" : "DescribeAnomalyRequest" + }, + "output" : { + "shape" : "DescribeAnomalyResponse" + }, + "errors" : [ { + "shape" : "ResourceNotFoundException" + }, { + "shape" : "ThrottlingException" + }, { + "shape" : "ValidationException" + }, { + "shape" : "InternalServerException" + }, { + "shape" : "AccessDeniedException" + } ] + }, + "DescribeInsight" : { + "name" : "DescribeInsight", + "http" : { + "method" : "GET", + "requestUri" : "/insights/{Id}", + "responseCode" : 200 + }, + "input" : { + "shape" : "DescribeInsightRequest" + }, + "output" : { + "shape" : "DescribeInsightResponse" + }, + "errors" : [ { + "shape" : "ResourceNotFoundException" + }, { + "shape" : "ThrottlingException" + }, { + "shape" : "ValidationException" + }, { + "shape" : "InternalServerException" + }, { + "shape" : "AccessDeniedException" + } ] + }, + "DescribeResourceCollectionHealth" : { + "name" : "DescribeResourceCollectionHealth", + "http" : { + "method" : "GET", + "requestUri" : "/accounts/health/resource-collection/{ResourceCollectionType}", + "responseCode" : 200 + }, + "input" : { + "shape" : "DescribeResourceCollectionHealthRequest" + }, + "output" : { + "shape" : "DescribeResourceCollectionHealthResponse" + }, + "errors" : [ { + "shape" : "ThrottlingException" + }, { + "shape" : "ValidationException" + }, { + "shape" : "InternalServerException" + }, { + "shape" : "AccessDeniedException" + } ] + }, + "DescribeServiceIntegration" : { + "name" : "DescribeServiceIntegration", + "http" : { + "method" : "GET", + "requestUri" : "/service-integrations", + "responseCode" : 200 + }, + "input" : { + "shape" : "DescribeServiceIntegrationRequest" + }, + "output" : { + "shape" : "DescribeServiceIntegrationResponse" + }, + "errors" : [ { + "shape" : "ThrottlingException" + }, { + "shape" : "ValidationException" + }, { + "shape" : "InternalServerException" + }, { + "shape" : "AccessDeniedException" + } ] + }, + "GetResourceCollection" : { + "name" : "GetResourceCollection", + "http" : { + "method" : "GET", + "requestUri" : "/resource-collections/{ResourceCollectionType}", + "responseCode" : 200 + }, + "input" : { + "shape" : "GetResourceCollectionRequest" + }, + "output" : { + "shape" : "GetResourceCollectionResponse" + }, + "errors" : [ { + "shape" : "ResourceNotFoundException" + }, { + "shape" : "ThrottlingException" + }, { + "shape" : "ValidationException" + }, { + "shape" : "InternalServerException" + }, { + "shape" : "AccessDeniedException" + } ] + }, + "ListAnomaliesForInsight" : { + "name" : "ListAnomaliesForInsight", + "http" : { + "method" : "POST", + "requestUri" : "/anomalies/insight/{InsightId}", + "responseCode" : 200 + }, + "input" : { + "shape" : "ListAnomaliesForInsightRequest" + }, + "output" : { + "shape" : "ListAnomaliesForInsightResponse" + }, + "errors" : [ { + "shape" : "ResourceNotFoundException" + }, { + "shape" : "ThrottlingException" + }, { + "shape" : "ValidationException" + }, { + "shape" : "InternalServerException" + }, { + "shape" : "AccessDeniedException" + } ] + }, + "ListEvents" : { + "name" : "ListEvents", + "http" : { + "method" : "POST", + "requestUri" : "/events", + "responseCode" : 200 + }, + "input" : { + "shape" : "ListEventsRequest" + }, + "output" : { + "shape" : "ListEventsResponse" + }, + "errors" : [ { + "shape" : "ResourceNotFoundException" + }, { + "shape" : "ThrottlingException" + }, { + "shape" : "ValidationException" + }, { + "shape" : "InternalServerException" + }, { + "shape" : "AccessDeniedException" + } ] + }, + "ListInsights" : { + "name" : "ListInsights", + "http" : { + "method" : "POST", + "requestUri" : "/insights", + "responseCode" : 200 + }, + "input" : { + "shape" : "ListInsightsRequest" + }, + "output" : { + "shape" : "ListInsightsResponse" + }, + "errors" : [ { + "shape" : "ThrottlingException" + }, { + "shape" : "ValidationException" + }, { + "shape" : "InternalServerException" + }, { + "shape" : "AccessDeniedException" + } ] + }, + "ListNotificationChannels" : { + "name" : "ListNotificationChannels", + "http" : { + "method" : "POST", + "requestUri" : "/channels", + "responseCode" : 200 + }, + "input" : { + "shape" : "ListNotificationChannelsRequest" + }, + "output" : { + "shape" : "ListNotificationChannelsResponse" + }, + "errors" : [ { + "shape" : "ThrottlingException" + }, { + "shape" : "ValidationException" + }, { + "shape" : "InternalServerException" + }, { + "shape" : "AccessDeniedException" + } ] + }, + "ListRecommendations" : { + "name" : "ListRecommendations", + "http" : { + "method" : "POST", + "requestUri" : "/recommendations", + "responseCode" : 200 + }, + "input" : { + "shape" : "ListRecommendationsRequest" + }, + "output" : { + "shape" : "ListRecommendationsResponse" + }, + "errors" : [ { + "shape" : "ResourceNotFoundException" + }, { + "shape" : "ThrottlingException" + }, { + "shape" : "ValidationException" + }, { + "shape" : "InternalServerException" + }, { + "shape" : "AccessDeniedException" + } ] + }, + "PutFeedback" : { + "name" : "PutFeedback", + "http" : { + "method" : "PUT", + "requestUri" : "/feedback", + "responseCode" : 200 + }, + "input" : { + "shape" : "PutFeedbackRequest" + }, + "output" : { + "shape" : "PutFeedbackResponse" + }, + "errors" : [ { + "shape" : "ValidationException" + }, { + "shape" : "InternalServerException" + }, { + "shape" : "AccessDeniedException" + }, { + "shape" : "ResourceNotFoundException" + }, { + "shape" : "ThrottlingException" + }, { + "shape" : "ConflictException" + } ] + }, + "RemoveNotificationChannel" : { + "name" : "RemoveNotificationChannel", + "http" : { + "method" : "DELETE", + "requestUri" : "/channels/{Id}", + "responseCode" : 200 + }, + "input" : { + "shape" : "RemoveNotificationChannelRequest" + }, + "output" : { + "shape" : "RemoveNotificationChannelResponse" + }, + "errors" : [ { + "shape" : "ValidationException" + }, { + "shape" : "InternalServerException" + }, { + "shape" : "AccessDeniedException" + }, { + "shape" : "ResourceNotFoundException" + }, { + "shape" : "ThrottlingException" + }, { + "shape" : "ConflictException" + } ] + }, + "SearchInsights" : { + "name" : "SearchInsights", + "http" : { + "method" : "POST", + "requestUri" : "/insights/search", + "responseCode" : 200 + }, + "input" : { + "shape" : "SearchInsightsRequest" + }, + "output" : { + "shape" : "SearchInsightsResponse" + }, + "errors" : [ { + "shape" : "ThrottlingException" + }, { + "shape" : "ValidationException" + }, { + "shape" : "InternalServerException" + }, { + "shape" : "AccessDeniedException" + } ] + }, + "UpdateResourceCollection" : { + "name" : "UpdateResourceCollection", + "http" : { + "method" : "PUT", + "requestUri" : "/resource-collections", + "responseCode" : 200 + }, + "input" : { + "shape" : "UpdateResourceCollectionRequest" + }, + "output" : { + "shape" : "UpdateResourceCollectionResponse" + }, + "errors" : [ { + "shape" : "ThrottlingException" + }, { + "shape" : "ValidationException" + }, { + "shape" : "InternalServerException" + }, { + "shape" : "ConflictException" + }, { + "shape" : "AccessDeniedException" + } ] + }, + "UpdateServiceIntegration" : { + "name" : "UpdateServiceIntegration", + "http" : { + "method" : "PUT", + "requestUri" : "/service-integrations", + "responseCode" : 200 + }, + "input" : { + "shape" : "UpdateServiceIntegrationRequest" + }, + "output" : { + "shape" : "UpdateServiceIntegrationResponse" + }, + "errors" : [ { + "shape" : "ThrottlingException" + }, { + "shape" : "ValidationException" + }, { + "shape" : "InternalServerException" + }, { + "shape" : "ConflictException" + }, { + "shape" : "AccessDeniedException" + } ] + } + }, + "shapes" : { + "AccessDeniedException" : { + "type" : "structure", + "members" : { + "Message" : { + "shape" : "__string" + } + }, + "required" : [ "Message" ], + "exception" : true, + "error" : { + "httpStatusCode" : 403 + } + }, + "AddNotificationChannelRequest" : { + "type" : "structure", + "members" : { + "Config" : { + "shape" : "NotificationChannelConfig" + } + }, + "required" : [ "Config" ] + }, + "AddNotificationChannelResponse" : { + "type" : "structure", + "members" : { + "Id" : { + "shape" : "__stringMin36Max36PatternAF098AF094AF094AF094AF0912" + } + } + }, + "AnomalySeverity" : { + "type" : "string", + "enum" : [ "LOW", "MEDIUM", "HIGH" ] + }, + "AnomalySourceDetails" : { + "type" : "structure", + "members" : { + "CloudWatchMetrics" : { + "shape" : "__listOfCloudWatchMetricsDetail" + } + } + }, + "AnomalyStatus" : { + "type" : "string", + "enum" : [ "ONGOING", "CLOSED" ] + }, + "AnomalyTimeRange" : { + "type" : "structure", + "members" : { + "EndTime" : { + "shape" : "__timestampUnix" + }, + "StartTime" : { + "shape" : "__timestampUnix" + } + }, + "required" : [ "StartTime" ] + }, + "CloudFormationCollection" : { + "type" : "structure", + "members" : { + "StackNames" : { + "shape" : "__listOf__stringMin1Max128PatternAZAZAZAZ09" + } + } + }, + "CloudFormationCollectionFilter" : { + "type" : "structure", + "members" : { + "StackNames" : { + "shape" : "__listOf__stringMin1Max128PatternAZAZAZAZ09" + } + } + }, + "CloudFormationHealth" : { + "type" : "structure", + "members" : { + "Insight" : { + "shape" : "InsightHealth" + }, + "StackName" : { + "shape" : "__stringMin1Max128PatternAZAZAZAZ09" + } + } + }, + "CloudWatchMetricsDetail" : { + "type" : "structure", + "members" : { + "Dimensions" : { + "shape" : "__listOfCloudWatchMetricsDimension" + }, + "MetricName" : { + "shape" : "__string" + }, + "Namespace" : { + "shape" : "__string" + }, + "Period" : { + "shape" : "__integer" + }, + "Stat" : { + "shape" : "CloudWatchMetricsStat" + }, + "Unit" : { + "shape" : "__string" + } + } + }, + "CloudWatchMetricsDimension" : { + "type" : "structure", + "members" : { + "Name" : { + "shape" : "__string" + }, + "Value" : { + "shape" : "__string" + } + } + }, + "CloudWatchMetricsStat" : { + "type" : "string", + "enum" : [ "Sum", "Average", "SampleCount", "Minimum", "Maximum", "p99", "p90", "p50" ] + }, + "ConflictException" : { + "type" : "structure", + "members" : { + "Message" : { + "shape" : "__string" + }, + "ResourceId" : { + "shape" : "__string" + }, + "ResourceType" : { + "shape" : "__string" + } + }, + "required" : [ "Message", "ResourceId", "ResourceType" ], + "exception" : true, + "error" : { + "httpStatusCode" : 409 + } + }, + "DescribeAccountHealthRequest" : { + "type" : "structure", + "members" : { } + }, + "DescribeAccountHealthResponse" : { + "type" : "structure", + "members" : { + "MetricsAnalyzed" : { + "shape" : "__integer" + }, + "OpenProactiveInsights" : { + "shape" : "__integer" + }, + "OpenReactiveInsights" : { + "shape" : "__integer" + } + } + }, + "DescribeAccountOverviewRequest" : { + "type" : "structure", + "members" : { + "FromTime" : { + "shape" : "__timestampUnix" + }, + "ToTime" : { + "shape" : "__timestampUnix" + } + }, + "required" : [ "FromTime" ] + }, + "DescribeAccountOverviewResponse" : { + "type" : "structure", + "members" : { + "MeanTimeToRecoverInMilliseconds" : { + "shape" : "__long" + }, + "ProactiveInsights" : { + "shape" : "__integer" + }, + "ReactiveInsights" : { + "shape" : "__integer" + } + } + }, + "DescribeAnomalyRequest" : { + "type" : "structure", + "members" : { + "Id" : { + "shape" : "__string", + "location" : "uri", + "locationName" : "Id" + } + }, + "required" : [ "Id" ] + }, + "DescribeAnomalyResponse" : { + "type" : "structure", + "members" : { + "ProactiveAnomaly" : { + "shape" : "ProactiveAnomaly" + }, + "ReactiveAnomaly" : { + "shape" : "ReactiveAnomaly" + } + } + }, + "DescribeInsightRequest" : { + "type" : "structure", + "members" : { + "Id" : { + "shape" : "__string", + "location" : "uri", + "locationName" : "Id" + } + }, + "required" : [ "Id" ] + }, + "DescribeInsightResponse" : { + "type" : "structure", + "members" : { + "ProactiveInsight" : { + "shape" : "ProactiveInsight" + }, + "ReactiveInsight" : { + "shape" : "ReactiveInsight" + } + } + }, + "DescribeResourceCollectionHealthRequest" : { + "type" : "structure", + "members" : { + "NextToken" : { + "shape" : "__string", + "location" : "querystring", + "locationName" : "NextToken" + }, + "ResourceCollectionType" : { + "shape" : "__string", + "location" : "uri", + "locationName" : "ResourceCollectionType" + } + }, + "required" : [ "ResourceCollectionType" ] + }, + "DescribeResourceCollectionHealthResponse" : { + "type" : "structure", + "members" : { + "CloudFormation" : { + "shape" : "__listOfCloudFormationHealth" + }, + "NextToken" : { + "shape" : "__stringMin36Max36PatternAF098AF094AF094AF094AF0912" + } + } + }, + "DescribeServiceIntegrationRequest" : { + "type" : "structure", + "members" : { } + }, + "DescribeServiceIntegrationResponse" : { + "type" : "structure", + "members" : { + "ServiceIntegration" : { + "shape" : "ServiceIntegrationConfig" + } + } + }, + "EndTimeRange" : { + "type" : "structure", + "members" : { + "FromTime" : { + "shape" : "__timestampUnix" + }, + "ToTime" : { + "shape" : "__timestampUnix" + } + } + }, + "Event" : { + "type" : "structure", + "members" : { + "DataSource" : { + "shape" : "EventDataSource" + }, + "EventClass" : { + "shape" : "EventClass" + }, + "EventSource" : { + "shape" : "__stringMin10Max50PatternAZAZ09AmazonawsComAwsEvents" + }, + "Id" : { + "shape" : "__string" + }, + "Name" : { + "shape" : "__stringMin0Max50" + }, + "ResourceCollection" : { + "shape" : "ResourceCollection" + }, + "Resources" : { + "shape" : "__listOfEventResource" + }, + "Time" : { + "shape" : "__timestampUnix" + } + } + }, + "EventClass" : { + "type" : "string", + "enum" : [ "INFRASTRUCTURE", "DEPLOYMENT", "SECURITY_CHANGE", "CONFIG_CHANGE", "SCHEMA_CHANGE" ] + }, + "EventDataSource" : { + "type" : "string", + "enum" : [ "AWS_CLOUD_TRAIL", "AWS_CODE_DEPLOY" ] + }, + "EventResource" : { + "type" : "structure", + "members" : { + "Arn" : { + "shape" : "__stringMin36Max2048PatternArnAwsAZAZ09AZ09D12" + }, + "Name" : { + "shape" : "__stringMin0Max2048Pattern" + }, + "Type" : { + "shape" : "__stringMin0Max2048Pattern" + } + } + }, + "EventTimeRange" : { + "type" : "structure", + "members" : { + "FromTime" : { + "shape" : "__timestampUnix" + }, + "ToTime" : { + "shape" : "__timestampUnix" + } + }, + "required" : [ "ToTime", "FromTime" ] + }, + "GetResourceCollectionRequest" : { + "type" : "structure", + "members" : { + "NextToken" : { + "shape" : "__string", + "location" : "querystring", + "locationName" : "NextToken" + }, + "ResourceCollectionType" : { + "shape" : "__string", + "location" : "uri", + "locationName" : "ResourceCollectionType" + } + }, + "required" : [ "ResourceCollectionType" ] + }, + "GetResourceCollectionResponse" : { + "type" : "structure", + "members" : { + "NextToken" : { + "shape" : "__stringMin36Max36PatternAF098AF094AF094AF094AF0912" + }, + "ResourceCollection" : { + "shape" : "ResourceCollectionFilter" + } + } + }, + "InsightFeedback" : { + "type" : "structure", + "members" : { + "Feedback" : { + "shape" : "InsightFeedbackOption" + }, + "Id" : { + "shape" : "__stringMin1Max100PatternW" + } + } + }, + "InsightFeedbackOption" : { + "type" : "string", + "enum" : [ "VALID_COLLECTION", "RECOMMENDATION_USEFUL", "ALERT_TOO_SENSITIVE", "DATA_NOISY_ANOMALY", "DATA_INCORRECT" ] + }, + "InsightHealth" : { + "type" : "structure", + "members" : { + "MeanTimeToRecoverInMilliseconds" : { + "shape" : "__long" + }, + "OpenProactiveInsights" : { + "shape" : "__integer" + }, + "OpenReactiveInsights" : { + "shape" : "__integer" + } + } + }, + "InsightSeverity" : { + "type" : "string", + "enum" : [ "LOW", "MEDIUM", "HIGH" ] + }, + "InsightStatus" : { + "type" : "string", + "enum" : [ "ONGOING", "CLOSED" ] + }, + "InsightTimeRange" : { + "type" : "structure", + "members" : { + "EndTime" : { + "shape" : "__timestampUnix" + }, + "StartTime" : { + "shape" : "__timestampUnix" + } + }, + "required" : [ "StartTime" ] + }, + "InsightType" : { + "type" : "string", + "enum" : [ "REACTIVE", "PROACTIVE" ] + }, + "InternalServerException" : { + "type" : "structure", + "members" : { + "Message" : { + "shape" : "__string" + } + }, + "required" : [ "Message" ], + "exception" : true, + "error" : { + "httpStatusCode" : 500 + } + }, + "ListAnomaliesForInsightRequest" : { + "type" : "structure", + "members" : { + "InsightId" : { + "shape" : "__string", + "location" : "uri", + "locationName" : "InsightId" + }, + "MaxResults" : { + "shape" : "__integerMin1Max500" + }, + "NextToken" : { + "shape" : "__stringMin36Max36PatternAF098AF094AF094AF094AF0912" + }, + "StartTimeRange" : { + "shape" : "StartTimeRange" + } + }, + "required" : [ "InsightId" ] + }, + "ListAnomaliesForInsightResponse" : { + "type" : "structure", + "members" : { + "NextToken" : { + "shape" : "__stringMin36Max36PatternAF098AF094AF094AF094AF0912" + }, + "ProactiveAnomalies" : { + "shape" : "__listOfProactiveAnomalySummary" + }, + "ReactiveAnomalies" : { + "shape" : "__listOfReactiveAnomalySummary" + } + } + }, + "ListEventsFilters" : { + "type" : "structure", + "members" : { + "DataSource" : { + "shape" : "EventDataSource" + }, + "EventClass" : { + "shape" : "EventClass" + }, + "EventSource" : { + "shape" : "__stringMin10Max50PatternAZAZ09AmazonawsComAwsEvents" + }, + "EventTimeRange" : { + "shape" : "EventTimeRange" + }, + "InsightId" : { + "shape" : "__stringMin1Max100PatternW" + }, + "ResourceCollection" : { + "shape" : "ResourceCollection" + } + } + }, + "ListEventsRequest" : { + "type" : "structure", + "members" : { + "Filters" : { + "shape" : "ListEventsFilters" + }, + "MaxResults" : { + "shape" : "__integerMin1Max200" + }, + "NextToken" : { + "shape" : "__stringMin36Max36PatternAF098AF094AF094AF094AF0912" + } + }, + "required" : [ "Filters" ] + }, + "ListEventsResponse" : { + "type" : "structure", + "members" : { + "Events" : { + "shape" : "__listOfEvent" + }, + "NextToken" : { + "shape" : "__stringMin36Max36PatternAF098AF094AF094AF094AF0912" + } + } + }, + "ListInsightsAnyStatusFilter" : { + "type" : "structure", + "members" : { + "StartTimeRange" : { + "shape" : "StartTimeRange" + }, + "Type" : { + "shape" : "InsightType" + } + }, + "required" : [ "Type", "StartTimeRange" ] + }, + "ListInsightsClosedStatusFilter" : { + "type" : "structure", + "members" : { + "EndTimeRange" : { + "shape" : "EndTimeRange" + }, + "Type" : { + "shape" : "InsightType" + } + }, + "required" : [ "Type", "EndTimeRange" ] + }, + "ListInsightsOngoingStatusFilter" : { + "type" : "structure", + "members" : { + "Type" : { + "shape" : "InsightType" + } + }, + "required" : [ "Type" ] + }, + "ListInsightsRequest" : { + "type" : "structure", + "members" : { + "MaxResults" : { + "shape" : "__integerMin1Max100" + }, + "NextToken" : { + "shape" : "__stringMin36Max36PatternAF098AF094AF094AF094AF0912" + }, + "StatusFilter" : { + "shape" : "ListInsightsStatusFilter" + } + }, + "required" : [ "StatusFilter" ] + }, + "ListInsightsResponse" : { + "type" : "structure", + "members" : { + "NextToken" : { + "shape" : "__stringMin36Max36PatternAF098AF094AF094AF094AF0912" + }, + "ProactiveInsights" : { + "shape" : "__listOfProactiveInsightSummary" + }, + "ReactiveInsights" : { + "shape" : "__listOfReactiveInsightSummary" + } + } + }, + "ListInsightsStatusFilter" : { + "type" : "structure", + "members" : { + "Any" : { + "shape" : "ListInsightsAnyStatusFilter" + }, + "Closed" : { + "shape" : "ListInsightsClosedStatusFilter" + }, + "Ongoing" : { + "shape" : "ListInsightsOngoingStatusFilter" + } + } + }, + "ListNotificationChannelsRequest" : { + "type" : "structure", + "members" : { + "NextToken" : { + "shape" : "__stringMin36Max36PatternAF098AF094AF094AF094AF0912" + } + } + }, + "ListNotificationChannelsResponse" : { + "type" : "structure", + "members" : { + "Channels" : { + "shape" : "__listOfNotificationChannel" + }, + "NextToken" : { + "shape" : "__stringMin36Max36PatternAF098AF094AF094AF094AF0912" + } + } + }, + "ListRecommendationsRequest" : { + "type" : "structure", + "members" : { + "InsightId" : { + "shape" : "__stringMin1Max100PatternW" + }, + "NextToken" : { + "shape" : "__stringMin36Max36PatternAF098AF094AF094AF094AF0912" + } + }, + "required" : [ "InsightId" ] + }, + "ListRecommendationsResponse" : { + "type" : "structure", + "members" : { + "NextToken" : { + "shape" : "__stringMin36Max36PatternAF098AF094AF094AF094AF0912" + }, + "Recommendations" : { + "shape" : "__listOfRecommendation" + } + } + }, + "MaxResults" : { + "type" : "integer", + "min" : 1, + "max" : 25 + }, + "NotificationChannel" : { + "type" : "structure", + "members" : { + "Config" : { + "shape" : "NotificationChannelConfig" + }, + "Id" : { + "shape" : "__stringMin36Max36PatternAF098AF094AF094AF094AF0912" + } + } + }, + "NotificationChannelConfig" : { + "type" : "structure", + "members" : { + "Sns" : { + "shape" : "SnsChannelConfig" + } + }, + "required" : [ "Sns" ] + }, + "OpsCenterIntegration" : { + "type" : "structure", + "members" : { + "OptInStatus" : { + "shape" : "OptInStatus" + } + } + }, + "OpsCenterIntegrationConfig" : { + "type" : "structure", + "members" : { + "OptInStatus" : { + "shape" : "OptInStatus" + } + } + }, + "OptInStatus" : { + "type" : "string", + "enum" : [ "ENABLED", "DISABLED" ] + }, + "PredictionTimeRange" : { + "type" : "structure", + "members" : { + "EndTime" : { + "shape" : "__timestampUnix" + }, + "StartTime" : { + "shape" : "__timestampUnix" + } + }, + "required" : [ "StartTime" ] + }, + "ProactiveAnomaly" : { + "type" : "structure", + "members" : { + "AnomalyTimeRange" : { + "shape" : "AnomalyTimeRange" + }, + "AssociatedInsightId" : { + "shape" : "__stringMin1Max100PatternW" + }, + "Id" : { + "shape" : "__stringMin1Max100PatternW" + }, + "Limit" : { + "shape" : "__double" + }, + "PredictionTimeRange" : { + "shape" : "PredictionTimeRange" + }, + "ResourceCollection" : { + "shape" : "ResourceCollection" + }, + "Severity" : { + "shape" : "AnomalySeverity" + }, + "SourceDetails" : { + "shape" : "AnomalySourceDetails" + }, + "Status" : { + "shape" : "AnomalyStatus" + }, + "UpdateTime" : { + "shape" : "__timestampUnix" + } + } + }, + "ProactiveAnomalySummary" : { + "type" : "structure", + "members" : { + "AnomalyTimeRange" : { + "shape" : "AnomalyTimeRange" + }, + "AssociatedInsightId" : { + "shape" : "__stringMin1Max100PatternW" + }, + "Id" : { + "shape" : "__stringMin1Max100PatternW" + }, + "Limit" : { + "shape" : "__double" + }, + "PredictionTimeRange" : { + "shape" : "PredictionTimeRange" + }, + "ResourceCollection" : { + "shape" : "ResourceCollection" + }, + "Severity" : { + "shape" : "AnomalySeverity" + }, + "SourceDetails" : { + "shape" : "AnomalySourceDetails" + }, + "Status" : { + "shape" : "AnomalyStatus" + }, + "UpdateTime" : { + "shape" : "__timestampUnix" + } + } + }, + "ProactiveInsight" : { + "type" : "structure", + "members" : { + "Id" : { + "shape" : "__stringMin1Max100PatternW" + }, + "InsightTimeRange" : { + "shape" : "InsightTimeRange" + }, + "Name" : { + "shape" : "__stringMin1Max530PatternSS" + }, + "PredictionTimeRange" : { + "shape" : "PredictionTimeRange" + }, + "ResourceCollection" : { + "shape" : "ResourceCollection" + }, + "Severity" : { + "shape" : "InsightSeverity" + }, + "SsmOpsItemId" : { + "shape" : "__stringMin1Max100Pattern" + }, + "Status" : { + "shape" : "InsightStatus" + } + } + }, + "ProactiveInsightSummary" : { + "type" : "structure", + "members" : { + "Id" : { + "shape" : "__stringMin1Max100PatternW" + }, + "InsightTimeRange" : { + "shape" : "InsightTimeRange" + }, + "Name" : { + "shape" : "__stringMin1Max530PatternSS" + }, + "PredictionTimeRange" : { + "shape" : "PredictionTimeRange" + }, + "ResourceCollection" : { + "shape" : "ResourceCollection" + }, + "Severity" : { + "shape" : "InsightSeverity" + }, + "Status" : { + "shape" : "InsightStatus" + } + } + }, + "PutFeedbackRequest" : { + "type" : "structure", + "members" : { + "InsightFeedback" : { + "shape" : "InsightFeedback" + } + } + }, + "PutFeedbackResponse" : { + "type" : "structure", + "members" : { } + }, + "ReactiveAnomaly" : { + "type" : "structure", + "members" : { + "AnomalyTimeRange" : { + "shape" : "AnomalyTimeRange" + }, + "AssociatedInsightId" : { + "shape" : "__stringMin1Max100PatternW" + }, + "Id" : { + "shape" : "__stringMin1Max100PatternW" + }, + "ResourceCollection" : { + "shape" : "ResourceCollection" + }, + "Severity" : { + "shape" : "AnomalySeverity" + }, + "SourceDetails" : { + "shape" : "AnomalySourceDetails" + }, + "Status" : { + "shape" : "AnomalyStatus" + } + } + }, + "ReactiveAnomalySummary" : { + "type" : "structure", + "members" : { + "AnomalyTimeRange" : { + "shape" : "AnomalyTimeRange" + }, + "AssociatedInsightId" : { + "shape" : "__stringMin1Max100PatternW" + }, + "Id" : { + "shape" : "__stringMin1Max100PatternW" + }, + "ResourceCollection" : { + "shape" : "ResourceCollection" + }, + "Severity" : { + "shape" : "AnomalySeverity" + }, + "SourceDetails" : { + "shape" : "AnomalySourceDetails" + }, + "Status" : { + "shape" : "AnomalyStatus" + } + } + }, + "ReactiveInsight" : { + "type" : "structure", + "members" : { + "Id" : { + "shape" : "__stringMin1Max100PatternW" + }, + "InsightTimeRange" : { + "shape" : "InsightTimeRange" + }, + "Name" : { + "shape" : "__stringMin1Max530PatternSS" + }, + "ResourceCollection" : { + "shape" : "ResourceCollection" + }, + "Severity" : { + "shape" : "InsightSeverity" + }, + "SsmOpsItemId" : { + "shape" : "__stringMin1Max100Pattern" + }, + "Status" : { + "shape" : "InsightStatus" + } + } + }, + "ReactiveInsightSummary" : { + "type" : "structure", + "members" : { + "Id" : { + "shape" : "__stringMin1Max100PatternW" + }, + "InsightTimeRange" : { + "shape" : "InsightTimeRange" + }, + "Name" : { + "shape" : "__stringMin1Max530PatternSS" + }, + "ResourceCollection" : { + "shape" : "ResourceCollection" + }, + "Severity" : { + "shape" : "InsightSeverity" + }, + "Status" : { + "shape" : "InsightStatus" + } + } + }, + "Recommendation" : { + "type" : "structure", + "members" : { + "Description" : { + "shape" : "__string" + }, + "Link" : { + "shape" : "__string" + }, + "Name" : { + "shape" : "__string" + }, + "Reason" : { + "shape" : "__string" + }, + "RelatedAnomalies" : { + "shape" : "__listOfRecommendationRelatedAnomaly" + }, + "RelatedEvents" : { + "shape" : "__listOfRecommendationRelatedEvent" + } + } + }, + "RecommendationRelatedAnomaly" : { + "type" : "structure", + "members" : { + "Resources" : { + "shape" : "__listOfRecommendationRelatedAnomalyResource" + }, + "SourceDetails" : { + "shape" : "__listOfRecommendationRelatedAnomalySourceDetail" + } + } + }, + "RecommendationRelatedAnomalyResource" : { + "type" : "structure", + "members" : { + "Name" : { + "shape" : "__string" + }, + "Type" : { + "shape" : "__string" + } + } + }, + "RecommendationRelatedAnomalySourceDetail" : { + "type" : "structure", + "members" : { + "CloudWatchMetrics" : { + "shape" : "__listOfRecommendationRelatedCloudWatchMetricsSourceDetail" + } + } + }, + "RecommendationRelatedCloudWatchMetricsSourceDetail" : { + "type" : "structure", + "members" : { + "MetricName" : { + "shape" : "__string" + }, + "Namespace" : { + "shape" : "__string" + } + } + }, + "RecommendationRelatedEvent" : { + "type" : "structure", + "members" : { + "Name" : { + "shape" : "__string" + }, + "Resources" : { + "shape" : "__listOfRecommendationRelatedEventResource" + } + } + }, + "RecommendationRelatedEventResource" : { + "type" : "structure", + "members" : { + "Name" : { + "shape" : "__string" + }, + "Type" : { + "shape" : "__string" + } + } + }, + "RemoveNotificationChannelRequest" : { + "type" : "structure", + "members" : { + "Id" : { + "shape" : "__string", + "location" : "uri", + "locationName" : "Id" + } + }, + "required" : [ "Id" ] + }, + "RemoveNotificationChannelResponse" : { + "type" : "structure", + "members" : { } + }, + "ResourceCollection" : { + "type" : "structure", + "members" : { + "CloudFormation" : { + "shape" : "CloudFormationCollection" + } + } + }, + "ResourceCollectionFilter" : { + "type" : "structure", + "members" : { + "CloudFormation" : { + "shape" : "CloudFormationCollectionFilter" + } + } + }, + "ResourceNotFoundException" : { + "type" : "structure", + "members" : { + "Message" : { + "shape" : "__string" + }, + "ResourceId" : { + "shape" : "__string" + }, + "ResourceType" : { + "shape" : "__string" + } + }, + "required" : [ "Message", "ResourceId", "ResourceType" ], + "exception" : true, + "error" : { + "httpStatusCode" : 404 + } + }, + "SearchInsightsFilters" : { + "type" : "structure", + "members" : { + "ResourceCollection" : { + "shape" : "ResourceCollection" + }, + "Severities" : { + "shape" : "__listOfInsightSeverity" + }, + "Statuses" : { + "shape" : "__listOfInsightStatus" + } + } + }, + "SearchInsightsRequest" : { + "type" : "structure", + "members" : { + "Filters" : { + "shape" : "SearchInsightsFilters" + }, + "MaxResults" : { + "shape" : "__integerMin1Max100" + }, + "NextToken" : { + "shape" : "__stringMin36Max36PatternAF098AF094AF094AF094AF0912" + }, + "StartTimeRange" : { + "shape" : "StartTimeRange" + }, + "Type" : { + "shape" : "InsightType" + } + }, + "required" : [ "Type", "StartTimeRange" ] + }, + "SearchInsightsResponse" : { + "type" : "structure", + "members" : { + "NextToken" : { + "shape" : "__stringMin36Max36PatternAF098AF094AF094AF094AF0912" + }, + "ProactiveInsights" : { + "shape" : "__listOfProactiveInsightSummary" + }, + "ReactiveInsights" : { + "shape" : "__listOfReactiveInsightSummary" + } + } + }, + "ServiceIntegrationConfig" : { + "type" : "structure", + "members" : { + "OpsCenter" : { + "shape" : "OpsCenterIntegration" + } + } + }, + "ServiceQuotaExceededException" : { + "type" : "structure", + "members" : { + "Message" : { + "shape" : "__string" + } + }, + "exception" : true, + "error" : { + "httpStatusCode" : 402 + } + }, + "SnsChannelConfig" : { + "type" : "structure", + "members" : { + "TopicArn" : { + "shape" : "__stringMin36Max1024PatternArnAwsAZ09SnsAZ09D12" + } + } + }, + "StartTimeRange" : { + "type" : "structure", + "members" : { + "FromTime" : { + "shape" : "__timestampUnix" + }, + "ToTime" : { + "shape" : "__timestampUnix" + } + } + }, + "ThrottlingException" : { + "type" : "structure", + "members" : { + "Message" : { + "shape" : "__string" + }, + "QuotaCode" : { + "shape" : "__string" + }, + "ServiceCode" : { + "shape" : "__string" + } + }, + "required" : [ "Message" ], + "exception" : true, + "error" : { + "httpStatusCode" : 429 + } + }, + "UpdateCloudFormationCollectionFilter" : { + "type" : "structure", + "members" : { + "StackNames" : { + "shape" : "__listOf__stringMin1Max128PatternAZAZAZAZ09" + } + } + }, + "UpdateResourceCollectionAction" : { + "type" : "string", + "enum" : [ "ADD", "REMOVE" ] + }, + "UpdateResourceCollectionFilter" : { + "type" : "structure", + "members" : { + "CloudFormation" : { + "shape" : "UpdateCloudFormationCollectionFilter" + } + } + }, + "UpdateResourceCollectionRequest" : { + "type" : "structure", + "members" : { + "Action" : { + "shape" : "UpdateResourceCollectionAction" + }, + "ResourceCollection" : { + "shape" : "UpdateResourceCollectionFilter" + } + }, + "required" : [ "Action", "ResourceCollection" ] + }, + "UpdateResourceCollectionResponse" : { + "type" : "structure", + "members" : { } + }, + "UpdateServiceIntegrationConfig" : { + "type" : "structure", + "members" : { + "OpsCenter" : { + "shape" : "OpsCenterIntegrationConfig" + } + } + }, + "UpdateServiceIntegrationRequest" : { + "type" : "structure", + "members" : { + "ServiceIntegration" : { + "shape" : "UpdateServiceIntegrationConfig" + } + }, + "required" : [ "ServiceIntegration" ] + }, + "UpdateServiceIntegrationResponse" : { + "type" : "structure", + "members" : { } + }, + "ValidationException" : { + "type" : "structure", + "members" : { + "Fields" : { + "shape" : "__listOfValidationExceptionField" + }, + "Message" : { + "shape" : "__string" + }, + "Reason" : { + "shape" : "ValidationExceptionReason" + } + }, + "required" : [ "Message" ], + "exception" : true, + "error" : { + "httpStatusCode" : 400 + } + }, + "ValidationExceptionField" : { + "type" : "structure", + "members" : { + "Message" : { + "shape" : "__string" + }, + "Name" : { + "shape" : "__string" + } + }, + "required" : [ "Message", "Name" ] + }, + "ValidationExceptionReason" : { + "type" : "string", + "enum" : [ "UNKNOWN_OPERATION", "CANNOT_PARSE", "FIELD_VALIDATION_FAILED", "OTHER" ] + }, + "__boolean" : { + "type" : "boolean" + }, + "__double" : { + "type" : "double" + }, + "__integer" : { + "type" : "integer" + }, + "__integerMin1Max100" : { + "type" : "integer", + "min" : 1, + "max" : 100 + }, + "__integerMin1Max200" : { + "type" : "integer", + "min" : 1, + "max" : 200 + }, + "__integerMin1Max500" : { + "type" : "integer", + "min" : 1, + "max" : 500 + }, + "__listOfCloudFormationHealth" : { + "type" : "list", + "member" : { + "shape" : "CloudFormationHealth" + } + }, + "__listOfCloudWatchMetricsDetail" : { + "type" : "list", + "member" : { + "shape" : "CloudWatchMetricsDetail" + } + }, + "__listOfCloudWatchMetricsDimension" : { + "type" : "list", + "member" : { + "shape" : "CloudWatchMetricsDimension" + } + }, + "__listOfEvent" : { + "type" : "list", + "member" : { + "shape" : "Event" + } + }, + "__listOfEventResource" : { + "type" : "list", + "member" : { + "shape" : "EventResource" + } + }, + "__listOfInsightSeverity" : { + "type" : "list", + "member" : { + "shape" : "InsightSeverity" + } + }, + "__listOfInsightStatus" : { + "type" : "list", + "member" : { + "shape" : "InsightStatus" + } + }, + "__listOfNotificationChannel" : { + "type" : "list", + "member" : { + "shape" : "NotificationChannel" + } + }, + "__listOfProactiveAnomalySummary" : { + "type" : "list", + "member" : { + "shape" : "ProactiveAnomalySummary" + } + }, + "__listOfProactiveInsightSummary" : { + "type" : "list", + "member" : { + "shape" : "ProactiveInsightSummary" + } + }, + "__listOfReactiveAnomalySummary" : { + "type" : "list", + "member" : { + "shape" : "ReactiveAnomalySummary" + } + }, + "__listOfReactiveInsightSummary" : { + "type" : "list", + "member" : { + "shape" : "ReactiveInsightSummary" + } + }, + "__listOfRecommendation" : { + "type" : "list", + "member" : { + "shape" : "Recommendation" + } + }, + "__listOfRecommendationRelatedAnomaly" : { + "type" : "list", + "member" : { + "shape" : "RecommendationRelatedAnomaly" + } + }, + "__listOfRecommendationRelatedAnomalyResource" : { + "type" : "list", + "member" : { + "shape" : "RecommendationRelatedAnomalyResource" + } + }, + "__listOfRecommendationRelatedAnomalySourceDetail" : { + "type" : "list", + "member" : { + "shape" : "RecommendationRelatedAnomalySourceDetail" + } + }, + "__listOfRecommendationRelatedCloudWatchMetricsSourceDetail" : { + "type" : "list", + "member" : { + "shape" : "RecommendationRelatedCloudWatchMetricsSourceDetail" + } + }, + "__listOfRecommendationRelatedEvent" : { + "type" : "list", + "member" : { + "shape" : "RecommendationRelatedEvent" + } + }, + "__listOfRecommendationRelatedEventResource" : { + "type" : "list", + "member" : { + "shape" : "RecommendationRelatedEventResource" + } + }, + "__listOfValidationExceptionField" : { + "type" : "list", + "member" : { + "shape" : "ValidationExceptionField" + } + }, + "__listOf__stringMin1Max128PatternAZAZAZAZ09" : { + "type" : "list", + "member" : { + "shape" : "__stringMin1Max128PatternAZAZAZAZ09" + } + }, + "__long" : { + "type" : "long" + }, + "__string" : { + "type" : "string" + }, + "__stringMin0Max2048Pattern" : { + "type" : "string", + "min" : 0, + "max" : 2048, + "pattern" : "^.*$" + }, + "__stringMin0Max50" : { + "type" : "string", + "min" : 0, + "max" : 50 + }, + "__stringMin10Max50PatternAZAZ09AmazonawsComAwsEvents" : { + "type" : "string", + "min" : 10, + "max" : 50, + "pattern" : "^[a-z]+[a-z0-9]*\\.amazonaws\\.com|aws\\.events$" + }, + "__stringMin1Max100Pattern" : { + "type" : "string", + "min" : 1, + "max" : 100, + "pattern" : "^.*$" + }, + "__stringMin1Max100PatternW" : { + "type" : "string", + "min" : 1, + "max" : 100, + "pattern" : "^[\\w-]*$" + }, + "__stringMin1Max128PatternAZAZAZAZ09" : { + "type" : "string", + "min" : 1, + "max" : 128, + "pattern" : "^[a-zA-Z*]+[a-zA-Z0-9-]*$" + }, + "__stringMin1Max530PatternSS" : { + "type" : "string", + "min" : 1, + "max" : 530, + "pattern" : "^[\\s\\S]*$" + }, + "__stringMin36Max1024PatternArnAwsAZ09SnsAZ09D12" : { + "type" : "string", + "min" : 36, + "max" : 1024, + "pattern" : "^arn:aws[a-z0-9-]*:sns:[a-z0-9-]+:\\d{12}:[^:]+$" + }, + "__stringMin36Max2048PatternArnAwsAZAZ09AZ09D12" : { + "type" : "string", + "min" : 36, + "max" : 2048, + "pattern" : "^arn:aws[-a-z]*:[a-z0-9-]*:[a-z0-9-]*:\\d{12}:.*$" + }, + "__stringMin36Max36PatternAF098AF094AF094AF094AF0912" : { + "type" : "string", + "min" : 36, + "max" : 36, + "pattern" : "^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$" + }, + "__timestampIso8601" : { + "type" : "timestamp", + "timestampFormat" : "iso8601" + }, + "__timestampUnix" : { + "type" : "timestamp", + "timestampFormat" : "unixTimestamp" + } + } +} \ No newline at end of file From 4ec3c248da22ea89d4eb7c78465b7e2f03316b82 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 2 Dec 2020 00:50:46 +0000 Subject: [PATCH 311/339] Amazon Connect Service Update: This release adds an Amazon Connect API that provides the ability to create tasks, and a set of APIs (in preview) to configure AppIntegrations associations with Amazon Connect instances. --- .../feature-AmazonConnectService-a65a321.json | 6 + .../codegen-resources/paginators-1.json | 12 + .../codegen-resources/service-2.json | 566 +++++++++++++++++- 3 files changed, 571 insertions(+), 13 deletions(-) create mode 100644 .changes/next-release/feature-AmazonConnectService-a65a321.json diff --git a/.changes/next-release/feature-AmazonConnectService-a65a321.json b/.changes/next-release/feature-AmazonConnectService-a65a321.json new file mode 100644 index 000000000000..cdef806906d7 --- /dev/null +++ b/.changes/next-release/feature-AmazonConnectService-a65a321.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Connect Service", + "contributor": "", + "description": "This release adds an Amazon Connect API that provides the ability to create tasks, and a set of APIs (in preview) to configure AppIntegrations associations with Amazon Connect instances." +} diff --git a/services/connect/src/main/resources/codegen-resources/paginators-1.json b/services/connect/src/main/resources/codegen-resources/paginators-1.json index ec682da8d9e9..7a29e91eaa1c 100644 --- a/services/connect/src/main/resources/codegen-resources/paginators-1.json +++ b/services/connect/src/main/resources/codegen-resources/paginators-1.json @@ -46,6 +46,12 @@ "output_token": "NextToken", "result_key": "InstanceSummaryList" }, + "ListIntegrationAssociations": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "IntegrationAssociationSummaryList" + }, "ListLambdaFunctions": { "input_token": "NextToken", "limit_key": "MaxResults", @@ -100,6 +106,12 @@ "output_token": "NextToken", "result_key": "SecurityProfileSummaryList" }, + "ListUseCases": { + "input_token": "NextToken", + "limit_key": "MaxResults", + "output_token": "NextToken", + "result_key": "UseCaseSummaryList" + }, "ListUserHierarchyGroups": { "input_token": "NextToken", "limit_key": "MaxResults", diff --git a/services/connect/src/main/resources/codegen-resources/service-2.json b/services/connect/src/main/resources/codegen-resources/service-2.json index 637734aeab76..de1386960a39 100644 --- a/services/connect/src/main/resources/codegen-resources/service-2.json +++ b/services/connect/src/main/resources/codegen-resources/service-2.json @@ -155,7 +155,24 @@ {"shape":"ResourceNotFoundException"}, {"shape":"InternalServiceException"} ], - "documentation":"

Initiates an Amazon Connect instance with all the supported channels enabled. It does not attach any storage (such as Amazon S3, or Kinesis) or allow for any configurations on features such as Contact Lens for Amazon Connect.

" + "documentation":"

This API is in preview release for Amazon Connect and is subject to change.

Initiates an Amazon Connect instance with all the supported channels enabled. It does not attach any storage (such as Amazon S3, or Kinesis) or allow for any configurations on features such as Contact Lens for Amazon Connect.

" + }, + "CreateIntegrationAssociation":{ + "name":"CreateIntegrationAssociation", + "http":{ + "method":"PUT", + "requestUri":"/instance/{InstanceId}/integration-associations" + }, + "input":{"shape":"CreateIntegrationAssociationRequest"}, + "output":{"shape":"CreateIntegrationAssociationResponse"}, + "errors":[ + {"shape":"DuplicateResourceException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

This API is in preview release for Amazon Connect and is subject to change.

Create an AppIntegration association with anAmazon Connect instance.

" }, "CreateRoutingProfile":{ "name":"CreateRoutingProfile", @@ -176,6 +193,23 @@ ], "documentation":"

Creates a new routing profile.

" }, + "CreateUseCase":{ + "name":"CreateUseCase", + "http":{ + "method":"PUT", + "requestUri":"/instance/{InstanceId}/integration-associations/{IntegrationAssociationId}/use-cases" + }, + "input":{"shape":"CreateUseCaseRequest"}, + "output":{"shape":"CreateUseCaseResponse"}, + "errors":[ + {"shape":"DuplicateResourceException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

This API is in preview release for Amazon Connect and is subject to change.

Creates a use case for an AppIntegration association.

" + }, "CreateUser":{ "name":"CreateUser", "http":{ @@ -226,7 +260,37 @@ {"shape":"InternalServiceException"}, {"shape":"InvalidRequestException"} ], - "documentation":"

Deletes the Amazon Connect instance.

" + "documentation":"

This API is in preview release for Amazon Connect and is subject to change.

Deletes the Amazon Connect instance.

" + }, + "DeleteIntegrationAssociation":{ + "name":"DeleteIntegrationAssociation", + "http":{ + "method":"DELETE", + "requestUri":"/instance/{InstanceId}/integration-associations/{IntegrationAssociationId}" + }, + "input":{"shape":"DeleteIntegrationAssociationRequest"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

This API is in preview release for Amazon Connect and is subject to change.

Deletes an AppIntegration association from an Amazon Connect instance. The association must not have any use cases associated with it.

" + }, + "DeleteUseCase":{ + "name":"DeleteUseCase", + "http":{ + "method":"DELETE", + "requestUri":"/instance/{InstanceId}/integration-associations/{IntegrationAssociationId}/use-cases/{UseCaseId}" + }, + "input":{"shape":"DeleteUseCaseRequest"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

This API is in preview release for Amazon Connect and is subject to change.

Deletes a use case from an AppIntegration association.

" }, "DeleteUser":{ "name":"DeleteUser", @@ -625,7 +689,7 @@ {"shape":"InvalidParameterException"}, {"shape":"ThrottlingException"} ], - "documentation":"

Returns a paginated list of all attribute types for the given instance.

" + "documentation":"

This API is in preview release for Amazon Connect and is subject to change.

Returns a paginated list of all attribute types for the given instance.

" }, "ListInstanceStorageConfigs":{ "name":"ListInstanceStorageConfigs", @@ -642,7 +706,7 @@ {"shape":"InvalidParameterException"}, {"shape":"ThrottlingException"} ], - "documentation":"

Returns a paginated list of storage configs for the identified instance and resource type.

" + "documentation":"

This API is in preview release for Amazon Connect and is subject to change.

Returns a paginated list of storage configs for the identified instance and resource type.

" }, "ListInstances":{ "name":"ListInstances", @@ -656,7 +720,23 @@ {"shape":"InvalidRequestException"}, {"shape":"InternalServiceException"} ], - "documentation":"

Return a list of instances which are in active state, creation-in-progress state, and failed state. Instances that aren't successfully created (they are in a failed state) are returned only for 24 hours after the CreateInstance API was invoked.

" + "documentation":"

This API is in preview release for Amazon Connect and is subject to change.

Return a list of instances which are in active state, creation-in-progress state, and failed state. Instances that aren't successfully created (they are in a failed state) are returned only for 24 hours after the CreateInstance API was invoked.

" + }, + "ListIntegrationAssociations":{ + "name":"ListIntegrationAssociations", + "http":{ + "method":"GET", + "requestUri":"/instance/{InstanceId}/integration-associations" + }, + "input":{"shape":"ListIntegrationAssociationsRequest"}, + "output":{"shape":"ListIntegrationAssociationsResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

This API is in preview release for Amazon Connect and is subject to change.

Provides summary information about the AppIntegration associations for the specified Amazon Connect instance.

" }, "ListLambdaFunctions":{ "name":"ListLambdaFunctions", @@ -828,6 +908,22 @@ ], "documentation":"

Lists the tags for the specified resource.

For sample policies that use tags, see Amazon Connect Identity-Based Policy Examples in the Amazon Connect Administrator Guide.

" }, + "ListUseCases":{ + "name":"ListUseCases", + "http":{ + "method":"GET", + "requestUri":"/instance/{InstanceId}/integration-associations/{IntegrationAssociationId}/use-cases" + }, + "input":{"shape":"ListUseCasesRequest"}, + "output":{"shape":"ListUseCasesResponse"}, + "errors":[ + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"InvalidRequestException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

This API is in preview release for Amazon Connect and is subject to change.

List the use cases.

" + }, "ListUserHierarchyGroups":{ "name":"ListUserHierarchyGroups", "http":{ @@ -929,6 +1025,24 @@ ], "documentation":"

This API places an outbound call to a contact, and then initiates the contact flow. It performs the actions in the contact flow that's specified (in ContactFlowId).

Agents are not involved in initiating the outbound API (that is, dialing the contact). If the contact flow places an outbound call to a contact, and then puts the contact in queue, that's when the call is routed to the agent, like any other inbound case.

There is a 60 second dialing timeout for this operation. If the call is not connected after 60 seconds, it fails.

UK numbers with a 447 prefix are not allowed by default. Before you can dial these UK mobile numbers, you must submit a service quota increase request. For more information, see Amazon Connect Service Quotas in the Amazon Connect Administrator Guide.

" }, + "StartTaskContact":{ + "name":"StartTaskContact", + "http":{ + "method":"PUT", + "requestUri":"/contact/task" + }, + "input":{"shape":"StartTaskContactRequest"}, + "output":{"shape":"StartTaskContactResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"ServiceQuotaExceededException"}, + {"shape":"InternalServiceException"} + ], + "documentation":"

Initiates a contact flow to start a new task.

" + }, "StopContact":{ "name":"StopContact", "http":{ @@ -1072,7 +1186,7 @@ {"shape":"InvalidParameterException"}, {"shape":"ThrottlingException"} ], - "documentation":"

Updates the value for the specified attribute type.

" + "documentation":"

This API is in preview release for Amazon Connect and is subject to change.

Updates the value for the specified attribute type.

" }, "UpdateInstanceStorageConfig":{ "name":"UpdateInstanceStorageConfig", @@ -1088,7 +1202,7 @@ {"shape":"InvalidParameterException"}, {"shape":"ThrottlingException"} ], - "documentation":"

Updates an existing configuration for a resource type. This API is idempotent.

" + "documentation":"

This API is in preview release for Amazon Connect and is subject to change.

Updates an existing configuration for a resource type. This API is idempotent.

" }, "UpdateRoutingProfileConcurrency":{ "name":"UpdateRoutingProfileConcurrency", @@ -1487,13 +1601,14 @@ "type":"string", "enum":[ "VOICE", - "CHAT" + "CHAT", + "TASK" ] }, "Channels":{ "type":"list", "member":{"shape":"Channel"}, - "max":1 + "max":3 }, "ChatContent":{ "type":"string", @@ -1651,6 +1766,11 @@ "error":{"httpStatusCode":410}, "exception":true }, + "ContactReferences":{ + "type":"map", + "key":{"shape":"ReferenceKey"}, + "value":{"shape":"Reference"} + }, "CreateContactFlowRequest":{ "type":"structure", "required":[ @@ -1748,6 +1868,58 @@ } } }, + "CreateIntegrationAssociationRequest":{ + "type":"structure", + "required":[ + "InstanceId", + "IntegrationType", + "IntegrationArn", + "SourceApplicationUrl", + "SourceApplicationName", + "SourceType" + ], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "IntegrationType":{ + "shape":"IntegrationType", + "documentation":"

The type of information to be ingested.

" + }, + "IntegrationArn":{ + "shape":"ARN", + "documentation":"

The Amazon Resource Name (ARN) of the integration.

" + }, + "SourceApplicationUrl":{ + "shape":"URI", + "documentation":"

The URL for the external application.

" + }, + "SourceApplicationName":{ + "shape":"SourceApplicationName", + "documentation":"

The name of the external application.

" + }, + "SourceType":{ + "shape":"SourceType", + "documentation":"

The type of the data source.

" + } + } + }, + "CreateIntegrationAssociationResponse":{ + "type":"structure", + "members":{ + "IntegrationAssociationId":{ + "shape":"IntegrationAssociationId", + "documentation":"

The identifier for the association.

" + }, + "IntegrationAssociationArn":{ + "shape":"ARN", + "documentation":"

The Amazon Resource Name (ARN) for the association.

" + } + } + }, "CreateRoutingProfileRequest":{ "type":"structure", "required":[ @@ -1803,6 +1975,45 @@ } } }, + "CreateUseCaseRequest":{ + "type":"structure", + "required":[ + "InstanceId", + "IntegrationAssociationId", + "UseCaseType" + ], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "IntegrationAssociationId":{ + "shape":"IntegrationAssociationId", + "documentation":"

The identifier for the AppIntegration association.

", + "location":"uri", + "locationName":"IntegrationAssociationId" + }, + "UseCaseType":{ + "shape":"UseCaseType", + "documentation":"

The type of use case to associate to the AppIntegration association. Each AppIntegration association can have only one of each use case type.

" + } + } + }, + "CreateUseCaseResponse":{ + "type":"structure", + "members":{ + "UseCaseId":{ + "shape":"UseCaseId", + "documentation":"

The identifier of the use case.

" + }, + "UseCaseArn":{ + "shape":"ARN", + "documentation":"

The Amazon Resource Name (ARN) for the use case.

" + } + } + }, "CreateUserHierarchyGroupRequest":{ "type":"structure", "required":[ @@ -2019,6 +2230,55 @@ } } }, + "DeleteIntegrationAssociationRequest":{ + "type":"structure", + "required":[ + "InstanceId", + "IntegrationAssociationId" + ], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "IntegrationAssociationId":{ + "shape":"IntegrationAssociationId", + "documentation":"

The identifier for the AppIntegration association.

", + "location":"uri", + "locationName":"IntegrationAssociationId" + } + } + }, + "DeleteUseCaseRequest":{ + "type":"structure", + "required":[ + "InstanceId", + "IntegrationAssociationId", + "UseCaseId" + ], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "IntegrationAssociationId":{ + "shape":"IntegrationAssociationId", + "documentation":"

The identifier for the AppIntegration association.

", + "location":"uri", + "locationName":"IntegrationAssociationId" + }, + "UseCaseId":{ + "shape":"UseCaseId", + "documentation":"

The identifier for the use case.

", + "location":"uri", + "locationName":"UseCaseId" + } + } + }, "DeleteUserHierarchyGroupRequest":{ "type":"structure", "required":[ @@ -2290,6 +2550,11 @@ } } }, + "Description":{ + "type":"string", + "max":4096, + "min":0 + }, "DestinationNotAllowedException":{ "type":"structure", "members":{ @@ -2589,11 +2854,11 @@ }, "Filters":{ "shape":"Filters", - "documentation":"

The queues, up to 100, or channels, to use to filter the metrics returned. Metric data is retrieved only for the resources associated with the queues or channels included in the filter. You can include both queue IDs and queue ARNs in the same request. Both VOICE and CHAT channels are supported.

" + "documentation":"

The queues, up to 100, or channels, to use to filter the metrics returned. Metric data is retrieved only for the resources associated with the queues or channels included in the filter. You can include both queue IDs and queue ARNs in the same request. VOICE, CHAT, and TASK channels are supported.

" }, "Groupings":{ "shape":"Groupings", - "documentation":"

The grouping applied to the metrics returned. For example, when grouped by QUEUE, the metrics returned apply to each queue rather than aggregated for all queues. If you group by CHANNEL, you should include a Channels filter. Both VOICE and CHAT channels are supported.

If no Grouping is included in the request, a summary of metrics is returned.

" + "documentation":"

The grouping applied to the metrics returned. For example, when grouped by QUEUE, the metrics returned apply to each queue rather than aggregated for all queues. If you group by CHANNEL, you should include a Channels filter. VOICE, CHAT, and TASK channels are supported.

If no Grouping is included in the request, a summary of metrics is returned.

" }, "CurrentMetrics":{ "shape":"CurrentMetrics", @@ -2674,7 +2939,7 @@ }, "Filters":{ "shape":"Filters", - "documentation":"

The queues, up to 100, or channels, to use to filter the metrics returned. Metric data is retrieved only for the resources associated with the queues or channels included in the filter. You can include both queue IDs and queue ARNs in the same request. Both VOICE and CHAT channels are supported.

" + "documentation":"

The queues, up to 100, or channels, to use to filter the metrics returned. Metric data is retrieved only for the resources associated with the queues or channels included in the filter. You can include both queue IDs and queue ARNs in the same request. VOICE, CHAT, and TASK channels are supported.

" }, "Groupings":{ "shape":"Groupings", @@ -3182,6 +3447,57 @@ "type":"list", "member":{"shape":"InstanceSummary"} }, + "IntegrationAssociationId":{ + "type":"string", + "max":200, + "min":1 + }, + "IntegrationAssociationSummary":{ + "type":"structure", + "members":{ + "IntegrationAssociationId":{ + "shape":"IntegrationAssociationId", + "documentation":"

The identifier for the AppIntegration association.

" + }, + "IntegrationAssociationArn":{ + "shape":"ARN", + "documentation":"

The Amazon Resource Name (ARN) for the AppIntegration association.

" + }, + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

" + }, + "IntegrationType":{ + "shape":"IntegrationType", + "documentation":"

The integration type.

" + }, + "IntegrationArn":{ + "shape":"ARN", + "documentation":"

The Amazon Resource Name (ARN) for the AppIntegration.

" + }, + "SourceApplicationUrl":{ + "shape":"URI", + "documentation":"

The URL for the external application.

" + }, + "SourceApplicationName":{ + "shape":"SourceApplicationName", + "documentation":"

The user-provided, friendly name for the external application.

" + }, + "SourceType":{ + "shape":"SourceType", + "documentation":"

The name of the source.

" + } + }, + "documentation":"

Contains summary information about the associated AppIntegrations.

" + }, + "IntegrationAssociationSummaryList":{ + "type":"list", + "member":{"shape":"IntegrationAssociationSummary"} + }, + "IntegrationType":{ + "type":"string", + "enum":["EVENT"] + }, "InternalServiceException":{ "type":"structure", "members":{ @@ -3548,6 +3864,44 @@ } } }, + "ListIntegrationAssociationsRequest":{ + "type":"structure", + "required":["InstanceId"], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

", + "location":"querystring", + "locationName":"nextToken" + }, + "MaxResults":{ + "shape":"MaxResult100", + "documentation":"

The maximimum number of results to return per page.

", + "box":true, + "location":"querystring", + "locationName":"maxResults" + } + } + }, + "ListIntegrationAssociationsResponse":{ + "type":"structure", + "members":{ + "IntegrationAssociationSummaryList":{ + "shape":"IntegrationAssociationSummaryList", + "documentation":"

The AppIntegration associations.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If there are additional results, this is the token for the next set of results.

" + } + } + }, "ListLambdaFunctionsRequest":{ "type":"structure", "required":["InstanceId"], @@ -3936,6 +4290,54 @@ } } }, + "ListUseCasesRequest":{ + "type":"structure", + "required":[ + "InstanceId", + "IntegrationAssociationId" + ], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

", + "location":"uri", + "locationName":"InstanceId" + }, + "IntegrationAssociationId":{ + "shape":"IntegrationAssociationId", + "documentation":"

The identifier for the integration association.

", + "location":"uri", + "locationName":"IntegrationAssociationId" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

", + "location":"querystring", + "locationName":"nextToken" + }, + "MaxResults":{ + "shape":"MaxResult100", + "documentation":"

The maximimum number of results to return per page.

", + "box":true, + "location":"querystring", + "locationName":"maxResults" + } + }, + "documentation":"

Provides summary information about the use cases for the specified Amazon Connect AppIntegration association.

" + }, + "ListUseCasesResponse":{ + "type":"structure", + "members":{ + "UseCaseSummaryList":{ + "shape":"UseCaseSummaryList", + "documentation":"

The use cases.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If there are additional results, this is the token for the next set of results.

" + } + } + }, "ListUserHierarchyGroupsRequest":{ "type":"structure", "required":["InstanceId"], @@ -4065,6 +4467,11 @@ "documentation":"

Contains information about which channels are supported, and how many contacts an agent can have on a channel simultaneously.

" }, "Message":{"type":"string"}, + "Name":{ + "type":"string", + "max":512, + "min":0 + }, "NextToken":{"type":"string"}, "Origin":{ "type":"string", @@ -4542,6 +4949,38 @@ "max":100, "min":1 }, + "Reference":{ + "type":"structure", + "required":[ + "Value", + "Type" + ], + "members":{ + "Value":{ + "shape":"ReferenceValue", + "documentation":"

A formatted URL that will be shown to an agent in the Contact Control Panel (CCP)

" + }, + "Type":{ + "shape":"ReferenceType", + "documentation":"

A valid URL.

" + } + }, + "documentation":"

A link that an agent selects to complete a given task. You can have up to 4,096 UTF-8 bytes across all references for a contact.

" + }, + "ReferenceKey":{ + "type":"string", + "max":4096, + "min":1 + }, + "ReferenceType":{ + "type":"string", + "enum":["URL"] + }, + "ReferenceValue":{ + "type":"string", + "max":4096, + "min":0 + }, "ResourceConflictException":{ "type":"structure", "members":{ @@ -4872,6 +5311,19 @@ "error":{"httpStatusCode":402}, "exception":true }, + "SourceApplicationName":{ + "type":"string", + "max":100, + "min":1, + "pattern":"^[a-zA-Z0-9_ -]+$" + }, + "SourceType":{ + "type":"string", + "enum":[ + "SALESFORCE", + "ZENDESK" + ] + }, "StartChatContactRequest":{ "type":"structure", "required":[ @@ -5004,6 +5456,58 @@ } } }, + "StartTaskContactRequest":{ + "type":"structure", + "required":[ + "InstanceId", + "ContactFlowId", + "Name" + ], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

" + }, + "PreviousContactId":{ + "shape":"ContactId", + "documentation":"

The identifier of the previous chat, voice, or task contact.

" + }, + "ContactFlowId":{ + "shape":"ContactFlowId", + "documentation":"

The identifier of the contact flow for initiating the tasks. To see the ContactFlowId in the Amazon Connect console user interface, on the navigation menu go to Routing, Contact Flows. Choose the contact flow. On the contact flow page, under the name of the contact flow, choose Show additional flow information. The ContactFlowId is the last part of the ARN, shown here in bold:

arn:aws:connect:us-west-2:xxxxxxxxxxxx:instance/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/contact-flow/846ec553-a005-41c0-8341-xxxxxxxxxxxx

" + }, + "Attributes":{ + "shape":"Attributes", + "documentation":"

A custom key-value pair using an attribute map. The attributes are standard Amazon Connect attributes, and can be accessed in contact flows just like any other contact attributes.

There can be up to 32,768 UTF-8 bytes across all key-value pairs per contact. Attribute keys can include only alphanumeric, dash, and underscore characters.

" + }, + "Name":{ + "shape":"Name", + "documentation":"

The name of a task that is shown to an agent in the Contact Control Panel (CCP).

" + }, + "References":{ + "shape":"ContactReferences", + "documentation":"

A formatted URL that is shown to an agent in the Contact Control Panel (CCP).

" + }, + "Description":{ + "shape":"Description", + "documentation":"

A description of the task that is shown to an agent in the Contact Control Panel (CCP).

" + }, + "ClientToken":{ + "shape":"ClientToken", + "documentation":"

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

", + "idempotencyToken":true + } + } + }, + "StartTaskContactResponse":{ + "type":"structure", + "members":{ + "ContactId":{ + "shape":"ContactId", + "documentation":"

The identifier of this contact within the Amazon Connect instance.

" + } + } + }, "Statistic":{ "type":"string", "enum":[ @@ -5166,6 +5670,11 @@ "exception":true }, "Timestamp":{"type":"timestamp"}, + "URI":{ + "type":"string", + "max":2000, + "min":1 + }, "Unit":{ "type":"string", "enum":[ @@ -5436,7 +5945,7 @@ }, "QueueConfigs":{ "shape":"RoutingProfileQueueConfigList", - "documentation":"

The queues to be updated for this routing profile.

" + "documentation":"

The queues to be updated for this routing profile. Queues must first be associated to the routing profile. You can do this using AssociateRoutingProfileQueues.

" } } }, @@ -5614,6 +6123,37 @@ } } }, + "UseCase":{ + "type":"structure", + "members":{ + "UseCaseId":{ + "shape":"UseCaseId", + "documentation":"

The identifier for the use case.

" + }, + "UseCaseArn":{ + "shape":"ARN", + "documentation":"

The Amazon Resource Name (ARN) for the use case.

" + }, + "UseCaseType":{ + "shape":"UseCaseType", + "documentation":"

The type of use case to associate to the AppIntegration association. Each AppIntegration association can have only one of each use case type.

" + } + }, + "documentation":"

Contains the use case.

" + }, + "UseCaseId":{ + "type":"string", + "max":200, + "min":1 + }, + "UseCaseSummaryList":{ + "type":"list", + "member":{"shape":"UseCase"} + }, + "UseCaseType":{ + "type":"string", + "enum":["RULES_EVALUATION"] + }, "User":{ "type":"structure", "members":{ From 7914228ca260d2d9f06c9b1fd8616b31d667df4e Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 2 Dec 2020 00:50:49 +0000 Subject: [PATCH 312/339] Amazon Honeycode Update: Introducing APIs to read and write directly from Honeycode tables. Use APIs to pull table and column metadata, then use the read and write APIs to programmatically read and write from the tables. --- .../feature-AmazonHoneycode-a8f7e97.json | 6 + .../codegen-resources/paginators-1.json | 23 + .../codegen-resources/service-2.json | 1474 +++++++++++++++-- 3 files changed, 1372 insertions(+), 131 deletions(-) create mode 100644 .changes/next-release/feature-AmazonHoneycode-a8f7e97.json diff --git a/.changes/next-release/feature-AmazonHoneycode-a8f7e97.json b/.changes/next-release/feature-AmazonHoneycode-a8f7e97.json new file mode 100644 index 000000000000..ed8f0dc76301 --- /dev/null +++ b/.changes/next-release/feature-AmazonHoneycode-a8f7e97.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Honeycode", + "contributor": "", + "description": "Introducing APIs to read and write directly from Honeycode tables. Use APIs to pull table and column metadata, then use the read and write APIs to programmatically read and write from the tables." +} diff --git a/services/honeycode/src/main/resources/codegen-resources/paginators-1.json b/services/honeycode/src/main/resources/codegen-resources/paginators-1.json index 5677bd8e4a2d..19ba884c5e5c 100644 --- a/services/honeycode/src/main/resources/codegen-resources/paginators-1.json +++ b/services/honeycode/src/main/resources/codegen-resources/paginators-1.json @@ -1,4 +1,27 @@ { "pagination": { + "ListTableColumns": { + "input_token": "nextToken", + "output_token": "nextToken", + "result_key": "tableColumns" + }, + "ListTableRows": { + "input_token": "nextToken", + "output_token": "nextToken", + "limit_key": "maxResults", + "result_key": "rows" + }, + "ListTables": { + "input_token": "nextToken", + "output_token": "nextToken", + "limit_key": "maxResults", + "result_key": "tables" + }, + "QueryTableRows": { + "input_token": "nextToken", + "output_token": "nextToken", + "limit_key": "maxResults", + "result_key": "rows" + } } } diff --git a/services/honeycode/src/main/resources/codegen-resources/service-2.json b/services/honeycode/src/main/resources/codegen-resources/service-2.json index 4ec967eb53b3..dfca581ebdd0 100644 --- a/services/honeycode/src/main/resources/codegen-resources/service-2.json +++ b/services/honeycode/src/main/resources/codegen-resources/service-2.json @@ -13,6 +13,102 @@ "uid":"honeycode-2020-03-01" }, "operations":{ + "BatchCreateTableRows":{ + "name":"BatchCreateTableRows", + "http":{ + "method":"POST", + "requestUri":"/workbooks/{workbookId}/tables/{tableId}/rows/batchcreate" + }, + "input":{"shape":"BatchCreateTableRowsRequest"}, + "output":{"shape":"BatchCreateTableRowsResult"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"RequestTimeoutException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ServiceQuotaExceededException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ThrottlingException"}, + {"shape":"ValidationException"} + ], + "documentation":"

The BatchCreateTableRows API allows you to create one or more rows at the end of a table in a workbook. The API allows you to specify the values to set in some or all of the columns in the new rows.

If a column is not explicitly set in a specific row, then the column level formula specified in the table will be applied to the new row. If there is no column level formula but the last row of the table has a formula, then that formula will be copied down to the new row. If there is no column level formula and no formula in the last row of the table, then that column will be left blank for the new rows.

" + }, + "BatchDeleteTableRows":{ + "name":"BatchDeleteTableRows", + "http":{ + "method":"POST", + "requestUri":"/workbooks/{workbookId}/tables/{tableId}/rows/batchdelete" + }, + "input":{"shape":"BatchDeleteTableRowsRequest"}, + "output":{"shape":"BatchDeleteTableRowsResult"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ValidationException"}, + {"shape":"RequestTimeoutException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

The BatchDeleteTableRows API allows you to delete one or more rows from a table in a workbook. You need to specify the ids of the rows that you want to delete from the table.

" + }, + "BatchUpdateTableRows":{ + "name":"BatchUpdateTableRows", + "http":{ + "method":"POST", + "requestUri":"/workbooks/{workbookId}/tables/{tableId}/rows/batchupdate" + }, + "input":{"shape":"BatchUpdateTableRowsRequest"}, + "output":{"shape":"BatchUpdateTableRowsResult"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ValidationException"}, + {"shape":"RequestTimeoutException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

The BatchUpdateTableRows API allows you to update one or more rows in a table in a workbook.

You can specify the values to set in some or all of the columns in the table for the specified rows. If a column is not explicitly specified in a particular row, then that column will not be updated for that row. To clear out the data in a specific cell, you need to set the value as an empty string (\"\").

" + }, + "BatchUpsertTableRows":{ + "name":"BatchUpsertTableRows", + "http":{ + "method":"POST", + "requestUri":"/workbooks/{workbookId}/tables/{tableId}/rows/batchupsert" + }, + "input":{"shape":"BatchUpsertTableRowsRequest"}, + "output":{"shape":"BatchUpsertTableRowsResult"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"RequestTimeoutException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ServiceQuotaExceededException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ThrottlingException"}, + {"shape":"ValidationException"} + ], + "documentation":"

The BatchUpsertTableRows API allows you to upsert one or more rows in a table. The upsert operation takes a filter expression as input and evaluates it to find matching rows on the destination table. If matching rows are found, it will update the cells in the matching rows to new values specified in the request. If no matching rows are found, a new row is added at the end of the table and the cells in that row are set to the new values specified in the request.

You can specify the values to set in some or all of the columns in the table for the matching or newly appended rows. If a column is not explicitly specified for a particular row, then that column will not be updated for that row. To clear out the data in a specific cell, you need to set the value as an empty string (\"\").

" + }, + "DescribeTableDataImportJob":{ + "name":"DescribeTableDataImportJob", + "http":{ + "method":"GET", + "requestUri":"/workbooks/{workbookId}/tables/{tableId}/import/{jobId}" + }, + "input":{"shape":"DescribeTableDataImportJobRequest"}, + "output":{"shape":"DescribeTableDataImportJobResult"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ThrottlingException"}, + {"shape":"ValidationException"} + ], + "documentation":"

The DescribeTableDataImportJob API allows you to retrieve the status and details of a table data import job.

" + }, "GetScreenData":{ "name":"GetScreenData", "http":{ @@ -52,6 +148,100 @@ {"shape":"RequestTimeoutException"} ], "documentation":"

The InvokeScreenAutomation API allows invoking an action defined in a screen in a Honeycode app. The API allows setting local variables, which can then be used in the automation being invoked. This allows automating the Honeycode app interactions to write, update or delete data in the workbook.

" + }, + "ListTableColumns":{ + "name":"ListTableColumns", + "http":{ + "method":"GET", + "requestUri":"/workbooks/{workbookId}/tables/{tableId}/columns" + }, + "input":{"shape":"ListTableColumnsRequest"}, + "output":{"shape":"ListTableColumnsResult"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"RequestTimeoutException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ThrottlingException"}, + {"shape":"ValidationException"} + ], + "documentation":"

The ListTableColumns API allows you to retrieve a list of all the columns in a table in a workbook.

" + }, + "ListTableRows":{ + "name":"ListTableRows", + "http":{ + "method":"POST", + "requestUri":"/workbooks/{workbookId}/tables/{tableId}/rows/list" + }, + "input":{"shape":"ListTableRowsRequest"}, + "output":{"shape":"ListTableRowsResult"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ValidationException"}, + {"shape":"RequestTimeoutException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

The ListTableRows API allows you to retrieve a list of all the rows in a table in a workbook.

" + }, + "ListTables":{ + "name":"ListTables", + "http":{ + "method":"GET", + "requestUri":"/workbooks/{workbookId}/tables" + }, + "input":{"shape":"ListTablesRequest"}, + "output":{"shape":"ListTablesResult"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"RequestTimeoutException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ThrottlingException"}, + {"shape":"ValidationException"} + ], + "documentation":"

The ListTables API allows you to retrieve a list of all the tables in a workbook.

" + }, + "QueryTableRows":{ + "name":"QueryTableRows", + "http":{ + "method":"POST", + "requestUri":"/workbooks/{workbookId}/tables/{tableId}/rows/query" + }, + "input":{"shape":"QueryTableRowsRequest"}, + "output":{"shape":"QueryTableRowsResult"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"RequestTimeoutException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ThrottlingException"}, + {"shape":"ValidationException"} + ], + "documentation":"

The QueryTableRows API allows you to use a filter formula to query for specific rows in a table.

" + }, + "StartTableDataImportJob":{ + "name":"StartTableDataImportJob", + "http":{ + "method":"POST", + "requestUri":"/workbooks/{workbookId}/tables/{tableId}/import" + }, + "input":{"shape":"StartTableDataImportJobRequest"}, + "output":{"shape":"StartTableDataImportJobResult"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"ThrottlingException"}, + {"shape":"ValidationException"} + ], + "documentation":"

The StartTableDataImportJob API allows you to start an import job on a table. This API will only return the id of the job that was started. To find out the status of the import request, you need to call the DescribeTableDataImportJob API.

" } }, "shapes":{ @@ -60,7 +250,7 @@ "members":{ "message":{"shape":"ErrorMessage"} }, - "documentation":"

You do not have sufficient access to perform this action. Check that the workbook is owned by you and your IAM policy allows access to the screen/automation in the request.

", + "documentation":"

You do not have sufficient access to perform this action. Check that the workbook is owned by you and your IAM policy allows access to the resource in the request.

", "error":{"httpStatusCode":403}, "exception":true }, @@ -79,229 +269,963 @@ "message":{"shape":"ErrorMessage"} }, "documentation":"

The automation execution timed out.

", - "error":{"httpStatusCode":504}, + "error":{ + "httpStatusCode":504, + "senderFault":true + }, "exception":true }, - "ClientRequestToken":{ + "AwsUserArn":{ "type":"string", - "max":64, - "min":32 + "max":2048, + "min":20 }, - "ColumnMetadata":{ + "BatchCreateTableRowsRequest":{ "type":"structure", "required":[ - "name", - "format" + "workbookId", + "tableId", + "rowsToCreate" ], "members":{ - "name":{ - "shape":"Name", - "documentation":"

The name of the column.

" + "workbookId":{ + "shape":"ResourceId", + "documentation":"

The ID of the workbook where the new rows are being added.

If a workbook with the specified ID could not be found, this API throws ResourceNotFoundException.

", + "location":"uri", + "locationName":"workbookId" }, - "format":{ - "shape":"Format", - "documentation":"

The format of the column.

" + "tableId":{ + "shape":"ResourceId", + "documentation":"

The ID of the table where the new rows are being added.

If a table with the specified ID could not be found, this API throws ResourceNotFoundException.

", + "location":"uri", + "locationName":"tableId" + }, + "rowsToCreate":{ + "shape":"CreateRowDataList", + "documentation":"

The list of rows to create at the end of the table. Each item in this list needs to have a batch item id to uniquely identify the element in the request and the cells to create for that row. You need to specify at least one item in this list.

Note that if one of the column ids in any of the rows in the request does not exist in the table, then the request fails and no updates are made to the table.

" + }, + "clientRequestToken":{ + "shape":"ClientRequestToken", + "documentation":"

The request token for performing the batch create operation. Request tokens help to identify duplicate requests. If a call times out or fails due to a transient error like a failed network connection, you can retry the call with the same request token. The service ensures that if the first call using that request token is successfully performed, the second call will not perform the operation again.

Note that request tokens are valid only for a few minutes. You cannot use request tokens to dedupe requests spanning hours or days.

" } - }, - "documentation":"

Metadata for column in the table.

" + } }, - "DataItem":{ + "BatchCreateTableRowsResult":{ "type":"structure", + "required":[ + "workbookCursor", + "createdRows" + ], "members":{ - "overrideFormat":{ - "shape":"Format", - "documentation":"

The overrideFormat is optional and is specified only if a particular row of data has a different format for the data than the default format defined on the screen or the table.

" + "workbookCursor":{ + "shape":"WorkbookCursor", + "documentation":"

The updated workbook cursor after adding the new rows at the end of the table.

" }, - "rawValue":{ - "shape":"RawValue", - "documentation":"

The raw value of the data. e.g. jsmith@example.com

" + "createdRows":{ + "shape":"CreatedRowsMap", + "documentation":"

The map of batch item id to the row id that was created for that item.

" }, - "formattedValue":{ - "shape":"FormattedValue", - "documentation":"

The formatted value of the data. e.g. John Smith.

" + "failedBatchItems":{ + "shape":"FailedBatchItems", + "documentation":"

The list of batch items in the request that could not be added to the table. Each element in this list contains one item from the request that could not be added to the table along with the reason why that item could not be added.

" } - }, - "documentation":"

The data in a particular data cell defined on the screen.

", - "sensitive":true + } }, - "DataItems":{ - "type":"list", - "member":{"shape":"DataItem"} + "BatchDeleteTableRowsRequest":{ + "type":"structure", + "required":[ + "workbookId", + "tableId", + "rowIds" + ], + "members":{ + "workbookId":{ + "shape":"ResourceId", + "documentation":"

The ID of the workbook where the rows are being deleted.

If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.

", + "location":"uri", + "locationName":"workbookId" + }, + "tableId":{ + "shape":"ResourceId", + "documentation":"

The ID of the table where the rows are being deleted.

If a table with the specified id could not be found, this API throws ResourceNotFoundException.

", + "location":"uri", + "locationName":"tableId" + }, + "rowIds":{ + "shape":"RowIdList", + "documentation":"

The list of row ids to delete from the table. You need to specify at least one row id in this list.

Note that if one of the row ids provided in the request does not exist in the table, then the request fails and no rows are deleted from the table.

" + }, + "clientRequestToken":{ + "shape":"ClientRequestToken", + "documentation":"

The request token for performing the delete action. Request tokens help to identify duplicate requests. If a call times out or fails due to a transient error like a failed network connection, you can retry the call with the same request token. The service ensures that if the first call using that request token is successfully performed, the second call will not perform the action again.

Note that request tokens are valid only for a few minutes. You cannot use request tokens to dedupe requests spanning hours or days.

" + } + } }, - "ErrorMessage":{"type":"string"}, - "Format":{ + "BatchDeleteTableRowsResult":{ + "type":"structure", + "required":["workbookCursor"], + "members":{ + "workbookCursor":{ + "shape":"WorkbookCursor", + "documentation":"

The updated workbook cursor after deleting the rows from the table.

" + }, + "failedBatchItems":{ + "shape":"FailedBatchItems", + "documentation":"

The list of row ids in the request that could not be deleted from the table. Each element in this list contains one row id from the request that could not be deleted along with the reason why that item could not be deleted.

" + } + } + }, + "BatchErrorMessage":{ "type":"string", - "enum":[ - "AUTO", - "NUMBER", - "CURRENCY", - "DATE", - "TIME", - "DATE_TIME", - "PERCENTAGE", - "TEXT", - "ACCOUNTING", - "CONTACT", - "ROWLINK" - ] + "pattern":"^(?!\\s*$).+" }, - "FormattedValue":{"type":"string"}, - "GetScreenDataRequest":{ + "BatchItemId":{ + "type":"string", + "max":64, + "min":1, + "pattern":"^(?!\\s*$).+" + }, + "BatchUpdateTableRowsRequest":{ "type":"structure", "required":[ "workbookId", - "appId", - "screenId" + "tableId", + "rowsToUpdate" ], "members":{ "workbookId":{ "shape":"ResourceId", - "documentation":"

The ID of the workbook that contains the screen.

" + "documentation":"

The ID of the workbook where the rows are being updated.

If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.

", + "location":"uri", + "locationName":"workbookId" }, - "appId":{ + "tableId":{ "shape":"ResourceId", - "documentation":"

The ID of the app that contains the screem.

" + "documentation":"

The ID of the table where the rows are being updated.

If a table with the specified id could not be found, this API throws ResourceNotFoundException.

", + "location":"uri", + "locationName":"tableId" }, - "screenId":{ + "rowsToUpdate":{ + "shape":"UpdateRowDataList", + "documentation":"

The list of rows to update in the table. Each item in this list needs to contain the row id to update along with the map of column id to cell values for each column in that row that needs to be updated. You need to specify at least one row in this list, and for each row, you need to specify at least one column to update.

Note that if one of the row or column ids in the request does not exist in the table, then the request fails and no updates are made to the table.

" + }, + "clientRequestToken":{ + "shape":"ClientRequestToken", + "documentation":"

The request token for performing the update action. Request tokens help to identify duplicate requests. If a call times out or fails due to a transient error like a failed network connection, you can retry the call with the same request token. The service ensures that if the first call using that request token is successfully performed, the second call will not perform the action again.

Note that request tokens are valid only for a few minutes. You cannot use request tokens to dedupe requests spanning hours or days.

" + } + } + }, + "BatchUpdateTableRowsResult":{ + "type":"structure", + "required":["workbookCursor"], + "members":{ + "workbookCursor":{ + "shape":"WorkbookCursor", + "documentation":"

The updated workbook cursor after adding the new rows at the end of the table.

" + }, + "failedBatchItems":{ + "shape":"FailedBatchItems", + "documentation":"

The list of batch items in the request that could not be updated in the table. Each element in this list contains one item from the request that could not be updated in the table along with the reason why that item could not be updated.

" + } + } + }, + "BatchUpsertTableRowsRequest":{ + "type":"structure", + "required":[ + "workbookId", + "tableId", + "rowsToUpsert" + ], + "members":{ + "workbookId":{ + "shape":"ResourceId", + "documentation":"

The ID of the workbook where the rows are being upserted.

If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.

", + "location":"uri", + "locationName":"workbookId" + }, + "tableId":{ + "shape":"ResourceId", + "documentation":"

The ID of the table where the rows are being upserted.

If a table with the specified id could not be found, this API throws ResourceNotFoundException.

", + "location":"uri", + "locationName":"tableId" + }, + "rowsToUpsert":{ + "shape":"UpsertRowDataList", + "documentation":"

The list of rows to upsert in the table. Each item in this list needs to have a batch item id to uniquely identify the element in the request, a filter expression to find the rows to update for that element and the cell values to set for each column in the upserted rows. You need to specify at least one item in this list.

Note that if one of the filter formulas in the request fails to evaluate because of an error or one of the column ids in any of the rows does not exist in the table, then the request fails and no updates are made to the table.

" + }, + "clientRequestToken":{ + "shape":"ClientRequestToken", + "documentation":"

The request token for performing the update action. Request tokens help to identify duplicate requests. If a call times out or fails due to a transient error like a failed network connection, you can retry the call with the same request token. The service ensures that if the first call using that request token is successfully performed, the second call will not perform the action again.

Note that request tokens are valid only for a few minutes. You cannot use request tokens to dedupe requests spanning hours or days.

" + } + } + }, + "BatchUpsertTableRowsResult":{ + "type":"structure", + "required":[ + "rows", + "workbookCursor" + ], + "members":{ + "rows":{ + "shape":"UpsertRowsResultMap", + "documentation":"

A map with the batch item id as the key and the result of the upsert operation as the value. The result of the upsert operation specifies whether existing rows were updated or a new row was appended, along with the list of row ids that were affected.

" + }, + "workbookCursor":{ + "shape":"WorkbookCursor", + "documentation":"

The updated workbook cursor after updating or appending rows in the table.

" + }, + "failedBatchItems":{ + "shape":"FailedBatchItems", + "documentation":"

The list of batch items in the request that could not be updated or appended in the table. Each element in this list contains one item from the request that could not be updated in the table along with the reason why that item could not be updated or appended.

" + } + } + }, + "Cell":{ + "type":"structure", + "members":{ + "formula":{ + "shape":"Formula", + "documentation":"

The formula contained in the cell. This field is empty if a cell does not have a formula.

" + }, + "format":{ + "shape":"Format", + "documentation":"

The format of the cell. If this field is empty, then the format is either not specified in the workbook or the format is set to AUTO.

" + }, + "rawValue":{ + "shape":"RawValue", + "documentation":"

The raw value of the data contained in the cell. The raw value depends on the format of the data in the cell. However the attribute in the API return value is always a string containing the raw value.

Cells with format DATE, DATE_TIME or TIME have the raw value as a floating point number where the whole number represents the number of days since 1/1/1900 and the fractional part represents the fraction of the day since midnight. For example, a cell with date 11/3/2020 has the raw value \"44138\". A cell with the time 9:00 AM has the raw value \"0.375\" and a cell with date/time value of 11/3/2020 9:00 AM has the raw value \"44138.375\". Notice that even though the raw value is a number in all three cases, it is still represented as a string.

Cells with format NUMBER, CURRENCY, PERCENTAGE and ACCOUNTING have the raw value of the data as the number representing the data being displayed. For example, the number 1.325 with two decimal places in the format will have it's raw value as \"1.325\" and formatted value as \"1.33\". A currency value for $10 will have the raw value as \"10\" and formatted value as \"$10.00\". A value representing 20% with two decimal places in the format will have its raw value as \"0.2\" and the formatted value as \"20.00%\". An accounting value of -$25 will have \"-25\" as the raw value and \"$ (25.00)\" as the formatted value.

Cells with format TEXT will have the raw text as the raw value. For example, a cell with text \"John Smith\" will have \"John Smith\" as both the raw value and the formatted value.

Cells with format CONTACT will have the name of the contact as a formatted value and the email address of the contact as the raw value. For example, a contact for John Smith will have \"John Smith\" as the formatted value and \"john.smith@example.com\" as the raw value.

Cells with format ROWLINK (aka picklist) will have the first column of the linked row as the formatted value and the row id of the linked row as the raw value. For example, a cell containing a picklist to a table that displays task status might have \"Completed\" as the formatted value and \"row:dfcefaee-5b37-4355-8f28-40c3e4ff5dd4/ca432b2f-b8eb-431d-9fb5-cbe0342f9f03\" as the raw value.

Cells with format AUTO or cells without any format that are auto-detected as one of the formats above will contain the raw and formatted values as mentioned above, based on the auto-detected formats. If there is no auto-detected format, the raw and formatted values will be the same as the data in the cell.

" + }, + "formattedValue":{ + "shape":"FormattedValue", + "documentation":"

The formatted value of the cell. This is the value that you see displayed in the cell in the UI.

Note that the formatted value of a cell is always represented as a string irrespective of the data that is stored in the cell. For example, if a cell contains a date, the formatted value of the cell is the string representation of the formatted date being shown in the cell in the UI. See details in the rawValue field below for how cells of different formats will have different raw and formatted values.

" + } + }, + "documentation":"

An object that represents a single cell in a table.

", + "sensitive":true + }, + "CellInput":{ + "type":"structure", + "members":{ + "fact":{ + "shape":"Fact", + "documentation":"

Fact represents the data that is entered into a cell. This data can be free text or a formula. Formulas need to start with the equals (=) sign.

" + } + }, + "documentation":"

CellInput object contains the data needed to create or update cells in a table.

" + }, + "Cells":{ + "type":"list", + "member":{"shape":"Cell"} + }, + "ClientRequestToken":{ + "type":"string", + "max":64, + "min":32, + "pattern":"^(?!\\s*$).+" + }, + "ColumnMetadata":{ + "type":"structure", + "required":[ + "name", + "format" + ], + "members":{ + "name":{ + "shape":"Name", + "documentation":"

The name of the column.

" + }, + "format":{ + "shape":"Format", + "documentation":"

The format of the column.

" + } + }, + "documentation":"

Metadata for column in the table.

" + }, + "CreateRowData":{ + "type":"structure", + "required":[ + "batchItemId", + "cellsToCreate" + ], + "members":{ + "batchItemId":{ + "shape":"BatchItemId", + "documentation":"

An external identifier that represents the single row that is being created as part of the BatchCreateTableRows request. This can be any string that you can use to identify the row in the request. The BatchCreateTableRows API puts the batch item id in the results to allow you to link data in the request to data in the results.

" + }, + "cellsToCreate":{ + "shape":"RowDataInput", + "documentation":"

A map representing the cells to create in the new row. The key is the column id of the cell and the value is the CellInput object that represents the data to set in that cell.

" + } + }, + "documentation":"

Data needed to create a single row in a table as part of the BatchCreateTableRows request.

" + }, + "CreateRowDataList":{ + "type":"list", + "member":{"shape":"CreateRowData"}, + "max":100, + "min":1 + }, + "CreatedRowsMap":{ + "type":"map", + "key":{"shape":"BatchItemId"}, + "value":{"shape":"RowId"} + }, + "DataItem":{ + "type":"structure", + "members":{ + "overrideFormat":{ + "shape":"Format", + "documentation":"

The overrideFormat is optional and is specified only if a particular row of data has a different format for the data than the default format defined on the screen or the table.

" + }, + "rawValue":{ + "shape":"RawValue", + "documentation":"

The raw value of the data. e.g. jsmith@example.com

" + }, + "formattedValue":{ + "shape":"FormattedValue", + "documentation":"

The formatted value of the data. e.g. John Smith.

" + } + }, + "documentation":"

The data in a particular data cell defined on the screen.

", + "sensitive":true + }, + "DataItems":{ + "type":"list", + "member":{"shape":"DataItem"} + }, + "DelimitedTextDelimiter":{ + "type":"string", + "max":1, + "min":1, + "pattern":"^[^\\n\\r\\x00\\x08\\x0B\\x0C\\x0E\\x1F]?$" + }, + "DelimitedTextImportOptions":{ + "type":"structure", + "required":["delimiter"], + "members":{ + "delimiter":{ + "shape":"DelimitedTextDelimiter", + "documentation":"

The delimiter to use for separating columns in a single row of the input.

" + }, + "hasHeaderRow":{ + "shape":"HasHeaderRow", + "documentation":"

Indicates whether the input file has a header row at the top containing the column names.

" + }, + "ignoreEmptyRows":{ + "shape":"IgnoreEmptyRows", + "documentation":"

A parameter to indicate whether empty rows should be ignored or be included in the import.

" + }, + "dataCharacterEncoding":{ + "shape":"ImportDataCharacterEncoding", + "documentation":"

The encoding of the data in the input file.

" + } + }, + "documentation":"

An object that contains the options relating to parsing delimited text as part of an import request.

" + }, + "DescribeTableDataImportJobRequest":{ + "type":"structure", + "required":[ + "workbookId", + "tableId", + "jobId" + ], + "members":{ + "workbookId":{ + "shape":"ResourceId", + "documentation":"

The ID of the workbook into which data was imported.

If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.

", + "location":"uri", + "locationName":"workbookId" + }, + "tableId":{ + "shape":"ResourceId", + "documentation":"

The ID of the table into which data was imported.

If a table with the specified id could not be found, this API throws ResourceNotFoundException.

", + "location":"uri", + "locationName":"tableId" + }, + "jobId":{ + "shape":"JobId", + "documentation":"

The ID of the job that was returned by the StartTableDataImportJob request.

If a job with the specified id could not be found, this API throws ResourceNotFoundException.

", + "location":"uri", + "locationName":"jobId" + } + } + }, + "DescribeTableDataImportJobResult":{ + "type":"structure", + "required":[ + "jobStatus", + "message", + "jobMetadata" + ], + "members":{ + "jobStatus":{ + "shape":"TableDataImportJobStatus", + "documentation":"

The current status of the import job.

" + }, + "message":{ + "shape":"TableDataImportJobMessage", + "documentation":"

A message providing more details about the current status of the import job.

" + }, + "jobMetadata":{ + "shape":"TableDataImportJobMetadata", + "documentation":"

The metadata about the job that was submitted for import.

" + } + } + }, + "DestinationOptions":{ + "type":"structure", + "members":{ + "columnMap":{ + "shape":"ImportColumnMap", + "documentation":"

A map of the column id to the import properties for each column.

" + } + }, + "documentation":"

An object that contains the options relating to the destination of the import request.

" + }, + "Email":{ + "type":"string", + "max":254, + "min":3, + "pattern":"^([a-zA-Z0-9_\\-\\.]+)@([a-zA-Z0-9_\\-\\.]+)\\.([a-zA-Z]{2,5})$", + "sensitive":true + }, + "ErrorMessage":{"type":"string"}, + "Fact":{ + "type":"string", + "max":8192, + "min":0, + "pattern":"[\\s\\S]*", + "sensitive":true + }, + "FailedBatchItem":{ + "type":"structure", + "required":[ + "id", + "errorMessage" + ], + "members":{ + "id":{ + "shape":"BatchItemId", + "documentation":"

The id of the batch item that failed. This is the batch item id for the BatchCreateTableRows and BatchUpsertTableRows operations and the row id for the BatchUpdateTableRows and BatchDeleteTableRows operations.

" + }, + "errorMessage":{ + "shape":"BatchErrorMessage", + "documentation":"

The error message that indicates why the batch item failed.

" + } + }, + "documentation":"

A single item in a batch that failed to perform the intended action because of an error preventing it from succeeding.

" + }, + "FailedBatchItems":{ + "type":"list", + "member":{"shape":"FailedBatchItem"}, + "max":100, + "min":0 + }, + "Filter":{ + "type":"structure", + "required":["formula"], + "members":{ + "formula":{ + "shape":"Formula", + "documentation":"

A formula representing a filter function that returns zero or more matching rows from a table. Valid formulas in this field return a list of rows from a table. The most common ways of writing a formula to return a list of rows are to use the FindRow() or Filter() functions. Any other formula that returns zero or more rows is also acceptable. For example, you can use a formula that points to a cell that contains a filter function.

" + }, + "contextRowId":{ + "shape":"RowId", + "documentation":"

The optional contextRowId attribute can be used to specify the row id of the context row if the filter formula contains unqualified references to table columns and needs a context row to evaluate them successfully.

" + } + }, + "documentation":"

An object that represents a filter formula along with the id of the context row under which the filter function needs to evaluate.

" + }, + "Format":{ + "type":"string", + "enum":[ + "AUTO", + "NUMBER", + "CURRENCY", + "DATE", + "TIME", + "DATE_TIME", + "PERCENTAGE", + "TEXT", + "ACCOUNTING", + "CONTACT", + "ROWLINK" + ] + }, + "FormattedValue":{ + "type":"string", + "max":8192, + "min":0, + "pattern":"[\\s\\S]*" + }, + "Formula":{ + "type":"string", + "max":8192, + "min":0, + "pattern":"^=.*", + "sensitive":true + }, + "GetScreenDataRequest":{ + "type":"structure", + "required":[ + "workbookId", + "appId", + "screenId" + ], + "members":{ + "workbookId":{ + "shape":"ResourceId", + "documentation":"

The ID of the workbook that contains the screen.

" + }, + "appId":{ + "shape":"ResourceId", + "documentation":"

The ID of the app that contains the screem.

" + }, + "screenId":{ + "shape":"ResourceId", + "documentation":"

The ID of the screen.

" + }, + "variables":{ + "shape":"VariableValueMap", + "documentation":"

Variables are optional and are needed only if the screen requires them to render correctly. Variables are specified as a map where the key is the name of the variable as defined on the screen. The value is an object which currently has only one property, rawValue, which holds the value of the variable to be passed to the screen.

" + }, + "maxResults":{ + "shape":"MaxResults", + "documentation":"

The number of results to be returned on a single page. Specify a number between 1 and 100. The maximum value is 100.

This parameter is optional. If you don't specify this parameter, the default page size is 100.

" + }, + "nextToken":{ + "shape":"PaginationToken", + "documentation":"

This parameter is optional. If a nextToken is not specified, the API returns the first page of data.

Pagination tokens expire after 1 hour. If you use a token that was returned more than an hour back, the API will throw ValidationException.

" + } + } + }, + "GetScreenDataResult":{ + "type":"structure", + "required":[ + "results", + "workbookCursor" + ], + "members":{ + "results":{ + "shape":"ResultSetMap", + "documentation":"

A map of all the rows on the screen keyed by block name.

" + }, + "workbookCursor":{ + "shape":"WorkbookCursor", + "documentation":"

Indicates the cursor of the workbook at which the data returned by this workbook is read. Workbook cursor keeps increasing with every update and the increments are not sequential.

" + }, + "nextToken":{ + "shape":"PaginationToken", + "documentation":"

Provides the pagination token to load the next page if there are more results matching the request. If a pagination token is not present in the response, it means that all data matching the query has been loaded.

" + } + } + }, + "HasHeaderRow":{"type":"boolean"}, + "IgnoreEmptyRows":{"type":"boolean"}, + "ImportColumnMap":{ + "type":"map", + "key":{"shape":"ResourceId"}, + "value":{"shape":"SourceDataColumnProperties"}, + "max":100 + }, + "ImportDataCharacterEncoding":{ + "type":"string", + "enum":[ + "UTF-8", + "US-ASCII", + "ISO-8859-1", + "UTF-16BE", + "UTF-16LE", + "UTF-16" + ] + }, + "ImportDataSource":{ + "type":"structure", + "required":["dataSourceConfig"], + "members":{ + "dataSourceConfig":{ + "shape":"ImportDataSourceConfig", + "documentation":"

The configuration parameters for the data source of the import

" + } + }, + "documentation":"

An object that has details about the source of the data that was submitted for import.

" + }, + "ImportDataSourceConfig":{ + "type":"structure", + "members":{ + "dataSourceUrl":{ + "shape":"SecureURL", + "documentation":"

The URL from which source data will be downloaded for the import request.

" + } + }, + "documentation":"

An object that contains the configuration parameters for the data source of an import request.

" + }, + "ImportJobSubmitter":{ + "type":"structure", + "members":{ + "email":{ + "shape":"Email", + "documentation":"

The email id of the submitter of the import job, if available.

" + }, + "userArn":{ + "shape":"AwsUserArn", + "documentation":"

The AWS user ARN of the submitter of the import job, if available.

" + } + }, + "documentation":"

An object that contains the attributes of the submitter of the import job.

" + }, + "ImportOptions":{ + "type":"structure", + "members":{ + "destinationOptions":{ + "shape":"DestinationOptions", + "documentation":"

Options relating to the destination of the import request.

" + }, + "delimitedTextOptions":{ + "shape":"DelimitedTextImportOptions", + "documentation":"

Options relating to parsing delimited text. Required if dataFormat is DELIMITED_TEXT.

" + } + }, + "documentation":"

An object that contains the options specified by the sumitter of the import request.

" + }, + "ImportSourceDataFormat":{ + "type":"string", + "enum":["DELIMITED_TEXT"] + }, + "InternalServerException":{ + "type":"structure", + "members":{ + "message":{"shape":"ErrorMessage"} + }, + "documentation":"

There were unexpected errors from the server.

", + "error":{"httpStatusCode":500}, + "exception":true + }, + "InvokeScreenAutomationRequest":{ + "type":"structure", + "required":[ + "workbookId", + "appId", + "screenId", + "screenAutomationId" + ], + "members":{ + "workbookId":{ + "shape":"ResourceId", + "documentation":"

The ID of the workbook that contains the screen automation.

", + "location":"uri", + "locationName":"workbookId" + }, + "appId":{ + "shape":"ResourceId", + "documentation":"

The ID of the app that contains the screen automation.

", + "location":"uri", + "locationName":"appId" + }, + "screenId":{ + "shape":"ResourceId", + "documentation":"

The ID of the screen that contains the screen automation.

", + "location":"uri", + "locationName":"screenId" + }, + "screenAutomationId":{ + "shape":"ResourceId", + "documentation":"

The ID of the automation action to be performed.

", + "location":"uri", + "locationName":"automationId" + }, + "variables":{ + "shape":"VariableValueMap", + "documentation":"

Variables are specified as a map where the key is the name of the variable as defined on the screen. The value is an object which currently has only one property, rawValue, which holds the value of the variable to be passed to the screen. Any variables defined in a screen are required to be passed in the call.

" + }, + "rowId":{ + "shape":"RowId", + "documentation":"

The row ID for the automation if the automation is defined inside a block with source or list.

" + }, + "clientRequestToken":{ + "shape":"ClientRequestToken", + "documentation":"

The request token for performing the automation action. Request tokens help to identify duplicate requests. If a call times out or fails due to a transient error like a failed network connection, you can retry the call with the same request token. The service ensures that if the first call using that request token is successfully performed, the second call will return the response of the previous call rather than performing the action again.

Note that request tokens are valid only for a few minutes. You cannot use request tokens to dedupe requests spanning hours or days.

" + } + } + }, + "InvokeScreenAutomationResult":{ + "type":"structure", + "required":["workbookCursor"], + "members":{ + "workbookCursor":{ + "shape":"WorkbookCursor", + "documentation":"

The updated workbook cursor after performing the automation action.

" + } + } + }, + "JobId":{ + "type":"string", + "max":100, + "min":1, + "pattern":"^[^\\n\\r\\x00\\x08\\x0B\\x0C\\x0E\\x1F]*$" + }, + "ListTableColumnsRequest":{ + "type":"structure", + "required":[ + "workbookId", + "tableId" + ], + "members":{ + "workbookId":{ + "shape":"ResourceId", + "documentation":"

The ID of the workbook that contains the table whose columns are being retrieved.

If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.

", + "location":"uri", + "locationName":"workbookId" + }, + "tableId":{ + "shape":"ResourceId", + "documentation":"

The ID of the table whose columns are being retrieved.

If a table with the specified id could not be found, this API throws ResourceNotFoundException.

", + "location":"uri", + "locationName":"tableId" + }, + "nextToken":{ + "shape":"PaginationToken", + "documentation":"

This parameter is optional. If a nextToken is not specified, the API returns the first page of data.

Pagination tokens expire after 1 hour. If you use a token that was returned more than an hour back, the API will throw ValidationException.

", + "location":"querystring", + "locationName":"nextToken" + } + } + }, + "ListTableColumnsResult":{ + "type":"structure", + "required":["tableColumns"], + "members":{ + "tableColumns":{ + "shape":"TableColumns", + "documentation":"

The list of columns in the table.

" + }, + "nextToken":{ + "shape":"PaginationToken", + "documentation":"

Provides the pagination token to load the next page if there are more results matching the request. If a pagination token is not present in the response, it means that all data matching the request has been loaded.

" + }, + "workbookCursor":{ + "shape":"WorkbookCursor", + "documentation":"

Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor keeps increasing with every update and the increments are not sequential.

" + } + } + }, + "ListTableRowsRequest":{ + "type":"structure", + "required":[ + "workbookId", + "tableId" + ], + "members":{ + "workbookId":{ + "shape":"ResourceId", + "documentation":"

The ID of the workbook that contains the table whose rows are being retrieved.

If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.

", + "location":"uri", + "locationName":"workbookId" + }, + "tableId":{ + "shape":"ResourceId", + "documentation":"

The ID of the table whose rows are being retrieved.

If a table with the specified id could not be found, this API throws ResourceNotFoundException.

", + "location":"uri", + "locationName":"tableId" + }, + "rowIds":{ + "shape":"RowIdList", + "documentation":"

This parameter is optional. If one or more row ids are specified in this list, then only the specified row ids are returned in the result. If no row ids are specified here, then all the rows in the table are returned.

" + }, + "maxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of rows to return in each page of the results.

" + }, + "nextToken":{ + "shape":"PaginationToken", + "documentation":"

This parameter is optional. If a nextToken is not specified, the API returns the first page of data.

Pagination tokens expire after 1 hour. If you use a token that was returned more than an hour back, the API will throw ValidationException.

" + } + } + }, + "ListTableRowsResult":{ + "type":"structure", + "required":[ + "columnIds", + "rows", + "workbookCursor" + ], + "members":{ + "columnIds":{ + "shape":"ResourceIds", + "documentation":"

The list of columns in the table whose row data is returned in the result.

" + }, + "rows":{ + "shape":"TableRows", + "documentation":"

The list of rows in the table. Note that this result is paginated, so this list contains a maximum of 100 rows.

" + }, + "rowIdsNotFound":{ + "shape":"RowIdList", + "documentation":"

The list of row ids included in the request that were not found in the table.

" + }, + "nextToken":{ + "shape":"PaginationToken", + "documentation":"

Provides the pagination token to load the next page if there are more results matching the request. If a pagination token is not present in the response, it means that all data matching the request has been loaded.

" + }, + "workbookCursor":{ + "shape":"WorkbookCursor", + "documentation":"

Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor keeps increasing with every update and the increments are not sequential.

" + } + } + }, + "ListTablesRequest":{ + "type":"structure", + "required":["workbookId"], + "members":{ + "workbookId":{ "shape":"ResourceId", - "documentation":"

The ID of the screen.

" - }, - "variables":{ - "shape":"VariableValueMap", - "documentation":"

Variables are optional and are needed only if the screen requires them to render correctly. Variables are specified as a map where the key is the name of the variable as defined on the screen. The value is an object which currently has only one property, rawValue, which holds the value of the variable to be passed to the screen.

" + "documentation":"

The ID of the workbook whose tables are being retrieved.

If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.

", + "location":"uri", + "locationName":"workbookId" }, "maxResults":{ "shape":"MaxResults", - "documentation":"

The number of results to be returned on a single page. Specify a number between 1 and 100. The maximum value is 100.

This parameter is optional. If you don't specify this parameter, the default page size is 100.

" + "documentation":"

The maximum number of tables to return in each page of the results.

", + "location":"querystring", + "locationName":"maxResults" }, "nextToken":{ "shape":"PaginationToken", - "documentation":"

This parameter is optional. If a nextToken is not specified, the API returns the first page of data.

Pagination tokens expire after 1 hour. If you use a token that was returned more than an hour back, the API will throw ValidationException.

" + "documentation":"

This parameter is optional. If a nextToken is not specified, the API returns the first page of data.

Pagination tokens expire after 1 hour. If you use a token that was returned more than an hour back, the API will throw ValidationException.

", + "location":"querystring", + "locationName":"nextToken" } } }, - "GetScreenDataResult":{ + "ListTablesResult":{ "type":"structure", - "required":[ - "results", - "workbookCursor" - ], + "required":["tables"], "members":{ - "results":{ - "shape":"ResultSetMap", - "documentation":"

A map of all the rows on the screen keyed by block name.

" - }, - "workbookCursor":{ - "shape":"WorkbookCursor", - "documentation":"

Indicates the cursor of the workbook at which the data returned by this workbook is read. Workbook cursor keeps increasing with every update and the increments are not sequential.

" + "tables":{ + "shape":"Tables", + "documentation":"

The list of tables in the workbook.

" }, "nextToken":{ "shape":"PaginationToken", - "documentation":"

Provides the pagination token to load the next page if there are more results matching the request. If a pagination token is not present in the response, it means that all data matching the query has been loaded.

" + "documentation":"

Provides the pagination token to load the next page if there are more results matching the request. If a pagination token is not present in the response, it means that all data matching the request has been loaded.

" + }, + "workbookCursor":{ + "shape":"WorkbookCursor", + "documentation":"

Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor keeps increasing with every update and the increments are not sequential.

" } } }, - "InternalServerException":{ - "type":"structure", - "members":{ - "message":{"shape":"ErrorMessage"} - }, - "documentation":"

There were unexpected errors from the server.

", - "error":{"httpStatusCode":500}, - "exception":true + "MaxResults":{ + "type":"integer", + "box":true, + "max":100, + "min":1 }, - "InvokeScreenAutomationRequest":{ + "Name":{ + "type":"string", + "sensitive":true + }, + "PaginationToken":{ + "type":"string", + "max":1024, + "min":1, + "pattern":"^(?!\\s*$).+" + }, + "QueryTableRowsRequest":{ "type":"structure", "required":[ "workbookId", - "appId", - "screenId", - "screenAutomationId" + "tableId", + "filterFormula" ], "members":{ "workbookId":{ "shape":"ResourceId", - "documentation":"

The ID of the workbook that contains the screen automation.

", + "documentation":"

The ID of the workbook whose table rows are being queried.

If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.

", "location":"uri", "locationName":"workbookId" }, - "appId":{ - "shape":"ResourceId", - "documentation":"

The ID of the app that contains the screen automation.

", - "location":"uri", - "locationName":"appId" - }, - "screenId":{ - "shape":"ResourceId", - "documentation":"

The ID of the screen that contains the screen automation.

", - "location":"uri", - "locationName":"screenId" - }, - "screenAutomationId":{ + "tableId":{ "shape":"ResourceId", - "documentation":"

The ID of the automation action to be performed.

", + "documentation":"

The ID of the table whose rows are being queried.

If a table with the specified id could not be found, this API throws ResourceNotFoundException.

", "location":"uri", - "locationName":"automationId" + "locationName":"tableId" }, - "variables":{ - "shape":"VariableValueMap", - "documentation":"

Variables are optional and are needed only if the screen requires them to render correctly. Variables are specified as a map where the key is the name of the variable as defined on the screen. The value is an object which currently has only one property, rawValue, which holds the value of the variable to be passed to the screen.

" + "filterFormula":{ + "shape":"Filter", + "documentation":"

An object that represents a filter formula along with the id of the context row under which the filter function needs to evaluate.

" }, - "rowId":{ - "shape":"RowId", - "documentation":"

The row ID for the automation if the automation is defined inside a block with source or list.

" + "maxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of rows to return in each page of the results.

" }, - "clientRequestToken":{ - "shape":"ClientRequestToken", - "documentation":"

The request token for performing the automation action. Request tokens help to identify duplicate requests. If a call times out or fails due to a transient error like a failed network connection, you can retry the call with the same request token. The service ensures that if the first call using that request token is successfully performed, the second call will return the response of the previous call rather than performing the action again.

Note that request tokens are valid only for a few minutes. You cannot use request tokens to dedupe requests spanning hours or days.

" + "nextToken":{ + "shape":"PaginationToken", + "documentation":"

This parameter is optional. If a nextToken is not specified, the API returns the first page of data.

Pagination tokens expire after 1 hour. If you use a token that was returned more than an hour back, the API will throw ValidationException.

" } } }, - "InvokeScreenAutomationResult":{ + "QueryTableRowsResult":{ "type":"structure", - "required":["workbookCursor"], + "required":[ + "columnIds", + "rows", + "workbookCursor" + ], "members":{ + "columnIds":{ + "shape":"ResourceIds", + "documentation":"

The list of columns in the table whose row data is returned in the result.

" + }, + "rows":{ + "shape":"TableRows", + "documentation":"

The list of rows in the table that match the query filter.

" + }, + "nextToken":{ + "shape":"PaginationToken", + "documentation":"

Provides the pagination token to load the next page if there are more results matching the request. If a pagination token is not present in the response, it means that all data matching the request has been loaded.

" + }, "workbookCursor":{ "shape":"WorkbookCursor", - "documentation":"

The updated workbook cursor after performing the automation action.

" + "documentation":"

Indicates the cursor of the workbook at which the data returned by this request is read. Workbook cursor keeps increasing with every update and the increments are not sequential.

" } } }, - "MaxResults":{ - "type":"integer", - "box":true, - "max":100, - "min":1 - }, - "Name":{ - "type":"string", - "sensitive":true - }, - "PaginationToken":{ + "RawValue":{ "type":"string", - "max":1024, - "min":1 + "max":32767, + "min":0, + "pattern":"[\\s\\S]*" }, - "RawValue":{"type":"string"}, "RequestTimeoutException":{ "type":"structure", "members":{ "message":{"shape":"ErrorMessage"} }, "documentation":"

The request timed out.

", - "error":{"httpStatusCode":504}, + "error":{ + "httpStatusCode":504, + "senderFault":true + }, "exception":true }, "ResourceId":{ "type":"string", + "max":36, + "min":36, "pattern":"[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}" }, + "ResourceIds":{ + "type":"list", + "member":{"shape":"ResourceId"}, + "max":100, + "min":1 + }, "ResourceNotFoundException":{ "type":"structure", "members":{ "message":{"shape":"ErrorMessage"} }, - "documentation":"

A Workbook, App, Screen or Screen Automation was not found with the given ID.

", + "documentation":"

A Workbook, Table, App, Screen or Screen Automation was not found with the given ID.

", "error":{"httpStatusCode":404}, "exception":true }, @@ -351,10 +1275,41 @@ "key":{"shape":"Name"}, "value":{"shape":"ResultSet"} }, + "RowDataInput":{ + "type":"map", + "key":{"shape":"ResourceId"}, + "value":{"shape":"CellInput"}, + "max":100, + "min":1 + }, "RowId":{ "type":"string", + "max":77, + "min":77, "pattern":"row:[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}\\/[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}" }, + "RowIdList":{ + "type":"list", + "member":{"shape":"RowId"}, + "max":100, + "min":1 + }, + "SecureURL":{ + "type":"string", + "max":8000, + "min":1, + "pattern":"^https:\\/\\/[^\\n\\r\\x00\\x08\\x0B\\x0C\\x0E\\x1F]*$" + }, + "ServiceQuotaExceededException":{ + "type":"structure", + "required":["message"], + "members":{ + "message":{"shape":"ErrorMessage"} + }, + "documentation":"

The request caused service quota to be breached.

", + "error":{"httpStatusCode":402}, + "exception":true + }, "ServiceUnavailableException":{ "type":"structure", "members":{ @@ -364,6 +1319,180 @@ "error":{"httpStatusCode":503}, "exception":true }, + "SourceDataColumnIndex":{ + "type":"integer", + "min":1 + }, + "SourceDataColumnProperties":{ + "type":"structure", + "members":{ + "columnIndex":{ + "shape":"SourceDataColumnIndex", + "documentation":"

The index of the column in the input file.

" + } + }, + "documentation":"

An object that contains the properties for importing data to a specific column in a table.

" + }, + "StartTableDataImportJobRequest":{ + "type":"structure", + "required":[ + "workbookId", + "dataSource", + "dataFormat", + "destinationTableId", + "importOptions", + "clientRequestToken" + ], + "members":{ + "workbookId":{ + "shape":"ResourceId", + "documentation":"

The ID of the workbook where the rows are being imported.

If a workbook with the specified id could not be found, this API throws ResourceNotFoundException.

", + "location":"uri", + "locationName":"workbookId" + }, + "dataSource":{ + "shape":"ImportDataSource", + "documentation":"

The source of the data that is being imported. The size of source must be no larger than 100 MB. Source must have no more than 100,000 cells and no more than 1,000 rows.

" + }, + "dataFormat":{ + "shape":"ImportSourceDataFormat", + "documentation":"

The format of the data that is being imported. Currently the only option supported is \"DELIMITED_TEXT\".

" + }, + "destinationTableId":{ + "shape":"ResourceId", + "documentation":"

The ID of the table where the rows are being imported.

If a table with the specified id could not be found, this API throws ResourceNotFoundException.

", + "location":"uri", + "locationName":"tableId" + }, + "importOptions":{ + "shape":"ImportOptions", + "documentation":"

The options for customizing this import request.

" + }, + "clientRequestToken":{ + "shape":"ClientRequestToken", + "documentation":"

The request token for performing the update action. Request tokens help to identify duplicate requests. If a call times out or fails due to a transient error like a failed network connection, you can retry the call with the same request token. The service ensures that if the first call using that request token is successfully performed, the second call will not perform the action again.

Note that request tokens are valid only for a few minutes. You cannot use request tokens to dedupe requests spanning hours or days.

" + } + } + }, + "StartTableDataImportJobResult":{ + "type":"structure", + "required":[ + "jobId", + "jobStatus" + ], + "members":{ + "jobId":{ + "shape":"JobId", + "documentation":"

The id that is assigned to this import job. Future requests to find out the status of this import job need to send this id in the appropriate parameter in the request.

" + }, + "jobStatus":{ + "shape":"TableDataImportJobStatus", + "documentation":"

The status of the import job immediately after submitting the request.

" + } + } + }, + "Table":{ + "type":"structure", + "members":{ + "tableId":{ + "shape":"ResourceId", + "documentation":"

The id of the table.

" + }, + "tableName":{ + "shape":"TableName", + "documentation":"

The name of the table.

" + } + }, + "documentation":"

An object representing the properties of a table in a workbook.

" + }, + "TableColumn":{ + "type":"structure", + "members":{ + "tableColumnId":{ + "shape":"ResourceId", + "documentation":"

The id of the column in the table.

" + }, + "tableColumnName":{ + "shape":"TableColumnName", + "documentation":"

The name of the column in the table.

" + }, + "format":{ + "shape":"Format", + "documentation":"

The column level format that is applied in the table. An empty value in this field means that the column format is the default value 'AUTO'.

" + } + }, + "documentation":"

An object that contains attributes about a single column in a table

" + }, + "TableColumnName":{"type":"string"}, + "TableColumns":{ + "type":"list", + "member":{"shape":"TableColumn"} + }, + "TableDataImportJobMessage":{"type":"string"}, + "TableDataImportJobMetadata":{ + "type":"structure", + "required":[ + "submitter", + "submitTime", + "importOptions", + "dataSource" + ], + "members":{ + "submitter":{ + "shape":"ImportJobSubmitter", + "documentation":"

Details about the submitter of the import request.

" + }, + "submitTime":{ + "shape":"TimestampInMillis", + "documentation":"

The timestamp when the job was submitted for import.

" + }, + "importOptions":{ + "shape":"ImportOptions", + "documentation":"

The options that was specified at the time of submitting the import request.

" + }, + "dataSource":{ + "shape":"ImportDataSource", + "documentation":"

The source of the data that was submitted for import.

" + } + }, + "documentation":"

The metadata associated with the table data import job that was submitted.

" + }, + "TableDataImportJobStatus":{ + "type":"string", + "enum":[ + "SUBMITTED", + "IN_PROGRESS", + "COMPLETED", + "FAILED" + ] + }, + "TableName":{"type":"string"}, + "TableRow":{ + "type":"structure", + "required":[ + "rowId", + "cells" + ], + "members":{ + "rowId":{ + "shape":"RowId", + "documentation":"

The id of the row in the table.

" + }, + "cells":{ + "shape":"Cells", + "documentation":"

A list of cells in the table row. The cells appear in the same order as the columns of the table.

" + } + }, + "documentation":"

An object that contains attributes about a single row in a table

" + }, + "TableRows":{ + "type":"list", + "member":{"shape":"TableRow"} + }, + "Tables":{ + "type":"list", + "member":{"shape":"Table"} + }, "ThrottlingException":{ "type":"structure", "members":{ @@ -373,6 +1502,88 @@ "error":{"httpStatusCode":429}, "exception":true }, + "TimestampInMillis":{"type":"timestamp"}, + "UpdateRowData":{ + "type":"structure", + "required":[ + "rowId", + "cellsToUpdate" + ], + "members":{ + "rowId":{ + "shape":"RowId", + "documentation":"

The id of the row that needs to be updated.

" + }, + "cellsToUpdate":{ + "shape":"RowDataInput", + "documentation":"

A map representing the cells to update in the given row. The key is the column id of the cell and the value is the CellInput object that represents the data to set in that cell.

" + } + }, + "documentation":"

Data needed to create a single row in a table as part of the BatchCreateTableRows request.

" + }, + "UpdateRowDataList":{ + "type":"list", + "member":{"shape":"UpdateRowData"}, + "max":100, + "min":1 + }, + "UpsertAction":{ + "type":"string", + "enum":[ + "UPDATED", + "APPENDED" + ] + }, + "UpsertRowData":{ + "type":"structure", + "required":[ + "batchItemId", + "filter", + "cellsToUpdate" + ], + "members":{ + "batchItemId":{ + "shape":"BatchItemId", + "documentation":"

An external identifier that represents a single item in the request that is being upserted as part of the BatchUpsertTableRows request. This can be any string that you can use to identify the item in the request. The BatchUpsertTableRows API puts the batch item id in the results to allow you to link data in the request to data in the results.

" + }, + "filter":{ + "shape":"Filter", + "documentation":"

The filter formula to use to find existing matching rows to update. The formula needs to return zero or more rows. If the formula returns 0 rows, then a new row will be appended in the target table. If the formula returns one or more rows, then the returned rows will be updated.

Note that the filter formula needs to return rows from the target table for the upsert operation to succeed. If the filter formula has a syntax error or it doesn't evaluate to zero or more rows in the target table for any one item in the input list, then the entire BatchUpsertTableRows request fails and no updates are made to the table.

" + }, + "cellsToUpdate":{ + "shape":"RowDataInput", + "documentation":"

A map representing the cells to update for the matching rows or an appended row. The key is the column id of the cell and the value is the CellInput object that represents the data to set in that cell.

" + } + }, + "documentation":"

Data needed to upsert rows in a table as part of a single item in the BatchUpsertTableRows request.

" + }, + "UpsertRowDataList":{ + "type":"list", + "member":{"shape":"UpsertRowData"} + }, + "UpsertRowsResult":{ + "type":"structure", + "required":[ + "rowIds", + "upsertAction" + ], + "members":{ + "rowIds":{ + "shape":"RowIdList", + "documentation":"

The list of row ids that were changed as part of an upsert row operation. If the upsert resulted in an update, this list could potentially contain multiple rows that matched the filter and hence got updated. If the upsert resulted in an append, this list would only have the single row that was appended.

" + }, + "upsertAction":{ + "shape":"UpsertAction", + "documentation":"

The result of the upsert action.

" + } + }, + "documentation":"

An object that represents the result of a single upsert row request.

" + }, + "UpsertRowsResultMap":{ + "type":"map", + "key":{"shape":"BatchItemId"}, + "value":{"shape":"UpsertRowsResult"} + }, "ValidationException":{ "type":"structure", "required":["message"], @@ -385,6 +1596,7 @@ }, "VariableName":{ "type":"string", + "pattern":"^(?!\\s*$).+", "sensitive":true }, "VariableValue":{ From 33b4d89f8b61a7da16ee948f5538c59d6e031e80 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 2 Dec 2020 00:50:47 +0000 Subject: [PATCH 313/339] Amazon SageMaker Service Update: Amazon SageMaker Pipelines for ML workflows. Amazon SageMaker Feature Store, a fully managed repository for ML features. --- ...eature-AmazonSageMakerService-202f725.json | 6 + .../codegen-resources/paginators-1.json | 71 + .../codegen-resources/service-2.json | 5006 ++++++++++++++++- 3 files changed, 4846 insertions(+), 237 deletions(-) create mode 100644 .changes/next-release/feature-AmazonSageMakerService-202f725.json diff --git a/.changes/next-release/feature-AmazonSageMakerService-202f725.json b/.changes/next-release/feature-AmazonSageMakerService-202f725.json new file mode 100644 index 000000000000..edde22e2eff8 --- /dev/null +++ b/.changes/next-release/feature-AmazonSageMakerService-202f725.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon SageMaker Service", + "contributor": "", + "description": "Amazon SageMaker Pipelines for ML workflows. Amazon SageMaker Feature Store, a fully managed repository for ML features." +} diff --git a/services/sagemaker/src/main/resources/codegen-resources/paginators-1.json b/services/sagemaker/src/main/resources/codegen-resources/paginators-1.json index e4cb62d8038e..482033820fe4 100644 --- a/services/sagemaker/src/main/resources/codegen-resources/paginators-1.json +++ b/services/sagemaker/src/main/resources/codegen-resources/paginators-1.json @@ -1,17 +1,41 @@ { "pagination": { + "ListActions": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "ActionSummaries" + }, "ListAlgorithms": { "input_token": "NextToken", "output_token": "NextToken", "limit_key": "MaxResults", "result_key": "AlgorithmSummaryList" }, + "ListAppImageConfigs": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "AppImageConfigs" + }, "ListApps": { "input_token": "NextToken", "output_token": "NextToken", "limit_key": "MaxResults", "result_key": "Apps" }, + "ListArtifacts": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "ArtifactSummaries" + }, + "ListAssociations": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "AssociationSummaries" + }, "ListAutoMLJobs": { "input_token": "NextToken", "output_token": "NextToken", @@ -36,6 +60,12 @@ "limit_key": "MaxResults", "result_key": "CompilationJobSummaries" }, + "ListContexts": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "ContextSummaries" + }, "ListDomains": { "input_token": "NextToken", "output_token": "NextToken", @@ -60,6 +90,12 @@ "limit_key": "MaxResults", "result_key": "ExperimentSummaries" }, + "ListFeatureGroups": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "FeatureGroupSummaries" + }, "ListFlowDefinitions": { "input_token": "NextToken", "output_token": "NextToken", @@ -102,6 +138,12 @@ "limit_key": "MaxResults", "result_key": "LabelingJobSummaryList" }, + "ListModelPackageGroups": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "ModelPackageGroupSummaryList" + }, "ListModelPackages": { "input_token": "NextToken", "output_token": "NextToken", @@ -138,12 +180,41 @@ "limit_key": "MaxResults", "result_key": "NotebookInstances" }, + "ListPipelineExecutionSteps": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "PipelineExecutionSteps" + }, + "ListPipelineExecutions": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "PipelineExecutionSummaries" + }, + "ListPipelineParametersForExecution": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "PipelineParameters" + }, + "ListPipelines": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "PipelineSummaries" + }, "ListProcessingJobs": { "input_token": "NextToken", "output_token": "NextToken", "limit_key": "MaxResults", "result_key": "ProcessingJobSummaries" }, + "ListProjects": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults" + }, "ListSubscribedWorkteams": { "input_token": "NextToken", "output_token": "NextToken", 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 1cdd96b46e54..18ecc3499392 100644 --- a/services/sagemaker/src/main/resources/codegen-resources/service-2.json +++ b/services/sagemaker/src/main/resources/codegen-resources/service-2.json @@ -14,6 +14,20 @@ "uid":"sagemaker-2017-07-24" }, "operations":{ + "AddAssociation":{ + "name":"AddAssociation", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"AddAssociationRequest"}, + "output":{"shape":"AddAssociationResponse"}, + "errors":[ + {"shape":"ResourceNotFound"}, + {"shape":"ResourceLimitExceeded"} + ], + "documentation":"

Creates an association between the source and the destination. A source can be associated with multiple destinations, and a destination can be associated with multiple sources. An association is a lineage tracking entity. For more information, see Amazon SageMaker ML Lineage Tracking.

" + }, "AddTags":{ "name":"AddTags", "http":{ @@ -38,6 +52,19 @@ ], "documentation":"

Associates a trial component with a trial. A trial component can be associated with multiple trials. To disassociate a trial component from a trial, call the DisassociateTrialComponent API.

" }, + "CreateAction":{ + "name":"CreateAction", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateActionRequest"}, + "output":{"shape":"CreateActionResponse"}, + "errors":[ + {"shape":"ResourceLimitExceeded"} + ], + "documentation":"

Creates an action. An action is a lineage tracking entity that represents an action or activity. For example, a model deployment or an HPO job. Generally, an action involves at least one input or output artifact. For more information, see Amazon SageMaker ML Lineage Tracking.

" + }, "CreateAlgorithm":{ "name":"CreateAlgorithm", "http":{ @@ -75,6 +102,19 @@ ], "documentation":"

Creates a configuration for running a SageMaker image as a KernelGateway app. The configuration specifies the Amazon Elastic File System (EFS) storage volume on the image, and a list of the kernels in the image.

" }, + "CreateArtifact":{ + "name":"CreateArtifact", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateArtifactRequest"}, + "output":{"shape":"CreateArtifactResponse"}, + "errors":[ + {"shape":"ResourceLimitExceeded"} + ], + "documentation":"

Creates an artifact. An artifact is a lineage tracking entity that represents a URI addressable object or data. Some examples are the S3 URI of a dataset and the ECR registry path of an image. For more information, see Amazon SageMaker ML Lineage Tracking.

" + }, "CreateAutoMLJob":{ "name":"CreateAutoMLJob", "http":{ @@ -113,6 +153,19 @@ ], "documentation":"

Starts a model compilation job. After the model has been compiled, Amazon SageMaker saves the resulting model artifacts to an Amazon Simple Storage Service (Amazon S3) bucket that you specify.

If you choose to host your model using Amazon SageMaker hosting services, you can use the resulting model artifacts as part of the model. You can also use the artifacts with AWS IoT Greengrass. In that case, deploy them as an ML resource.

In the request body, you provide the following:

  • A name for the compilation job

  • Information about the input model artifacts

  • The output location for the compiled model and the device (target) that the model runs on

  • The Amazon Resource Name (ARN) of the IAM role that Amazon SageMaker assumes to perform the model compilation job.

You can also provide a Tag to track the model compilation job's resource use and costs. The response body contains the CompilationJobArn for the compiled job.

To stop a model compilation job, use StopCompilationJob. To get information about a particular model compilation job, use DescribeCompilationJob. To get information about multiple model compilation jobs, use ListCompilationJobs.

" }, + "CreateContext":{ + "name":"CreateContext", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateContextRequest"}, + "output":{"shape":"CreateContextResponse"}, + "errors":[ + {"shape":"ResourceLimitExceeded"} + ], + "documentation":"

Creates a context. A context is a lineage tracking entity that represents a logical grouping of other tracking or experiment entities. Some examples are an endpoint and a model package. For more information, see Amazon SageMaker ML Lineage Tracking.

" + }, "CreateDomain":{ "name":"CreateDomain", "http":{ @@ -125,7 +178,7 @@ {"shape":"ResourceLimitExceeded"}, {"shape":"ResourceInUse"} ], - "documentation":"

Creates a Domain used by Amazon SageMaker Studio. A domain consists of an associated Amazon Elastic File System (EFS) volume, a list of authorized users, and a variety of security, application, policy, and Amazon Virtual Private Cloud (VPC) configurations. An AWS account is limited to one domain per region. Users within a domain can share notebook files and other artifacts with each other.

When a domain is created, an EFS volume is created for use by all of the users within the domain. Each user receives a private home directory within the EFS volume for notebooks, Git repositories, and data files.

VPC configuration

All SageMaker Studio traffic between the domain and the EFS volume is through the specified VPC and subnets. For other Studio traffic, you can specify the AppNetworkAccessType parameter. AppNetworkAccessType corresponds to the network access type that you choose when you onboard to Studio. The following options are available:

  • PublicInternetOnly - Non-EFS traffic goes through a VPC managed by Amazon SageMaker, which allows internet access. This is the default value.

  • VpcOnly - All Studio traffic is through the specified VPC and subnets. Internet access is disabled by default. To allow internet access, you must specify a NAT gateway.

    When internet access is disabled, you won't be able to run a Studio notebook or to train or host models unless your VPC has an interface endpoint to the SageMaker API and runtime or a NAT gateway and your security groups allow outbound connections.

For more information, see Connect SageMaker Studio Notebooks to Resources in a VPC.

" + "documentation":"

Creates a Domain used by Amazon SageMaker Studio. A domain consists of an associated Amazon Elastic File System (EFS) volume, a list of authorized users, and a variety of security, application, policy, and Amazon Virtual Private Cloud (VPC) configurations. An AWS account is limited to one domain per region. Users within a domain can share notebook files and other artifacts with each other.

EFS storage

When a domain is created, an EFS volume is created for use by all of the users within the domain. Each user receives a private home directory within the EFS volume for notebooks, Git repositories, and data files.

SageMaker uses the AWS Key Management Service (AWS KMS) to encrypt the EFS volume attached to the domain with an AWS managed customer master key (CMK) by default. For more control, you can specify a customer managed CMK. For more information, see Protect Data at Rest Using Encryption.

VPC configuration

All SageMaker Studio traffic between the domain and the EFS volume is through the specified VPC and subnets. For other Studio traffic, you can specify the AppNetworkAccessType parameter. AppNetworkAccessType corresponds to the network access type that you choose when you onboard to Studio. The following options are available:

  • PublicInternetOnly - Non-EFS traffic goes through a VPC managed by Amazon SageMaker, which allows internet access. This is the default value.

  • VpcOnly - All Studio traffic is through the specified VPC and subnets. Internet access is disabled by default. To allow internet access, you must specify a NAT gateway.

    When internet access is disabled, you won't be able to run a Studio notebook or to train or host models unless your VPC has an interface endpoint to the SageMaker API and runtime or a NAT gateway and your security groups allow outbound connections.

For more information, see Connect SageMaker Studio Notebooks to Resources in a VPC.

" }, "CreateEndpoint":{ "name":"CreateEndpoint", @@ -166,6 +219,20 @@ ], "documentation":"

Creates an SageMaker experiment. An experiment is a collection of trials that are observed, compared and evaluated as a group. A trial is a set of steps, called trial components, that produce a machine learning model.

The goal of an experiment is to determine the components that produce the best model. Multiple trials are performed, each one isolating and measuring the impact of a change to one or more inputs, while keeping the remaining inputs constant.

When you use Amazon SageMaker Studio or the Amazon SageMaker Python SDK, all experiments, trials, and trial components are automatically tracked, logged, and indexed. When you use the AWS SDK for Python (Boto), you must use the logging APIs provided by the SDK.

You can add tags to experiments, trials, trial components and then use the Search API to search for the tags.

To add a description to an experiment, specify the optional Description parameter. To add a description later, or to change the description, call the UpdateExperiment API.

To get a list of all your experiments, call the ListExperiments API. To view an experiment's properties, call the DescribeExperiment API. To get a list of all the trials associated with an experiment, call the ListTrials API. To create a trial call the CreateTrial API.

" }, + "CreateFeatureGroup":{ + "name":"CreateFeatureGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateFeatureGroupRequest"}, + "output":{"shape":"CreateFeatureGroupResponse"}, + "errors":[ + {"shape":"ResourceInUse"}, + {"shape":"ResourceLimitExceeded"} + ], + "documentation":"

Create a new FeatureGroup. A FeatureGroup is a group of Features defined in the FeatureStore to describe a Record.

The FeatureGroup defines the schema and features contained in the FeatureGroup. A FeatureGroup definition is composed of a list of Features, a RecordIdentifierFeatureName, an EventTimeFeatureName and configurations for its OnlineStore and OfflineStore. Check AWS service quotas to see the FeatureGroups quota for your AWS account.

You must include at least one of OnlineStoreConfig and OfflineStoreConfig to create a FeatureGroup.

" + }, "CreateFlowDefinition":{ "name":"CreateFlowDefinition", "http":{ @@ -276,7 +343,20 @@ {"shape":"ConflictException"}, {"shape":"ResourceLimitExceeded"} ], - "documentation":"

Creates a model package that you can use to create Amazon SageMaker models or list on AWS Marketplace. Buyers can subscribe to model packages listed on AWS Marketplace to create models in Amazon SageMaker.

To create a model package by specifying a Docker container that contains your inference code and the Amazon S3 location of your model artifacts, provide values for InferenceSpecification. To create a model from an algorithm resource that you created or subscribed to in AWS Marketplace, provide a value for SourceAlgorithmSpecification.

" + "documentation":"

Creates a model package that you can use to create Amazon SageMaker models or list on AWS Marketplace, or a versioned model that is part of a model group. Buyers can subscribe to model packages listed on AWS Marketplace to create models in Amazon SageMaker.

To create a model package by specifying a Docker container that contains your inference code and the Amazon S3 location of your model artifacts, provide values for InferenceSpecification. To create a model from an algorithm resource that you created or subscribed to in AWS Marketplace, provide a value for SourceAlgorithmSpecification.

There are two types of model packages:

  • Versioned - a model that is part of a model group in the model registry.

  • Unversioned - a model package that is not part of a model group.

" + }, + "CreateModelPackageGroup":{ + "name":"CreateModelPackageGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateModelPackageGroupInput"}, + "output":{"shape":"CreateModelPackageGroupOutput"}, + "errors":[ + {"shape":"ResourceLimitExceeded"} + ], + "documentation":"

Creates a model group. A model group contains a group of model versions.

" }, "CreateMonitoringSchedule":{ "name":"CreateMonitoringSchedule", @@ -318,6 +398,20 @@ ], "documentation":"

Creates a lifecycle configuration that you can associate with a notebook instance. A lifecycle configuration is a collection of shell scripts that run when you create or start a notebook instance.

Each lifecycle configuration script has a limit of 16384 characters.

The value of the $PATH environment variable that is available to both scripts is /sbin:bin:/usr/sbin:/usr/bin.

View CloudWatch Logs for notebook instance lifecycle configurations in log group /aws/sagemaker/NotebookInstances in log stream [notebook-instance-name]/[LifecycleConfigHook].

Lifecycle configuration scripts cannot run for longer than 5 minutes. If a script runs for longer than 5 minutes, it fails and the notebook instance is not created or started.

For information about notebook instance lifestyle configurations, see Step 2.1: (Optional) Customize a Notebook Instance.

" }, + "CreatePipeline":{ + "name":"CreatePipeline", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreatePipelineRequest"}, + "output":{"shape":"CreatePipelineResponse"}, + "errors":[ + {"shape":"ResourceNotFound"}, + {"shape":"ResourceLimitExceeded"} + ], + "documentation":"

Creates a pipeline using a JSON pipeline definition.

" + }, "CreatePresignedDomainUrl":{ "name":"CreatePresignedDomainUrl", "http":{ @@ -356,6 +450,19 @@ ], "documentation":"

Creates a processing job.

" }, + "CreateProject":{ + "name":"CreateProject", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateProjectInput"}, + "output":{"shape":"CreateProjectOutput"}, + "errors":[ + {"shape":"ResourceLimitExceeded"} + ], + "documentation":"

Creates a machine learning (ML) project that can contain one or more templates that set up an ML pipeline from training to deploying an approved model.

" + }, "CreateTrainingJob":{ "name":"CreateTrainingJob", "http":{ @@ -369,7 +476,7 @@ {"shape":"ResourceLimitExceeded"}, {"shape":"ResourceNotFound"} ], - "documentation":"

Starts a model training job. After training completes, Amazon SageMaker saves the resulting model artifacts to an Amazon S3 location that you specify.

If you choose to host your model using Amazon SageMaker hosting services, you can use the resulting model artifacts as part of the model. You can also use the artifacts in a machine learning service other than Amazon SageMaker, provided that you know how to use them for inferences.

In the request body, you provide the following:

  • AlgorithmSpecification - Identifies the training algorithm to use.

  • HyperParameters - Specify these algorithm-specific parameters to enable the estimation of model parameters during training. Hyperparameters can be tuned to optimize this learning process. For a list of hyperparameters for each training algorithm provided by Amazon SageMaker, see Algorithms.

  • InputDataConfig - Describes the training dataset and the Amazon S3, EFS, or FSx location where it is stored.

  • OutputDataConfig - Identifies the Amazon S3 bucket where you want Amazon SageMaker to save the results of model training.

  • ResourceConfig - Identifies the resources, ML compute instances, and ML storage volumes to deploy for model training. In distributed training, you specify more than one instance.

  • EnableManagedSpotTraining - Optimize the cost of training machine learning models by up to 80% by using Amazon EC2 Spot instances. For more information, see Managed Spot Training.

  • RoleARN - The Amazon Resource Number (ARN) that Amazon SageMaker assumes to perform tasks on your behalf during model training. You must grant this role the necessary permissions so that Amazon SageMaker can successfully complete model training.

  • StoppingCondition - To help cap training costs, use MaxRuntimeInSeconds to set a time limit for training. Use MaxWaitTimeInSeconds to specify how long you are willing to wait for a managed spot training job to complete.

For more information about Amazon SageMaker, see How It Works.

" + "documentation":"

Starts a model training job. After training completes, Amazon SageMaker saves the resulting model artifacts to an Amazon S3 location that you specify.

If you choose to host your model using Amazon SageMaker hosting services, you can use the resulting model artifacts as part of the model. You can also use the artifacts in a machine learning service other than Amazon SageMaker, provided that you know how to use them for inference.

In the request body, you provide the following:

  • AlgorithmSpecification - Identifies the training algorithm to use.

  • HyperParameters - Specify these algorithm-specific parameters to enable the estimation of model parameters during training. Hyperparameters can be tuned to optimize this learning process. For a list of hyperparameters for each training algorithm provided by Amazon SageMaker, see Algorithms.

  • InputDataConfig - Describes the training dataset and the Amazon S3, EFS, or FSx location where it is stored.

  • OutputDataConfig - Identifies the Amazon S3 bucket where you want Amazon SageMaker to save the results of model training.

  • ResourceConfig - Identifies the resources, ML compute instances, and ML storage volumes to deploy for model training. In distributed training, you specify more than one instance.

  • EnableManagedSpotTraining - Optimize the cost of training machine learning models by up to 80% by using Amazon EC2 Spot instances. For more information, see Managed Spot Training.

  • RoleArn - The Amazon Resource Number (ARN) that Amazon SageMaker assumes to perform tasks on your behalf during model training. You must grant this role the necessary permissions so that Amazon SageMaker can successfully complete model training.

  • StoppingCondition - To help cap training costs, use MaxRuntimeInSeconds to set a time limit for training. Use MaxWaitTimeInSeconds to specify how long you are willing to wait for a managed spot training job to complete.

For more information about Amazon SageMaker, see How It Works.

" }, "CreateTransformJob":{ "name":"CreateTransformJob", @@ -451,6 +558,19 @@ ], "documentation":"

Creates a new work team for labeling your data. A work team is defined by one or more Amazon Cognito user pools. You must first create the user pools before you can create a work team.

You cannot create more than 25 work teams in an account and region.

" }, + "DeleteAction":{ + "name":"DeleteAction", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteActionRequest"}, + "output":{"shape":"DeleteActionResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Deletes an action.

" + }, "DeleteAlgorithm":{ "name":"DeleteAlgorithm", "http":{ @@ -485,6 +605,32 @@ ], "documentation":"

Deletes an AppImageConfig.

" }, + "DeleteArtifact":{ + "name":"DeleteArtifact", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteArtifactRequest"}, + "output":{"shape":"DeleteArtifactResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Deletes an artifact. Either ArtifactArn or Source must be specified.

" + }, + "DeleteAssociation":{ + "name":"DeleteAssociation", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteAssociationRequest"}, + "output":{"shape":"DeleteAssociationResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Deletes an association.

" + }, "DeleteCodeRepository":{ "name":"DeleteCodeRepository", "http":{ @@ -494,6 +640,19 @@ "input":{"shape":"DeleteCodeRepositoryInput"}, "documentation":"

Deletes the specified Git repository from your account.

" }, + "DeleteContext":{ + "name":"DeleteContext", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteContextRequest"}, + "output":{"shape":"DeleteContextResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Deletes an context.

" + }, "DeleteDomain":{ "name":"DeleteDomain", "http":{ @@ -538,6 +697,18 @@ ], "documentation":"

Deletes an Amazon SageMaker experiment. All trials associated with the experiment must be deleted first. Use the ListTrials API to get a list of the trials associated with the experiment.

" }, + "DeleteFeatureGroup":{ + "name":"DeleteFeatureGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteFeatureGroupRequest"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Delete the FeatureGroup and any data that was written to the OnlineStore of the FeatureGroup. Data cannot be accessed from the OnlineStore immediately after DeleteFeatureGroup is called.

Data written into the OfflineStore will not be deleted. The AWS Glue database and tables that are automatically created for your OfflineStore are not deleted.

" + }, "DeleteFlowDefinition":{ "name":"DeleteFlowDefinition", "http":{ @@ -614,6 +785,24 @@ ], "documentation":"

Deletes a model package.

A model package is used to create Amazon SageMaker models or list on AWS Marketplace. Buyers can subscribe to model packages listed on AWS Marketplace to create models in Amazon SageMaker.

" }, + "DeleteModelPackageGroup":{ + "name":"DeleteModelPackageGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteModelPackageGroupInput"}, + "documentation":"

Deletes the specified model group.

" + }, + "DeleteModelPackageGroupPolicy":{ + "name":"DeleteModelPackageGroupPolicy", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteModelPackageGroupPolicyInput"}, + "documentation":"

Deletes a model group resource policy.

" + }, "DeleteMonitoringSchedule":{ "name":"DeleteMonitoringSchedule", "http":{ @@ -644,6 +833,28 @@ "input":{"shape":"DeleteNotebookInstanceLifecycleConfigInput"}, "documentation":"

Deletes a notebook instance lifecycle configuration.

" }, + "DeletePipeline":{ + "name":"DeletePipeline", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeletePipelineRequest"}, + "output":{"shape":"DeletePipelineResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Deletes a pipeline.

" + }, + "DeleteProject":{ + "name":"DeleteProject", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteProjectInput"}, + "documentation":"

Delete the specified project.

" + }, "DeleteTags":{ "name":"DeleteTags", "http":{ @@ -716,6 +927,19 @@ ], "documentation":"

Deletes an existing work team. This operation can't be undone.

" }, + "DescribeAction":{ + "name":"DescribeAction", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeActionRequest"}, + "output":{"shape":"DescribeActionResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Describes an action.

" + }, "DescribeAlgorithm":{ "name":"DescribeAlgorithm", "http":{ @@ -752,6 +976,19 @@ ], "documentation":"

Describes an AppImageConfig.

" }, + "DescribeArtifact":{ + "name":"DescribeArtifact", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeArtifactRequest"}, + "output":{"shape":"DescribeArtifactResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Describes an artifact.

" + }, "DescribeAutoMLJob":{ "name":"DescribeAutoMLJob", "http":{ @@ -788,6 +1025,19 @@ ], "documentation":"

Returns information about a model compilation job.

To create a model compilation job, use CreateCompilationJob. To get information about multiple model compilation jobs, use ListCompilationJobs.

" }, + "DescribeContext":{ + "name":"DescribeContext", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeContextRequest"}, + "output":{"shape":"DescribeContextResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Describes a context.

" + }, "DescribeDomain":{ "name":"DescribeDomain", "http":{ @@ -834,6 +1084,19 @@ ], "documentation":"

Provides a list of an experiment's properties.

" }, + "DescribeFeatureGroup":{ + "name":"DescribeFeatureGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeFeatureGroupRequest"}, + "output":{"shape":"DescribeFeatureGroupResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Use this operation to describe a FeatureGroup. The response includes information on the creation time, FeatureGroup name, the unique identifier for each FeatureGroup, and more.

" + }, "DescribeFlowDefinition":{ "name":"DescribeFlowDefinition", "http":{ @@ -932,6 +1195,16 @@ "output":{"shape":"DescribeModelPackageOutput"}, "documentation":"

Returns a description of the specified model package, which is used to create Amazon SageMaker models or list them on AWS Marketplace.

To create models in Amazon SageMaker, buyers can subscribe to model packages listed on AWS Marketplace.

" }, + "DescribeModelPackageGroup":{ + "name":"DescribeModelPackageGroup", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeModelPackageGroupInput"}, + "output":{"shape":"DescribeModelPackageGroupOutput"}, + "documentation":"

Gets a description for the specified model group.

" + }, "DescribeMonitoringSchedule":{ "name":"DescribeMonitoringSchedule", "http":{ @@ -965,6 +1238,45 @@ "output":{"shape":"DescribeNotebookInstanceLifecycleConfigOutput"}, "documentation":"

Returns a description of a notebook instance lifecycle configuration.

For information about notebook instance lifestyle configurations, see Step 2.1: (Optional) Customize a Notebook Instance.

" }, + "DescribePipeline":{ + "name":"DescribePipeline", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribePipelineRequest"}, + "output":{"shape":"DescribePipelineResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Describes the details of a pipeline.

" + }, + "DescribePipelineDefinitionForExecution":{ + "name":"DescribePipelineDefinitionForExecution", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribePipelineDefinitionForExecutionRequest"}, + "output":{"shape":"DescribePipelineDefinitionForExecutionResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Describes the details of an execution's pipeline definition.

" + }, + "DescribePipelineExecution":{ + "name":"DescribePipelineExecution", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribePipelineExecutionRequest"}, + "output":{"shape":"DescribePipelineExecutionResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Describes the details of a pipeline execution.

" + }, "DescribeProcessingJob":{ "name":"DescribeProcessingJob", "http":{ @@ -978,6 +1290,16 @@ ], "documentation":"

Returns a description of a processing job.

" }, + "DescribeProject":{ + "name":"DescribeProject", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeProjectInput"}, + "output":{"shape":"DescribeProjectOutput"}, + "documentation":"

Describes the details of a project.

" + }, "DescribeSubscribedWorkteam":{ "name":"DescribeSubscribedWorkteam", "http":{ @@ -1073,6 +1395,16 @@ "output":{"shape":"DescribeWorkteamResponse"}, "documentation":"

Gets information about a specific work team. You can see information such as the create date, the last updated date, membership information, and the work team's Amazon Resource Name (ARN).

" }, + "DisableSagemakerServicecatalogPortfolio":{ + "name":"DisableSagemakerServicecatalogPortfolio", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DisableSagemakerServicecatalogPortfolioInput"}, + "output":{"shape":"DisableSagemakerServicecatalogPortfolioOutput"}, + "documentation":"

Disables using Service Catalog in SageMaker. Service Catalog is used to create SageMaker projects.

" + }, "DisassociateTrialComponent":{ "name":"DisassociateTrialComponent", "http":{ @@ -1086,6 +1418,36 @@ ], "documentation":"

Disassociates a trial component from a trial. This doesn't effect other trials the component is associated with. Before you can delete a component, you must disassociate the component from all trials it is associated with. To associate a trial component with a trial, call the AssociateTrialComponent API.

To get a list of the trials a component is associated with, use the Search API. Specify ExperimentTrialComponent for the Resource parameter. The list appears in the response under Results.TrialComponent.Parents.

" }, + "EnableSagemakerServicecatalogPortfolio":{ + "name":"EnableSagemakerServicecatalogPortfolio", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"EnableSagemakerServicecatalogPortfolioInput"}, + "output":{"shape":"EnableSagemakerServicecatalogPortfolioOutput"}, + "documentation":"

Enables using Service Catalog in SageMaker. Service Catalog is used to create SageMaker projects.

" + }, + "GetModelPackageGroupPolicy":{ + "name":"GetModelPackageGroupPolicy", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetModelPackageGroupPolicyInput"}, + "output":{"shape":"GetModelPackageGroupPolicyOutput"}, + "documentation":"

Gets a resource policy that manages access for a model group. For information about resource policies, see Identity-based policies and resource-based policies in the AWS Identity and Access Management User Guide..

" + }, + "GetSagemakerServicecatalogPortfolioStatus":{ + "name":"GetSagemakerServicecatalogPortfolioStatus", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetSagemakerServicecatalogPortfolioStatusInput"}, + "output":{"shape":"GetSagemakerServicecatalogPortfolioStatusOutput"}, + "documentation":"

Gets the status of Service Catalog in SageMaker. Service Catalog is used to create SageMaker projects.

" + }, "GetSearchSuggestions":{ "name":"GetSearchSuggestions", "http":{ @@ -1096,6 +1458,19 @@ "output":{"shape":"GetSearchSuggestionsResponse"}, "documentation":"

An auto-complete API for the search functionality in the Amazon SageMaker console. It returns suggestions of possible matches for the property name to use in Search queries. Provides suggestions for HyperParameters, Tags, and Metrics.

" }, + "ListActions":{ + "name":"ListActions", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListActionsRequest"}, + "output":{"shape":"ListActionsResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Lists the actions in your account and their properties.

" + }, "ListAlgorithms":{ "name":"ListAlgorithms", "http":{ @@ -1126,6 +1501,32 @@ "output":{"shape":"ListAppsResponse"}, "documentation":"

Lists apps.

" }, + "ListArtifacts":{ + "name":"ListArtifacts", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListArtifactsRequest"}, + "output":{"shape":"ListArtifactsResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Lists the artifacts in your account and their properties.

" + }, + "ListAssociations":{ + "name":"ListAssociations", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListAssociationsRequest"}, + "output":{"shape":"ListAssociationsResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Lists the associations in your account and their properties.

" + }, "ListAutoMLJobs":{ "name":"ListAutoMLJobs", "http":{ @@ -1169,6 +1570,19 @@ "output":{"shape":"ListCompilationJobsResponse"}, "documentation":"

Lists model compilation jobs that satisfy various filters.

To create a model compilation job, use CreateCompilationJob. To get information about a particular model compilation job you have created, use DescribeCompilationJob.

" }, + "ListContexts":{ + "name":"ListContexts", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListContextsRequest"}, + "output":{"shape":"ListContextsResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Lists the contexts in your account and their properties.

" + }, "ListDomains":{ "name":"ListDomains", "http":{ @@ -1209,6 +1623,16 @@ "output":{"shape":"ListExperimentsResponse"}, "documentation":"

Lists all the experiments in your account. The list can be filtered to show only experiments that were created in a specific time range. The list can be sorted by experiment name or creation time.

" }, + "ListFeatureGroups":{ + "name":"ListFeatureGroups", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListFeatureGroupsRequest"}, + "output":{"shape":"ListFeatureGroupsResponse"}, + "documentation":"

List FeatureGroups based on given filter and order.

" + }, "ListFlowDefinitions":{ "name":"ListFlowDefinitions", "http":{ @@ -1285,13 +1709,23 @@ ], "documentation":"

Gets a list of labeling jobs assigned to a specified work team.

" }, - "ListModelPackages":{ - "name":"ListModelPackages", + "ListModelPackageGroups":{ + "name":"ListModelPackageGroups", "http":{ "method":"POST", "requestUri":"/" }, - "input":{"shape":"ListModelPackagesInput"}, + "input":{"shape":"ListModelPackageGroupsInput"}, + "output":{"shape":"ListModelPackageGroupsOutput"}, + "documentation":"

Gets a list of the model groups in your AWS account.

" + }, + "ListModelPackages":{ + "name":"ListModelPackages", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListModelPackagesInput"}, "output":{"shape":"ListModelPackagesOutput"}, "documentation":"

Lists the model packages that have been created.

" }, @@ -1345,6 +1779,55 @@ "output":{"shape":"ListNotebookInstancesOutput"}, "documentation":"

Returns a list of the Amazon SageMaker notebook instances in the requester's account in an AWS Region.

" }, + "ListPipelineExecutionSteps":{ + "name":"ListPipelineExecutionSteps", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListPipelineExecutionStepsRequest"}, + "output":{"shape":"ListPipelineExecutionStepsResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Gets a list of PipeLineExecutionStep objects.

" + }, + "ListPipelineExecutions":{ + "name":"ListPipelineExecutions", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListPipelineExecutionsRequest"}, + "output":{"shape":"ListPipelineExecutionsResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Gets a list of the pipeline executions.

" + }, + "ListPipelineParametersForExecution":{ + "name":"ListPipelineParametersForExecution", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListPipelineParametersForExecutionRequest"}, + "output":{"shape":"ListPipelineParametersForExecutionResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Gets a list of parameters for a pipeline execution.

" + }, + "ListPipelines":{ + "name":"ListPipelines", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListPipelinesRequest"}, + "output":{"shape":"ListPipelinesResponse"}, + "documentation":"

Gets a list of pipelines.

" + }, "ListProcessingJobs":{ "name":"ListProcessingJobs", "http":{ @@ -1355,6 +1838,16 @@ "output":{"shape":"ListProcessingJobsResponse"}, "documentation":"

Lists processing jobs that satisfy various filters.

" }, + "ListProjects":{ + "name":"ListProjects", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListProjectsInput"}, + "output":{"shape":"ListProjectsOutput"}, + "documentation":"

Gets a list of the projects in an AWS account.

" + }, "ListSubscribedWorkteams":{ "name":"ListSubscribedWorkteams", "http":{ @@ -1464,6 +1957,16 @@ "output":{"shape":"ListWorkteamsResponse"}, "documentation":"

Gets a list of private work teams that you have defined in a region. The list may be empty if no work team satisfies the filter specified in the NameContains parameter.

" }, + "PutModelPackageGroupPolicy":{ + "name":"PutModelPackageGroupPolicy", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"PutModelPackageGroupPolicyInput"}, + "output":{"shape":"PutModelPackageGroupPolicyOutput"}, + "documentation":"

Adds a resouce policy to control access to a model group. For information about resoure policies, see Identity-based policies and resource-based policies in the AWS Identity and Access Management User Guide..

" + }, "RenderUiTemplate":{ "name":"RenderUiTemplate", "http":{ @@ -1511,6 +2014,20 @@ ], "documentation":"

Launches an ML compute instance with the latest version of the libraries and attaches your ML storage volume. After configuring the notebook instance, Amazon SageMaker sets the notebook instance status to InService. A notebook instance's status must be InService before you can connect to your Jupyter notebook.

" }, + "StartPipelineExecution":{ + "name":"StartPipelineExecution", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"StartPipelineExecutionRequest"}, + "output":{"shape":"StartPipelineExecutionResponse"}, + "errors":[ + {"shape":"ResourceNotFound"}, + {"shape":"ResourceLimitExceeded"} + ], + "documentation":"

Starts a pipeline execution.

" + }, "StopAutoMLJob":{ "name":"StopAutoMLJob", "http":{ @@ -1580,6 +2097,19 @@ "input":{"shape":"StopNotebookInstanceInput"}, "documentation":"

Terminates the ML compute instance. Before terminating the instance, Amazon SageMaker disconnects the ML storage volume from it. Amazon SageMaker preserves the ML storage volume. Amazon SageMaker stops charging you for the ML compute instance when you call StopNotebookInstance.

To access data on the ML storage volume for a notebook instance that has been terminated, call the StartNotebookInstance API. StartNotebookInstance launches another ML compute instance, configures it, and attaches the preserved ML storage volume so you can continue your work.

" }, + "StopPipelineExecution":{ + "name":"StopPipelineExecution", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"StopPipelineExecutionRequest"}, + "output":{"shape":"StopPipelineExecutionResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Stops a pipeline execution.

" + }, "StopProcessingJob":{ "name":"StopProcessingJob", "http":{ @@ -1616,6 +2146,20 @@ ], "documentation":"

Stops a transform job.

When Amazon SageMaker receives a StopTransformJob request, the status of the job changes to Stopping. After Amazon SageMaker stops the job, the status is set to Stopped. When you stop a transform job before it is completed, Amazon SageMaker doesn't store the job's output in Amazon S3.

" }, + "UpdateAction":{ + "name":"UpdateAction", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateActionRequest"}, + "output":{"shape":"UpdateActionResponse"}, + "errors":[ + {"shape":"ConflictException"}, + {"shape":"ResourceNotFound"} + ], + "documentation":"

Updates an action.

" + }, "UpdateAppImageConfig":{ "name":"UpdateAppImageConfig", "http":{ @@ -1629,6 +2173,20 @@ ], "documentation":"

Updates the properties of an AppImageConfig.

" }, + "UpdateArtifact":{ + "name":"UpdateArtifact", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateArtifactRequest"}, + "output":{"shape":"UpdateArtifactResponse"}, + "errors":[ + {"shape":"ConflictException"}, + {"shape":"ResourceNotFound"} + ], + "documentation":"

Updates an artifact.

" + }, "UpdateCodeRepository":{ "name":"UpdateCodeRepository", "http":{ @@ -1639,6 +2197,20 @@ "output":{"shape":"UpdateCodeRepositoryOutput"}, "documentation":"

Updates the specified Git repository with the specified values.

" }, + "UpdateContext":{ + "name":"UpdateContext", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateContextRequest"}, + "output":{"shape":"UpdateContextResponse"}, + "errors":[ + {"shape":"ConflictException"}, + {"shape":"ResourceNotFound"} + ], + "documentation":"

Updates a context.

" + }, "UpdateDomain":{ "name":"UpdateDomain", "http":{ @@ -1708,6 +2280,16 @@ ], "documentation":"

Updates the properties of a SageMaker image. To change the image's tags, use the AddTags and DeleteTags APIs.

" }, + "UpdateModelPackage":{ + "name":"UpdateModelPackage", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateModelPackageInput"}, + "output":{"shape":"UpdateModelPackageOutput"}, + "documentation":"

Updates a versioned model.

" + }, "UpdateMonitoringSchedule":{ "name":"UpdateMonitoringSchedule", "http":{ @@ -1748,6 +2330,32 @@ ], "documentation":"

Updates a notebook instance lifecycle configuration created with the CreateNotebookInstanceLifecycleConfig API.

" }, + "UpdatePipeline":{ + "name":"UpdatePipeline", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdatePipelineRequest"}, + "output":{"shape":"UpdatePipelineResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Updates a pipeline.

" + }, + "UpdatePipelineExecution":{ + "name":"UpdatePipelineExecution", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdatePipelineExecutionRequest"}, + "output":{"shape":"UpdatePipelineExecutionResponse"}, + "errors":[ + {"shape":"ResourceNotFound"} + ], + "documentation":"

Updates a pipeline execution.

" + }, "UpdateTrial":{ "name":"UpdateTrial", "http":{ @@ -1825,6 +2433,113 @@ "type":"string", "pattern":"^\\d+$" }, + "ActionArn":{ + "type":"string", + "max":256, + "pattern":"arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:action/.*" + }, + "ActionSource":{ + "type":"structure", + "required":["SourceUri"], + "members":{ + "SourceUri":{ + "shape":"String2048", + "documentation":"

The URI of the source.

" + }, + "SourceType":{ + "shape":"String256", + "documentation":"

The type of the source.

" + }, + "SourceId":{ + "shape":"String256", + "documentation":"

The ID of the source.

" + } + }, + "documentation":"

A structure describing the source of an action.

" + }, + "ActionStatus":{ + "type":"string", + "enum":[ + "Unknown", + "InProgress", + "Completed", + "Failed", + "Stopping", + "Stopped" + ] + }, + "ActionSummaries":{ + "type":"list", + "member":{"shape":"ActionSummary"} + }, + "ActionSummary":{ + "type":"structure", + "members":{ + "ActionArn":{ + "shape":"ActionArn", + "documentation":"

The Amazon Resource Name (ARN) of the action.

" + }, + "ActionName":{ + "shape":"ExperimentEntityName", + "documentation":"

The name of the action.

" + }, + "Source":{ + "shape":"ActionSource", + "documentation":"

The source of the action.

" + }, + "ActionType":{ + "shape":"String64", + "documentation":"

The type of the action.

" + }, + "Status":{ + "shape":"ActionStatus", + "documentation":"

The status of the action.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

When the action was created.

" + }, + "LastModifiedTime":{ + "shape":"Timestamp", + "documentation":"

When the action was last modified.

" + } + }, + "documentation":"

Lists the properties of an action. An action represents an action or activity. Some examples are a workflow step and a model deployment. Generally, an action involves at least one input artifact or output artifact.

" + }, + "AddAssociationRequest":{ + "type":"structure", + "required":[ + "SourceArn", + "DestinationArn" + ], + "members":{ + "SourceArn":{ + "shape":"AssociationEntityArn", + "documentation":"

The ARN of the source.

" + }, + "DestinationArn":{ + "shape":"AssociationEntityArn", + "documentation":"

The Amazon Resource Name (ARN) of the destination.

" + }, + "AssociationType":{ + "shape":"AssociationEdgeType", + "documentation":"

The type of association. The following are suggested uses for each type. Amazon SageMaker places no restrictions on their use.

  • ContributedTo - The source contributed to the destination or had a part in enabling the destination. For example, the training data contributed to the training job.

  • AssociatedWith - The source is connected to the destination. For example, an approval workflow is associated with a model deployment.

  • DerivedFrom - The destination is a modification of the source. For example, a digest output of a channel input for a processing job is derived from the original inputs.

  • Produced - The source generated the destination. For example, a training job produced a model artifact.

" + } + } + }, + "AddAssociationResponse":{ + "type":"structure", + "members":{ + "SourceArn":{ + "shape":"AssociationEntityArn", + "documentation":"

The ARN of the source.

" + }, + "DestinationArn":{ + "shape":"AssociationEntityArn", + "documentation":"

The Amazon Resource Name (ARN) of the destination.

" + } + } + }, "AddTagsInput":{ "type":"structure", "required":[ @@ -1838,7 +2553,7 @@ }, "Tags":{ "shape":"TagList", - "documentation":"

An array of Tag objects. Each tag is a key-value pair. Only the key parameter is required. If you don't specify a value, Amazon SageMaker sets the value to an empty string.

" + "documentation":"

An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging AWS Resources.

" } } }, @@ -1856,6 +2571,28 @@ "member":{"shape":"CodeRepositoryNameOrUrl"}, "max":3 }, + "Alarm":{ + "type":"structure", + "members":{ + "AlarmName":{ + "shape":"AlarmName", + "documentation":"

" + } + }, + "documentation":"

This API is not supported.

" + }, + "AlarmList":{ + "type":"list", + "member":{"shape":"Alarm"}, + "max":10, + "min":1 + }, + "AlarmName":{ + "type":"string", + "max":255, + "min":1, + "pattern":"^(?!\\s*$).+" + }, "AlgorithmArn":{ "type":"string", "max":2048, @@ -2117,7 +2854,7 @@ "AppImageConfigName":{ "type":"string", "max":63, - "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*" + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}" }, "AppImageConfigSortKey":{ "type":"string", @@ -2168,10 +2905,11 @@ "type":"list", "member":{"shape":"AppDetails"} }, + "AppManaged":{"type":"boolean"}, "AppName":{ "type":"string", "max":63, - "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*" + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}" }, "AppNetworkAccessType":{ "type":"string", @@ -2221,12 +2959,106 @@ "TensorBoard" ] }, + "ApprovalDescription":{ + "type":"string", + "max":1024, + "pattern":".*" + }, "ArnOrName":{ "type":"string", "max":170, "min":1, "pattern":"(arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:[a-z\\-]*\\/)?([a-zA-Z0-9]([a-zA-Z0-9-]){0,62})(?The URI of the source.

" + }, + "SourceTypes":{ + "shape":"ArtifactSourceTypes", + "documentation":"

A list of source types.

" + } + }, + "documentation":"

A structure describing the source of an artifact.

" + }, + "ArtifactSourceIdType":{ + "type":"string", + "enum":[ + "MD5Hash", + "S3ETag", + "S3Version", + "Custom" + ] + }, + "ArtifactSourceType":{ + "type":"structure", + "required":[ + "SourceIdType", + "Value" + ], + "members":{ + "SourceIdType":{ + "shape":"ArtifactSourceIdType", + "documentation":"

The type of ID.

" + }, + "Value":{ + "shape":"String256", + "documentation":"

The ID.

" + } + }, + "documentation":"

The ID and ID type of an artifact source.

" + }, + "ArtifactSourceTypes":{ + "type":"list", + "member":{"shape":"ArtifactSourceType"} + }, + "ArtifactSummaries":{ + "type":"list", + "member":{"shape":"ArtifactSummary"} + }, + "ArtifactSummary":{ + "type":"structure", + "members":{ + "ArtifactArn":{ + "shape":"ArtifactArn", + "documentation":"

The Amazon Resource Name (ARN) of the artifact.

" + }, + "ArtifactName":{ + "shape":"ExperimentEntityName", + "documentation":"

The name of the artifact.

" + }, + "Source":{ + "shape":"ArtifactSource", + "documentation":"

The source of the artifact.

" + }, + "ArtifactType":{ + "shape":"String256", + "documentation":"

The type of the artifact.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

When the artifact was created.

" + }, + "LastModifiedTime":{ + "shape":"Timestamp", + "documentation":"

When the artifact was last modified.

" + } + }, + "documentation":"

Lists a summary of the properties of an artifact. An artifact represents a URI addressable object or data. Some examples are a dataset and a model.

" + }, "AssemblyType":{ "type":"string", "enum":[ @@ -2264,25 +3096,157 @@ } } }, - "AttributeName":{ + "AssociationEdgeType":{ + "type":"string", + "enum":[ + "ContributedTo", + "AssociatedWith", + "DerivedFrom", + "Produced" + ] + }, + "AssociationEntityArn":{ "type":"string", "max":256, - "min":1, - "pattern":".+" + "pattern":"arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:(experiment|experiment-trial-component|artifact|action|context)/.*" }, - "AttributeNames":{ + "AssociationSummaries":{ "type":"list", - "member":{"shape":"AttributeName"}, - "max":16 + "member":{"shape":"AssociationSummary"} }, - "AuthMode":{ - "type":"string", - "enum":[ - "SSO", - "IAM" - ] - }, - "AutoMLCandidate":{ + "AssociationSummary":{ + "type":"structure", + "members":{ + "SourceArn":{ + "shape":"AssociationEntityArn", + "documentation":"

The ARN of the source.

" + }, + "DestinationArn":{ + "shape":"AssociationEntityArn", + "documentation":"

The Amazon Resource Name (ARN) of the destination.

" + }, + "SourceType":{ + "shape":"String256", + "documentation":"

The source type.

" + }, + "DestinationType":{ + "shape":"String256", + "documentation":"

The destination type.

" + }, + "AssociationType":{ + "shape":"AssociationEdgeType", + "documentation":"

The type of the association.

" + }, + "SourceName":{ + "shape":"ExperimentEntityName", + "documentation":"

The name of the source.

" + }, + "DestinationName":{ + "shape":"ExperimentEntityName", + "documentation":"

The name of the destination.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

When the association was created.

" + }, + "CreatedBy":{"shape":"UserContext"} + }, + "documentation":"

Lists a summary of the properties of an association. An association is an entity that links other lineage or experiment entities. An example would be an association between a training job and a model.

" + }, + "AthenaCatalog":{ + "type":"string", + "documentation":"

The name of the data catalog used in Athena query execution.

", + "max":256, + "min":1, + "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*" + }, + "AthenaDatabase":{ + "type":"string", + "documentation":"

The name of the database used in the Athena query execution.

", + "max":255, + "min":1, + "pattern":".*" + }, + "AthenaDatasetDefinition":{ + "type":"structure", + "required":[ + "Catalog", + "Database", + "QueryString", + "OutputS3Uri", + "OutputFormat" + ], + "members":{ + "Catalog":{"shape":"AthenaCatalog"}, + "Database":{"shape":"AthenaDatabase"}, + "QueryString":{"shape":"AthenaQueryString"}, + "WorkGroup":{"shape":"AthenaWorkGroup"}, + "OutputS3Uri":{ + "shape":"S3Uri", + "documentation":"

The location in Amazon S3 where Athena query results are stored.

" + }, + "KmsKeyId":{ + "shape":"KmsKeyId", + "documentation":"

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt data generated from an Athena query execution.

" + }, + "OutputFormat":{"shape":"AthenaResultFormat"}, + "OutputCompression":{"shape":"AthenaResultCompressionType"} + }, + "documentation":"

Configuration for Athena Dataset Definition input.

" + }, + "AthenaQueryString":{ + "type":"string", + "documentation":"

The SQL query statements, to be executed.

", + "max":4096, + "min":1, + "pattern":"[\\s\\S]+" + }, + "AthenaResultCompressionType":{ + "type":"string", + "documentation":"

The compression used for Athena query results.

", + "enum":[ + "GZIP", + "SNAPPY", + "ZLIB" + ] + }, + "AthenaResultFormat":{ + "type":"string", + "documentation":"

The data storage format for Athena query results.

", + "enum":[ + "PARQUET", + "ORC", + "AVRO", + "JSON", + "TEXTFILE" + ] + }, + "AthenaWorkGroup":{ + "type":"string", + "documentation":"

The name of the workgroup in which the Athena query is being started.

", + "max":128, + "min":1, + "pattern":"[a-zA-Z0-9._-]+" + }, + "AttributeName":{ + "type":"string", + "max":256, + "min":1, + "pattern":".+" + }, + "AttributeNames":{ + "type":"list", + "member":{"shape":"AttributeName"}, + "max":16 + }, + "AuthMode":{ + "type":"string", + "enum":[ + "SSO", + "IAM" + ] + }, + "AutoMLCandidate":{ "type":"structure", "required":[ "CandidateName", @@ -2486,7 +3450,7 @@ "type":"string", "max":32, "min":1, - "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*" + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,31}" }, "AutoMLJobObjective":{ "type":"structure", @@ -2674,6 +3638,16 @@ "Descending" ] }, + "AutoRollbackConfig":{ + "type":"structure", + "members":{ + "Alarms":{ + "shape":"AlarmList", + "documentation":"

" + } + }, + "documentation":"

Currently, the AutoRollbackConfig API is not supported.

" + }, "AwsManagedHumanLoopRequestSource":{ "type":"string", "enum":[ @@ -2688,10 +3662,43 @@ "SingleRecord" ] }, + "Bias":{ + "type":"structure", + "members":{ + "Report":{ + "shape":"MetricsSource", + "documentation":"

The bias report for a model

" + } + }, + "documentation":"

Contains bias metrics for a model.

" + }, "BillableTimeInSeconds":{ "type":"integer", "min":1 }, + "BlockedReason":{ + "type":"string", + "max":1024 + }, + "BlueGreenUpdatePolicy":{ + "type":"structure", + "required":["TrafficRoutingConfiguration"], + "members":{ + "TrafficRoutingConfiguration":{ + "shape":"TrafficRoutingConfig", + "documentation":"

" + }, + "TerminationWaitInSeconds":{ + "shape":"TerminationWaitInSeconds", + "documentation":"

" + }, + "MaximumExecutionTimeoutInSeconds":{ + "shape":"MaximumExecutionTimeoutInSeconds", + "documentation":"

" + } + }, + "documentation":"

Currently, the BlueGreenUpdatePolicy API is not supported.

" + }, "Boolean":{"type":"boolean"}, "BooleanOperator":{ "type":"string", @@ -2706,6 +3713,16 @@ "min":1, "pattern":"[^ ~^:?*\\[]+" }, + "CacheHitResult":{ + "type":"structure", + "members":{ + "SourcePipelineExecutionArn":{ + "shape":"PipelineExecutionArn", + "documentation":"

The Amazon Resource Name (ARN) of the pipeline execution.

" + } + }, + "documentation":"

Details on the cache hit of a pipeline execution step.

" + }, "CandidateDefinitionNotebookLocation":{ "type":"string", "min":1 @@ -2756,6 +3773,35 @@ "type":"list", "member":{"shape":"AutoMLCandidateStep"} }, + "CapacitySize":{ + "type":"structure", + "required":[ + "Type", + "Value" + ], + "members":{ + "Type":{ + "shape":"CapacitySizeType", + "documentation":"

This API is not supported.

" + }, + "Value":{ + "shape":"CapacitySizeValue", + "documentation":"

" + } + }, + "documentation":"

Currently, the CapacitySize API is not supported.

" + }, + "CapacitySizeType":{ + "type":"string", + "enum":[ + "INSTANCE_COUNT", + "CAPACITY_PERCENT" + ] + }, + "CapacitySizeValue":{ + "type":"integer", + "min":1 + }, "CaptureContentTypeHeader":{ "type":"structure", "members":{ @@ -2801,6 +3847,12 @@ "Stopped" ] }, + "Catalog":{ + "type":"string", + "max":255, + "min":1, + "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*" + }, "CategoricalParameterRange":{ "type":"structure", "required":[ @@ -3223,6 +4275,23 @@ "type":"list", "member":{"shape":"CompressionType"} }, + "ConditionOutcome":{ + "type":"string", + "enum":[ + "True", + "False" + ] + }, + "ConditionStepMetadata":{ + "type":"structure", + "members":{ + "Outcome":{ + "shape":"ConditionOutcome", + "documentation":"

The outcome of the Condition step evaluation.

" + } + }, + "documentation":"

Metadata for a Condition step.

" + }, "ConfigKey":{ "type":"string", "max":256, @@ -3306,7 +4375,7 @@ "ContainerHostname":{ "type":"string", "max":63, - "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*" + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}" }, "ContainerImage":{ "type":"string", @@ -3332,6 +4401,11 @@ "member":{"shape":"ContentClassifier"}, "max":256 }, + "ContentDigest":{ + "type":"string", + "max":72, + "pattern":"^[Ss][Hh][Aa]256:[0-9a-fA-F]{64}$" + }, "ContentType":{ "type":"string", "max":256, @@ -3341,6 +4415,64 @@ "type":"list", "member":{"shape":"ContentType"} }, + "ContextArn":{ + "type":"string", + "max":256, + "pattern":"arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:context/.*" + }, + "ContextSource":{ + "type":"structure", + "required":["SourceUri"], + "members":{ + "SourceUri":{ + "shape":"String2048", + "documentation":"

The URI of the source.

" + }, + "SourceType":{ + "shape":"String256", + "documentation":"

The type of the source.

" + }, + "SourceId":{ + "shape":"String256", + "documentation":"

The ID of the source.

" + } + }, + "documentation":"

A structure describing the source of a context.

" + }, + "ContextSummaries":{ + "type":"list", + "member":{"shape":"ContextSummary"} + }, + "ContextSummary":{ + "type":"structure", + "members":{ + "ContextArn":{ + "shape":"ContextArn", + "documentation":"

The Amazon Resource Name (ARN) of the context.

" + }, + "ContextName":{ + "shape":"ExperimentEntityName", + "documentation":"

The name of the context.

" + }, + "Source":{ + "shape":"ContextSource", + "documentation":"

The source of the context.

" + }, + "ContextType":{ + "shape":"String256", + "documentation":"

The type of the context.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

When the context was created.

" + }, + "LastModifiedTime":{ + "shape":"Timestamp", + "documentation":"

When the context was last modified.

" + } + }, + "documentation":"

Lists a summary of the properties of a context. A context provides a logical grouping of other entities.

" + }, "ContinuousParameterRange":{ "type":"structure", "required":[ @@ -3392,6 +4524,54 @@ "max":20, "min":0 }, + "CreateActionRequest":{ + "type":"structure", + "required":[ + "ActionName", + "Source", + "ActionType" + ], + "members":{ + "ActionName":{ + "shape":"ExperimentEntityName", + "documentation":"

The name of the action. Must be unique to your account in an AWS Region.

" + }, + "Source":{ + "shape":"ActionSource", + "documentation":"

The source type, ID, and URI.

" + }, + "ActionType":{ + "shape":"String256", + "documentation":"

The action type.

" + }, + "Description":{ + "shape":"ExperimentDescription", + "documentation":"

The description of the action.

" + }, + "Status":{ + "shape":"ActionStatus", + "documentation":"

The status of the action.

" + }, + "Properties":{ + "shape":"LineageEntityParameters", + "documentation":"

A list of properties to add to the action.

" + }, + "MetadataProperties":{"shape":"MetadataProperties"}, + "Tags":{ + "shape":"TagList", + "documentation":"

A list of tags to apply to the action.

" + } + } + }, + "CreateActionResponse":{ + "type":"structure", + "members":{ + "ActionArn":{ + "shape":"ActionArn", + "documentation":"

The Amazon Resource Name (ARN) of the action.

" + } + } + }, "CreateAlgorithmInput":{ "type":"structure", "required":[ @@ -3422,6 +4602,10 @@ "CertifyForMarketplace":{ "shape":"CertifyForMarketplace", "documentation":"

Whether to certify the algorithm so that it can be listed in AWS Marketplace.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging AWS Resources.

" } } }, @@ -3506,6 +4690,45 @@ } } }, + "CreateArtifactRequest":{ + "type":"structure", + "required":[ + "Source", + "ArtifactType" + ], + "members":{ + "ArtifactName":{ + "shape":"ExperimentEntityName", + "documentation":"

The name of the artifact. Must be unique to your account in an AWS Region.

" + }, + "Source":{ + "shape":"ArtifactSource", + "documentation":"

The ID, ID type, and URI of the source.

" + }, + "ArtifactType":{ + "shape":"String256", + "documentation":"

The artifact type.

" + }, + "Properties":{ + "shape":"LineageEntityParameters", + "documentation":"

A list of properties to add to the artifact.

" + }, + "MetadataProperties":{"shape":"MetadataProperties"}, + "Tags":{ + "shape":"TagList", + "documentation":"

A list of tags to apply to the artifact.

" + } + } + }, + "CreateArtifactResponse":{ + "type":"structure", + "members":{ + "ArtifactArn":{ + "shape":"ArtifactArn", + "documentation":"

The Amazon Resource Name (ARN) of the artifact.

" + } + } + }, "CreateAutoMLJobRequest":{ "type":"structure", "required":[ @@ -3577,6 +4800,10 @@ "GitConfig":{ "shape":"GitConfig", "documentation":"

Specifies details about the repository, including the URL where the repository is located, the default branch, and credentials to use to access the repository.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging AWS Resources.

" } } }, @@ -3622,7 +4849,7 @@ }, "Tags":{ "shape":"TagList", - "documentation":"

An array of key-value pairs that you want to use to organize and track your AWS resource costs. For more information, see Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide.

" + "documentation":"

An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging AWS Resources.

" } } }, @@ -3636,6 +4863,49 @@ } } }, + "CreateContextRequest":{ + "type":"structure", + "required":[ + "ContextName", + "Source", + "ContextType" + ], + "members":{ + "ContextName":{ + "shape":"ExperimentEntityName", + "documentation":"

The name of the context. Must be unique to your account in an AWS Region.

" + }, + "Source":{ + "shape":"ContextSource", + "documentation":"

The source type, ID, and URI.

" + }, + "ContextType":{ + "shape":"String256", + "documentation":"

The context type.

" + }, + "Description":{ + "shape":"ExperimentDescription", + "documentation":"

The description of the context.

" + }, + "Properties":{ + "shape":"LineageEntityParameters", + "documentation":"

A list of properties to add to the context.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

A list of tags to apply to the context.

" + } + } + }, + "CreateContextResponse":{ + "type":"structure", + "members":{ + "ContextArn":{ + "shape":"ContextArn", + "documentation":"

The Amazon Resource Name (ARN) of the context.

" + } + } + }, "CreateDomainRequest":{ "type":"structure", "required":[ @@ -3717,7 +4987,7 @@ "DataCaptureConfig":{"shape":"DataCaptureConfig"}, "Tags":{ "shape":"TagList", - "documentation":"

A list of key-value pairs. For more information, see Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide.

" + "documentation":"

An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging AWS Resources.

" }, "KmsKeyId":{ "shape":"KmsKeyId", @@ -3752,7 +5022,7 @@ }, "Tags":{ "shape":"TagList", - "documentation":"

An array of key-value pairs. For more information, see Using Cost Allocation Tagsin the AWS Billing and Cost Management User Guide.

" + "documentation":"

An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging AWS Resources.

" } } }, @@ -3797,10 +5067,67 @@ } } }, - "CreateFlowDefinitionRequest":{ + "CreateFeatureGroupRequest":{ "type":"structure", "required":[ - "FlowDefinitionName", + "FeatureGroupName", + "RecordIdentifierFeatureName", + "EventTimeFeatureName", + "FeatureDefinitions" + ], + "members":{ + "FeatureGroupName":{ + "shape":"FeatureGroupName", + "documentation":"

The name of the FeatureGroup. The name must be unique within an AWS Region in an AWS account. The name:

  • Must start and end with an alphanumeric character.

  • Can only contain alphanumeric character and hyphens. Spaces are not allowed.

" + }, + "RecordIdentifierFeatureName":{ + "shape":"FeatureName", + "documentation":"

The name of the Feature whose value uniquely identifies a Record defined in the FeatureStore. Only the latest record per identifier value will be stored in the OnlineStore. RecordIdentifierFeatureName must be one of feature definitions' names.

You use the RecordIdentifierFeatureName to access data in a FeatureStore.

This name:

  • Must start and end with an alphanumeric character.

  • Can only contains alphanumeric characters, hyphens, underscores. Spaces are not allowed.

" + }, + "EventTimeFeatureName":{ + "shape":"FeatureName", + "documentation":"

The name of the feature that stores the EventTime of a Record in a FeatureGroup.

An EventTime is a point in time when a new event occurs that corresponds to the creation or update of a Record in a FeatureGroup. All Records in the FeatureGroup must have a corresponding EventTime.

An EventTime can be a String or Fractional.

  • Fractional: EventTime feature values must be a Unix timestamp in seconds.

  • String: EventTime feature values must be an ISO-8601 string in the format. The following formats are supported yyyy-MM-dd'T'HH:mm:ssZ and yyyy-MM-dd'T'HH:mm:ss.SSSZ where yyyy, MM, and dd represent the year, month, and day respectively and HH, mm, ss, and if applicable, SSS represent the hour, month, second and milliseconds respsectively. 'T' and Z are constants.

" + }, + "FeatureDefinitions":{ + "shape":"FeatureDefinitions", + "documentation":"

A list of Feature names and types. Name and Type is compulsory per Feature.

Valid feature FeatureTypes are Integral, Fractional and String.

FeatureNames cannot be any of the following: is_deleted, write_time, api_invocation_time

You can create up to 2,500 FeatureDefinitions per FeatureGroup.

" + }, + "OnlineStoreConfig":{ + "shape":"OnlineStoreConfig", + "documentation":"

You can turn the OnlineStore on or off by specifying True for the EnableOnlineStore flag in OnlineStoreConfig; the default value is False.

You can also include an AWS KMS key ID (KMSKeyId) for at-rest encryption of the OnlineStore.

" + }, + "OfflineStoreConfig":{ + "shape":"OfflineStoreConfig", + "documentation":"

Use this to configure an OfflineFeatureStore. This parameter allows you to specify:

  • The Amazon Simple Storage Service (Amazon S3) location of an OfflineStore.

  • A configuration for an AWS Glue or AWS Hive data cataolgue.

  • An KMS encryption key to encrypt the Amazon S3 location used for OfflineStore.

To learn more about this parameter, see OfflineStoreConfig.

" + }, + "RoleArn":{ + "shape":"RoleArn", + "documentation":"

The Amazon Resource Name (ARN) of the IAM execution role used to persist data into the OfflineStore if an OfflineStoreConfig is provided.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

A free-form description of a FeatureGroup.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

Tags used to identify Features in each FeatureGroup.

" + } + } + }, + "CreateFeatureGroupResponse":{ + "type":"structure", + "required":["FeatureGroupArn"], + "members":{ + "FeatureGroupArn":{ + "shape":"FeatureGroupArn", + "documentation":"

The Amazon Resource Name (ARN) of the FeatureGroup. This is a unique identifier for the feature group.

" + } + } + }, + "CreateFlowDefinitionRequest":{ + "type":"structure", + "required":[ + "FlowDefinitionName", "HumanLoopConfig", "OutputConfig", "RoleArn" @@ -3903,7 +5230,7 @@ }, "Tags":{ "shape":"TagList", - "documentation":"

An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for example, by purpose, owner, or environment. For more information, see AWS Tagging Strategies.

Tags that you specify for the tuning job are also added to all training jobs that the tuning job launches.

" + "documentation":"

An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging AWS Resources.

Tags that you specify for the tuning job are also added to all training jobs that the tuning job launches.

" } } }, @@ -4075,7 +5402,7 @@ }, "Tags":{ "shape":"TagList", - "documentation":"

An array of key-value pairs. For more information, see Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide.

" + "documentation":"

An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging AWS Resources.

" }, "VpcConfig":{ "shape":"VpcConfig", @@ -4097,12 +5424,44 @@ } } }, + "CreateModelPackageGroupInput":{ + "type":"structure", + "required":["ModelPackageGroupName"], + "members":{ + "ModelPackageGroupName":{ + "shape":"EntityName", + "documentation":"

The name of the model group.

" + }, + "ModelPackageGroupDescription":{ + "shape":"EntityDescription", + "documentation":"

A description for the model group.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

A list of key value pairs associated with the model group. For more information, see Tagging AWS resources in the AWS General Reference Guide.

" + } + } + }, + "CreateModelPackageGroupOutput":{ + "type":"structure", + "required":["ModelPackageGroupArn"], + "members":{ + "ModelPackageGroupArn":{ + "shape":"ModelPackageGroupArn", + "documentation":"

The Amazon Resource Name (ARN) of the model group.

" + } + } + }, "CreateModelPackageInput":{ "type":"structure", "members":{ "ModelPackageName":{ "shape":"EntityName", - "documentation":"

The name of the model package. The name must have 1 to 63 characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).

" + "documentation":"

The name of the model package. The name must have 1 to 63 characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).

This parameter is required for unversioned models. It is not applicable to versioned models.

" + }, + "ModelPackageGroupName":{ + "shape":"EntityName", + "documentation":"

The name of the model group that this model version belongs to.

This parameter is required for versioned models, and does not apply to unversioned models.

" }, "ModelPackageDescription":{ "shape":"EntityDescription", @@ -4122,7 +5481,25 @@ }, "CertifyForMarketplace":{ "shape":"CertifyForMarketplace", - "documentation":"

Whether to certify the model package for listing on AWS Marketplace.

" + "documentation":"

Whether to certify the model package for listing on AWS Marketplace.

This parameter is optional for unversioned models, and does not apply to versioned models.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

A list of key value pairs associated with the model. For more information, see Tagging AWS resources in the AWS General Reference Guide.

" + }, + "ModelApprovalStatus":{ + "shape":"ModelApprovalStatus", + "documentation":"

Whether the model is approved for deployment.

This parameter is optional for versioned models, and does not apply to unversioned models.

For versioned models, the value of this parameter must be set to Approved to deploy the model.

" + }, + "MetadataProperties":{"shape":"MetadataProperties"}, + "ModelMetrics":{ + "shape":"ModelMetrics", + "documentation":"

A structure that contains model metrics reports.

" + }, + "ClientToken":{ + "shape":"ClientToken", + "documentation":"

A unique token that guarantees that the call to this API is idempotent.

", + "idempotencyToken":true } } }, @@ -4201,7 +5578,7 @@ }, "Tags":{ "shape":"TagList", - "documentation":"

A list of tags to associate with the notebook instance. You can add tags later by using the CreateTags API.

" + "documentation":"

An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging AWS Resources.

" }, "LifecycleConfigName":{ "shape":"NotebookInstanceLifecycleConfigName", @@ -4269,6 +5646,55 @@ } } }, + "CreatePipelineRequest":{ + "type":"structure", + "required":[ + "PipelineName", + "PipelineDefinition", + "ClientRequestToken", + "RoleArn" + ], + "members":{ + "PipelineName":{ + "shape":"PipelineName", + "documentation":"

The name of the pipeline.

" + }, + "PipelineDisplayName":{ + "shape":"PipelineName", + "documentation":"

The display name of the pipeline.

" + }, + "PipelineDefinition":{ + "shape":"PipelineDefinition", + "documentation":"

The JSON pipeline definition of the pipeline.

" + }, + "PipelineDescription":{ + "shape":"PipelineDescription", + "documentation":"

A description of the pipeline.

" + }, + "ClientRequestToken":{ + "shape":"IdempotencyToken", + "documentation":"

A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time.

", + "idempotencyToken":true + }, + "RoleArn":{ + "shape":"RoleArn", + "documentation":"

The Amazon Resource Name (ARN) of the role used by the pipeline to access and create resources.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

A list of tags to apply to the created pipeline.

" + } + } + }, + "CreatePipelineResponse":{ + "type":"structure", + "members":{ + "PipelineArn":{ + "shape":"PipelineArn", + "documentation":"

The Amazon Resource Name (ARN) of the created pipeline.

" + } + } + }, "CreatePresignedDomainUrlRequest":{ "type":"structure", "required":[ @@ -4333,7 +5759,7 @@ "members":{ "ProcessingInputs":{ "shape":"ProcessingInputs", - "documentation":"

For each input, data is downloaded from S3 into the processing container before the processing job begins running if \"S3InputMode\" is set to File.

" + "documentation":"

List of input configurations for the processing job.

" }, "ProcessingOutputConfig":{ "shape":"ProcessingOutputConfig", @@ -4384,6 +5810,48 @@ } } }, + "CreateProjectInput":{ + "type":"structure", + "required":[ + "ProjectName", + "ServiceCatalogProvisioningDetails" + ], + "members":{ + "ProjectName":{ + "shape":"ProjectEntityName", + "documentation":"

The name of the project.

" + }, + "ProjectDescription":{ + "shape":"EntityDescription", + "documentation":"

A description for the project.

" + }, + "ServiceCatalogProvisioningDetails":{ + "shape":"ServiceCatalogProvisioningDetails", + "documentation":"

The product ID and provisioning artifact ID to provision a service catalog. For information, see What is AWS Service Catalog.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

An array of key-value pairs that you want to use to organize and track your AWS resource costs. For more information, see Tagging AWS resources in the AWS General Reference Guide.

" + } + } + }, + "CreateProjectOutput":{ + "type":"structure", + "required":[ + "ProjectArn", + "ProjectId" + ], + "members":{ + "ProjectArn":{ + "shape":"ProjectArn", + "documentation":"

The Amazon Resource Name (ARN) of the project.

" + }, + "ProjectId":{ + "shape":"ProjectId", + "documentation":"

The ID of the new project.

" + } + } + }, "CreateTrainingJobRequest":{ "type":"structure", "required":[ @@ -4433,7 +5901,7 @@ }, "Tags":{ "shape":"TagList", - "documentation":"

An array of key-value pairs. For more information, see Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide.

" + "documentation":"

An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging AWS Resources.

" }, "EnableNetworkIsolation":{ "shape":"Boolean", @@ -4577,6 +6045,7 @@ "shape":"TrialComponentArtifacts", "documentation":"

The output artifacts for the component. Examples of output artifacts are metrics, snapshots, logs, and images.

" }, + "MetadataProperties":{"shape":"MetadataProperties"}, "Tags":{ "shape":"TagList", "documentation":"

A list of tags to associate with the component. You can use Search API to search on the tags.

" @@ -4611,6 +6080,7 @@ "shape":"ExperimentEntityName", "documentation":"

The name of the experiment to associate the trial with.

" }, + "MetadataProperties":{"shape":"MetadataProperties"}, "Tags":{ "shape":"TagList", "documentation":"

A list of tags to associate with the trial. You can use Search API to search on the tags.

" @@ -4853,6 +6323,36 @@ }, "documentation":"

" }, + "DataCatalogConfig":{ + "type":"structure", + "required":[ + "TableName", + "Catalog", + "Database" + ], + "members":{ + "TableName":{ + "shape":"TableName", + "documentation":"

The name of the Glue table.

" + }, + "Catalog":{ + "shape":"Catalog", + "documentation":"

The name of the Glue table catalog.

" + }, + "Database":{ + "shape":"Database", + "documentation":"

The name of the Glue table database.

" + } + }, + "documentation":"

The meta data of the Glue table which serves as data catalog for the OfflineStore.

" + }, + "DataDistributionType":{ + "type":"string", + "enum":[ + "FullyReplicated", + "ShardedByS3Key" + ] + }, "DataExplorationNotebookLocation":{ "type":"string", "min":1 @@ -4895,6 +6395,32 @@ }, "documentation":"

Describes the location of the channel data.

" }, + "Database":{ + "type":"string", + "max":255, + "min":1, + "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*" + }, + "DatasetDefinition":{ + "type":"structure", + "members":{ + "AthenaDatasetDefinition":{"shape":"AthenaDatasetDefinition"}, + "RedshiftDatasetDefinition":{"shape":"RedshiftDatasetDefinition"}, + "LocalPath":{ + "shape":"ProcessingLocalPath", + "documentation":"

The local path where you want Amazon SageMaker to download the Dataset Definition inputs to run a processing job. LocalPath is an absolute path to the input data. This is a required parameter when AppManaged is False (default).

" + }, + "DataDistributionType":{ + "shape":"DataDistributionType", + "documentation":"

Whether the generated dataset is FullyReplicated or ShardedByS3Key (default).

" + }, + "InputMode":{ + "shape":"InputMode", + "documentation":"

Whether to use File or Pipe input mode. In File (default) mode, Amazon SageMaker copies the data from the input source onto the local Amazon Elastic Block Store (Amazon EBS) volumes before starting your training algorithm. This is the most commonly used input mode. In Pipe mode, Amazon SageMaker streams input data from the source directly to your algorithm without using the EBS volume.

" + } + }, + "documentation":"

Configuration for Dataset Definition inputs. The Dataset Definition input must specify exactly one of either AthenaDatasetDefinition or RedshiftDatasetDefinition types.

" + }, "DebugHookConfig":{ "type":"structure", "required":["S3OutputPath"], @@ -5004,6 +6530,25 @@ "max":65535, "min":0 }, + "DeleteActionRequest":{ + "type":"structure", + "required":["ActionName"], + "members":{ + "ActionName":{ + "shape":"ExperimentEntityName", + "documentation":"

The name of the action to delete.

" + } + } + }, + "DeleteActionResponse":{ + "type":"structure", + "members":{ + "ActionArn":{ + "shape":"ActionArn", + "documentation":"

The Amazon Resource Name (ARN) of the action.

" + } + } + }, "DeleteAlgorithmInput":{ "type":"structure", "required":["AlgorithmName"], @@ -5051,6 +6596,58 @@ } } }, + "DeleteArtifactRequest":{ + "type":"structure", + "members":{ + "ArtifactArn":{ + "shape":"ArtifactArn", + "documentation":"

The Amazon Resource Name (ARN) of the artifact to delete.

" + }, + "Source":{ + "shape":"ArtifactSource", + "documentation":"

The URI of the source.

" + } + } + }, + "DeleteArtifactResponse":{ + "type":"structure", + "members":{ + "ArtifactArn":{ + "shape":"ArtifactArn", + "documentation":"

The Amazon Resource Name (ARN) of the artifact.

" + } + } + }, + "DeleteAssociationRequest":{ + "type":"structure", + "required":[ + "SourceArn", + "DestinationArn" + ], + "members":{ + "SourceArn":{ + "shape":"AssociationEntityArn", + "documentation":"

The ARN of the source.

" + }, + "DestinationArn":{ + "shape":"AssociationEntityArn", + "documentation":"

The Amazon Resource Name (ARN) of the destination.

" + } + } + }, + "DeleteAssociationResponse":{ + "type":"structure", + "members":{ + "SourceArn":{ + "shape":"AssociationEntityArn", + "documentation":"

The ARN of the source.

" + }, + "DestinationArn":{ + "shape":"AssociationEntityArn", + "documentation":"

The Amazon Resource Name (ARN) of the destination.

" + } + } + }, "DeleteCodeRepositoryInput":{ "type":"structure", "required":["CodeRepositoryName"], @@ -5061,6 +6658,25 @@ } } }, + "DeleteContextRequest":{ + "type":"structure", + "required":["ContextName"], + "members":{ + "ContextName":{ + "shape":"ExperimentEntityName", + "documentation":"

The name of the context to delete.

" + } + } + }, + "DeleteContextResponse":{ + "type":"structure", + "members":{ + "ContextArn":{ + "shape":"ContextArn", + "documentation":"

The Amazon Resource Name (ARN) of the context.

" + } + } + }, "DeleteDomainRequest":{ "type":"structure", "required":["DomainId"], @@ -5114,6 +6730,16 @@ } } }, + "DeleteFeatureGroupRequest":{ + "type":"structure", + "required":["FeatureGroupName"], + "members":{ + "FeatureGroupName":{ + "shape":"FeatureGroupName", + "documentation":"

The name of the FeatureGroup you want to delete. The name must be unique within an AWS Region in an AWS account.

" + } + } + }, "DeleteFlowDefinitionRequest":{ "type":"structure", "required":["FlowDefinitionName"], @@ -5191,6 +6817,26 @@ } } }, + "DeleteModelPackageGroupInput":{ + "type":"structure", + "required":["ModelPackageGroupName"], + "members":{ + "ModelPackageGroupName":{ + "shape":"ArnOrName", + "documentation":"

The name of the model group to delete.

" + } + } + }, + "DeleteModelPackageGroupPolicyInput":{ + "type":"structure", + "required":["ModelPackageGroupName"], + "members":{ + "ModelPackageGroupName":{ + "shape":"EntityName", + "documentation":"

The name of the model group for which to delete the policy.

" + } + } + }, "DeleteModelPackageInput":{ "type":"structure", "required":["ModelPackageName"], @@ -5231,6 +6877,43 @@ } } }, + "DeletePipelineRequest":{ + "type":"structure", + "required":[ + "PipelineName", + "ClientRequestToken" + ], + "members":{ + "PipelineName":{ + "shape":"PipelineName", + "documentation":"

The name of the pipeline to delete.

" + }, + "ClientRequestToken":{ + "shape":"IdempotencyToken", + "documentation":"

A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time.

", + "idempotencyToken":true + } + } + }, + "DeletePipelineResponse":{ + "type":"structure", + "members":{ + "PipelineArn":{ + "shape":"PipelineArn", + "documentation":"

The Amazon Resource Name (ARN) of the pipeline to delete.

" + } + } + }, + "DeleteProjectInput":{ + "type":"structure", + "required":["ProjectName"], + "members":{ + "ProjectName":{ + "shape":"ProjectEntityName", + "documentation":"

The name of the project to delete.

" + } + } + }, "DeleteTagsInput":{ "type":"structure", "required":[ @@ -5365,6 +7048,75 @@ "type":"list", "member":{"shape":"DeployedImage"} }, + "DeploymentConfig":{ + "type":"structure", + "required":["BlueGreenUpdatePolicy"], + "members":{ + "BlueGreenUpdatePolicy":{ + "shape":"BlueGreenUpdatePolicy", + "documentation":"

" + }, + "AutoRollbackConfiguration":{ + "shape":"AutoRollbackConfig", + "documentation":"

" + } + }, + "documentation":"

Currently, the DeploymentConfig API is not supported.

" + }, + "DescribeActionRequest":{ + "type":"structure", + "required":["ActionName"], + "members":{ + "ActionName":{ + "shape":"ExperimentEntityName", + "documentation":"

The name of the action to describe.

" + } + } + }, + "DescribeActionResponse":{ + "type":"structure", + "members":{ + "ActionName":{ + "shape":"ExperimentEntityName", + "documentation":"

The name of the action.

" + }, + "ActionArn":{ + "shape":"ActionArn", + "documentation":"

The Amazon Resource Name (ARN) of the action.

" + }, + "Source":{ + "shape":"ActionSource", + "documentation":"

The source of the action.

" + }, + "ActionType":{ + "shape":"String256", + "documentation":"

The type of the action.

" + }, + "Description":{ + "shape":"ExperimentDescription", + "documentation":"

The description of the action.

" + }, + "Status":{ + "shape":"ActionStatus", + "documentation":"

The status of the action.

" + }, + "Properties":{ + "shape":"LineageEntityParameters", + "documentation":"

A list of the action's properties.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

When the action was created.

" + }, + "CreatedBy":{"shape":"UserContext"}, + "LastModifiedTime":{ + "shape":"Timestamp", + "documentation":"

When the action was last modified.

" + }, + "LastModifiedBy":{"shape":"UserContext"}, + "MetadataProperties":{"shape":"MetadataProperties"} + } + }, "DescribeAlgorithmInput":{ "type":"structure", "required":["AlgorithmName"], @@ -5543,9 +7295,55 @@ } } }, - "DescribeAutoMLJobRequest":{ + "DescribeArtifactRequest":{ "type":"structure", - "required":["AutoMLJobName"], + "required":["ArtifactArn"], + "members":{ + "ArtifactArn":{ + "shape":"ArtifactArn", + "documentation":"

The Amazon Resource Name (ARN) of the artifact to describe.

" + } + } + }, + "DescribeArtifactResponse":{ + "type":"structure", + "members":{ + "ArtifactName":{ + "shape":"ExperimentEntityName", + "documentation":"

The name of the artifact.

" + }, + "ArtifactArn":{ + "shape":"ArtifactArn", + "documentation":"

The Amazon Resource Name (ARN) of the artifact.

" + }, + "Source":{ + "shape":"ArtifactSource", + "documentation":"

The source of the artifact.

" + }, + "ArtifactType":{ + "shape":"String256", + "documentation":"

The type of the artifact.

" + }, + "Properties":{ + "shape":"LineageEntityParameters", + "documentation":"

A list of the artifact's properties.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

When the artifact was created.

" + }, + "CreatedBy":{"shape":"UserContext"}, + "LastModifiedTime":{ + "shape":"Timestamp", + "documentation":"

When the artifact was last modified.

" + }, + "LastModifiedBy":{"shape":"UserContext"}, + "MetadataProperties":{"shape":"MetadataProperties"} + } + }, + "DescribeAutoMLJobRequest":{ + "type":"structure", + "required":["AutoMLJobName"], "members":{ "AutoMLJobName":{ "shape":"AutoMLJobName", @@ -5748,6 +7546,10 @@ "shape":"ModelArtifacts", "documentation":"

Information about the location in Amazon S3 that has been configured for storing the model artifacts used in the compilation job.

" }, + "ModelDigests":{ + "shape":"ModelDigests", + "documentation":"

Provides a BLAKE2 hash value that identifies the compiled model artifacts in Amazon S3.

" + }, "RoleArn":{ "shape":"RoleArn", "documentation":"

The Amazon Resource Name (ARN) of the model compilation job.

" @@ -5762,6 +7564,55 @@ } } }, + "DescribeContextRequest":{ + "type":"structure", + "required":["ContextName"], + "members":{ + "ContextName":{ + "shape":"ExperimentEntityName", + "documentation":"

The name of the context to describe.

" + } + } + }, + "DescribeContextResponse":{ + "type":"structure", + "members":{ + "ContextName":{ + "shape":"ExperimentEntityName", + "documentation":"

The name of the context.

" + }, + "ContextArn":{ + "shape":"ContextArn", + "documentation":"

The Amazon Resource Name (ARN) of the context.

" + }, + "Source":{ + "shape":"ContextSource", + "documentation":"

The source of the context.

" + }, + "ContextType":{ + "shape":"String256", + "documentation":"

The type of the context.

" + }, + "Description":{ + "shape":"ExperimentDescription", + "documentation":"

The description of the context.

" + }, + "Properties":{ + "shape":"LineageEntityParameters", + "documentation":"

A list of the context's properties.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

When the context was created.

" + }, + "CreatedBy":{"shape":"UserContext"}, + "LastModifiedTime":{ + "shape":"Timestamp", + "documentation":"

When the context was last modified.

" + }, + "LastModifiedBy":{"shape":"UserContext"} + } + }, "DescribeDomainRequest":{ "type":"structure", "required":["DomainId"], @@ -5942,6 +7793,10 @@ "LastModifiedTime":{ "shape":"Timestamp", "documentation":"

A timestamp that shows when the endpoint was last modified.

" + }, + "LastDeploymentConfig":{ + "shape":"DeploymentConfig", + "documentation":"

The most recent deployment configuration for the endpoint.

" } } }, @@ -5996,6 +7851,90 @@ } } }, + "DescribeFeatureGroupRequest":{ + "type":"structure", + "required":["FeatureGroupName"], + "members":{ + "FeatureGroupName":{ + "shape":"FeatureGroupName", + "documentation":"

The name of the FeatureGroup you want described.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A token to resume pagination of the list of Features (FeatureDefinitions). 2,500 Features are returned by default.

" + } + } + }, + "DescribeFeatureGroupResponse":{ + "type":"structure", + "required":[ + "FeatureGroupArn", + "FeatureGroupName", + "RecordIdentifierFeatureName", + "EventTimeFeatureName", + "FeatureDefinitions", + "CreationTime", + "NextToken" + ], + "members":{ + "FeatureGroupArn":{ + "shape":"FeatureGroupArn", + "documentation":"

The Amazon Resource Name (ARN) of the FeatureGroup.

" + }, + "FeatureGroupName":{ + "shape":"FeatureGroupName", + "documentation":"

he name of the FeatureGroup.

" + }, + "RecordIdentifierFeatureName":{ + "shape":"FeatureName", + "documentation":"

The name of the Feature used for RecordIdentifier, whose value uniquely identifies a record stored in the feature store.

" + }, + "EventTimeFeatureName":{ + "shape":"FeatureName", + "documentation":"

The name of the feature that stores the EventTime of a Record in a FeatureGroup.

An EventTime is a point in time when a new event occurs that corresponds to the creation or update of a Record in a FeatureGroup. All Records in the FeatureGroup have a corresponding EventTime.

" + }, + "FeatureDefinitions":{ + "shape":"FeatureDefinitions", + "documentation":"

A list of the Features in the FeatureGroup. Each feature is defined by a FeatureName and FeatureType.

" + }, + "CreationTime":{ + "shape":"CreationTime", + "documentation":"

A timestamp indicating when SageMaker created the FeatureGroup.

" + }, + "OnlineStoreConfig":{ + "shape":"OnlineStoreConfig", + "documentation":"

The configuration for the OnlineStore.

" + }, + "OfflineStoreConfig":{ + "shape":"OfflineStoreConfig", + "documentation":"

The configuration of the OfflineStore, inducing the S3 location of the OfflineStore, AWS Glue or AWS Hive data catalogue configurations, and the security configuration.

" + }, + "RoleArn":{ + "shape":"RoleArn", + "documentation":"

The Amazon Resource Name (ARN) of the IAM execution role used to persist data into the OfflineStore if an OfflineStoreConfig is provided.

" + }, + "FeatureGroupStatus":{ + "shape":"FeatureGroupStatus", + "documentation":"

The status of the feature group.

" + }, + "OfflineStoreStatus":{ + "shape":"OfflineStoreStatus", + "documentation":"

The status of the OfflineStore. Notifies you if replicating data into the OfflineStore has failed. Returns either: Active or Blocked

" + }, + "FailureReason":{ + "shape":"FailureReason", + "documentation":"

The reason that the FeatureGroup failed to be replicated in the OfflineStore. This is failure can occur because:

  • The FeatureGroup could not be created in the OfflineStore.

  • The FeatureGroup could not be deleted from the OfflineStore.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

A free form description of the feature group.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A token to resume pagination of the list of Features (FeatureDefinitions).

" + } + } + }, "DescribeFlowDefinitionRequest":{ "type":"structure", "required":["FlowDefinitionName"], @@ -6380,7 +8319,7 @@ }, "Tags":{ "shape":"TagList", - "documentation":"

An array of key/value pairs. For more information, see Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide.

" + "documentation":"

An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging AWS Resources.

" }, "LabelingJobOutput":{ "shape":"LabelingJobOutput", @@ -6441,6 +8380,49 @@ } } }, + "DescribeModelPackageGroupInput":{ + "type":"structure", + "required":["ModelPackageGroupName"], + "members":{ + "ModelPackageGroupName":{ + "shape":"ArnOrName", + "documentation":"

The name of the model group to describe.

" + } + } + }, + "DescribeModelPackageGroupOutput":{ + "type":"structure", + "required":[ + "ModelPackageGroupName", + "ModelPackageGroupArn", + "CreationTime", + "CreatedBy", + "ModelPackageGroupStatus" + ], + "members":{ + "ModelPackageGroupName":{ + "shape":"EntityName", + "documentation":"

The name of the model group.

" + }, + "ModelPackageGroupArn":{ + "shape":"ModelPackageGroupArn", + "documentation":"

The Amazon Resource Name (ARN) of the model group.

" + }, + "ModelPackageGroupDescription":{ + "shape":"EntityDescription", + "documentation":"

A description of the model group.

" + }, + "CreationTime":{ + "shape":"CreationTime", + "documentation":"

The time that the model group was created.

" + }, + "CreatedBy":{"shape":"UserContext"}, + "ModelPackageGroupStatus":{ + "shape":"ModelPackageGroupStatus", + "documentation":"

The status of the model group.

" + } + } + }, "DescribeModelPackageInput":{ "type":"structure", "required":["ModelPackageName"], @@ -6465,6 +8447,14 @@ "shape":"EntityName", "documentation":"

The name of the model package being described.

" }, + "ModelPackageGroupName":{ + "shape":"EntityName", + "documentation":"

If the model is a versioned model, the name of the model group that the versioned model belongs to.

" + }, + "ModelPackageVersion":{ + "shape":"ModelPackageVersion", + "documentation":"

The version of the model package.

" + }, "ModelPackageArn":{ "shape":"ModelPackageArn", "documentation":"

The Amazon Resource Name (ARN) of the model package.

" @@ -6500,6 +8490,25 @@ "CertifyForMarketplace":{ "shape":"CertifyForMarketplace", "documentation":"

Whether the model package is certified for listing on AWS Marketplace.

" + }, + "ModelApprovalStatus":{ + "shape":"ModelApprovalStatus", + "documentation":"

The approval status of the model package.

" + }, + "CreatedBy":{"shape":"UserContext"}, + "MetadataProperties":{"shape":"MetadataProperties"}, + "ModelMetrics":{ + "shape":"ModelMetrics", + "documentation":"

Metrics for the model.

" + }, + "LastModifiedTime":{ + "shape":"Timestamp", + "documentation":"

The last time the model package was modified.

" + }, + "LastModifiedBy":{"shape":"UserContext"}, + "ApprovalDescription":{ + "shape":"ApprovalDescription", + "documentation":"

A description provided for the model approval.

" } } }, @@ -6696,6 +8705,131 @@ } } }, + "DescribePipelineDefinitionForExecutionRequest":{ + "type":"structure", + "required":["PipelineExecutionArn"], + "members":{ + "PipelineExecutionArn":{ + "shape":"PipelineExecutionArn", + "documentation":"

The Amazon Resource Name (ARN) of the pipeline execution.

" + } + } + }, + "DescribePipelineDefinitionForExecutionResponse":{ + "type":"structure", + "members":{ + "PipelineDefinition":{ + "shape":"PipelineDefinition", + "documentation":"

The JSON pipeline definition.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

The time when the pipeline was created.

" + } + } + }, + "DescribePipelineExecutionRequest":{ + "type":"structure", + "required":["PipelineExecutionArn"], + "members":{ + "PipelineExecutionArn":{ + "shape":"PipelineExecutionArn", + "documentation":"

The Amazon Resource Name (ARN) of the pipeline execution.

" + } + } + }, + "DescribePipelineExecutionResponse":{ + "type":"structure", + "members":{ + "PipelineArn":{ + "shape":"PipelineArn", + "documentation":"

The Amazon Resource Name (ARN) of the pipeline.

" + }, + "PipelineExecutionArn":{ + "shape":"PipelineExecutionArn", + "documentation":"

The Amazon Resource Name (ARN) of the pipeline execution.

" + }, + "PipelineExecutionDisplayName":{ + "shape":"PipelineExecutionName", + "documentation":"

The display name of the pipeline execution.

" + }, + "PipelineExecutionStatus":{ + "shape":"PipelineExecutionStatus", + "documentation":"

The status of the pipeline execution.

" + }, + "PipelineExecutionDescription":{ + "shape":"PipelineExecutionDescription", + "documentation":"

The description of the pipeline execution.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

The time when the pipeline execution was created.

" + }, + "LastModifiedTime":{ + "shape":"Timestamp", + "documentation":"

The time when the pipeline execution was modified last.

" + }, + "CreatedBy":{"shape":"UserContext"}, + "LastModifiedBy":{"shape":"UserContext"} + } + }, + "DescribePipelineRequest":{ + "type":"structure", + "required":["PipelineName"], + "members":{ + "PipelineName":{ + "shape":"PipelineName", + "documentation":"

The name of the pipeline to describe.

" + } + } + }, + "DescribePipelineResponse":{ + "type":"structure", + "members":{ + "PipelineArn":{ + "shape":"PipelineArn", + "documentation":"

The Amazon Resource Name (ARN) of the pipeline.

" + }, + "PipelineName":{ + "shape":"PipelineName", + "documentation":"

The name of the pipeline.

" + }, + "PipelineDisplayName":{ + "shape":"PipelineName", + "documentation":"

The display name of the pipeline.

" + }, + "PipelineDefinition":{ + "shape":"PipelineDefinition", + "documentation":"

The JSON pipeline definition.

" + }, + "PipelineDescription":{ + "shape":"PipelineDescription", + "documentation":"

The description of the pipeline.

" + }, + "RoleArn":{ + "shape":"RoleArn", + "documentation":"

The Amazon Resource Name (ARN) that the pipeline uses to execute.

" + }, + "PipelineStatus":{ + "shape":"PipelineStatus", + "documentation":"

The status of the pipeline execution.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

The time when the pipeline was created.

" + }, + "LastModifiedTime":{ + "shape":"Timestamp", + "documentation":"

The time when the pipeline was last modified.

" + }, + "LastRunTime":{ + "shape":"Timestamp", + "documentation":"

The time when the pipeline was last run.

" + }, + "CreatedBy":{"shape":"UserContext"}, + "LastModifiedBy":{"shape":"UserContext"} + } + }, "DescribeProcessingJobRequest":{ "type":"structure", "required":["ProcessingJobName"], @@ -6803,6 +8937,62 @@ } } }, + "DescribeProjectInput":{ + "type":"structure", + "required":["ProjectName"], + "members":{ + "ProjectName":{ + "shape":"ProjectEntityName", + "documentation":"

The name of the project to describe.

" + } + } + }, + "DescribeProjectOutput":{ + "type":"structure", + "required":[ + "ProjectArn", + "ProjectName", + "ProjectId", + "ServiceCatalogProvisioningDetails", + "ProjectStatus", + "CreationTime" + ], + "members":{ + "ProjectArn":{ + "shape":"ProjectArn", + "documentation":"

The Amazon Resource Name (ARN) of the project.

" + }, + "ProjectName":{ + "shape":"ProjectEntityName", + "documentation":"

The name of the project.

" + }, + "ProjectId":{ + "shape":"ProjectId", + "documentation":"

The ID of the project.

" + }, + "ProjectDescription":{ + "shape":"EntityDescription", + "documentation":"

The description of the project.

" + }, + "ServiceCatalogProvisioningDetails":{ + "shape":"ServiceCatalogProvisioningDetails", + "documentation":"

Information used to provision a service catalog product. For information, see What is AWS Service Catalog.

" + }, + "ServiceCatalogProvisionedProductDetails":{ + "shape":"ServiceCatalogProvisionedProductDetails", + "documentation":"

Information about a provisioned service catalog product.

" + }, + "ProjectStatus":{ + "shape":"ProjectStatus", + "documentation":"

The status of the project.

" + }, + "CreatedBy":{"shape":"UserContext"}, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

The time when the project was created.

" + } + } + }, "DescribeSubscribedWorkteamRequest":{ "type":"structure", "required":["WorkteamArn"], @@ -7140,6 +9330,7 @@ "shape":"TrialComponentArtifacts", "documentation":"

The output artifacts of the component.

" }, + "MetadataProperties":{"shape":"MetadataProperties"}, "Metrics":{ "shape":"TrialComponentMetricSummaries", "documentation":"

The metrics for the component.

" @@ -7194,7 +9385,8 @@ "LastModifiedBy":{ "shape":"UserContext", "documentation":"

Who last modified the trial.

" - } + }, + "MetadataProperties":{"shape":"MetadataProperties"} } }, "DescribeUserProfileRequest":{ @@ -7303,6 +9495,10 @@ } } }, + "Description":{ + "type":"string", + "max":128 + }, "DesiredWeightAndCapacity":{ "type":"structure", "required":["VariantName"], @@ -7362,6 +9558,16 @@ "max":4096, "pattern":".*" }, + "DisableSagemakerServicecatalogPortfolioInput":{ + "type":"structure", + "members":{ + } + }, + "DisableSagemakerServicecatalogPortfolioOutput":{ + "type":"structure", + "members":{ + } + }, "DisassociateAdditionalCodeRepositories":{"type":"boolean"}, "DisassociateDefaultCodeRepository":{"type":"boolean"}, "DisassociateNotebookInstanceAcceleratorTypes":{"type":"boolean"}, @@ -7451,7 +9657,7 @@ "DomainName":{ "type":"string", "max":63, - "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*" + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}" }, "DomainStatus":{ "type":"string", @@ -7472,29 +9678,94 @@ "pattern":"\\d+" }, "EnableCapture":{"type":"boolean"}, - "EndpointArn":{ - "type":"string", - "max":2048, - "min":20, - "pattern":"arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:endpoint/.*" - }, - "EndpointConfigArn":{ - "type":"string", - "max":2048, - "min":20, - "pattern":"arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:endpoint-config/.*" - }, - "EndpointConfigName":{ - "type":"string", - "max":63, - "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*" + "EnableSagemakerServicecatalogPortfolioInput":{ + "type":"structure", + "members":{ + } }, - "EndpointConfigNameContains":{ - "type":"string", - "max":63, - "pattern":"[a-zA-Z0-9-]+" + "EnableSagemakerServicecatalogPortfolioOutput":{ + "type":"structure", + "members":{ + } }, - "EndpointConfigSortKey":{ + "Endpoint":{ + "type":"structure", + "required":[ + "EndpointName", + "EndpointArn", + "EndpointConfigName", + "EndpointStatus", + "CreationTime", + "LastModifiedTime" + ], + "members":{ + "EndpointName":{ + "shape":"EndpointName", + "documentation":"

The name of the endpoint.

" + }, + "EndpointArn":{ + "shape":"EndpointArn", + "documentation":"

The Amazon Resource Name (ARN) of the endpoint.

" + }, + "EndpointConfigName":{ + "shape":"EndpointConfigName", + "documentation":"

The endpoint configuration associated with the endpoint.

" + }, + "ProductionVariants":{ + "shape":"ProductionVariantSummaryList", + "documentation":"

A list of the production variants hosted on the endpoint. Each production variant is a model.

" + }, + "DataCaptureConfig":{"shape":"DataCaptureConfigSummary"}, + "EndpointStatus":{ + "shape":"EndpointStatus", + "documentation":"

The status of the endpoint.

" + }, + "FailureReason":{ + "shape":"FailureReason", + "documentation":"

If the endpoint failed, the reason it failed.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

The time that the endpoint was created.

" + }, + "LastModifiedTime":{ + "shape":"Timestamp", + "documentation":"

The last time the endpoint was modified.

" + }, + "MonitoringSchedules":{ + "shape":"MonitoringScheduleList", + "documentation":"

A list of monitoring schedules for the endpoint. For information about model monitoring, see Amazon SageMaker Model Monitor.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

A list of the tags associated with the endpoint. For more information, see Tagging AWS resources in the AWS General Reference Guide.

" + } + }, + "documentation":"

A hosted endpoint for real-time inference.

" + }, + "EndpointArn":{ + "type":"string", + "max":2048, + "min":20, + "pattern":"arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:endpoint/.*" + }, + "EndpointConfigArn":{ + "type":"string", + "max":2048, + "min":20, + "pattern":"arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:endpoint-config/.*" + }, + "EndpointConfigName":{ + "type":"string", + "max":63, + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}" + }, + "EndpointConfigNameContains":{ + "type":"string", + "max":63, + "pattern":"[a-zA-Z0-9-]+" + }, + "EndpointConfigSortKey":{ "type":"string", "enum":[ "Name", @@ -7557,7 +9828,7 @@ "EndpointName":{ "type":"string", "max":63, - "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*" + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}" }, "EndpointNameContains":{ "type":"string", @@ -7631,7 +9902,7 @@ "type":"string", "max":63, "min":1, - "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*$" + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}$" }, "EnvironmentKey":{ "type":"string", @@ -7735,7 +10006,7 @@ "type":"string", "max":120, "min":1, - "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*" + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,119}" }, "ExperimentSource":{ "type":"structure", @@ -7788,10 +10059,189 @@ }, "documentation":"

A summary of the properties of an experiment. To get the complete set of properties, call the DescribeExperiment API and provide the ExperimentName.

" }, + "Explainability":{ + "type":"structure", + "members":{ + "Report":{ + "shape":"MetricsSource", + "documentation":"

The explainability report for a model.

" + } + }, + "documentation":"

Contains explainability metrics for a model.

" + }, "FailureReason":{ "type":"string", "max":1024 }, + "FeatureDefinition":{ + "type":"structure", + "members":{ + "FeatureName":{ + "shape":"FeatureName", + "documentation":"

The name of a feature. The type must be a string. FeatureName cannot be any of the following: is_deleted, write_time, api_invocation_time.

" + }, + "FeatureType":{ + "shape":"FeatureType", + "documentation":"

The value type of a feature. Valid values are Integral, Fractional, or String.

" + } + }, + "documentation":"

A list of features. You must include FeatureName and FeatureType. Valid feature FeatureTypes are Integral, Fractional and String.

" + }, + "FeatureDefinitions":{ + "type":"list", + "member":{"shape":"FeatureDefinition"}, + "max":2500, + "min":1 + }, + "FeatureGroup":{ + "type":"structure", + "members":{ + "FeatureGroupArn":{ + "shape":"FeatureGroupArn", + "documentation":"

The Amazon Resource Name (ARN) of a FeatureGroup.

" + }, + "FeatureGroupName":{ + "shape":"FeatureGroupName", + "documentation":"

The name of the FeatureGroup.

" + }, + "RecordIdentifierFeatureName":{ + "shape":"FeatureName", + "documentation":"

The name of the Feature whose value uniquely identifies a Record defined in the FeatureGroup FeatureDefinitions.

" + }, + "EventTimeFeatureName":{ + "shape":"FeatureName", + "documentation":"

The name of the feature that stores the EventTime of a Record in a FeatureGroup.

A EventTime is point in time when a new event occurs that corresponds to the creation or update of a Record in FeatureGroup. All Records in the FeatureGroup must have a corresponding EventTime.

" + }, + "FeatureDefinitions":{ + "shape":"FeatureDefinitions", + "documentation":"

A list of Features. Each Feature must include a FeatureName and a FeatureType.

Valid FeatureTypes are Integral, Fractional and String.

FeatureNames cannot be any of the following: is_deleted, write_time, api_invocation_time.

You can create up to 2,500 FeatureDefinitions per FeatureGroup.

" + }, + "CreationTime":{ + "shape":"CreationTime", + "documentation":"

The time a FeatureGroup was created.

" + }, + "OnlineStoreConfig":{"shape":"OnlineStoreConfig"}, + "OfflineStoreConfig":{"shape":"OfflineStoreConfig"}, + "RoleArn":{ + "shape":"RoleArn", + "documentation":"

The Amazon Resource Name (ARN) of the IAM execution role used to create the feature group.

" + }, + "FeatureGroupStatus":{ + "shape":"FeatureGroupStatus", + "documentation":"

A FeatureGroup status.

" + }, + "OfflineStoreStatus":{"shape":"OfflineStoreStatus"}, + "FailureReason":{ + "shape":"FailureReason", + "documentation":"

The reason that the FeatureGroup failed to be replicated in the OfflineStore. This is failure may be due to a failure to create a FeatureGroup in or delete a FeatureGroup from the OfflineStore.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

A free form description of a FeatureGroup.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

Tags used to define a FeatureGroup.

" + } + }, + "documentation":"

Amazon SageMaker Feature Store stores features in a collection called Feature Group. A Feature Group can be visualized as a table which has rows, with a unique identifier for each row where each column in the table is a feature. In principle, a Feature Group is composed of features and values per features.

" + }, + "FeatureGroupArn":{ + "type":"string", + "max":256, + "pattern":"arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:feature-group/.*" + }, + "FeatureGroupMaxResults":{ + "type":"integer", + "max":100, + "min":1 + }, + "FeatureGroupName":{ + "type":"string", + "max":64, + "min":1, + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,63}" + }, + "FeatureGroupNameContains":{ + "type":"string", + "max":64, + "min":1 + }, + "FeatureGroupSortBy":{ + "type":"string", + "enum":[ + "Name", + "FeatureGroupStatus", + "OfflineStoreStatus", + "CreationTime" + ] + }, + "FeatureGroupSortOrder":{ + "type":"string", + "enum":[ + "Ascending", + "Descending" + ] + }, + "FeatureGroupStatus":{ + "type":"string", + "enum":[ + "Creating", + "Created", + "CreateFailed", + "Deleting", + "DeleteFailed" + ] + }, + "FeatureGroupSummaries":{ + "type":"list", + "member":{"shape":"FeatureGroupSummary"} + }, + "FeatureGroupSummary":{ + "type":"structure", + "required":[ + "FeatureGroupName", + "FeatureGroupArn", + "CreationTime" + ], + "members":{ + "FeatureGroupName":{ + "shape":"FeatureGroupName", + "documentation":"

The name of FeatureGroup.

" + }, + "FeatureGroupArn":{ + "shape":"FeatureGroupArn", + "documentation":"

Unique identifier for the FeatureGroup.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

A timestamp indicating the time of creation time of the FeatureGroup.

" + }, + "FeatureGroupStatus":{ + "shape":"FeatureGroupStatus", + "documentation":"

The status of a FeatureGroup. The status can be any of the following: Creating, Created, CreateFail, Deleting or DetailFail.

" + }, + "OfflineStoreStatus":{ + "shape":"OfflineStoreStatus", + "documentation":"

Notifies you if replicating data into the OfflineStore has failed. Returns either: Active or Blocked.

" + } + }, + "documentation":"

The name, Arn, CreationTime, FeatureGroup values, LastUpdatedTime and EnableOnlineStorage status of a FeatureGroup.

" + }, + "FeatureName":{ + "type":"string", + "max":64, + "min":1, + "pattern":"^[a-zA-Z0-9]([-_]*[a-zA-Z0-9]){0,63}" + }, + "FeatureType":{ + "type":"string", + "enum":[ + "Integral", + "Fractional", + "String" + ] + }, "FileSystemAccessMode":{ "type":"string", "enum":[ @@ -7950,7 +10400,7 @@ "type":"string", "max":63, "min":1, - "pattern":"^[a-z0-9](-*[a-z0-9])*" + "pattern":"^[a-z0-9](-*[a-z0-9]){0,62}" }, "FlowDefinitionOutputConfig":{ "type":"structure", @@ -8061,10 +10511,45 @@ "PYTORCH", "XGBOOST", "TFLITE", - "DARKNET" + "DARKNET", + "SKLEARN" ] }, "GenerateCandidateDefinitionsOnly":{"type":"boolean"}, + "GetModelPackageGroupPolicyInput":{ + "type":"structure", + "required":["ModelPackageGroupName"], + "members":{ + "ModelPackageGroupName":{ + "shape":"EntityName", + "documentation":"

The name of the model group for which to get the resource policy.

" + } + } + }, + "GetModelPackageGroupPolicyOutput":{ + "type":"structure", + "required":["ResourcePolicy"], + "members":{ + "ResourcePolicy":{ + "shape":"PolicyString", + "documentation":"

The resource policy for the model group.

" + } + } + }, + "GetSagemakerServicecatalogPortfolioStatusInput":{ + "type":"structure", + "members":{ + } + }, + "GetSagemakerServicecatalogPortfolioStatusOutput":{ + "type":"structure", + "members":{ + "Status":{ + "shape":"SagemakerServicecatalogStatus", + "documentation":"

Whether Service Catalog is enabled or disabled in SageMaker.

" + } + } + }, "GetSearchSuggestionsRequest":{ "type":"structure", "required":["Resource"], @@ -8482,7 +10967,7 @@ "type":"string", "max":64, "min":1, - "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*" + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,63}" }, "HyperParameterTrainingJobDefinitions":{ "type":"list", @@ -8598,7 +11083,7 @@ "type":"string", "max":32, "min":1, - "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*" + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,31}" }, "HyperParameterTuningJobObjective":{ "type":"structure", @@ -8751,6 +11236,11 @@ "max":100, "min":0 }, + "IdempotencyToken":{ + "type":"string", + "max":128, + "min":32 + }, "Image":{ "type":"structure", "required":[ @@ -8838,7 +11328,7 @@ "type":"string", "max":512, "min":1, - "pattern":"^\\S(.*\\S)?$" + "pattern":".*" }, "ImageDigest":{ "type":"string", @@ -8855,7 +11345,7 @@ "type":"string", "max":63, "min":1, - "pattern":"^[a-zA-Z0-9]([-.]?[a-zA-Z0-9])*$" + "pattern":"^[a-zA-Z0-9]([-.]?[a-zA-Z0-9]){0,62}$" }, "ImageNameContains":{ "type":"string", @@ -8982,8 +11472,6 @@ "type":"structure", "required":[ "Containers", - "SupportedTransformInstanceTypes", - "SupportedRealtimeInferenceInstanceTypes", "SupportedContentTypes", "SupportedResponseMIMETypes" ], @@ -8994,11 +11482,11 @@ }, "SupportedTransformInstanceTypes":{ "shape":"TransformInstanceTypes", - "documentation":"

A list of the instance types on which a transformation job can be run or on which an endpoint can be deployed.

" + "documentation":"

A list of the instance types on which a transformation job can be run or on which an endpoint can be deployed.

This parameter is required for unversioned models, and optional for versioned models.

" }, "SupportedRealtimeInferenceInstanceTypes":{ "shape":"RealtimeInferenceInstanceTypes", - "documentation":"

A list of the instance types that are used to generate inferences in real-time.

" + "documentation":"

A list of the instance types that are used to generate inferences in real-time.

This parameter is required for unversioned models, and optional for versioned models.

" }, "SupportedContentTypes":{ "shape":"ContentTypes", @@ -9040,6 +11528,13 @@ "max":20, "min":1 }, + "InputMode":{ + "type":"string", + "enum":[ + "Pipe", + "File" + ] + }, "InputModes":{ "type":"list", "member":{"shape":"TrainingInputMode"}, @@ -9261,7 +11756,7 @@ "type":"string", "max":127, "min":1, - "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*" + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,126}" }, "LabelCounter":{ "type":"integer", @@ -9422,7 +11917,7 @@ "type":"string", "max":63, "min":1, - "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*" + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}" }, "LabelingJobOutput":{ "type":"structure", @@ -9586,9 +12081,65 @@ "LambdaFunctionArn":{ "type":"string", "max":2048, - "pattern":"arn:aws[a-z\\-]*:lambda:[a-z]{2}-[a-z]+-\\d{1}:\\d{12}:function:[a-zA-Z0-9-_\\.]+(:(\\$LATEST|[a-zA-Z0-9-_]+))?" + "pattern":"arn:aws[a-z\\-]*:lambda:[a-z0-9\\-]*:[0-9]{12}:function:.*" }, "LastModifiedTime":{"type":"timestamp"}, + "LineageEntityParameters":{ + "type":"map", + "key":{"shape":"StringParameterValue"}, + "value":{"shape":"StringParameterValue"}, + "max":30 + }, + "ListActionsRequest":{ + "type":"structure", + "members":{ + "SourceUri":{ + "shape":"SourceUri", + "documentation":"

A filter that returns only actions with the specified source URI.

" + }, + "ActionType":{ + "shape":"String256", + "documentation":"

A filter that returns only actions of the specified type.

" + }, + "CreatedAfter":{ + "shape":"Timestamp", + "documentation":"

A filter that returns only actions created on or after the specified time.

" + }, + "CreatedBefore":{ + "shape":"Timestamp", + "documentation":"

A filter that returns only actions created on or before the specified time.

" + }, + "SortBy":{ + "shape":"SortActionsBy", + "documentation":"

The property used to sort results. The default value is CreationTime.

" + }, + "SortOrder":{ + "shape":"SortOrder", + "documentation":"

The sort order. The default value is Descending.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If the previous call to ListActions didn't return the full set of actions, the call returns a token for getting the next set of actions.

" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of actions to return in the response. The default value is 10.

" + } + } + }, + "ListActionsResponse":{ + "type":"structure", + "members":{ + "ActionSummaries":{ + "shape":"ActionSummaries", + "documentation":"

A list of actions and their properties.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A token for getting the next set of actions, if there are any.

" + } + } + }, "ListAlgorithmsInput":{ "type":"structure", "members":{ @@ -9732,28 +12283,140 @@ } } }, - "ListAutoMLJobsRequest":{ + "ListArtifactsRequest":{ "type":"structure", "members":{ - "CreationTimeAfter":{ - "shape":"Timestamp", - "documentation":"

Request a list of jobs, using a filter for time.

" + "SourceUri":{ + "shape":"SourceUri", + "documentation":"

A filter that returns only artifacts with the specified source URI.

" }, - "CreationTimeBefore":{ - "shape":"Timestamp", - "documentation":"

Request a list of jobs, using a filter for time.

" + "ArtifactType":{ + "shape":"String256", + "documentation":"

A filter that returns only artifacts of the specified type.

" }, - "LastModifiedTimeAfter":{ + "CreatedAfter":{ "shape":"Timestamp", - "documentation":"

Request a list of jobs, using a filter for time.

" + "documentation":"

A filter that returns only artifacts created on or after the specified time.

" }, - "LastModifiedTimeBefore":{ + "CreatedBefore":{ "shape":"Timestamp", - "documentation":"

Request a list of jobs, using a filter for time.

" - }, - "NameContains":{ - "shape":"AutoMLNameContains", - "documentation":"

Request a list of jobs, using a search filter for name.

" + "documentation":"

A filter that returns only artifacts created on or before the specified time.

" + }, + "SortBy":{ + "shape":"SortArtifactsBy", + "documentation":"

The property used to sort results. The default value is CreationTime.

" + }, + "SortOrder":{ + "shape":"SortOrder", + "documentation":"

The sort order. The default value is Descending.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If the previous call to ListArtifacts didn't return the full set of artifacts, the call returns a token for getting the next set of artifacts.

" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of artifacts to return in the response. The default value is 10.

" + } + } + }, + "ListArtifactsResponse":{ + "type":"structure", + "members":{ + "ArtifactSummaries":{ + "shape":"ArtifactSummaries", + "documentation":"

A list of artifacts and their properties.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A token for getting the next set of artifacts, if there are any.

" + } + } + }, + "ListAssociationsRequest":{ + "type":"structure", + "members":{ + "SourceArn":{ + "shape":"AssociationEntityArn", + "documentation":"

A filter that returns only associations with the specified source ARN.

" + }, + "DestinationArn":{ + "shape":"AssociationEntityArn", + "documentation":"

A filter that returns only associations with the specified destination Amazon Resource Name (ARN).

" + }, + "SourceType":{ + "shape":"String256", + "documentation":"

A filter that returns only associations with the specified source type.

" + }, + "DestinationType":{ + "shape":"String256", + "documentation":"

A filter that returns only associations with the specified destination type.

" + }, + "AssociationType":{ + "shape":"AssociationEdgeType", + "documentation":"

A filter that returns only associations of the specified type.

" + }, + "CreatedAfter":{ + "shape":"Timestamp", + "documentation":"

A filter that returns only associations created on or after the specified time.

" + }, + "CreatedBefore":{ + "shape":"Timestamp", + "documentation":"

A filter that returns only associations created on or before the specified time.

" + }, + "SortBy":{ + "shape":"SortAssociationsBy", + "documentation":"

The property used to sort results. The default value is CreationTime.

" + }, + "SortOrder":{ + "shape":"SortOrder", + "documentation":"

The sort order. The default value is Descending.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If the previous call to ListAssociations didn't return the full set of associations, the call returns a token for getting the next set of associations.

" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of associations to return in the response. The default value is 10.

" + } + } + }, + "ListAssociationsResponse":{ + "type":"structure", + "members":{ + "AssociationSummaries":{ + "shape":"AssociationSummaries", + "documentation":"

A list of associations and their properties.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A token for getting the next set of associations, if there are any.

" + } + } + }, + "ListAutoMLJobsRequest":{ + "type":"structure", + "members":{ + "CreationTimeAfter":{ + "shape":"Timestamp", + "documentation":"

Request a list of jobs, using a filter for time.

" + }, + "CreationTimeBefore":{ + "shape":"Timestamp", + "documentation":"

Request a list of jobs, using a filter for time.

" + }, + "LastModifiedTimeAfter":{ + "shape":"Timestamp", + "documentation":"

Request a list of jobs, using a filter for time.

" + }, + "LastModifiedTimeBefore":{ + "shape":"Timestamp", + "documentation":"

Request a list of jobs, using a filter for time.

" + }, + "NameContains":{ + "shape":"AutoMLNameContains", + "documentation":"

Request a list of jobs, using a search filter for name.

" }, "StatusEquals":{ "shape":"AutoMLJobStatus", @@ -9964,6 +12627,56 @@ "Status" ] }, + "ListContextsRequest":{ + "type":"structure", + "members":{ + "SourceUri":{ + "shape":"SourceUri", + "documentation":"

A filter that returns only contexts with the specified source URI.

" + }, + "ContextType":{ + "shape":"String256", + "documentation":"

A filter that returns only contexts of the specified type.

" + }, + "CreatedAfter":{ + "shape":"Timestamp", + "documentation":"

A filter that returns only contexts created on or after the specified time.

" + }, + "CreatedBefore":{ + "shape":"Timestamp", + "documentation":"

A filter that returns only contexts created on or before the specified time.

" + }, + "SortBy":{ + "shape":"SortContextsBy", + "documentation":"

The property used to sort results. The default value is CreationTime.

" + }, + "SortOrder":{ + "shape":"SortOrder", + "documentation":"

The sort order. The default value is Descending.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If the previous call to ListContexts didn't return the full set of contexts, the call returns a token for getting the next set of contexts.

" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of contexts to return in the response. The default value is 10.

" + } + } + }, + "ListContextsResponse":{ + "type":"structure", + "members":{ + "ContextSummaries":{ + "shape":"ContextSummaries", + "documentation":"

A list of contexts and their properties.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A token for getting the next set of contexts, if there are any.

" + } + } + }, "ListDomainsRequest":{ "type":"structure", "members":{ @@ -10138,6 +12851,64 @@ } } }, + "ListFeatureGroupsRequest":{ + "type":"structure", + "members":{ + "NameContains":{ + "shape":"FeatureGroupNameContains", + "documentation":"

A string that partially matches one or more FeatureGroups names. Filters FeatureGroups by name.

" + }, + "FeatureGroupStatusEquals":{ + "shape":"FeatureGroupStatus", + "documentation":"

A FeatureGroup status. Filters by FeatureGroup status.

" + }, + "OfflineStoreStatusEquals":{ + "shape":"OfflineStoreStatusValue", + "documentation":"

An OfflineStore status. Filters by OfflineStore status.

" + }, + "CreationTimeAfter":{ + "shape":"CreationTime", + "documentation":"

Use this parameter to search for FeatureGroupss created after a specific date and time.

" + }, + "CreationTimeBefore":{ + "shape":"CreationTime", + "documentation":"

Use this parameter to search for FeatureGroupss created before a specific date and time.

" + }, + "SortOrder":{ + "shape":"FeatureGroupSortOrder", + "documentation":"

The order in which feature groups are listed.

" + }, + "SortBy":{ + "shape":"FeatureGroupSortBy", + "documentation":"

The value on which the feature group list is sorted.

" + }, + "MaxResults":{ + "shape":"FeatureGroupMaxResults", + "documentation":"

The maximum number of results returned by ListFeatureGroups.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A token to resume pagination of ListFeatureGroups results.

" + } + } + }, + "ListFeatureGroupsResponse":{ + "type":"structure", + "required":[ + "FeatureGroupSummaries", + "NextToken" + ], + "members":{ + "FeatureGroupSummaries":{ + "shape":"FeatureGroupSummaries", + "documentation":"

A summary of feature groups.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

A token to resume pagination of ListFeatureGroups results.

" + } + } + }, "ListFlowDefinitionsRequest":{ "type":"structure", "members":{ @@ -10501,6 +13272,57 @@ } } }, + "ListLineageEntityParameterKey":{ + "type":"list", + "member":{"shape":"StringParameterValue"} + }, + "ListModelPackageGroupsInput":{ + "type":"structure", + "members":{ + "CreationTimeAfter":{ + "shape":"CreationTime", + "documentation":"

A filter that returns only model groups created after the specified time.

" + }, + "CreationTimeBefore":{ + "shape":"CreationTime", + "documentation":"

A filter that returns only model groups created before the specified time.

" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of results to return in the response.

" + }, + "NameContains":{ + "shape":"NameContains", + "documentation":"

A string in the model group name. This filter returns only model groups whose name contains the specified string.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If the result of the previous ListModelPackageGroups request was truncated, the response includes a NextToken. To retrieve the next set of model groups, use the token in the next request.

" + }, + "SortBy":{ + "shape":"ModelPackageGroupSortBy", + "documentation":"

The field to sort results by. The default is CreationTime.

" + }, + "SortOrder":{ + "shape":"SortOrder", + "documentation":"

The sort order for results. The default is Ascending.

" + } + } + }, + "ListModelPackageGroupsOutput":{ + "type":"structure", + "required":["ModelPackageGroupSummaryList"], + "members":{ + "ModelPackageGroupSummaryList":{ + "shape":"ModelPackageGroupSummaryList", + "documentation":"

A list of summaries of the model groups in your AWS account.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If the response is truncated, SageMaker returns this token. To retrieve the next set of model groups, use it in the subsequent request.

" + } + } + }, "ListModelPackagesInput":{ "type":"structure", "members":{ @@ -10520,6 +13342,18 @@ "shape":"NameContains", "documentation":"

A string in the model package name. This filter returns only model packages whose name contains the specified string.

" }, + "ModelApprovalStatus":{ + "shape":"ModelApprovalStatus", + "documentation":"

A filter that returns only the model packages with the specified approval status.

" + }, + "ModelPackageGroupName":{ + "shape":"ArnOrName", + "documentation":"

A filter that returns only model versions that belong to the specified model group.

" + }, + "ModelPackageType":{ + "shape":"ModelPackageType", + "documentation":"

A filter that returns onlyl the model packages of the specified type. This can be one of the following values.

  • VERSIONED - List only versioned models.

  • UNVERSIONED - List only unversioined models.

  • BOTH - List both versioned and unversioned models.

" + }, "NextToken":{ "shape":"NextToken", "documentation":"

If the response to a previous ListModelPackages request was truncated, the response includes a NextToken. To retrieve the next set of model packages, use the token in the next request.

" @@ -10853,85 +13687,290 @@ } } }, - "ListProcessingJobsRequest":{ + "ListPipelineExecutionStepsRequest":{ "type":"structure", "members":{ - "CreationTimeAfter":{ - "shape":"Timestamp", - "documentation":"

A filter that returns only processing jobs created after the specified time.

" + "PipelineExecutionArn":{ + "shape":"PipelineExecutionArn", + "documentation":"

The Amazon Resource Name (ARN) of the pipeline execution.

" }, - "CreationTimeBefore":{ - "shape":"Timestamp", - "documentation":"

A filter that returns only processing jobs created after the specified time.

" + "NextToken":{ + "shape":"NextToken", + "documentation":"

If the result of the previous ListPipelineExecutionSteps request was truncated, the response includes a NextToken. To retrieve the next set of pipeline execution steps, use the token in the next request.

" }, - "LastModifiedTimeAfter":{ - "shape":"Timestamp", - "documentation":"

A filter that returns only processing jobs modified after the specified time.

" + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of pipeline execution steps to return in the response.

" }, - "LastModifiedTimeBefore":{ - "shape":"Timestamp", - "documentation":"

A filter that returns only processing jobs modified before the specified time.

" + "SortOrder":{ + "shape":"SortOrder", + "documentation":"

The field by which to sort results. The default is CreatedTime.

" + } + } + }, + "ListPipelineExecutionStepsResponse":{ + "type":"structure", + "members":{ + "PipelineExecutionSteps":{ + "shape":"PipelineExecutionStepList", + "documentation":"

A list of PipeLineExecutionStep objects. Each PipeLineExecutionStep consists of StepName, StartTime, EndTime, StepStatus, and Metadata. Metadata is an object with properties for each job that contains relevant information about the job created by the step.

" }, - "NameContains":{ - "shape":"String", - "documentation":"

A string in the processing job name. This filter returns only processing jobs whose name contains the specified string.

" + "NextToken":{ + "shape":"NextToken", + "documentation":"

If the result of the previous ListPipelineExecutionSteps request was truncated, the response includes a NextToken. To retrieve the next set of pipeline execution steps, use the token in the next request.

" + } + } + }, + "ListPipelineExecutionsRequest":{ + "type":"structure", + "required":["PipelineName"], + "members":{ + "PipelineName":{ + "shape":"PipelineName", + "documentation":"

The name of the pipeline.

" }, - "StatusEquals":{ - "shape":"ProcessingJobStatus", - "documentation":"

A filter that retrieves only processing jobs with a specific status.

" + "CreatedAfter":{ + "shape":"Timestamp", + "documentation":"

A filter that returns the pipeline executions that were created after a specified time.

" + }, + "CreatedBefore":{ + "shape":"Timestamp", + "documentation":"

A filter that returns the pipeline executions that were created before a specified time.

" }, "SortBy":{ - "shape":"SortBy", - "documentation":"

The field to sort results by. The default is CreationTime.

" + "shape":"SortPipelineExecutionsBy", + "documentation":"

The field by which to sort results. The default is CreatedTime.

" }, "SortOrder":{ "shape":"SortOrder", - "documentation":"

The sort order for results. The default is Ascending.

" + "documentation":"

The sort order for results.

" }, "NextToken":{ "shape":"NextToken", - "documentation":"

If the result of the previous ListProcessingJobs request was truncated, the response includes a NextToken. To retrieve the next set of processing jobs, use the token in the next request.

" + "documentation":"

If the result of the previous ListPipelineExecutions request was truncated, the response includes a NextToken. To retrieve the next set of pipeline executions, use the token in the next request.

" }, "MaxResults":{ "shape":"MaxResults", - "documentation":"

The maximum number of processing jobs to return in the response.

", - "box":true + "documentation":"

The maximum number of pipeline executions to return in the response.

" } } }, - "ListProcessingJobsResponse":{ + "ListPipelineExecutionsResponse":{ "type":"structure", - "required":["ProcessingJobSummaries"], "members":{ - "ProcessingJobSummaries":{ - "shape":"ProcessingJobSummaries", - "documentation":"

An array of ProcessingJobSummary objects, each listing a processing job.

" + "PipelineExecutionSummaries":{ + "shape":"PipelineExecutionSummaryList", + "documentation":"

Contains a sorted list of pipeline execution summary objects matching the specified filters. Each run summary includes the Amazon Resource Name (ARN) of the pipeline execution, the run date, and the status. This list can be empty.

" }, "NextToken":{ "shape":"NextToken", - "documentation":"

If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of processing jobs, use it in the subsequent request.

" + "documentation":"

If the result of the previous ListPipelineExecutions request was truncated, the response includes a NextToken. To retrieve the next set of pipeline executions, use the token in the next request.

" } } }, - "ListSubscribedWorkteamsRequest":{ + "ListPipelineParametersForExecutionRequest":{ "type":"structure", + "required":["PipelineExecutionArn"], "members":{ - "NameContains":{ - "shape":"WorkteamName", - "documentation":"

A string in the work team name. This filter returns only work teams whose name contains the specified string.

" + "PipelineExecutionArn":{ + "shape":"PipelineExecutionArn", + "documentation":"

The Amazon Resource Name (ARN) of the pipeline execution.

" }, "NextToken":{ "shape":"NextToken", - "documentation":"

If the result of the previous ListSubscribedWorkteams request was truncated, the response includes a NextToken. To retrieve the next set of labeling jobs, use the token in the next request.

" + "documentation":"

If the result of the previous ListPipelineParametersForExecution request was truncated, the response includes a NextToken. To retrieve the next set of parameters, use the token in the next request.

" }, "MaxResults":{ "shape":"MaxResults", - "documentation":"

The maximum number of work teams to return in each page of the response.

", - "box":true + "documentation":"

The maximum number of parameters to return in the response.

" } } }, - "ListSubscribedWorkteamsResponse":{ + "ListPipelineParametersForExecutionResponse":{ + "type":"structure", + "members":{ + "PipelineParameters":{ + "shape":"ParameterList", + "documentation":"

Contains a list of pipeline parameters. This list can be empty.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If the result of the previous ListPipelineParametersForExecution request was truncated, the response includes a NextToken. To retrieve the next set of parameters, use the token in the next request.

" + } + } + }, + "ListPipelinesRequest":{ + "type":"structure", + "members":{ + "PipelineNamePrefix":{ + "shape":"PipelineName", + "documentation":"

The prefix of the pipeline name.

" + }, + "CreatedAfter":{ + "shape":"Timestamp", + "documentation":"

A filter that returns the pipelines that were created after a specified time.

" + }, + "CreatedBefore":{ + "shape":"Timestamp", + "documentation":"

A filter that returns the pipelines that were created before a specified time.

" + }, + "SortBy":{ + "shape":"SortPipelinesBy", + "documentation":"

The field by which to sort results. The default is CreatedTime.

" + }, + "SortOrder":{ + "shape":"SortOrder", + "documentation":"

The sort order for results.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If the result of the previous ListPipelines request was truncated, the response includes a NextToken. To retrieve the next set of pipelines, use the token in the next request.

" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of pipelines to return in the response.

" + } + } + }, + "ListPipelinesResponse":{ + "type":"structure", + "members":{ + "PipelineSummaries":{ + "shape":"PipelineSummaryList", + "documentation":"

Contains a sorted list of PipelineSummary objects matching the specified filters. Each PipelineSummary consists of PipelineArn, PipelineName, ExperimentName, PipelineDescription, CreationTime, LastModifiedTime, LastRunTime, and RoleArn. This list can be empty.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If the result of the previous ListPipelines request was truncated, the response includes a NextToken. To retrieve the next set of pipelines, use the token in the next request.

" + } + } + }, + "ListProcessingJobsRequest":{ + "type":"structure", + "members":{ + "CreationTimeAfter":{ + "shape":"Timestamp", + "documentation":"

A filter that returns only processing jobs created after the specified time.

" + }, + "CreationTimeBefore":{ + "shape":"Timestamp", + "documentation":"

A filter that returns only processing jobs created after the specified time.

" + }, + "LastModifiedTimeAfter":{ + "shape":"Timestamp", + "documentation":"

A filter that returns only processing jobs modified after the specified time.

" + }, + "LastModifiedTimeBefore":{ + "shape":"Timestamp", + "documentation":"

A filter that returns only processing jobs modified before the specified time.

" + }, + "NameContains":{ + "shape":"String", + "documentation":"

A string in the processing job name. This filter returns only processing jobs whose name contains the specified string.

" + }, + "StatusEquals":{ + "shape":"ProcessingJobStatus", + "documentation":"

A filter that retrieves only processing jobs with a specific status.

" + }, + "SortBy":{ + "shape":"SortBy", + "documentation":"

The field to sort results by. The default is CreationTime.

" + }, + "SortOrder":{ + "shape":"SortOrder", + "documentation":"

The sort order for results. The default is Ascending.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If the result of the previous ListProcessingJobs request was truncated, the response includes a NextToken. To retrieve the next set of processing jobs, use the token in the next request.

" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of processing jobs to return in the response.

", + "box":true + } + } + }, + "ListProcessingJobsResponse":{ + "type":"structure", + "required":["ProcessingJobSummaries"], + "members":{ + "ProcessingJobSummaries":{ + "shape":"ProcessingJobSummaries", + "documentation":"

An array of ProcessingJobSummary objects, each listing a processing job.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of processing jobs, use it in the subsequent request.

" + } + } + }, + "ListProjectsInput":{ + "type":"structure", + "members":{ + "CreationTimeAfter":{ + "shape":"Timestamp", + "documentation":"

A filter that returns the projects that were created after a specified time.

" + }, + "CreationTimeBefore":{ + "shape":"Timestamp", + "documentation":"

A filter that returns the projects that were created before a specified time.

" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of projects to return in the response.

" + }, + "NameContains":{ + "shape":"ProjectEntityName", + "documentation":"

A filter that returns the projects whose name contains a specified string.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If the result of the previous ListProjects request was truncated, the response includes a NextToken. To retrieve the next set of projects, use the token in the next request.

" + }, + "SortBy":{ + "shape":"ProjectSortBy", + "documentation":"

The field by which to sort results. The default is CreationTime.

" + }, + "SortOrder":{ + "shape":"ProjectSortOrder", + "documentation":"

The sort order for results. The default is Ascending.

" + } + } + }, + "ListProjectsOutput":{ + "type":"structure", + "required":["ProjectSummaryList"], + "members":{ + "ProjectSummaryList":{ + "shape":"ProjectSummaryList", + "documentation":"

A list of summaries of projects.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If the result of the previous ListCompilationJobs request was truncated, the response includes a NextToken. To retrieve the next set of model compilation jobs, use the token in the next request.

" + } + } + }, + "ListSubscribedWorkteamsRequest":{ + "type":"structure", + "members":{ + "NameContains":{ + "shape":"WorkteamName", + "documentation":"

A string in the work team name. This filter returns only work teams whose name contains the specified string.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If the result of the previous ListSubscribedWorkteams request was truncated, the response includes a NextToken. To retrieve the next set of labeling jobs, use the token in the next request.

" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of work teams to return in each page of the response.

", + "box":true + } + } + }, + "ListSubscribedWorkteamsResponse":{ "type":"structure", "required":["SubscribedWorkteams"], "members":{ @@ -11443,6 +14482,11 @@ "type":"integer", "min":1 }, + "MaximumExecutionTimeoutInSeconds":{ + "type":"integer", + "max":14400, + "min":600 + }, "MediaType":{ "type":"string", "max":64, @@ -11468,6 +14512,33 @@ "max":10, "min":1 }, + "MetadataProperties":{ + "type":"structure", + "members":{ + "CommitId":{ + "shape":"MetadataPropertyValue", + "documentation":"

The commit ID.

" + }, + "Repository":{ + "shape":"MetadataPropertyValue", + "documentation":"

The repository.

" + }, + "GeneratedBy":{ + "shape":"MetadataPropertyValue", + "documentation":"

The entity this entity was generated by.

" + }, + "ProjectId":{ + "shape":"MetadataPropertyValue", + "documentation":"

The project ID.

" + } + }, + "documentation":"

Metadata properties of the tracking entity, trial, or trial component.

" + }, + "MetadataPropertyValue":{ + "type":"string", + "max":1024, + "pattern":".*" + }, "MetricData":{ "type":"structure", "members":{ @@ -11523,6 +14594,36 @@ "pattern":".+" }, "MetricValue":{"type":"float"}, + "MetricsSource":{ + "type":"structure", + "required":[ + "ContentType", + "S3Uri" + ], + "members":{ + "ContentType":{ + "shape":"ContentType", + "documentation":"

" + }, + "ContentDigest":{ + "shape":"ContentDigest", + "documentation":"

" + }, + "S3Uri":{ + "shape":"S3Uri", + "documentation":"

" + } + }, + "documentation":"

" + }, + "ModelApprovalStatus":{ + "type":"string", + "enum":[ + "Approved", + "Rejected", + "PendingManualApproval" + ] + }, "ModelArn":{ "type":"string", "max":2048, @@ -11554,6 +14655,52 @@ }, "documentation":"

Configures the timeout and maximum number of retries for processing a transform job invocation.

" }, + "ModelDataQuality":{ + "type":"structure", + "members":{ + "Statistics":{ + "shape":"MetricsSource", + "documentation":"

Data quality statistics for a model.

" + }, + "Constraints":{ + "shape":"MetricsSource", + "documentation":"

Data quality constraints for a model.

" + } + }, + "documentation":"

Data quality constraints and statistics for a model.

" + }, + "ModelDigests":{ + "type":"structure", + "members":{ + "ArtifactDigest":{ + "shape":"ArtifactDigest", + "documentation":"

Provides a hash value that uniquely identifies the stored model artifacts.

" + } + }, + "documentation":"

Provides information to verify the integrity of stored model artifacts.

" + }, + "ModelMetrics":{ + "type":"structure", + "members":{ + "ModelQuality":{ + "shape":"ModelQuality", + "documentation":"

Metrics that measure the quality of a model.

" + }, + "ModelDataQuality":{ + "shape":"ModelDataQuality", + "documentation":"

Metrics that measure the quality of the input data for a model.

" + }, + "Bias":{ + "shape":"Bias", + "documentation":"

Metrics that measure bais in a model.

" + }, + "Explainability":{ + "shape":"Explainability", + "documentation":"

Metrics that help explain a model.

" + } + }, + "documentation":"

Contains metrics captured from a model.

" + }, "ModelName":{ "type":"string", "max":63, @@ -11564,6 +14711,71 @@ "max":63, "pattern":"[a-zA-Z0-9-]+" }, + "ModelPackage":{ + "type":"structure", + "members":{ + "ModelPackageName":{ + "shape":"EntityName", + "documentation":"

The name of the model.

" + }, + "ModelPackageGroupName":{ + "shape":"EntityName", + "documentation":"

The model group to which the model belongs.

" + }, + "ModelPackageVersion":{ + "shape":"ModelPackageVersion", + "documentation":"

The version number of a versioned model.

" + }, + "ModelPackageArn":{ + "shape":"ModelPackageArn", + "documentation":"

The Amazon Resource Name (ARN) of the model package.

" + }, + "ModelPackageDescription":{ + "shape":"EntityDescription", + "documentation":"

The description of the model package.

" + }, + "CreationTime":{ + "shape":"CreationTime", + "documentation":"

The time that the model package was created.

" + }, + "InferenceSpecification":{"shape":"InferenceSpecification"}, + "SourceAlgorithmSpecification":{"shape":"SourceAlgorithmSpecification"}, + "ValidationSpecification":{"shape":"ModelPackageValidationSpecification"}, + "ModelPackageStatus":{ + "shape":"ModelPackageStatus", + "documentation":"

The status of the model package. This can be one of the following values.

  • PENDING - The model package is pending being created.

  • IN_PROGRESS - The model package is in the process of being created.

  • COMPLETED - The model package was successfully created.

  • FAILED - The model package failed.

  • DELETING - The model package is in the process of being deleted.

" + }, + "ModelPackageStatusDetails":{"shape":"ModelPackageStatusDetails"}, + "CertifyForMarketplace":{ + "shape":"CertifyForMarketplace", + "documentation":"

Whether the model package is to be certified to be listed on AWS Marketplace. For information about listing model packages on AWS Marketplace, see List Your Algorithm or Model Package on AWS Marketplace.

" + }, + "ModelApprovalStatus":{ + "shape":"ModelApprovalStatus", + "documentation":"

The approval status of the model. This can be one of the following values.

  • APPROVED - The model is approved

  • REJECTED - The model is rejected.

  • PENDING_MANUAL_APPROVAL - The model is waiting for manual approval.

" + }, + "CreatedBy":{"shape":"UserContext"}, + "MetadataProperties":{"shape":"MetadataProperties"}, + "ModelMetrics":{ + "shape":"ModelMetrics", + "documentation":"

Metrics for the model.

" + }, + "LastModifiedTime":{ + "shape":"Timestamp", + "documentation":"

The last time the model package was modified.

" + }, + "LastModifiedBy":{"shape":"UserContext"}, + "ApprovalDescription":{ + "shape":"ApprovalDescription", + "documentation":"

A description provided when the model approval is set.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

A list of the tags associated with the model package. For more information, see Tagging AWS resources in the AWS General Reference Guide.

" + } + }, + "documentation":"

A versioned model that can be deployed for SageMaker inference.

" + }, "ModelPackageArn":{ "type":"string", "max":2048, @@ -11603,18 +14815,109 @@ "max":1, "min":1 }, - "ModelPackageSortBy":{ - "type":"string", - "enum":[ - "Name", - "CreationTime" - ] - }, - "ModelPackageStatus":{ - "type":"string", - "enum":[ - "Pending", - "InProgress", + "ModelPackageGroup":{ + "type":"structure", + "members":{ + "ModelPackageGroupName":{ + "shape":"EntityName", + "documentation":"

The name of the model group.

" + }, + "ModelPackageGroupArn":{ + "shape":"ModelPackageGroupArn", + "documentation":"

The Amazon Resource Name (ARN) of the model group.

" + }, + "ModelPackageGroupDescription":{ + "shape":"EntityDescription", + "documentation":"

The description for the model group.

" + }, + "CreationTime":{ + "shape":"CreationTime", + "documentation":"

The time that the model group was created.

" + }, + "CreatedBy":{"shape":"UserContext"}, + "ModelPackageGroupStatus":{ + "shape":"ModelPackageGroupStatus", + "documentation":"

The status of the model group. This can be one of the following values.

  • PENDING - The model group is pending being created.

  • IN_PROGRESS - The model group is in the process of being created.

  • COMPLETED - The model group was successfully created.

  • FAILED - The model group failed.

  • DELETING - The model group is in the process of being deleted.

  • DELETE_FAILED - SageMaker failed to delete the model group.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

A list of the tags associated with the model group. For more information, see Tagging AWS resources in the AWS General Reference Guide.

" + } + }, + "documentation":"

A group of versioned models in the model registry.

" + }, + "ModelPackageGroupArn":{ + "type":"string", + "max":2048, + "min":1, + "pattern":"arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:model-package-group/.*" + }, + "ModelPackageGroupSortBy":{ + "type":"string", + "enum":[ + "Name", + "CreationTime" + ] + }, + "ModelPackageGroupStatus":{ + "type":"string", + "enum":[ + "Pending", + "InProgress", + "Completed", + "Failed", + "Deleting", + "DeleteFailed" + ] + }, + "ModelPackageGroupSummary":{ + "type":"structure", + "required":[ + "ModelPackageGroupName", + "ModelPackageGroupArn", + "CreationTime", + "ModelPackageGroupStatus" + ], + "members":{ + "ModelPackageGroupName":{ + "shape":"EntityName", + "documentation":"

The name of the model group.

" + }, + "ModelPackageGroupArn":{ + "shape":"ModelPackageGroupArn", + "documentation":"

The Amazon Resource Name (ARN) of the model group.

" + }, + "ModelPackageGroupDescription":{ + "shape":"EntityDescription", + "documentation":"

A description of the model group.

" + }, + "CreationTime":{ + "shape":"CreationTime", + "documentation":"

The time that the model group was created.

" + }, + "ModelPackageGroupStatus":{ + "shape":"ModelPackageGroupStatus", + "documentation":"

The status of the model group.

" + } + }, + "documentation":"

Summary information about a model group.

" + }, + "ModelPackageGroupSummaryList":{ + "type":"list", + "member":{"shape":"ModelPackageGroupSummary"} + }, + "ModelPackageSortBy":{ + "type":"string", + "enum":[ + "Name", + "CreationTime" + ] + }, + "ModelPackageStatus":{ + "type":"string", + "enum":[ + "Pending", + "InProgress", "Completed", "Failed", "Deleting" @@ -11674,6 +14977,14 @@ "shape":"EntityName", "documentation":"

The name of the model package.

" }, + "ModelPackageGroupName":{ + "shape":"EntityName", + "documentation":"

If the model package is a versioned model, the model group that the versioned model belongs to.

" + }, + "ModelPackageVersion":{ + "shape":"ModelPackageVersion", + "documentation":"

If the model package is a versioned model, the version of the model.

" + }, "ModelPackageArn":{ "shape":"ModelPackageArn", "documentation":"

The Amazon Resource Name (ARN) of the model package.

" @@ -11689,6 +15000,10 @@ "ModelPackageStatus":{ "shape":"ModelPackageStatus", "documentation":"

The overall status of the model package.

" + }, + "ModelApprovalStatus":{ + "shape":"ModelApprovalStatus", + "documentation":"

The approval status of the model. This can be one of the following values.

  • APPROVED - The model is approved

  • REJECTED - The model is rejected.

  • PENDING_MANUAL_APPROVAL - The model is waiting for manual approval.

" } }, "documentation":"

Provides summary information about a model package.

" @@ -11697,6 +15012,14 @@ "type":"list", "member":{"shape":"ModelPackageSummary"} }, + "ModelPackageType":{ + "type":"string", + "enum":[ + "Versioned", + "Unversioned", + "Both" + ] + }, "ModelPackageValidationProfile":{ "type":"structure", "required":[ @@ -11739,6 +15062,24 @@ }, "documentation":"

Specifies batch transform jobs that Amazon SageMaker runs to validate your model package.

" }, + "ModelPackageVersion":{ + "type":"integer", + "min":1 + }, + "ModelQuality":{ + "type":"structure", + "members":{ + "Statistics":{ + "shape":"MetricsSource", + "documentation":"

Model quality statistics.

" + }, + "Constraints":{ + "shape":"MetricsSource", + "documentation":"

Model quality constraints.

" + } + }, + "documentation":"

Model quality statistics and constraints.

" + }, "ModelSortKey":{ "type":"string", "enum":[ @@ -11746,6 +15087,16 @@ "CreationTime" ] }, + "ModelStepMetadata":{ + "type":"structure", + "members":{ + "Arn":{ + "shape":"String256", + "documentation":"

The Amazon Resource Name (ARN) of the created model.

" + } + }, + "documentation":"

Metadata for Model steps.

" + }, "ModelSummary":{ "type":"structure", "required":[ @@ -12061,6 +15412,46 @@ "max":512, "pattern":"^(https|s3)://([^/]+)/?(.*)$" }, + "MonitoringSchedule":{ + "type":"structure", + "members":{ + "MonitoringScheduleArn":{ + "shape":"MonitoringScheduleArn", + "documentation":"

The Amazon Resource Name (ARN) of the monitoring schedule.

" + }, + "MonitoringScheduleName":{ + "shape":"MonitoringScheduleName", + "documentation":"

The name of the monitoring schedule.

" + }, + "MonitoringScheduleStatus":{ + "shape":"ScheduleStatus", + "documentation":"

The status of the monitoring schedule. This can be one of the following values.

  • PENDING - The schedule is pending being created.

  • FAILED - The schedule failed.

  • SCHEDULED - The schedule was successfully created.

  • STOPPED - The schedule was stopped.

" + }, + "FailureReason":{ + "shape":"FailureReason", + "documentation":"

If the monitoring schedule failed, the reason it failed.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

The time that the monitoring schedule was created.

" + }, + "LastModifiedTime":{ + "shape":"Timestamp", + "documentation":"

The last time the monitoring schedule was changed.

" + }, + "MonitoringScheduleConfig":{"shape":"MonitoringScheduleConfig"}, + "EndpointName":{ + "shape":"EndpointName", + "documentation":"

The endpoint that hosts the model being monitored.

" + }, + "LastMonitoringExecutionSummary":{"shape":"MonitoringExecutionSummary"}, + "Tags":{ + "shape":"TagList", + "documentation":"

A list of the tags associated with the monitoring schedlue. For more information, see Tagging AWS resources in the AWS General Reference Guide.

" + } + }, + "documentation":"

A schedule for a model monitoring job. For information about model monitor, see Amazon SageMaker Model Monitor.

" + }, "MonitoringScheduleArn":{ "type":"string", "max":256, @@ -12068,7 +15459,6 @@ }, "MonitoringScheduleConfig":{ "type":"structure", - "required":["MonitoringJobDefinition"], "members":{ "ScheduleConfig":{ "shape":"ScheduleConfig", @@ -12081,11 +15471,15 @@ }, "documentation":"

Configures the monitoring schedule and defines the monitoring job.

" }, + "MonitoringScheduleList":{ + "type":"list", + "member":{"shape":"MonitoringSchedule"} + }, "MonitoringScheduleName":{ "type":"string", "max":63, "min":1, - "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*$" + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}$" }, "MonitoringScheduleSortKey":{ "type":"string", @@ -12464,6 +15858,48 @@ }, "documentation":"

Specifies the number of training jobs that this hyperparameter tuning job launched, categorized by the status of their objective metric. The objective metric status shows whether the final objective metric for the training job has been evaluated by the tuning job and used in the hyperparameter tuning process.

" }, + "OfflineStoreConfig":{ + "type":"structure", + "required":["S3StorageConfig"], + "members":{ + "S3StorageConfig":{ + "shape":"S3StorageConfig", + "documentation":"

The Amazon Simple Storage (Amazon S3) location of OfflineStore.

" + }, + "DisableGlueTableCreation":{ + "shape":"Boolean", + "documentation":"

Set to True to disable the automatic creation of an AWS Glue table when configuring an OfflineStore.

" + }, + "DataCatalogConfig":{ + "shape":"DataCatalogConfig", + "documentation":"

The meta data of the Glue table that is autogenerated when an OfflineStore is created.

" + } + }, + "documentation":"

The configuration of an OfflineStore.

Provide an OfflineStoreConfig in a request to CreateFeatureGroup to create an OfflineStore.

To encrypt an OfflineStore using at rest data encryption, specify AWS Key Management Service (KMS) key ID, or KMSKeyId, in S3StorageConfig.

" + }, + "OfflineStoreStatus":{ + "type":"structure", + "required":["Status"], + "members":{ + "Status":{ + "shape":"OfflineStoreStatusValue", + "documentation":"

An OfflineStore status.

" + }, + "BlockedReason":{ + "shape":"BlockedReason", + "documentation":"

The justification for why the OfflineStoreStatus is Blocked (if applicable).

" + } + }, + "documentation":"

The status of OfflineStore.

" + }, + "OfflineStoreStatusValue":{ + "type":"string", + "enum":[ + "Active", + "Blocked", + "Disabled" + ] + }, "OidcConfig":{ "type":"structure", "required":[ @@ -12562,6 +15998,30 @@ }, "documentation":"

A list of user groups that exist in your OIDC Identity Provider (IdP). One to ten groups can be used to create a single private work team. When you add a user group to the list of Groups, you can add that user group to one or more private work teams. If you add a user group to a private work team, all workers in that user group are added to the work team.

" }, + "OnlineStoreConfig":{ + "type":"structure", + "members":{ + "SecurityConfig":{ + "shape":"OnlineStoreSecurityConfig", + "documentation":"

Use to specify KMS Key ID (KMSKeyId) for at-rest encryption of your OnlineStore.

" + }, + "EnableOnlineStore":{ + "shape":"Boolean", + "documentation":"

Turn OnlineStore off by specifying False for the EnableOnlineStore flag. Turn OnlineStore on by specifying True for the EnableOnlineStore flag.

The default value is False.

" + } + }, + "documentation":"

Use this to specify the AWS Key Management Service (KMS) Key ID, or KMSKeyId, for at rest data encryption. You can turn OnlineStore on or off by specifying the EnableOnlineStore flag at General Assembly; the default value is False.

" + }, + "OnlineStoreSecurityConfig":{ + "type":"structure", + "members":{ + "KmsKeyId":{ + "shape":"KmsKeyId", + "documentation":"

The ID of the AWS Key Management Service (AWS KMS) key that SageMaker Feature Store uses to encrypt the Amazon S3 objects at rest using Amazon S3 server-side encryption.

The caller (either IAM user or IAM role) of CreateFeatureGroup must have below permissions to the OnlineStore KmsKeyId:

  • \"kms:Encrypt\"

  • \"kms:Decrypt\"

  • \"kms:DescribeKey\"

  • \"kms:CreateGrant\"

  • \"kms:RetireGrant\"

  • \"kms:ReEncryptFrom\"

  • \"kms:ReEncryptTo\"

  • \"kms:GenerateDataKey\"

  • \"kms:ListAliases\"

  • \"kms:ListGrants\"

  • \"kms:RevokeGrant\"

The caller (either IAM user or IAM role) to all DataPlane operations (PutRecord, GetRecord, DeleteRecord) must have the following permissions to the KmsKeyId:

  • \"kms:Decrypt\"

" + } + }, + "documentation":"

The security configuration for OnlineStore.

" + }, "Operator":{ "type":"string", "enum":[ @@ -12609,6 +16069,10 @@ "CompilerOptions":{ "shape":"CompilerOptions", "documentation":"

Specifies additional parameters for compiler options in JSON format. The compiler options are TargetPlatform specific. It is required for NVIDIA accelerators and highly recommended for CPU compilations. For any other cases, it is optional to specify CompilerOptions.

  • CPU: Compilation for CPU supports the following compiler options.

    • mcpu: CPU micro-architecture. For example, {'mcpu': 'skylake-avx512'}

    • mattr: CPU flags. For example, {'mattr': ['+neon', '+vfpv4']}

  • ARM: Details of ARM CPU compilations.

    • NEON: NEON is an implementation of the Advanced SIMD extension used in ARMv7 processors.

      For example, add {'mattr': ['+neon']} to the compiler options if compiling for ARM 32-bit platform with the NEON support.

  • NVIDIA: Compilation for NVIDIA GPU supports the following compiler options.

    • gpu_code: Specifies the targeted architecture.

    • trt-ver: Specifies the TensorRT versions in x.y.z. format.

    • cuda-ver: Specifies the CUDA version in x.y format.

    For example, {'gpu-code': 'sm_72', 'trt-ver': '6.0.1', 'cuda-ver': '10.1'}

  • ANDROID: Compilation for the Android OS supports the following compiler options:

    • ANDROID_PLATFORM: Specifies the Android API levels. Available levels range from 21 to 29. For example, {'ANDROID_PLATFORM': 28}.

    • mattr: Add {'mattr': ['+neon']} to compiler options if compiling for ARM 32-bit platform with NEON support.

  • INFERENTIA: Compilation for target ml_inf1 uses compiler options passed in as a JSON string. For example, \"CompilerOptions\": \"\\\"--verbose 1 --num-neuroncores 2 -O2\\\"\".

    For information about supported compiler options, see Neuron Compiler CLI.

  • CoreML: Compilation for the CoreML OutputConfig$TargetDevice supports the following compiler options:

    • class_labels: Specifies the classification labels file name inside input tar.gz file. For example, {\"class_labels\": \"imagenet_labels_1000.txt\"}. Labels inside the txt file should be separated by newlines.

" + }, + "KmsKeyId":{ + "shape":"KmsKeyId", + "documentation":"

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt data on the storage volume after compilation job. If you don't provide a KMS key ID, Amazon SageMaker uses the default KMS key for Amazon S3 for your role's account

The KmsKeyId can be any of the following formats:

  • Key ID: 1234abcd-12ab-34cd-56ef-1234567890ab

  • Key ARN: arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab

  • Alias name: alias/ExampleAlias

  • Alias name ARN: arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias

" } }, "documentation":"

Contains information about the output location for the compiled model and the target device that the model runs on. TargetDevice and TargetPlatform are mutually exclusive, so you need to choose one between the two to specify your target device or platform. If you cannot find your device you want to use from the TargetDevice list, use TargetPlatform to describe the platform of your edge device and CompilerOptions if there are specific settings that are required or recommended to use for particular TargetPlatform.

" @@ -12633,11 +16097,35 @@ "max":8192, "pattern":".*" }, + "Parameter":{ + "type":"structure", + "required":[ + "Name", + "Value" + ], + "members":{ + "Name":{ + "shape":"PipelineParameterName", + "documentation":"

The name of the parameter to assign a value to. This parameter name must match a named parameter in the pipeline definition.

" + }, + "Value":{ + "shape":"String1024", + "documentation":"

The literal value for the parameter.

" + } + }, + "documentation":"

Assigns a value to a named Pipeline parameter.

" + }, "ParameterKey":{ "type":"string", "max":256, "pattern":".*" }, + "ParameterList":{ + "type":"list", + "member":{"shape":"Parameter"}, + "max":50, + "min":0 + }, "ParameterName":{ "type":"string", "max":256, @@ -12654,84 +16142,384 @@ "shape":"ContinuousParameterRangeSpecification", "documentation":"

A ContinuousParameterRangeSpecification object that defines the possible values for a continuous hyperparameter.

" }, - "CategoricalParameterRangeSpecification":{ - "shape":"CategoricalParameterRangeSpecification", - "documentation":"

A CategoricalParameterRangeSpecification object that defines the possible values for a categorical hyperparameter.

" + "CategoricalParameterRangeSpecification":{ + "shape":"CategoricalParameterRangeSpecification", + "documentation":"

A CategoricalParameterRangeSpecification object that defines the possible values for a categorical hyperparameter.

" + } + }, + "documentation":"

Defines the possible values for categorical, continuous, and integer hyperparameters to be used by an algorithm.

" + }, + "ParameterRanges":{ + "type":"structure", + "members":{ + "IntegerParameterRanges":{ + "shape":"IntegerParameterRanges", + "documentation":"

The array of IntegerParameterRange objects that specify ranges of integer hyperparameters that a hyperparameter tuning job searches.

" + }, + "ContinuousParameterRanges":{ + "shape":"ContinuousParameterRanges", + "documentation":"

The array of ContinuousParameterRange objects that specify ranges of continuous hyperparameters that a hyperparameter tuning job searches.

" + }, + "CategoricalParameterRanges":{ + "shape":"CategoricalParameterRanges", + "documentation":"

The array of CategoricalParameterRange objects that specify ranges of categorical hyperparameters that a hyperparameter tuning job searches.

" + } + }, + "documentation":"

Specifies ranges of integer, continuous, and categorical hyperparameters that a hyperparameter tuning job searches. The hyperparameter tuning job launches training jobs with hyperparameter values within these ranges to find the combination of values that result in the training job with the best performance as measured by the objective metric of the hyperparameter tuning job.

You can specify a maximum of 20 hyperparameters that a hyperparameter tuning job can search over. Every possible value of a categorical parameter range counts against this limit.

" + }, + "ParameterType":{ + "type":"string", + "enum":[ + "Integer", + "Continuous", + "Categorical", + "FreeText" + ] + }, + "ParameterValue":{ + "type":"string", + "max":256, + "pattern":".*" + }, + "ParameterValues":{ + "type":"list", + "member":{"shape":"ParameterValue"}, + "max":20, + "min":1 + }, + "Parent":{ + "type":"structure", + "members":{ + "TrialName":{ + "shape":"ExperimentEntityName", + "documentation":"

The name of the trial.

" + }, + "ExperimentName":{ + "shape":"ExperimentEntityName", + "documentation":"

The name of the experiment.

" + } + }, + "documentation":"

The trial that a trial component is associated with and the experiment the trial is part of. A component might not be associated with a trial. A component can be associated with multiple trials.

" + }, + "ParentHyperParameterTuningJob":{ + "type":"structure", + "members":{ + "HyperParameterTuningJobName":{ + "shape":"HyperParameterTuningJobName", + "documentation":"

The name of the hyperparameter tuning job to be used as a starting point for a new hyperparameter tuning job.

" + } + }, + "documentation":"

A previously completed or stopped hyperparameter tuning job to be used as a starting point for a new hyperparameter tuning job.

" + }, + "ParentHyperParameterTuningJobs":{ + "type":"list", + "member":{"shape":"ParentHyperParameterTuningJob"}, + "max":5, + "min":1 + }, + "Parents":{ + "type":"list", + "member":{"shape":"Parent"} + }, + "Pipeline":{ + "type":"structure", + "members":{ + "PipelineArn":{ + "shape":"PipelineArn", + "documentation":"

The Amazon Resource Name (ARN) of the pipeline.

" + }, + "PipelineName":{ + "shape":"PipelineName", + "documentation":"

The name of the pipeline.

" + }, + "PipelineDisplayName":{ + "shape":"PipelineName", + "documentation":"

The display name of the pipeline.

" + }, + "PipelineDescription":{ + "shape":"PipelineDescription", + "documentation":"

The description of the pipeline.

" + }, + "RoleArn":{ + "shape":"RoleArn", + "documentation":"

The Amazon Resource Name (ARN) of the role that created the pipeline.

" + }, + "PipelineStatus":{ + "shape":"PipelineStatus", + "documentation":"

The status of the pipeline.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

The creation time of the pipeline.

" + }, + "LastModifiedTime":{ + "shape":"Timestamp", + "documentation":"

The time that the pipeline was last modified.

" + }, + "LastRunTime":{ + "shape":"Timestamp", + "documentation":"

The time when the pipeline was last run.

" + }, + "CreatedBy":{"shape":"UserContext"}, + "LastModifiedBy":{"shape":"UserContext"}, + "Tags":{ + "shape":"TagList", + "documentation":"

A list of tags that apply to the pipeline.

" + } + }, + "documentation":"

A SageMaker Model Building Pipeline instance.

" + }, + "PipelineArn":{ + "type":"string", + "max":256, + "pattern":"arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:pipeline/.*" + }, + "PipelineDefinition":{ + "type":"string", + "max":1048576, + "min":1, + "pattern":".*(?:[ \\r\\n\\t].*)*" + }, + "PipelineDescription":{ + "type":"string", + "max":3072, + "min":0, + "pattern":".*" + }, + "PipelineExecution":{ + "type":"structure", + "members":{ + "PipelineArn":{ + "shape":"PipelineArn", + "documentation":"

The Amazon Resource Name (ARN) of the pipeline that was executed.

" + }, + "PipelineExecutionArn":{ + "shape":"PipelineExecutionArn", + "documentation":"

The Amazon Resource Name (ARN) of the pipeline execution.

" + }, + "PipelineExecutionDisplayName":{ + "shape":"PipelineExecutionName", + "documentation":"

The display name of the pipeline execution.

" + }, + "PipelineExecutionStatus":{ + "shape":"PipelineExecutionStatus", + "documentation":"

The status of the pipeline status.

" + }, + "PipelineExecutionDescription":{ + "shape":"PipelineExecutionDescription", + "documentation":"

The description of the pipeline execution.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

The creation time of the pipeline execution.

" + }, + "LastModifiedTime":{ + "shape":"Timestamp", + "documentation":"

The time that the pipeline execution was last modified.

" + }, + "CreatedBy":{"shape":"UserContext"}, + "LastModifiedBy":{"shape":"UserContext"}, + "PipelineParameters":{ + "shape":"ParameterList", + "documentation":"

Contains a list of pipeline parameters. This list can be empty.

" + } + }, + "documentation":"

An execution of a pipeline.

" + }, + "PipelineExecutionArn":{ + "type":"string", + "max":256, + "pattern":"^arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:pipeline\\/.*\\/execution\\/.*$" + }, + "PipelineExecutionDescription":{ + "type":"string", + "max":3072, + "min":0, + "pattern":".*" + }, + "PipelineExecutionName":{ + "type":"string", + "max":82, + "min":1, + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,81}" + }, + "PipelineExecutionStatus":{ + "type":"string", + "enum":[ + "Executing", + "Stopping", + "Stopped", + "Failed", + "Succeeded" + ] + }, + "PipelineExecutionStep":{ + "type":"structure", + "members":{ + "StepName":{ + "shape":"StepName", + "documentation":"

The name of the step that is executed.

" + }, + "StartTime":{ + "shape":"Timestamp", + "documentation":"

The time that the step started executing.

" + }, + "EndTime":{ + "shape":"Timestamp", + "documentation":"

The time that the step stopped executing.

" + }, + "StepStatus":{ + "shape":"StepStatus", + "documentation":"

The status of the step execution.

" + }, + "CacheHitResult":{ + "shape":"CacheHitResult", + "documentation":"

If this pipeline execution step was cached, details on the cache hit.

" + }, + "FailureReason":{ + "shape":"FailureReason", + "documentation":"

The reason why the step failed execution. This is only returned if the step failed its execution.

" + }, + "Metadata":{ + "shape":"PipelineExecutionStepMetadata", + "documentation":"

The metadata for the step execution.

" + } + }, + "documentation":"

An execution of a step in a pipeline.

" + }, + "PipelineExecutionStepList":{ + "type":"list", + "member":{"shape":"PipelineExecutionStep"}, + "max":100, + "min":0 + }, + "PipelineExecutionStepMetadata":{ + "type":"structure", + "members":{ + "TrainingJob":{ + "shape":"TrainingJobStepMetadata", + "documentation":"

The Amazon Resource Name (ARN) of the training job that was run by this step execution.

" + }, + "ProcessingJob":{ + "shape":"ProcessingJobStepMetadata", + "documentation":"

The Amazon Resource Name (ARN) of the processing job that was run by this step execution.

" + }, + "TransformJob":{ + "shape":"TransformJobStepMetadata", + "documentation":"

The Amazon Resource Name (ARN) of the transform job that was run by this step execution.

" + }, + "Model":{ + "shape":"ModelStepMetadata", + "documentation":"

Metadata for the Model step.

" + }, + "RegisterModel":{ + "shape":"RegisterModelStepMetadata", + "documentation":"

Metadata for the RegisterModel step.

" + }, + "Condition":{ + "shape":"ConditionStepMetadata", + "documentation":"

If this is a Condition step metadata object, details on the condition.

" } }, - "documentation":"

Defines the possible values for categorical, continuous, and integer hyperparameters to be used by an algorithm.

" + "documentation":"

Metadata for a step execution.

" }, - "ParameterRanges":{ + "PipelineExecutionSummary":{ "type":"structure", "members":{ - "IntegerParameterRanges":{ - "shape":"IntegerParameterRanges", - "documentation":"

The array of IntegerParameterRange objects that specify ranges of integer hyperparameters that a hyperparameter tuning job searches.

" + "PipelineExecutionArn":{ + "shape":"PipelineExecutionArn", + "documentation":"

The Amazon Resource Name (ARN) of the pipeline execution.

" }, - "ContinuousParameterRanges":{ - "shape":"ContinuousParameterRanges", - "documentation":"

The array of ContinuousParameterRange objects that specify ranges of continuous hyperparameters that a hyperparameter tuning job searches.

" + "StartTime":{ + "shape":"Timestamp", + "documentation":"

The start time of the pipeline execution.

" }, - "CategoricalParameterRanges":{ - "shape":"CategoricalParameterRanges", - "documentation":"

The array of CategoricalParameterRange objects that specify ranges of categorical hyperparameters that a hyperparameter tuning job searches.

" + "PipelineExecutionStatus":{ + "shape":"PipelineExecutionStatus", + "documentation":"

The status of the pipeline execution.

" + }, + "PipelineExecutionDescription":{ + "shape":"PipelineExecutionDescription", + "documentation":"

The description of the pipeline execution.

" + }, + "PipelineExecutionDisplayName":{ + "shape":"PipelineExecutionName", + "documentation":"

The display name of the pipeline execution.

" } }, - "documentation":"

Specifies ranges of integer, continuous, and categorical hyperparameters that a hyperparameter tuning job searches. The hyperparameter tuning job launches training jobs with hyperparameter values within these ranges to find the combination of values that result in the training job with the best performance as measured by the objective metric of the hyperparameter tuning job.

You can specify a maximum of 20 hyperparameters that a hyperparameter tuning job can search over. Every possible value of a categorical parameter range counts against this limit.

" + "documentation":"

A pipeline execution summary.

" }, - "ParameterType":{ + "PipelineExecutionSummaryList":{ + "type":"list", + "member":{"shape":"PipelineExecutionSummary"}, + "max":100, + "min":0 + }, + "PipelineName":{ "type":"string", - "enum":[ - "Integer", - "Continuous", - "Categorical", - "FreeText" - ] + "max":256, + "min":1, + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,255}" }, - "ParameterValue":{ + "PipelineParameterName":{ "type":"string", "max":256, - "pattern":".*" + "min":1, + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,255}$" }, - "ParameterValues":{ - "type":"list", - "member":{"shape":"ParameterValue"}, - "max":20, - "min":1 + "PipelineStatus":{ + "type":"string", + "enum":["Active"] }, - "Parent":{ + "PipelineSummary":{ "type":"structure", "members":{ - "TrialName":{ - "shape":"ExperimentEntityName", - "documentation":"

The name of the trial.

" + "PipelineArn":{ + "shape":"PipelineArn", + "documentation":"

The Amazon Resource Name (ARN) of the pipeline.

" }, - "ExperimentName":{ - "shape":"ExperimentEntityName", - "documentation":"

The name of the experiment.

" - } - }, - "documentation":"

The trial that a trial component is associated with and the experiment the trial is part of. A component might not be associated with a trial. A component can be associated with multiple trials.

" - }, - "ParentHyperParameterTuningJob":{ - "type":"structure", - "members":{ - "HyperParameterTuningJobName":{ - "shape":"HyperParameterTuningJobName", - "documentation":"

The name of the hyperparameter tuning job to be used as a starting point for a new hyperparameter tuning job.

" + "PipelineName":{ + "shape":"PipelineName", + "documentation":"

The name of the pipeline.

" + }, + "PipelineDisplayName":{ + "shape":"PipelineName", + "documentation":"

The display name of the pipeline.

" + }, + "PipelineDescription":{ + "shape":"PipelineDescription", + "documentation":"

The description of the pipeline.

" + }, + "RoleArn":{ + "shape":"RoleArn", + "documentation":"

The Amazon Resource Name (ARN) that the pipeline used to execute.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

The creation time of the pipeline.

" + }, + "LastModifiedTime":{ + "shape":"Timestamp", + "documentation":"

The time that the pipeline was last modified.

" + }, + "LastExecutionTime":{ + "shape":"Timestamp", + "documentation":"

The last time that a pipeline execution began.

" } }, - "documentation":"

A previously completed or stopped hyperparameter tuning job to be used as a starting point for a new hyperparameter tuning job.

" + "documentation":"

A summary of a pipeline.

" }, - "ParentHyperParameterTuningJobs":{ + "PipelineSummaryList":{ "type":"list", - "member":{"shape":"ParentHyperParameterTuningJob"}, - "max":5, - "min":1 + "member":{"shape":"PipelineSummary"}, + "max":100, + "min":0 }, - "Parents":{ - "type":"list", - "member":{"shape":"Parent"} + "PolicyString":{ + "type":"string", + "max":20480, + "min":1, + "pattern":".*" }, "PresignedDomainUrl":{"type":"string"}, "ProblemType":{ @@ -12785,23 +16573,39 @@ "max":256, "pattern":"[\\S\\s]*" }, + "ProcessingFeatureStoreOutput":{ + "type":"structure", + "required":["FeatureGroupName"], + "members":{ + "FeatureGroupName":{ + "shape":"FeatureGroupName", + "documentation":"

The name of the Amazon SageMaker FeatureGroup to use as the destination for processing job output.

" + } + }, + "documentation":"

Configuration for processing job outputs in Amazon SageMaker Feature Store.

" + }, "ProcessingInput":{ "type":"structure", - "required":[ - "InputName", - "S3Input" - ], + "required":["InputName"], "members":{ "InputName":{ "shape":"String", "documentation":"

The name of the inputs for the processing job.

" }, + "AppManaged":{ + "shape":"AppManaged", + "documentation":"

When True, input operations such as data download are managed natively by the processing job application. When False (default), input operations are managed by Amazon SageMaker.

" + }, "S3Input":{ "shape":"ProcessingS3Input", - "documentation":"

The S3 inputs for the processing job.

" + "documentation":"

Configuration for processing job inputs in Amazon S3.

" + }, + "DatasetDefinition":{ + "shape":"DatasetDefinition", + "documentation":"

Configuration for a Dataset Definition input.

" } }, - "documentation":"

The inputs for a processing job.

" + "documentation":"

The inputs for a processing job. The processing input must specify exactly one of either S3Input or DatasetDefinition types.

" }, "ProcessingInputs":{ "type":"list", @@ -12862,7 +16666,7 @@ "members":{ "ProcessingInputs":{ "shape":"ProcessingInputs", - "documentation":"

For each input, data is downloaded from S3 into the processing container before the processing job begins running if \"S3InputMode\" is set to File.

" + "documentation":"

List of input configurations for the processing job.

" }, "ProcessingOutputConfig":{"shape":"ProcessingOutputConfig"}, "ProcessingJobName":{ @@ -12942,7 +16746,7 @@ "type":"string", "max":63, "min":1, - "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*" + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}" }, "ProcessingJobStatus":{ "type":"string", @@ -12954,6 +16758,16 @@ "Stopped" ] }, + "ProcessingJobStepMetadata":{ + "type":"structure", + "members":{ + "Arn":{ + "shape":"ProcessingJobArn", + "documentation":"

The Amazon Resource Name (ARN) of the processing job.

" + } + }, + "documentation":"

Metadata for a processing job step.

" + }, "ProcessingJobSummaries":{ "type":"list", "member":{"shape":"ProcessingJobSummary"} @@ -13014,10 +16828,7 @@ }, "ProcessingOutput":{ "type":"structure", - "required":[ - "OutputName", - "S3Output" - ], + "required":["OutputName"], "members":{ "OutputName":{ "shape":"String", @@ -13026,9 +16837,17 @@ "S3Output":{ "shape":"ProcessingS3Output", "documentation":"

Configuration for processing job outputs in Amazon S3.

" + }, + "FeatureStoreOutput":{ + "shape":"ProcessingFeatureStoreOutput", + "documentation":"

Configuration for processing job outputs in Amazon SageMaker Feature Store. This processing output type is only supported when AppManaged is specified.

" + }, + "AppManaged":{ + "shape":"AppManaged", + "documentation":"

When True, output operations such as data upload are managed natively by the processing job application. When False (default), output operations are managed by Amazon SageMaker.

" } }, - "documentation":"

Describes the results of a processing job.

" + "documentation":"

Describes the results of a processing job. The processing output must specify exactly one of either S3Output or FeatureStoreOutput types.

" }, "ProcessingOutputConfig":{ "type":"structure", @@ -13036,7 +16855,7 @@ "members":{ "Outputs":{ "shape":"ProcessingOutputs", - "documentation":"

Output configuration information for a processing job.

" + "documentation":"

List of output configurations for the processing job.

" }, "KmsKeyId":{ "shape":"KmsKeyId", @@ -13087,9 +16906,7 @@ "type":"structure", "required":[ "S3Uri", - "LocalPath", - "S3DataType", - "S3InputMode" + "S3DataType" ], "members":{ "S3Uri":{ @@ -13098,7 +16915,7 @@ }, "LocalPath":{ "shape":"ProcessingLocalPath", - "documentation":"

The local path to the Amazon S3 bucket where you want Amazon SageMaker to download the inputs to run a processing job. LocalPath is an absolute path to the input data.

" + "documentation":"

The local path to the Amazon S3 bucket where you want Amazon SageMaker to download the inputs to run a processing job. LocalPath is an absolute path to the input data. This is a required parameter when AppManaged is False (default).

" }, "S3DataType":{ "shape":"ProcessingS3DataType", @@ -13106,7 +16923,7 @@ }, "S3InputMode":{ "shape":"ProcessingS3InputMode", - "documentation":"

Whether to use File or Pipe input mode. In File mode, Amazon SageMaker copies the data from the input source onto the local Amazon Elastic Block Store (Amazon EBS) volumes before starting your training algorithm. This is the most commonly used input mode. In Pipe mode, Amazon SageMaker streams input data from the source directly to your algorithm without using the EBS volume.

" + "documentation":"

Whether to use File or Pipe input mode. In File mode, Amazon SageMaker copies the data from the input source onto the local Amazon Elastic Block Store (Amazon EBS) volumes before starting your training algorithm. This is the most commonly used input mode. In Pipe mode, Amazon SageMaker streams input data from the source directly to your algorithm without using the EBS volume.This is a required parameter when AppManaged is False (default).

" }, "S3DataDistributionType":{ "shape":"ProcessingS3DataDistributionType", @@ -13117,7 +16934,7 @@ "documentation":"

Whether to use Gzip compression for Amazon S3 storage.

" } }, - "documentation":"

Information about where and how you want to obtain the inputs for an processing job.

" + "documentation":"

Configuration for processing job inputs in Amazon S3.

" }, "ProcessingS3InputMode":{ "type":"string", @@ -13147,7 +16964,7 @@ "documentation":"

Whether to upload the results of the processing job continuously or after the job completes.

" } }, - "documentation":"

Information about where and how you want to store the results of an processing job.

" + "documentation":"

Configuration for processing job outputs in Amazon S3.

" }, "ProcessingS3UploadMode":{ "type":"string", @@ -13341,6 +17158,91 @@ "member":{"shape":"ProductionVariantSummary"}, "min":1 }, + "ProjectArn":{ + "type":"string", + "max":2048, + "min":1, + "pattern":"arn:aws[a-z\\-]*:sagemaker:[a-z0-9\\-]*:[0-9]{12}:project:.*" + }, + "ProjectEntityName":{ + "type":"string", + "max":32, + "min":1, + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,31}" + }, + "ProjectId":{ + "type":"string", + "max":20, + "min":1, + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*" + }, + "ProjectSortBy":{ + "type":"string", + "enum":[ + "Name", + "CreationTime" + ] + }, + "ProjectSortOrder":{ + "type":"string", + "enum":[ + "Ascending", + "Descending" + ] + }, + "ProjectStatus":{ + "type":"string", + "enum":[ + "Pending", + "CreateInProgress", + "CreateCompleted", + "CreateFailed", + "DeleteInProgress", + "DeleteFailed", + "DeleteCompleted" + ] + }, + "ProjectSummary":{ + "type":"structure", + "required":[ + "ProjectName", + "ProjectArn", + "ProjectId", + "CreationTime", + "ProjectStatus" + ], + "members":{ + "ProjectName":{ + "shape":"ProjectEntityName", + "documentation":"

The name of the project.

" + }, + "ProjectDescription":{ + "shape":"EntityDescription", + "documentation":"

The description of the project.

" + }, + "ProjectArn":{ + "shape":"ProjectArn", + "documentation":"

The Amazon Resource Name (ARN) of the project.

" + }, + "ProjectId":{ + "shape":"ProjectId", + "documentation":"

The ID of the project.

" + }, + "CreationTime":{ + "shape":"Timestamp", + "documentation":"

The time that the project was created.

" + }, + "ProjectStatus":{ + "shape":"ProjectStatus", + "documentation":"

The status of the project.

" + } + }, + "documentation":"

Information about a project.

" + }, + "ProjectSummaryList":{ + "type":"list", + "member":{"shape":"ProjectSummary"} + }, "PropertyNameHint":{ "type":"string", "max":100, @@ -13372,6 +17274,39 @@ "type":"list", "member":{"shape":"PropertyNameSuggestion"} }, + "ProvisionedProductStatusMessage":{ + "type":"string", + "pattern":".*" + }, + "ProvisioningParameter":{ + "type":"structure", + "members":{ + "Key":{ + "shape":"ProvisioningParameterKey", + "documentation":"

The key that identifies a provisioning parameter.

" + }, + "Value":{ + "shape":"ProvisioningParameterValue", + "documentation":"

The value of the provisioning parameter.

" + } + }, + "documentation":"

A key value pair used when you provision a project as a service catalog product. For information, see What is AWS Service Catalog.

" + }, + "ProvisioningParameterKey":{ + "type":"string", + "max":1000, + "min":1, + "pattern":".*" + }, + "ProvisioningParameterValue":{ + "type":"string", + "max":4096, + "pattern":".*" + }, + "ProvisioningParameters":{ + "type":"list", + "member":{"shape":"ProvisioningParameter"} + }, "PublicWorkforceTaskPrice":{ "type":"structure", "members":{ @@ -13382,6 +17317,33 @@ }, "documentation":"

Defines the amount of money paid to an Amazon Mechanical Turk worker for each task performed.

Use one of the following prices for bounding box tasks. Prices are in US dollars and should be based on the complexity of the task; the longer it takes in your initial testing, the more you should offer.

  • 0.036

  • 0.048

  • 0.060

  • 0.072

  • 0.120

  • 0.240

  • 0.360

  • 0.480

  • 0.600

  • 0.720

  • 0.840

  • 0.960

  • 1.080

  • 1.200

Use one of the following prices for image classification, text classification, and custom tasks. Prices are in US dollars.

  • 0.012

  • 0.024

  • 0.036

  • 0.048

  • 0.060

  • 0.072

  • 0.120

  • 0.240

  • 0.360

  • 0.480

  • 0.600

  • 0.720

  • 0.840

  • 0.960

  • 1.080

  • 1.200

Use one of the following prices for semantic segmentation tasks. Prices are in US dollars.

  • 0.840

  • 0.960

  • 1.080

  • 1.200

Use one of the following prices for Textract AnalyzeDocument Important Form Key Amazon Augmented AI review tasks. Prices are in US dollars.

  • 2.400

  • 2.280

  • 2.160

  • 2.040

  • 1.920

  • 1.800

  • 1.680

  • 1.560

  • 1.440

  • 1.320

  • 1.200

  • 1.080

  • 0.960

  • 0.840

  • 0.720

  • 0.600

  • 0.480

  • 0.360

  • 0.240

  • 0.120

  • 0.072

  • 0.060

  • 0.048

  • 0.036

  • 0.024

  • 0.012

Use one of the following prices for Rekognition DetectModerationLabels Amazon Augmented AI review tasks. Prices are in US dollars.

  • 1.200

  • 1.080

  • 0.960

  • 0.840

  • 0.720

  • 0.600

  • 0.480

  • 0.360

  • 0.240

  • 0.120

  • 0.072

  • 0.060

  • 0.048

  • 0.036

  • 0.024

  • 0.012

Use one of the following prices for Amazon Augmented AI custom human review tasks. Prices are in US dollars.

  • 1.200

  • 1.080

  • 0.960

  • 0.840

  • 0.720

  • 0.600

  • 0.480

  • 0.360

  • 0.240

  • 0.120

  • 0.072

  • 0.060

  • 0.048

  • 0.036

  • 0.024

  • 0.012

" }, + "PutModelPackageGroupPolicyInput":{ + "type":"structure", + "required":[ + "ModelPackageGroupName", + "ResourcePolicy" + ], + "members":{ + "ModelPackageGroupName":{ + "shape":"EntityName", + "documentation":"

The name of the model group to add a resource policy to.

" + }, + "ResourcePolicy":{ + "shape":"PolicyString", + "documentation":"

The resource policy for the model group.

" + } + } + }, + "PutModelPackageGroupPolicyOutput":{ + "type":"structure", + "required":["ModelPackageGroupArn"], + "members":{ + "ModelPackageGroupArn":{ + "shape":"ModelPackageGroupArn", + "documentation":"

The Amazon Resource Name (ARN) of the model package group.

" + } + } + }, "RealtimeInferenceInstanceTypes":{ "type":"list", "member":{"shape":"ProductionVariantInstanceType"} @@ -13393,6 +17355,96 @@ "RecordIO" ] }, + "RedshiftClusterId":{ + "type":"string", + "documentation":"

The Redshift cluster Identifier.

", + "max":63, + "min":1, + "pattern":".*" + }, + "RedshiftDatabase":{ + "type":"string", + "documentation":"

The name of the Redshift database used in Redshift query execution.

", + "max":64, + "min":1, + "pattern":".*" + }, + "RedshiftDatasetDefinition":{ + "type":"structure", + "required":[ + "ClusterId", + "Database", + "DbUser", + "QueryString", + "ClusterRoleArn", + "OutputS3Uri", + "OutputFormat" + ], + "members":{ + "ClusterId":{"shape":"RedshiftClusterId"}, + "Database":{"shape":"RedshiftDatabase"}, + "DbUser":{"shape":"RedshiftUserName"}, + "QueryString":{"shape":"RedshiftQueryString"}, + "ClusterRoleArn":{ + "shape":"RoleArn", + "documentation":"

The IAM role attached to your Redshift cluster that Amazon SageMaker uses to generate datasets.

" + }, + "OutputS3Uri":{ + "shape":"S3Uri", + "documentation":"

The location in Amazon S3 where the Redshift query results are stored.

" + }, + "KmsKeyId":{ + "shape":"KmsKeyId", + "documentation":"

The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt data from a Redshift execution.

" + }, + "OutputFormat":{"shape":"RedshiftResultFormat"}, + "OutputCompression":{"shape":"RedshiftResultCompressionType"} + }, + "documentation":"

Configuration for Redshift Dataset Definition input.

" + }, + "RedshiftQueryString":{ + "type":"string", + "documentation":"

The SQL query statements to be executed.

", + "max":4096, + "min":1, + "pattern":"[\\s\\S]+" + }, + "RedshiftResultCompressionType":{ + "type":"string", + "documentation":"

The compression used for Redshift query results.

", + "enum":[ + "None", + "GZIP", + "BZIP2", + "ZSTD", + "SNAPPY" + ] + }, + "RedshiftResultFormat":{ + "type":"string", + "documentation":"

The data storage format for Redshift query results.

", + "enum":[ + "PARQUET", + "CSV" + ] + }, + "RedshiftUserName":{ + "type":"string", + "documentation":"

The database user name used in Redshift query execution.

", + "max":128, + "min":1, + "pattern":".*" + }, + "RegisterModelStepMetadata":{ + "type":"structure", + "members":{ + "Arn":{ + "shape":"String256", + "documentation":"

The Amazon Resource Name (ARN) of the model package.

" + } + }, + "documentation":"

Metadata for a register model job step.

" + }, "RenderUiTemplateRequest":{ "type":"structure", "required":[ @@ -13490,7 +17542,7 @@ "ResourceArn":{ "type":"string", "max":256, - "pattern":"arn:.*" + "pattern":"arn:aws[a-z-]*:sagemaker:[a-z0-9-]*:[0-9]{12}:.+" }, "ResourceConfig":{ "type":"structure", @@ -13595,7 +17647,13 @@ "TrainingJob", "Experiment", "ExperimentTrial", - "ExperimentTrialComponent" + "ExperimentTrialComponent", + "Endpoint", + "ModelPackage", + "ModelPackageGroup", + "Pipeline", + "PipelineExecution", + "FeatureGroup" ] }, "ResponseMIMEType":{ @@ -13658,7 +17716,7 @@ "type":"map", "key":{"shape":"ConfigKey"}, "value":{"shape":"ConfigValue"}, - "max":20, + "max":100, "min":0 }, "S3DataDistribution":{ @@ -13702,11 +17760,33 @@ "AugmentedManifestFile" ] }, + "S3StorageConfig":{ + "type":"structure", + "required":["S3Uri"], + "members":{ + "S3Uri":{ + "shape":"S3Uri", + "documentation":"

The S3 URI, or location in Amazon S3, of OfflineStore.

S3 URIs have a format similar to the following: s3://example-bucket/prefix/.

" + }, + "KmsKeyId":{ + "shape":"KmsKeyId", + "documentation":"

The AWS Key Management Service (KMS) key ID of the key used to encrypt any objects written into the OfflineStore S3 location.

The IAM roleARN that is passed as a parameter to CreateFeatureGroup must have below permissions to the KmsKeyId:

  • \"kms:GenerateDataKey\"

" + } + }, + "documentation":"

The Amazon Simple Storage (Amazon S3) location and and security configuration for OfflineStore.

" + }, "S3Uri":{ "type":"string", "max":1024, "pattern":"^(https|s3)://([^/]+)/?(.*)$" }, + "SagemakerServicecatalogStatus":{ + "type":"string", + "enum":[ + "Enabled", + "Disabled" + ] + }, "SamplingPercentage":{ "type":"integer", "max":100, @@ -13783,7 +17863,13 @@ "TrialComponent":{ "shape":"TrialComponent", "documentation":"

The properties of a trial component.

" - } + }, + "Endpoint":{"shape":"Endpoint"}, + "ModelPackage":{"shape":"ModelPackage"}, + "ModelPackageGroup":{"shape":"ModelPackageGroup"}, + "Pipeline":{"shape":"Pipeline"}, + "PipelineExecution":{"shape":"PipelineExecution"}, + "FeatureGroup":{"shape":"FeatureGroup"} }, "documentation":"

A single resource returned as part of the Search API response.

" }, @@ -13858,7 +17944,8 @@ "Completed", "Failed", "Interrupted", - "MaxWaitTimeExceeded" + "MaxWaitTimeExceeded", + "Updating" ] }, "SecondaryStatusTransition":{ @@ -13908,6 +17995,52 @@ "max":5 }, "Seed":{"type":"long"}, + "ServiceCatalogEntityId":{ + "type":"string", + "max":100, + "min":1, + "pattern":"^[a-zA-Z0-9_\\-]*" + }, + "ServiceCatalogProvisionedProductDetails":{ + "type":"structure", + "members":{ + "ProvisionedProductId":{ + "shape":"ServiceCatalogEntityId", + "documentation":"

The ID of the provisioned product.

" + }, + "ProvisionedProductStatusMessage":{ + "shape":"ProvisionedProductStatusMessage", + "documentation":"

The current status of the product.

  • AVAILABLE - Stable state, ready to perform any operation. The most recent operation succeeded and completed.

  • UNDER_CHANGE - Transitive state. Operations performed might not have valid results. Wait for an AVAILABLE status before performing operations.

  • TAINTED - Stable state, ready to perform any operation. The stack has completed the requested operation but is not exactly what was requested. For example, a request to update to a new version failed and the stack rolled back to the current version.

  • ERROR - An unexpected error occurred. The provisioned product exists but the stack is not running. For example, CloudFormation received a parameter value that was not valid and could not launch the stack.

  • PLAN_IN_PROGRESS - Transitive state. The plan operations were performed to provision a new product, but resources have not yet been created. After reviewing the list of resources to be created, execute the plan. Wait for an AVAILABLE status before performing operations.

" + } + }, + "documentation":"

Details of a provisioned service catalog product. For information about service catalog, see What is AWS Service Catalog.

" + }, + "ServiceCatalogProvisioningDetails":{ + "type":"structure", + "required":[ + "ProductId", + "ProvisioningArtifactId" + ], + "members":{ + "ProductId":{ + "shape":"ServiceCatalogEntityId", + "documentation":"

The ID of the product to provision.

" + }, + "ProvisioningArtifactId":{ + "shape":"ServiceCatalogEntityId", + "documentation":"

The ID of the provisioning artifact.

" + }, + "PathId":{ + "shape":"ServiceCatalogEntityId", + "documentation":"

The path identifier of the product. This value is optional if the product has a default path, and required if the product has more than one path.

" + }, + "ProvisioningParameters":{ + "shape":"ProvisioningParameters", + "documentation":"

A list of key value pairs that you specify when you provision a product.

" + } + }, + "documentation":"

Details that you specify to provision a service catalog product. For information about service catalog, see .What is AWS Service Catalog.

" + }, "SessionExpirationDurationInSeconds":{ "type":"integer", "max":43200, @@ -13951,6 +18084,27 @@ "max":2048, "pattern":"arn:aws[a-z\\-]*:sns:[a-z0-9\\-]*:[0-9]{12}:[a-zA-Z0-9_.-]+" }, + "SortActionsBy":{ + "type":"string", + "enum":[ + "Name", + "CreationTime" + ] + }, + "SortArtifactsBy":{ + "type":"string", + "enum":["CreationTime"] + }, + "SortAssociationsBy":{ + "type":"string", + "enum":[ + "SourceArn", + "DestinationArn", + "SourceType", + "DestinationType", + "CreationTime" + ] + }, "SortBy":{ "type":"string", "enum":[ @@ -13959,6 +18113,13 @@ "Status" ] }, + "SortContextsBy":{ + "type":"string", + "enum":[ + "Name", + "CreationTime" + ] + }, "SortExperimentsBy":{ "type":"string", "enum":[ @@ -13973,6 +18134,20 @@ "Descending" ] }, + "SortPipelineExecutionsBy":{ + "type":"string", + "enum":[ + "CreationTime", + "PipelineExecutionArn" + ] + }, + "SortPipelinesBy":{ + "type":"string", + "enum":[ + "Name", + "CreationTime" + ] + }, "SortTrialComponentsBy":{ "type":"string", "enum":[ @@ -14034,6 +18209,11 @@ "type":"string", "max":128 }, + "SourceUri":{ + "type":"string", + "max":2048, + "pattern":".*" + }, "SplitType":{ "type":"string", "enum":[ @@ -14063,12 +18243,67 @@ } } }, + "StartPipelineExecutionRequest":{ + "type":"structure", + "required":[ + "PipelineName", + "ClientRequestToken" + ], + "members":{ + "PipelineName":{ + "shape":"PipelineName", + "documentation":"

The name of the pipeline.

" + }, + "PipelineExecutionDisplayName":{ + "shape":"PipelineExecutionName", + "documentation":"

The display name of the pipeline execution.

" + }, + "PipelineParameters":{ + "shape":"ParameterList", + "documentation":"

Contains a list of pipeline parameters. This list can be empty.

" + }, + "PipelineExecutionDescription":{ + "shape":"PipelineExecutionDescription", + "documentation":"

The description of the pipeline execution.

" + }, + "ClientRequestToken":{ + "shape":"IdempotencyToken", + "documentation":"

A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time.

", + "idempotencyToken":true + } + } + }, + "StartPipelineExecutionResponse":{ + "type":"structure", + "members":{ + "PipelineExecutionArn":{ + "shape":"PipelineExecutionArn", + "documentation":"

The Amazon Resource Name (ARN) of the pipeline execution.

" + } + } + }, "StatusDetails":{ "type":"string", "max":1024, "pattern":".*" }, "StatusMessage":{"type":"string"}, + "StepName":{ + "type":"string", + "max":256, + "pattern":".*" + }, + "StepStatus":{ + "type":"string", + "enum":[ + "Starting", + "Executing", + "Stopping", + "Stopped", + "Failed", + "Succeeded" + ] + }, "StopAutoMLJobRequest":{ "type":"structure", "required":["AutoMLJobName"], @@ -14129,6 +18364,33 @@ } } }, + "StopPipelineExecutionRequest":{ + "type":"structure", + "required":[ + "PipelineExecutionArn", + "ClientRequestToken" + ], + "members":{ + "PipelineExecutionArn":{ + "shape":"PipelineExecutionArn", + "documentation":"

The Amazon Resource Name (ARN) of the pipeline execution.

" + }, + "ClientRequestToken":{ + "shape":"IdempotencyToken", + "documentation":"

A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than one time.

", + "idempotencyToken":true + } + } + }, + "StopPipelineExecutionResponse":{ + "type":"structure", + "members":{ + "PipelineExecutionArn":{ + "shape":"PipelineExecutionArn", + "documentation":"

The Amazon Resource Name (ARN) of the pipeline execution.

" + } + } + }, "StopProcessingJobRequest":{ "type":"structure", "required":["ProcessingJobName"], @@ -14184,10 +18446,18 @@ "min":1, "pattern":".+" }, + "String2048":{ + "type":"string", + "max":2048 + }, "String256":{ "type":"string", "max":256 }, + "String64":{ + "type":"string", + "max":64 + }, "StringParameterValue":{ "type":"string", "max":256, @@ -14246,6 +18516,12 @@ }, "documentation":"

Specified in the GetSearchSuggestions request. Limits the property names that are included in the response.

" }, + "TableName":{ + "type":"string", + "max":255, + "min":1, + "pattern":"[\\u0020-\\uD7FF\\uE000-\\uFFFD\\uD800\\uDC00-\\uDBFF\\uDFFF\\t]*" + }, "Tag":{ "type":"structure", "required":[ @@ -14321,7 +18597,8 @@ "amba_cv22", "x86_win32", "x86_win64", - "coreml" + "coreml", + "jacinto_tda4vm" ] }, "TargetObjectiveMetricValue":{"type":"float"}, @@ -14462,7 +18739,41 @@ "max":9, "min":0 }, + "TerminationWaitInSeconds":{ + "type":"integer", + "max":3600, + "min":0 + }, "Timestamp":{"type":"timestamp"}, + "TrafficRoutingConfig":{ + "type":"structure", + "required":[ + "Type", + "WaitIntervalInSeconds" + ], + "members":{ + "Type":{ + "shape":"TrafficRoutingConfigType", + "documentation":"

" + }, + "WaitIntervalInSeconds":{ + "shape":"WaitIntervalInSeconds", + "documentation":"

" + }, + "CanarySize":{ + "shape":"CapacitySize", + "documentation":"

" + } + }, + "documentation":"

Currently, the TrafficRoutingConfig API is not supported.

" + }, + "TrafficRoutingConfigType":{ + "type":"string", + "enum":[ + "ALL_AT_ONCE", + "CANARY" + ] + }, "TrainingInputMode":{ "type":"string", "enum":[ @@ -14651,7 +18962,7 @@ }, "Tags":{ "shape":"TagList", - "documentation":"

An array of key-value pairs. For more information, see Using Cost Allocation Tags in the AWS Billing and Cost Management User Guide.

" + "documentation":"

An array of key-value pairs. You can use tags to categorize your AWS resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging AWS Resources.

" } }, "documentation":"

Contains information about a training job.

" @@ -14709,7 +19020,7 @@ "type":"string", "max":63, "min":1, - "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*" + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}" }, "TrainingJobSortByOptions":{ "type":"string", @@ -14760,6 +19071,16 @@ }, "documentation":"

The numbers of training jobs launched by a hyperparameter tuning job, categorized by status.

" }, + "TrainingJobStepMetadata":{ + "type":"structure", + "members":{ + "Arn":{ + "shape":"TrainingJobArn", + "documentation":"

The Amazon Resource Name (ARN) of the training job that was run by this step execution.

" + } + }, + "documentation":"

Metadata for a training job step.

" + }, "TrainingJobSummaries":{ "type":"list", "member":{"shape":"TrainingJobSummary"} @@ -14861,7 +19182,7 @@ "TransformEnvironmentKey":{ "type":"string", "max":1024, - "pattern":"[a-zA-Z_][a-zA-Z0-9_]*" + "pattern":"[a-zA-Z_][a-zA-Z0-9_]{0,1023}" }, "TransformEnvironmentMap":{ "type":"map", @@ -15057,7 +19378,7 @@ "type":"string", "max":63, "min":1, - "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*" + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}" }, "TransformJobStatus":{ "type":"string", @@ -15069,6 +19390,16 @@ "Stopped" ] }, + "TransformJobStepMetadata":{ + "type":"structure", + "members":{ + "Arn":{ + "shape":"TransformJobArn", + "documentation":"

The Amazon Resource Name (ARN) of the transform job that was run by this step execution.

" + } + }, + "documentation":"

Metadata for a transform job step.

" + }, "TransformJobSummaries":{ "type":"list", "member":{"shape":"TransformJobSummary"} @@ -15206,6 +19537,7 @@ "documentation":"

Who last modified the trial.

" }, "LastModifiedBy":{"shape":"UserContext"}, + "MetadataProperties":{"shape":"MetadataProperties"}, "Tags":{ "shape":"TagList", "documentation":"

The list of tags that are associated with the trial. You can use Search API to search on the tags.

" @@ -15276,6 +19608,7 @@ "shape":"TrialComponentMetricSummaries", "documentation":"

The metrics for the component.

" }, + "MetadataProperties":{"shape":"MetadataProperties"}, "SourceDetail":{ "shape":"TrialComponentSourceDetail", "documentation":"

Details of the source of the component.

" @@ -15663,6 +19996,41 @@ }, "documentation":"

Container for user interface template information.

" }, + "UpdateActionRequest":{ + "type":"structure", + "required":["ActionName"], + "members":{ + "ActionName":{ + "shape":"ExperimentEntityName", + "documentation":"

The name of the action to update.

" + }, + "Description":{ + "shape":"ExperimentDescription", + "documentation":"

The new description for the action.

" + }, + "Status":{ + "shape":"ActionStatus", + "documentation":"

The new status for the action.

" + }, + "Properties":{ + "shape":"LineageEntityParameters", + "documentation":"

The new list of properties. Overwrites the current property list.

" + }, + "PropertiesToRemove":{ + "shape":"ListLineageEntityParameterKey", + "documentation":"

A list of properties to remove.

" + } + } + }, + "UpdateActionResponse":{ + "type":"structure", + "members":{ + "ActionArn":{ + "shape":"ActionArn", + "documentation":"

The Amazon Resource Name (ARN) of the action.

" + } + } + }, "UpdateAppImageConfigRequest":{ "type":"structure", "required":["AppImageConfigName"], @@ -15686,6 +20054,37 @@ } } }, + "UpdateArtifactRequest":{ + "type":"structure", + "required":["ArtifactArn"], + "members":{ + "ArtifactArn":{ + "shape":"ArtifactArn", + "documentation":"

The Amazon Resource Name (ARN) of the artifact to update.

" + }, + "ArtifactName":{ + "shape":"ExperimentEntityName", + "documentation":"

The new name for the artifact.

" + }, + "Properties":{ + "shape":"LineageEntityParameters", + "documentation":"

The new list of properties. Overwrites the current property list.

" + }, + "PropertiesToRemove":{ + "shape":"ListLineageEntityParameterKey", + "documentation":"

A list of properties to remove.

" + } + } + }, + "UpdateArtifactResponse":{ + "type":"structure", + "members":{ + "ArtifactArn":{ + "shape":"ArtifactArn", + "documentation":"

The Amazon Resource Name (ARN) of the artifact.

" + } + } + }, "UpdateCodeRepositoryInput":{ "type":"structure", "required":["CodeRepositoryName"], @@ -15710,6 +20109,37 @@ } } }, + "UpdateContextRequest":{ + "type":"structure", + "required":["ContextName"], + "members":{ + "ContextName":{ + "shape":"ExperimentEntityName", + "documentation":"

The name of the context to update.

" + }, + "Description":{ + "shape":"ExperimentDescription", + "documentation":"

The new description for the context.

" + }, + "Properties":{ + "shape":"LineageEntityParameters", + "documentation":"

The new list of properties. Overwrites the current property list.

" + }, + "PropertiesToRemove":{ + "shape":"ListLineageEntityParameterKey", + "documentation":"

A list of properties to remove.

" + } + } + }, + "UpdateContextResponse":{ + "type":"structure", + "members":{ + "ContextArn":{ + "shape":"ContextArn", + "documentation":"

The Amazon Resource Name (ARN) of the context.

" + } + } + }, "UpdateDomainRequest":{ "type":"structure", "required":["DomainId"], @@ -15750,11 +20180,15 @@ }, "RetainAllVariantProperties":{ "shape":"Boolean", - "documentation":"

When updating endpoint resources, enables or disables the retention of variant properties, such as the instance count or the variant weight. To retain the variant properties of an endpoint when updating it, set RetainAllVariantProperties to true. To use the variant properties specified in a new EndpointConfig call when updating an endpoint, set RetainAllVariantProperties to false.

" + "documentation":"

When updating endpoint resources, enables or disables the retention of variant properties, such as the instance count or the variant weight. To retain the variant properties of an endpoint when updating it, set RetainAllVariantProperties to true. To use the variant properties specified in a new EndpointConfig call when updating an endpoint, set RetainAllVariantProperties to false. The default is false.

" }, "ExcludeRetainedVariantProperties":{ "shape":"VariantPropertyList", "documentation":"

When you are updating endpoint resources with UpdateEndpointInput$RetainAllVariantProperties, whose value is set to true, ExcludeRetainedVariantProperties specifies the list of type VariantProperty to override with the values provided by EndpointConfig. If you don't specify a value for ExcludeAllVariantProperties, no variant properties are overridden.

" + }, + "DeploymentConfig":{ + "shape":"DeploymentConfig", + "documentation":"

The deployment configuration for the endpoint to be updated.

" } } }, @@ -15857,6 +20291,37 @@ } } }, + "UpdateModelPackageInput":{ + "type":"structure", + "required":[ + "ModelPackageArn", + "ModelApprovalStatus" + ], + "members":{ + "ModelPackageArn":{ + "shape":"ModelPackageArn", + "documentation":"

The Amazon Resource Name (ARN) of the model.

" + }, + "ModelApprovalStatus":{ + "shape":"ModelApprovalStatus", + "documentation":"

The approval status of the model.

" + }, + "ApprovalDescription":{ + "shape":"ApprovalDescription", + "documentation":"

A description for the approval status of the model.

" + } + } + }, + "UpdateModelPackageOutput":{ + "type":"structure", + "required":["ModelPackageArn"], + "members":{ + "ModelPackageArn":{ + "shape":"ModelPackageArn", + "documentation":"

The Amazon Resource Name (ARN) of the model.

" + } + } + }, "UpdateMonitoringScheduleRequest":{ "type":"structure", "required":[ @@ -15970,6 +20435,68 @@ "members":{ } }, + "UpdatePipelineExecutionRequest":{ + "type":"structure", + "required":["PipelineExecutionArn"], + "members":{ + "PipelineExecutionArn":{ + "shape":"PipelineExecutionArn", + "documentation":"

The Amazon Resource Name (ARN) of the pipeline execution.

" + }, + "PipelineExecutionDescription":{ + "shape":"PipelineExecutionDescription", + "documentation":"

The description of the pipeline execution.

" + }, + "PipelineExecutionDisplayName":{ + "shape":"PipelineExecutionName", + "documentation":"

The display name of the pipeline execution.

" + } + } + }, + "UpdatePipelineExecutionResponse":{ + "type":"structure", + "members":{ + "PipelineExecutionArn":{ + "shape":"PipelineExecutionArn", + "documentation":"

The Amazon Resource Name (ARN) of the updated pipeline execution.

" + } + } + }, + "UpdatePipelineRequest":{ + "type":"structure", + "required":["PipelineName"], + "members":{ + "PipelineName":{ + "shape":"PipelineName", + "documentation":"

The name of the pipeline to update.

" + }, + "PipelineDisplayName":{ + "shape":"PipelineName", + "documentation":"

The display name of the pipeline.

" + }, + "PipelineDefinition":{ + "shape":"PipelineDefinition", + "documentation":"

The JSON pipeline definition.

" + }, + "PipelineDescription":{ + "shape":"PipelineDescription", + "documentation":"

The description of the pipeline.

" + }, + "RoleArn":{ + "shape":"RoleArn", + "documentation":"

The Amazon Resource Name (ARN) that the pipeline uses to execute.

" + } + } + }, + "UpdatePipelineResponse":{ + "type":"structure", + "members":{ + "PipelineArn":{ + "shape":"PipelineArn", + "documentation":"

The Amazon Resource Name (ARN) of the updated pipeline.

" + } + } + }, "UpdateTrialComponentRequest":{ "type":"structure", "required":["TrialComponentName"], @@ -16203,7 +20730,7 @@ "UserProfileName":{ "type":"string", "max":63, - "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*" + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}" }, "UserProfileSortKey":{ "type":"string", @@ -16257,7 +20784,7 @@ "VariantName":{ "type":"string", "max":63, - "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*" + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}" }, "VariantProperty":{ "type":"structure", @@ -16327,6 +20854,11 @@ "max":5, "min":1 }, + "WaitIntervalInSeconds":{ + "type":"integer", + "max":3600, + "min":0 + }, "Workforce":{ "type":"structure", "required":[ @@ -16378,7 +20910,7 @@ "type":"string", "max":63, "min":1, - "pattern":"^[a-zA-Z0-9]([a-zA-Z0-9\\-])*$" + "pattern":"^[a-zA-Z0-9]([a-zA-Z0-9\\-]){0,62}$" }, "Workforces":{ "type":"list", @@ -16445,7 +20977,7 @@ "type":"string", "max":63, "min":1, - "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*" + "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}" }, "Workteams":{ "type":"list", From 2c7ebb39a0e61f7deb0448c58222427b8346f8c0 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 2 Dec 2020 00:50:53 +0000 Subject: [PATCH 314/339] Amazon Simple Storage Service Update: S3 adds support for multiple-destination replication, option to sync replica modifications; S3 Bucket Keys to reduce cost of S3 SSE with AWS KMS --- ...re-AmazonSimpleStorageService-179e3fe.json | 6 + .../codegen-resources/service-2.json | 107 ++++++++++++++++-- 2 files changed, 106 insertions(+), 7 deletions(-) create mode 100644 .changes/next-release/feature-AmazonSimpleStorageService-179e3fe.json diff --git a/.changes/next-release/feature-AmazonSimpleStorageService-179e3fe.json b/.changes/next-release/feature-AmazonSimpleStorageService-179e3fe.json new file mode 100644 index 000000000000..f6e39b35efe2 --- /dev/null +++ b/.changes/next-release/feature-AmazonSimpleStorageService-179e3fe.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Simple Storage Service", + "contributor": "", + "description": "S3 adds support for multiple-destination replication, option to sync replica modifications; S3 Bucket Keys to reduce cost of S3 SSE with AWS KMS" +} diff --git a/services/s3/src/main/resources/codegen-resources/service-2.json b/services/s3/src/main/resources/codegen-resources/service-2.json index 2d6b31aa851a..1dbcb9f7954b 100644 --- a/services/s3/src/main/resources/codegen-resources/service-2.json +++ b/services/s3/src/main/resources/codegen-resources/service-2.json @@ -51,7 +51,7 @@ {"shape":"ObjectNotInActiveTierError"} ], "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectCOPY.html", - "documentation":"

Creates a copy of an object that is already stored in Amazon S3.

You can store individual objects of up to 5 TB in Amazon S3. You create a copy of your object up to 5 GB in size in a single atomic operation using this API. However, to copy an object greater than 5 GB, you must use the multipart upload Upload Part - Copy API. For more information, see Copy Object Using the REST Multipart Upload API.

All copy requests must be authenticated. Additionally, you must have read access to the source object and write access to the destination bucket. For more information, see REST Authentication. Both the Region that you want to copy the object from and the Region that you want to copy the object to must be enabled for your account.

A copy request might return an error when Amazon S3 receives the copy request or while Amazon S3 is copying the files. If the error occurs before the copy operation starts, you receive a standard Amazon S3 error. If the error occurs during the copy operation, the error response is embedded in the 200 OK response. This means that a 200 OK response can contain either a success or an error. Design your application to parse the contents of the response and handle it appropriately.

If the copy is successful, you receive a response with information about the copied object.

If the request is an HTTP 1.1 request, the response is chunk encoded. If it were not, it would not contain the content-length, and you would need to read the entire body.

The copy request charge is based on the storage class and Region that you specify for the destination object. For pricing information, see Amazon S3 pricing.

Amazon S3 transfer acceleration does not support cross-Region copies. If you request a cross-Region copy using a transfer acceleration endpoint, you get a 400 Bad Request error. For more information, see Transfer Acceleration.

Metadata

When copying an object, you can preserve all metadata (default) or specify new metadata. However, the ACL is not preserved and is set to private for the user making the request. To override the default ACL setting, specify a new ACL when generating a copy request. For more information, see Using ACLs.

To specify whether you want the object metadata copied from the source object or replaced with metadata provided in the request, you can optionally add the x-amz-metadata-directive header. When you grant permissions, you can use the s3:x-amz-metadata-directive condition key to enforce certain metadata behavior when objects are uploaded. For more information, see Specifying Conditions in a Policy in the Amazon S3 Developer Guide. For a complete list of Amazon S3-specific condition keys, see Actions, Resources, and Condition Keys for Amazon S3.

x-amz-copy-source-if Headers

To only copy an object under certain conditions, such as whether the Etag matches or whether the object was modified before or after a specified date, use the following request parameters:

  • x-amz-copy-source-if-match

  • x-amz-copy-source-if-none-match

  • x-amz-copy-source-if-unmodified-since

  • x-amz-copy-source-if-modified-since

If both the x-amz-copy-source-if-match and x-amz-copy-source-if-unmodified-since headers are present in the request and evaluate as follows, Amazon S3 returns 200 OK and copies the data:

  • x-amz-copy-source-if-match condition evaluates to true

  • x-amz-copy-source-if-unmodified-since condition evaluates to false

If both the x-amz-copy-source-if-none-match and x-amz-copy-source-if-modified-since headers are present in the request and evaluate as follows, Amazon S3 returns the 412 Precondition Failed response code:

  • x-amz-copy-source-if-none-match condition evaluates to false

  • x-amz-copy-source-if-modified-since condition evaluates to true

All headers with the x-amz- prefix, including x-amz-copy-source, must be signed.

Encryption

The source object that you are copying can be encrypted or unencrypted. The source object can be encrypted with server-side encryption using AWS managed encryption keys (SSE-S3 or SSE-KMS) or by using a customer-provided encryption key. With server-side encryption, Amazon S3 encrypts your data as it writes it to disks in its data centers and decrypts the data when you access it.

You can optionally use the appropriate encryption-related headers to request server-side encryption for the target object. You have the option to provide your own encryption key or use SSE-S3 or SSE-KMS, regardless of the form of server-side encryption that was used to encrypt the source object. You can even request encryption if the source object was not encrypted. For more information about server-side encryption, see Using Server-Side Encryption.

Access Control List (ACL)-Specific Request Headers

When copying an object, you can optionally use headers to grant ACL-based permissions. By default, all objects are private. Only the owner has full access control. When adding a new object, you can grant permissions to individual AWS accounts or to predefined groups defined by Amazon S3. These permissions are then added to the ACL on the object. For more information, see Access Control List (ACL) Overview and Managing ACLs Using the REST API.

Storage Class Options

You can use the CopyObject operation to change the storage class of an object that is already stored in Amazon S3 using the StorageClass parameter. For more information, see Storage Classes in the Amazon S3 Service Developer Guide.

Versioning

By default, x-amz-copy-source identifies the current version of an object to copy. If the current version is a delete marker, Amazon S3 behaves as if the object was deleted. To copy a different version, use the versionId subresource.

If you enable versioning on the target bucket, Amazon S3 generates a unique version ID for the object being copied. This version ID is different from the version ID of the source object. Amazon S3 returns the version ID of the copied object in the x-amz-version-id response header in the response.

If you do not enable versioning or suspend it on the target bucket, the version ID that Amazon S3 generates is always null.

If the source object's storage class is GLACIER, you must restore a copy of this object before you can use it as a source object for the copy operation. For more information, see RestoreObject.

The following operations are related to CopyObject:

For more information, see Copying Objects.

", + "documentation":"

Creates a copy of an object that is already stored in Amazon S3.

You can store individual objects of up to 5 TB in Amazon S3. You create a copy of your object up to 5 GB in size in a single atomic operation using this API. However, to copy an object greater than 5 GB, you must use the multipart upload Upload Part - Copy API. For more information, see Copy Object Using the REST Multipart Upload API.

All copy requests must be authenticated. Additionally, you must have read access to the source object and write access to the destination bucket. For more information, see REST Authentication. Both the Region that you want to copy the object from and the Region that you want to copy the object to must be enabled for your account.

A copy request might return an error when Amazon S3 receives the copy request or while Amazon S3 is copying the files. If the error occurs before the copy operation starts, you receive a standard Amazon S3 error. If the error occurs during the copy operation, the error response is embedded in the 200 OK response. This means that a 200 OK response can contain either a success or an error. Design your application to parse the contents of the response and handle it appropriately.

If the copy is successful, you receive a response with information about the copied object.

If the request is an HTTP 1.1 request, the response is chunk encoded. If it were not, it would not contain the content-length, and you would need to read the entire body.

The copy request charge is based on the storage class and Region that you specify for the destination object. For pricing information, see Amazon S3 pricing.

Amazon S3 transfer acceleration does not support cross-Region copies. If you request a cross-Region copy using a transfer acceleration endpoint, you get a 400 Bad Request error. For more information, see Transfer Acceleration.

Metadata

When copying an object, you can preserve all metadata (default) or specify new metadata. However, the ACL is not preserved and is set to private for the user making the request. To override the default ACL setting, specify a new ACL when generating a copy request. For more information, see Using ACLs.

To specify whether you want the object metadata copied from the source object or replaced with metadata provided in the request, you can optionally add the x-amz-metadata-directive header. When you grant permissions, you can use the s3:x-amz-metadata-directive condition key to enforce certain metadata behavior when objects are uploaded. For more information, see Specifying Conditions in a Policy in the Amazon S3 Developer Guide. For a complete list of Amazon S3-specific condition keys, see Actions, Resources, and Condition Keys for Amazon S3.

x-amz-copy-source-if Headers

To only copy an object under certain conditions, such as whether the Etag matches or whether the object was modified before or after a specified date, use the following request parameters:

  • x-amz-copy-source-if-match

  • x-amz-copy-source-if-none-match

  • x-amz-copy-source-if-unmodified-since

  • x-amz-copy-source-if-modified-since

If both the x-amz-copy-source-if-match and x-amz-copy-source-if-unmodified-since headers are present in the request and evaluate as follows, Amazon S3 returns 200 OK and copies the data:

  • x-amz-copy-source-if-match condition evaluates to true

  • x-amz-copy-source-if-unmodified-since condition evaluates to false

If both the x-amz-copy-source-if-none-match and x-amz-copy-source-if-modified-since headers are present in the request and evaluate as follows, Amazon S3 returns the 412 Precondition Failed response code:

  • x-amz-copy-source-if-none-match condition evaluates to false

  • x-amz-copy-source-if-modified-since condition evaluates to true

All headers with the x-amz- prefix, including x-amz-copy-source, must be signed.

Server-side encryption

When you perform a CopyObject operation, you can optionally use the appropriate encryption-related headers to encrypt the object using server-side encryption with AWS managed encryption keys (SSE-S3 or SSE-KMS) or a customer-provided encryption key. With server-side encryption, Amazon S3 encrypts your data as it writes it to disks in its data centers and decrypts the data when you access it. For more information about server-side encryption, see Using Server-Side Encryption.

If a target object uses SSE-KMS, you can enable an S3 Bucket Key for the object. For more information, see Amazon S3 Bucket Keys in the Amazon Simple Storage Service Developer Guide.

Access Control List (ACL)-Specific Request Headers

When copying an object, you can optionally use headers to grant ACL-based permissions. By default, all objects are private. Only the owner has full access control. When adding a new object, you can grant permissions to individual AWS accounts or to predefined groups defined by Amazon S3. These permissions are then added to the ACL on the object. For more information, see Access Control List (ACL) Overview and Managing ACLs Using the REST API.

Storage Class Options

You can use the CopyObject operation to change the storage class of an object that is already stored in Amazon S3 using the StorageClass parameter. For more information, see Storage Classes in the Amazon S3 Service Developer Guide.

Versioning

By default, x-amz-copy-source identifies the current version of an object to copy. If the current version is a delete marker, Amazon S3 behaves as if the object was deleted. To copy a different version, use the versionId subresource.

If you enable versioning on the target bucket, Amazon S3 generates a unique version ID for the object being copied. This version ID is different from the version ID of the source object. Amazon S3 returns the version ID of the copied object in the x-amz-version-id response header in the response.

If you do not enable versioning or suspend it on the target bucket, the version ID that Amazon S3 generates is always null.

If the source object's storage class is GLACIER, you must restore a copy of this object before you can use it as a source object for the copy operation. For more information, see RestoreObject.

The following operations are related to CopyObject:

For more information, see Copying Objects.

", "alias":"PutObjectCopy" }, "CreateBucket":{ @@ -774,7 +774,7 @@ "requestUri":"/{Bucket}?encryption" }, "input":{"shape":"PutBucketEncryptionRequest"}, - "documentation":"

This implementation of the PUT operation uses the encryption subresource to set the default encryption state of an existing bucket.

This implementation of the PUT operation sets default encryption for a bucket using server-side encryption with Amazon S3-managed keys SSE-S3 or AWS KMS customer master keys (CMKs) (SSE-KMS). For information about the Amazon S3 default encryption feature, see Amazon S3 Default Bucket Encryption.

This operation requires AWS Signature Version 4. For more information, see Authenticating Requests (AWS Signature Version 4).

To use this operation, you must have permissions to perform the s3:PutEncryptionConfiguration action. The bucket owner has this permission by default. The bucket owner can grant this permission to others. For more information about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3 Resources in the Amazon Simple Storage Service Developer Guide.

Related Resources

", + "documentation":"

This operation uses the encryption subresource to configure default encryption and Amazon S3 Bucket Key for an existing bucket.

Default encryption for a bucket can use server-side encryption with Amazon S3-managed keys (SSE-S3) or AWS KMS customer master keys (SSE-KMS). If you specify default encryption using SSE-KMS, you can also configure Amazon S3 Bucket Key. For information about default encryption, see Amazon S3 default bucket encryption in the Amazon Simple Storage Service Developer Guide. For more information about S3 Bucket Keys, see Amazon S3 Bucket Keys in the Amazon Simple Storage Service Developer Guide.

This operation requires AWS Signature Version 4. For more information, see Authenticating Requests (AWS Signature Version 4).

To use this operation, you must have permissions to perform the s3:PutEncryptionConfiguration action. The bucket owner has this permission by default. The bucket owner can grant this permission to others. For more information about permissions, see Permissions Related to Bucket Subresource Operations and Managing Access Permissions to Your Amazon S3 Resources in the Amazon Simple Storage Service Developer Guide.

Related Resources

", "httpChecksumRequired":true }, "PutBucketIntelligentTieringConfiguration":{ @@ -886,7 +886,7 @@ "requestUri":"/{Bucket}?replication" }, "input":{"shape":"PutBucketReplicationRequest"}, - "documentation":"

Creates a replication configuration or replaces an existing one. For more information, see Replication in the Amazon S3 Developer Guide.

To perform this operation, the user or role performing the operation must have the iam:PassRole permission.

Specify the replication configuration in the request body. In the replication configuration, you provide the name of the destination bucket where you want Amazon S3 to replicate objects, the IAM role that Amazon S3 can assume to replicate objects on your behalf, and other relevant information.

A replication configuration must include at least one rule, and can contain a maximum of 1,000. Each rule identifies a subset of objects to replicate by filtering the objects in the source bucket. To choose additional subsets of objects to replicate, add a rule for each subset. All rules must specify the same destination bucket.

To specify a subset of the objects in the source bucket to apply a replication rule to, add the Filter element as a child of the Rule element. You can filter objects based on an object key prefix, one or more object tags, or both. When you add the Filter element in the configuration, you must also add the following elements: DeleteMarkerReplication, Status, and Priority.

If you are using an earlier version of the replication configuration, Amazon S3 handles replication of delete markers differently. For more information, see Backward Compatibility.

For information about enabling versioning on a bucket, see Using Versioning.

By default, a resource owner, in this case the AWS account that created the bucket, can perform this operation. The resource owner can also grant others permissions to perform the operation. For more information about permissions, see Specifying Permissions in a Policy and Managing Access Permissions to Your Amazon S3 Resources.

Handling Replication of Encrypted Objects

By default, Amazon S3 doesn't replicate objects that are stored at rest using server-side encryption with CMKs stored in AWS KMS. To replicate AWS KMS-encrypted objects, add the following: SourceSelectionCriteria, SseKmsEncryptedObjects, Status, EncryptionConfiguration, and ReplicaKmsKeyID. For information about replication configuration, see Replicating Objects Created with SSE Using CMKs stored in AWS KMS.

For information on PutBucketReplication errors, see List of replication-related error codes

The following operations are related to PutBucketReplication:

", + "documentation":"

Creates a replication configuration or replaces an existing one. For more information, see Replication in the Amazon S3 Developer Guide.

To perform this operation, the user or role performing the operation must have the iam:PassRole permission.

Specify the replication configuration in the request body. In the replication configuration, you provide the name of the destination bucket or buckets where you want Amazon S3 to replicate objects, the IAM role that Amazon S3 can assume to replicate objects on your behalf, and other relevant information.

A replication configuration must include at least one rule, and can contain a maximum of 1,000. Each rule identifies a subset of objects to replicate by filtering the objects in the source bucket. To choose additional subsets of objects to replicate, add a rule for each subset.

To specify a subset of the objects in the source bucket to apply a replication rule to, add the Filter element as a child of the Rule element. You can filter objects based on an object key prefix, one or more object tags, or both. When you add the Filter element in the configuration, you must also add the following elements: DeleteMarkerReplication, Status, and Priority.

If you are using an earlier version of the replication configuration, Amazon S3 handles replication of delete markers differently. For more information, see Backward Compatibility.

For information about enabling versioning on a bucket, see Using Versioning.

By default, a resource owner, in this case the AWS account that created the bucket, can perform this operation. The resource owner can also grant others permissions to perform the operation. For more information about permissions, see Specifying Permissions in a Policy and Managing Access Permissions to Your Amazon S3 Resources.

Handling Replication of Encrypted Objects

By default, Amazon S3 doesn't replicate objects that are stored at rest using server-side encryption with CMKs stored in AWS KMS. To replicate AWS KMS-encrypted objects, add the following: SourceSelectionCriteria, SseKmsEncryptedObjects, Status, EncryptionConfiguration, and ReplicaKmsKeyID. For information about replication configuration, see Replicating Objects Created with SSE Using CMKs stored in AWS KMS.

For information on PutBucketReplication errors, see List of replication-related error codes

The following operations are related to PutBucketReplication:

", "httpChecksumRequired":true }, "PutBucketRequestPayment":{ @@ -942,7 +942,7 @@ "input":{"shape":"PutObjectRequest"}, "output":{"shape":"PutObjectOutput"}, "documentationUrl":"http://docs.amazonwebservices.com/AmazonS3/latest/API/RESTObjectPUT.html", - "documentation":"

Adds an object to a bucket. You must have WRITE permissions on a bucket to add an object to it.

Amazon S3 never adds partial objects; if you receive a success response, Amazon S3 added the entire object to the bucket.

Amazon S3 is a distributed system. If it receives multiple write requests for the same object simultaneously, it overwrites all but the last object written. Amazon S3 does not provide object locking; if you need this, make sure to build it into your application layer or use versioning instead.

To ensure that data is not corrupted traversing the network, use the Content-MD5 header. When you use this header, Amazon S3 checks the object against the provided MD5 value and, if they do not match, returns an error. Additionally, you can calculate the MD5 while putting an object to Amazon S3 and compare the returned ETag to the calculated MD5 value.

The Content-MD5 header is required for any request to upload an object with a retention period configured using Amazon S3 Object Lock. For more information about Amazon S3 Object Lock, see Amazon S3 Object Lock Overview in the Amazon Simple Storage Service Developer Guide.

Server-side Encryption

You can optionally request server-side encryption. With server-side encryption, Amazon S3 encrypts your data as it writes it to disks in its data centers and decrypts the data when you access it. You have the option to provide your own encryption key or use AWS managed encryption keys. For more information, see Using Server-Side Encryption.

Access Control List (ACL)-Specific Request Headers

You can use headers to grant ACL- based permissions. By default, all objects are private. Only the owner has full access control. When adding a new object, you can grant permissions to individual AWS accounts or to predefined groups defined by Amazon S3. These permissions are then added to the ACL on the object. For more information, see Access Control List (ACL) Overview and Managing ACLs Using the REST API.

Storage Class Options

By default, Amazon S3 uses the STANDARD Storage Class to store newly created objects. The STANDARD storage class provides high durability and high availability. Depending on performance needs, you can specify a different Storage Class. Amazon S3 on Outposts only uses the OUTPOSTS Storage Class. For more information, see Storage Classes in the Amazon S3 Service Developer Guide.

Versioning

If you enable versioning for a bucket, Amazon S3 automatically generates a unique version ID for the object being stored. Amazon S3 returns this ID in the response. When you enable versioning for a bucket, if Amazon S3 receives multiple write requests for the same object simultaneously, it stores all of the objects.

For more information about versioning, see Adding Objects to Versioning Enabled Buckets. For information about returning the versioning state of a bucket, see GetBucketVersioning.

Related Resources

" + "documentation":"

Adds an object to a bucket. You must have WRITE permissions on a bucket to add an object to it.

Amazon S3 never adds partial objects; if you receive a success response, Amazon S3 added the entire object to the bucket.

Amazon S3 is a distributed system. If it receives multiple write requests for the same object simultaneously, it overwrites all but the last object written. Amazon S3 does not provide object locking; if you need this, make sure to build it into your application layer or use versioning instead.

To ensure that data is not corrupted traversing the network, use the Content-MD5 header. When you use this header, Amazon S3 checks the object against the provided MD5 value and, if they do not match, returns an error. Additionally, you can calculate the MD5 while putting an object to Amazon S3 and compare the returned ETag to the calculated MD5 value.

The Content-MD5 header is required for any request to upload an object with a retention period configured using Amazon S3 Object Lock. For more information about Amazon S3 Object Lock, see Amazon S3 Object Lock Overview in the Amazon Simple Storage Service Developer Guide.

Server-side Encryption

You can optionally request server-side encryption. With server-side encryption, Amazon S3 encrypts your data as it writes it to disks in its data centers and decrypts the data when you access it. You have the option to provide your own encryption key or use AWS managed encryption keys (SSE-S3 or SSE-KMS). For more information, see Using Server-Side Encryption.

If you request server-side encryption using AWS Key Management Service (SSE-KMS), you can enable an S3 Bucket Key at the object-level. For more information, see Amazon S3 Bucket Keys in the Amazon Simple Storage Service Developer Guide.

Access Control List (ACL)-Specific Request Headers

You can use headers to grant ACL- based permissions. By default, all objects are private. Only the owner has full access control. When adding a new object, you can grant permissions to individual AWS accounts or to predefined groups defined by Amazon S3. These permissions are then added to the ACL on the object. For more information, see Access Control List (ACL) Overview and Managing ACLs Using the REST API.

Storage Class Options

By default, Amazon S3 uses the STANDARD Storage Class to store newly created objects. The STANDARD storage class provides high durability and high availability. Depending on performance needs, you can specify a different Storage Class. Amazon S3 on Outposts only uses the OUTPOSTS Storage Class. For more information, see Storage Classes in the Amazon S3 Service Developer Guide.

Versioning

If you enable versioning for a bucket, Amazon S3 automatically generates a unique version ID for the object being stored. Amazon S3 returns this ID in the response. When you enable versioning for a bucket, if Amazon S3 receives multiple write requests for the same object simultaneously, it stores all of the objects.

For more information about versioning, see Adding Objects to Versioning Enabled Buckets. For information about returning the versioning state of a bucket, see GetBucketVersioning.

Related Resources

" }, "PutObjectAcl":{ "name":"PutObjectAcl", @@ -1304,7 +1304,7 @@ }, "CreationDate":{ "shape":"CreationDate", - "documentation":"

Date the bucket was created.

" + "documentation":"

Date the bucket was created. This date can change when making changes to your bucket, such as editing its bucket policy.

" } }, "documentation":"

In terms of implementation, a Bucket is a resource. An Amazon S3 bucket name is globally unique, and the namespace is shared by all AWS accounts.

" @@ -1339,6 +1339,7 @@ "authenticated-read" ] }, + "BucketKeyEnabled":{"type":"boolean"}, "BucketLifecycleConfiguration":{ "type":"structure", "required":["Rules"], @@ -1613,6 +1614,12 @@ "location":"header", "locationName":"x-amz-server-side-encryption-aws-kms-key-id" }, + "BucketKeyEnabled":{ + "shape":"BucketKeyEnabled", + "documentation":"

Indicates whether the multipart upload uses an S3 Bucket Key for server-side encryption with AWS KMS (SSE-KMS).

", + "location":"header", + "locationName":"x-amz-server-side-encryption-bucket-key-enabled" + }, "RequestCharged":{ "shape":"RequestCharged", "location":"header", @@ -1788,6 +1795,12 @@ "location":"header", "locationName":"x-amz-server-side-encryption-context" }, + "BucketKeyEnabled":{ + "shape":"BucketKeyEnabled", + "documentation":"

Indicates whether the copied object uses an S3 Bucket Key for server-side encryption with AWS KMS (SSE-KMS).

", + "location":"header", + "locationName":"x-amz-server-side-encryption-bucket-key-enabled" + }, "RequestCharged":{ "shape":"RequestCharged", "location":"header", @@ -1978,6 +1991,12 @@ "location":"header", "locationName":"x-amz-server-side-encryption-context" }, + "BucketKeyEnabled":{ + "shape":"BucketKeyEnabled", + "documentation":"

Specifies whether Amazon S3 should use an S3 Bucket Key for object encryption with server-side encryption using AWS KMS (SSE-KMS). Setting this header to true causes Amazon S3 to use an S3 Bucket Key for object encryption with SSE-KMS.

Specifying this header with a COPY operation doesn’t affect bucket-level settings for S3 Bucket Key.

", + "location":"header", + "locationName":"x-amz-server-side-encryption-bucket-key-enabled" + }, "CopySourceSSECustomerAlgorithm":{ "shape":"CopySourceSSECustomerAlgorithm", "documentation":"

Specifies the algorithm to use when decrypting the source object (for example, AES256).

", @@ -2223,6 +2242,12 @@ "location":"header", "locationName":"x-amz-server-side-encryption-context" }, + "BucketKeyEnabled":{ + "shape":"BucketKeyEnabled", + "documentation":"

Indicates whether the multipart upload uses an S3 Bucket Key for server-side encryption with AWS KMS (SSE-KMS).

", + "location":"header", + "locationName":"x-amz-server-side-encryption-bucket-key-enabled" + }, "RequestCharged":{ "shape":"RequestCharged", "location":"header", @@ -2369,6 +2394,12 @@ "location":"header", "locationName":"x-amz-server-side-encryption-context" }, + "BucketKeyEnabled":{ + "shape":"BucketKeyEnabled", + "documentation":"

Specifies whether Amazon S3 should use an S3 Bucket Key for object encryption with server-side encryption using AWS KMS (SSE-KMS). Setting this header to true causes Amazon S3 to use an S3 Bucket Key for object encryption with SSE-KMS.

Specifying this header with an object operation doesn’t affect bucket-level settings for S3 Bucket Key.

", + "location":"header", + "locationName":"x-amz-server-side-encryption-bucket-key-enabled" + }, "RequestPayer":{ "shape":"RequestPayer", "location":"header", @@ -4099,6 +4130,12 @@ "location":"header", "locationName":"x-amz-server-side-encryption-aws-kms-key-id" }, + "BucketKeyEnabled":{ + "shape":"BucketKeyEnabled", + "documentation":"

Indicates whether the object uses an S3 Bucket Key for server-side encryption with AWS KMS (SSE-KMS).

", + "location":"header", + "locationName":"x-amz-server-side-encryption-bucket-key-enabled" + }, "StorageClass":{ "shape":"StorageClass", "documentation":"

Provides storage class information of the object. Amazon S3 returns this header for all objects except for S3 Standard storage class objects.

", @@ -4673,6 +4710,12 @@ "location":"header", "locationName":"x-amz-server-side-encryption-aws-kms-key-id" }, + "BucketKeyEnabled":{ + "shape":"BucketKeyEnabled", + "documentation":"

Indicates whether the object uses an S3 Bucket Key for server-side encryption with AWS KMS (SSE-KMS).

", + "location":"header", + "locationName":"x-amz-server-side-encryption-bucket-key-enabled" + }, "StorageClass":{ "shape":"StorageClass", "documentation":"

Provides storage class information of the object. Amazon S3 returns this header for all objects except for S3 Standard storage class objects.

For more information, see Storage Classes.

", @@ -4686,7 +4729,7 @@ }, "ReplicationStatus":{ "shape":"ReplicationStatus", - "documentation":"

Amazon S3 can return this header if your request involves a bucket that is either a source or destination in a replication rule.

In replication, you have a source bucket on which you configure replication and destination bucket where Amazon S3 stores object replicas. When you request an object (GetObject) or object metadata (HeadObject) from these buckets, Amazon S3 will return the x-amz-replication-status header in the response as follows:

  • If requesting an object from the source bucket — Amazon S3 will return the x-amz-replication-status header if the object in your request is eligible for replication.

    For example, suppose that in your replication configuration, you specify object prefix TaxDocs requesting Amazon S3 to replicate objects with key prefix TaxDocs. Any objects you upload with this key name prefix, for example TaxDocs/document1.pdf, are eligible for replication. For any object request with this key name prefix, Amazon S3 will return the x-amz-replication-status header with value PENDING, COMPLETED or FAILED indicating object replication status.

  • If requesting an object from the destination bucket — Amazon S3 will return the x-amz-replication-status header with value REPLICA if the object in your request is a replica that Amazon S3 created.

For more information, see Replication.

", + "documentation":"

Amazon S3 can return this header if your request involves a bucket that is either a source or a destination in a replication rule.

In replication, you have a source bucket on which you configure replication and destination bucket or buckets where Amazon S3 stores object replicas. When you request an object (GetObject) or object metadata (HeadObject) from these buckets, Amazon S3 will return the x-amz-replication-status header in the response as follows:

  • If requesting an object from the source bucket — Amazon S3 will return the x-amz-replication-status header if the object in your request is eligible for replication.

    For example, suppose that in your replication configuration, you specify object prefix TaxDocs requesting Amazon S3 to replicate objects with key prefix TaxDocs. Any objects you upload with this key name prefix, for example TaxDocs/document1.pdf, are eligible for replication. For any object request with this key name prefix, Amazon S3 will return the x-amz-replication-status header with value PENDING, COMPLETED or FAILED indicating object replication status.

  • If requesting an object from a destination bucket — Amazon S3 will return the x-amz-replication-status header with value REPLICA if the object in your request is a replica that Amazon S3 created and there is no replica modification replication in progress.

  • When replicating objects to multiple destination buckets the x-amz-replication-status header acts differently. The header of the source object will only return a value of COMPLETED when replication is successful to all destinations. The header will remain at value PENDING until replication has completed for all destinations. If one or more destinations fails replication the header will return FAILED.

For more information, see Replication.

", "location":"header", "locationName":"x-amz-replication-status" }, @@ -7723,6 +7766,12 @@ "location":"header", "locationName":"x-amz-server-side-encryption-context" }, + "BucketKeyEnabled":{ + "shape":"BucketKeyEnabled", + "documentation":"

Indicates whether the uploaded object uses an S3 Bucket Key for server-side encryption with AWS KMS (SSE-KMS).

", + "location":"header", + "locationName":"x-amz-server-side-encryption-bucket-key-enabled" + }, "RequestCharged":{ "shape":"RequestCharged", "location":"header", @@ -7886,6 +7935,12 @@ "location":"header", "locationName":"x-amz-server-side-encryption-context" }, + "BucketKeyEnabled":{ + "shape":"BucketKeyEnabled", + "documentation":"

Specifies whether Amazon S3 should use an S3 Bucket Key for object encryption with server-side encryption using AWS KMS (SSE-KMS). Setting this header to true causes Amazon S3 to use an S3 Bucket Key for object encryption with SSE-KMS.

Specifying this header with a PUT operation doesn’t affect bucket-level settings for S3 Bucket Key.

", + "location":"header", + "locationName":"x-amz-server-side-encryption-bucket-key-enabled" + }, "RequestPayer":{ "shape":"RequestPayer", "location":"header", @@ -8199,6 +8254,24 @@ "ReplaceKeyPrefixWith":{"type":"string"}, "ReplaceKeyWith":{"type":"string"}, "ReplicaKmsKeyID":{"type":"string"}, + "ReplicaModifications":{ + "type":"structure", + "required":["Status"], + "members":{ + "Status":{ + "shape":"ReplicaModificationsStatus", + "documentation":"

Specifies whether Amazon S3 replicates modifications on replicas.

" + } + }, + "documentation":"

A filter that you can specify for selection for modifications on replicas. Amazon S3 doesn't replicate replica modifications by default. In the latest version of replication configuration (when Filter is specified), you can specify this element and set the status to Enabled to replicate modifications on replicas.

If you don't specify the Filter element, Amazon S3 assumes that the replication configuration is the earlier version, V1. In the earlier version, this element is not allowed.

" + }, + "ReplicaModificationsStatus":{ + "type":"string", + "enum":[ + "Enabled", + "Disabled" + ] + }, "ReplicationConfiguration":{ "type":"structure", "required":[ @@ -8231,7 +8304,7 @@ }, "Priority":{ "shape":"Priority", - "documentation":"

The priority associated with the rule. If you specify multiple rules in a replication configuration, Amazon S3 prioritizes the rules to prevent conflicts when filtering. If two or more rules identify the same object based on a specified filter, the rule with higher priority takes precedence. For example:

  • Same object quality prefix-based filter criteria if prefixes you specified in multiple rules overlap

  • Same object qualify tag-based filter criteria specified in multiple rules

For more information, see Replication in the Amazon Simple Storage Service Developer Guide.

" + "documentation":"

The priority indicates which rule has precedence whenever two or more replication rules conflict. Amazon S3 will attempt to replicate objects according to all replication rules. However, if there are two or more rules with the same destination bucket, then objects will be replicated according to the rule with the highest priority. The higher the number, the higher the priority.

For more information, see Replication in the Amazon Simple Storage Service Developer Guide.

" }, "Prefix":{ "shape":"Prefix", @@ -8822,6 +8895,10 @@ "ApplyServerSideEncryptionByDefault":{ "shape":"ServerSideEncryptionByDefault", "documentation":"

Specifies the default server-side encryption to apply to new objects in the bucket. If a PUT Object request doesn't specify any server-side encryption, this default encryption will be applied.

" + }, + "BucketKeyEnabled":{ + "shape":"BucketKeyEnabled", + "documentation":"

Specifies whether Amazon S3 should use an S3 Bucket Key with server-side encryption using KMS (SSE-KMS) for new objects in the bucket. Existing objects are not affected. Setting the BucketKeyEnabled element to true causes Amazon S3 to use an S3 Bucket Key. By default, S3 Bucket Key is not enabled.

For more information, see Amazon S3 Bucket Keys in the Amazon Simple Storage Service Developer Guide.

" } }, "documentation":"

Specifies the default server-side encryption configuration.

" @@ -8839,6 +8916,10 @@ "SseKmsEncryptedObjects":{ "shape":"SseKmsEncryptedObjects", "documentation":"

A container for filter information for the selection of Amazon S3 objects encrypted with AWS KMS. If you include SourceSelectionCriteria in the replication configuration, this element is required.

" + }, + "ReplicaModifications":{ + "shape":"ReplicaModifications", + "documentation":"

A filter that you can specify for selections for modifications on replicas. Amazon S3 doesn't replicate replica modifications by default. In the latest version of replication configuration (when Filter is specified), you can specify this element and set the status to Enabled to replicate modifications on replicas.

If you don't specify the Filter element, Amazon S3 assumes that the replication configuration is the earlier version, V1. In the earlier version, this element is not allowed

" } }, "documentation":"

A container that describes additional filters for identifying the source objects that you want to replicate. You can choose to enable or disable the replication of these objects. Currently, Amazon S3 supports only the filter that you can specify for objects created with server-side encryption using a customer master key (CMK) stored in AWS Key Management Service (SSE-KMS).

" @@ -9168,6 +9249,12 @@ "location":"header", "locationName":"x-amz-server-side-encryption-aws-kms-key-id" }, + "BucketKeyEnabled":{ + "shape":"BucketKeyEnabled", + "documentation":"

Indicates whether the multipart upload uses an S3 Bucket Key for server-side encryption with AWS KMS (SSE-KMS).

", + "location":"header", + "locationName":"x-amz-server-side-encryption-bucket-key-enabled" + }, "RequestCharged":{ "shape":"RequestCharged", "location":"header", @@ -9334,6 +9421,12 @@ "location":"header", "locationName":"x-amz-server-side-encryption-aws-kms-key-id" }, + "BucketKeyEnabled":{ + "shape":"BucketKeyEnabled", + "documentation":"

Indicates whether the multipart upload uses an S3 Bucket Key for server-side encryption with AWS KMS (SSE-KMS).

", + "location":"header", + "locationName":"x-amz-server-side-encryption-bucket-key-enabled" + }, "RequestCharged":{ "shape":"RequestCharged", "location":"header", From 550f75afd5d849f28e8ca898eecba984c1d4bc76 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 2 Dec 2020 00:50:47 +0000 Subject: [PATCH 315/339] Amazon Elastic Kubernetes Service Update: Amazon EKS now allows you to define and manage the lifecycle for Kubernetes add-ons for your clusters. This release adds support for the AWS VPC CNI (vpc-cni). --- ...mazonElasticKubernetesService-47e0cc1.json | 6 + .../codegen-resources/paginators-1.json | 12 + .../codegen-resources/service-2.json | 582 +++++++++++++++++- .../codegen-resources/waiters-2.json | 37 ++ 4 files changed, 623 insertions(+), 14 deletions(-) create mode 100644 .changes/next-release/feature-AmazonElasticKubernetesService-47e0cc1.json diff --git a/.changes/next-release/feature-AmazonElasticKubernetesService-47e0cc1.json b/.changes/next-release/feature-AmazonElasticKubernetesService-47e0cc1.json new file mode 100644 index 000000000000..1e20dac03858 --- /dev/null +++ b/.changes/next-release/feature-AmazonElasticKubernetesService-47e0cc1.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Elastic Kubernetes Service", + "contributor": "", + "description": "Amazon EKS now allows you to define and manage the lifecycle for Kubernetes add-ons for your clusters. This release adds support for the AWS VPC CNI (vpc-cni)." +} diff --git a/services/eks/src/main/resources/codegen-resources/paginators-1.json b/services/eks/src/main/resources/codegen-resources/paginators-1.json index 6d1c327dc5be..c21360409cd8 100644 --- a/services/eks/src/main/resources/codegen-resources/paginators-1.json +++ b/services/eks/src/main/resources/codegen-resources/paginators-1.json @@ -1,5 +1,17 @@ { "pagination": { + "DescribeAddonVersions": { + "input_token": "nextToken", + "limit_key": "maxResults", + "output_token": "nextToken", + "result_key": "addons" + }, + "ListAddons": { + "input_token": "nextToken", + "limit_key": "maxResults", + "output_token": "nextToken", + "result_key": "addons" + }, "ListClusters": { "input_token": "nextToken", "limit_key": "maxResults", diff --git a/services/eks/src/main/resources/codegen-resources/service-2.json b/services/eks/src/main/resources/codegen-resources/service-2.json index 058cb92c8098..bfedc15d9127 100644 --- a/services/eks/src/main/resources/codegen-resources/service-2.json +++ b/services/eks/src/main/resources/codegen-resources/service-2.json @@ -13,6 +13,24 @@ "uid":"eks-2017-11-01" }, "operations":{ + "CreateAddon":{ + "name":"CreateAddon", + "http":{ + "method":"POST", + "requestUri":"/clusters/{name}/addons" + }, + "input":{"shape":"CreateAddonRequest"}, + "output":{"shape":"CreateAddonResponse"}, + "errors":[ + {"shape":"InvalidParameterException"}, + {"shape":"InvalidRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ResourceInUseException"}, + {"shape":"ClientException"}, + {"shape":"ServerException"} + ], + "documentation":"

Creates an Amazon EKS add-on.

Amazon EKS add-ons help to automate the provisioning and lifecycle management of common operational software for Amazon EKS clusters. Amazon EKS add-ons can only be used with Amazon EKS clusters running version 1.18 with platform version eks.3 or later because add-ons rely on the Server-side Apply Kubernetes feature, which is only available in Kubernetes 1.18 and later.

" + }, "CreateCluster":{ "name":"CreateCluster", "http":{ @@ -67,7 +85,24 @@ {"shape":"ServerException"}, {"shape":"ServiceUnavailableException"} ], - "documentation":"

Creates a managed worker node group for an Amazon EKS cluster. You can only create a node group for your cluster that is equal to the current Kubernetes version for the cluster. All node groups are created with the latest AMI release version for the respective minor Kubernetes version of the cluster, unless you deploy a custom AMI using a launch template. For more information about using launch templates, see Launch template support.

An Amazon EKS managed node group is an Amazon EC2 Auto Scaling group and associated Amazon EC2 instances that are managed by AWS for an Amazon EKS cluster. Each node group uses a version of the Amazon EKS-optimized Amazon Linux 2 AMI. For more information, see Managed Node Groups in the Amazon EKS User Guide.

" + "documentation":"

Creates a managed worker node group for an Amazon EKS cluster. You can only create a node group for your cluster that is equal to the current Kubernetes version for the cluster. All node groups are created with the latest AMI release version for the respective minor Kubernetes version of the cluster, unless you deploy a custom AMI using a launch template. For more information about using launch templates, see Launch template support.

An Amazon EKS managed node group is an Amazon EC2 Auto Scaling group and associated Amazon EC2 instances that are managed by AWS for an Amazon EKS cluster. Each node group uses a version of the Amazon EKS optimized Amazon Linux 2 AMI. For more information, see Managed Node Groups in the Amazon EKS User Guide.

" + }, + "DeleteAddon":{ + "name":"DeleteAddon", + "http":{ + "method":"DELETE", + "requestUri":"/clusters/{name}/addons/{addonName}" + }, + "input":{"shape":"DeleteAddonRequest"}, + "output":{"shape":"DeleteAddonResponse"}, + "errors":[ + {"shape":"InvalidParameterException"}, + {"shape":"InvalidRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ClientException"}, + {"shape":"ServerException"} + ], + "documentation":"

Delete an Amazon EKS add-on.

When you remove the add-on, it will also be deleted from the cluster. You can always manually start an add-on on the cluster using the Kubernetes API.

" }, "DeleteCluster":{ "name":"DeleteCluster", @@ -120,6 +155,38 @@ ], "documentation":"

Deletes an Amazon EKS node group for a cluster.

" }, + "DescribeAddon":{ + "name":"DescribeAddon", + "http":{ + "method":"GET", + "requestUri":"/clusters/{name}/addons/{addonName}" + }, + "input":{"shape":"DescribeAddonRequest"}, + "output":{"shape":"DescribeAddonResponse"}, + "errors":[ + {"shape":"InvalidParameterException"}, + {"shape":"InvalidRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ClientException"}, + {"shape":"ServerException"} + ], + "documentation":"

Describes an Amazon EKS add-on.

" + }, + "DescribeAddonVersions":{ + "name":"DescribeAddonVersions", + "http":{ + "method":"GET", + "requestUri":"/addons/supported-versions" + }, + "input":{"shape":"DescribeAddonVersionsRequest"}, + "output":{"shape":"DescribeAddonVersionsResponse"}, + "errors":[ + {"shape":"ServerException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InvalidParameterException"} + ], + "documentation":"

Describes the Kubernetes versions that the add-on can be used with.

" + }, "DescribeCluster":{ "name":"DescribeCluster", "http":{ @@ -185,6 +252,23 @@ ], "documentation":"

Returns descriptive information about an update against your Amazon EKS cluster or associated managed node group.

When the status of the update is Succeeded, the update is complete. If an update fails, the status is Failed, and an error detail explains the reason for the failure.

" }, + "ListAddons":{ + "name":"ListAddons", + "http":{ + "method":"GET", + "requestUri":"/clusters/{name}/addons" + }, + "input":{"shape":"ListAddonsRequest"}, + "output":{"shape":"ListAddonsResponse"}, + "errors":[ + {"shape":"InvalidParameterException"}, + {"shape":"InvalidRequestException"}, + {"shape":"ClientException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ServerException"} + ], + "documentation":"

Lists the available add-ons.

" + }, "ListClusters":{ "name":"ListClusters", "http":{ @@ -292,6 +376,24 @@ ], "documentation":"

Deletes specified tags from a resource.

" }, + "UpdateAddon":{ + "name":"UpdateAddon", + "http":{ + "method":"POST", + "requestUri":"/clusters/{name}/addons/{addonName}/update" + }, + "input":{"shape":"UpdateAddonRequest"}, + "output":{"shape":"UpdateAddonResponse"}, + "errors":[ + {"shape":"InvalidParameterException"}, + {"shape":"InvalidRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ResourceInUseException"}, + {"shape":"ClientException"}, + {"shape":"ServerException"} + ], + "documentation":"

Updates an Amazon EKS add-on.

" + }, "UpdateClusterConfig":{ "name":"UpdateClusterConfig", "http":{ @@ -362,7 +464,7 @@ {"shape":"ResourceNotFoundException"}, {"shape":"InvalidRequestException"} ], - "documentation":"

Updates the Kubernetes version or AMI version of an Amazon EKS managed node group.

You can update a node group using a launch template only if the node group was originally deployed with a launch template. If you need to update a custom AMI in a node group that was deployed with a launch template, then update your custom AMI, specify the new ID in a new version of the launch template, and then update the node group to the new version of the launch template.

If you update without a launch template, then you can update to the latest available AMI version of a node group's current Kubernetes version by not specifying a Kubernetes version in the request. You can update to the latest AMI version of your cluster's current Kubernetes version by specifying your cluster's Kubernetes version in the request. For more information, see Amazon EKS-Optimized Linux AMI Versions in the Amazon EKS User Guide.

You cannot roll back a node group to an earlier Kubernetes version or AMI version.

When a node in a managed node group is terminated due to a scaling action or update, the pods in that node are drained first. Amazon EKS attempts to drain the nodes gracefully and will fail if it is unable to do so. You can force the update if Amazon EKS is unable to drain the nodes as a result of a pod disruption budget issue.

" + "documentation":"

Updates the Kubernetes version or AMI version of an Amazon EKS managed node group.

You can update a node group using a launch template only if the node group was originally deployed with a launch template. If you need to update a custom AMI in a node group that was deployed with a launch template, then update your custom AMI, specify the new ID in a new version of the launch template, and then update the node group to the new version of the launch template.

If you update without a launch template, then you can update to the latest available AMI version of a node group's current Kubernetes version by not specifying a Kubernetes version in the request. You can update to the latest AMI version of your cluster's current Kubernetes version by specifying your cluster's Kubernetes version in the request. For more information, see Amazon EKS optimized Amazon Linux 2 AMI versions in the Amazon EKS User Guide.

You cannot roll back a node group to an earlier Kubernetes version or AMI version.

When a node in a managed node group is terminated due to a scaling action or update, the pods in that node are drained first. Amazon EKS attempts to drain the nodes gracefully and will fail if it is unable to do so. You can force the update if Amazon EKS is unable to drain the nodes as a result of a pod disruption budget issue.

" } }, "shapes":{ @@ -374,6 +476,150 @@ "AL2_ARM_64" ] }, + "Addon":{ + "type":"structure", + "members":{ + "addonName":{ + "shape":"String", + "documentation":"

The name of the add-on.

" + }, + "clusterName":{ + "shape":"ClusterName", + "documentation":"

The name of the cluster.

" + }, + "status":{ + "shape":"AddonStatus", + "documentation":"

The status of the add-on.

" + }, + "addonVersion":{ + "shape":"String", + "documentation":"

The version of the add-on.

" + }, + "health":{ + "shape":"AddonHealth", + "documentation":"

An object that represents the health of the add-on.

" + }, + "addonArn":{ + "shape":"String", + "documentation":"

The Amazon Resource Name (ARN) of the add-on.

" + }, + "createdAt":{ + "shape":"Timestamp", + "documentation":"

The date and time that the add-on was created.

" + }, + "modifiedAt":{ + "shape":"Timestamp", + "documentation":"

The date and time that the add-on was last modified.

" + }, + "serviceAccountRoleArn":{ + "shape":"String", + "documentation":"

The Amazon Resource Name (ARN) of the IAM role that is bound to the Kubernetes service account used by the add-on.

" + }, + "tags":{ + "shape":"TagMap", + "documentation":"

The metadata that you apply to the cluster to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Cluster tags do not propagate to any other resources associated with the cluster.

" + } + }, + "documentation":"

An Amazon EKS add-on.

" + }, + "AddonHealth":{ + "type":"structure", + "members":{ + "issues":{ + "shape":"AddonIssueList", + "documentation":"

An object that represents the add-on's health issues.

" + } + }, + "documentation":"

The health of the add-on.

" + }, + "AddonInfo":{ + "type":"structure", + "members":{ + "addonName":{ + "shape":"String", + "documentation":"

The name of the add-on.

" + }, + "type":{ + "shape":"String", + "documentation":"

The type of the add-on.

" + }, + "addonVersions":{ + "shape":"AddonVersionInfoList", + "documentation":"

An object that represents information about available add-on versions and compatible Kubernetes versions.

" + } + }, + "documentation":"

Information about an add-on.

" + }, + "AddonIssue":{ + "type":"structure", + "members":{ + "code":{ + "shape":"AddonIssueCode", + "documentation":"

A code that describes the type of issue.

" + }, + "message":{ + "shape":"String", + "documentation":"

A message that provides details about the issue and what might cause it.

" + }, + "resourceIds":{ + "shape":"StringList", + "documentation":"

The resource IDs of the issue.

" + } + }, + "documentation":"

An issue related to an add-on.

" + }, + "AddonIssueCode":{ + "type":"string", + "enum":[ + "AccessDenied", + "InternalFailure", + "ClusterUnreachable", + "InsufficientNumberOfReplicas", + "ConfigurationConflict" + ] + }, + "AddonIssueList":{ + "type":"list", + "member":{"shape":"AddonIssue"} + }, + "AddonStatus":{ + "type":"string", + "enum":[ + "CREATING", + "ACTIVE", + "CREATE_FAILED", + "UPDATING", + "DELETING", + "DELETE_FAILED", + "DEGRADED" + ] + }, + "AddonVersionInfo":{ + "type":"structure", + "members":{ + "addonVersion":{ + "shape":"String", + "documentation":"

The version of the add-on.

" + }, + "architecture":{ + "shape":"StringList", + "documentation":"

The architectures that the version supports.

" + }, + "compatibilities":{ + "shape":"Compatibilities", + "documentation":"

An object that represents the compatibilities of a version.

" + } + }, + "documentation":"

Information about an add-on version.

" + }, + "AddonVersionInfoList":{ + "type":"list", + "member":{"shape":"AddonVersionInfo"} + }, + "Addons":{ + "type":"list", + "member":{"shape":"AddonInfo"} + }, "AutoScalingGroup":{ "type":"structure", "members":{ @@ -411,6 +657,13 @@ "box":true, "min":1 }, + "CapacityTypes":{ + "type":"string", + "enum":[ + "ON_DEMAND", + "SPOT" + ] + }, "Certificate":{ "type":"structure", "members":{ @@ -432,6 +685,7 @@ "shape":"String", "documentation":"

The Amazon EKS managed node group associated with the exception.

" }, + "addonName":{"shape":"String"}, "message":{"shape":"String"} }, "documentation":"

These errors are usually caused by a client action. Actions can include using an action or resource on behalf of a user that doesn't have permissions to use the action or resource or specifying an identifier that is not valid.

", @@ -471,7 +725,7 @@ }, "kubernetesNetworkConfig":{ "shape":"KubernetesNetworkConfigResponse", - "documentation":"

Network configuration settings for your cluster.

" + "documentation":"

The Kubernetes network configuration for the cluster.

" }, "logging":{ "shape":"Logging", @@ -524,6 +778,74 @@ "UPDATING" ] }, + "Compatibilities":{ + "type":"list", + "member":{"shape":"Compatibility"} + }, + "Compatibility":{ + "type":"structure", + "members":{ + "clusterVersion":{ + "shape":"String", + "documentation":"

The supported Kubernetes version of the cluster.

" + }, + "platformVersions":{ + "shape":"StringList", + "documentation":"

The supported compute platform.

" + }, + "defaultVersion":{ + "shape":"Boolean", + "documentation":"

The supported default version.

" + } + }, + "documentation":"

Compatibility information.

" + }, + "CreateAddonRequest":{ + "type":"structure", + "required":[ + "clusterName", + "addonName" + ], + "members":{ + "clusterName":{ + "shape":"ClusterName", + "documentation":"

The name of the cluster to create the add-on for.

", + "location":"uri", + "locationName":"name" + }, + "addonName":{ + "shape":"String", + "documentation":"

The name of the add-on. The name must match one of the names returned by ListAddons .

" + }, + "addonVersion":{ + "shape":"String", + "documentation":"

The version of the add-on. The version must match one of the versions returned by DescribeAddonVersions .

" + }, + "serviceAccountRoleArn":{ + "shape":"RoleArn", + "documentation":"

The Amazon Resource Name (ARN) of an existing IAM role to bind to the add-on's service account. The role must be assigned the IAM permissions required by the add-on. If you don't specify an existing IAM role, then the add-on uses the permissions assigned to the node IAM role. For more information, see Amazon EKS node IAM role in the Amazon EKS User Guide.

To specify an existing IAM role, you must have an IAM OpenID Connect (OIDC) provider created for your cluster. For more information, see Enabling IAM roles for service accounts on your cluster in the Amazon EKS User Guide.

" + }, + "resolveConflicts":{ + "shape":"ResolveConflicts", + "documentation":"

How to resolve parameter value conflicts when migrating an existing add-on to an Amazon EKS add-on.

" + }, + "clientRequestToken":{ + "shape":"String", + "documentation":"

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

", + "idempotencyToken":true + }, + "tags":{ + "shape":"TagMap", + "documentation":"

The metadata to apply to the cluster to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define.

" + } + } + }, + "CreateAddonResponse":{ + "type":"structure", + "members":{ + "addon":{"shape":"Addon"} + } + }, "CreateClusterRequest":{ "type":"structure", "required":[ @@ -663,11 +985,11 @@ }, "instanceTypes":{ "shape":"StringList", - "documentation":"

The instance type to use for your node group. You can specify a single instance type for a node group. The default value for instanceTypes is t3.medium. If you choose a GPU instance type, be sure to specify AL2_x86_64_GPU with the amiType parameter. If you specify launchTemplate, then don't specify instanceTypes, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see Launch template support in the Amazon EKS User Guide.

" + "documentation":"

Specify the instance types for a node group. If you specify a GPU instance type, be sure to specify AL2_x86_64_GPU with the amiType parameter. If you specify launchTemplate, then you can specify zero or one instance type in your launch template or you can specify 0-20 instance types for instanceTypes. If however, you specify an instance type in your launch template and specify any instanceTypes, the node group deployment will fail. If you don't specify an instance type in a launch template or for instanceTypes, then t3.medium is used, by default. If you specify Spot for capacityType, then we recommend specifying multiple values for instanceTypes. For more information, see Managed node group capacity types and Launch template support in the Amazon EKS User Guide.

" }, "amiType":{ "shape":"AMITypes", - "documentation":"

The AMI type for your node group. GPU instance types should use the AL2_x86_64_GPU AMI type. Non-GPU instances should use the AL2_x86_64 AMI type. Arm instances should use the AL2_ARM_64 AMI type. All types use the Amazon EKS-optimized Amazon Linux 2 AMI. If you specify launchTemplate, and your launch template uses a custom AMI, then don't specify amiType, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see Launch template support in the Amazon EKS User Guide.

" + "documentation":"

The AMI type for your node group. GPU instance types should use the AL2_x86_64_GPU AMI type. Non-GPU instances should use the AL2_x86_64 AMI type. Arm instances should use the AL2_ARM_64 AMI type. All types use the Amazon EKS optimized Amazon Linux 2 AMI. If you specify launchTemplate, and your launch template uses a custom AMI, then don't specify amiType, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see Launch template support in the Amazon EKS User Guide.

" }, "remoteAccess":{ "shape":"RemoteAccessConfig", @@ -694,13 +1016,17 @@ "shape":"LaunchTemplateSpecification", "documentation":"

An object representing a node group's launch template specification. If specified, then do not specify instanceTypes, diskSize, or remoteAccess and make sure that the launch template meets the requirements in launchTemplateSpecification.

" }, + "capacityType":{ + "shape":"CapacityTypes", + "documentation":"

The capacity type for your node group.

" + }, "version":{ "shape":"String", "documentation":"

The Kubernetes version to use for your managed nodes. By default, the Kubernetes version of the cluster is used, and this is the only accepted specified value. If you specify launchTemplate, and your launch template uses a custom AMI, then don't specify version, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see Launch template support in the Amazon EKS User Guide.

" }, "releaseVersion":{ "shape":"String", - "documentation":"

The AMI version of the Amazon EKS-optimized AMI to use with your node group. By default, the latest available AMI version for the node group's current Kubernetes version is used. For more information, see Amazon EKS-Optimized Linux AMI Versions in the Amazon EKS User Guide. If you specify launchTemplate, and your launch template uses a custom AMI, then don't specify releaseVersion, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see Launch template support in the Amazon EKS User Guide.

" + "documentation":"

The AMI version of the Amazon EKS optimized AMI to use with your node group. By default, the latest available AMI version for the node group's current Kubernetes version is used. For more information, see Amazon EKS optimized Amazon Linux 2 AMI versions in the Amazon EKS User Guide. If you specify launchTemplate, and your launch template uses a custom AMI, then don't specify releaseVersion, or the node group deployment will fail. For more information about using launch templates with Amazon EKS, see Launch template support in the Amazon EKS User Guide.

" } } }, @@ -713,6 +1039,33 @@ } } }, + "DeleteAddonRequest":{ + "type":"structure", + "required":[ + "clusterName", + "addonName" + ], + "members":{ + "clusterName":{ + "shape":"ClusterName", + "documentation":"

The name of the cluster to delete the add-on from.

", + "location":"uri", + "locationName":"name" + }, + "addonName":{ + "shape":"String", + "documentation":"

The name of the add-on. The name must match one of the names returned by ListAddons .

", + "location":"uri", + "locationName":"addonName" + } + } + }, + "DeleteAddonResponse":{ + "type":"structure", + "members":{ + "addon":{"shape":"Addon"} + } + }, "DeleteClusterRequest":{ "type":"structure", "required":["name"], @@ -794,6 +1147,81 @@ } } }, + "DescribeAddonRequest":{ + "type":"structure", + "required":[ + "clusterName", + "addonName" + ], + "members":{ + "clusterName":{ + "shape":"ClusterName", + "documentation":"

The name of the cluster.

", + "location":"uri", + "locationName":"name" + }, + "addonName":{ + "shape":"String", + "documentation":"

The name of the add-on. The name must match one of the names returned by ListAddons .

", + "location":"uri", + "locationName":"addonName" + } + } + }, + "DescribeAddonResponse":{ + "type":"structure", + "members":{ + "addon":{"shape":"Addon"} + } + }, + "DescribeAddonVersionsRequest":{ + "type":"structure", + "members":{ + "kubernetesVersion":{ + "shape":"String", + "documentation":"

The Kubernetes versions that the add-on can be used with.

", + "location":"querystring", + "locationName":"kubernetesVersion" + }, + "maxResults":{ + "shape":"DescribeAddonVersionsRequestMaxResults", + "documentation":"

The maximum number of results to return.

", + "location":"querystring", + "locationName":"maxResults" + }, + "nextToken":{ + "shape":"String", + "documentation":"

The nextToken value returned from a previous paginated DescribeAddonVersionsRequest where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.

", + "location":"querystring", + "locationName":"nextToken" + }, + "addonName":{ + "shape":"String", + "documentation":"

The name of the add-on. The name must match one of the names returned by ListAddons .

", + "location":"querystring", + "locationName":"addonName" + } + } + }, + "DescribeAddonVersionsRequestMaxResults":{ + "type":"integer", + "box":true, + "max":100, + "min":1 + }, + "DescribeAddonVersionsResponse":{ + "type":"structure", + "members":{ + "addons":{ + "shape":"Addons", + "documentation":"

The list of available versions with Kubernetes version compatibility.

" + }, + "nextToken":{ + "shape":"String", + "documentation":"

The nextToken value returned from a previous paginated DescribeAddonVersionsResponse where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.

" + } + } + }, "DescribeClusterRequest":{ "type":"structure", "required":["name"], @@ -899,6 +1327,12 @@ "documentation":"

The name of the Amazon EKS node group associated with the update.

", "location":"querystring", "locationName":"nodegroupName" + }, + "addonName":{ + "shape":"String", + "documentation":"

The name of the add-on. The name must match one of the names returned by ListAddons .

", + "location":"querystring", + "locationName":"addonName" } } }, @@ -944,7 +1378,9 @@ "NodeCreationFailure", "PodEvictionFailure", "InsufficientFreeAddresses", - "ClusterUnreachable" + "ClusterUnreachable", + "InsufficientNumberOfReplicas", + "ConfigurationConflict" ] }, "ErrorDetail":{ @@ -1075,6 +1511,7 @@ "shape":"String", "documentation":"

The Fargate profile associated with the exception.

" }, + "addonName":{"shape":"String"}, "message":{"shape":"String"} }, "documentation":"

The specified parameter is invalid. Review the available parameters for the API request.

", @@ -1092,6 +1529,7 @@ "shape":"String", "documentation":"

The Amazon EKS managed node group associated with the exception.

" }, + "addonName":{"shape":"String"}, "message":{"shape":"String"} }, "documentation":"

The request is invalid given the state of the cluster. Check the state of the cluster and the associated operations.

", @@ -1103,7 +1541,7 @@ "members":{ "code":{ "shape":"NodegroupIssueCode", - "documentation":"

A brief description of the error.

  • AutoScalingGroupNotFound: We couldn't find the Auto Scaling group associated with the managed node group. You may be able to recreate an Auto Scaling group with the same settings to recover.

  • Ec2SecurityGroupNotFound: We couldn't find the cluster security group for the cluster. You must recreate your cluster.

  • Ec2SecurityGroupDeletionFailure: We could not delete the remote access security group for your managed node group. Remove any dependencies from the security group.

  • Ec2LaunchTemplateNotFound: We couldn't find the Amazon EC2 launch template for your managed node group. You may be able to recreate a launch template with the same settings to recover.

  • Ec2LaunchTemplateVersionMismatch: The Amazon EC2 launch template version for your managed node group does not match the version that Amazon EKS created. You may be able to revert to the version that Amazon EKS created to recover.

  • Ec2SubnetInvalidConfiguration: One or more Amazon EC2 subnets specified for a node group do not automatically assign public IP addresses to instances launched into it. If you want your instances to be assigned a public IP address, then you need to enable the auto-assign public IP address setting for the subnet. See Modifying the public IPv4 addressing attribute for your subnet in the Amazon VPC User Guide.

  • IamInstanceProfileNotFound: We couldn't find the IAM instance profile for your managed node group. You may be able to recreate an instance profile with the same settings to recover.

  • IamNodeRoleNotFound: We couldn't find the IAM role for your managed node group. You may be able to recreate an IAM role with the same settings to recover.

  • AsgInstanceLaunchFailures: Your Auto Scaling group is experiencing failures while attempting to launch instances.

  • NodeCreationFailure: Your launched instances are unable to register with your Amazon EKS cluster. Common causes of this failure are insufficient worker node IAM role permissions or lack of outbound internet access for the nodes.

  • InstanceLimitExceeded: Your AWS account is unable to launch any more instances of the specified instance type. You may be able to request an Amazon EC2 instance limit increase to recover.

  • InsufficientFreeAddresses: One or more of the subnets associated with your managed node group does not have enough available IP addresses for new nodes.

  • AccessDenied: Amazon EKS or one or more of your managed nodes is unable to communicate with your cluster API server.

  • InternalFailure: These errors are usually caused by an Amazon EKS server-side issue.

" + "documentation":"

A brief description of the error.

  • AccessDenied: Amazon EKS or one or more of your managed nodes is failing to authenticate or authorize with your Kubernetes cluster API server.

  • AsgInstanceLaunchFailures: Your Auto Scaling group is experiencing failures while attempting to launch instances.

  • AutoScalingGroupNotFound: We couldn't find the Auto Scaling group associated with the managed node group. You may be able to recreate an Auto Scaling group with the same settings to recover.

  • ClusterUnreachable: Amazon EKS or one or more of your managed nodes is unable to to communicate with your Kubernetes cluster API server. This can happen if there are network disruptions or if API servers are timing out processing requests.

  • Ec2LaunchTemplateNotFound: We couldn't find the Amazon EC2 launch template for your managed node group. You may be able to recreate a launch template with the same settings to recover.

  • Ec2LaunchTemplateVersionMismatch: The Amazon EC2 launch template version for your managed node group does not match the version that Amazon EKS created. You may be able to revert to the version that Amazon EKS created to recover.

  • Ec2SecurityGroupDeletionFailure: We could not delete the remote access security group for your managed node group. Remove any dependencies from the security group.

  • Ec2SecurityGroupNotFound: We couldn't find the cluster security group for the cluster. You must recreate your cluster.

  • Ec2SubnetInvalidConfiguration: One or more Amazon EC2 subnets specified for a node group do not automatically assign public IP addresses to instances launched into it. If you want your instances to be assigned a public IP address, then you need to enable the auto-assign public IP address setting for the subnet. See Modifying the public IPv4 addressing attribute for your subnet in the Amazon VPC User Guide.

  • IamInstanceProfileNotFound: We couldn't find the IAM instance profile for your managed node group. You may be able to recreate an instance profile with the same settings to recover.

  • IamNodeRoleNotFound: We couldn't find the IAM role for your managed node group. You may be able to recreate an IAM role with the same settings to recover.

  • InstanceLimitExceeded: Your AWS account is unable to launch any more instances of the specified instance type. You may be able to request an Amazon EC2 instance limit increase to recover.

  • InsufficientFreeAddresses: One or more of the subnets associated with your managed node group does not have enough available IP addresses for new nodes.

  • InternalFailure: These errors are usually caused by an Amazon EKS server-side issue.

  • NodeCreationFailure: Your launched instances are unable to register with your Amazon EKS cluster. Common causes of this failure are insufficient worker node IAM role permissions or lack of outbound internet access for the nodes.

" }, "message":{ "shape":"String", @@ -1135,7 +1573,7 @@ "members":{ "serviceIpv4Cidr":{ "shape":"String", - "documentation":"

The CIDR block that Kubernetes service IP addresses are assigned from. If you didn't specify a CIDR block, then Kubernetes assigns addresses from either the 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks. If this was specified, then it was specified when the cluster was created and it cannot be changed.

" + "documentation":"

The CIDR block that Kubernetes service IP addresses are assigned from. If you didn't specify a CIDR block when you created the cluster, then Kubernetes assigns addresses from either the 10.100.0.0/16 or 172.20.0.0/16 CIDR blocks. If this was specified, then it was specified when the cluster was created and it cannot be changed.

" } }, "documentation":"

The Kubernetes network configuration for the cluster.

" @@ -1158,6 +1596,49 @@ }, "documentation":"

An object representing a node group launch template specification. The launch template cannot include SubnetId , IamInstanceProfile , RequestSpotInstances , HibernationOptions , or TerminateInstances , or the node group deployment or update will fail. For more information about launch templates, see CreateLaunchTemplate in the Amazon EC2 API Reference. For more information about using launch templates with Amazon EKS, see Launch template support in the Amazon EKS User Guide.

Specify either name or id, but not both.

" }, + "ListAddonsRequest":{ + "type":"structure", + "required":["clusterName"], + "members":{ + "clusterName":{ + "shape":"ClusterName", + "documentation":"

The name of the cluster.

", + "location":"uri", + "locationName":"name" + }, + "maxResults":{ + "shape":"ListAddonsRequestMaxResults", + "documentation":"

The maximum number of add-on results returned by ListAddonsRequest in paginated output. When you use this parameter, ListAddonsRequest returns only maxResults results in a single page along with a nextToken response element. You can see the remaining results of the initial request by sending another ListAddonsRequest request with the returned nextToken value. This value can be between 1 and 100. If you don't use this parameter, ListAddonsRequest returns up to 100 results and a nextToken value, if applicable.

", + "location":"querystring", + "locationName":"maxResults" + }, + "nextToken":{ + "shape":"String", + "documentation":"

The nextToken value returned from a previous paginated ListAddonsRequest where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.

", + "location":"querystring", + "locationName":"nextToken" + } + } + }, + "ListAddonsRequestMaxResults":{ + "type":"integer", + "box":true, + "max":100, + "min":1 + }, + "ListAddonsResponse":{ + "type":"structure", + "members":{ + "addons":{ + "shape":"StringList", + "documentation":"

A list of available add-ons.

" + }, + "nextToken":{ + "shape":"String", + "documentation":"

The nextToken value returned from a previous paginated ListAddonsResponse where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

This token should be treated as an opaque identifier that is used only to retrieve the next items in a list and not for other programmatic purposes.

" + } + } + }, "ListClustersRequest":{ "type":"structure", "members":{ @@ -1311,6 +1792,12 @@ "location":"querystring", "locationName":"nodegroupName" }, + "addonName":{ + "shape":"String", + "documentation":"

The names of the installed add-ons that have available updates.

", + "location":"querystring", + "locationName":"addonName" + }, "nextToken":{ "shape":"String", "documentation":"

The nextToken value returned from a previous paginated ListUpdates request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value.

", @@ -1407,7 +1894,7 @@ }, "releaseVersion":{ "shape":"String", - "documentation":"

If the node group was deployed using a launch template with a custom AMI, then this is the AMI ID that was specified in the launch template. For node groups that weren't deployed using a launch template, this is the version of the Amazon EKS-optimized AMI that the node group was deployed with.

" + "documentation":"

If the node group was deployed using a launch template with a custom AMI, then this is the AMI ID that was specified in the launch template. For node groups that weren't deployed using a launch template, this is the version of the Amazon EKS optimized AMI that the node group was deployed with.

" }, "createdAt":{ "shape":"Timestamp", @@ -1421,6 +1908,10 @@ "shape":"NodegroupStatus", "documentation":"

The current status of the managed node group.

" }, + "capacityType":{ + "shape":"CapacityTypes", + "documentation":"

The capacity type of your managed node group.

" + }, "scalingConfig":{ "shape":"NodegroupScalingConfig", "documentation":"

The scaling configuration details for the Auto Scaling group that is associated with your node group.

" @@ -1592,6 +2083,13 @@ }, "documentation":"

An object representing the remote access configuration for the managed node group.

" }, + "ResolveConflicts":{ + "type":"string", + "enum":[ + "OVERWRITE", + "NONE" + ] + }, "ResourceInUseException":{ "type":"structure", "members":{ @@ -1603,6 +2101,7 @@ "shape":"String", "documentation":"

The Amazon EKS managed node group associated with the exception.

" }, + "addonName":{"shape":"String"}, "message":{"shape":"String"} }, "documentation":"

The specified resource is in use.

", @@ -1641,12 +2140,18 @@ "shape":"String", "documentation":"

The Fargate profile associated with the exception.

" }, + "addonName":{"shape":"String"}, "message":{"shape":"String"} }, "documentation":"

The specified resource could not be found. You can view your available clusters with ListClusters. You can view your available managed node groups with ListNodegroups. Amazon EKS clusters and node groups are Region-specific.

", "error":{"httpStatusCode":404}, "exception":true }, + "RoleArn":{ + "type":"string", + "max":255, + "min":1 + }, "ServerException":{ "type":"structure", "members":{ @@ -1658,6 +2163,7 @@ "shape":"String", "documentation":"

The Amazon EKS managed node group associated with the exception.

" }, + "addonName":{"shape":"String"}, "message":{"shape":"String"} }, "documentation":"

These errors are usually caused by a server-side issue.

", @@ -1804,6 +2310,50 @@ }, "documentation":"

An object representing an asynchronous update.

" }, + "UpdateAddonRequest":{ + "type":"structure", + "required":[ + "clusterName", + "addonName" + ], + "members":{ + "clusterName":{ + "shape":"ClusterName", + "documentation":"

The name of the cluster.

", + "location":"uri", + "locationName":"name" + }, + "addonName":{ + "shape":"String", + "documentation":"

The name of the add-on. The name must match one of the names returned by ListAddons .

", + "location":"uri", + "locationName":"addonName" + }, + "addonVersion":{ + "shape":"String", + "documentation":"

The version of the add-on. The version must match one of the versions returned by DescribeAddonVersions .

" + }, + "serviceAccountRoleArn":{ + "shape":"RoleArn", + "documentation":"

The Amazon Resource Name (ARN) of an existing IAM role to bind to the add-on's service account. The role must be assigned the IAM permissions required by the add-on. If you don't specify an existing IAM role, then the add-on uses the permissions assigned to the node IAM role. For more information, see Amazon EKS node IAM role in the Amazon EKS User Guide.

To specify an existing IAM role, you must have an IAM OpenID Connect (OIDC) provider created for your cluster. For more information, see Enabling IAM roles for service accounts on your cluster in the Amazon EKS User Guide.

" + }, + "resolveConflicts":{ + "shape":"ResolveConflicts", + "documentation":"

How to resolve parameter value conflicts when applying the new version of the add-on to the cluster.

" + }, + "clientRequestToken":{ + "shape":"String", + "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

", + "idempotencyToken":true + } + } + }, + "UpdateAddonResponse":{ + "type":"structure", + "members":{ + "update":{"shape":"Update"} + } + }, "UpdateClusterConfigRequest":{ "type":"structure", "required":["name"], @@ -1944,7 +2494,7 @@ }, "releaseVersion":{ "shape":"String", - "documentation":"

The AMI version of the Amazon EKS-optimized AMI to use for the update. By default, the latest available AMI version for the node group's Kubernetes version is used. For more information, see Amazon EKS-Optimized Linux AMI Versions in the Amazon EKS User Guide. If you specify launchTemplate, and your launch template uses a custom AMI, then don't specify releaseVersion, or the node group update will fail. For more information about using launch templates with Amazon EKS, see Launch template support in the Amazon EKS User Guide.

" + "documentation":"

The AMI version of the Amazon EKS optimized AMI to use for the update. By default, the latest available AMI version for the node group's Kubernetes version is used. For more information, see Amazon EKS optimized Amazon Linux 2 AMI versions in the Amazon EKS User Guide. If you specify launchTemplate, and your launch template uses a custom AMI, then don't specify releaseVersion, or the node group update will fail. For more information about using launch templates with Amazon EKS, see Launch template support in the Amazon EKS User Guide.

" }, "launchTemplate":{ "shape":"LaunchTemplateSpecification", @@ -1995,7 +2545,10 @@ "MaxSize", "MinSize", "ReleaseVersion", - "PublicAccessCidrs" + "PublicAccessCidrs", + "AddonVersion", + "ServiceAccountRoleArn", + "ResolveConflicts" ] }, "UpdateParams":{ @@ -2017,7 +2570,8 @@ "VersionUpdate", "EndpointAccessUpdate", "LoggingUpdate", - "ConfigUpdate" + "ConfigUpdate", + "AddonUpdate" ] }, "VpcConfigRequest":{ @@ -2029,7 +2583,7 @@ }, "securityGroupIds":{ "shape":"StringList", - "documentation":"

Specify one or more security groups for the cross-account elastic network interfaces that Amazon EKS creates to use to allow communication between your worker nodes and the Kubernetes control plane. If you don't specify a security group, the default security group for your VPC is used.

" + "documentation":"

Specify one or more security groups for the cross-account elastic network interfaces that Amazon EKS creates to use to allow communication between your worker nodes and the Kubernetes control plane. If you don't specify any security groups, then familiarize yourself with the difference between Amazon EKS defaults for clusters deployed with Kubernetes:

  • 1.14 Amazon EKS platform version eks.2 and earlier

  • 1.14 Amazon EKS platform version eks.3 and later

For more information, see Amazon EKS security group considerations in the Amazon EKS User Guide .

" }, "endpointPublicAccess":{ "shape":"BoxedBoolean", diff --git a/services/eks/src/main/resources/codegen-resources/waiters-2.json b/services/eks/src/main/resources/codegen-resources/waiters-2.json index 449d2296c391..6383d079325f 100644 --- a/services/eks/src/main/resources/codegen-resources/waiters-2.json +++ b/services/eks/src/main/resources/codegen-resources/waiters-2.json @@ -86,6 +86,43 @@ "state": "success" } ] + }, + "AddonActive": { + "delay": 10, + "operation": "DescribeAddon", + "maxAttempts": 60, + "acceptors": [ + { + "expected": "CREATE_FAILED", + "matcher": "path", + "state": "failure", + "argument": "addon.status" + }, + { + "expected": "ACTIVE", + "matcher": "path", + "state": "success", + "argument": "addon.status" + } + ] + }, + "AddonDeleted": { + "delay": 10, + "operation": "DescribeAddon", + "maxAttempts": 60, + "acceptors": [ + { + "expected": "DELETE_FAILED", + "matcher": "path", + "state": "failure", + "argument": "addon.status" + }, + { + "expected": "ResourceNotFoundException", + "matcher": "error", + "state": "success" + } + ] } } } From 8ce2f74d19de44a96f15817496c9988ccabcd26d Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 2 Dec 2020 00:50:48 +0000 Subject: [PATCH 316/339] Amazon Elastic Container Registry Public Update: Supports Amazon Elastic Container Registry (Amazon ECR) Public, a fully managed registry that makes it easy for a developer to publicly share container software worldwide for anyone to download. --- ...lasticContainerRegistryPublic-f57d589.json | 6 + services/ecrpublic/pom.xml | 60 + .../codegen-resources/paginators-1.json | 28 + .../codegen-resources/service-2.json | 1744 +++++++++++++++++ 4 files changed, 1838 insertions(+) create mode 100644 .changes/next-release/feature-AmazonElasticContainerRegistryPublic-f57d589.json create mode 100644 services/ecrpublic/pom.xml create mode 100644 services/ecrpublic/src/main/resources/codegen-resources/paginators-1.json create mode 100644 services/ecrpublic/src/main/resources/codegen-resources/service-2.json diff --git a/.changes/next-release/feature-AmazonElasticContainerRegistryPublic-f57d589.json b/.changes/next-release/feature-AmazonElasticContainerRegistryPublic-f57d589.json new file mode 100644 index 000000000000..2c880c203fdd --- /dev/null +++ b/.changes/next-release/feature-AmazonElasticContainerRegistryPublic-f57d589.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Elastic Container Registry Public", + "contributor": "", + "description": "Supports Amazon Elastic Container Registry (Amazon ECR) Public, a fully managed registry that makes it easy for a developer to publicly share container software worldwide for anyone to download." +} diff --git a/services/ecrpublic/pom.xml b/services/ecrpublic/pom.xml new file mode 100644 index 000000000000..010870ba5f72 --- /dev/null +++ b/services/ecrpublic/pom.xml @@ -0,0 +1,60 @@ + + + + + 4.0.0 + + software.amazon.awssdk + services + 2.15.37-SNAPSHOT + + ecrpublic + AWS Java SDK :: Services :: ECR PUBLIC + The AWS Java SDK for ECR PUBLIC module holds the client classes that are used for + communicating with ECR PUBLIC. + + https://aws.amazon.com/sdkforjava + + + + org.apache.maven.plugins + maven-jar-plugin + + + + software.amazon.awssdk.services.ecrpublic + + + + + + + + + + software.amazon.awssdk + protocol-core + ${awsjavasdk.version} + + + software.amazon.awssdk + aws-json-protocol + ${awsjavasdk.version} + + + diff --git a/services/ecrpublic/src/main/resources/codegen-resources/paginators-1.json b/services/ecrpublic/src/main/resources/codegen-resources/paginators-1.json new file mode 100644 index 000000000000..bcdd4c61078a --- /dev/null +++ b/services/ecrpublic/src/main/resources/codegen-resources/paginators-1.json @@ -0,0 +1,28 @@ +{ + "pagination": { + "DescribeImageTags": { + "input_token": "nextToken", + "limit_key": "maxResults", + "output_token": "nextToken", + "result_key": "imageTagDetails" + }, + "DescribeImages": { + "input_token": "nextToken", + "limit_key": "maxResults", + "output_token": "nextToken", + "result_key": "imageDetails" + }, + "DescribeRegistries": { + "input_token": "nextToken", + "limit_key": "maxResults", + "output_token": "nextToken", + "result_key": "registries" + }, + "DescribeRepositories": { + "input_token": "nextToken", + "limit_key": "maxResults", + "output_token": "nextToken", + "result_key": "repositories" + } + } +} \ No newline at end of file diff --git a/services/ecrpublic/src/main/resources/codegen-resources/service-2.json b/services/ecrpublic/src/main/resources/codegen-resources/service-2.json new file mode 100644 index 000000000000..6901381fcc76 --- /dev/null +++ b/services/ecrpublic/src/main/resources/codegen-resources/service-2.json @@ -0,0 +1,1744 @@ +{ + "version":"2.0", + "metadata":{ + "apiVersion":"2020-10-30", + "endpointPrefix":"api.ecr-public", + "jsonVersion":"1.1", + "protocol":"json", + "serviceAbbreviation":"Amazon ECR Public", + "serviceFullName":"Amazon Elastic Container Registry Public", + "serviceId":"ECR PUBLIC", + "signatureVersion":"v4", + "signingName":"ecr-public", + "targetPrefix":"SpencerFrontendService", + "uid":"ecr-public-2020-10-30" + }, + "operations":{ + "BatchCheckLayerAvailability":{ + "name":"BatchCheckLayerAvailability", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"BatchCheckLayerAvailabilityRequest"}, + "output":{"shape":"BatchCheckLayerAvailabilityResponse"}, + "errors":[ + {"shape":"RepositoryNotFoundException"}, + {"shape":"InvalidParameterException"}, + {"shape":"ServerException"}, + {"shape":"RegistryNotFoundException"} + ], + "documentation":"

Checks the availability of one or more image layers within a repository in a public registry. When an image is pushed to a repository, each image layer is checked to verify if it has been uploaded before. If it has been uploaded, then the image layer is skipped.

This operation is used by the Amazon ECR proxy and is not generally used by customers for pulling and pushing images. In most cases, you should use the docker CLI to pull, tag, and push images.

" + }, + "BatchDeleteImage":{ + "name":"BatchDeleteImage", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"BatchDeleteImageRequest"}, + "output":{"shape":"BatchDeleteImageResponse"}, + "errors":[ + {"shape":"ServerException"}, + {"shape":"InvalidParameterException"}, + {"shape":"RepositoryNotFoundException"} + ], + "documentation":"

Deletes a list of specified images within a repository in a public registry. Images are specified with either an imageTag or imageDigest.

You can remove a tag from an image by specifying the image's tag in your request. When you remove the last tag from an image, the image is deleted from your repository.

You can completely delete an image (and all of its tags) by specifying the image's digest in your request.

" + }, + "CompleteLayerUpload":{ + "name":"CompleteLayerUpload", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CompleteLayerUploadRequest"}, + "output":{"shape":"CompleteLayerUploadResponse"}, + "errors":[ + {"shape":"ServerException"}, + {"shape":"InvalidParameterException"}, + {"shape":"RepositoryNotFoundException"}, + {"shape":"UploadNotFoundException"}, + {"shape":"InvalidLayerException"}, + {"shape":"LayerPartTooSmallException"}, + {"shape":"LayerAlreadyExistsException"}, + {"shape":"EmptyUploadException"}, + {"shape":"RegistryNotFoundException"}, + {"shape":"UnsupportedCommandException"} + ], + "documentation":"

Informs Amazon ECR that the image layer upload has completed for a specified public registry, repository name, and upload ID. You can optionally provide a sha256 digest of the image layer for data validation purposes.

When an image is pushed, the CompleteLayerUpload API is called once per each new image layer to verify that the upload has completed.

This operation is used by the Amazon ECR proxy and is not generally used by customers for pulling and pushing images. In most cases, you should use the docker CLI to pull, tag, and push images.

" + }, + "CreateRepository":{ + "name":"CreateRepository", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateRepositoryRequest"}, + "output":{"shape":"CreateRepositoryResponse"}, + "errors":[ + {"shape":"ServerException"}, + {"shape":"InvalidParameterException"}, + {"shape":"RepositoryAlreadyExistsException"}, + {"shape":"LimitExceededException"} + ], + "documentation":"

Creates a repository in a public registry. For more information, see Amazon ECR repositories in the Amazon Elastic Container Registry User Guide.

" + }, + "DeleteRepository":{ + "name":"DeleteRepository", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteRepositoryRequest"}, + "output":{"shape":"DeleteRepositoryResponse"}, + "errors":[ + {"shape":"ServerException"}, + {"shape":"InvalidParameterException"}, + {"shape":"RepositoryNotFoundException"}, + {"shape":"RepositoryNotEmptyException"} + ], + "documentation":"

Deletes a repository in a public registry. If the repository contains images, you must either delete all images in the repository or use the force option which deletes all images on your behalf before deleting the repository.

" + }, + "DeleteRepositoryPolicy":{ + "name":"DeleteRepositoryPolicy", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteRepositoryPolicyRequest"}, + "output":{"shape":"DeleteRepositoryPolicyResponse"}, + "errors":[ + {"shape":"ServerException"}, + {"shape":"InvalidParameterException"}, + {"shape":"RepositoryNotFoundException"}, + {"shape":"RepositoryPolicyNotFoundException"} + ], + "documentation":"

Deletes the repository policy associated with the specified repository.

" + }, + "DescribeImageTags":{ + "name":"DescribeImageTags", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeImageTagsRequest"}, + "output":{"shape":"DescribeImageTagsResponse"}, + "errors":[ + {"shape":"ServerException"}, + {"shape":"InvalidParameterException"}, + {"shape":"RepositoryNotFoundException"} + ], + "documentation":"

Returns the image tag details for a repository in a public registry.

" + }, + "DescribeImages":{ + "name":"DescribeImages", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeImagesRequest"}, + "output":{"shape":"DescribeImagesResponse"}, + "errors":[ + {"shape":"ServerException"}, + {"shape":"InvalidParameterException"}, + {"shape":"RepositoryNotFoundException"}, + {"shape":"ImageNotFoundException"} + ], + "documentation":"

Returns metadata about the images in a repository in a public registry.

Beginning with Docker version 1.9, the Docker client compresses image layers before pushing them to a V2 Docker registry. The output of the docker images command shows the uncompressed image size, so it may return a larger image size than the image sizes returned by DescribeImages.

" + }, + "DescribeRegistries":{ + "name":"DescribeRegistries", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeRegistriesRequest"}, + "output":{"shape":"DescribeRegistriesResponse"}, + "errors":[ + {"shape":"InvalidParameterException"}, + {"shape":"UnsupportedCommandException"}, + {"shape":"ServerException"} + ], + "documentation":"

Returns details for a public registry.

" + }, + "DescribeRepositories":{ + "name":"DescribeRepositories", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DescribeRepositoriesRequest"}, + "output":{"shape":"DescribeRepositoriesResponse"}, + "errors":[ + {"shape":"ServerException"}, + {"shape":"InvalidParameterException"}, + {"shape":"RepositoryNotFoundException"} + ], + "documentation":"

Describes repositories in a public registry.

" + }, + "GetAuthorizationToken":{ + "name":"GetAuthorizationToken", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetAuthorizationTokenRequest"}, + "output":{"shape":"GetAuthorizationTokenResponse"}, + "errors":[ + {"shape":"ServerException"}, + {"shape":"InvalidParameterException"} + ], + "documentation":"

Retrieves an authorization token. An authorization token represents your IAM authentication credentials and can be used to access any Amazon ECR registry that your IAM principal has access to. The authorization token is valid for 12 hours. This API requires the ecr-public:GetAuthorizationToken and sts:GetServiceBearerToken permissions.

" + }, + "GetRegistryCatalogData":{ + "name":"GetRegistryCatalogData", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetRegistryCatalogDataRequest"}, + "output":{"shape":"GetRegistryCatalogDataResponse"}, + "errors":[ + {"shape":"ServerException"}, + {"shape":"UnsupportedCommandException"} + ], + "documentation":"

Retrieves catalog metadata for a public registry.

" + }, + "GetRepositoryCatalogData":{ + "name":"GetRepositoryCatalogData", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetRepositoryCatalogDataRequest"}, + "output":{"shape":"GetRepositoryCatalogDataResponse"}, + "errors":[ + {"shape":"ServerException"}, + {"shape":"InvalidParameterException"}, + {"shape":"RepositoryNotFoundException"} + ], + "documentation":"

Retrieve catalog metadata for a repository in a public registry. This metadata is displayed publicly in the Amazon ECR Public Gallery.

" + }, + "GetRepositoryPolicy":{ + "name":"GetRepositoryPolicy", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetRepositoryPolicyRequest"}, + "output":{"shape":"GetRepositoryPolicyResponse"}, + "errors":[ + {"shape":"ServerException"}, + {"shape":"InvalidParameterException"}, + {"shape":"RepositoryNotFoundException"}, + {"shape":"RepositoryPolicyNotFoundException"} + ], + "documentation":"

Retrieves the repository policy for the specified repository.

" + }, + "InitiateLayerUpload":{ + "name":"InitiateLayerUpload", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"InitiateLayerUploadRequest"}, + "output":{"shape":"InitiateLayerUploadResponse"}, + "errors":[ + {"shape":"ServerException"}, + {"shape":"InvalidParameterException"}, + {"shape":"RepositoryNotFoundException"}, + {"shape":"RegistryNotFoundException"}, + {"shape":"UnsupportedCommandException"} + ], + "documentation":"

Notifies Amazon ECR that you intend to upload an image layer.

When an image is pushed, the InitiateLayerUpload API is called once per image layer that has not already been uploaded. Whether or not an image layer has been uploaded is determined by the BatchCheckLayerAvailability API action.

This operation is used by the Amazon ECR proxy and is not generally used by customers for pulling and pushing images. In most cases, you should use the docker CLI to pull, tag, and push images.

" + }, + "PutImage":{ + "name":"PutImage", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"PutImageRequest"}, + "output":{"shape":"PutImageResponse"}, + "errors":[ + {"shape":"ServerException"}, + {"shape":"InvalidParameterException"}, + {"shape":"RepositoryNotFoundException"}, + {"shape":"ImageAlreadyExistsException"}, + {"shape":"LayersNotFoundException"}, + {"shape":"ReferencedImagesNotFoundException"}, + {"shape":"LimitExceededException"}, + {"shape":"ImageTagAlreadyExistsException"}, + {"shape":"ImageDigestDoesNotMatchException"}, + {"shape":"RegistryNotFoundException"}, + {"shape":"UnsupportedCommandException"} + ], + "documentation":"

Creates or updates the image manifest and tags associated with an image.

When an image is pushed and all new image layers have been uploaded, the PutImage API is called once to create or update the image manifest and the tags associated with the image.

This operation is used by the Amazon ECR proxy and is not generally used by customers for pulling and pushing images. In most cases, you should use the docker CLI to pull, tag, and push images.

" + }, + "PutRegistryCatalogData":{ + "name":"PutRegistryCatalogData", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"PutRegistryCatalogDataRequest"}, + "output":{"shape":"PutRegistryCatalogDataResponse"}, + "errors":[ + {"shape":"ServerException"}, + {"shape":"InvalidParameterException"}, + {"shape":"UnsupportedCommandException"} + ], + "documentation":"

Create or updates the catalog data for a public registry.

" + }, + "PutRepositoryCatalogData":{ + "name":"PutRepositoryCatalogData", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"PutRepositoryCatalogDataRequest"}, + "output":{"shape":"PutRepositoryCatalogDataResponse"}, + "errors":[ + {"shape":"ServerException"}, + {"shape":"InvalidParameterException"}, + {"shape":"RepositoryNotFoundException"} + ], + "documentation":"

Creates or updates the catalog data for a repository in a public registry.

" + }, + "SetRepositoryPolicy":{ + "name":"SetRepositoryPolicy", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"SetRepositoryPolicyRequest"}, + "output":{"shape":"SetRepositoryPolicyResponse"}, + "errors":[ + {"shape":"ServerException"}, + {"shape":"InvalidParameterException"}, + {"shape":"RepositoryNotFoundException"} + ], + "documentation":"

Applies a repository policy to the specified public repository to control access permissions. For more information, see Amazon ECR Repository Policies in the Amazon Elastic Container Registry User Guide.

" + }, + "UploadLayerPart":{ + "name":"UploadLayerPart", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UploadLayerPartRequest"}, + "output":{"shape":"UploadLayerPartResponse"}, + "errors":[ + {"shape":"ServerException"}, + {"shape":"InvalidParameterException"}, + {"shape":"InvalidLayerPartException"}, + {"shape":"RepositoryNotFoundException"}, + {"shape":"UploadNotFoundException"}, + {"shape":"LimitExceededException"}, + {"shape":"RegistryNotFoundException"}, + {"shape":"UnsupportedCommandException"} + ], + "documentation":"

Uploads an image layer part to Amazon ECR.

When an image is pushed, each new image layer is uploaded in parts. The maximum size of each image layer part can be 20971520 bytes (or about 20MB). The UploadLayerPart API is called once per each new image layer part.

This operation is used by the Amazon ECR proxy and is not generally used by customers for pulling and pushing images. In most cases, you should use the docker CLI to pull, tag, and push images.

" + } + }, + "shapes":{ + "AboutText":{ + "type":"string", + "max":10240 + }, + "Architecture":{ + "type":"string", + "max":50, + "min":1 + }, + "ArchitectureList":{ + "type":"list", + "member":{"shape":"Architecture"}, + "max":50 + }, + "Arn":{"type":"string"}, + "AuthorizationData":{ + "type":"structure", + "members":{ + "authorizationToken":{ + "shape":"Base64", + "documentation":"

A base64-encoded string that contains authorization data for a public Amazon ECR registry. When the string is decoded, it is presented in the format user:password for public registry authentication using docker login.

" + }, + "expiresAt":{ + "shape":"ExpirationTimestamp", + "documentation":"

The Unix time in seconds and milliseconds when the authorization token expires. Authorization tokens are valid for 12 hours.

" + } + }, + "documentation":"

An authorization token data object that corresponds to a public registry.

" + }, + "Base64":{ + "type":"string", + "pattern":"^\\S+$" + }, + "BatchCheckLayerAvailabilityRequest":{ + "type":"structure", + "required":[ + "repositoryName", + "layerDigests" + ], + "members":{ + "registryId":{ + "shape":"RegistryIdOrAlias", + "documentation":"

The AWS account ID associated with the public registry that contains the image layers to check. If you do not specify a registry, the default public registry is assumed.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The name of the repository that is associated with the image layers to check.

" + }, + "layerDigests":{ + "shape":"BatchedOperationLayerDigestList", + "documentation":"

The digests of the image layers to check.

" + } + } + }, + "BatchCheckLayerAvailabilityResponse":{ + "type":"structure", + "members":{ + "layers":{ + "shape":"LayerList", + "documentation":"

A list of image layer objects corresponding to the image layer references in the request.

" + }, + "failures":{ + "shape":"LayerFailureList", + "documentation":"

Any failures associated with the call.

" + } + } + }, + "BatchDeleteImageRequest":{ + "type":"structure", + "required":[ + "repositoryName", + "imageIds" + ], + "members":{ + "registryId":{ + "shape":"RegistryId", + "documentation":"

The AWS account ID associated with the registry that contains the image to delete. If you do not specify a registry, the default public registry is assumed.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The repository in a public registry that contains the image to delete.

" + }, + "imageIds":{ + "shape":"ImageIdentifierList", + "documentation":"

A list of image ID references that correspond to images to delete. The format of the imageIds reference is imageTag=tag or imageDigest=digest.

" + } + } + }, + "BatchDeleteImageResponse":{ + "type":"structure", + "members":{ + "imageIds":{ + "shape":"ImageIdentifierList", + "documentation":"

The image IDs of the deleted images.

" + }, + "failures":{ + "shape":"ImageFailureList", + "documentation":"

Any failures associated with the call.

" + } + } + }, + "BatchedOperationLayerDigest":{ + "type":"string", + "max":1000, + "min":0 + }, + "BatchedOperationLayerDigestList":{ + "type":"list", + "member":{"shape":"BatchedOperationLayerDigest"}, + "max":100, + "min":1 + }, + "CompleteLayerUploadRequest":{ + "type":"structure", + "required":[ + "repositoryName", + "uploadId", + "layerDigests" + ], + "members":{ + "registryId":{ + "shape":"RegistryIdOrAlias", + "documentation":"

The AWS account ID associated with the registry to which to upload layers. If you do not specify a registry, the default public registry is assumed.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The name of the repository in a public registry to associate with the image layer.

" + }, + "uploadId":{ + "shape":"UploadId", + "documentation":"

The upload ID from a previous InitiateLayerUpload operation to associate with the image layer.

" + }, + "layerDigests":{ + "shape":"LayerDigestList", + "documentation":"

The sha256 digest of the image layer.

" + } + } + }, + "CompleteLayerUploadResponse":{ + "type":"structure", + "members":{ + "registryId":{ + "shape":"RegistryId", + "documentation":"

The public registry ID associated with the request.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The repository name associated with the request.

" + }, + "uploadId":{ + "shape":"UploadId", + "documentation":"

The upload ID associated with the layer.

" + }, + "layerDigest":{ + "shape":"LayerDigest", + "documentation":"

The sha256 digest of the image layer.

" + } + } + }, + "CreateRepositoryRequest":{ + "type":"structure", + "required":["repositoryName"], + "members":{ + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The name to use for the repository. This appears publicly in the Amazon ECR Public Gallery. The repository name may be specified on its own (such as nginx-web-app) or it can be prepended with a namespace to group the repository into a category (such as project-a/nginx-web-app).

" + }, + "catalogData":{ + "shape":"RepositoryCatalogDataInput", + "documentation":"

The details about the repository that are publicly visible in the Amazon ECR Public Gallery.

" + } + } + }, + "CreateRepositoryResponse":{ + "type":"structure", + "members":{ + "repository":{ + "shape":"Repository", + "documentation":"

The repository that was created.

" + }, + "catalogData":{"shape":"RepositoryCatalogData"} + } + }, + "CreationTimestamp":{"type":"timestamp"}, + "DefaultRegistryAliasFlag":{"type":"boolean"}, + "DeleteRepositoryPolicyRequest":{ + "type":"structure", + "required":["repositoryName"], + "members":{ + "registryId":{ + "shape":"RegistryId", + "documentation":"

The AWS account ID associated with the public registry that contains the repository policy to delete. If you do not specify a registry, the default public registry is assumed.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The name of the repository that is associated with the repository policy to delete.

" + } + } + }, + "DeleteRepositoryPolicyResponse":{ + "type":"structure", + "members":{ + "registryId":{ + "shape":"RegistryId", + "documentation":"

The registry ID associated with the request.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The repository name associated with the request.

" + }, + "policyText":{ + "shape":"RepositoryPolicyText", + "documentation":"

The JSON repository policy that was deleted from the repository.

" + } + } + }, + "DeleteRepositoryRequest":{ + "type":"structure", + "required":["repositoryName"], + "members":{ + "registryId":{ + "shape":"RegistryId", + "documentation":"

The AWS account ID associated with the public registry that contains the repository to delete. If you do not specify a registry, the default public registry is assumed.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The name of the repository to delete.

" + }, + "force":{ + "shape":"ForceFlag", + "documentation":"

If a repository contains images, forces the deletion.

" + } + } + }, + "DeleteRepositoryResponse":{ + "type":"structure", + "members":{ + "repository":{ + "shape":"Repository", + "documentation":"

The repository that was deleted.

" + } + } + }, + "DescribeImageTagsRequest":{ + "type":"structure", + "required":["repositoryName"], + "members":{ + "registryId":{ + "shape":"RegistryId", + "documentation":"

The AWS account ID associated with the public registry that contains the repository in which to describe images. If you do not specify a registry, the default public registry is assumed.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The name of the repository that contains the image tag details to describe.

" + }, + "nextToken":{ + "shape":"NextToken", + "documentation":"

The nextToken value returned from a previous paginated DescribeImageTags request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return. This option cannot be used when you specify images with imageIds.

" + }, + "maxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of repository results returned by DescribeImageTags in paginated output. When this parameter is used, DescribeImageTags only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeImageTags request with the returned nextToken value. This value can be between 1 and 1000. If this parameter is not used, then DescribeImageTags returns up to 100 results and a nextToken value, if applicable. This option cannot be used when you specify images with imageIds.

" + } + } + }, + "DescribeImageTagsResponse":{ + "type":"structure", + "members":{ + "imageTagDetails":{ + "shape":"ImageTagDetailList", + "documentation":"

The image tag details for the images in the requested repository.

" + }, + "nextToken":{ + "shape":"NextToken", + "documentation":"

The nextToken value to include in a future DescribeImageTags request. When the results of a DescribeImageTags request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

" + } + } + }, + "DescribeImagesRequest":{ + "type":"structure", + "required":["repositoryName"], + "members":{ + "registryId":{ + "shape":"RegistryId", + "documentation":"

The AWS account ID associated with the public registry that contains the repository in which to describe images. If you do not specify a registry, the default public registry is assumed.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The repository that contains the images to describe.

" + }, + "imageIds":{ + "shape":"ImageIdentifierList", + "documentation":"

The list of image IDs for the requested repository.

" + }, + "nextToken":{ + "shape":"NextToken", + "documentation":"

The nextToken value returned from a previous paginated DescribeImages request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return. This option cannot be used when you specify images with imageIds.

" + }, + "maxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of repository results returned by DescribeImages in paginated output. When this parameter is used, DescribeImages only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeImages request with the returned nextToken value. This value can be between 1 and 1000. If this parameter is not used, then DescribeImages returns up to 100 results and a nextToken value, if applicable. This option cannot be used when you specify images with imageIds.

" + } + } + }, + "DescribeImagesResponse":{ + "type":"structure", + "members":{ + "imageDetails":{ + "shape":"ImageDetailList", + "documentation":"

A list of ImageDetail objects that contain data about the image.

" + }, + "nextToken":{ + "shape":"NextToken", + "documentation":"

The nextToken value to include in a future DescribeImages request. When the results of a DescribeImages request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

" + } + } + }, + "DescribeRegistriesRequest":{ + "type":"structure", + "members":{ + "nextToken":{ + "shape":"NextToken", + "documentation":"

The nextToken value returned from a previous paginated DescribeRegistries request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

" + }, + "maxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of repository results returned by DescribeRegistries in paginated output. When this parameter is used, DescribeRegistries only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeRegistries request with the returned nextToken value. This value can be between 1 and 1000. If this parameter is not used, then DescribeRegistries returns up to 100 results and a nextToken value, if applicable.

" + } + } + }, + "DescribeRegistriesResponse":{ + "type":"structure", + "required":["registries"], + "members":{ + "registries":{ + "shape":"RegistryList", + "documentation":"

An object containing the details for a public registry.

" + }, + "nextToken":{ + "shape":"NextToken", + "documentation":"

The nextToken value to include in a future DescribeRepositories request. When the results of a DescribeRepositories request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

" + } + } + }, + "DescribeRepositoriesRequest":{ + "type":"structure", + "members":{ + "registryId":{ + "shape":"RegistryId", + "documentation":"

The AWS account ID associated with the registry that contains the repositories to be described. If you do not specify a registry, the default public registry is assumed.

" + }, + "repositoryNames":{ + "shape":"RepositoryNameList", + "documentation":"

A list of repositories to describe. If this parameter is omitted, then all repositories in a registry are described.

" + }, + "nextToken":{ + "shape":"NextToken", + "documentation":"

The nextToken value returned from a previous paginated DescribeRepositories request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return. This option cannot be used when you specify repositories with repositoryNames.

This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

" + }, + "maxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of repository results returned by DescribeRepositories in paginated output. When this parameter is used, DescribeRepositories only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeRepositories request with the returned nextToken value. This value can be between 1 and 1000. If this parameter is not used, then DescribeRepositories returns up to 100 results and a nextToken value, if applicable. This option cannot be used when you specify repositories with repositoryNames.

" + } + } + }, + "DescribeRepositoriesResponse":{ + "type":"structure", + "members":{ + "repositories":{ + "shape":"RepositoryList", + "documentation":"

A list of repository objects corresponding to valid repositories.

" + }, + "nextToken":{ + "shape":"NextToken", + "documentation":"

The nextToken value to include in a future DescribeRepositories request. When the results of a DescribeRepositories request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

" + } + } + }, + "EmptyUploadException":{ + "type":"structure", + "members":{ + "message":{"shape":"ExceptionMessage"} + }, + "documentation":"

The specified layer upload does not contain any layer parts.

", + "exception":true + }, + "ExceptionMessage":{"type":"string"}, + "ExpirationTimestamp":{"type":"timestamp"}, + "ForceFlag":{"type":"boolean"}, + "GetAuthorizationTokenRequest":{ + "type":"structure", + "members":{ + } + }, + "GetAuthorizationTokenResponse":{ + "type":"structure", + "members":{ + "authorizationData":{ + "shape":"AuthorizationData", + "documentation":"

An authorization token data object that corresponds to a public registry.

" + } + } + }, + "GetRegistryCatalogDataRequest":{ + "type":"structure", + "members":{ + } + }, + "GetRegistryCatalogDataResponse":{ + "type":"structure", + "required":["registryCatalogData"], + "members":{ + "registryCatalogData":{ + "shape":"RegistryCatalogData", + "documentation":"

The catalog metadata for the public registry.

" + } + } + }, + "GetRepositoryCatalogDataRequest":{ + "type":"structure", + "required":["repositoryName"], + "members":{ + "registryId":{ + "shape":"RegistryId", + "documentation":"

The AWS account ID associated with the registry that contains the repositories to be described. If you do not specify a registry, the default public registry is assumed.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The name of the repository to retrieve the catalog metadata for.

" + } + } + }, + "GetRepositoryCatalogDataResponse":{ + "type":"structure", + "members":{ + "catalogData":{ + "shape":"RepositoryCatalogData", + "documentation":"

The catalog metadata for the repository.

" + } + } + }, + "GetRepositoryPolicyRequest":{ + "type":"structure", + "required":["repositoryName"], + "members":{ + "registryId":{ + "shape":"RegistryId", + "documentation":"

The AWS account ID associated with the public registry that contains the repository. If you do not specify a registry, the default public registry is assumed.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The name of the repository with the policy to retrieve.

" + } + } + }, + "GetRepositoryPolicyResponse":{ + "type":"structure", + "members":{ + "registryId":{ + "shape":"RegistryId", + "documentation":"

The registry ID associated with the request.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The repository name associated with the request.

" + }, + "policyText":{ + "shape":"RepositoryPolicyText", + "documentation":"

The repository policy text associated with the repository. The policy text will be in JSON format.

" + } + } + }, + "Image":{ + "type":"structure", + "members":{ + "registryId":{ + "shape":"RegistryIdOrAlias", + "documentation":"

The AWS account ID associated with the registry containing the image.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The name of the repository associated with the image.

" + }, + "imageId":{ + "shape":"ImageIdentifier", + "documentation":"

An object containing the image tag and image digest associated with an image.

" + }, + "imageManifest":{ + "shape":"ImageManifest", + "documentation":"

The image manifest associated with the image.

" + }, + "imageManifestMediaType":{ + "shape":"MediaType", + "documentation":"

The manifest media type of the image.

" + } + }, + "documentation":"

An object representing an Amazon ECR image.

" + }, + "ImageAlreadyExistsException":{ + "type":"structure", + "members":{ + "message":{"shape":"ExceptionMessage"} + }, + "documentation":"

The specified image has already been pushed, and there were no changes to the manifest or image tag after the last push.

", + "exception":true + }, + "ImageDetail":{ + "type":"structure", + "members":{ + "registryId":{ + "shape":"RegistryId", + "documentation":"

The AWS account ID associated with the public registry to which this image belongs.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The name of the repository to which this image belongs.

" + }, + "imageDigest":{ + "shape":"ImageDigest", + "documentation":"

The sha256 digest of the image manifest.

" + }, + "imageTags":{ + "shape":"ImageTagList", + "documentation":"

The list of tags associated with this image.

" + }, + "imageSizeInBytes":{ + "shape":"ImageSizeInBytes", + "documentation":"

The size, in bytes, of the image in the repository.

If the image is a manifest list, this will be the max size of all manifests in the list.

Beginning with Docker version 1.9, the Docker client compresses image layers before pushing them to a V2 Docker registry. The output of the docker images command shows the uncompressed image size, so it may return a larger image size than the image sizes returned by DescribeImages.

" + }, + "imagePushedAt":{ + "shape":"PushTimestamp", + "documentation":"

The date and time, expressed in standard JavaScript date format, at which the current image was pushed to the repository.

" + }, + "imageManifestMediaType":{ + "shape":"MediaType", + "documentation":"

The media type of the image manifest.

" + }, + "artifactMediaType":{ + "shape":"MediaType", + "documentation":"

The artifact media type of the image.

" + } + }, + "documentation":"

An object that describes an image returned by a DescribeImages operation.

" + }, + "ImageDetailList":{ + "type":"list", + "member":{"shape":"ImageDetail"} + }, + "ImageDigest":{"type":"string"}, + "ImageDigestDoesNotMatchException":{ + "type":"structure", + "members":{ + "message":{"shape":"ExceptionMessage"} + }, + "documentation":"

The specified image digest does not match the digest that Amazon ECR calculated for the image.

", + "exception":true + }, + "ImageFailure":{ + "type":"structure", + "members":{ + "imageId":{ + "shape":"ImageIdentifier", + "documentation":"

The image ID associated with the failure.

" + }, + "failureCode":{ + "shape":"ImageFailureCode", + "documentation":"

The code associated with the failure.

" + }, + "failureReason":{ + "shape":"ImageFailureReason", + "documentation":"

The reason for the failure.

" + } + }, + "documentation":"

An object representing an Amazon ECR image failure.

" + }, + "ImageFailureCode":{ + "type":"string", + "enum":[ + "InvalidImageDigest", + "InvalidImageTag", + "ImageTagDoesNotMatchDigest", + "ImageNotFound", + "MissingDigestAndTag", + "ImageReferencedByManifestList", + "KmsError" + ] + }, + "ImageFailureList":{ + "type":"list", + "member":{"shape":"ImageFailure"} + }, + "ImageFailureReason":{"type":"string"}, + "ImageIdentifier":{ + "type":"structure", + "members":{ + "imageDigest":{ + "shape":"ImageDigest", + "documentation":"

The sha256 digest of the image manifest.

" + }, + "imageTag":{ + "shape":"ImageTag", + "documentation":"

The tag used for the image.

" + } + }, + "documentation":"

An object with identifying information for an Amazon ECR image.

" + }, + "ImageIdentifierList":{ + "type":"list", + "member":{"shape":"ImageIdentifier"}, + "max":100, + "min":1 + }, + "ImageManifest":{ + "type":"string", + "max":4194304, + "min":1 + }, + "ImageNotFoundException":{ + "type":"structure", + "members":{ + "message":{"shape":"ExceptionMessage"} + }, + "documentation":"

The image requested does not exist in the specified repository.

", + "exception":true + }, + "ImageSizeInBytes":{"type":"long"}, + "ImageTag":{ + "type":"string", + "max":300, + "min":1 + }, + "ImageTagAlreadyExistsException":{ + "type":"structure", + "members":{ + "message":{"shape":"ExceptionMessage"} + }, + "documentation":"

The specified image is tagged with a tag that already exists. The repository is configured for tag immutability.

", + "exception":true + }, + "ImageTagDetail":{ + "type":"structure", + "members":{ + "imageTag":{ + "shape":"ImageTag", + "documentation":"

The tag associated with the image.

" + }, + "createdAt":{ + "shape":"CreationTimestamp", + "documentation":"

The time stamp indicating when the image tag was created.

" + }, + "imageDetail":{ + "shape":"ReferencedImageDetail", + "documentation":"

An object that describes the details of an image.

" + } + }, + "documentation":"

An object representing the image tag details for an image.

" + }, + "ImageTagDetailList":{ + "type":"list", + "member":{"shape":"ImageTagDetail"} + }, + "ImageTagList":{ + "type":"list", + "member":{"shape":"ImageTag"} + }, + "InitiateLayerUploadRequest":{ + "type":"structure", + "required":["repositoryName"], + "members":{ + "registryId":{ + "shape":"RegistryIdOrAlias", + "documentation":"

The AWS account ID associated with the registry to which you intend to upload layers. If you do not specify a registry, the default public registry is assumed.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The name of the repository to which you intend to upload layers.

" + } + } + }, + "InitiateLayerUploadResponse":{ + "type":"structure", + "members":{ + "uploadId":{ + "shape":"UploadId", + "documentation":"

The upload ID for the layer upload. This parameter is passed to further UploadLayerPart and CompleteLayerUpload operations.

" + }, + "partSize":{ + "shape":"PartSize", + "documentation":"

The size, in bytes, that Amazon ECR expects future layer part uploads to be.

" + } + } + }, + "InvalidLayerException":{ + "type":"structure", + "members":{ + "message":{"shape":"ExceptionMessage"} + }, + "documentation":"

The layer digest calculation performed by Amazon ECR upon receipt of the image layer does not match the digest specified.

", + "exception":true + }, + "InvalidLayerPartException":{ + "type":"structure", + "members":{ + "registryId":{ + "shape":"RegistryId", + "documentation":"

The AWS account ID associated with the layer part.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The name of the repository.

" + }, + "uploadId":{ + "shape":"UploadId", + "documentation":"

The upload ID associated with the layer part.

" + }, + "lastValidByteReceived":{ + "shape":"PartSize", + "documentation":"

The position of the last byte of the layer part.

" + }, + "message":{"shape":"ExceptionMessage"} + }, + "documentation":"

The layer part size is not valid, or the first byte specified is not consecutive to the last byte of a previous layer part upload.

", + "exception":true + }, + "InvalidParameterException":{ + "type":"structure", + "members":{ + "message":{"shape":"ExceptionMessage"} + }, + "documentation":"

The specified parameter is invalid. Review the available parameters for the API request.

", + "exception":true + }, + "Layer":{ + "type":"structure", + "members":{ + "layerDigest":{ + "shape":"LayerDigest", + "documentation":"

The sha256 digest of the image layer.

" + }, + "layerAvailability":{ + "shape":"LayerAvailability", + "documentation":"

The availability status of the image layer.

" + }, + "layerSize":{ + "shape":"LayerSizeInBytes", + "documentation":"

The size, in bytes, of the image layer.

" + }, + "mediaType":{ + "shape":"MediaType", + "documentation":"

The media type of the layer, such as application/vnd.docker.image.rootfs.diff.tar.gzip or application/vnd.oci.image.layer.v1.tar+gzip.

" + } + }, + "documentation":"

An object representing an Amazon ECR image layer.

" + }, + "LayerAlreadyExistsException":{ + "type":"structure", + "members":{ + "message":{"shape":"ExceptionMessage"} + }, + "documentation":"

The image layer already exists in the associated repository.

", + "exception":true + }, + "LayerAvailability":{ + "type":"string", + "enum":[ + "AVAILABLE", + "UNAVAILABLE" + ] + }, + "LayerDigest":{ + "type":"string", + "pattern":"[a-zA-Z0-9-_+.]+:[a-fA-F0-9]+" + }, + "LayerDigestList":{ + "type":"list", + "member":{"shape":"LayerDigest"}, + "max":100, + "min":1 + }, + "LayerFailure":{ + "type":"structure", + "members":{ + "layerDigest":{ + "shape":"BatchedOperationLayerDigest", + "documentation":"

The layer digest associated with the failure.

" + }, + "failureCode":{ + "shape":"LayerFailureCode", + "documentation":"

The failure code associated with the failure.

" + }, + "failureReason":{ + "shape":"LayerFailureReason", + "documentation":"

The reason for the failure.

" + } + }, + "documentation":"

An object representing an Amazon ECR image layer failure.

" + }, + "LayerFailureCode":{ + "type":"string", + "enum":[ + "InvalidLayerDigest", + "MissingLayerDigest" + ] + }, + "LayerFailureList":{ + "type":"list", + "member":{"shape":"LayerFailure"} + }, + "LayerFailureReason":{"type":"string"}, + "LayerList":{ + "type":"list", + "member":{"shape":"Layer"} + }, + "LayerPartBlob":{ + "type":"blob", + "max":20971520, + "min":0 + }, + "LayerPartTooSmallException":{ + "type":"structure", + "members":{ + "message":{"shape":"ExceptionMessage"} + }, + "documentation":"

Layer parts must be at least 5 MiB in size.

", + "exception":true + }, + "LayerSizeInBytes":{"type":"long"}, + "LayersNotFoundException":{ + "type":"structure", + "members":{ + "message":{"shape":"ExceptionMessage"} + }, + "documentation":"

The specified layers could not be found, or the specified layer is not valid for this repository.

", + "exception":true + }, + "LimitExceededException":{ + "type":"structure", + "members":{ + "message":{"shape":"ExceptionMessage"} + }, + "documentation":"

The operation did not succeed because it would have exceeded a service limit for your account. For more information, see Amazon ECR Service Quotas in the Amazon Elastic Container Registry User Guide.

", + "exception":true + }, + "LogoImageBlob":{ + "type":"blob", + "max":512000, + "min":0 + }, + "MarketplaceCertified":{"type":"boolean"}, + "MaxResults":{ + "type":"integer", + "max":1000, + "min":1 + }, + "MediaType":{"type":"string"}, + "NextToken":{"type":"string"}, + "OperatingSystem":{ + "type":"string", + "max":50, + "min":1 + }, + "OperatingSystemList":{ + "type":"list", + "member":{"shape":"OperatingSystem"}, + "max":50 + }, + "PartSize":{ + "type":"long", + "min":0 + }, + "PrimaryRegistryAliasFlag":{"type":"boolean"}, + "PushTimestamp":{"type":"timestamp"}, + "PutImageRequest":{ + "type":"structure", + "required":[ + "repositoryName", + "imageManifest" + ], + "members":{ + "registryId":{ + "shape":"RegistryIdOrAlias", + "documentation":"

The AWS account ID associated with the public registry that contains the repository in which to put the image. If you do not specify a registry, the default public registry is assumed.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The name of the repository in which to put the image.

" + }, + "imageManifest":{ + "shape":"ImageManifest", + "documentation":"

The image manifest corresponding to the image to be uploaded.

" + }, + "imageManifestMediaType":{ + "shape":"MediaType", + "documentation":"

The media type of the image manifest. If you push an image manifest that does not contain the mediaType field, you must specify the imageManifestMediaType in the request.

" + }, + "imageTag":{ + "shape":"ImageTag", + "documentation":"

The tag to associate with the image. This parameter is required for images that use the Docker Image Manifest V2 Schema 2 or Open Container Initiative (OCI) formats.

" + }, + "imageDigest":{ + "shape":"ImageDigest", + "documentation":"

The image digest of the image manifest corresponding to the image.

" + } + } + }, + "PutImageResponse":{ + "type":"structure", + "members":{ + "image":{ + "shape":"Image", + "documentation":"

Details of the image uploaded.

" + } + } + }, + "PutRegistryCatalogDataRequest":{ + "type":"structure", + "members":{ + "displayName":{ + "shape":"RegistryDisplayName", + "documentation":"

The display name for a public registry. The display name is shown as the repository author in the Amazon ECR Public Gallery.

The registry display name is only publicly visible in the Amazon ECR Public Gallery for verified accounts.

" + } + } + }, + "PutRegistryCatalogDataResponse":{ + "type":"structure", + "required":["registryCatalogData"], + "members":{ + "registryCatalogData":{ + "shape":"RegistryCatalogData", + "documentation":"

The catalog data for the public registry.

" + } + } + }, + "PutRepositoryCatalogDataRequest":{ + "type":"structure", + "required":[ + "repositoryName", + "catalogData" + ], + "members":{ + "registryId":{ + "shape":"RegistryId", + "documentation":"

The AWS account ID associated with the public registry the repository is in. If you do not specify a registry, the default public registry is assumed.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The name of the repository to create or update the catalog data for.

" + }, + "catalogData":{ + "shape":"RepositoryCatalogDataInput", + "documentation":"

An object containing the catalog data for a repository. This data is publicly visible in the Amazon ECR Public Gallery.

" + } + } + }, + "PutRepositoryCatalogDataResponse":{ + "type":"structure", + "members":{ + "catalogData":{ + "shape":"RepositoryCatalogData", + "documentation":"

The catalog data for the repository.

" + } + } + }, + "ReferencedImageDetail":{ + "type":"structure", + "members":{ + "imageDigest":{ + "shape":"ImageDigest", + "documentation":"

The sha256 digest of the image manifest.

" + }, + "imageSizeInBytes":{ + "shape":"ImageSizeInBytes", + "documentation":"

The size, in bytes, of the image in the repository.

If the image is a manifest list, this will be the max size of all manifests in the list.

Beginning with Docker version 1.9, the Docker client compresses image layers before pushing them to a V2 Docker registry. The output of the docker images command shows the uncompressed image size, so it may return a larger image size than the image sizes returned by DescribeImages.

" + }, + "imagePushedAt":{ + "shape":"PushTimestamp", + "documentation":"

The date and time, expressed in standard JavaScript date format, at which the current image tag was pushed to the repository.

" + }, + "imageManifestMediaType":{ + "shape":"MediaType", + "documentation":"

The media type of the image manifest.

" + }, + "artifactMediaType":{ + "shape":"MediaType", + "documentation":"

The artifact media type of the image.

" + } + }, + "documentation":"

An object that describes the image tag details returned by a DescribeImageTags action.

" + }, + "ReferencedImagesNotFoundException":{ + "type":"structure", + "members":{ + "message":{"shape":"ExceptionMessage"} + }, + "documentation":"

The manifest list is referencing an image that does not exist.

", + "exception":true + }, + "Registry":{ + "type":"structure", + "required":[ + "registryId", + "registryArn", + "registryUri", + "verified", + "aliases" + ], + "members":{ + "registryId":{ + "shape":"RegistryId", + "documentation":"

The AWS account ID associated with the registry. If you do not specify a registry, the default public registry is assumed.

" + }, + "registryArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the public registry.

" + }, + "registryUri":{ + "shape":"Url", + "documentation":"

The URI of a public registry. The URI contains a universal prefix and the registry alias.

" + }, + "verified":{ + "shape":"RegistryVerified", + "documentation":"

Whether the account is verified. This indicates whether the account is an AWS Marketplace vendor. If an account is verified, each public repository will received a verified account badge on the Amazon ECR Public Gallery.

" + }, + "aliases":{ + "shape":"RegistryAliasList", + "documentation":"

An array of objects representing the aliases for a public registry.

" + } + }, + "documentation":"

The details of a public registry.

" + }, + "RegistryAlias":{ + "type":"structure", + "required":[ + "name", + "status", + "primaryRegistryAlias", + "defaultRegistryAlias" + ], + "members":{ + "name":{ + "shape":"RegistryAliasName", + "documentation":"

The name of the registry alias.

" + }, + "status":{ + "shape":"RegistryAliasStatus", + "documentation":"

The status of the registry alias.

" + }, + "primaryRegistryAlias":{ + "shape":"PrimaryRegistryAliasFlag", + "documentation":"

Whether or not the registry alias is the primary alias for the registry. If true, the alias is the primary registry alias and is displayed in both the repository URL and the image URI used in the docker pull commands on the Amazon ECR Public Gallery.

A registry alias that is not the primary registry alias can be used in the repository URI in a docker pull command.

" + }, + "defaultRegistryAlias":{ + "shape":"DefaultRegistryAliasFlag", + "documentation":"

Whether or not the registry alias is the default alias for the registry. When the first public repository is created, your public registry is assigned a default registry alias.

" + } + }, + "documentation":"

An object representing the aliases for a public registry. A public registry is given an alias upon creation but a custom alias can be set using the Amazon ECR console. For more information, see Registries in the Amazon Elastic Container Registry User Guide.

" + }, + "RegistryAliasList":{ + "type":"list", + "member":{"shape":"RegistryAlias"} + }, + "RegistryAliasName":{ + "type":"string", + "max":50, + "min":2, + "pattern":"[a-z][a-z0-9]+(?:[._-][a-z0-9]+)*" + }, + "RegistryAliasStatus":{ + "type":"string", + "enum":[ + "ACTIVE", + "PENDING", + "REJECTED" + ] + }, + "RegistryCatalogData":{ + "type":"structure", + "members":{ + "displayName":{ + "shape":"RegistryDisplayName", + "documentation":"

The display name for a public registry. This appears on the Amazon ECR Public Gallery.

Only accounts that have the verified account badge can have a registry display name.

" + } + }, + "documentation":"

The metadata for a public registry.

" + }, + "RegistryDisplayName":{ + "type":"string", + "max":100, + "min":0 + }, + "RegistryId":{ + "type":"string", + "pattern":"[0-9]{12}" + }, + "RegistryIdOrAlias":{ + "type":"string", + "max":256, + "min":1 + }, + "RegistryList":{ + "type":"list", + "member":{"shape":"Registry"} + }, + "RegistryNotFoundException":{ + "type":"structure", + "members":{ + "message":{"shape":"ExceptionMessage"} + }, + "documentation":"

The registry does not exist.

", + "exception":true + }, + "RegistryVerified":{"type":"boolean"}, + "Repository":{ + "type":"structure", + "members":{ + "repositoryArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) that identifies the repository. The ARN contains the arn:aws:ecr namespace, followed by the region of the repository, AWS account ID of the repository owner, repository namespace, and repository name. For example, arn:aws:ecr:region:012345678910:repository/test.

" + }, + "registryId":{ + "shape":"RegistryId", + "documentation":"

The AWS account ID associated with the public registry that contains the repository.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The name of the repository.

" + }, + "repositoryUri":{ + "shape":"Url", + "documentation":"

The URI for the repository. You can use this URI for container image push and pull operations.

" + }, + "createdAt":{ + "shape":"CreationTimestamp", + "documentation":"

The date and time, in JavaScript date format, when the repository was created.

" + } + }, + "documentation":"

An object representing a repository.

" + }, + "RepositoryAlreadyExistsException":{ + "type":"structure", + "members":{ + "message":{"shape":"ExceptionMessage"} + }, + "documentation":"

The specified repository already exists in the specified registry.

", + "exception":true + }, + "RepositoryCatalogData":{ + "type":"structure", + "members":{ + "description":{ + "shape":"RepositoryDescription", + "documentation":"

The short description of the repository.

" + }, + "architectures":{ + "shape":"ArchitectureList", + "documentation":"

The architecture tags that are associated with the repository.

Only supported operating system tags appear publicly in the Amazon ECR Public Gallery. For more information, see RepositoryCatalogDataInput.

" + }, + "operatingSystems":{ + "shape":"OperatingSystemList", + "documentation":"

The operating system tags that are associated with the repository.

Only supported operating system tags appear publicly in the Amazon ECR Public Gallery. For more information, see RepositoryCatalogDataInput.

" + }, + "logoUrl":{ + "shape":"ResourceUrl", + "documentation":"

The URL containing the logo associated with the repository.

" + }, + "aboutText":{ + "shape":"AboutText", + "documentation":"

The longform description of the contents of the repository. This text appears in the repository details on the Amazon ECR Public Gallery.

" + }, + "usageText":{ + "shape":"UsageText", + "documentation":"

The longform usage details of the contents of the repository. The usage text provides context for users of the repository.

" + }, + "marketplaceCertified":{ + "shape":"MarketplaceCertified", + "documentation":"

Whether or not the repository is certified by AWS Marketplace.

" + } + }, + "documentation":"

The catalog data for a repository. This data is publicly visible in the Amazon ECR Public Gallery.

" + }, + "RepositoryCatalogDataInput":{ + "type":"structure", + "members":{ + "description":{ + "shape":"RepositoryDescription", + "documentation":"

A short description of the contents of the repository. This text appears in both the image details and also when searching for repositories on the Amazon ECR Public Gallery.

" + }, + "architectures":{ + "shape":"ArchitectureList", + "documentation":"

The system architecture that the images in the repository are compatible with. On the Amazon ECR Public Gallery, the following supported architectures will appear as badges on the repository and are used as search filters.

  • Linux

  • Windows

If an unsupported tag is added to your repository catalog data, it will be associated with the repository and can be retrieved using the API but will not be discoverable in the Amazon ECR Public Gallery.

" + }, + "operatingSystems":{ + "shape":"OperatingSystemList", + "documentation":"

The operating systems that the images in the repository are compatible with. On the Amazon ECR Public Gallery, the following supported operating systems will appear as badges on the repository and are used as search filters.

  • ARM

  • ARM 64

  • x86

  • x86-64

If an unsupported tag is added to your repository catalog data, it will be associated with the repository and can be retrieved using the API but will not be discoverable in the Amazon ECR Public Gallery.

" + }, + "logoImageBlob":{ + "shape":"LogoImageBlob", + "documentation":"

The base64-encoded repository logo payload.

The repository logo is only publicly visible in the Amazon ECR Public Gallery for verified accounts.

" + }, + "aboutText":{ + "shape":"AboutText", + "documentation":"

A detailed description of the contents of the repository. It is publicly visible in the Amazon ECR Public Gallery. The text must be in markdown format.

" + }, + "usageText":{ + "shape":"UsageText", + "documentation":"

Detailed information on how to use the contents of the repository. It is publicly visible in the Amazon ECR Public Gallery. The usage text provides context, support information, and additional usage details for users of the repository. The text must be in markdown format.

" + } + }, + "documentation":"

An object containing the catalog data for a repository. This data is publicly visible in the Amazon ECR Public Gallery.

" + }, + "RepositoryDescription":{ + "type":"string", + "max":1024 + }, + "RepositoryList":{ + "type":"list", + "member":{"shape":"Repository"} + }, + "RepositoryName":{ + "type":"string", + "max":205, + "min":2, + "pattern":"(?:[a-z0-9]+(?:[._-][a-z0-9]+)*/)*[a-z0-9]+(?:[._-][a-z0-9]+)*" + }, + "RepositoryNameList":{ + "type":"list", + "member":{"shape":"RepositoryName"}, + "max":100, + "min":1 + }, + "RepositoryNotEmptyException":{ + "type":"structure", + "members":{ + "message":{"shape":"ExceptionMessage"} + }, + "documentation":"

The specified repository contains images. To delete a repository that contains images, you must force the deletion with the force parameter.

", + "exception":true + }, + "RepositoryNotFoundException":{ + "type":"structure", + "members":{ + "message":{"shape":"ExceptionMessage"} + }, + "documentation":"

The specified repository could not be found. Check the spelling of the specified repository and ensure that you are performing operations on the correct registry.

", + "exception":true + }, + "RepositoryPolicyNotFoundException":{ + "type":"structure", + "members":{ + "message":{"shape":"ExceptionMessage"} + }, + "documentation":"

The specified repository and registry combination does not have an associated repository policy.

", + "exception":true + }, + "RepositoryPolicyText":{ + "type":"string", + "max":10240, + "min":0 + }, + "ResourceUrl":{ + "type":"string", + "max":2048 + }, + "ServerException":{ + "type":"structure", + "members":{ + "message":{"shape":"ExceptionMessage"} + }, + "documentation":"

These errors are usually caused by a server-side issue.

", + "exception":true, + "fault":true + }, + "SetRepositoryPolicyRequest":{ + "type":"structure", + "required":[ + "repositoryName", + "policyText" + ], + "members":{ + "registryId":{ + "shape":"RegistryId", + "documentation":"

The AWS account ID associated with the registry that contains the repository. If you do not specify a registry, the default public registry is assumed.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The name of the repository to receive the policy.

" + }, + "policyText":{ + "shape":"RepositoryPolicyText", + "documentation":"

The JSON repository policy text to apply to the repository. For more information, see Amazon ECR Repository Policies in the Amazon Elastic Container Registry User Guide.

" + }, + "force":{ + "shape":"ForceFlag", + "documentation":"

If the policy you are attempting to set on a repository policy would prevent you from setting another policy in the future, you must force the SetRepositoryPolicy operation. This is intended to prevent accidental repository lock outs.

" + } + } + }, + "SetRepositoryPolicyResponse":{ + "type":"structure", + "members":{ + "registryId":{ + "shape":"RegistryId", + "documentation":"

The registry ID associated with the request.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The repository name associated with the request.

" + }, + "policyText":{ + "shape":"RepositoryPolicyText", + "documentation":"

The JSON repository policy text applied to the repository.

" + } + } + }, + "UnsupportedCommandException":{ + "type":"structure", + "members":{ + "message":{"shape":"ExceptionMessage"} + }, + "documentation":"

The action is not supported in this Region.

", + "exception":true + }, + "UploadId":{ + "type":"string", + "pattern":"[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}" + }, + "UploadLayerPartRequest":{ + "type":"structure", + "required":[ + "repositoryName", + "uploadId", + "partFirstByte", + "partLastByte", + "layerPartBlob" + ], + "members":{ + "registryId":{ + "shape":"RegistryIdOrAlias", + "documentation":"

The AWS account ID associated with the registry to which you are uploading layer parts. If you do not specify a registry, the default public registry is assumed.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The name of the repository to which you are uploading layer parts.

" + }, + "uploadId":{ + "shape":"UploadId", + "documentation":"

The upload ID from a previous InitiateLayerUpload operation to associate with the layer part upload.

" + }, + "partFirstByte":{ + "shape":"PartSize", + "documentation":"

The position of the first byte of the layer part witin the overall image layer.

" + }, + "partLastByte":{ + "shape":"PartSize", + "documentation":"

The position of the last byte of the layer part within the overall image layer.

" + }, + "layerPartBlob":{ + "shape":"LayerPartBlob", + "documentation":"

The base64-encoded layer part payload.

" + } + } + }, + "UploadLayerPartResponse":{ + "type":"structure", + "members":{ + "registryId":{ + "shape":"RegistryId", + "documentation":"

The registry ID associated with the request.

" + }, + "repositoryName":{ + "shape":"RepositoryName", + "documentation":"

The repository name associated with the request.

" + }, + "uploadId":{ + "shape":"UploadId", + "documentation":"

The upload ID associated with the request.

" + }, + "lastByteReceived":{ + "shape":"PartSize", + "documentation":"

The integer value of the last byte received in the request.

" + } + } + }, + "UploadNotFoundException":{ + "type":"structure", + "members":{ + "message":{"shape":"ExceptionMessage"} + }, + "documentation":"

The upload could not be found, or the specified upload ID is not valid for this repository.

", + "exception":true + }, + "Url":{"type":"string"}, + "UsageText":{ + "type":"string", + "max":10240 + } + }, + "documentation":"Amazon Elastic Container Registry Public

Amazon Elastic Container Registry (Amazon ECR) is a managed container image registry service. Amazon ECR provides both public and private registries to host your container images. You can use the familiar Docker CLI, or their preferred client, to push, pull, and manage images. Amazon ECR provides a secure, scalable, and reliable registry for your Docker or Open Container Initiative (OCI) images. Amazon ECR supports public repositories with this API. For information about the Amazon ECR API for private repositories, see Amazon Elastic Container Registry API Reference.

" +} From 17fc5539c784580bbb34d4e60ea578c54976c7d4 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 2 Dec 2020 00:51:03 +0000 Subject: [PATCH 317/339] Amazon Lookout for Vision Update: This release introduces support for Amazon Lookout for Vision. --- ...eature-AmazonLookoutforVision-da190ad.json | 6 + services/lookoutvision/pom.xml | 60 + .../codegen-resources/paginators-1.json | 22 + .../codegen-resources/service-2.json | 1570 +++++++++++++++++ 4 files changed, 1658 insertions(+) create mode 100644 .changes/next-release/feature-AmazonLookoutforVision-da190ad.json create mode 100644 services/lookoutvision/pom.xml create mode 100644 services/lookoutvision/src/main/resources/codegen-resources/paginators-1.json create mode 100644 services/lookoutvision/src/main/resources/codegen-resources/service-2.json diff --git a/.changes/next-release/feature-AmazonLookoutforVision-da190ad.json b/.changes/next-release/feature-AmazonLookoutforVision-da190ad.json new file mode 100644 index 000000000000..2feb61d4af3a --- /dev/null +++ b/.changes/next-release/feature-AmazonLookoutforVision-da190ad.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Lookout for Vision", + "contributor": "", + "description": "This release introduces support for Amazon Lookout for Vision." +} diff --git a/services/lookoutvision/pom.xml b/services/lookoutvision/pom.xml new file mode 100644 index 000000000000..5d5c8baddc31 --- /dev/null +++ b/services/lookoutvision/pom.xml @@ -0,0 +1,60 @@ + + + + + 4.0.0 + + software.amazon.awssdk + services + 2.15.37-SNAPSHOT + + lookoutvision + AWS Java SDK :: Services :: Lookout Vision + The AWS Java SDK for Lookout Vision module holds the client classes that are used for + communicating with Lookout Vision. + + https://aws.amazon.com/sdkforjava + + + + org.apache.maven.plugins + maven-jar-plugin + + + + software.amazon.awssdk.services.lookoutvision + + + + + + + + + + software.amazon.awssdk + protocol-core + ${awsjavasdk.version} + + + software.amazon.awssdk + aws-json-protocol + ${awsjavasdk.version} + + + diff --git a/services/lookoutvision/src/main/resources/codegen-resources/paginators-1.json b/services/lookoutvision/src/main/resources/codegen-resources/paginators-1.json new file mode 100644 index 000000000000..7f89a609b333 --- /dev/null +++ b/services/lookoutvision/src/main/resources/codegen-resources/paginators-1.json @@ -0,0 +1,22 @@ +{ + "pagination": { + "ListDatasetEntries": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "DatasetEntries" + }, + "ListModels": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "Models" + }, + "ListProjects": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "Projects" + } + } +} diff --git a/services/lookoutvision/src/main/resources/codegen-resources/service-2.json b/services/lookoutvision/src/main/resources/codegen-resources/service-2.json new file mode 100644 index 000000000000..eda65e756d73 --- /dev/null +++ b/services/lookoutvision/src/main/resources/codegen-resources/service-2.json @@ -0,0 +1,1570 @@ +{ + "version":"2.0", + "metadata":{ + "apiVersion":"2020-11-20", + "endpointPrefix":"lookoutvision", + "jsonVersion":"1.1", + "protocol":"rest-json", + "serviceFullName":"Amazon Lookout for Vision", + "serviceId":"LookoutVision", + "signatureVersion":"v4", + "signingName":"lookoutvision", + "uid":"lookoutvision-2020-11-20" + }, + "operations":{ + "CreateDataset":{ + "name":"CreateDataset", + "http":{ + "method":"POST", + "requestUri":"/2020-11-20/projects/{projectName}/datasets", + "responseCode":202 + }, + "input":{"shape":"CreateDatasetRequest"}, + "output":{"shape":"CreateDatasetResponse"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"ValidationException"}, + {"shape":"ConflictException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"ServiceQuotaExceededException"} + ], + "documentation":"

Creates a new dataset in an Amazon Lookout for Vision project. CreateDataset can create a training or a test dataset from a valid dataset source (DatasetSource).

If you want a single dataset project, specify train for the value of DatasetType.

To have a project with separate training and test datasets, call CreateDataset twice. On the first call, specify train for the value of DatasetType. On the second call, specify test for the value of DatasetType. of dataset with

" + }, + "CreateModel":{ + "name":"CreateModel", + "http":{ + "method":"POST", + "requestUri":"/2020-11-20/projects/{projectName}/models", + "responseCode":202 + }, + "input":{"shape":"CreateModelRequest"}, + "output":{"shape":"CreateModelResponse"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"ValidationException"}, + {"shape":"ConflictException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"ServiceQuotaExceededException"} + ], + "documentation":"

Creates a new version of a model within an an Amazon Lookout for Vision project. CreateModel is an asynchronous operation in which Amazon Lookout for Vision trains, tests, and evaluates a new version of a model.

To get the current status, check the Status field returned in the response from DescribeModel.

If the project has a single dataset, Amazon Lookout for Vision internally splits the dataset to create a training and a test dataset. If the project has a training and a test dataset, Lookout for Vision uses the respective datasets to train and test the model.

After training completes, the evaluation metrics are stored at the location specified in OutputConfig.

" + }, + "CreateProject":{ + "name":"CreateProject", + "http":{ + "method":"POST", + "requestUri":"/2020-11-20/projects" + }, + "input":{"shape":"CreateProjectRequest"}, + "output":{"shape":"CreateProjectResponse"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"ValidationException"}, + {"shape":"ConflictException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"ServiceQuotaExceededException"} + ], + "documentation":"

Creates an empty Amazon Lookout for Vision project. After you create the project, add a dataset by calling CreateDataset.

" + }, + "DeleteDataset":{ + "name":"DeleteDataset", + "http":{ + "method":"DELETE", + "requestUri":"/2020-11-20/projects/{projectName}/datasets/{datasetType}", + "responseCode":202 + }, + "input":{"shape":"DeleteDatasetRequest"}, + "output":{"shape":"DeleteDatasetResponse"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"ValidationException"}, + {"shape":"ConflictException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Deletes an existing Amazon Lookout for Vision dataset.

If your the project has a single dataset, you must create a new dataset before you can create a model.

If you project has a training dataset and a test dataset consider the following.

  • If you delete the test dataset, your project reverts to a single dataset project. If you then train the model, Amazon Lookout for Vision internally splits the remaining dataset into a training and test dataset.

  • If you delete the training dataset, you must create a training dataset before you can create a model.

It might take a while to delete the dataset. To check the current status, check the Status field in the response from a call to DescribeDataset.

" + }, + "DeleteModel":{ + "name":"DeleteModel", + "http":{ + "method":"DELETE", + "requestUri":"/2020-11-20/projects/{projectName}/models/{modelVersion}", + "responseCode":202 + }, + "input":{"shape":"DeleteModelRequest"}, + "output":{"shape":"DeleteModelResponse"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"ValidationException"}, + {"shape":"ConflictException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Deletes an Amazon Lookout for Vision model. You can't delete a running model. To stop a running model, use the StopModel operation.

" + }, + "DeleteProject":{ + "name":"DeleteProject", + "http":{ + "method":"DELETE", + "requestUri":"/2020-11-20/projects/{projectName}" + }, + "input":{"shape":"DeleteProjectRequest"}, + "output":{"shape":"DeleteProjectResponse"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"ValidationException"}, + {"shape":"ConflictException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Deletes an Amazon Lookout for Vision project.

To delete a project, you must first delete each version of the model associated with the project. To delete a model use the DeleteModel operation.

The training and test datasets are deleted automatically for you. The images referenced by the training and test datasets aren't deleted.

" + }, + "DescribeDataset":{ + "name":"DescribeDataset", + "http":{ + "method":"GET", + "requestUri":"/2020-11-20/projects/{projectName}/datasets/{datasetType}" + }, + "input":{"shape":"DescribeDatasetRequest"}, + "output":{"shape":"DescribeDatasetResponse"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"ValidationException"}, + {"shape":"ConflictException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Describe an Amazon Lookout for Vision dataset.

" + }, + "DescribeModel":{ + "name":"DescribeModel", + "http":{ + "method":"GET", + "requestUri":"/2020-11-20/projects/{projectName}/models/{modelVersion}" + }, + "input":{"shape":"DescribeModelRequest"}, + "output":{"shape":"DescribeModelResponse"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"ValidationException"}, + {"shape":"ConflictException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Describes a version of an Amazon Lookout for Vision model.

" + }, + "DescribeProject":{ + "name":"DescribeProject", + "http":{ + "method":"GET", + "requestUri":"/2020-11-20/projects/{projectName}" + }, + "input":{"shape":"DescribeProjectRequest"}, + "output":{"shape":"DescribeProjectResponse"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"ValidationException"}, + {"shape":"ConflictException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Describes an Amazon Lookout for Vision project.

" + }, + "DetectAnomalies":{ + "name":"DetectAnomalies", + "http":{ + "method":"POST", + "requestUri":"/2020-11-20/projects/{projectName}/models/{modelVersion}/detect" + }, + "input":{"shape":"DetectAnomaliesRequest"}, + "output":{"shape":"DetectAnomaliesResponse"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"ValidationException"}, + {"shape":"ConflictException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Detects anomalies in an image that you supply.

The response from DetectAnomalies includes a boolean prediction that the image contains one or more anomalies and a confidence value for the prediction.

Before calling DetectAnomalies, you must first start your model with the StartModel operation. You are charged for the amount of time, in minutes, that a model runs and for the number of anomaly detection units that your model uses. If you are not using a model, use the StopModel operation to stop your model.

" + }, + "ListDatasetEntries":{ + "name":"ListDatasetEntries", + "http":{ + "method":"GET", + "requestUri":"/2020-11-20/projects/{projectName}/datasets/{datasetType}/entries" + }, + "input":{"shape":"ListDatasetEntriesRequest"}, + "output":{"shape":"ListDatasetEntriesResponse"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"ValidationException"}, + {"shape":"ConflictException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Lists the JSON Lines within a dataset. An Amazon Lookout for Vision JSON Line contains the anomaly information for a single image, including the image location and the assigned label.

" + }, + "ListModels":{ + "name":"ListModels", + "http":{ + "method":"GET", + "requestUri":"/2020-11-20/projects/{projectName}/models" + }, + "input":{"shape":"ListModelsRequest"}, + "output":{"shape":"ListModelsResponse"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"ValidationException"}, + {"shape":"ConflictException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Lists the versions of a model in an Amazon Lookout for Vision project.

" + }, + "ListProjects":{ + "name":"ListProjects", + "http":{ + "method":"GET", + "requestUri":"/2020-11-20/projects" + }, + "input":{"shape":"ListProjectsRequest"}, + "output":{"shape":"ListProjectsResponse"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"ValidationException"}, + {"shape":"ConflictException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Lists the Amazon Lookout for Vision projects in your AWS account.

" + }, + "StartModel":{ + "name":"StartModel", + "http":{ + "method":"POST", + "requestUri":"/2020-11-20/projects/{projectName}/models/{modelVersion}/start", + "responseCode":202 + }, + "input":{"shape":"StartModelRequest"}, + "output":{"shape":"StartModelResponse"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"ValidationException"}, + {"shape":"ConflictException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"ServiceQuotaExceededException"} + ], + "documentation":"

Starts the running of the version of an Amazon Lookout for Vision model. Starting a model takes a while to complete. To check the current state of the model, use DescribeModel.

Once the model is running, you can detect custom labels in new images by calling DetectAnomalies.

You are charged for the amount of time that the model is running. To stop a running model, call StopModel.

" + }, + "StopModel":{ + "name":"StopModel", + "http":{ + "method":"POST", + "requestUri":"/2020-11-20/projects/{projectName}/models/{modelVersion}/stop", + "responseCode":202 + }, + "input":{"shape":"StopModelRequest"}, + "output":{"shape":"StopModelResponse"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"ValidationException"}, + {"shape":"ConflictException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Stops a running model. The operation might take a while to complete. To check the current status, call DescribeModel.

" + }, + "UpdateDatasetEntries":{ + "name":"UpdateDatasetEntries", + "http":{ + "method":"PATCH", + "requestUri":"/2020-11-20/projects/{projectName}/datasets/{datasetType}/entries", + "responseCode":202 + }, + "input":{"shape":"UpdateDatasetEntriesRequest"}, + "output":{"shape":"UpdateDatasetEntriesResponse"}, + "errors":[ + {"shape":"AccessDeniedException"}, + {"shape":"InternalServerException"}, + {"shape":"ValidationException"}, + {"shape":"ConflictException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Adds one or more JSON Line entries to a dataset. A JSON Line includes information about an image used for training or testing an Amazon Lookout for Vision model. The following is an example JSON Line.

Updating a dataset might take a while to complete. To check the current status, call DescribeDataset and check the Status field in the response.

" + } + }, + "shapes":{ + "AccessDeniedException":{ + "type":"structure", + "required":["Message"], + "members":{ + "Message":{"shape":"ExceptionString"} + }, + "documentation":"

You are not authorized to perform the action.

", + "error":{"httpStatusCode":403}, + "exception":true + }, + "AnomalyClassFilter":{ + "type":"string", + "max":10, + "min":1, + "pattern":"(normal|anomaly)" + }, + "Boolean":{"type":"boolean"}, + "ClientToken":{ + "type":"string", + "max":64, + "min":1, + "pattern":"^[a-zA-Z0-9-]+$" + }, + "ConflictException":{ + "type":"structure", + "required":[ + "Message", + "ResourceId", + "ResourceType" + ], + "members":{ + "Message":{"shape":"ExceptionString"}, + "ResourceId":{ + "shape":"ExceptionString", + "documentation":"

The ID of the resource.

" + }, + "ResourceType":{ + "shape":"ResourceType", + "documentation":"

The type of the resource.

" + } + }, + "documentation":"

The update or deletion of a resource caused an inconsistent state.

", + "error":{"httpStatusCode":409}, + "exception":true + }, + "ContentType":{ + "type":"string", + "max":255, + "min":1, + "pattern":".*" + }, + "CreateDatasetRequest":{ + "type":"structure", + "required":[ + "ProjectName", + "DatasetType" + ], + "members":{ + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

The name of the project in which you want to create a dataset.

", + "location":"uri", + "locationName":"projectName" + }, + "DatasetType":{ + "shape":"DatasetType", + "documentation":"

The type of the dataset. Specify train for a training dataset. Specify test for a test dataset.

" + }, + "DatasetSource":{ + "shape":"DatasetSource", + "documentation":"

The location of the manifest file that Amazon Lookout for Vision uses to create the dataset.

If you don't specify DatasetSource, an empty dataset is created and the operation synchronously returns. Later, you can add JSON Lines by calling UpdateDatasetEntries.

If you specify a value for DataSource, the manifest at the S3 location is validated and used to create the dataset. The call to CreateDataset is asynchronous and might take a while to complete. To find out the current status, Check the value of Status returned in a call to DescribeDataset.

" + }, + "ClientToken":{ + "shape":"ClientToken", + "documentation":"

ClientToken is an idempotency token that ensures a call to CreateDataset completes only once. You choose the value to pass. For example, An issue, such as an network outage, might prevent you from getting a response from CreateDataset. In this case, safely retry your call to CreateDataset by using the same ClientToken parameter value. An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to CreateDataset. An idempotency token is active for 8 hours.

", + "idempotencyToken":true, + "location":"header", + "locationName":"X-Amzn-Client-Token" + } + } + }, + "CreateDatasetResponse":{ + "type":"structure", + "members":{ + "DatasetMetadata":{ + "shape":"DatasetMetadata", + "documentation":"

Information about the dataset.

" + } + } + }, + "CreateModelRequest":{ + "type":"structure", + "required":[ + "ProjectName", + "OutputConfig" + ], + "members":{ + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

The name of the project in which you want to create a model version.

", + "location":"uri", + "locationName":"projectName" + }, + "Description":{ + "shape":"ModelDescription", + "documentation":"

A description for the version of the model.

" + }, + "ClientToken":{ + "shape":"ClientToken", + "documentation":"

ClientToken is an idempotency token that ensures a call to CreateModel completes only once. You choose the value to pass. For example, An issue, such as an network outage, might prevent you from getting a response from CreateModel. In this case, safely retry your call to CreateModel by using the same ClientToken parameter value. An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to CreateModel. An idempotency token is active for 8 hours.

", + "idempotencyToken":true, + "location":"header", + "locationName":"X-Amzn-Client-Token" + }, + "OutputConfig":{ + "shape":"OutputConfig", + "documentation":"

The location where Amazon Lookout for Vision saves the training results.

" + }, + "KmsKeyId":{ + "shape":"KmsKeyId", + "documentation":"

The identifier of the AWS Key Management Service (AWS KMS) customer master key (CMK) to use for encypting the model. If this parameter is not specified, the model is encrypted by a key that AWS owns and manages.

" + } + } + }, + "CreateModelResponse":{ + "type":"structure", + "members":{ + "ModelMetadata":{ + "shape":"ModelMetadata", + "documentation":"

The response from a call to CreateModel.

" + } + } + }, + "CreateProjectRequest":{ + "type":"structure", + "required":["ProjectName"], + "members":{ + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

S nsme for the project.

" + }, + "ClientToken":{ + "shape":"ClientToken", + "documentation":"

ClientToken is an idempotency token that ensures a call to CreateProject completes only once. You choose the value to pass. For example, An issue, such as an network outage, might prevent you from getting a response from CreateProject. In this case, safely retry your call to CreateProject by using the same ClientToken parameter value. An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to CreateProject. An idempotency token is active for 8 hours.

", + "idempotencyToken":true, + "location":"header", + "locationName":"X-Amzn-Client-Token" + } + } + }, + "CreateProjectResponse":{ + "type":"structure", + "members":{ + "ProjectMetadata":{ + "shape":"ProjectMetadata", + "documentation":"

Information about the project.

" + } + } + }, + "DatasetChanges":{ + "type":"blob", + "max":10485760, + "min":1 + }, + "DatasetDescription":{ + "type":"structure", + "members":{ + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

The name of the project that contains the dataset.

" + }, + "DatasetType":{ + "shape":"DatasetType", + "documentation":"

The type of the dataset. The value train represents a training dataset or single dataset project. The value test represents a test dataset.

" + }, + "CreationTimestamp":{ + "shape":"DateTime", + "documentation":"

The Unix timestamp for the time and date that the dataset was created.

" + }, + "LastUpdatedTimestamp":{ + "shape":"DateTime", + "documentation":"

The Unix timestamp for the date and time that the dataset was last updated.

" + }, + "Status":{ + "shape":"DatasetStatus", + "documentation":"

The status of the dataset.

" + }, + "StatusMessage":{ + "shape":"DatasetStatusMessage", + "documentation":"

The status message for the dataset.

" + }, + "ImageStats":{ + "shape":"DatasetImageStats", + "documentation":"

" + } + }, + "documentation":"

The description for a dataset. For more information, see DescribeDataset.

" + }, + "DatasetEntry":{ + "type":"string", + "max":8192, + "min":2, + "pattern":"^\\{.*\\}$" + }, + "DatasetEntryList":{ + "type":"list", + "member":{"shape":"DatasetEntry"} + }, + "DatasetGroundTruthManifest":{ + "type":"structure", + "members":{ + "S3Object":{ + "shape":"InputS3Object", + "documentation":"

The S3 bucket location for the manifest file.

" + } + }, + "documentation":"

Location information about a manifest file. You can use a manifest file to create a dataset.

" + }, + "DatasetImageStats":{ + "type":"structure", + "members":{ + "Total":{ + "shape":"Integer", + "documentation":"

The total number of images in the dataset.

" + }, + "Labeled":{ + "shape":"Integer", + "documentation":"

The total number of labeled images.

" + }, + "Normal":{ + "shape":"Integer", + "documentation":"

The total number of images labeled as normal.

" + }, + "Anomaly":{ + "shape":"Integer", + "documentation":"

the total number of images labeled as an anomaly.

" + } + }, + "documentation":"

Statistics about the images in a dataset.

" + }, + "DatasetMetadata":{ + "type":"structure", + "members":{ + "DatasetType":{ + "shape":"DatasetType", + "documentation":"

The type of the dataset.

" + }, + "CreationTimestamp":{ + "shape":"DateTime", + "documentation":"

The Unix timestamp for the date and time that the dataset was created.

" + }, + "Status":{ + "shape":"DatasetStatus", + "documentation":"

The status for the dataset.

" + }, + "StatusMessage":{ + "shape":"DatasetStatusMessage", + "documentation":"

The status message for the dataset.

" + } + }, + "documentation":"

Sumary information for an Amazon Lookout for Vision dataset.

" + }, + "DatasetMetadataList":{ + "type":"list", + "member":{"shape":"DatasetMetadata"} + }, + "DatasetSource":{ + "type":"structure", + "members":{ + "GroundTruthManifest":{ + "shape":"DatasetGroundTruthManifest", + "documentation":"

Location information for the manifest file.

" + } + }, + "documentation":"

Information about the location of a manifest file that Amazon Lookout for Vision uses to to create a dataset.

" + }, + "DatasetStatus":{ + "type":"string", + "enum":[ + "CREATE_IN_PROGRESS", + "CREATE_COMPLETE", + "CREATE_FAILED", + "UPDATE_IN_PROGRESS", + "UPDATE_COMPLETE", + "UPDATE_FAILED_ROLLBACK_IN_PROGRESS", + "UPDATE_FAILED_ROLLBACK_COMPLETE", + "DELETE_IN_PROGRESS", + "DELETE_COMPLETE", + "DELETE_FAILED" + ] + }, + "DatasetStatusMessage":{"type":"string"}, + "DatasetType":{ + "type":"string", + "max":10, + "min":1, + "pattern":"train|test" + }, + "DateTime":{"type":"timestamp"}, + "DeleteDatasetRequest":{ + "type":"structure", + "required":[ + "ProjectName", + "DatasetType" + ], + "members":{ + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

The name of the project that contains the dataset that you want to delete.

", + "location":"uri", + "locationName":"projectName" + }, + "DatasetType":{ + "shape":"DatasetType", + "documentation":"

The type of the dataset to delete. Specify train to delete the training dataset. Specify test to delete the test dataset. To delete the dataset in a single dataset project, specify train.

", + "location":"uri", + "locationName":"datasetType" + }, + "ClientToken":{ + "shape":"ClientToken", + "documentation":"

ClientToken is an idempotency token that ensures a call to DeleteDataset completes only once. You choose the value to pass. For example, An issue, such as an network outage, might prevent you from getting a response from DeleteDataset. In this case, safely retry your call to DeleteDataset by using the same ClientToken parameter value. An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to DeleteDataset. An idempotency token is active for 8 hours.

", + "idempotencyToken":true, + "location":"header", + "locationName":"X-Amzn-Client-Token" + } + } + }, + "DeleteDatasetResponse":{ + "type":"structure", + "members":{ + } + }, + "DeleteModelRequest":{ + "type":"structure", + "required":[ + "ProjectName", + "ModelVersion" + ], + "members":{ + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

The name of the project that contains the model that you want to delete.

", + "location":"uri", + "locationName":"projectName" + }, + "ModelVersion":{ + "shape":"ModelVersion", + "documentation":"

The version of the model that you want to delete.

", + "location":"uri", + "locationName":"modelVersion" + }, + "ClientToken":{ + "shape":"ClientToken", + "documentation":"

ClientToken is an idempotency token that ensures a call to DeleteModel completes only once. You choose the value to pass. For example, An issue, such as an network outage, might prevent you from getting a response from DeleteModel. In this case, safely retry your call to DeleteModel by using the same ClientToken parameter value. An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to DeleteModel. An idempotency token is active for 8 hours.

", + "idempotencyToken":true, + "location":"header", + "locationName":"X-Amzn-Client-Token" + } + } + }, + "DeleteModelResponse":{ + "type":"structure", + "members":{ + "ModelArn":{ + "shape":"ModelArn", + "documentation":"

The Amazon Resource Name (ARN) of the model that was deleted.

" + } + } + }, + "DeleteProjectRequest":{ + "type":"structure", + "required":["ProjectName"], + "members":{ + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

The name of the project to delete.

", + "location":"uri", + "locationName":"projectName" + }, + "ClientToken":{ + "shape":"ClientToken", + "documentation":"

ClientToken is an idempotency token that ensures a call to DeleteProject completes only once. You choose the value to pass. For example, An issue, such as an network outage, might prevent you from getting a response from DeleteProject. In this case, safely retry your call to DeleteProject by using the same ClientToken parameter value. An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to DeleteProject. An idempotency token is active for 8 hours.

", + "idempotencyToken":true, + "location":"header", + "locationName":"X-Amzn-Client-Token" + } + } + }, + "DeleteProjectResponse":{ + "type":"structure", + "members":{ + "ProjectArn":{ + "shape":"ProjectArn", + "documentation":"

The Amazon Resource Name (ARN) of the project that was deleted.

" + } + } + }, + "DescribeDatasetRequest":{ + "type":"structure", + "required":[ + "ProjectName", + "DatasetType" + ], + "members":{ + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

The name of the project that contains the dataset that you want to describe.

", + "location":"uri", + "locationName":"projectName" + }, + "DatasetType":{ + "shape":"DatasetType", + "documentation":"

The type of the dataset to describe. Specify train to describe the training dataset. Specify test to describe the test dataset. If you have a single dataset project, specify train

", + "location":"uri", + "locationName":"datasetType" + } + } + }, + "DescribeDatasetResponse":{ + "type":"structure", + "members":{ + "DatasetDescription":{ + "shape":"DatasetDescription", + "documentation":"

The description of the requested dataset.

" + } + } + }, + "DescribeModelRequest":{ + "type":"structure", + "required":[ + "ProjectName", + "ModelVersion" + ], + "members":{ + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

The project that contains the version of a model that you want to describe.

", + "location":"uri", + "locationName":"projectName" + }, + "ModelVersion":{ + "shape":"ModelVersion", + "documentation":"

The version of the model that you want to describe.

", + "location":"uri", + "locationName":"modelVersion" + } + } + }, + "DescribeModelResponse":{ + "type":"structure", + "members":{ + "ModelDescription":{ + "shape":"ModelDescription", + "documentation":"

Contains the description of the model.

" + } + } + }, + "DescribeProjectRequest":{ + "type":"structure", + "required":["ProjectName"], + "members":{ + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

The name of the project that you want to describe.

", + "location":"uri", + "locationName":"projectName" + } + } + }, + "DescribeProjectResponse":{ + "type":"structure", + "members":{ + "ProjectDescription":{ + "shape":"ProjectDescription", + "documentation":"

The description of the project.

" + } + } + }, + "DetectAnomaliesRequest":{ + "type":"structure", + "required":[ + "ProjectName", + "ModelVersion", + "Body", + "ContentType" + ], + "members":{ + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

The name of the project that contains the model version that you want to use.

", + "location":"uri", + "locationName":"projectName" + }, + "ModelVersion":{ + "shape":"ModelVersion", + "documentation":"

The version of the model that you want to use.

", + "location":"uri", + "locationName":"modelVersion" + }, + "Body":{ + "shape":"Stream", + "documentation":"

The unencrypted image bytes that you want to analyze.

" + }, + "ContentType":{ + "shape":"ContentType", + "documentation":"

The type of the image passed in Body. Valid values are image/png (PNG format images) and image/jpeg (JPG format images).

", + "location":"header", + "locationName":"content-type" + } + }, + "payload":"Body" + }, + "DetectAnomaliesResponse":{ + "type":"structure", + "members":{ + "DetectAnomalyResult":{ + "shape":"DetectAnomalyResult", + "documentation":"

The results of the DetectAnomalies operation.

" + } + } + }, + "DetectAnomalyResult":{ + "type":"structure", + "members":{ + "Source":{ + "shape":"ImageSource", + "documentation":"

The source of the image that was analyzed. direct means that the images was supplied from the local computer. No other values are supported.

" + }, + "IsAnomalous":{ + "shape":"Boolean", + "documentation":"

True if the image contains an anomaly, otherwise false.

" + }, + "Confidence":{ + "shape":"Float", + "documentation":"

The confidence that Amazon Lookout for Vision has in the accuracy of the prediction.

" + } + }, + "documentation":"

The prediction results from a call to DetectAnomalies.

" + }, + "ExceptionString":{"type":"string"}, + "Float":{"type":"float"}, + "ImageSource":{ + "type":"structure", + "members":{ + "Type":{ + "shape":"ImageSourceType", + "documentation":"

The type of the image.

" + } + }, + "documentation":"

The source for an image.

" + }, + "ImageSourceType":{ + "type":"string", + "pattern":"direct" + }, + "InferenceUnits":{ + "type":"integer", + "min":1 + }, + "InputS3Object":{ + "type":"structure", + "required":[ + "Bucket", + "Key" + ], + "members":{ + "Bucket":{ + "shape":"S3BucketName", + "documentation":"

The Amazon S3 bucket that contains the manifest.

" + }, + "Key":{ + "shape":"S3ObjectKey", + "documentation":"

The name and location of the manifest file withiin the bucket.

" + }, + "VersionId":{ + "shape":"S3ObjectVersion", + "documentation":"

The version ID of the bucket.

" + } + }, + "documentation":"

Amazon S3 Location information for an input manifest file.

" + }, + "Integer":{"type":"integer"}, + "InternalServerException":{ + "type":"structure", + "required":["Message"], + "members":{ + "Message":{"shape":"ExceptionString"}, + "RetryAfterSeconds":{ + "shape":"RetryAfterSeconds", + "documentation":"

The period of time, in seconds, before the operation can be retried.

", + "location":"header", + "locationName":"Retry-After" + } + }, + "documentation":"

Amazon Lookout for Vision experienced a service issue. Try your call again.

", + "error":{"httpStatusCode":500}, + "exception":true, + "fault":true + }, + "IsLabeled":{"type":"boolean"}, + "KmsKeyId":{ + "type":"string", + "max":2048, + "min":1, + "pattern":"^[A-Za-z0-9][A-Za-z0-9:_/+=,@.-]{0,2048}$" + }, + "ListDatasetEntriesRequest":{ + "type":"structure", + "required":[ + "ProjectName", + "DatasetType" + ], + "members":{ + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

The name of the project that contains the dataset that you want to list.

", + "location":"uri", + "locationName":"projectName" + }, + "DatasetType":{ + "shape":"DatasetType", + "documentation":"

The type of the dataset that you want to list. Specify train to list the training dataset. Specify test to list the test dataset. If you have a single dataset project, specify train.

", + "location":"uri", + "locationName":"datasetType" + }, + "Labeled":{ + "shape":"IsLabeled", + "documentation":"

Specify true to include labeled entries, otherwise specify false. If you don't specify a value, Lookout for Vision returns all entries.

", + "location":"querystring", + "locationName":"labeled" + }, + "AnomalyClass":{ + "shape":"AnomalyClassFilter", + "documentation":"

Specify normal to include only normal images. Specify anomaly to only include anomalous entries. If you don't specify a value, Amazon Lookout for Vision returns normal and anomalous images.

", + "location":"querystring", + "locationName":"anomalyClass" + }, + "BeforeCreationDate":{ + "shape":"DateTime", + "documentation":"

Only includes entries before the specified date in the response. For example, 2020-06-23T00:00:00.

", + "location":"querystring", + "locationName":"createdBefore" + }, + "AfterCreationDate":{ + "shape":"DateTime", + "documentation":"

Only includes entries after the specified date in the response. For example, 2020-06-23T00:00:00.

", + "location":"querystring", + "locationName":"createdAfter" + }, + "NextToken":{ + "shape":"PaginationToken", + "documentation":"

If the previous response was incomplete (because there is more data to retrieve), Amazon Lookout for Vision returns a pagination token in the response. You can use this pagination token to retrieve the next set of dataset entries.

", + "location":"querystring", + "locationName":"nextToken" + }, + "MaxResults":{ + "shape":"PageSize", + "documentation":"

The maximum number of results to return per paginated call. The largest value you can specify is 100. If you specify a value greater than 100, a ValidationException error occurs. The default value is 100.

", + "location":"querystring", + "locationName":"maxResults" + }, + "SourceRefContains":{ + "shape":"QueryString", + "documentation":"

Perform a \"contains\" search on the values of the source-ref key within the dataset. For example a value of \"IMG_17\" returns all JSON Lines where the source-ref key value matches *IMG_17*.

", + "location":"querystring", + "locationName":"sourceRefContains" + } + } + }, + "ListDatasetEntriesResponse":{ + "type":"structure", + "members":{ + "DatasetEntries":{ + "shape":"DatasetEntryList", + "documentation":"

A list of the entries (JSON Lines) within the dataset.

" + }, + "NextToken":{ + "shape":"PaginationToken", + "documentation":"

If the response is truncated, Amazon Lookout for Vision returns this token that you can use in the subsequent request to retrieve the next set ofdataset entries.

" + } + } + }, + "ListModelsRequest":{ + "type":"structure", + "required":["ProjectName"], + "members":{ + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

The name of the project that contains the model versions that you want to list.

", + "location":"uri", + "locationName":"projectName" + }, + "NextToken":{ + "shape":"PaginationToken", + "documentation":"

If the previous response was incomplete (because there is more data to retrieve), Amazon Lookout for Vision returns a pagination token in the response. You can use this pagination token to retrieve the next set of models.

", + "location":"querystring", + "locationName":"nextToken" + }, + "MaxResults":{ + "shape":"PageSize", + "documentation":"

The maximum number of results to return per paginated call. The largest value you can specify is 100. If you specify a value greater than 100, a ValidationException error occurs. The default value is 100.

", + "location":"querystring", + "locationName":"maxResults" + } + } + }, + "ListModelsResponse":{ + "type":"structure", + "members":{ + "Models":{ + "shape":"ModelMetadataList", + "documentation":"

A list of model versions in the specified project.

" + }, + "NextToken":{ + "shape":"PaginationToken", + "documentation":"

If the response is truncated, Amazon Lookout for Vision returns this token that you can use in the subsequent request to retrieve the next set of models.

" + } + } + }, + "ListProjectsRequest":{ + "type":"structure", + "members":{ + "NextToken":{ + "shape":"PaginationToken", + "documentation":"

If the previous response was incomplete (because there is more data to retrieve), Amazon Lookout for Vision returns a pagination token in the response. You can use this pagination token to retrieve the next set of projects.

", + "location":"querystring", + "locationName":"nextToken" + }, + "MaxResults":{ + "shape":"PageSize", + "documentation":"

The maximum number of results to return per paginated call. The largest value you can specify is 100. If you specify a value greater than 100, a ValidationException error occurs. The default value is 100.

", + "location":"querystring", + "locationName":"maxResults" + } + } + }, + "ListProjectsResponse":{ + "type":"structure", + "members":{ + "Projects":{ + "shape":"ProjectMetadataList", + "documentation":"

A list of projects in your AWS account.

" + }, + "NextToken":{ + "shape":"PaginationToken", + "documentation":"

If the response is truncated, Amazon Lookout for Vision returns this token that you can use in the subsequent request to retrieve the next set of projects.

" + } + } + }, + "ModelArn":{"type":"string"}, + "ModelDescription":{ + "type":"structure", + "members":{ + "ModelVersion":{ + "shape":"ModelVersion", + "documentation":"

The version of the model

" + }, + "ModelArn":{ + "shape":"ModelArn", + "documentation":"

The Amazon Resource Name (ARN) of the model.

" + }, + "CreationTimestamp":{ + "shape":"DateTime", + "documentation":"

The unix timestamp for the date and time that the model was created.

" + }, + "Description":{ + "shape":"ModelDescriptionMessage", + "documentation":"

The description for the model.

" + }, + "Status":{ + "shape":"ModelStatus", + "documentation":"

The status of the model.

" + }, + "StatusMessage":{ + "shape":"ModelStatusMessage", + "documentation":"

The status message for the model.

" + }, + "Performance":{ + "shape":"ModelPerformance", + "documentation":"

Performance metrics for the model. Created during training.

" + }, + "OutputConfig":{ + "shape":"OutputConfig", + "documentation":"

The S3 location where Amazon Lookout for Vision saves model training files.

" + }, + "EvaluationManifest":{ + "shape":"OutputS3Object", + "documentation":"

The S3 location where Amazon Lookout for Vision saves the manifest file that was used to test the trained model and generate the performance scores.

" + }, + "EvaluationResult":{ + "shape":"OutputS3Object", + "documentation":"

The S3 location where Amazon Lookout for Vision saves the performance metrics.

" + }, + "EvaluationEndTimestamp":{ + "shape":"DateTime", + "documentation":"

The unix timestamp for the date and time that the evaluation ended.

" + }, + "KmsKeyId":{ + "shape":"KmsKeyId", + "documentation":"

The identifer for the AWS Key Management Service (AWS KMS) key that was used to encrypt the model during training.

" + } + }, + "documentation":"

Describes an Amazon Lookout for Vision model.

" + }, + "ModelDescriptionMessage":{ + "type":"string", + "max":500, + "min":1, + "pattern":"[0-9A-Za-z\\.\\-_]*" + }, + "ModelHostingStatus":{ + "type":"string", + "enum":[ + "RUNNING", + "STARTING", + "STOPPED", + "FAILED" + ] + }, + "ModelMetadata":{ + "type":"structure", + "members":{ + "CreationTimestamp":{ + "shape":"DateTime", + "documentation":"

The unix timestamp for the date and time that the model was created.

" + }, + "ModelVersion":{ + "shape":"ModelVersion", + "documentation":"

The version of the model.

" + }, + "ModelArn":{ + "shape":"ModelArn", + "documentation":"

The Amazon Resource Name (ARN) of the model.

" + }, + "Description":{ + "shape":"ModelDescriptionMessage", + "documentation":"

The description for the model.

" + }, + "Status":{ + "shape":"ModelStatus", + "documentation":"

The status of the model.

" + }, + "StatusMessage":{ + "shape":"ModelStatusMessage", + "documentation":"

The status message for the model.

" + }, + "Performance":{ + "shape":"ModelPerformance", + "documentation":"

Performance metrics for the model. Created during training.

" + } + }, + "documentation":"

Describes an Amazon Lookout for Vision model.

" + }, + "ModelMetadataList":{ + "type":"list", + "member":{"shape":"ModelMetadata"} + }, + "ModelPerformance":{ + "type":"structure", + "members":{ + "F1Score":{ + "shape":"Float", + "documentation":"

The overall F1 score metric for the trained model.

" + }, + "Recall":{ + "shape":"Float", + "documentation":"

The overall recall metric value for the trained model.

" + }, + "Precision":{ + "shape":"Float", + "documentation":"

The overall precision metric value for the trained model.

" + } + }, + "documentation":"

Information about the evaluation performance of a trained model.

" + }, + "ModelStatus":{ + "type":"string", + "enum":[ + "TRAINING", + "TRAINED", + "TRAINING_FAILED", + "STARTING_HOSTING", + "HOSTED", + "HOSTING_FAILED", + "STOPPING_HOSTING", + "SYSTEM_UPDATING", + "DELETING" + ] + }, + "ModelStatusMessage":{"type":"string"}, + "ModelVersion":{ + "type":"string", + "max":10, + "min":1, + "pattern":"([1-9][0-9]*|latest)" + }, + "OutputConfig":{ + "type":"structure", + "required":["S3Location"], + "members":{ + "S3Location":{ + "shape":"S3Location", + "documentation":"

The S3 location for the output.

" + } + }, + "documentation":"

The S3 location where Amazon Lookout for Vision saves model training files.

" + }, + "OutputS3Object":{ + "type":"structure", + "required":[ + "Bucket", + "Key" + ], + "members":{ + "Bucket":{ + "shape":"S3BucketName", + "documentation":"

The bucket that contains the training output.

" + }, + "Key":{ + "shape":"S3ObjectKey", + "documentation":"

The location of the training output in the bucket.

" + } + }, + "documentation":"

The S3 location where Amazon Lookout for Vision saves training output.

" + }, + "PageSize":{ + "type":"integer", + "max":100, + "min":1 + }, + "PaginationToken":{ + "type":"string", + "max":2048, + "pattern":"^[a-zA-Z0-9\\/\\+\\=]{0,2048}$" + }, + "ProjectArn":{"type":"string"}, + "ProjectDescription":{ + "type":"structure", + "members":{ + "ProjectArn":{ + "shape":"ProjectArn", + "documentation":"

The Amazon Resource Name (ARN) of the project.

" + }, + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

The name of the project.

" + }, + "CreationTimestamp":{ + "shape":"DateTime", + "documentation":"

The unix timestamp for the date and time that the project was created.

" + }, + "Datasets":{ + "shape":"DatasetMetadataList", + "documentation":"

A list of datasets in the project.

" + } + }, + "documentation":"

Describe an Amazon Lookout for Vision project. For more information, see DescribeProject.

" + }, + "ProjectMetadata":{ + "type":"structure", + "members":{ + "ProjectArn":{ + "shape":"ProjectArn", + "documentation":"

The Amazon Resource Name (ARN) of the project.

" + }, + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

The name of the project.

" + }, + "CreationTimestamp":{ + "shape":"DateTime", + "documentation":"

The unix timestamp for the date and time that the project was created.

" + } + }, + "documentation":"

Metadata about an Amazon Lookout for Vision project.

" + }, + "ProjectMetadataList":{ + "type":"list", + "member":{"shape":"ProjectMetadata"} + }, + "ProjectName":{ + "type":"string", + "max":255, + "min":1, + "pattern":"[a-zA-Z0-9][a-zA-Z0-9_\\-]*" + }, + "QueryString":{ + "type":"string", + "max":2048, + "min":1, + "pattern":".*\\S.*" + }, + "ResourceNotFoundException":{ + "type":"structure", + "required":[ + "Message", + "ResourceId", + "ResourceType" + ], + "members":{ + "Message":{"shape":"ExceptionString"}, + "ResourceId":{ + "shape":"ExceptionString", + "documentation":"

The ID of the resource.

" + }, + "ResourceType":{ + "shape":"ResourceType", + "documentation":"

The type of the resource.

" + } + }, + "documentation":"

The resource could not be found.

", + "error":{"httpStatusCode":404}, + "exception":true + }, + "ResourceType":{ + "type":"string", + "enum":[ + "PROJECT", + "DATASET", + "MODEL", + "TRIAL" + ] + }, + "RetryAfterSeconds":{"type":"integer"}, + "S3BucketName":{ + "type":"string", + "max":63, + "min":3, + "pattern":"[0-9A-Za-z\\.\\-_]*" + }, + "S3KeyPrefix":{ + "type":"string", + "max":1024, + "pattern":"^([a-zA-Z0-9!_.*'()-][/a-zA-Z0-9!_.*'()-]*)?$" + }, + "S3Location":{ + "type":"structure", + "required":["Bucket"], + "members":{ + "Bucket":{ + "shape":"S3BucketName", + "documentation":"

The S3 bucket that contain the manifest file.

" + }, + "Prefix":{ + "shape":"S3KeyPrefix", + "documentation":"

The path and name of the manifest file with the S3 bucket.

" + } + }, + "documentation":"

Information about the location of a manifest file.

" + }, + "S3ObjectKey":{ + "type":"string", + "max":1024, + "min":1, + "pattern":"^([a-zA-Z0-9!_.*'()-][/a-zA-Z0-9!_.*'()-]*)?$" + }, + "S3ObjectVersion":{ + "type":"string", + "max":1024, + "min":1, + "pattern":".*" + }, + "ServiceQuotaExceededException":{ + "type":"structure", + "required":[ + "Message", + "QuotaCode", + "ServiceCode" + ], + "members":{ + "Message":{"shape":"ExceptionString"}, + "ResourceId":{ + "shape":"ExceptionString", + "documentation":"

The ID of the resource.

" + }, + "ResourceType":{ + "shape":"ResourceType", + "documentation":"

The type of the resource.

" + }, + "QuotaCode":{ + "shape":"ExceptionString", + "documentation":"

The quota code.

" + }, + "ServiceCode":{ + "shape":"ExceptionString", + "documentation":"

The service code.

" + } + }, + "documentation":"

A service quota was exceeded the allowed limit. For more information, see Limits in Amazon Lookout for Vision in the Amazon Lookout for Vision Developer Guide.

", + "error":{"httpStatusCode":402}, + "exception":true + }, + "StartModelRequest":{ + "type":"structure", + "required":[ + "ProjectName", + "ModelVersion", + "MinInferenceUnits" + ], + "members":{ + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

The name of the project that contains the model that you want to start.

", + "location":"uri", + "locationName":"projectName" + }, + "ModelVersion":{ + "shape":"ModelVersion", + "documentation":"

The version of the model that you want to start.

", + "location":"uri", + "locationName":"modelVersion" + }, + "MinInferenceUnits":{ + "shape":"InferenceUnits", + "documentation":"

The minimum number of inference units to use. A single inference unit represents 1 hour of processing and can support up to 5 Transaction Pers Second (TPS). Use a higher number to increase the TPS throughput of your model. You are charged for the number of inference units that you use.

" + }, + "ClientToken":{ + "shape":"ClientToken", + "documentation":"

ClientToken is an idempotency token that ensures a call to StartModel completes only once. You choose the value to pass. For example, An issue, such as an network outage, might prevent you from getting a response from StartModel. In this case, safely retry your call to StartModel by using the same ClientToken parameter value. An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to StartModel. An idempotency token is active for 8 hours.

", + "idempotencyToken":true, + "location":"header", + "locationName":"X-Amzn-Client-Token" + } + } + }, + "StartModelResponse":{ + "type":"structure", + "members":{ + "Status":{ + "shape":"ModelHostingStatus", + "documentation":"

The current running status of the model.

" + } + } + }, + "StopModelRequest":{ + "type":"structure", + "required":[ + "ProjectName", + "ModelVersion" + ], + "members":{ + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

The name of the project that contains the model that you want to stop.

", + "location":"uri", + "locationName":"projectName" + }, + "ModelVersion":{ + "shape":"ModelVersion", + "documentation":"

The version of the model that you want to stop.

", + "location":"uri", + "locationName":"modelVersion" + }, + "ClientToken":{ + "shape":"ClientToken", + "documentation":"

ClientToken is an idempotency token that ensures a call to StopModel completes only once. You choose the value to pass. For example, An issue, such as an network outage, might prevent you from getting a response from StopModel. In this case, safely retry your call to StopModel by using the same ClientToken parameter value. An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to StopModel. An idempotency token is active for 8 hours.

", + "idempotencyToken":true, + "location":"header", + "locationName":"X-Amzn-Client-Token" + } + } + }, + "StopModelResponse":{ + "type":"structure", + "members":{ + "Status":{ + "shape":"ModelHostingStatus", + "documentation":"

The status of the model.

" + } + } + }, + "Stream":{ + "type":"blob", + "requiresLength":true, + "streaming":true + }, + "ThrottlingException":{ + "type":"structure", + "required":["Message"], + "members":{ + "Message":{"shape":"ExceptionString"}, + "QuotaCode":{ + "shape":"ExceptionString", + "documentation":"

The quota code.

" + }, + "ServiceCode":{ + "shape":"ExceptionString", + "documentation":"

The service code.

" + }, + "RetryAfterSeconds":{ + "shape":"RetryAfterSeconds", + "documentation":"

The period of time, in seconds, before the operation can be retried.

", + "location":"header", + "locationName":"Retry-After" + } + }, + "documentation":"

Amazon Lookout for Vision is temporarily unable to process the request. Try your call again.

", + "error":{"httpStatusCode":429}, + "exception":true + }, + "UpdateDatasetEntriesRequest":{ + "type":"structure", + "required":[ + "ProjectName", + "DatasetType", + "Changes" + ], + "members":{ + "ProjectName":{ + "shape":"ProjectName", + "documentation":"

The name of the project that contains the dataset that you want to update.

", + "location":"uri", + "locationName":"projectName" + }, + "DatasetType":{ + "shape":"DatasetType", + "documentation":"

The type of the dataset that you want to update. Specify train to update the training dataset. Specify test to update the test dataset. If you have a single dataset project, specify train.

", + "location":"uri", + "locationName":"datasetType" + }, + "Changes":{ + "shape":"DatasetChanges", + "documentation":"

The entries to add to the dataset.

" + }, + "ClientToken":{ + "shape":"ClientToken", + "documentation":"

ClientToken is an idempotency token that ensures a call to UpdateDatasetEntries completes only once. You choose the value to pass. For example, An issue, such as an network outage, might prevent you from getting a response from UpdateDatasetEntries. In this case, safely retry your call to UpdateDatasetEntries by using the same ClientToken parameter value. An error occurs if the other input parameters are not the same as in the first request. Using a different value for ClientToken is considered a new call to UpdateDatasetEntries. An idempotency token is active for 8 hours.

", + "idempotencyToken":true, + "location":"header", + "locationName":"X-Amzn-Client-Token" + } + } + }, + "UpdateDatasetEntriesResponse":{ + "type":"structure", + "members":{ + "Status":{ + "shape":"DatasetStatus", + "documentation":"

The status of the dataset update.

" + } + } + }, + "ValidationException":{ + "type":"structure", + "required":["Message"], + "members":{ + "Message":{"shape":"ExceptionString"} + }, + "documentation":"

An input validation error occured. For example, invalid characters in a project name, or if a pagination token is invalid.

", + "error":{"httpStatusCode":400}, + "exception":true + } + }, + "documentation":"

This is the Amazon Lookout for Vision API Reference. It provides descriptions of actions, data types, common parameters, and common errors.

Amazon Lookout for Vision enables you to find visual defects in industrial products, accurately and at scale. It uses computer vision to identify missing components in an industrial product, damage to vehicles or structures, irregularities in production lines, and even minuscule defects in silicon wafers — or any other physical item where quality is important such as a missing capacitor on printed circuit boards.

" +} From 663e72819006333e150fa877951519483166599e Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 2 Dec 2020 00:50:59 +0000 Subject: [PATCH 318/339] Amazon AppIntegrations Service Update: The Amazon AppIntegrations service (in preview release) enables you to configure and reuse connections to external applications. --- ...-AmazonAppIntegrationsService-fc3f329.json | 6 + services/appintegrations/pom.xml | 60 ++ .../codegen-resources/paginators-1.json | 4 + .../codegen-resources/service-2.json | 675 ++++++++++++++++++ 4 files changed, 745 insertions(+) create mode 100644 .changes/next-release/feature-AmazonAppIntegrationsService-fc3f329.json create mode 100644 services/appintegrations/pom.xml create mode 100644 services/appintegrations/src/main/resources/codegen-resources/paginators-1.json create mode 100644 services/appintegrations/src/main/resources/codegen-resources/service-2.json diff --git a/.changes/next-release/feature-AmazonAppIntegrationsService-fc3f329.json b/.changes/next-release/feature-AmazonAppIntegrationsService-fc3f329.json new file mode 100644 index 000000000000..e14e192d6c25 --- /dev/null +++ b/.changes/next-release/feature-AmazonAppIntegrationsService-fc3f329.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon AppIntegrations Service", + "contributor": "", + "description": "The Amazon AppIntegrations service (in preview release) enables you to configure and reuse connections to external applications." +} diff --git a/services/appintegrations/pom.xml b/services/appintegrations/pom.xml new file mode 100644 index 000000000000..6526ca15e506 --- /dev/null +++ b/services/appintegrations/pom.xml @@ -0,0 +1,60 @@ + + + + + 4.0.0 + + software.amazon.awssdk + services + 2.15.37-SNAPSHOT + + appintegrations + AWS Java SDK :: Services :: App Integrations + The AWS Java SDK for App Integrations module holds the client classes that are used for + communicating with App Integrations. + + https://aws.amazon.com/sdkforjava + + + + org.apache.maven.plugins + maven-jar-plugin + + + + software.amazon.awssdk.services.appintegrations + + + + + + + + + + software.amazon.awssdk + protocol-core + ${awsjavasdk.version} + + + software.amazon.awssdk + aws-json-protocol + ${awsjavasdk.version} + + + diff --git a/services/appintegrations/src/main/resources/codegen-resources/paginators-1.json b/services/appintegrations/src/main/resources/codegen-resources/paginators-1.json new file mode 100644 index 000000000000..5677bd8e4a2d --- /dev/null +++ b/services/appintegrations/src/main/resources/codegen-resources/paginators-1.json @@ -0,0 +1,4 @@ +{ + "pagination": { + } +} diff --git a/services/appintegrations/src/main/resources/codegen-resources/service-2.json b/services/appintegrations/src/main/resources/codegen-resources/service-2.json new file mode 100644 index 000000000000..a35f0586f70b --- /dev/null +++ b/services/appintegrations/src/main/resources/codegen-resources/service-2.json @@ -0,0 +1,675 @@ +{ + "version":"2.0", + "metadata":{ + "apiVersion":"2020-07-29", + "endpointPrefix":"app-integrations", + "jsonVersion":"1.1", + "protocol":"rest-json", + "serviceFullName":"Amazon AppIntegrations Service", + "serviceId":"AppIntegrations", + "signatureVersion":"v4", + "signingName":"app-integrations", + "uid":"appintegrations-2020-07-29" + }, + "operations":{ + "CreateEventIntegration":{ + "name":"CreateEventIntegration", + "http":{ + "method":"POST", + "requestUri":"/eventIntegrations" + }, + "input":{"shape":"CreateEventIntegrationRequest"}, + "output":{"shape":"CreateEventIntegrationResponse"}, + "errors":[ + {"shape":"InternalServiceError"}, + {"shape":"ResourceQuotaExceededException"}, + {"shape":"DuplicateResourceException"}, + {"shape":"ThrottlingException"}, + {"shape":"InvalidRequestException"}, + {"shape":"AccessDeniedException"} + ], + "documentation":"

The Amazon AppIntegrations APIs are in preview release and are subject to change.

Creates an EventIntegration, given a specified name, description, and a reference to an Amazon Eventbridge bus in your account and a partner event source that will push events to that bus. No objects are created in the your account, only metadata that is persisted on the EventIntegration control plane.

" + }, + "DeleteEventIntegration":{ + "name":"DeleteEventIntegration", + "http":{ + "method":"DELETE", + "requestUri":"/eventIntegrations/{Name}" + }, + "input":{"shape":"DeleteEventIntegrationRequest"}, + "output":{"shape":"DeleteEventIntegrationResponse"}, + "errors":[ + {"shape":"InternalServiceError"}, + {"shape":"ThrottlingException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InvalidRequestException"}, + {"shape":"AccessDeniedException"} + ], + "documentation":"

The Amazon AppIntegrations APIs are in preview release and are subject to change.

Deletes the specified existing event integration. If the event integration is associated with clients, the request is rejected.

" + }, + "GetEventIntegration":{ + "name":"GetEventIntegration", + "http":{ + "method":"GET", + "requestUri":"/eventIntegrations/{Name}" + }, + "input":{"shape":"GetEventIntegrationRequest"}, + "output":{"shape":"GetEventIntegrationResponse"}, + "errors":[ + {"shape":"InternalServiceError"}, + {"shape":"ThrottlingException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InvalidRequestException"}, + {"shape":"AccessDeniedException"} + ], + "documentation":"

The Amazon AppIntegrations APIs are in preview release and are subject to change.

Return information about the event integration.

" + }, + "ListEventIntegrationAssociations":{ + "name":"ListEventIntegrationAssociations", + "http":{ + "method":"GET", + "requestUri":"/eventIntegrations/{Name}/associations" + }, + "input":{"shape":"ListEventIntegrationAssociationsRequest"}, + "output":{"shape":"ListEventIntegrationAssociationsResponse"}, + "errors":[ + {"shape":"InternalServiceError"}, + {"shape":"ThrottlingException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InvalidRequestException"}, + {"shape":"AccessDeniedException"} + ], + "documentation":"

The Amazon AppIntegrations APIs are in preview release and are subject to change.

Returns a paginated list of event integration associations in the account.

" + }, + "ListEventIntegrations":{ + "name":"ListEventIntegrations", + "http":{ + "method":"GET", + "requestUri":"/eventIntegrations" + }, + "input":{"shape":"ListEventIntegrationsRequest"}, + "output":{"shape":"ListEventIntegrationsResponse"}, + "errors":[ + {"shape":"InternalServiceError"}, + {"shape":"ThrottlingException"}, + {"shape":"InvalidRequestException"}, + {"shape":"AccessDeniedException"} + ], + "documentation":"

The Amazon AppIntegrations APIs are in preview release and are subject to change.

Returns a paginated list of event integrations in the account.

" + }, + "ListTagsForResource":{ + "name":"ListTagsForResource", + "http":{ + "method":"GET", + "requestUri":"/tags/{resourceArn}" + }, + "input":{"shape":"ListTagsForResourceRequest"}, + "output":{"shape":"ListTagsForResourceResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InternalServiceError"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

The Amazon AppIntegrations APIs are in preview release and are subject to change.

Lists the tags for the specified resource.

" + }, + "TagResource":{ + "name":"TagResource", + "http":{ + "method":"POST", + "requestUri":"/tags/{resourceArn}" + }, + "input":{"shape":"TagResourceRequest"}, + "output":{"shape":"TagResourceResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InternalServiceError"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

The Amazon AppIntegrations APIs are in preview release and are subject to change.

Adds the specified tags to the specified resource.

" + }, + "UntagResource":{ + "name":"UntagResource", + "http":{ + "method":"DELETE", + "requestUri":"/tags/{resourceArn}" + }, + "input":{"shape":"UntagResourceRequest"}, + "output":{"shape":"UntagResourceResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"InternalServiceError"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

The Amazon AppIntegrations APIs are in preview release and are subject to change.

Removes the specified tags from the specified resource.

" + }, + "UpdateEventIntegration":{ + "name":"UpdateEventIntegration", + "http":{ + "method":"PATCH", + "requestUri":"/eventIntegrations/{Name}" + }, + "input":{"shape":"UpdateEventIntegrationRequest"}, + "output":{"shape":"UpdateEventIntegrationResponse"}, + "errors":[ + {"shape":"InternalServiceError"}, + {"shape":"ThrottlingException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InvalidRequestException"}, + {"shape":"AccessDeniedException"} + ], + "documentation":"

The Amazon AppIntegrations APIs are in preview release and are subject to change.

Updates the description of an event integration.

" + } + }, + "shapes":{ + "AccessDeniedException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

You do not have sufficient access to perform this action.

", + "error":{"httpStatusCode":403}, + "exception":true + }, + "Arn":{ + "type":"string", + "max":2048, + "min":1, + "pattern":"^arn:aws:[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9][A-Za-z0-9:_/+=,@.-]{0,1023}$" + }, + "ClientAssociationMetadata":{ + "type":"map", + "key":{"shape":"NonBlankString"}, + "value":{"shape":"NonBlankString"} + }, + "ClientId":{ + "type":"string", + "max":255, + "min":1, + "pattern":".*" + }, + "CreateEventIntegrationRequest":{ + "type":"structure", + "required":[ + "Name", + "EventFilter", + "EventBridgeBus" + ], + "members":{ + "Name":{ + "shape":"Name", + "documentation":"

The name of the event integration.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

The description of the event integration.

" + }, + "EventFilter":{ + "shape":"EventFilter", + "documentation":"

The event filter.

" + }, + "EventBridgeBus":{ + "shape":"EventBridgeBus", + "documentation":"

The Eventbridge bus.

" + }, + "ClientToken":{ + "shape":"IdempotencyToken", + "documentation":"

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

", + "idempotencyToken":true + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

One or more tags.

" + } + } + }, + "CreateEventIntegrationResponse":{ + "type":"structure", + "members":{ + "EventIntegrationArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the event integration.

" + } + } + }, + "DeleteEventIntegrationRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"Name", + "documentation":"

The name of the event integration.

", + "location":"uri", + "locationName":"Name" + } + } + }, + "DeleteEventIntegrationResponse":{ + "type":"structure", + "members":{ + } + }, + "Description":{ + "type":"string", + "max":1000, + "min":1, + "pattern":".*" + }, + "DuplicateResourceException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

A resource with the specified name already exists.

", + "error":{"httpStatusCode":409}, + "exception":true + }, + "EventBridgeBus":{ + "type":"string", + "max":255, + "min":1, + "pattern":"^[a-zA-Z0-9\\/\\._\\-]+$" + }, + "EventBridgeRuleName":{ + "type":"string", + "max":2048, + "min":1, + "pattern":"^[a-zA-Z0-9\\/\\._\\-]+$" + }, + "EventFilter":{ + "type":"structure", + "required":["Source"], + "members":{ + "Source":{ + "shape":"Source", + "documentation":"

The source of the events.

" + } + }, + "documentation":"

The Amazon AppIntegrations APIs are in preview release and are subject to change.

The event filter.

" + }, + "EventIntegration":{ + "type":"structure", + "members":{ + "EventIntegrationArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the event integration.

" + }, + "Name":{ + "shape":"Name", + "documentation":"

The name of the event integration.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

The event integration description.

" + }, + "EventFilter":{ + "shape":"EventFilter", + "documentation":"

The event integration filter.

" + }, + "EventBridgeBus":{ + "shape":"EventBridgeBus", + "documentation":"

The Amazon Eventbridge bus for the event integration.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

The tags.

" + } + }, + "documentation":"

The Amazon AppIntegrations APIs are in preview release and are subject to change.

The event integration.

" + }, + "EventIntegrationAssociation":{ + "type":"structure", + "members":{ + "EventIntegrationAssociationArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) for the event integration association.

" + }, + "EventIntegrationAssociationId":{ + "shape":"UUID", + "documentation":"

The identifier for the event integration association.

" + }, + "EventIntegrationName":{ + "shape":"Name", + "documentation":"

The name of the event integration.

" + }, + "ClientId":{ + "shape":"ClientId", + "documentation":"

The identifier for the client that is associated with the event integration.

" + }, + "EventBridgeRuleName":{ + "shape":"EventBridgeRuleName", + "documentation":"

The name of the Eventbridge rule.

" + }, + "ClientAssociationMetadata":{ + "shape":"ClientAssociationMetadata", + "documentation":"

The metadata associated with the client.

" + } + }, + "documentation":"

The Amazon AppIntegrations APIs are in preview release and are subject to change.

The event integration association.

" + }, + "EventIntegrationAssociationsList":{ + "type":"list", + "member":{"shape":"EventIntegrationAssociation"}, + "max":50, + "min":1 + }, + "EventIntegrationsList":{ + "type":"list", + "member":{"shape":"EventIntegration"}, + "max":50, + "min":1 + }, + "GetEventIntegrationRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"Name", + "documentation":"

The name of the event integration.

", + "location":"uri", + "locationName":"Name" + } + } + }, + "GetEventIntegrationResponse":{ + "type":"structure", + "members":{ + "Name":{ + "shape":"Name", + "documentation":"

The name of the event integration.

" + }, + "Description":{ + "shape":"Description", + "documentation":"

The description of the event integration.

" + }, + "EventIntegrationArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) for the event integration.

" + }, + "EventBridgeBus":{ + "shape":"EventBridgeBus", + "documentation":"

The Eventbridge bus.

" + }, + "EventFilter":{ + "shape":"EventFilter", + "documentation":"

The event filter.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

One or more tags.

" + } + } + }, + "IdempotencyToken":{ + "type":"string", + "max":2048, + "min":1, + "pattern":".*" + }, + "InternalServiceError":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

Request processing failed due to an error or failure with the service.

", + "error":{"httpStatusCode":500}, + "exception":true, + "fault":true + }, + "InvalidRequestException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

The request is not valid.

", + "error":{"httpStatusCode":400}, + "exception":true + }, + "ListEventIntegrationAssociationsRequest":{ + "type":"structure", + "required":["EventIntegrationName"], + "members":{ + "EventIntegrationName":{ + "shape":"Name", + "documentation":"

The name of the event integration.

", + "location":"uri", + "locationName":"Name" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

", + "location":"querystring", + "locationName":"nextToken" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of results to return per page.

", + "location":"querystring", + "locationName":"maxResults" + } + } + }, + "ListEventIntegrationAssociationsResponse":{ + "type":"structure", + "members":{ + "EventIntegrationAssociations":{ + "shape":"EventIntegrationAssociationsList", + "documentation":"

The event integration associations.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If there are additional results, this is the token for the next set of results.

" + } + } + }, + "ListEventIntegrationsRequest":{ + "type":"structure", + "members":{ + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

", + "location":"querystring", + "locationName":"nextToken" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of results to return per page.

", + "location":"querystring", + "locationName":"maxResults" + } + } + }, + "ListEventIntegrationsResponse":{ + "type":"structure", + "members":{ + "EventIntegrations":{ + "shape":"EventIntegrationsList", + "documentation":"

The event integrations.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If there are additional results, this is the token for the next set of results.

" + } + } + }, + "ListTagsForResourceRequest":{ + "type":"structure", + "required":["resourceArn"], + "members":{ + "resourceArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the resource.

", + "location":"uri", + "locationName":"resourceArn" + } + } + }, + "ListTagsForResourceResponse":{ + "type":"structure", + "members":{ + "tags":{ + "shape":"TagMap", + "documentation":"

Information about the tags.

" + } + } + }, + "MaxResults":{ + "type":"integer", + "max":50, + "min":1 + }, + "Message":{"type":"string"}, + "Name":{ + "type":"string", + "max":255, + "min":1, + "pattern":"^[a-zA-Z0-9\\/\\._\\-]+$" + }, + "NextToken":{ + "type":"string", + "max":1000, + "min":1, + "pattern":".*" + }, + "NonBlankString":{ + "type":"string", + "max":255, + "min":1, + "pattern":".*\\S.*" + }, + "ResourceNotFoundException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

The specified resource was not found.

", + "error":{"httpStatusCode":404}, + "exception":true + }, + "ResourceQuotaExceededException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

The allowed quota for the resource has been exceeded.

", + "error":{"httpStatusCode":429}, + "exception":true + }, + "Source":{ + "type":"string", + "max":256, + "min":1, + "pattern":"^aws\\.partner\\/.*$" + }, + "TagKey":{ + "type":"string", + "max":128, + "min":1, + "pattern":"^(?!aws:)[a-zA-Z+-=._:/]+$" + }, + "TagKeyList":{ + "type":"list", + "member":{"shape":"TagKey"}, + "max":200, + "min":1 + }, + "TagMap":{ + "type":"map", + "key":{"shape":"TagKey"}, + "value":{"shape":"TagValue"}, + "max":200, + "min":1 + }, + "TagResourceRequest":{ + "type":"structure", + "required":[ + "resourceArn", + "tags" + ], + "members":{ + "resourceArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the resource.

", + "location":"uri", + "locationName":"resourceArn" + }, + "tags":{ + "shape":"TagMap", + "documentation":"

One or more tags.

" + } + } + }, + "TagResourceResponse":{ + "type":"structure", + "members":{ + } + }, + "TagValue":{ + "type":"string", + "max":256 + }, + "ThrottlingException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

The throttling limit has been exceeded.

", + "error":{"httpStatusCode":429}, + "exception":true + }, + "UUID":{ + "type":"string", + "pattern":"[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}" + }, + "UntagResourceRequest":{ + "type":"structure", + "required":[ + "resourceArn", + "tagKeys" + ], + "members":{ + "resourceArn":{ + "shape":"Arn", + "documentation":"

The Amazon Resource Name (ARN) of the resource.

", + "location":"uri", + "locationName":"resourceArn" + }, + "tagKeys":{ + "shape":"TagKeyList", + "documentation":"

The tag keys.

", + "location":"querystring", + "locationName":"tagKeys" + } + } + }, + "UntagResourceResponse":{ + "type":"structure", + "members":{ + } + }, + "UpdateEventIntegrationRequest":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"Name", + "documentation":"

The name of the event integration.

", + "location":"uri", + "locationName":"Name" + }, + "Description":{ + "shape":"Description", + "documentation":"

The description of the event inegration.

" + } + } + }, + "UpdateEventIntegrationResponse":{ + "type":"structure", + "members":{ + } + } + }, + "documentation":"

The Amazon AppIntegrations APIs are in preview release and are subject to change.

The Amazon AppIntegrations service enables you to configure and reuse connections to external applications.

For information about how you can use external applications with Amazon Connect, see Set up pre-built integrations in the Amazon Connect Administrator Guide.

" +} From 4d416162b4ce5ac8793f9da5bd3bd8989b6f8a60 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 2 Dec 2020 00:50:48 +0000 Subject: [PATCH 319/339] Amazon Connect Contact Lens Update: Contact Lens for Amazon Connect analyzes conversations, both real-time and post-call. The ListRealtimeContactAnalysisSegments API returns a list of analysis segments for a real-time analysis session. --- ...ture-AmazonConnectContactLens-4d31c61.json | 6 + services/connectcontactlens/pom.xml | 60 +++ .../codegen-resources/paginators-1.json | 9 + .../codegen-resources/service-2.json | 361 ++++++++++++++++++ 4 files changed, 436 insertions(+) create mode 100644 .changes/next-release/feature-AmazonConnectContactLens-4d31c61.json create mode 100644 services/connectcontactlens/pom.xml create mode 100644 services/connectcontactlens/src/main/resources/codegen-resources/paginators-1.json create mode 100644 services/connectcontactlens/src/main/resources/codegen-resources/service-2.json diff --git a/.changes/next-release/feature-AmazonConnectContactLens-4d31c61.json b/.changes/next-release/feature-AmazonConnectContactLens-4d31c61.json new file mode 100644 index 000000000000..19411f7aafd4 --- /dev/null +++ b/.changes/next-release/feature-AmazonConnectContactLens-4d31c61.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Connect Contact Lens", + "contributor": "", + "description": "Contact Lens for Amazon Connect analyzes conversations, both real-time and post-call. The ListRealtimeContactAnalysisSegments API returns a list of analysis segments for a real-time analysis session." +} diff --git a/services/connectcontactlens/pom.xml b/services/connectcontactlens/pom.xml new file mode 100644 index 000000000000..fa731f0180b0 --- /dev/null +++ b/services/connectcontactlens/pom.xml @@ -0,0 +1,60 @@ + + + + + 4.0.0 + + software.amazon.awssdk + services + 2.15.37-SNAPSHOT + + connectcontactlens + AWS Java SDK :: Services :: Connect Contact Lens + The AWS Java SDK for Connect Contact Lens module holds the client classes that are used for + communicating with Connect Contact Lens. + + https://aws.amazon.com/sdkforjava + + + + org.apache.maven.plugins + maven-jar-plugin + + + + software.amazon.awssdk.services.connectcontactlens + + + + + + + + + + software.amazon.awssdk + protocol-core + ${awsjavasdk.version} + + + software.amazon.awssdk + aws-json-protocol + ${awsjavasdk.version} + + + diff --git a/services/connectcontactlens/src/main/resources/codegen-resources/paginators-1.json b/services/connectcontactlens/src/main/resources/codegen-resources/paginators-1.json new file mode 100644 index 000000000000..d1d69dccd15d --- /dev/null +++ b/services/connectcontactlens/src/main/resources/codegen-resources/paginators-1.json @@ -0,0 +1,9 @@ +{ + "pagination": { + "ListRealtimeContactAnalysisSegments": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults" + } + } +} diff --git a/services/connectcontactlens/src/main/resources/codegen-resources/service-2.json b/services/connectcontactlens/src/main/resources/codegen-resources/service-2.json new file mode 100644 index 000000000000..08a0c4e78b5b --- /dev/null +++ b/services/connectcontactlens/src/main/resources/codegen-resources/service-2.json @@ -0,0 +1,361 @@ +{ + "version":"2.0", + "metadata":{ + "apiVersion":"2020-08-21", + "endpointPrefix":"contact-lens", + "jsonVersion":"1.1", + "protocol":"rest-json", + "serviceAbbreviation":"Amazon Connect Contact Lens", + "serviceFullName":"Amazon Connect Contact Lens", + "serviceId":"Connect Contact Lens", + "signatureVersion":"v4", + "signingName":"connect", + "uid":"connect-contact-lens-2020-08-21" + }, + "operations":{ + "ListRealtimeContactAnalysisSegments":{ + "name":"ListRealtimeContactAnalysisSegments", + "http":{ + "method":"POST", + "requestUri":"/realtime-contact-analysis/analysis-segments" + }, + "input":{"shape":"ListRealtimeContactAnalysisSegmentsRequest"}, + "output":{"shape":"ListRealtimeContactAnalysisSegmentsResponse"}, + "errors":[ + {"shape":"InvalidRequestException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"InternalServiceException"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Provides a list of analysis segments for a real-time analysis session.

" + } + }, + "shapes":{ + "AccessDeniedException":{ + "type":"structure", + "required":["Message"], + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

You do not have sufficient access to perform this action.

", + "error":{"httpStatusCode":403}, + "exception":true + }, + "Categories":{ + "type":"structure", + "required":[ + "MatchedCategories", + "MatchedDetails" + ], + "members":{ + "MatchedCategories":{ + "shape":"MatchedCategories", + "documentation":"

The category rules that have been matched in the analyzed segment.

" + }, + "MatchedDetails":{ + "shape":"MatchedDetails", + "documentation":"

The category rule that was matched and when it occurred in the transcript.

" + } + }, + "documentation":"

Provides the category rules that are used to automatically categorize contacts based on uttered keywords and phrases.

" + }, + "CategoryDetails":{ + "type":"structure", + "required":["PointsOfInterest"], + "members":{ + "PointsOfInterest":{ + "shape":"PointsOfInterest", + "documentation":"

The section of audio where the category rule was detected.

" + } + }, + "documentation":"

Provides information about the category rule that was matched.

" + }, + "CategoryName":{ + "type":"string", + "max":256, + "min":1, + "pattern":".*\\S.*" + }, + "CharacterOffset":{ + "type":"integer", + "min":0 + }, + "CharacterOffsets":{ + "type":"structure", + "required":[ + "BeginOffsetChar", + "EndOffsetChar" + ], + "members":{ + "BeginOffsetChar":{ + "shape":"CharacterOffset", + "documentation":"

The beginning of the issue.

" + }, + "EndOffsetChar":{ + "shape":"CharacterOffset", + "documentation":"

The end of the issue.

" + } + }, + "documentation":"

For characters that were detected as issues, where they occur in the transcript.

" + }, + "ContactId":{ + "type":"string", + "max":256, + "min":1, + "pattern":".*\\S.*" + }, + "InstanceId":{ + "type":"string", + "max":256, + "min":1, + "pattern":".*\\S.*" + }, + "InternalServiceException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

Request processing failed due to an error or failure with the service.

", + "error":{"httpStatusCode":500}, + "exception":true, + "fault":true + }, + "InvalidRequestException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

The request is not valid.

", + "error":{"httpStatusCode":400}, + "exception":true + }, + "IssueDetected":{ + "type":"structure", + "required":["CharacterOffsets"], + "members":{ + "CharacterOffsets":{ + "shape":"CharacterOffsets", + "documentation":"

The offset for when the issue was detected in the segment.

" + } + }, + "documentation":"

Potential issues that are detected based on an artificial intelligence analysis of each turn in the conversation.

" + }, + "IssuesDetected":{ + "type":"list", + "member":{"shape":"IssueDetected"}, + "max":20, + "min":0 + }, + "ListRealtimeContactAnalysisSegmentsRequest":{ + "type":"structure", + "required":[ + "InstanceId", + "ContactId" + ], + "members":{ + "InstanceId":{ + "shape":"InstanceId", + "documentation":"

The identifier of the Amazon Connect instance.

" + }, + "ContactId":{ + "shape":"ContactId", + "documentation":"

The identifier of the contact.

" + }, + "MaxResults":{ + "shape":"MaxResults", + "documentation":"

The maximimum number of results to return per page.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

" + } + } + }, + "ListRealtimeContactAnalysisSegmentsResponse":{ + "type":"structure", + "required":["Segments"], + "members":{ + "Segments":{ + "shape":"RealtimeContactAnalysisSegments", + "documentation":"

An analyzed transcript or category.

" + }, + "NextToken":{ + "shape":"NextToken", + "documentation":"

If there are additional results, this is the token for the next set of results. If response includes nextToken there are two possible scenarios:

  • There are more segments so another call is required to get them.

  • There are no more segments at this time, but more may be available later (real-time analysis is in progress) so the client should call the operation again to get new segments.

If response does not include nextToken, the analysis is completed (successfully or failed) and there are no more segments to retrieve.

" + } + } + }, + "MatchedCategories":{ + "type":"list", + "member":{"shape":"CategoryName"}, + "max":150, + "min":0 + }, + "MatchedDetails":{ + "type":"map", + "key":{"shape":"CategoryName"}, + "value":{"shape":"CategoryDetails"}, + "max":150, + "min":0 + }, + "MaxResults":{ + "type":"integer", + "max":100, + "min":1 + }, + "Message":{"type":"string"}, + "NextToken":{ + "type":"string", + "max":131070, + "min":1, + "pattern":".*\\S.*" + }, + "OffsetMillis":{ + "type":"integer", + "min":0 + }, + "ParticipantId":{ + "type":"string", + "max":256, + "min":1, + "pattern":".*\\S.*" + }, + "ParticipantRole":{ + "type":"string", + "max":256, + "min":1, + "pattern":".*\\S.*" + }, + "PointOfInterest":{ + "type":"structure", + "required":[ + "BeginOffsetMillis", + "EndOffsetMillis" + ], + "members":{ + "BeginOffsetMillis":{ + "shape":"OffsetMillis", + "documentation":"

The beginning offset in milliseconds where the category rule was detected.

" + }, + "EndOffsetMillis":{ + "shape":"OffsetMillis", + "documentation":"

The ending offset in milliseconds where the category rule was detected.

" + } + }, + "documentation":"

The section of the contact audio where that category rule was detected.

" + }, + "PointsOfInterest":{ + "type":"list", + "member":{"shape":"PointOfInterest"}, + "max":20, + "min":0 + }, + "RealtimeContactAnalysisSegment":{ + "type":"structure", + "members":{ + "Transcript":{ + "shape":"Transcript", + "documentation":"

The analyzed transcript.

" + }, + "Categories":{ + "shape":"Categories", + "documentation":"

The matched category rules.

" + } + }, + "documentation":"

An analyzed segment for a real-time analysis session.

" + }, + "RealtimeContactAnalysisSegments":{ + "type":"list", + "member":{"shape":"RealtimeContactAnalysisSegment"}, + "max":100, + "min":0 + }, + "ResourceNotFoundException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

The specified resource was not found.

", + "error":{"httpStatusCode":404}, + "exception":true + }, + "SentimentValue":{ + "type":"string", + "enum":[ + "POSITIVE", + "NEUTRAL", + "NEGATIVE" + ] + }, + "ThrottlingException":{ + "type":"structure", + "required":["Message"], + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

The throttling limit has been exceeded.

", + "error":{"httpStatusCode":429}, + "exception":true + }, + "Transcript":{ + "type":"structure", + "required":[ + "Id", + "ParticipantId", + "ParticipantRole", + "Content", + "BeginOffsetMillis", + "EndOffsetMillis", + "Sentiment" + ], + "members":{ + "Id":{ + "shape":"TranscriptId", + "documentation":"

The identifier of the transcript.

" + }, + "ParticipantId":{ + "shape":"ParticipantId", + "documentation":"

The identifier of the participant.

" + }, + "ParticipantRole":{ + "shape":"ParticipantRole", + "documentation":"

The role of participant. For example, is it a customer, agent, or system.

" + }, + "Content":{ + "shape":"TranscriptContent", + "documentation":"

The content of the transcript.

" + }, + "BeginOffsetMillis":{ + "shape":"OffsetMillis", + "documentation":"

The beginning offset in the contact for this transcript.

" + }, + "EndOffsetMillis":{ + "shape":"OffsetMillis", + "documentation":"

The end offset in the contact for this transcript.

" + }, + "Sentiment":{ + "shape":"SentimentValue", + "documentation":"

The sentiment of the detected for this piece of transcript.

" + }, + "IssuesDetected":{ + "shape":"IssuesDetected", + "documentation":"

List of positions where issues were detected on the transcript.

" + } + }, + "documentation":"

A list of messages in the session.

" + }, + "TranscriptContent":{ + "type":"string", + "min":1, + "pattern":".*\\S.*" + }, + "TranscriptId":{ + "type":"string", + "max":256, + "min":1, + "pattern":".*\\S.*" + } + }, + "documentation":"

Contact Lens for Amazon Connect enables you to analyze conversations between customer and agents, by using speech transcription, natural language processing, and intelligent search capabilities. It performs sentiment analysis, detects issues, and enables you to automatically categorize contacts.

Contact Lens for Amazon Connect provides both real-time and post-call analytics of customer-agent conversations. For more information, see Analyze conversations using Contact Lens in the Amazon Connect Administrator Guide.

" +} From fff709908c97a0c44be0dfa05aaf95769a6c0f39 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 2 Dec 2020 00:50:48 +0000 Subject: [PATCH 320/339] AWS Directory Service Update: Adding client authentication feature for AWS AD Connector --- .../feature-AWSDirectoryService-4c4ec43.json | 6 + .../codegen-resources/service-2.json | 150 +++++++++++++++++- 2 files changed, 148 insertions(+), 8 deletions(-) create mode 100644 .changes/next-release/feature-AWSDirectoryService-4c4ec43.json diff --git a/.changes/next-release/feature-AWSDirectoryService-4c4ec43.json b/.changes/next-release/feature-AWSDirectoryService-4c4ec43.json new file mode 100644 index 000000000000..0a59ce0525c3 --- /dev/null +++ b/.changes/next-release/feature-AWSDirectoryService-4c4ec43.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Directory Service", + "contributor": "", + "description": "Adding client authentication feature for AWS AD Connector" +} diff --git a/services/directory/src/main/resources/codegen-resources/service-2.json b/services/directory/src/main/resources/codegen-resources/service-2.json index c05823cb1ec0..4cf712d980f8 100644 --- a/services/directory/src/main/resources/codegen-resources/service-2.json +++ b/services/directory/src/main/resources/codegen-resources/service-2.json @@ -556,6 +556,24 @@ ], "documentation":"

Obtains information about the trust relationships for this account.

If no input parameters are provided, such as DirectoryId or TrustIds, this request describes all the trust relationships belonging to the account.

" }, + "DisableClientAuthentication":{ + "name":"DisableClientAuthentication", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DisableClientAuthenticationRequest"}, + "output":{"shape":"DisableClientAuthenticationResult"}, + "errors":[ + {"shape":"DirectoryDoesNotExistException"}, + {"shape":"UnsupportedOperationException"}, + {"shape":"InvalidClientAuthStatusException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ClientException"}, + {"shape":"ServiceException"} + ], + "documentation":"

Disable client authentication for smart cards.

" + }, "DisableLDAPS":{ "name":"DisableLDAPS", "http":{ @@ -607,6 +625,25 @@ ], "documentation":"

Disables single-sign on for a directory.

" }, + "EnableClientAuthentication":{ + "name":"EnableClientAuthentication", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"EnableClientAuthenticationRequest"}, + "output":{"shape":"EnableClientAuthenticationResult"}, + "errors":[ + {"shape":"DirectoryDoesNotExistException"}, + {"shape":"UnsupportedOperationException"}, + {"shape":"InvalidClientAuthStatusException"}, + {"shape":"AccessDeniedException"}, + {"shape":"NoAvailableCertificateException"}, + {"shape":"ClientException"}, + {"shape":"ServiceException"} + ], + "documentation":"

Enable client authentication for smardtcards.

" + }, "EnableLDAPS":{ "name":"EnableLDAPS", "http":{ @@ -1267,6 +1304,14 @@ "ExpiryDateTime":{ "shape":"CertificateExpiryDateTime", "documentation":"

The date and time when the certificate will expire.

" + }, + "Type":{ + "shape":"CertificateType", + "documentation":"

Select ClientCertAuth for smart card integration.

" + }, + "ClientCertAuthSettings":{ + "shape":"ClientCertAuthSettings", + "documentation":"

Provides information about the client certificate authentication settings. The default value is ClientLDAPS.

" } }, "documentation":"

Information about the certificate.

" @@ -1327,6 +1372,10 @@ "ExpiryDateTime":{ "shape":"CertificateExpiryDateTime", "documentation":"

The date and time when the certificate will expire.

" + }, + "Type":{ + "shape":"CertificateType", + "documentation":"

Displays the type of certificate.

" } }, "documentation":"

Contains general information about a certificate.

" @@ -1353,6 +1402,13 @@ ] }, "CertificateStateReason":{"type":"string"}, + "CertificateType":{ + "type":"string", + "enum":[ + "ClientCertAuth", + "ClientLDAPS" + ] + }, "CertificatesInfo":{ "type":"list", "member":{"shape":"CertificateInfo"} @@ -1365,6 +1421,20 @@ "type":"list", "member":{"shape":"CidrIp"} }, + "ClientAuthenticationType":{ + "type":"string", + "enum":["SmartCard"] + }, + "ClientCertAuthSettings":{ + "type":"structure", + "members":{ + "OCSPUrl":{ + "shape":"OCSPUrl", + "documentation":"

Specifies the URL of the default OCSP server used to check for revocation status.

" + } + }, + "documentation":"

Contains information about the client certificate authentication settings, such as ClientLDAPS or ClientCertAuth.

" + }, "ClientException":{ "type":"structure", "members":{ @@ -2137,7 +2207,7 @@ }, "NextToken":{ "shape":"NextToken", - "documentation":"

The DescribeRegionsResult.NextToken value from a previous call to DescribeRegions. Pass null if this is the first call.

" + "documentation":"

The DescribeRegionsResult.NextToken value from a previous call to DescribeRegions. Pass null if this is the first call.

" } } }, @@ -2146,11 +2216,11 @@ "members":{ "RegionsDescription":{ "shape":"RegionsDescription", - "documentation":"

List of regional information related to the directory per replicated Region.

" + "documentation":"

List of Region information related to the directory for each replicated Region.

" }, "NextToken":{ "shape":"NextToken", - "documentation":"

If not null, more results are available. Pass this value for the NextToken parameter in a subsequent call to DescribeRegions to retrieve the next set of items.

" + "documentation":"

If not null, more results are available. Pass this value for the NextToken parameter in a subsequent call to DescribeRegions to retrieve the next set of items.

" } } }, @@ -2632,6 +2702,28 @@ }, "documentation":"

Contains information about the directory.

" }, + "DisableClientAuthenticationRequest":{ + "type":"structure", + "required":[ + "DirectoryId", + "Type" + ], + "members":{ + "DirectoryId":{ + "shape":"DirectoryId", + "documentation":"

Disable client authentication in a specified directory for smart cards.

" + }, + "Type":{ + "shape":"ClientAuthenticationType", + "documentation":"

Disable the type of client authentication request.

" + } + } + }, + "DisableClientAuthenticationResult":{ + "type":"structure", + "members":{ + } + }, "DisableLDAPSRequest":{ "type":"structure", "required":[ @@ -2780,6 +2872,28 @@ "type":"list", "member":{"shape":"DomainController"} }, + "EnableClientAuthenticationRequest":{ + "type":"structure", + "required":[ + "DirectoryId", + "Type" + ], + "members":{ + "DirectoryId":{ + "shape":"DirectoryId", + "documentation":"

Enable client authentication in a specified directory for smart cards.

" + }, + "Type":{ + "shape":"ClientAuthenticationType", + "documentation":"

Enable the type of client authentication request.

" + } + } + }, + "EnableClientAuthenticationResult":{ + "type":"structure", + "members":{ + } + }, "EnableLDAPSRequest":{ "type":"structure", "required":[ @@ -2959,6 +3073,15 @@ "documentation":"

The certificate PEM that was provided has incorrect encoding.

", "exception":true }, + "InvalidClientAuthStatusException":{ + "type":"structure", + "members":{ + "Message":{"shape":"ExceptionMessage"}, + "RequestId":{"shape":"RequestId"} + }, + "documentation":"

The client authorization was invalid.

", + "exception":true + }, "InvalidLDAPSStatusException":{ "type":"structure", "members":{ @@ -3330,6 +3453,12 @@ "max":1024, "sensitive":true }, + "OCSPUrl":{ + "type":"string", + "max":1024, + "min":1, + "pattern":"^(https?|ftp|file|ldaps?)://[-a-zA-Z0-9+&@#/%?=~_|!:,.;()]*[-a-zA-Z0-9+&@#/%=~_|()]" + }, "OrganizationalUnitDN":{ "type":"string", "max":2000, @@ -3478,7 +3607,7 @@ }, "RegionType":{ "shape":"RegionType", - "documentation":"

Specifies if the Region is the primary Region or an additional Region.

" + "documentation":"

Specifies whether the Region is the primary Region or an additional Region.

" }, "Status":{ "shape":"DirectoryStage", @@ -3502,7 +3631,7 @@ "documentation":"

The date and time that the Region description was last updated.

" } }, - "documentation":"

The replicated regional information for a directory.

" + "documentation":"

The replicated Region information for a directory.

" }, "RegionLimitExceededException":{ "type":"structure", @@ -3510,7 +3639,7 @@ "Message":{"shape":"ExceptionMessage"}, "RequestId":{"shape":"RequestId"} }, - "documentation":"

You have reached the limit for maximum number of simultaneous region replications per directory.

", + "documentation":"

You have reached the limit for maximum number of simultaneous Region replications per directory.

", "exception":true }, "RegionName":{ @@ -3534,7 +3663,7 @@ "members":{ "PrimaryRegion":{ "shape":"RegionName", - "documentation":"

The Region from where the AWS Managed Microsoft AD directory was originally created.

" + "documentation":"

The Region where the AWS Managed Microsoft AD directory was originally created.

" }, "AdditionalRegions":{ "shape":"AdditionalRegions", @@ -3557,7 +3686,12 @@ "CertificateData":{ "shape":"CertificateData", "documentation":"

The certificate PEM string that needs to be registered.

" - } + }, + "Type":{ + "shape":"CertificateType", + "documentation":"

The certificate type to register for the request.

" + }, + "ClientCertAuthSettings":{"shape":"ClientCertAuthSettings"} } }, "RegisterCertificateResult":{ From e0f3767a0837fd781df6f05bba18e96b3f9b4b0f Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 2 Dec 2020 00:51:10 +0000 Subject: [PATCH 321/339] AmplifyBackend Update: (New Service) The Amplify Admin UI offers an accessible way to develop app backends and manage app content. We recommend that you use the Amplify Admin UI to manage the backend of your Amplify app. --- .../feature-AmplifyBackend-99c59e6.json | 6 + services/amplifybackend/pom.xml | 60 + .../codegen-resources/paginators-1.json | 10 + .../codegen-resources/service-2.json | 3954 +++++++++++++++++ 4 files changed, 4030 insertions(+) create mode 100644 .changes/next-release/feature-AmplifyBackend-99c59e6.json create mode 100644 services/amplifybackend/pom.xml create mode 100644 services/amplifybackend/src/main/resources/codegen-resources/paginators-1.json create mode 100644 services/amplifybackend/src/main/resources/codegen-resources/service-2.json diff --git a/.changes/next-release/feature-AmplifyBackend-99c59e6.json b/.changes/next-release/feature-AmplifyBackend-99c59e6.json new file mode 100644 index 000000000000..b12ae060bd26 --- /dev/null +++ b/.changes/next-release/feature-AmplifyBackend-99c59e6.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AmplifyBackend", + "contributor": "", + "description": "(New Service) The Amplify Admin UI offers an accessible way to develop app backends and manage app content. We recommend that you use the Amplify Admin UI to manage the backend of your Amplify app." +} diff --git a/services/amplifybackend/pom.xml b/services/amplifybackend/pom.xml new file mode 100644 index 000000000000..9f857faea66e --- /dev/null +++ b/services/amplifybackend/pom.xml @@ -0,0 +1,60 @@ + + + + + 4.0.0 + + software.amazon.awssdk + services + 2.15.37-SNAPSHOT + + amplifybackend + AWS Java SDK :: Services :: Amplify Backend + The AWS Java SDK for Amplify Backend module holds the client classes that are used for + communicating with Amplify Backend. + + https://aws.amazon.com/sdkforjava + + + + org.apache.maven.plugins + maven-jar-plugin + + + + software.amazon.awssdk.services.amplifybackend + + + + + + + + + + software.amazon.awssdk + protocol-core + ${awsjavasdk.version} + + + software.amazon.awssdk + aws-json-protocol + ${awsjavasdk.version} + + + diff --git a/services/amplifybackend/src/main/resources/codegen-resources/paginators-1.json b/services/amplifybackend/src/main/resources/codegen-resources/paginators-1.json new file mode 100644 index 000000000000..40304c7d438f --- /dev/null +++ b/services/amplifybackend/src/main/resources/codegen-resources/paginators-1.json @@ -0,0 +1,10 @@ +{ + "pagination": { + "ListBackendJobs": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "Jobs" + } + } +} diff --git a/services/amplifybackend/src/main/resources/codegen-resources/service-2.json b/services/amplifybackend/src/main/resources/codegen-resources/service-2.json new file mode 100644 index 000000000000..5f9bfdbf217b --- /dev/null +++ b/services/amplifybackend/src/main/resources/codegen-resources/service-2.json @@ -0,0 +1,3954 @@ +{ + "metadata": { + "apiVersion": "2020-08-11", + "endpointPrefix": "amplifybackend", + "signingName": "amplifybackend", + "serviceFullName": "AmplifyBackend", + "serviceId": "AmplifyBackend", + "protocol": "rest-json", + "jsonVersion": "1.1", + "uid": "amplifybackend-2020-08-11", + "signatureVersion": "v4" + }, + "operations": { + "CloneBackend": { + "name": "CloneBackend", + "http": { + "method": "POST", + "requestUri": "/backend/{appId}/environments/{backendEnvironmentName}/clone", + "responseCode": 200 + }, + "input": { + "shape": "CloneBackendRequest" + }, + "output": { + "shape": "CloneBackendResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

This operation clones an existing backend.

" + }, + "CreateBackend": { + "name": "CreateBackend", + "http": { + "method": "POST", + "requestUri": "/backend", + "responseCode": 200 + }, + "input": { + "shape": "CreateBackendRequest" + }, + "output": { + "shape": "CreateBackendResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

This operation creates a backend for an Amplify app. Backends are automatically created at the time of app creation.

" + }, + "CreateBackendAPI": { + "name": "CreateBackendAPI", + "http": { + "method": "POST", + "requestUri": "/backend/{appId}/api", + "responseCode": 200 + }, + "input": { + "shape": "CreateBackendAPIRequest" + }, + "output": { + "shape": "CreateBackendAPIResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

Creates a new backend API resource.

" + }, + "CreateBackendAuth": { + "name": "CreateBackendAuth", + "http": { + "method": "POST", + "requestUri": "/backend/{appId}/auth", + "responseCode": 200 + }, + "input": { + "shape": "CreateBackendAuthRequest" + }, + "output": { + "shape": "CreateBackendAuthResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

Creates a new backend authentication resource.

" + }, + "CreateBackendConfig": { + "name": "CreateBackendConfig", + "http": { + "method": "POST", + "requestUri": "/backend/{appId}/config", + "responseCode": 200 + }, + "input": { + "shape": "CreateBackendConfigRequest" + }, + "output": { + "shape": "CreateBackendConfigResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

Creates a config object for a backend.

" + }, + "CreateToken": { + "name": "CreateToken", + "http": { + "method": "POST", + "requestUri": "/backend/{appId}/challenge", + "responseCode": 200 + }, + "input": { + "shape": "CreateTokenRequest" + }, + "output": { + "shape": "CreateTokenResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

Generates a one time challenge code to authenticate a user into your Amplify Admin UI.

" + }, + "DeleteBackend": { + "name": "DeleteBackend", + "http": { + "method": "POST", + "requestUri": "/backend/{appId}/environments/{backendEnvironmentName}/remove", + "responseCode": 200 + }, + "input": { + "shape": "DeleteBackendRequest" + }, + "output": { + "shape": "DeleteBackendResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

Removes an existing environment from your Ampify project.

" + }, + "DeleteBackendAPI": { + "name": "DeleteBackendAPI", + "http": { + "method": "POST", + "requestUri": "/backend/{appId}/api/{backendEnvironmentName}/remove", + "responseCode": 200 + }, + "input": { + "shape": "DeleteBackendAPIRequest" + }, + "output": { + "shape": "DeleteBackendAPIResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

Deletes an existing backend API resource.

" + }, + "DeleteBackendAuth": { + "name": "DeleteBackendAuth", + "http": { + "method": "POST", + "requestUri": "/backend/{appId}/auth/{backendEnvironmentName}/remove", + "responseCode": 200 + }, + "input": { + "shape": "DeleteBackendAuthRequest" + }, + "output": { + "shape": "DeleteBackendAuthResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

Deletes an existing backend authentication resource.

" + }, + "DeleteToken": { + "name": "DeleteToken", + "http": { + "method": "POST", + "requestUri": "/backend/{appId}/challenge/{sessionId}/remove", + "responseCode": 200 + }, + "input": { + "shape": "DeleteTokenRequest" + }, + "output": { + "shape": "DeleteTokenResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

Deletes the challenge token based on the given appId and sessionId.

" + }, + "GenerateBackendAPIModels": { + "name": "GenerateBackendAPIModels", + "http": { + "method": "POST", + "requestUri": "/backend/{appId}/api/{backendEnvironmentName}/generateModels", + "responseCode": 200 + }, + "input": { + "shape": "GenerateBackendAPIModelsRequest" + }, + "output": { + "shape": "GenerateBackendAPIModelsResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

Generates a model schema for an existing backend API resource.

" + }, + "GetBackend": { + "name": "GetBackend", + "http": { + "method": "POST", + "requestUri": "/backend/{appId}/details", + "responseCode": 200 + }, + "input": { + "shape": "GetBackendRequest" + }, + "output": { + "shape": "GetBackendResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

Provides project level details for your Amplify UI project.

" + }, + "GetBackendAPI": { + "name": "GetBackendAPI", + "http": { + "method": "POST", + "requestUri": "/backend/{appId}/api/{backendEnvironmentName}/details", + "responseCode": 200 + }, + "input": { + "shape": "GetBackendAPIRequest" + }, + "output": { + "shape": "GetBackendAPIResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

Gets the details for a backend api.

" + }, + "GetBackendAPIModels": { + "name": "GetBackendAPIModels", + "http": { + "method": "POST", + "requestUri": "/backend/{appId}/api/{backendEnvironmentName}/getModels", + "responseCode": 200 + }, + "input": { + "shape": "GetBackendAPIModelsRequest" + }, + "output": { + "shape": "GetBackendAPIModelsResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

Generates a model schema for existing backend API resource.

" + }, + "GetBackendAuth": { + "name": "GetBackendAuth", + "http": { + "method": "POST", + "requestUri": "/backend/{appId}/auth/{backendEnvironmentName}/details", + "responseCode": 200 + }, + "input": { + "shape": "GetBackendAuthRequest" + }, + "output": { + "shape": "GetBackendAuthResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

Gets a backend auth details.

" + }, + "GetBackendJob": { + "name": "GetBackendJob", + "http": { + "method": "GET", + "requestUri": "/backend/{appId}/job/{backendEnvironmentName}/{jobId}", + "responseCode": 200 + }, + "input": { + "shape": "GetBackendJobRequest" + }, + "output": { + "shape": "GetBackendJobResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

Returns information about a specific job.

" + }, + "GetToken": { + "name": "GetToken", + "http": { + "method": "GET", + "requestUri": "/backend/{appId}/challenge/{sessionId}", + "responseCode": 200 + }, + "input": { + "shape": "GetTokenRequest" + }, + "output": { + "shape": "GetTokenResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

Gets the challenge token based on the given appId and sessionId.

" + }, + "ListBackendJobs": { + "name": "ListBackendJobs", + "http": { + "method": "POST", + "requestUri": "/backend/{appId}/job/{backendEnvironmentName}", + "responseCode": 200 + }, + "input": { + "shape": "ListBackendJobsRequest" + }, + "output": { + "shape": "ListBackendJobsResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

Lists the jobs for the backend of an Amplify app.

" + }, + "RemoveAllBackends": { + "name": "RemoveAllBackends", + "http": { + "method": "POST", + "requestUri": "/backend/{appId}/remove", + "responseCode": 200 + }, + "input": { + "shape": "RemoveAllBackendsRequest" + }, + "output": { + "shape": "RemoveAllBackendsResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

Removes all backend environments from your Amplify project.

" + }, + "RemoveBackendConfig": { + "name": "RemoveBackendConfig", + "http": { + "method": "POST", + "requestUri": "/backend/{appId}/config/remove", + "responseCode": 200 + }, + "input": { + "shape": "RemoveBackendConfigRequest" + }, + "output": { + "shape": "RemoveBackendConfigResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

Removes the AWS resources required to access the Amplify Admin UI.

" + }, + "UpdateBackendAPI": { + "name": "UpdateBackendAPI", + "http": { + "method": "POST", + "requestUri": "/backend/{appId}/api/{backendEnvironmentName}", + "responseCode": 200 + }, + "input": { + "shape": "UpdateBackendAPIRequest" + }, + "output": { + "shape": "UpdateBackendAPIResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

Updates an existing backend API resource.

" + }, + "UpdateBackendAuth": { + "name": "UpdateBackendAuth", + "http": { + "method": "POST", + "requestUri": "/backend/{appId}/auth/{backendEnvironmentName}", + "responseCode": 200 + }, + "input": { + "shape": "UpdateBackendAuthRequest" + }, + "output": { + "shape": "UpdateBackendAuthResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

Updates an existing backend authentication resource.

" + }, + "UpdateBackendConfig": { + "name": "UpdateBackendConfig", + "http": { + "method": "POST", + "requestUri": "/backend/{appId}/config/update", + "responseCode": 200 + }, + "input": { + "shape": "UpdateBackendConfigRequest" + }, + "output": { + "shape": "UpdateBackendConfigResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

Updates the AWS resources required to access the Amplify Admin UI.

" + }, + "UpdateBackendJob": { + "name": "UpdateBackendJob", + "http": { + "method": "POST", + "requestUri": "/backend/{appId}/job/{backendEnvironmentName}/{jobId}", + "responseCode": 200 + }, + "input": { + "shape": "UpdateBackendJobRequest" + }, + "output": { + "shape": "UpdateBackendJobResponse", + "documentation": "

200 response

" + }, + "errors": [ + { + "shape": "NotFoundException", + "documentation": "

404 response

" + }, + { + "shape": "GatewayTimeoutException", + "documentation": "

504 response

" + }, + { + "shape": "TooManyRequestsException", + "documentation": "

429 response

" + }, + { + "shape": "BadRequestException", + "documentation": "

400 response

" + } + ], + "documentation": "

Updates a specific job.

" + } + }, + "shapes": { + "AuthResources": { + "type": "string", + "enum": [ + "USER_POOL_ONLY", + "IDENTITY_POOL_AND_USER_POOL" + ] + }, + "BackendAPIAppSyncAuthSettings": { + "type": "structure", + "members": { + "CognitoUserPoolId": { + "shape": "__string", + "locationName": "cognitoUserPoolId", + "documentation": "

The Amazon Cognito user pool id, if Amazon Cognito was used as an authentication setting to access your data models.

" + }, + "Description": { + "shape": "__string", + "locationName": "description", + "documentation": "

The api key description for API_KEY, if it was used as an authentication mechanism to access your data models.

" + }, + "ExpirationTime": { + "shape": "__double", + "locationName": "expirationTime", + "documentation": "

The api key expiration time for API_KEY, if it was used as an authentication mechanism to access your data models.

" + }, + "OpenIDAuthTTL": { + "shape": "__string", + "locationName": "openIDAuthTTL", + "documentation": "

The expiry time for the OpenID authentication mechanism.

" + }, + "OpenIDClientId": { + "shape": "__string", + "locationName": "openIDClientId", + "documentation": "

The clientID for openID, if openID was used as an authentication setting to access your data models.

" + }, + "OpenIDIatTTL": { + "shape": "__string", + "locationName": "openIDIatTTL", + "documentation": "

The expiry time for the OpenID authentication mechanism.

" + }, + "OpenIDIssueURL": { + "shape": "__string", + "locationName": "openIDIssueURL", + "documentation": "

The openID issuer URL, if openID was used as an authentication setting to access your data models.

" + }, + "OpenIDProviderName": { + "shape": "__string", + "locationName": "openIDProviderName", + "documentation": "

The open id provider name, if openID was used as an authentication mechanism to access your data models.

" + } + }, + "documentation": "

The authentication settings for accessing provisioned data models in your Amplify project.

" + }, + "BackendAPIAuthType": { + "type": "structure", + "members": { + "Mode": { + "shape": "Mode", + "locationName": "mode", + "documentation": "

Describes the authentication mode.

" + }, + "Settings": { + "shape": "BackendAPIAppSyncAuthSettings", + "locationName": "settings", + "documentation": "

Describes settings for the authentication mode.

" + } + }, + "documentation": "

Describes the auth types for your configured data models.

" + }, + "BackendAPICodegenReqObj": { + "type": "structure", + "members": { + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of this resource.

" + } + }, + "documentation": "

The request object for this operation.

", + "required": [ + "ResourceName" + ] + }, + "BackendAPICodegenRespObj": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

The name of the operation.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + } + }, + "documentation": "

The response object sent when a backend is created.

", + "required": [ + "AppId", + "BackendEnvironmentName" + ] + }, + "BackendAPIConflictResolution": { + "type": "structure", + "members": { + "ResolutionStrategy": { + "shape": "ResolutionStrategy", + "locationName": "resolutionStrategy", + "documentation": "

The strategy for conflict resolution.

" + } + }, + "documentation": "

Describes the conflict resolution configuration for your data model configured in your Amplify project.

" + }, + "BackendAPIReqObj": { + "type": "structure", + "members": { + "ResourceConfig": { + "shape": "BackendAPIResourceConfig", + "locationName": "resourceConfig", + "documentation": "

Defines the resource configuration for the data model in your Amplify project.

" + }, + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of this resource.

" + } + }, + "documentation": "

The request object for this operation.

", + "required": [ + "ResourceName" + ] + }, + "BackendAPIResourceConfig": { + "type": "structure", + "members": { + "AdditionalAuthTypes": { + "shape": "ListOfBackendAPIAuthType", + "locationName": "additionalAuthTypes", + "documentation": "

Addition authentication methods used to interact with your data models.

" + }, + "ApiName": { + "shape": "__string", + "locationName": "apiName", + "documentation": "

The API name used to interact with the data model, configured as a part of the amplify project.

" + }, + "ConflictResolution": { + "shape": "BackendAPIConflictResolution", + "locationName": "conflictResolution", + "documentation": "

The conflict resoultion strategy for your data stored in the data models.

" + }, + "DefaultAuthType": { + "shape": "BackendAPIAuthType", + "locationName": "defaultAuthType", + "documentation": "

The default authentication type for interacting with the configured data models in your amplify project.

" + }, + "Service": { + "shape": "__string", + "locationName": "service", + "documentation": "

The service used to provision and interact with the data model.

" + }, + "TransformSchema": { + "shape": "__string", + "locationName": "transformSchema", + "documentation": "

The definition of the data model in the annotated transform of the graphql schema.

" + } + }, + "documentation": "

The resource config for the data model,configured as a part of the Amplify project.

" + }, + "BackendAPIRespObj": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

The name of the operation.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + } + }, + "documentation": "

The response object sent when a backend is created.

", + "required": [ + "AppId", + "BackendEnvironmentName" + ] + }, + "BackendAuthRespObj": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

The name of the operation.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + } + }, + "documentation": "

The response object for this operation.

", + "required": [ + "AppId", + "BackendEnvironmentName" + ] + }, + "BackendAuthSocialProviderConfig": { + "type": "structure", + "members": { + "ClientId": { + "shape": "__string", + "locationName": "client_id", + "documentation": "

Describes the client_id which can be obtained from the third party social federation provider.

" + }, + "ClientSecret": { + "shape": "__string", + "locationName": "client_secret", + "documentation": "

Describes the client_secret which can be obtained from third party social federation providers.

" + } + }, + "documentation": "

Describes third party social federation configurations for allowing your app users to sign in using OAuth.

" + }, + "BackendConfigRespObj": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendManagerAppId": { + "shape": "__string", + "locationName": "backendManagerAppId", + "documentation": "

The app ID for the backend manager.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "LoginAuthConfig": { + "shape": "LoginAuthConfigReqObj", + "locationName": "loginAuthConfig", + "documentation": "

Describes the Amazon Cognito configurations for the Admin UI auth resource to login with.

" + } + }, + "documentation": "

The response object for this operation.

" + }, + "BackendJobReqObj": { + "type": "structure", + "members": { + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

Filters the list of response objects to only include those with the specified operation name.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

Filters the list of response objects to only include those with the specified status.

" + } + }, + "documentation": "

The request object for this operation.

" + }, + "BackendJobRespObj": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "CreateTime": { + "shape": "__string", + "locationName": "createTime", + "documentation": "

The time when the job was created.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

The name of the operation.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + }, + "UpdateTime": { + "shape": "__string", + "locationName": "updateTime", + "documentation": "

The time when the job was last updated.

" + } + }, + "documentation": "

The response object for this operation.

", + "required": [ + "AppId", + "BackendEnvironmentName" + ] + }, + "BadRequestException": { + "type": "structure", + "members": { + "Message": { + "shape": "__string", + "locationName": "message", + "documentation": "

An error message to inform that the request has failed.

" + } + }, + "documentation": "

An error returned if a request is not formed properly.

", + "exception": true, + "error": { + "httpStatusCode": 400 + } + }, + "CloneBackendReqObj": { + "type": "structure", + "members": { + "TargetEnvironmentName": { + "shape": "__string", + "locationName": "targetEnvironmentName", + "documentation": "

The name of the destination backend environment to be created.

" + } + }, + "documentation": "

The request object for this operation.

", + "required": [ + "TargetEnvironmentName" + ] + }, + "CloneBackendRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "location": "uri", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "TargetEnvironmentName": { + "shape": "__string", + "locationName": "targetEnvironmentName", + "documentation": "

The name of the destination backend environment to be created.

" + } + }, + "documentation": "

The request body for CloneBackend.

", + "required": [ + "AppId", + "BackendEnvironmentName", + "TargetEnvironmentName" + ] + }, + "CloneBackendRespObj": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

The name of the operation.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + } + }, + "documentation": "

The response object sent when a backend is created.

", + "required": [ + "AppId", + "BackendEnvironmentName" + ] + }, + "CloneBackendResponse": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

The name of the operation.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + } + } + }, + "CreateBackendAPIReqObj": { + "type": "structure", + "members": { + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "ResourceConfig": { + "shape": "BackendAPIResourceConfig", + "locationName": "resourceConfig", + "documentation": "

The resource configuration for this request.

" + }, + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of this resource.

" + } + }, + "documentation": "

The request object for this operation.

", + "required": [ + "ResourceName", + "BackendEnvironmentName", + "ResourceConfig" + ] + }, + "CreateBackendAPIRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "ResourceConfig": { + "shape": "BackendAPIResourceConfig", + "locationName": "resourceConfig", + "documentation": "

The resource configuration for this request.

" + }, + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of this resource.

" + } + }, + "documentation": "

The request body for CreateBackendAPI.

", + "required": [ + "AppId", + "ResourceName", + "BackendEnvironmentName", + "ResourceConfig" + ] + }, + "CreateBackendAPIResponse": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

The name of the operation.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + } + } + }, + "CreateBackendAuthForgotPasswordConfig": { + "type": "structure", + "members": { + "DeliveryMethod": { + "shape": "DeliveryMethod", + "locationName": "deliveryMethod", + "documentation": "

Describes which mode to use (either SMS or email) to deliver messages to app users that want to recover their password.

" + }, + "EmailSettings": { + "shape": "EmailSettings", + "locationName": "emailSettings", + "documentation": "

The configuration for the email sent when an app user forgets their password.

" + }, + "SmsSettings": { + "shape": "SmsSettings", + "locationName": "smsSettings", + "documentation": "

The configuration for the SMS message sent when an app user forgets their password.

" + } + }, + "documentation": "

Describes the forgot password policy for authenticating into the Amlify app.

", + "required": [ + "DeliveryMethod" + ] + }, + "CreateBackendAuthIdentityPoolConfig": { + "type": "structure", + "members": { + "IdentityPoolName": { + "shape": "__string", + "locationName": "identityPoolName", + "documentation": "

Name of the identity pool used for authorization.

" + }, + "UnauthenticatedLogin": { + "shape": "__boolean", + "locationName": "unauthenticatedLogin", + "documentation": "

Set to true or false based on whether you want to enable guest authorization to your Amplify app.

" + } + }, + "documentation": "

Describes authorization configurations for the auth resources, configures as a part of your Amplify project.

", + "required": [ + "UnauthenticatedLogin", + "IdentityPoolName" + ] + }, + "CreateBackendAuthMFAConfig": { + "type": "structure", + "members": { + "MFAMode": { + "shape": "MFAMode", + "documentation": "

Describes whether MFA should be [ON, OFF, OPTIONAL] for authentication in your Amplify project.

" + }, + "Settings": { + "shape": "Settings", + "locationName": "settings", + "documentation": "

Describes the configuration settings and methods for your Amplify app users to use MFA.

" + } + }, + "documentation": "

Describes whether multi-factor authentication policies should be applied for your Amazon Cognito user pool configured as a part of your Amplify project.

", + "required": [ + "MFAMode" + ] + }, + "CreateBackendAuthOAuthConfig": { + "type": "structure", + "members": { + "DomainPrefix": { + "shape": "__string", + "locationName": "domainPrefix", + "documentation": "

The domain prefix for your Amplify app.

" + }, + "OAuthGrantType": { + "shape": "OAuthGrantType", + "locationName": "oAuthGrantType", + "documentation": "

The OAuth grant type which you use to allow app users to authenticate from your Amplify app.

" + }, + "OAuthScopes": { + "shape": "ListOfOAuthScopesElement", + "locationName": "oAuthScopes", + "documentation": "

List of OAuth related flows which use to allow your app users to authenticate from your Amplify app.

" + }, + "RedirectSignInURIs": { + "shape": "ListOf__string", + "locationName": "redirectSignInURIs", + "documentation": "

The redirected URI for sigining into your Amplify app.

" + }, + "RedirectSignOutURIs": { + "shape": "ListOf__string", + "locationName": "redirectSignOutURIs", + "documentation": "

Redirect URLs used by OAuth when a user signs out of an Amplify app.

" + }, + "SocialProviderSettings": { + "shape": "SocialProviderSettings", + "locationName": "socialProviderSettings", + "documentation": "

The settings for using the social providers for access to your Amplify app.

" + } + }, + "documentation": "

Creates the OAuth configuration for your Amplify project.

", + "required": [ + "RedirectSignOutURIs", + "RedirectSignInURIs", + "OAuthGrantType", + "OAuthScopes" + ] + }, + "CreateBackendAuthPasswordPolicyConfig": { + "type": "structure", + "members": { + "AdditionalConstraints": { + "shape": "ListOfAdditionalConstraintsElement", + "locationName": "additionalConstraints", + "documentation": "

Additional constraints for the pasword used to access the backend of your Amplify project.

" + }, + "MinimumLength": { + "shape": "__double", + "locationName": "minimumLength", + "documentation": "

The minimum length of password used to access the backend of your Amplify project.

" + } + }, + "documentation": "

The password policy configuration for the backend to your Amplify project.

", + "required": [ + "MinimumLength" + ] + }, + "CreateBackendAuthReqObj": { + "type": "structure", + "members": { + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "ResourceConfig": { + "shape": "CreateBackendAuthResourceConfig", + "locationName": "resourceConfig", + "documentation": "

The resource configuration for this request object.

" + }, + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of this resource.

" + } + }, + "documentation": "

The request object for this operation.

", + "required": [ + "ResourceName", + "BackendEnvironmentName", + "ResourceConfig" + ] + }, + "CreateBackendAuthRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "ResourceConfig": { + "shape": "CreateBackendAuthResourceConfig", + "locationName": "resourceConfig", + "documentation": "

The resource configuration for this request object.

" + }, + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of this resource.

" + } + }, + "documentation": "

The request body for CreateBackendAuth.

", + "required": [ + "AppId", + "ResourceName", + "BackendEnvironmentName", + "ResourceConfig" + ] + }, + "CreateBackendAuthResourceConfig": { + "type": "structure", + "members": { + "AuthResources": { + "shape": "AuthResources", + "locationName": "authResources", + "documentation": "

Defines whether you want to configure only authentication or both authentication and authorization settings.

" + }, + "IdentityPoolConfigs": { + "shape": "CreateBackendAuthIdentityPoolConfig", + "locationName": "identityPoolConfigs", + "documentation": "

Describes the authorization configuration for the Amazon Cognito identity pool, provisioned as a part of your auth resource in the Amplify project.

" + }, + "Service": { + "shape": "Service", + "locationName": "service", + "documentation": "

Defines the service name to use when configuring an authentication resource in your Amplify project.

" + }, + "UserPoolConfigs": { + "shape": "CreateBackendAuthUserPoolConfig", + "locationName": "userPoolConfigs", + "documentation": "

Describes authentication configuration for the Amazon Cognito user pool, provisioned as a part of your auth resource in the Amplify project.

" + } + }, + "documentation": "

Defines the resource configuration when creating an auth resource in your Amplify project.

", + "required": [ + "AuthResources", + "UserPoolConfigs", + "Service" + ] + }, + "CreateBackendAuthResponse": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

The name of the operation.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + } + } + }, + "CreateBackendAuthUserPoolConfig": { + "type": "structure", + "members": { + "ForgotPassword": { + "shape": "CreateBackendAuthForgotPasswordConfig", + "locationName": "forgotPassword", + "documentation": "

Describes the forgotten password policy for your Amazon Cognito user pool, configured as a part of your Amplify project.

" + }, + "Mfa": { + "shape": "CreateBackendAuthMFAConfig", + "locationName": "mfa", + "documentation": "

Describes whether multi-factor authentication policies should be applied for your Amazon Cognito user pool configured as a part of your Amplify project.

" + }, + "OAuth": { + "shape": "CreateBackendAuthOAuthConfig", + "locationName": "oAuth", + "documentation": "

Describes the OAuth policy and rules for your Amazon Cognito user pool, configured as a part of your Amplify project.

" + }, + "PasswordPolicy": { + "shape": "CreateBackendAuthPasswordPolicyConfig", + "locationName": "passwordPolicy", + "documentation": "

Describes the password policy for your Amazon Cognito user pool, configured as a part of your Amplify project.

" + }, + "RequiredSignUpAttributes": { + "shape": "ListOfRequiredSignUpAttributesElement", + "locationName": "requiredSignUpAttributes", + "documentation": "

The required attributes to sign up new users in the user pool.

" + }, + "SignInMethod": { + "shape": "SignInMethod", + "locationName": "signInMethod", + "documentation": "

Describes the sign-in methods that your Amplify app users to login using the Amazon Cognito user pool, configured as a part of your Amplify project.

" + }, + "UserPoolName": { + "shape": "__string", + "locationName": "userPoolName", + "documentation": "

The Amazon Cognito user pool name.

" + } + }, + "documentation": "

Describes the Amazon Cognito user pool configuration for the auth resource to be configured for your Amplify project.

", + "required": [ + "RequiredSignUpAttributes", + "SignInMethod", + "UserPoolName" + ] + }, + "CreateBackendConfigReqObj": { + "type": "structure", + "members": { + "BackendManagerAppId": { + "shape": "__string", + "locationName": "backendManagerAppId", + "documentation": "

The app ID for the backend manager.

" + } + }, + "documentation": "

The request object for this operation.

" + }, + "CreateBackendConfigRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendManagerAppId": { + "shape": "__string", + "locationName": "backendManagerAppId", + "documentation": "

The app ID for the backend manager.

" + } + }, + "documentation": "

The request body for CreateBackendConfig.

", + "required": [ + "AppId" + ] + }, + "CreateBackendConfigRespObj": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + } + }, + "documentation": "

The response object for this operation.

", + "required": [ + "AppId" + ] + }, + "CreateBackendConfigResponse": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + } + } + }, + "CreateBackendReqObj": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "AppName": { + "shape": "__string", + "locationName": "appName", + "documentation": "

The name of the app.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "ResourceConfig": { + "shape": "ResourceConfig", + "locationName": "resourceConfig", + "documentation": "

The resource configuration for the create backend request.

" + }, + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of the resource.

" + } + }, + "documentation": "

The request object for this operation.

", + "required": [ + "AppId", + "BackendEnvironmentName", + "AppName" + ] + }, + "CreateBackendRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "AppName": { + "shape": "__string", + "locationName": "appName", + "documentation": "

The name of the app.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "ResourceConfig": { + "shape": "ResourceConfig", + "locationName": "resourceConfig", + "documentation": "

The resource configuration for the create backend request.

" + }, + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of the resource.

" + } + }, + "documentation": "

The request body for CreateBackend.

", + "required": [ + "AppId", + "BackendEnvironmentName", + "AppName" + ] + }, + "CreateBackendRespObj": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

The name of the operation.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + } + }, + "documentation": "

The response object sent when a backend is created.

", + "required": [ + "AppId", + "BackendEnvironmentName" + ] + }, + "CreateBackendResponse": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

The name of the operation.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + } + } + }, + "CreateTokenRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + } + }, + "required": [ + "AppId" + ] + }, + "CreateTokenRespObj": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "ChallengeCode": { + "shape": "__string", + "locationName": "challengeCode", + "documentation": "

One time challenge code for authenticating into Amplify Admin UI.

" + }, + "SessionId": { + "shape": "__string", + "locationName": "sessionId", + "documentation": "

A unique identifier provided when creating a new challenge token.

" + }, + "Ttl": { + "shape": "__string", + "locationName": "ttl", + "documentation": "

The expiry time for the one time generated token code.

" + } + }, + "documentation": "

The response object for this operation.

", + "required": [ + "AppId", + "Ttl", + "SessionId", + "ChallengeCode" + ] + }, + "CreateTokenResponse": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "ChallengeCode": { + "shape": "__string", + "locationName": "challengeCode", + "documentation": "

One time challenge code for authenticating into Amplify Admin UI.

" + }, + "SessionId": { + "shape": "__string", + "locationName": "sessionId", + "documentation": "

A unique identifier provided when creating a new challenge token.

" + }, + "Ttl": { + "shape": "__string", + "locationName": "ttl", + "documentation": "

The expiry time for the one time generated token code.

" + } + } + }, + "DeleteBackendAPIRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "location": "uri", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "ResourceConfig": { + "shape": "BackendAPIResourceConfig", + "locationName": "resourceConfig", + "documentation": "

Defines the resource configuration for the data model in your Amplify project.

" + }, + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of this resource.

" + } + }, + "documentation": "

The request body for DeleteBackendAPI.

", + "required": [ + "AppId", + "BackendEnvironmentName", + "ResourceName" + ] + }, + "DeleteBackendAPIResponse": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

The name of the operation.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + } + } + }, + "DeleteBackendAuthRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "location": "uri", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of this resource.

" + } + }, + "documentation": "

The request body for DeleteBackendAuth.

", + "required": [ + "AppId", + "BackendEnvironmentName", + "ResourceName" + ] + }, + "DeleteBackendAuthResponse": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

The name of the operation.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + } + } + }, + "DeleteBackendRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "location": "uri", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + } + }, + "required": [ + "AppId", + "BackendEnvironmentName" + ] + }, + "DeleteBackendRespObj": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

The name of the operation.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + } + }, + "documentation": "

The returned object for a request to delete a backend.

", + "required": [ + "AppId", + "BackendEnvironmentName" + ] + }, + "DeleteBackendResponse": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

The name of the operation.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + } + } + }, + "DeleteTokenRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "SessionId": { + "shape": "__string", + "location": "uri", + "locationName": "sessionId", + "documentation": "

The session Id.

" + } + }, + "required": [ + "SessionId", + "AppId" + ] + }, + "DeleteTokenRespObj": { + "type": "structure", + "members": { + "IsSuccess": { + "shape": "__boolean", + "locationName": "isSuccess", + "documentation": "

Indicates whether the request succeeded or failed.

" + } + }, + "documentation": "

The response object for this operation.

", + "required": [ + "IsSuccess" + ] + }, + "DeleteTokenResponse": { + "type": "structure", + "members": { + "IsSuccess": { + "shape": "__boolean", + "locationName": "isSuccess", + "documentation": "

Indicates whether the request succeeded or failed.

" + } + } + }, + "DeliveryMethod": { + "type": "string", + "enum": [ + "EMAIL", + "SMS" + ] + }, + "EmailSettings": { + "type": "structure", + "members": { + "EmailMessage": { + "shape": "__string", + "locationName": "emailMessage", + "documentation": "

The body of the email.

" + }, + "EmailSubject": { + "shape": "__string", + "locationName": "emailSubject", + "documentation": "

The subject of the email.

" + } + }, + "documentation": "

The configuration for the email sent when an app user forgets their password.

" + }, + "GatewayTimeoutException": { + "type": "structure", + "members": { + "Message": { + "shape": "__string", + "locationName": "message", + "documentation": "

An error message to inform that the request has failed.

" + } + }, + "documentation": "

An error returned if there's a temporary issue with the service.

", + "exception": true, + "error": { + "httpStatusCode": 504 + } + }, + "GenerateBackendAPIModelsRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "location": "uri", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of this resource.

" + } + }, + "documentation": "

The request body for GenerateBackendAPIModels.

", + "required": [ + "AppId", + "BackendEnvironmentName", + "ResourceName" + ] + }, + "GenerateBackendAPIModelsResponse": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

The name of the operation.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + } + } + }, + "GetBackendAPICodegenRespObj": { + "type": "structure", + "members": { + "Models": { + "shape": "__string", + "locationName": "models", + "documentation": "

Stringified JSON of the datastore model.

" + }, + "Status": { + "shape": "Status", + "locationName": "status", + "documentation": "

The current status of the request.

" + } + }, + "documentation": "

The response object for this operation.

" + }, + "GetBackendAPIModelsRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "location": "uri", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of this resource.

" + } + }, + "documentation": "

The request body for GetBackendAPIModels.

", + "required": [ + "AppId", + "BackendEnvironmentName", + "ResourceName" + ] + }, + "GetBackendAPIModelsResponse": { + "type": "structure", + "members": { + "Models": { + "shape": "__string", + "locationName": "models", + "documentation": "

Stringified JSON of the datastore model.

" + }, + "Status": { + "shape": "Status", + "locationName": "status", + "documentation": "

The current status of the request.

" + } + } + }, + "GetBackendAPIRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "location": "uri", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "ResourceConfig": { + "shape": "BackendAPIResourceConfig", + "locationName": "resourceConfig", + "documentation": "

Defines the resource configuration for the data model in your Amplify project.

" + }, + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of this resource.

" + } + }, + "documentation": "

The request body for GetBackendAPI.

", + "required": [ + "AppId", + "BackendEnvironmentName", + "ResourceName" + ] + }, + "GetBackendAPIRespObj": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "ResourceConfig": { + "shape": "BackendAPIResourceConfig", + "locationName": "resourceConfig", + "documentation": "

The resource configuration for this response object.

" + }, + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of this resource.

" + } + }, + "documentation": "

The response object for this operation.

", + "required": [ + "AppId", + "BackendEnvironmentName" + ] + }, + "GetBackendAPIResponse": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "ResourceConfig": { + "shape": "BackendAPIResourceConfig", + "locationName": "resourceConfig", + "documentation": "

The resource configuration for this response object.

" + }, + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of this resource.

" + } + } + }, + "GetBackendAuthReqObj": { + "type": "structure", + "members": { + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of this resource.

" + } + }, + "documentation": "

The request object for this operation.

", + "required": [ + "ResourceName" + ] + }, + "GetBackendAuthRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "location": "uri", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of this resource.

" + } + }, + "documentation": "

The request body for GetBackendAuth.

", + "required": [ + "AppId", + "BackendEnvironmentName", + "ResourceName" + ] + }, + "GetBackendAuthRespObj": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "ResourceConfig": { + "shape": "CreateBackendAuthResourceConfig", + "locationName": "resourceConfig", + "documentation": "

The resource configuration for authorization requests to the backend of your Amplify project.

" + }, + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of this resource.

" + } + }, + "documentation": "

The response object for this operation.

", + "required": [ + "AppId", + "BackendEnvironmentName" + ] + }, + "GetBackendAuthResponse": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "ResourceConfig": { + "shape": "CreateBackendAuthResourceConfig", + "locationName": "resourceConfig", + "documentation": "

The resource configuration for authorization requests to the backend of your Amplify project.

" + }, + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of this resource.

" + } + } + }, + "GetBackendJobRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "location": "uri", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "JobId": { + "shape": "__string", + "location": "uri", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + } + }, + "required": [ + "AppId", + "BackendEnvironmentName", + "JobId" + ] + }, + "GetBackendJobResponse": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "CreateTime": { + "shape": "__string", + "locationName": "createTime", + "documentation": "

The time when the job was created.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

The name of the operation.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + }, + "UpdateTime": { + "shape": "__string", + "locationName": "updateTime", + "documentation": "

The time when the job was last updated.

" + } + } + }, + "GetBackendReqObj": { + "type": "structure", + "members": { + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + } + }, + "documentation": "

The request object for this operation.

" + }, + "GetBackendRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + } + }, + "documentation": "

The request body for GetBackend.

", + "required": [ + "AppId" + ] + }, + "GetBackendRespObj": { + "type": "structure", + "members": { + "AmplifyMetaConfig": { + "shape": "__string", + "locationName": "amplifyMetaConfig", + "documentation": "

A stringified version of the current configs for your Amplify project.

" + }, + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "AppName": { + "shape": "__string", + "locationName": "appName", + "documentation": "

The name of the app.

" + }, + "BackendEnvironmentList": { + "shape": "ListOf__string", + "locationName": "backendEnvironmentList", + "documentation": "

A list of backend environments in an array.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + } + }, + "documentation": "

The response object for this operation.

", + "required": [ + "AppId" + ] + }, + "GetBackendResponse": { + "type": "structure", + "members": { + "AmplifyMetaConfig": { + "shape": "__string", + "locationName": "amplifyMetaConfig", + "documentation": "

A stringified version of the current configs for your Amplify project.

" + }, + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "AppName": { + "shape": "__string", + "locationName": "appName", + "documentation": "

The name of the app.

" + }, + "BackendEnvironmentList": { + "shape": "ListOf__string", + "locationName": "backendEnvironmentList", + "documentation": "

A list of backend environments in an array.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + } + } + }, + "GetTokenRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "SessionId": { + "shape": "__string", + "location": "uri", + "locationName": "sessionId", + "documentation": "

The session Id.

" + } + }, + "required": [ + "SessionId", + "AppId" + ] + }, + "GetTokenRespObj": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "ChallengeCode": { + "shape": "__string", + "locationName": "challengeCode", + "documentation": "

The one time challenge code for authenticating into Amplify Admin UI.

" + }, + "SessionId": { + "shape": "__string", + "locationName": "sessionId", + "documentation": "

A unique identifier provided when creating a new challenge token.

" + }, + "Ttl": { + "shape": "__string", + "locationName": "ttl", + "documentation": "

The expiry time for the one time generated token code.

" + } + }, + "documentation": "

The response object for this operation.

", + "required": [ + "AppId", + "Ttl", + "SessionId", + "ChallengeCode" + ] + }, + "GetTokenResponse": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "ChallengeCode": { + "shape": "__string", + "locationName": "challengeCode", + "documentation": "

The one time challenge code for authenticating into Amplify Admin UI.

" + }, + "SessionId": { + "shape": "__string", + "locationName": "sessionId", + "documentation": "

A unique identifier provided when creating a new challenge token.

" + }, + "Ttl": { + "shape": "__string", + "locationName": "ttl", + "documentation": "

The expiry time for the one time generated token code.

" + } + } + }, + "InternalServiceException": { + "type": "structure", + "members": { + "Message": { + "shape": "__string", + "locationName": "message", + "documentation": "

An error message to inform that the request has failed.

" + } + }, + "documentation": "

An error returned if there's a temporary issue with the service.

" + }, + "LimitExceededException": { + "type": "structure", + "members": { + "LimitType": { + "shape": "__string", + "locationName": "limitType", + "documentation": "

The type of limit that was exceeded.

" + }, + "Message": { + "shape": "__string", + "locationName": "message", + "documentation": "

An error message to inform that the request has failed.

" + } + }, + "documentation": "

An error that is returned when a limit of a specific type has been exceeded.

" + }, + "ListBackendJobReqObj": { + "type": "structure", + "members": { + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "MaxResults": { + "shape": "__integerMin1Max25", + "locationName": "maxResults", + "documentation": "

The maximum number of results you want in the response.

" + }, + "NextToken": { + "shape": "__string", + "locationName": "nextToken", + "documentation": "

The token for the next set of results.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

Filters the list of response objects to only include those with the specified operation name.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

Filters the list of response objects to only include those with the specified status.

" + } + }, + "documentation": "

The request object for this operation.

" + }, + "ListBackendJobRespObj": { + "type": "structure", + "members": { + "Jobs": { + "shape": "ListOfBackendJobRespObj", + "locationName": "jobs", + "documentation": "

An array of jobs and their properties.

" + }, + "NextToken": { + "shape": "__string", + "locationName": "nextToken", + "documentation": "

The token for the next set of results.

" + } + }, + "documentation": "

The returned list of backend jobs.

" + }, + "ListBackendJobsRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "location": "uri", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "MaxResults": { + "shape": "__integerMin1Max25", + "locationName": "maxResults", + "documentation": "

The maximum number of results you want in the response.

" + }, + "NextToken": { + "shape": "__string", + "locationName": "nextToken", + "documentation": "

The token for the next set of results.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

Filters the list of response objects to only include those with the specified operation name.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

Filters the list of response objects to only include those with the specified status.

" + } + }, + "documentation": "

The request body for ListBackendJobs.

", + "required": [ + "AppId", + "BackendEnvironmentName" + ] + }, + "ListBackendJobsResponse": { + "type": "structure", + "members": { + "Jobs": { + "shape": "ListOfBackendJobRespObj", + "locationName": "jobs", + "documentation": "

An array of jobs and their properties.

" + }, + "NextToken": { + "shape": "__string", + "locationName": "nextToken", + "documentation": "

The token for the next set of results.

" + } + } + }, + "LoginAuthConfigReqObj": { + "type": "structure", + "members": { + "AwsCognitoIdentityPoolId": { + "shape": "__string", + "locationName": "aws_cognito_identity_pool_id", + "documentation": "

Amazon Cognito identitypool id used for the Amplify Admin UI login authorization.

" + }, + "AwsCognitoRegion": { + "shape": "__string", + "locationName": "aws_cognito_region", + "documentation": "

The AWS Region for the the Amplify Admin login.

" + }, + "AwsUserPoolsId": { + "shape": "__string", + "locationName": "aws_user_pools_id", + "documentation": "

The Amazon Cognito userpool id used for Amplify Admin UI login authentication.

" + }, + "AwsUserPoolsWebClientId": { + "shape": "__string", + "locationName": "aws_user_pools_web_client_id", + "documentation": "

The web client ID for the Amazon Cognito userpools.

" + } + }, + "documentation": "

The request object for this operation.

" + }, + "MFAMode": { + "type": "string", + "enum": [ + "ON", + "OFF", + "OPTIONAL" + ] + }, + "Mode": { + "type": "string", + "enum": [ + "API_KEY", + "AWS_IAM", + "AMAZON_COGNITO_USER_POOLS", + "OPENID_CONNECT" + ] + }, + "NotFoundException": { + "type": "structure", + "members": { + "Message": { + "shape": "__string", + "locationName": "message", + "documentation": "

An error message to inform that the request has failed.

" + }, + "ResourceType": { + "shape": "__string", + "locationName": "resourceType", + "documentation": "

The type of resource that wasn't found.

" + } + }, + "documentation": "

An error returned when a specific resource type is not found.

", + "exception": true, + "error": { + "httpStatusCode": 404 + } + }, + "OAuthGrantType": { + "type": "string", + "enum": [ + "CODE", + "IMPLICIT" + ] + }, + "RemoveAllBackendsReqObj": { + "type": "structure", + "members": { + "CleanAmplifyApp": { + "shape": "__boolean", + "locationName": "cleanAmplifyApp", + "documentation": "

Cleans up the Amplify Console app if this value is set to true.

" + } + }, + "documentation": "

The request object for this operation.

" + }, + "RemoveAllBackendsRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "CleanAmplifyApp": { + "shape": "__boolean", + "locationName": "cleanAmplifyApp", + "documentation": "

Cleans up the Amplify Console app if this value is set to true.

" + } + }, + "documentation": "

The request body for RemoveAllBackends.

", + "required": [ + "AppId" + ] + }, + "RemoveAllBackendsRespObj": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

The name of the operation.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + } + }, + "documentation": "

The response object for this operation.

", + "required": [ + "AppId" + ] + }, + "RemoveAllBackendsResponse": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

The name of the operation.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + } + } + }, + "RemoveBackendAuthReqObj": { + "type": "structure", + "members": { + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of this resource.

" + } + }, + "documentation": "

The request object for this operation.

", + "required": [ + "ResourceName" + ] + }, + "RemoveBackendConfigRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + } + }, + "required": [ + "AppId" + ] + }, + "RemoveBackendConfigRespObj": { + "type": "structure", + "members": { + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + } + }, + "documentation": "

The response object for this operation.

" + }, + "RemoveBackendConfigResponse": { + "type": "structure", + "members": { + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + } + } + }, + "ResolutionStrategy": { + "type": "string", + "enum": [ + "OPTIMISTIC_CONCURRENCY", + "LAMBDA", + "AUTOMERGE", + "NONE" + ] + }, + "ResourceConfig": { + "type": "structure", + "members": {}, + "documentation": "

Defines the resource configuration for the data model in your Amplify project.

" + }, + "Service": { + "type": "string", + "enum": [ + "COGNITO" + ] + }, + "Settings": { + "type": "structure", + "members": { + "MfaTypes": { + "shape": "ListOfMfaTypesElement", + "locationName": "mfaTypes", + "documentation": "

The supported MFA types

" + }, + "SmsMessage": { + "shape": "__string", + "locationName": "smsMessage", + "documentation": "

The body of the SMS message.

" + } + }, + "documentation": "

The settings of your MFA configuration for the backend of your Amplify project.

" + }, + "SignInMethod": { + "type": "string", + "enum": [ + "EMAIL", + "EMAIL_AND_PHONE_NUMBER", + "PHONE_NUMBER", + "USERNAME" + ] + }, + "SmsSettings": { + "type": "structure", + "members": { + "SmsMessage": { + "shape": "__string", + "locationName": "smsMessage", + "documentation": "

The body of the SMS message.

" + } + }, + "documentation": "

SMS settings for authentication.

" + }, + "SocialProviderSettings": { + "type": "structure", + "members": { + "Facebook": { + "shape": "BackendAuthSocialProviderConfig" + }, + "Google": { + "shape": "BackendAuthSocialProviderConfig" + }, + "LoginWithAmazon": { + "shape": "BackendAuthSocialProviderConfig" + } + }, + "documentation": "

The settings for using the social providers for access to your Amplify app.

" + }, + "Status": { + "type": "string", + "enum": [ + "LATEST", + "STALE" + ] + }, + "TooManyRequestsException": { + "type": "structure", + "members": { + "LimitType": { + "shape": "__string", + "locationName": "limitType", + "documentation": "

The type of limit that was exceeded.

" + }, + "Message": { + "shape": "__string", + "locationName": "message", + "documentation": "

An error message to inform that the request has failed.

" + } + }, + "documentation": "

An error that is returned when a limit of a specific type has been exceeded.

", + "exception": true, + "error": { + "httpStatusCode": 429 + } + }, + "UpdateBackendAPIRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "location": "uri", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "ResourceConfig": { + "shape": "BackendAPIResourceConfig", + "locationName": "resourceConfig", + "documentation": "

Defines the resource configuration for the data model in your Amplify project.

" + }, + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of this resource.

" + } + }, + "documentation": "

The request body for UpdateBackendAPI.

", + "required": [ + "AppId", + "BackendEnvironmentName", + "ResourceName" + ] + }, + "UpdateBackendAPIResponse": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

The name of the operation.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + } + } + }, + "UpdateBackendAuthForgotPasswordConfig": { + "type": "structure", + "members": { + "DeliveryMethod": { + "shape": "DeliveryMethod", + "locationName": "deliveryMethod", + "documentation": "

Describes which mode to use (either SMS or email) to deliver messages to app users that want to recover their password.

" + }, + "EmailSettings": { + "shape": "EmailSettings", + "locationName": "emailSettings", + "documentation": "

The configuration for the email sent when an app user forgets their password.

" + }, + "SmsSettings": { + "shape": "SmsSettings", + "locationName": "smsSettings", + "documentation": "

The configuration for the SMS message sent when an Amplify app user forgets their password.

" + } + }, + "documentation": "

Describes the forgot password policy for authenticating into the Amlify app.

" + }, + "UpdateBackendAuthIdentityPoolConfig": { + "type": "structure", + "members": { + "UnauthenticatedLogin": { + "shape": "__boolean", + "locationName": "unauthenticatedLogin", + "documentation": "

A boolean value which can be set to allow or disallow guest level authorization into your Amplify app.

" + } + }, + "documentation": "

Describes the authorization configuration for the Amazon Cognito identity pool, provisioned as a part of your auth resource in the Amplify project.

" + }, + "UpdateBackendAuthMFAConfig": { + "type": "structure", + "members": { + "MFAMode": { + "shape": "MFAMode", + "documentation": "

The MFA mode for the backend of your Amplify project.

" + }, + "Settings": { + "shape": "Settings", + "locationName": "settings", + "documentation": "

The settings of your MFA configuration for the backend of your Amplify project.

" + } + }, + "documentation": "

Updates the multi-factor authentication (MFA) configuration for the backend of your Amplify project.

" + }, + "UpdateBackendAuthOAuthConfig": { + "type": "structure", + "members": { + "DomainPrefix": { + "shape": "__string", + "locationName": "domainPrefix", + "documentation": "

The Amazon Cognito domain prefix used to create a hosted UI for authentication.

" + }, + "OAuthGrantType": { + "shape": "OAuthGrantType", + "locationName": "oAuthGrantType", + "documentation": "

The OAuth grant type to allow app users to authenticate from your Amplify app.

" + }, + "OAuthScopes": { + "shape": "ListOfOAuthScopesElement", + "locationName": "oAuthScopes", + "documentation": "

The list of OAuth related flows which can allow users to authenticate from your Amplify app.

" + }, + "RedirectSignInURIs": { + "shape": "ListOf__string", + "locationName": "redirectSignInURIs", + "documentation": "

Redirect URLs used by OAuth when a user signs in to an Amplify app.

" + }, + "RedirectSignOutURIs": { + "shape": "ListOf__string", + "locationName": "redirectSignOutURIs", + "documentation": "

Redirect URLs used by OAuth when a user signs out of an Amplify app.

" + }, + "SocialProviderSettings": { + "shape": "SocialProviderSettings", + "locationName": "socialProviderSettings", + "documentation": "

Describes third party social federation configurations for allowing your users to sign in with OAuth.

" + } + }, + "documentation": "

The OAuth configurations for authenticating users into your Amplify app.

" + }, + "UpdateBackendAuthPasswordPolicyConfig": { + "type": "structure", + "members": { + "AdditionalConstraints": { + "shape": "ListOfAdditionalConstraintsElement", + "locationName": "additionalConstraints", + "documentation": "

Describes additional constrains on password requirements to sign in into the auth resource, configured as a part of your Ampify project.

" + }, + "MinimumLength": { + "shape": "__double", + "locationName": "minimumLength", + "documentation": "

Describes the minimum length of password required to sign in into the auth resource, configured as a part of your Ampify project.

" + } + }, + "documentation": "

Describes the password policy for your Amazon Cognito user pool configured as a part of your Amplify project.

" + }, + "UpdateBackendAuthReqObj": { + "type": "structure", + "members": { + "ResourceConfig": { + "shape": "UpdateBackendAuthResourceConfig", + "locationName": "resourceConfig", + "documentation": "

The resource configuration for this request object.

" + }, + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of this resource.

" + } + }, + "documentation": "

The request object for this operation.

", + "required": [ + "ResourceName", + "ResourceConfig" + ] + }, + "UpdateBackendAuthRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "location": "uri", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "ResourceConfig": { + "shape": "UpdateBackendAuthResourceConfig", + "locationName": "resourceConfig", + "documentation": "

The resource configuration for this request object.

" + }, + "ResourceName": { + "shape": "__string", + "locationName": "resourceName", + "documentation": "

The name of this resource.

" + } + }, + "documentation": "

The request body for UpdateBackendAuth.

", + "required": [ + "AppId", + "BackendEnvironmentName", + "ResourceName", + "ResourceConfig" + ] + }, + "UpdateBackendAuthResourceConfig": { + "type": "structure", + "members": { + "AuthResources": { + "shape": "AuthResources", + "locationName": "authResources", + "documentation": "

Defines the service name to use when configuring an authentication resource in your Amplify project.

" + }, + "IdentityPoolConfigs": { + "shape": "UpdateBackendAuthIdentityPoolConfig", + "locationName": "identityPoolConfigs", + "documentation": "

Describes the authorization configuration for the Amazon Cognito identity pool, provisioned as a part of your auth resource in the Amplify project.

" + }, + "Service": { + "shape": "Service", + "locationName": "service", + "documentation": "

Defines the service name to use when configuring an authentication resource in your Amplify project.

" + }, + "UserPoolConfigs": { + "shape": "UpdateBackendAuthUserPoolConfig", + "locationName": "userPoolConfigs", + "documentation": "

Describes the authentication configuration for the Amazon Cognito userpool, provisioned as a part of your auth resource in the Amplify project.

" + } + }, + "documentation": "

Defines the resource configuration when updating an authentication resource in your Amplify project.

", + "required": [ + "AuthResources", + "UserPoolConfigs", + "Service" + ] + }, + "UpdateBackendAuthResponse": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

The name of the operation.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + } + } + }, + "UpdateBackendAuthUserPoolConfig": { + "type": "structure", + "members": { + "ForgotPassword": { + "shape": "UpdateBackendAuthForgotPasswordConfig", + "locationName": "forgotPassword", + "documentation": "

Describes the forgot password policy for your Amazon Cognito user pool, configured as a part of your Amplify project.

" + }, + "Mfa": { + "shape": "UpdateBackendAuthMFAConfig", + "locationName": "mfa", + "documentation": "

Describes whether multi-factor authentication policies should be applied for your Amazon Cognito user pool configured as a part of your Amplify project.

" + }, + "OAuth": { + "shape": "UpdateBackendAuthOAuthConfig", + "locationName": "oAuth", + "documentation": "

Describes the OAuth policy and rules for your Amazon Cognito user pool, configured as a part of your Amplify project.

" + }, + "PasswordPolicy": { + "shape": "UpdateBackendAuthPasswordPolicyConfig", + "locationName": "passwordPolicy", + "documentation": "

Describes the password policy for your Amazon Cognito user pool, configured as a part of your Amplify project.

" + } + }, + "documentation": "

Describes the Amazon Cognito user pool configuration for the authorization resource to be configured for your Amplify project on an update.

" + }, + "UpdateBackendConfigReqObj": { + "type": "structure", + "members": { + "LoginAuthConfig": { + "shape": "LoginAuthConfigReqObj", + "locationName": "loginAuthConfig", + "documentation": "

Describes the Amazon Cognito configuration for Admin UI access.

" + } + }, + "documentation": "

The request object for this operation.

" + }, + "UpdateBackendConfigRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "LoginAuthConfig": { + "shape": "LoginAuthConfigReqObj", + "locationName": "loginAuthConfig", + "documentation": "

Describes the Amazon Cognito configuration for Admin UI access.

" + } + }, + "documentation": "

The request body for UpdateBackendConfig.

", + "required": [ + "AppId" + ] + }, + "UpdateBackendConfigResponse": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendManagerAppId": { + "shape": "__string", + "locationName": "backendManagerAppId", + "documentation": "

The app ID for the backend manager.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "LoginAuthConfig": { + "shape": "LoginAuthConfigReqObj", + "locationName": "loginAuthConfig", + "documentation": "

Describes the Amazon Cognito configurations for the Admin UI auth resource to login with.

" + } + } + }, + "UpdateBackendJobRequest": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "location": "uri", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "location": "uri", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "JobId": { + "shape": "__string", + "location": "uri", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

Filters the list of response objects to only include those with the specified operation name.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

Filters the list of response objects to only include those with the specified status.

" + } + }, + "documentation": "

The request body for GetBackendJob.

", + "required": [ + "AppId", + "BackendEnvironmentName", + "JobId" + ] + }, + "UpdateBackendJobResponse": { + "type": "structure", + "members": { + "AppId": { + "shape": "__string", + "locationName": "appId", + "documentation": "

The app ID.

" + }, + "BackendEnvironmentName": { + "shape": "__string", + "locationName": "backendEnvironmentName", + "documentation": "

The name of the backend environment.

" + }, + "CreateTime": { + "shape": "__string", + "locationName": "createTime", + "documentation": "

The time when the job was created.

" + }, + "Error": { + "shape": "__string", + "locationName": "error", + "documentation": "

If the request failed, this is the returned error.

" + }, + "JobId": { + "shape": "__string", + "locationName": "jobId", + "documentation": "

The ID for the job.

" + }, + "Operation": { + "shape": "__string", + "locationName": "operation", + "documentation": "

The name of the operation.

" + }, + "Status": { + "shape": "__string", + "locationName": "status", + "documentation": "

The current status of the request.

" + }, + "UpdateTime": { + "shape": "__string", + "locationName": "updateTime", + "documentation": "

The time when the job was last updated.

" + } + } + }, + "AdditionalConstraintsElement": { + "type": "string", + "enum": [ + "REQUIRE_DIGIT", + "REQUIRE_LOWERCASE", + "REQUIRE_SYMBOL", + "REQUIRE_UPPERCASE" + ] + }, + "MfaTypesElement": { + "type": "string", + "enum": [ + "SMS", + "TOTP" + ] + }, + "OAuthScopesElement": { + "type": "string", + "enum": [ + "PHONE", + "EMAIL", + "OPENID", + "PROFILE", + "AWS_COGNITO_SIGNIN_USER_ADMIN" + ] + }, + "RequiredSignUpAttributesElement": { + "type": "string", + "enum": [ + "ADDRESS", + "BIRTHDATE", + "EMAIL", + "FAMILY_NAME", + "GENDER", + "GIVEN_NAME", + "LOCALE", + "MIDDLE_NAME", + "NAME", + "NICKNAME", + "PHONE_NUMBER", + "PICTURE", + "PREFERRED_USERNAME", + "PROFILE", + "UPDATED_AT", + "WEBSITE", + "ZONE_INFO" + ] + }, + "__boolean": { + "type": "boolean" + }, + "__double": { + "type": "double" + }, + "__integer": { + "type": "integer" + }, + "__integerMin1Max25": { + "type": "integer", + "min": 1, + "max": 25 + }, + "ListOfBackendAPIAuthType": { + "type": "list", + "member": { + "shape": "BackendAPIAuthType" + } + }, + "ListOfBackendJobRespObj": { + "type": "list", + "member": { + "shape": "BackendJobRespObj" + } + }, + "ListOfAdditionalConstraintsElement": { + "type": "list", + "member": { + "shape": "AdditionalConstraintsElement" + } + }, + "ListOfMfaTypesElement": { + "type": "list", + "member": { + "shape": "MfaTypesElement" + } + }, + "ListOfOAuthScopesElement": { + "type": "list", + "member": { + "shape": "OAuthScopesElement" + } + }, + "ListOfRequiredSignUpAttributesElement": { + "type": "list", + "member": { + "shape": "RequiredSignUpAttributesElement" + } + }, + "ListOf__string": { + "type": "list", + "member": { + "shape": "__string" + } + }, + "__long": { + "type": "long" + }, + "__string": { + "type": "string" + }, + "__timestampIso8601": { + "type": "timestamp", + "timestampFormat": "iso8601" + }, + "__timestampUnix": { + "type": "timestamp", + "timestampFormat": "unixTimestamp" + } + }, + "documentation": "

AWS Amplify Admin API

", + "pagination": { + "ListBackendJobs": { + "input_token": "NextToken", + "output_token": "NextToken", + "limit_key": "MaxResults", + "result_key": "Jobs" + } + } +} From dc3a8ceade666c81de39c426821bd1eefe1978b4 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 2 Dec 2020 00:51:05 +0000 Subject: [PATCH 322/339] Amazon Elastic Compute Cloud Update: This release adds support for: EBS gp3 volumes; and D3/D3en/R5b/M5zn instances powered by Intel Cascade Lake CPUs --- ...ure-AmazonElasticComputeCloud-0dae890.json | 6 + .../codegen-resources/service-2.json | 138 +++++++++++++----- 2 files changed, 107 insertions(+), 37 deletions(-) create mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-0dae890.json diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-0dae890.json b/.changes/next-release/feature-AmazonElasticComputeCloud-0dae890.json new file mode 100644 index 000000000000..11898866fd05 --- /dev/null +++ b/.changes/next-release/feature-AmazonElasticComputeCloud-0dae890.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "This release adds support for: EBS gp3 volumes; and D3/D3en/R5b/M5zn instances powered by Intel Cascade Lake CPUs" +} diff --git a/services/ec2/src/main/resources/codegen-resources/service-2.json b/services/ec2/src/main/resources/codegen-resources/service-2.json index a0a254768d5a..35b3754f39c6 100755 --- a/services/ec2/src/main/resources/codegen-resources/service-2.json +++ b/services/ec2/src/main/resources/codegen-resources/service-2.json @@ -258,7 +258,7 @@ }, "input":{"shape":"AttachVolumeRequest"}, "output":{"shape":"VolumeAttachment"}, - "documentation":"

Attaches an EBS volume to a running or stopped instance and exposes it to the instance with the specified device name.

Encrypted EBS volumes must be attached to instances that support Amazon EBS encryption. For more information, see Amazon EBS Encryption in the Amazon Elastic Compute Cloud User Guide.

After you attach an EBS volume, you must make it available. For more information, see Making an EBS volume available for use.

If a volume has an AWS Marketplace product code:

  • The volume can be attached only to a stopped instance.

  • AWS Marketplace product codes are copied from the volume to the instance.

  • You must be subscribed to the product.

  • The instance type and operating system of the instance must support the product. For example, you can't detach a volume from a Windows instance and attach it to a Linux instance.

For more information, see Attaching Amazon EBS volumes in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

Attaches an EBS volume to a running or stopped instance and exposes it to the instance with the specified device name.

Encrypted EBS volumes must be attached to instances that support Amazon EBS encryption. For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

After you attach an EBS volume, you must make it available. For more information, see Making an EBS volume available for use.

If a volume has an AWS Marketplace product code:

  • The volume can be attached only to a stopped instance.

  • AWS Marketplace product codes are copied from the volume to the instance.

  • You must be subscribed to the product.

  • The instance type and operating system of the instance must support the product. For example, you can't detach a volume from a Windows instance and attach it to a Linux instance.

For more information, see Attaching Amazon EBS volumes in the Amazon Elastic Compute Cloud User Guide.

" }, "AttachVpnGateway":{ "name":"AttachVpnGateway", @@ -743,7 +743,7 @@ }, "input":{"shape":"CreateSnapshotRequest"}, "output":{"shape":"Snapshot"}, - "documentation":"

Creates a snapshot of an EBS volume and stores it in Amazon S3. You can use snapshots for backups, to make copies of EBS volumes, and to save data before shutting down an instance.

When a snapshot is created, any AWS Marketplace product codes that are associated with the source volume are propagated to the snapshot.

You can take a snapshot of an attached volume that is in use. However, snapshots only capture data that has been written to your EBS volume at the time the snapshot command is issued; this may exclude any data that has been cached by any applications or the operating system. If you can pause any file systems on the volume long enough to take a snapshot, your snapshot should be complete. However, if you cannot pause all file writes to the volume, you should unmount the volume from within the instance, issue the snapshot command, and then remount the volume to ensure a consistent and complete snapshot. You may remount and use your volume while the snapshot status is pending.

To create a snapshot for EBS volumes that serve as root devices, you should stop the instance before taking the snapshot.

Snapshots that are taken from encrypted volumes are automatically encrypted. Volumes that are created from encrypted snapshots are also automatically encrypted. Your encrypted volumes and any associated snapshots always remain protected.

You can tag your snapshots during creation. For more information, see Tagging your Amazon EC2 resources in the Amazon Elastic Compute Cloud User Guide.

For more information, see Amazon Elastic Block Store and Amazon EBS Encryption in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

Creates a snapshot of an EBS volume and stores it in Amazon S3. You can use snapshots for backups, to make copies of EBS volumes, and to save data before shutting down an instance.

When a snapshot is created, any AWS Marketplace product codes that are associated with the source volume are propagated to the snapshot.

You can take a snapshot of an attached volume that is in use. However, snapshots only capture data that has been written to your EBS volume at the time the snapshot command is issued; this might exclude any data that has been cached by any applications or the operating system. If you can pause any file systems on the volume long enough to take a snapshot, your snapshot should be complete. However, if you cannot pause all file writes to the volume, you should unmount the volume from within the instance, issue the snapshot command, and then remount the volume to ensure a consistent and complete snapshot. You may remount and use your volume while the snapshot status is pending.

To create a snapshot for EBS volumes that serve as root devices, you should stop the instance before taking the snapshot.

Snapshots that are taken from encrypted volumes are automatically encrypted. Volumes that are created from encrypted snapshots are also automatically encrypted. Your encrypted volumes and any associated snapshots always remain protected.

You can tag your snapshots during creation. For more information, see Tagging your Amazon EC2 resources in the Amazon Elastic Compute Cloud User Guide.

For more information, see Amazon Elastic Block Store and Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

" }, "CreateSnapshots":{ "name":"CreateSnapshots", @@ -902,7 +902,7 @@ }, "input":{"shape":"CreateVolumeRequest"}, "output":{"shape":"Volume"}, - "documentation":"

Creates an EBS volume that can be attached to an instance in the same Availability Zone. The volume is created in the regional endpoint that you send the HTTP request to. For more information see Regions and Endpoints.

You can create a new empty volume or restore a volume from an EBS snapshot. Any AWS Marketplace product codes from the snapshot are propagated to the volume.

You can create encrypted volumes. Encrypted volumes must be attached to instances that support Amazon EBS encryption. Volumes that are created from encrypted snapshots are also automatically encrypted. For more information, see Amazon EBS Encryption in the Amazon Elastic Compute Cloud User Guide.

You can tag your volumes during creation. For more information, see Tagging your Amazon EC2 resources in the Amazon Elastic Compute Cloud User Guide.

For more information, see Creating an Amazon EBS volume in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

Creates an EBS volume that can be attached to an instance in the same Availability Zone.

You can create a new empty volume or restore a volume from an EBS snapshot. Any AWS Marketplace product codes from the snapshot are propagated to the volume.

You can create encrypted volumes. Encrypted volumes must be attached to instances that support Amazon EBS encryption. Volumes that are created from encrypted snapshots are also automatically encrypted. For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

You can tag your volumes during creation. For more information, see Tagging your Amazon EC2 resources in the Amazon Elastic Compute Cloud User Guide.

For more information, see Creating an Amazon EBS volume in the Amazon Elastic Compute Cloud User Guide.

" }, "CreateVpc":{ "name":"CreateVpc", @@ -2300,7 +2300,7 @@ }, "input":{"shape":"DescribeSnapshotAttributeRequest"}, "output":{"shape":"DescribeSnapshotAttributeResult"}, - "documentation":"

Describes the specified attribute of the specified snapshot. You can specify only one attribute at a time.

For more information about EBS snapshots, see Amazon EBS Snapshots in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

Describes the specified attribute of the specified snapshot. You can specify only one attribute at a time.

For more information about EBS snapshots, see Amazon EBS snapshots in the Amazon Elastic Compute Cloud User Guide.

" }, "DescribeSnapshots":{ "name":"DescribeSnapshots", @@ -2310,7 +2310,7 @@ }, "input":{"shape":"DescribeSnapshotsRequest"}, "output":{"shape":"DescribeSnapshotsResult"}, - "documentation":"

Describes the specified EBS snapshots available to you or all of the EBS snapshots available to you.

The snapshots available to you include public snapshots, private snapshots that you own, and private snapshots owned by other AWS accounts for which you have explicit create volume permissions.

The create volume permissions fall into the following categories:

  • public: The owner of the snapshot granted create volume permissions for the snapshot to the all group. All AWS accounts have create volume permissions for these snapshots.

  • explicit: The owner of the snapshot granted create volume permissions to a specific AWS account.

  • implicit: An AWS account has implicit create volume permissions for all snapshots it owns.

The list of snapshots returned can be filtered by specifying snapshot IDs, snapshot owners, or AWS accounts with create volume permissions. If no options are specified, Amazon EC2 returns all snapshots for which you have create volume permissions.

If you specify one or more snapshot IDs, only snapshots that have the specified IDs are returned. If you specify an invalid snapshot ID, an error is returned. If you specify a snapshot ID for which you do not have access, it is not included in the returned results.

If you specify one or more snapshot owners using the OwnerIds option, only snapshots from the specified owners and for which you have access are returned. The results can include the AWS account IDs of the specified owners, amazon for snapshots owned by Amazon, or self for snapshots that you own.

If you specify a list of restorable users, only snapshots with create snapshot permissions for those users are returned. You can specify AWS account IDs (if you own the snapshots), self for snapshots for which you own or have explicit permissions, or all for public snapshots.

If you are describing a long list of snapshots, we recommend that you paginate the output to make the list more manageable. The MaxResults parameter sets the maximum number of results returned in a single page. If the list of results exceeds your MaxResults value, then that number of results is returned along with a NextToken value that can be passed to a subsequent DescribeSnapshots request to retrieve the remaining results.

To get the state of fast snapshot restores for a snapshot, use DescribeFastSnapshotRestores.

For more information about EBS snapshots, see Amazon EBS Snapshots in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

Describes the specified EBS snapshots available to you or all of the EBS snapshots available to you.

The snapshots available to you include public snapshots, private snapshots that you own, and private snapshots owned by other AWS accounts for which you have explicit create volume permissions.

The create volume permissions fall into the following categories:

  • public: The owner of the snapshot granted create volume permissions for the snapshot to the all group. All AWS accounts have create volume permissions for these snapshots.

  • explicit: The owner of the snapshot granted create volume permissions to a specific AWS account.

  • implicit: An AWS account has implicit create volume permissions for all snapshots it owns.

The list of snapshots returned can be filtered by specifying snapshot IDs, snapshot owners, or AWS accounts with create volume permissions. If no options are specified, Amazon EC2 returns all snapshots for which you have create volume permissions.

If you specify one or more snapshot IDs, only snapshots that have the specified IDs are returned. If you specify an invalid snapshot ID, an error is returned. If you specify a snapshot ID for which you do not have access, it is not included in the returned results.

If you specify one or more snapshot owners using the OwnerIds option, only snapshots from the specified owners and for which you have access are returned. The results can include the AWS account IDs of the specified owners, amazon for snapshots owned by Amazon, or self for snapshots that you own.

If you specify a list of restorable users, only snapshots with create snapshot permissions for those users are returned. You can specify AWS account IDs (if you own the snapshots), self for snapshots for which you own or have explicit permissions, or all for public snapshots.

If you are describing a long list of snapshots, we recommend that you paginate the output to make the list more manageable. The MaxResults parameter sets the maximum number of results returned in a single page. If the list of results exceeds your MaxResults value, then that number of results is returned along with a NextToken value that can be passed to a subsequent DescribeSnapshots request to retrieve the remaining results.

To get the state of fast snapshot restores for a snapshot, use DescribeFastSnapshotRestores.

For more information about EBS snapshots, see Amazon EBS snapshots in the Amazon Elastic Compute Cloud User Guide.

" }, "DescribeSpotDatafeedSubscription":{ "name":"DescribeSpotDatafeedSubscription", @@ -2500,7 +2500,7 @@ }, "input":{"shape":"DescribeVolumeAttributeRequest"}, "output":{"shape":"DescribeVolumeAttributeResult"}, - "documentation":"

Describes the specified attribute of the specified volume. You can specify only one attribute at a time.

For more information about EBS volumes, see Amazon EBS Volumes in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

Describes the specified attribute of the specified volume. You can specify only one attribute at a time.

For more information about EBS volumes, see Amazon EBS volumes in the Amazon Elastic Compute Cloud User Guide.

" }, "DescribeVolumeStatus":{ "name":"DescribeVolumeStatus", @@ -2510,7 +2510,7 @@ }, "input":{"shape":"DescribeVolumeStatusRequest"}, "output":{"shape":"DescribeVolumeStatusResult"}, - "documentation":"

Describes the status of the specified volumes. Volume status provides the result of the checks performed on your volumes to determine events that can impair the performance of your volumes. The performance of a volume can be affected if an issue occurs on the volume's underlying host. If the volume's underlying host experiences a power outage or system issue, after the system is restored, there could be data inconsistencies on the volume. Volume events notify you if this occurs. Volume actions notify you if any action needs to be taken in response to the event.

The DescribeVolumeStatus operation provides the following information about the specified volumes:

Status: Reflects the current status of the volume. The possible values are ok, impaired , warning, or insufficient-data. If all checks pass, the overall status of the volume is ok. If the check fails, the overall status is impaired. If the status is insufficient-data, then the checks may still be taking place on your volume at the time. We recommend that you retry the request. For more information about volume status, see Monitoring the status of your volumes in the Amazon Elastic Compute Cloud User Guide.

Events: Reflect the cause of a volume status and may require you to take action. For example, if your volume returns an impaired status, then the volume event might be potential-data-inconsistency. This means that your volume has been affected by an issue with the underlying host, has all I/O operations disabled, and may have inconsistent data.

Actions: Reflect the actions you may have to take in response to an event. For example, if the status of the volume is impaired and the volume event shows potential-data-inconsistency, then the action shows enable-volume-io. This means that you may want to enable the I/O operations for the volume by calling the EnableVolumeIO action and then check the volume for data consistency.

Volume status is based on the volume status checks, and does not reflect the volume state. Therefore, volume status does not indicate volumes in the error state (for example, when a volume is incapable of accepting I/O.)

" + "documentation":"

Describes the status of the specified volumes. Volume status provides the result of the checks performed on your volumes to determine events that can impair the performance of your volumes. The performance of a volume can be affected if an issue occurs on the volume's underlying host. If the volume's underlying host experiences a power outage or system issue, after the system is restored, there could be data inconsistencies on the volume. Volume events notify you if this occurs. Volume actions notify you if any action needs to be taken in response to the event.

The DescribeVolumeStatus operation provides the following information about the specified volumes:

Status: Reflects the current status of the volume. The possible values are ok, impaired , warning, or insufficient-data. If all checks pass, the overall status of the volume is ok. If the check fails, the overall status is impaired. If the status is insufficient-data, then the checks might still be taking place on your volume at the time. We recommend that you retry the request. For more information about volume status, see Monitoring the status of your volumes in the Amazon Elastic Compute Cloud User Guide.

Events: Reflect the cause of a volume status and might require you to take action. For example, if your volume returns an impaired status, then the volume event might be potential-data-inconsistency. This means that your volume has been affected by an issue with the underlying host, has all I/O operations disabled, and might have inconsistent data.

Actions: Reflect the actions you might have to take in response to an event. For example, if the status of the volume is impaired and the volume event shows potential-data-inconsistency, then the action shows enable-volume-io. This means that you may want to enable the I/O operations for the volume by calling the EnableVolumeIO action and then check the volume for data consistency.

Volume status is based on the volume status checks, and does not reflect the volume state. Therefore, volume status does not indicate volumes in the error state (for example, when a volume is incapable of accepting I/O.)

" }, "DescribeVolumes":{ "name":"DescribeVolumes", @@ -2520,7 +2520,7 @@ }, "input":{"shape":"DescribeVolumesRequest"}, "output":{"shape":"DescribeVolumesResult"}, - "documentation":"

Describes the specified EBS volumes or all of your EBS volumes.

If you are describing a long list of volumes, we recommend that you paginate the output to make the list more manageable. The MaxResults parameter sets the maximum number of results returned in a single page. If the list of results exceeds your MaxResults value, then that number of results is returned along with a NextToken value that can be passed to a subsequent DescribeVolumes request to retrieve the remaining results.

For more information about EBS volumes, see Amazon EBS Volumes in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

Describes the specified EBS volumes or all of your EBS volumes.

If you are describing a long list of volumes, we recommend that you paginate the output to make the list more manageable. The MaxResults parameter sets the maximum number of results returned in a single page. If the list of results exceeds your MaxResults value, then that number of results is returned along with a NextToken value that can be passed to a subsequent DescribeVolumes request to retrieve the remaining results.

For more information about EBS volumes, see Amazon EBS volumes in the Amazon Elastic Compute Cloud User Guide.

" }, "DescribeVolumesModifications":{ "name":"DescribeVolumesModifications", @@ -2717,7 +2717,7 @@ }, "input":{"shape":"DisableEbsEncryptionByDefaultRequest"}, "output":{"shape":"DisableEbsEncryptionByDefaultResult"}, - "documentation":"

Disables EBS encryption by default for your account in the current Region.

After you disable encryption by default, you can still create encrypted volumes by enabling encryption when you create each volume.

Disabling encryption by default does not change the encryption status of your existing volumes.

For more information, see Amazon EBS Encryption in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

Disables EBS encryption by default for your account in the current Region.

After you disable encryption by default, you can still create encrypted volumes by enabling encryption when you create each volume.

Disabling encryption by default does not change the encryption status of your existing volumes.

For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

" }, "DisableFastSnapshotRestores":{ "name":"DisableFastSnapshotRestores", @@ -2864,7 +2864,7 @@ }, "input":{"shape":"EnableEbsEncryptionByDefaultRequest"}, "output":{"shape":"EnableEbsEncryptionByDefaultResult"}, - "documentation":"

Enables EBS encryption by default for your account in the current Region.

After you enable encryption by default, the EBS volumes that you create are are always encrypted, either using the default CMK or the CMK that you specified when you created each volume. For more information, see Amazon EBS Encryption in the Amazon Elastic Compute Cloud User Guide.

You can specify the default CMK for encryption by default using ModifyEbsDefaultKmsKeyId or ResetEbsDefaultKmsKeyId.

Enabling encryption by default has no effect on the encryption status of your existing volumes.

After you enable encryption by default, you can no longer launch instances using instance types that do not support encryption. For more information, see Supported instance types.

" + "documentation":"

Enables EBS encryption by default for your account in the current Region.

After you enable encryption by default, the EBS volumes that you create are are always encrypted, either using the default CMK or the CMK that you specified when you created each volume. For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

You can specify the default CMK for encryption by default using ModifyEbsDefaultKmsKeyId or ResetEbsDefaultKmsKeyId.

Enabling encryption by default has no effect on the encryption status of your existing volumes.

After you enable encryption by default, you can no longer launch instances using instance types that do not support encryption. For more information, see Supported instance types.

" }, "EnableFastSnapshotRestores":{ "name":"EnableFastSnapshotRestores", @@ -3042,7 +3042,7 @@ }, "input":{"shape":"GetEbsDefaultKmsKeyIdRequest"}, "output":{"shape":"GetEbsDefaultKmsKeyIdResult"}, - "documentation":"

Describes the default customer master key (CMK) for EBS encryption by default for your account in this Region. You can change the default CMK for encryption by default using ModifyEbsDefaultKmsKeyId or ResetEbsDefaultKmsKeyId.

For more information, see Amazon EBS Encryption in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

Describes the default customer master key (CMK) for EBS encryption by default for your account in this Region. You can change the default CMK for encryption by default using ModifyEbsDefaultKmsKeyId or ResetEbsDefaultKmsKeyId.

For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

" }, "GetEbsEncryptionByDefault":{ "name":"GetEbsEncryptionByDefault", @@ -3052,7 +3052,7 @@ }, "input":{"shape":"GetEbsEncryptionByDefaultRequest"}, "output":{"shape":"GetEbsEncryptionByDefaultResult"}, - "documentation":"

Describes whether EBS encryption by default is enabled for your account in the current Region.

For more information, see Amazon EBS Encryption in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

Describes whether EBS encryption by default is enabled for your account in the current Region.

For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

" }, "GetGroupsForCapacityReservation":{ "name":"GetGroupsForCapacityReservation", @@ -3282,7 +3282,7 @@ }, "input":{"shape":"ModifyEbsDefaultKmsKeyIdRequest"}, "output":{"shape":"ModifyEbsDefaultKmsKeyIdResult"}, - "documentation":"

Changes the default customer master key (CMK) for EBS encryption by default for your account in this Region.

AWS creates a unique AWS managed CMK in each Region for use with encryption by default. If you change the default CMK to a symmetric customer managed CMK, it is used instead of the AWS managed CMK. To reset the default CMK to the AWS managed CMK for EBS, use ResetEbsDefaultKmsKeyId. Amazon EBS does not support asymmetric CMKs.

If you delete or disable the customer managed CMK that you specified for use with encryption by default, your instances will fail to launch.

For more information, see Amazon EBS Encryption in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

Changes the default customer master key (CMK) for EBS encryption by default for your account in this Region.

AWS creates a unique AWS managed CMK in each Region for use with encryption by default. If you change the default CMK to a symmetric customer managed CMK, it is used instead of the AWS managed CMK. To reset the default CMK to the AWS managed CMK for EBS, use ResetEbsDefaultKmsKeyId. Amazon EBS does not support asymmetric CMKs.

If you delete or disable the customer managed CMK that you specified for use with encryption by default, your instances will fail to launch.

For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

" }, "ModifyFleet":{ "name":"ModifyFleet", @@ -3535,7 +3535,7 @@ }, "input":{"shape":"ModifyVolumeRequest"}, "output":{"shape":"ModifyVolumeResult"}, - "documentation":"

You can modify several parameters of an existing EBS volume, including volume size, volume type, and IOPS capacity. If your EBS volume is attached to a current-generation EC2 instance type, you may be able to apply these changes without stopping the instance or detaching the volume from it. For more information about modifying an EBS volume running Linux, see Modifying the size, IOPS, or type of an EBS volume on Linux. For more information about modifying an EBS volume running Windows, see Modifying the size, IOPS, or type of an EBS volume on Windows.

When you complete a resize operation on your volume, you need to extend the volume's file-system size to take advantage of the new storage capacity. For information about extending a Linux file system, see Extending a Linux file system. For information about extending a Windows file system, see Extending a Windows file system.

You can use CloudWatch Events to check the status of a modification to an EBS volume. For information about CloudWatch Events, see the Amazon CloudWatch Events User Guide. You can also track the status of a modification using DescribeVolumesModifications. For information about tracking status changes using either method, see Monitoring volume modifications.

With previous-generation instance types, resizing an EBS volume may require detaching and reattaching the volume or stopping and restarting the instance. For more information, see Modifying the size, IOPS, or type of an EBS volume on Linux and Modifying the size, IOPS, or type of an EBS volume on Windows.

If you reach the maximum volume modification rate per volume limit, you will need to wait at least six hours before applying further modifications to the affected EBS volume.

" + "documentation":"

You can modify several parameters of an existing EBS volume, including volume size, volume type, and IOPS capacity. If your EBS volume is attached to a current-generation EC2 instance type, you might be able to apply these changes without stopping the instance or detaching the volume from it. For more information about modifying an EBS volume running Linux, see Modifying the size, IOPS, or type of an EBS volume on Linux. For more information about modifying an EBS volume running Windows, see Modifying the size, IOPS, or type of an EBS volume on Windows.

When you complete a resize operation on your volume, you need to extend the volume's file-system size to take advantage of the new storage capacity. For information about extending a Linux file system, see Extending a Linux file system. For information about extending a Windows file system, see Extending a Windows file system.

You can use CloudWatch Events to check the status of a modification to an EBS volume. For information about CloudWatch Events, see the Amazon CloudWatch Events User Guide. You can also track the status of a modification using DescribeVolumesModifications. For information about tracking status changes using either method, see Monitoring volume modifications.

With previous-generation instance types, resizing an EBS volume might require detaching and reattaching the volume or stopping and restarting the instance. For more information, see Amazon EBS Elastic Volumes (Linux) or Amazon EBS Elastic Volumes (Windows).

If you reach the maximum volume modification rate per volume limit, you will need to wait at least six hours before applying further modifications to the affected EBS volume.

" }, "ModifyVolumeAttribute":{ "name":"ModifyVolumeAttribute", @@ -3918,7 +3918,7 @@ }, "input":{"shape":"ResetEbsDefaultKmsKeyIdRequest"}, "output":{"shape":"ResetEbsDefaultKmsKeyIdResult"}, - "documentation":"

Resets the default customer master key (CMK) for EBS encryption for your account in this Region to the AWS managed CMK for EBS.

After resetting the default CMK to the AWS managed CMK, you can continue to encrypt by a customer managed CMK by specifying it when you create the volume. For more information, see Amazon EBS Encryption in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

Resets the default customer master key (CMK) for EBS encryption for your account in this Region to the AWS managed CMK for EBS.

After resetting the default CMK to the AWS managed CMK, you can continue to encrypt by a customer managed CMK by specifying it when you create the volume. For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

" }, "ResetFpgaImageAttribute":{ "name":"ResetFpgaImageAttribute", @@ -7861,7 +7861,7 @@ }, "Encrypted":{ "shape":"Boolean", - "documentation":"

To encrypt a copy of an unencrypted snapshot if encryption by default is not enabled, enable encryption using this parameter. Otherwise, omit this parameter. Encrypted snapshots are encrypted, even if you omit this parameter and encryption by default is not enabled. You cannot set this parameter to false. For more information, see Amazon EBS Encryption in the Amazon Elastic Compute Cloud User Guide.

", + "documentation":"

To encrypt a copy of an unencrypted snapshot if encryption by default is not enabled, enable encryption using this parameter. Otherwise, omit this parameter. Encrypted snapshots are encrypted, even if you omit this parameter and encryption by default is not enabled. You cannot set this parameter to false. For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.

", "locationName":"encrypted" }, "KmsKeyId":{ @@ -7871,7 +7871,7 @@ }, "PresignedUrl":{ "shape":"String", - "documentation":"

When you copy an encrypted source snapshot using the Amazon EC2 Query API, you must supply a pre-signed URL. This parameter is optional for unencrypted snapshots. For more information, see Query Requests.

The PresignedUrl should use the snapshot source endpoint, the CopySnapshot action, and include the SourceRegion, SourceSnapshotId, and DestinationRegion parameters. The PresignedUrl must be signed using AWS Signature Version 4. Because EBS snapshots are stored in Amazon S3, the signing algorithm for this parameter uses the same logic that is described in Authenticating Requests by Using Query Parameters (AWS Signature Version 4) in the Amazon Simple Storage Service API Reference. An invalid or improperly signed PresignedUrl will cause the copy operation to fail asynchronously, and the snapshot will move to an error state.

", + "documentation":"

When you copy an encrypted source snapshot using the Amazon EC2 Query API, you must supply a pre-signed URL. This parameter is optional for unencrypted snapshots. For more information, see Query requests.

The PresignedUrl should use the snapshot source endpoint, the CopySnapshot action, and include the SourceRegion, SourceSnapshotId, and DestinationRegion parameters. The PresignedUrl must be signed using AWS Signature Version 4. Because EBS snapshots are stored in Amazon S3, the signing algorithm for this parameter uses the same logic that is described in Authenticating Requests: Using Query Parameters (AWS Signature Version 4) in the Amazon Simple Storage Service API Reference. An invalid or improperly signed PresignedUrl will cause the copy operation to fail asynchronously, and the snapshot will move to an error state.

", "locationName":"presignedUrl" }, "SourceRegion":{ @@ -10231,12 +10231,12 @@ }, "Encrypted":{ "shape":"Boolean", - "documentation":"

Specifies whether the volume should be encrypted. The effect of setting the encryption state to true depends on the volume origin (new or from a snapshot), starting encryption state, ownership, and whether encryption by default is enabled. For more information, see Encryption by default in the Amazon Elastic Compute Cloud User Guide.

Encrypted Amazon EBS volumes must be attached to instances that support Amazon EBS encryption. For more information, see Supported instance types.

", + "documentation":"

Indicates whether the volume should be encrypted. The effect of setting the encryption state to true depends on the volume origin (new or from a snapshot), starting encryption state, ownership, and whether encryption by default is enabled. For more information, see Encryption by default in the Amazon Elastic Compute Cloud User Guide.

Encrypted Amazon EBS volumes must be attached to instances that support Amazon EBS encryption. For more information, see Supported instance types.

", "locationName":"encrypted" }, "Iops":{ "shape":"Integer", - "documentation":"

The number of I/O operations per second (IOPS) to provision for an io1 or io2 volume, with a maximum ratio of 50 IOPS/GiB for io1, and 500 IOPS/GiB for io2. Range is 100 to 64,000 IOPS for volumes in most Regions. Maximum IOPS of 64,000 is guaranteed only on Nitro-based instances. Other instance families guarantee performance up to 32,000 IOPS. For more information, see Amazon EBS volume types in the Amazon Elastic Compute Cloud User Guide.

This parameter is valid only for Provisioned IOPS SSD (io1 and io2) volumes.

" + "documentation":"

The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.

The following are the supported values for each volume type:

  • gp3: 3,000-16,000 IOPS

  • io1: 100-64,000 IOPS

  • io2: 100-64,000 IOPS

For io1 and io2 volumes, we guarantee 64,000 IOPS only for Instances built on the Nitro System. Other instance families guarantee performance up to 32,000 IOPS.

This parameter is required for io1 and io2 volumes. The default for gp3 volumes is 3,000 IOPS. This parameter is not supported for gp2, st1, sc1, or standard volumes.

" }, "KmsKeyId":{ "shape":"KmsKeyId", @@ -10248,7 +10248,7 @@ }, "Size":{ "shape":"Integer", - "documentation":"

The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size.

Constraints: 1-16,384 for gp2, 4-16,384 for io1 and io2, 500-16,384 for st1, 500-16,384 for sc1, and 1-1,024 for standard. If you specify a snapshot, the volume size must be equal to or larger than the snapshot size.

Default: If you're creating the volume from a snapshot and don't specify a volume size, the default is the snapshot size.

" + "documentation":"

The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size. You can specify a volume size that is equal to or larger than the snapshot size.

The following are the supported volumes sizes for each volume type:

  • gp2 and gp3: 1-16,384

  • io1 and io2: 4-16,384

  • st1 and sc1: 125-16,384

  • standard: 1-1,024

" }, "SnapshotId":{ "shape":"SnapshotId", @@ -10256,7 +10256,7 @@ }, "VolumeType":{ "shape":"VolumeType", - "documentation":"

The volume type. This can be gp2 for General Purpose SSD, io1 or io2 for Provisioned IOPS SSD, st1 for Throughput Optimized HDD, sc1 for Cold HDD, or standard for Magnetic volumes.

Default: gp2

" + "documentation":"

The volume type. This parameter can be one of the following values:

  • General Purpose SSD: gp2 | gp3

  • Provisioned IOPS SSD: io1 | io2

  • Throughput Optimized HDD: st1

  • Cold HDD: sc1

  • Magnetic: standard

For more information, see Amazon EBS volume types in the Amazon Elastic Compute Cloud User Guide.

Default: gp2

" }, "DryRun":{ "shape":"Boolean", @@ -10270,7 +10270,11 @@ }, "MultiAttachEnabled":{ "shape":"Boolean", - "documentation":"

Specifies whether to enable Amazon EBS Multi-Attach. If you enable Multi-Attach, you can attach the volume to up to 16 Nitro-based instances in the same Availability Zone. For more information, see Amazon EBS Multi-Attach in the Amazon Elastic Compute Cloud User Guide.

" + "documentation":"

Indicates whether to enable Amazon EBS Multi-Attach. If you enable Multi-Attach, you can attach the volume to up to 16 Instances built on the Nitro System in the same Availability Zone. This parameter is supported with io1 volumes only. For more information, see Amazon EBS Multi-Attach in the Amazon Elastic Compute Cloud User Guide.

" + }, + "Throughput":{ + "shape":"Integer", + "documentation":"

The throughput to provision for a volume, with a maximum of 1,000 MiB/s.

This parameter is valid only for gp3 volumes.

Valid Range: Minimum value of 125. Maximum value of 1000.

" } } }, @@ -15722,7 +15726,7 @@ }, "MaxResults":{ "shape":"Integer", - "documentation":"

The maximum number of snapshot results returned by DescribeSnapshots in paginated output. When this parameter is used, DescribeSnapshots only returns MaxResults results in a single page along with a NextToken response element. The remaining results of the initial request can be seen by sending another DescribeSnapshots request with the returned NextToken value. This value can be between 5 and 1000; if MaxResults is given a value larger than 1000, only 1000 results are returned. If this parameter is not used, then DescribeSnapshots returns all results. You cannot specify this parameter and the snapshot IDs parameter in the same request.

" + "documentation":"

The maximum number of snapshot results returned by DescribeSnapshots in paginated output. When this parameter is used, DescribeSnapshots only returns MaxResults results in a single page along with a NextToken response element. The remaining results of the initial request can be seen by sending another DescribeSnapshots request with the returned NextToken value. This value can be between 5 and 1,000; if MaxResults is given a value larger than 1,000, only 1,000 results are returned. If this parameter is not used, then DescribeSnapshots returns all results. You cannot specify this parameter and the snapshot IDs parameter in the same request.

" }, "NextToken":{ "shape":"String", @@ -16629,7 +16633,7 @@ }, "MaxResults":{ "shape":"Integer", - "documentation":"

The maximum number of volume results returned by DescribeVolumeStatus in paginated output. When this parameter is used, the request only returns MaxResults results in a single page along with a NextToken response element. The remaining results of the initial request can be seen by sending another request with the returned NextToken value. This value can be between 5 and 1000; if MaxResults is given a value larger than 1000, only 1000 results are returned. If this parameter is not used, then DescribeVolumeStatus returns all results. You cannot specify this parameter and the volume IDs parameter in the same request.

" + "documentation":"

The maximum number of volume results returned by DescribeVolumeStatus in paginated output. When this parameter is used, the request only returns MaxResults results in a single page along with a NextToken response element. The remaining results of the initial request can be seen by sending another request with the returned NextToken value. This value can be between 5 and 1,000; if MaxResults is given a value larger than 1,000, only 1,000 results are returned. If this parameter is not used, then DescribeVolumeStatus returns all results. You cannot specify this parameter and the volume IDs parameter in the same request.

" }, "NextToken":{ "shape":"String", @@ -16709,7 +16713,7 @@ "members":{ "Filters":{ "shape":"FilterList", - "documentation":"

The filters.

  • attachment.attach-time - The time stamp when the attachment initiated.

  • attachment.delete-on-termination - Whether the volume is deleted on instance termination.

  • attachment.device - The device name specified in the block device mapping (for example, /dev/sda1).

  • attachment.instance-id - The ID of the instance the volume is attached to.

  • attachment.status - The attachment state (attaching | attached | detaching).

  • availability-zone - The Availability Zone in which the volume was created.

  • create-time - The time stamp when the volume was created.

  • encrypted - Indicates whether the volume is encrypted (true | false)

  • multi-attach-enabled - Indicates whether the volume is enabled for Multi-Attach (true | false)

  • fast-restored - Indicates whether the volume was created from a snapshot that is enabled for fast snapshot restore (true | false).

  • size - The size of the volume, in GiB.

  • snapshot-id - The snapshot from which the volume was created.

  • status - The state of the volume (creating | available | in-use | deleting | deleted | error).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • volume-id - The volume ID.

  • volume-type - The Amazon EBS volume type. This can be gp2 for General Purpose SSD, io1 or io2 for Provisioned IOPS SSD, st1 for Throughput Optimized HDD, sc1 for Cold HDD, or standard for Magnetic volumes.

", + "documentation":"

The filters.

  • attachment.attach-time - The time stamp when the attachment initiated.

  • attachment.delete-on-termination - Whether the volume is deleted on instance termination.

  • attachment.device - The device name specified in the block device mapping (for example, /dev/sda1).

  • attachment.instance-id - The ID of the instance the volume is attached to.

  • attachment.status - The attachment state (attaching | attached | detaching).

  • availability-zone - The Availability Zone in which the volume was created.

  • create-time - The time stamp when the volume was created.

  • encrypted - Indicates whether the volume is encrypted (true | false)

  • multi-attach-enabled - Indicates whether the volume is enabled for Multi-Attach (true | false)

  • fast-restored - Indicates whether the volume was created from a snapshot that is enabled for fast snapshot restore (true | false).

  • size - The size of the volume, in GiB.

  • snapshot-id - The snapshot from which the volume was created.

  • status - The state of the volume (creating | available | in-use | deleting | deleted | error).

  • tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.

  • tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.

  • volume-id - The volume ID.

  • volume-type - The Amazon EBS volume type (gp2 | gp3 | io1 | io2 | st1 | sc1| standard)

", "locationName":"Filter" }, "VolumeIds":{ @@ -18235,7 +18239,7 @@ }, "Iops":{ "shape":"Integer", - "documentation":"

The number of I/O operations per second (IOPS) that the volume supports. For io1 and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting. For more information, see Amazon EBS volume types in the Amazon Elastic Compute Cloud User Guide.

Constraints: Range is 100-16,000 IOPS for gp2 volumes and 100 to 64,000 IOPS for io1 and io2 volumes in most Regions. Maximum io1 and io2 IOPS of 64,000 is guaranteed only on Nitro-based instances. Other instance families guarantee performance up to 32,000 IOPS. For more information, see Amazon EBS Volume Types in the Amazon Elastic Compute Cloud User Guide.

Condition: This parameter is required for requests to create io1 and io2 volumes; it is not used in requests to create gp2, st1, sc1, or standard volumes.

", + "documentation":"

The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.

The following are the supported values for each volume type:

  • gp3: 3,000-16,000 IOPS

  • io1: 100-64,000 IOPS

  • io2: 100-64,000 IOPS

For io1 and io2 volumes, we guarantee 64,000 IOPS only for Instances built on the Nitro System. Other instance families guarantee performance up to 32,000 IOPS.

This parameter is required for io1 and io2 volumes. The default for gp3 volumes is 3,000 IOPS. This parameter is not supported for gp2, st1, sc1, or standard volumes.

", "locationName":"iops" }, "SnapshotId":{ @@ -18245,18 +18249,23 @@ }, "VolumeSize":{ "shape":"Integer", - "documentation":"

The size of the volume, in GiB.

Default: If you're creating the volume from a snapshot and don't specify a volume size, the default is the snapshot size.

Constraints: 1-16384 for General Purpose SSD (gp2), 4-16384 for Provisioned IOPS SSD (io1 and io2), 500-16384 for Throughput Optimized HDD (st1), 500-16384 for Cold HDD (sc1), and 1-1024 for Magnetic (standard) volumes. If you specify a snapshot, the volume size must be equal to or larger than the snapshot size.

", + "documentation":"

The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size. You can specify a volume size that is equal to or larger than the snapshot size.

The following are the supported volumes sizes for each volume type:

  • gp2 and gp3:1-16,384

  • io1 and io2: 4-16,384

  • st1: 500-16,384

  • sc1: 500-16,384

  • standard: 1-1,024

", "locationName":"volumeSize" }, "VolumeType":{ "shape":"VolumeType", - "documentation":"

The volume type. If you set the type to io1 or io2, you must also specify the Iops parameter. If you set the type to gp2, st1, sc1, or standard, you must omit the Iops parameter.

Default: gp2

", + "documentation":"

The volume type. For more information, see Amazon EBS volume types in the Amazon Elastic Compute Cloud User Guide. If the volume type is io1 or io2, you must specify the IOPS that the volume supports.

", "locationName":"volumeType" }, "KmsKeyId":{ "shape":"String", "documentation":"

Identifier (key ID, key alias, ID ARN, or alias ARN) for a customer managed CMK under which the EBS volume is encrypted.

This parameter is only supported on BlockDeviceMapping objects called by RunInstances, RequestSpotFleet, and RequestSpotInstances.

" }, + "Throughput":{ + "shape":"Integer", + "documentation":"

The throughput that the volume supports, in MiB/s.

This parameter is valid only for gp3 volumes.

Valid Range: Minimum value of 125. Maximum value of 1000.

", + "locationName":"throughput" + }, "Encrypted":{ "shape":"Boolean", "documentation":"

Indicates whether the encryption state of an EBS volume is changed while being restored from a backing snapshot. The effect of setting the encryption state to true depends on the volume origin (new or from a snapshot), starting encryption state, ownership, and whether encryption by default is enabled. For more information, see Amazon EBS Encryption in the Amazon Elastic Compute Cloud User Guide.

In no case can you remove encryption from an encrypted volume.

Encrypted volumes can only be attached to instances that support Amazon EBS encryption. For more information, see Supported instance types.

This parameter is not returned by .

", @@ -24122,6 +24131,15 @@ "r5a.12xlarge", "r5a.16xlarge", "r5a.24xlarge", + "r5b.large", + "r5b.xlarge", + "r5b.2xlarge", + "r5b.4xlarge", + "r5b.8xlarge", + "r5b.12xlarge", + "r5b.16xlarge", + "r5b.24xlarge", + "r5b.metal", "r5d.large", "r5d.xlarge", "r5d.2xlarge", @@ -24284,6 +24302,16 @@ "d2.2xlarge", "d2.4xlarge", "d2.8xlarge", + "d3.xlarge", + "d3.2xlarge", + "d3.4xlarge", + "d3.8xlarge", + "d3en.xlarge", + "d3en.2xlarge", + "d3en.4xlarge", + "d3en.6xlarge", + "d3en.8xlarge", + "d3en.12xlarge", "f1.2xlarge", "f1.4xlarge", "f1.16xlarge", @@ -24321,6 +24349,13 @@ "m5ad.12xlarge", "m5ad.16xlarge", "m5ad.24xlarge", + "m5zn.large", + "m5zn.xlarge", + "m5zn.2xlarge", + "m5zn.3xlarge", + "m5zn.6xlarge", + "m5zn.12xlarge", + "m5zn.metal", "h1.2xlarge", "h1.4xlarge", "h1.8xlarge", @@ -25328,6 +25363,11 @@ "shape":"VolumeType", "documentation":"

The volume type.

", "locationName":"volumeType" + }, + "Throughput":{ + "shape":"Integer", + "documentation":"

The throughput that the volume supports, in MiB/s.

", + "locationName":"throughput" } }, "documentation":"

Describes a block device for an EBS volume.

" @@ -25345,7 +25385,7 @@ }, "Iops":{ "shape":"Integer", - "documentation":"

The number of I/O operations per second (IOPS) to provision for an io1 or io2 volume, with a maximum ratio of 50 IOPS/GiB for io1, and 500 IOPS/GiB for io2. Range is 100 to 64,000 IOPS for volumes in most Regions. Maximum IOPS of 64,000 is guaranteed only on Nitro-based instances. Other instance families guarantee performance up to 32,000 IOPS. For more information, see Amazon EBS Volume Types in the Amazon Elastic Compute Cloud User Guide.

This parameter is valid only for Provisioned IOPS SSD (io1 and io2) volumes.

" + "documentation":"

The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.

The following are the supported values for each volume type:

  • gp3: 3,000-16,000 IOPS

  • io1: 100-64,000 IOPS

  • io2: 100-64,000 IOPS

For io1 and io2 volumes, we guarantee 64,000 IOPS only for Instances built on the Nitro System. Other instance families guarantee performance up to 32,000 IOPS.

This parameter is required for io1 and io2 volumes. The default for gp3 volumes is 3,000 IOPS. This parameter is not supported for gp2, st1, sc1, or standard volumes.

" }, "KmsKeyId":{ "shape":"KmsKeyId", @@ -25357,11 +25397,15 @@ }, "VolumeSize":{ "shape":"Integer", - "documentation":"

The size of the volume, in GiB.

Default: If you're creating the volume from a snapshot and don't specify a volume size, the default is the snapshot size.

" + "documentation":"

The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size. You can specify a volume size that is equal to or larger than the snapshot size.

The following are the supported volumes sizes for each volume type:

  • gp2 and gp3: 1-16,384

  • io1 and io2: 4-16,384

  • st1 and sc1: 125-16,384

  • standard: 1-1,024

" }, "VolumeType":{ "shape":"VolumeType", - "documentation":"

The volume type.

" + "documentation":"

The volume type. The default is gp2. For more information, see Amazon EBS volume types in the Amazon Elastic Compute Cloud User Guide.

" + }, + "Throughput":{ + "shape":"Integer", + "documentation":"

The throughput to provision for a gp3 volume, with a maximum of 1,000 MiB/s.

Valid Range: Minimum value of 125. Maximum value of 1000.

" } }, "documentation":"

The parameters for a block device for an EBS volume.

" @@ -28084,15 +28128,19 @@ }, "Size":{ "shape":"Integer", - "documentation":"

The target size of the volume, in GiB. The target volume size must be greater than or equal to than the existing size of the volume. For information about available EBS volume sizes, see Amazon EBS Volume Types.

Default: If no size is specified, the existing size is retained.

" + "documentation":"

The target size of the volume, in GiB. The target volume size must be greater than or equal to the existing size of the volume.

The following are the supported volumes sizes for each volume type:

  • gp2 and gp3: 1-16,384

  • io1 and io2: 4-16,384

  • st1 and sc1: 125-16,384

  • standard: 1-1,024

Default: If no size is specified, the existing size is retained.

" }, "VolumeType":{ "shape":"VolumeType", - "documentation":"

The target EBS volume type of the volume.

Default: If no type is specified, the existing type is retained.

" + "documentation":"

The target EBS volume type of the volume. For more information, see Amazon EBS volume types in the Amazon Elastic Compute Cloud User Guide.

Default: If no type is specified, the existing type is retained.

" }, "Iops":{ "shape":"Integer", - "documentation":"

The target IOPS rate of the volume.

This is only valid for Provisioned IOPS SSD (io1 and io2) volumes. For moreinformation, see Provisioned IOPS SSD (io1 and io2) volumes.

Default: If no IOPS value is specified, the existing value is retained.

" + "documentation":"

The target IOPS rate of the volume. This parameter is valid only for gp3, io1, and io2 volumes.

The following are the supported values for each volume type:

  • gp3: 3,000-16,000 IOPS

  • io1: 100-64,000 IOPS

  • io2: 100-64,000 IOPS

Default: If no IOPS value is specified, the existing value is retained.

" + }, + "Throughput":{ + "shape":"Integer", + "documentation":"

The target throughput of the volume, in MiB/s. This parameter is valid only for gp3 volumes. The maximum value is 1,000.

Default: If no throughput value is specified, the existing value is retained.

Valid Range: Minimum value of 125. Maximum value of 1000.

" } } }, @@ -38734,7 +38782,7 @@ }, "Iops":{ "shape":"Integer", - "documentation":"

The number of I/O operations per second (IOPS) that the volume supports. For Provisioned IOPS SSD volumes, this represents the number of IOPS that are provisioned for the volume. For General Purpose SSD volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting. For more information, see Amazon EBS volume types in the Amazon Elastic Compute Cloud User Guide.

Constraints: Range is 100-16,000 IOPS for gp2 volumes and 100 to 64,000 IOPS for io1 and io2 volumes, in most Regions. The maximum IOPS for io1 and io2 of 64,000 is guaranteed only on Nitro-based instances. Other instance families guarantee performance up to 32,000 IOPS.

Condition: This parameter is required for requests to create io1 and io2 volumes; it is not used in requests to create gp2, st1, sc1, or standard volumes.

", + "documentation":"

The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.

", "locationName":"iops" }, "Tags":{ @@ -38744,7 +38792,7 @@ }, "VolumeType":{ "shape":"VolumeType", - "documentation":"

The volume type. This can be gp2 for General Purpose SSD, io1 or io2 for Provisioned IOPS SSD, st1 for Throughput Optimized HDD, sc1 for Cold HDD, or standard for Magnetic volumes.

", + "documentation":"

The volume type.

", "locationName":"volumeType" }, "FastRestored":{ @@ -38756,6 +38804,11 @@ "shape":"Boolean", "documentation":"

Indicates whether Amazon EBS Multi-Attach is enabled.

", "locationName":"multiAttachEnabled" + }, + "Throughput":{ + "shape":"Integer", + "documentation":"

The throughput that the volume supports, in MiB/s.

", + "locationName":"throughput" } }, "documentation":"

Describes a volume.

" @@ -38880,6 +38933,11 @@ "documentation":"

The target EBS volume type of the volume.

", "locationName":"targetVolumeType" }, + "TargetThroughput":{ + "shape":"Integer", + "documentation":"

The target throughput of the volume, in MiB/s.

", + "locationName":"targetThroughput" + }, "OriginalSize":{ "shape":"Integer", "documentation":"

The original size of the volume, in GiB.

", @@ -38895,6 +38953,11 @@ "documentation":"

The original EBS volume type of the volume.

", "locationName":"originalVolumeType" }, + "OriginalThroughput":{ + "shape":"Integer", + "documentation":"

The original throughput of the volume, in MiB/s.

", + "locationName":"originalThroughput" + }, "Progress":{ "shape":"Long", "documentation":"

The modification progress, from 0 to 100 percent complete.

", @@ -39149,7 +39212,8 @@ "io2", "gp2", "sc1", - "st1" + "st1", + "gp3" ] }, "Vpc":{ From 139aee3bd289b9dced6395c7c92f507300de83d5 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 2 Dec 2020 00:52:53 +0000 Subject: [PATCH 323/339] Updated endpoints.json. --- .../feature-AWSSDKforJavav2-bedacd4.json | 6 ++++++ .../regions/internal/region/endpoints.json | 19 +++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json new file mode 100644 index 000000000000..ae3f84993e9e --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." +} diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json index 29163a1ef01c..5fe79a810aa3 100644 --- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json +++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json @@ -1375,6 +1375,7 @@ "sa-east-1" : { }, "us-east-1" : { }, "us-east-2" : { }, + "us-west-1" : { }, "us-west-2" : { } } }, @@ -1518,6 +1519,13 @@ "us-west-2" : { } } }, + "contact-lens" : { + "endpoints" : { + "ap-southeast-2" : { }, + "us-east-1" : { }, + "us-west-2" : { } + } + }, "cur" : { "endpoints" : { "us-east-1" : { } @@ -3645,6 +3653,17 @@ "us-west-2" : { } } }, + "lookoutvision" : { + "endpoints" : { + "ap-northeast-1" : { }, + "ap-northeast-2" : { }, + "eu-central-1" : { }, + "eu-west-1" : { }, + "us-east-1" : { }, + "us-east-2" : { }, + "us-west-2" : { } + } + }, "machinelearning" : { "endpoints" : { "eu-west-1" : { }, From ccc988490474095a83a3d532c5532950eac8700b Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 2 Dec 2020 00:53:41 +0000 Subject: [PATCH 324/339] Release 2.15.37. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.37.json | 102 ++++++++++++++++++ .../feature-AWSDirectoryService-4c4ec43.json | 6 -- .../feature-AWSLambda-99d6cfa.json | 6 -- .../feature-AWSSDKforJavav2-bedacd4.json | 6 -- ...-AmazonAppIntegrationsService-fc3f329.json | 6 -- ...ture-AmazonConnectContactLens-4d31c61.json | 6 -- .../feature-AmazonConnectService-a65a321.json | 6 -- .../feature-AmazonDevOpsGuru-cd04a5e.json | 6 -- ...ure-AmazonElasticComputeCloud-0dae890.json | 6 -- ...lasticContainerRegistryPublic-f57d589.json | 6 -- ...mazonElasticKubernetesService-47e0cc1.json | 6 -- .../feature-AmazonHoneycode-a8f7e97.json | 6 -- ...eature-AmazonLookoutforVision-da190ad.json | 6 -- ...nSageMakerFeatureStoreRuntime-f5ba552.json | 6 -- ...eature-AmazonSageMakerService-202f725.json | 6 -- ...re-AmazonSimpleStorageService-179e3fe.json | 6 -- .../feature-AmplifyBackend-99c59e6.json | 6 -- CHANGELOG.md | 65 +++++++++++ README.md | 8 +- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 37 ++++++- bom-internal/pom.xml | 2 +- bom/pom.xml | 37 ++++++- 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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/amplifybackend/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/appintegrations/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectcontactlens/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/devopsguru/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/pom.xml | 2 +- services/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/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/lookoutvision/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/mwaa/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 9 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerfeaturestoreruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 310 files changed, 539 insertions(+), 391 deletions(-) create mode 100644 .changes/2.15.37.json delete mode 100644 .changes/next-release/feature-AWSDirectoryService-4c4ec43.json delete mode 100644 .changes/next-release/feature-AWSLambda-99d6cfa.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json delete mode 100644 .changes/next-release/feature-AmazonAppIntegrationsService-fc3f329.json delete mode 100644 .changes/next-release/feature-AmazonConnectContactLens-4d31c61.json delete mode 100644 .changes/next-release/feature-AmazonConnectService-a65a321.json delete mode 100644 .changes/next-release/feature-AmazonDevOpsGuru-cd04a5e.json delete mode 100644 .changes/next-release/feature-AmazonElasticComputeCloud-0dae890.json delete mode 100644 .changes/next-release/feature-AmazonElasticContainerRegistryPublic-f57d589.json delete mode 100644 .changes/next-release/feature-AmazonElasticKubernetesService-47e0cc1.json delete mode 100644 .changes/next-release/feature-AmazonHoneycode-a8f7e97.json delete mode 100644 .changes/next-release/feature-AmazonLookoutforVision-da190ad.json delete mode 100644 .changes/next-release/feature-AmazonSageMakerFeatureStoreRuntime-f5ba552.json delete mode 100644 .changes/next-release/feature-AmazonSageMakerService-202f725.json delete mode 100644 .changes/next-release/feature-AmazonSimpleStorageService-179e3fe.json delete mode 100644 .changes/next-release/feature-AmplifyBackend-99c59e6.json diff --git a/.changes/2.15.37.json b/.changes/2.15.37.json new file mode 100644 index 000000000000..a6db8da9a1cc --- /dev/null +++ b/.changes/2.15.37.json @@ -0,0 +1,102 @@ +{ + "version": "2.15.37", + "date": "2020-12-01", + "entries": [ + { + "type": "feature", + "category": "Amazon Elastic Compute Cloud", + "contributor": "", + "description": "This release adds support for: EBS gp3 volumes; and D3/D3en/R5b/M5zn instances powered by Intel Cascade Lake CPUs" + }, + { + "type": "feature", + "category": "AmplifyBackend", + "contributor": "", + "description": "(New Service) The Amplify Admin UI offers an accessible way to develop app backends and manage app content. We recommend that you use the Amplify Admin UI to manage the backend of your Amplify app." + }, + { + "type": "feature", + "category": "Amazon Connect Service", + "contributor": "", + "description": "This release adds an Amazon Connect API that provides the ability to create tasks, and a set of APIs (in preview) to configure AppIntegrations associations with Amazon Connect instances." + }, + { + "type": "feature", + "category": "Amazon AppIntegrations Service", + "contributor": "", + "description": "The Amazon AppIntegrations service (in preview release) enables you to configure and reuse connections to external applications." + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." + }, + { + "type": "feature", + "category": "Amazon Connect Contact Lens", + "contributor": "", + "description": "Contact Lens for Amazon Connect analyzes conversations, both real-time and post-call. The ListRealtimeContactAnalysisSegments API returns a list of analysis segments for a real-time analysis session." + }, + { + "type": "feature", + "category": "Amazon SageMaker Feature Store Runtime", + "contributor": "", + "description": "This release adds support for Amazon SageMaker Feature Store, which makes it easy for customers to create, version, share, and manage curated data for machine learning (ML) development." + }, + { + "type": "feature", + "category": "Amazon Simple Storage Service", + "contributor": "", + "description": "S3 adds support for multiple-destination replication, option to sync replica modifications; S3 Bucket Keys to reduce cost of S3 SSE with AWS KMS" + }, + { + "type": "feature", + "category": "Amazon SageMaker Service", + "contributor": "", + "description": "Amazon SageMaker Pipelines for ML workflows. Amazon SageMaker Feature Store, a fully managed repository for ML features." + }, + { + "type": "feature", + "category": "Amazon Elastic Kubernetes Service", + "contributor": "", + "description": "Amazon EKS now allows you to define and manage the lifecycle for Kubernetes add-ons for your clusters. This release adds support for the AWS VPC CNI (vpc-cni)." + }, + { + "type": "feature", + "category": "Amazon DevOps Guru", + "contributor": "", + "description": "(New Service) Amazon DevOps Guru is available in public preview. It's a fully managed service that uses machine learning to analyze your operational solutions to help you find and troubleshoot issues." + }, + { + "type": "feature", + "category": "AWS Lambda", + "contributor": "", + "description": "This release includes support for a new feature: Container images support in AWS Lambda. This adds APIs for deploying functions as container images. AWS Lambda now supports memory up to 10240MB." + }, + { + "type": "feature", + "category": "AWS Directory Service", + "contributor": "", + "description": "Adding client authentication feature for AWS AD Connector" + }, + { + "type": "feature", + "category": "Amazon Lookout for Vision", + "contributor": "", + "description": "This release introduces support for Amazon Lookout for Vision." + }, + { + "type": "feature", + "category": "Amazon Honeycode", + "contributor": "", + "description": "Introducing APIs to read and write directly from Honeycode tables. Use APIs to pull table and column metadata, then use the read and write APIs to programmatically read and write from the tables." + }, + { + "type": "feature", + "category": "Amazon Elastic Container Registry Public", + "contributor": "", + "description": "Supports Amazon Elastic Container Registry (Amazon ECR) Public, a fully managed registry that makes it easy for a developer to publicly share container software worldwide for anyone to download." + } + ] +} diff --git a/.changes/next-release/feature-AWSDirectoryService-4c4ec43.json b/.changes/next-release/feature-AWSDirectoryService-4c4ec43.json deleted file mode 100644 index 0a59ce0525c3..000000000000 --- a/.changes/next-release/feature-AWSDirectoryService-4c4ec43.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Directory Service", - "contributor": "", - "description": "Adding client authentication feature for AWS AD Connector" -} diff --git a/.changes/next-release/feature-AWSLambda-99d6cfa.json b/.changes/next-release/feature-AWSLambda-99d6cfa.json deleted file mode 100644 index 2bd4b723499c..000000000000 --- a/.changes/next-release/feature-AWSLambda-99d6cfa.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Lambda", - "contributor": "", - "description": "This release includes support for a new feature: Container images support in AWS Lambda. This adds APIs for deploying functions as container images. AWS Lambda now supports memory up to 10240MB." -} diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json deleted file mode 100644 index ae3f84993e9e..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS SDK for Java v2", - "contributor": "", - "description": "Updated service endpoint metadata." -} diff --git a/.changes/next-release/feature-AmazonAppIntegrationsService-fc3f329.json b/.changes/next-release/feature-AmazonAppIntegrationsService-fc3f329.json deleted file mode 100644 index e14e192d6c25..000000000000 --- a/.changes/next-release/feature-AmazonAppIntegrationsService-fc3f329.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon AppIntegrations Service", - "contributor": "", - "description": "The Amazon AppIntegrations service (in preview release) enables you to configure and reuse connections to external applications." -} diff --git a/.changes/next-release/feature-AmazonConnectContactLens-4d31c61.json b/.changes/next-release/feature-AmazonConnectContactLens-4d31c61.json deleted file mode 100644 index 19411f7aafd4..000000000000 --- a/.changes/next-release/feature-AmazonConnectContactLens-4d31c61.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Connect Contact Lens", - "contributor": "", - "description": "Contact Lens for Amazon Connect analyzes conversations, both real-time and post-call. The ListRealtimeContactAnalysisSegments API returns a list of analysis segments for a real-time analysis session." -} diff --git a/.changes/next-release/feature-AmazonConnectService-a65a321.json b/.changes/next-release/feature-AmazonConnectService-a65a321.json deleted file mode 100644 index cdef806906d7..000000000000 --- a/.changes/next-release/feature-AmazonConnectService-a65a321.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Connect Service", - "contributor": "", - "description": "This release adds an Amazon Connect API that provides the ability to create tasks, and a set of APIs (in preview) to configure AppIntegrations associations with Amazon Connect instances." -} diff --git a/.changes/next-release/feature-AmazonDevOpsGuru-cd04a5e.json b/.changes/next-release/feature-AmazonDevOpsGuru-cd04a5e.json deleted file mode 100644 index 7da7b4922f7b..000000000000 --- a/.changes/next-release/feature-AmazonDevOpsGuru-cd04a5e.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon DevOps Guru", - "contributor": "", - "description": "(New Service) Amazon DevOps Guru is available in public preview. It's a fully managed service that uses machine learning to analyze your operational solutions to help you find and troubleshoot issues." -} diff --git a/.changes/next-release/feature-AmazonElasticComputeCloud-0dae890.json b/.changes/next-release/feature-AmazonElasticComputeCloud-0dae890.json deleted file mode 100644 index 11898866fd05..000000000000 --- a/.changes/next-release/feature-AmazonElasticComputeCloud-0dae890.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Elastic Compute Cloud", - "contributor": "", - "description": "This release adds support for: EBS gp3 volumes; and D3/D3en/R5b/M5zn instances powered by Intel Cascade Lake CPUs" -} diff --git a/.changes/next-release/feature-AmazonElasticContainerRegistryPublic-f57d589.json b/.changes/next-release/feature-AmazonElasticContainerRegistryPublic-f57d589.json deleted file mode 100644 index 2c880c203fdd..000000000000 --- a/.changes/next-release/feature-AmazonElasticContainerRegistryPublic-f57d589.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Elastic Container Registry Public", - "contributor": "", - "description": "Supports Amazon Elastic Container Registry (Amazon ECR) Public, a fully managed registry that makes it easy for a developer to publicly share container software worldwide for anyone to download." -} diff --git a/.changes/next-release/feature-AmazonElasticKubernetesService-47e0cc1.json b/.changes/next-release/feature-AmazonElasticKubernetesService-47e0cc1.json deleted file mode 100644 index 1e20dac03858..000000000000 --- a/.changes/next-release/feature-AmazonElasticKubernetesService-47e0cc1.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Elastic Kubernetes Service", - "contributor": "", - "description": "Amazon EKS now allows you to define and manage the lifecycle for Kubernetes add-ons for your clusters. This release adds support for the AWS VPC CNI (vpc-cni)." -} diff --git a/.changes/next-release/feature-AmazonHoneycode-a8f7e97.json b/.changes/next-release/feature-AmazonHoneycode-a8f7e97.json deleted file mode 100644 index ed8f0dc76301..000000000000 --- a/.changes/next-release/feature-AmazonHoneycode-a8f7e97.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Honeycode", - "contributor": "", - "description": "Introducing APIs to read and write directly from Honeycode tables. Use APIs to pull table and column metadata, then use the read and write APIs to programmatically read and write from the tables." -} diff --git a/.changes/next-release/feature-AmazonLookoutforVision-da190ad.json b/.changes/next-release/feature-AmazonLookoutforVision-da190ad.json deleted file mode 100644 index 2feb61d4af3a..000000000000 --- a/.changes/next-release/feature-AmazonLookoutforVision-da190ad.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Lookout for Vision", - "contributor": "", - "description": "This release introduces support for Amazon Lookout for Vision." -} diff --git a/.changes/next-release/feature-AmazonSageMakerFeatureStoreRuntime-f5ba552.json b/.changes/next-release/feature-AmazonSageMakerFeatureStoreRuntime-f5ba552.json deleted file mode 100644 index c612019fa9bf..000000000000 --- a/.changes/next-release/feature-AmazonSageMakerFeatureStoreRuntime-f5ba552.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon SageMaker Feature Store Runtime", - "contributor": "", - "description": "This release adds support for Amazon SageMaker Feature Store, which makes it easy for customers to create, version, share, and manage curated data for machine learning (ML) development." -} diff --git a/.changes/next-release/feature-AmazonSageMakerService-202f725.json b/.changes/next-release/feature-AmazonSageMakerService-202f725.json deleted file mode 100644 index edde22e2eff8..000000000000 --- a/.changes/next-release/feature-AmazonSageMakerService-202f725.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon SageMaker Service", - "contributor": "", - "description": "Amazon SageMaker Pipelines for ML workflows. Amazon SageMaker Feature Store, a fully managed repository for ML features." -} diff --git a/.changes/next-release/feature-AmazonSimpleStorageService-179e3fe.json b/.changes/next-release/feature-AmazonSimpleStorageService-179e3fe.json deleted file mode 100644 index f6e39b35efe2..000000000000 --- a/.changes/next-release/feature-AmazonSimpleStorageService-179e3fe.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Simple Storage Service", - "contributor": "", - "description": "S3 adds support for multiple-destination replication, option to sync replica modifications; S3 Bucket Keys to reduce cost of S3 SSE with AWS KMS" -} diff --git a/.changes/next-release/feature-AmplifyBackend-99c59e6.json b/.changes/next-release/feature-AmplifyBackend-99c59e6.json deleted file mode 100644 index b12ae060bd26..000000000000 --- a/.changes/next-release/feature-AmplifyBackend-99c59e6.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AmplifyBackend", - "contributor": "", - "description": "(New Service) The Amplify Admin UI offers an accessible way to develop app backends and manage app content. We recommend that you use the Amplify Admin UI to manage the backend of your Amplify app." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index de21d8c91c9d..ce7a02af3c3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,68 @@ +# __2.15.37__ __2020-12-01__ +## __AWS Directory Service__ + - ### Features + - Adding client authentication feature for AWS AD Connector + +## __AWS Lambda__ + - ### Features + - This release includes support for a new feature: Container images support in AWS Lambda. This adds APIs for deploying functions as container images. AWS Lambda now supports memory up to 10240MB. + +## __AWS SDK for Java v2__ + - ### Features + - Updated service endpoint metadata. + +## __Amazon AppIntegrations Service__ + - ### Features + - The Amazon AppIntegrations service (in preview release) enables you to configure and reuse connections to external applications. + +## __Amazon Connect Contact Lens__ + - ### Features + - Contact Lens for Amazon Connect analyzes conversations, both real-time and post-call. The ListRealtimeContactAnalysisSegments API returns a list of analysis segments for a real-time analysis session. + +## __Amazon Connect Service__ + - ### Features + - This release adds an Amazon Connect API that provides the ability to create tasks, and a set of APIs (in preview) to configure AppIntegrations associations with Amazon Connect instances. + +## __Amazon DevOps Guru__ + - ### Features + - (New Service) Amazon DevOps Guru is available in public preview. It's a fully managed service that uses machine learning to analyze your operational solutions to help you find and troubleshoot issues. + +## __Amazon Elastic Compute Cloud__ + - ### Features + - This release adds support for: EBS gp3 volumes; and D3/D3en/R5b/M5zn instances powered by Intel Cascade Lake CPUs + +## __Amazon Elastic Container Registry Public__ + - ### Features + - Supports Amazon Elastic Container Registry (Amazon ECR) Public, a fully managed registry that makes it easy for a developer to publicly share container software worldwide for anyone to download. + +## __Amazon Elastic Kubernetes Service__ + - ### Features + - Amazon EKS now allows you to define and manage the lifecycle for Kubernetes add-ons for your clusters. This release adds support for the AWS VPC CNI (vpc-cni). + +## __Amazon Honeycode__ + - ### Features + - Introducing APIs to read and write directly from Honeycode tables. Use APIs to pull table and column metadata, then use the read and write APIs to programmatically read and write from the tables. + +## __Amazon Lookout for Vision__ + - ### Features + - This release introduces support for Amazon Lookout for Vision. + +## __Amazon SageMaker Feature Store Runtime__ + - ### Features + - This release adds support for Amazon SageMaker Feature Store, which makes it easy for customers to create, version, share, and manage curated data for machine learning (ML) development. + +## __Amazon SageMaker Service__ + - ### Features + - Amazon SageMaker Pipelines for ML workflows. Amazon SageMaker Feature Store, a fully managed repository for ML features. + +## __Amazon Simple Storage Service__ + - ### Features + - S3 adds support for multiple-destination replication, option to sync replica modifications; S3 Bucket Keys to reduce cost of S3 SSE with AWS KMS + +## __AmplifyBackend__ + - ### Features + - (New Service) The Amplify Admin UI offers an accessible way to develop app backends and manage app content. We recommend that you use the Amplify Admin UI to manage the backend of your Amplify app. + # __2.15.36__ __2020-11-30__ ## __AWS SDK for Java v2__ - ### Features diff --git a/README.md b/README.md index 8692c9337dca..853a4e399843 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.36 + 2.15.37 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.36 + 2.15.37 software.amazon.awssdk s3 - 2.15.36 + 2.15.37 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.36 + 2.15.37 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 7ef358ebe71a..e55659eb6c3d 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index e04d22c5a539..3c170252272e 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 7df9807da1b1..c9192728fab5 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.15.37-SNAPSHOT + 2.15.37 ../pom.xml aws-sdk-java @@ -1198,6 +1198,41 @@ Amazon AutoScaling, etc).
mwaa ${awsjavasdk.version} + + software.amazon.awssdk + devopsguru + ${awsjavasdk.version} + + + software.amazon.awssdk + sagemakerfeaturestoreruntime + ${awsjavasdk.version} + + + software.amazon.awssdk + appintegrations + ${awsjavasdk.version} + + + software.amazon.awssdk + ecrpublic + ${awsjavasdk.version} + + + software.amazon.awssdk + amplifybackend + ${awsjavasdk.version} + + + software.amazon.awssdk + connectcontactlens + ${awsjavasdk.version} + + + software.amazon.awssdk + lookoutvision + ${awsjavasdk.version} + ${project.artifactId}-${project.version} diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index e611b15ffeb3..f7088d28baed 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index c12256ef4910..e3d22caf601a 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.37-SNAPSHOT + 2.15.37 ../pom.xml bom @@ -1323,6 +1323,41 @@ mwaa ${awsjavasdk.version} + + software.amazon.awssdk + devopsguru + ${awsjavasdk.version} + + + software.amazon.awssdk + sagemakerfeaturestoreruntime + ${awsjavasdk.version} + + + software.amazon.awssdk + appintegrations + ${awsjavasdk.version} + + + software.amazon.awssdk + ecrpublic + ${awsjavasdk.version} + + + software.amazon.awssdk + amplifybackend + ${awsjavasdk.version} + + + software.amazon.awssdk + connectcontactlens + ${awsjavasdk.version} + + + software.amazon.awssdk + lookoutvision + ${awsjavasdk.version} + diff --git a/bundle/pom.xml b/bundle/pom.xml index 4356194c2bf5..644dacdd57ac 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.37-SNAPSHOT + 2.15.37 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index e6f15e0ffd4d..ee154ca72f20 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.15.37-SNAPSHOT + 2.15.37 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 8a81d2c008a9..421b47b009b3 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.37-SNAPSHOT + 2.15.37 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 4093497ec406..6da900f003e9 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.15.37-SNAPSHOT + 2.15.37 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 2f2f6e98e7db..5dd50dbbf33c 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.37-SNAPSHOT + 2.15.37 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 290c240c4d41..4adb1a7f93bb 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index ba10d13c164e..f9d0a96c7264 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 2ec2350e0196..16e9b5f9e960 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.37-SNAPSHOT + 2.15.37 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index c5ef4a4f2b35..ba5d63f7328f 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.37-SNAPSHOT + 2.15.37 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 05ef91507a5f..da679221eb1e 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 5c9301e3f338..8bf71c8cb1a1 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 15c275ee33f2..05479f61ef4e 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.37-SNAPSHOT + 2.15.37 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index ef612ea4c504..e164e1f4d680 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.15.37-SNAPSHOT + 2.15.37 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index f6bf685f49fe..fb0a50909b72 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index de80a2ac4d42..fb24c111410f 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.15.37-SNAPSHOT + 2.15.37 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 0061b2da2a23..f19a9f927a77 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.15.37-SNAPSHOT + 2.15.37 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 90ca173ac033..a1f108b2e5e2 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.15.37-SNAPSHOT + 2.15.37 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 166989f1ed61..67060996d6ec 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 1db9a9270982..34a7dd43387f 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 524418be4b4c..6c90eafbf8a1 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.37-SNAPSHOT + 2.15.37 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index b32509f440e3..c5925bb341e2 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.37-SNAPSHOT + 2.15.37 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index b4ed0c50a960..6b271adc23c2 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.15.37-SNAPSHOT + 2.15.37 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 fb3fa95ef04c..92816127da21 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.15.37-SNAPSHOT + 2.15.37 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 52cb124232d7..c9444b654326 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.15.37-SNAPSHOT + 2.15.37 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 6e1219c8992f..a2a982e6efe0 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.15.37-SNAPSHOT + 2.15.37 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 8dc937e92630..1cf1b0dc78e4 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 298984ede915..a74f57f10f1a 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.15.37-SNAPSHOT + 2.15.37 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 3aa8fb792aca..9be9b732d990 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.15.37-SNAPSHOT + 2.15.37 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index ce195626f9a7..705169f633ad 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.37-SNAPSHOT + 2.15.37 metric-publishers diff --git a/pom.xml b/pom.xml index 441ac0d36f92..e1d0e14f8dec 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.37-SNAPSHOT + 2.15.37 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 5396ad960130..d9be097652f7 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.37-SNAPSHOT + 2.15.37 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index e4f93cd24e13..d1366942080a 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.15.37-SNAPSHOT + 2.15.37 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index a6b43e03101c..9eee01ecb9ce 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.37-SNAPSHOT + 2.15.37 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 307e004008ad..85a94476336b 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 9050fe95604a..5949125afb78 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 05f85d3de0d1..0b3470675aac 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 2471d9d2afe2..a8e8c8ca2b31 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 970f64f4b189..48e808fb86bd 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/amplifybackend/pom.xml b/services/amplifybackend/pom.xml index 9f857faea66e..74a56c259f7a 100644 --- a/services/amplifybackend/pom.xml +++ b/services/amplifybackend/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 amplifybackend AWS Java SDK :: Services :: Amplify Backend diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index c2143ea0799e..a6134dc8c80e 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 21a1426b06f2..760b0dbf3208 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 48d40e5eb663..381e5299f69a 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 36cb3bc31719..e02063651b71 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 0e54fae79844..15b7eb515a68 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/appintegrations/pom.xml b/services/appintegrations/pom.xml index 6526ca15e506..6ade25ffc987 100644 --- a/services/appintegrations/pom.xml +++ b/services/appintegrations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 appintegrations AWS Java SDK :: Services :: App Integrations diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 625d17d69aa6..3d563c64514c 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 46fd6f9529e5..c77f588858b3 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index dec4910723c5..d018c0fa2740 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index d210acb21363..99406bd877e0 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 5fb24799733a..6438e6017506 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 4a64f023a5fe..9e0c5da0252c 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 143db1261476..346e28e9c0f1 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index d998f7a8ad6d..9d86645cd0c6 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index c4629af6efc0..3abec708ea7f 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index be3bb896114b..ebfa3b737717 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index cb4d2146d844..a08473af19cd 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 70d029251727..5b2e756add88 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index af16f3f40804..f736b82a53ab 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 56729dcc2d36..abde3ade1f88 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 875d0f79894a..3622f3aff17e 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 141329a19702..8ef8a978b560 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index e0d48b8bafad..4e7be452fa57 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 786f80637dea..8bb80ca0640f 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index f0d20b3f2d04..17e54bd7b878 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 0dea11a4d4e0..2e5ba5209e1e 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 19a39090393d..02d8a092e558 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 43e04181bcc7..b838418efdf7 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 95f76caaa701..f7fea7e6acec 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 021807539475..fbac34563c85 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index c4ec87540168..2b690942e6ec 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 0bea0c6f0649..969a9146359b 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 586c8cf76665..1f726d9e53a9 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 97377c619044..b1dbc3d44c02 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 90ab24c048df..c50d3aab7a44 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 3bc446cf8603..232e8c7447b7 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 69636795dfef..57c20e21d84e 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index a1228e6fcdfa..4d6eecf4ebad 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index a6471ac0096c..722333a1a2b1 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 140037bfe5aa..85af4f28cb48 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 35c9fdf59698..de43919ffea2 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 0ac88a22d150..29498cbe3772 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index ff4d02caf4f1..2138dad80377 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index f6b9dcb7d67f..a098de5ea67e 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 1f6bf5dd7c43..1a40b5c86fd1 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 876dbf3a2638..b219418740bd 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index bcedfaf852d6..11ffa2af0177 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index f754966fe499..9c71e5e11759 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 68280e5dbf87..f37eb7529f3c 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 855cb0e043a6..2438f1b08f06 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectcontactlens/pom.xml b/services/connectcontactlens/pom.xml index fa731f0180b0..35a365ea79fc 100644 --- a/services/connectcontactlens/pom.xml +++ b/services/connectcontactlens/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 connectcontactlens AWS Java SDK :: Services :: Connect Contact Lens diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 8976c8dce9af..d5eabed5ecd8 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 7f047fabded0..60b76c14e90d 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 2ee01b984525..6ee7f4cf81a8 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 42cfab545c97..d1d8fa9144ad 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index 624c07798fe5..776a679e7f54 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 16b0f94b5f8d..a7bdc74782ea 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index dd05459ca987..191ca9d8109b 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 8994aec09dd2..36a1998df05c 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 521fb2db90a7..94146b6dc98d 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 0673f98fa446..8af285d4179c 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 8abe55cbc202..d4fae63359a0 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/devopsguru/pom.xml b/services/devopsguru/pom.xml index 3fb976227bc8..6ec8c2161081 100644 --- a/services/devopsguru/pom.xml +++ b/services/devopsguru/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 devopsguru AWS Java SDK :: Services :: Dev Ops Guru diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 66b6678ec988..33d314287ab4 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index e7c14a11b165..b2672b3bf7c3 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 08d95a83da29..1ec207ab62c3 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 27f46438e31e..1f932fb6b25e 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 603373bb3ab5..da5377ca0fbc 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 98c96ebddec4..481161fc8ff5 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index ce144051fbf4..3e3d94e93e13 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 1f5392a00589..6844f00c7b8c 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 1e1355db3f70..713505c2641a 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecrpublic/pom.xml b/services/ecrpublic/pom.xml index 010870ba5f72..8e7628dd1abd 100644 --- a/services/ecrpublic/pom.xml +++ b/services/ecrpublic/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 ecrpublic AWS Java SDK :: Services :: ECR PUBLIC diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 7d29d71c713e..d7ed68d63c2c 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 1dfcae6af9c6..56266e71e6e6 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 1b8f8325f735..19c69b5d10a4 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 0f3c48ddba69..dd212122c67c 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index c1648bbbcec0..6824c8e48637 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index d5441a4eaa39..3e4137647548 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 4577285ca84f..4d625a2ba8e1 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 92cf3f7e091f..5b257274544c 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 36295e9e1e9f..f5ff06809ef9 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 7c15f7bd6ae7..cfc2504750b2 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 2f3ab2f5dae1..30c3a1937061 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 36eeb0072df7..b6f7b4181720 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index fb3f497542f3..ddc924e1101d 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index a67c3e64e2a0..cde9ed2768cd 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 8a8ce2f6292c..28de6b07249f 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index dcbac276863f..0c9df0865dc5 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index eee42366fca1..f73536b7d7a3 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index faf9f67bf625..ae0b70cf2a0a 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index a7ad39d1a341..5fe9da03a8de 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 2a9cb4968ff4..54d56a4ead6d 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index bfd9d724c639..1a18085c76d4 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index cccf42afabd2..9dfde02b4ebf 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 49be52369b49..e073ecf9be57 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 77879f7c4c20..974b4a5f12d0 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index b274f3c1b582..9dc914ee4af3 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index faf640f31780..17da8014db35 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 1314328c9622..50c23ec72ab7 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 8bb6b6bf0d0a..9f0e8fe9a84c 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 7b8eb66e8e71..dc934e4c80b5 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 2c42f93160e1..7ede8d5f1216 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index bb073faf428e..a07dc4601ff6 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index d96538915671..22c28aa92b21 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 27520e685856..5b3113c4187b 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index cb44b56eb87d..65c99d73b018 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 3a8c329e3c0b..553ee0019ffa 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 15442b29117f..c98eab411a30 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index dea7de83e43e..7cf5159d1991 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 38e4e54ebf83..29f0a4a6290a 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 88157732d6df..e040a0cb3448 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 76b5dd54bfa0..6eb5dd7e3402 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index a5016e0fc615..8ddf9ebd0496 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index b8cf7b64cbef..83a63f2521c9 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 35f70b1ea472..a619d2bd02cb 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 11e658e4de41..6a3eb9aa33dd 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index b80b9d2dfd8c..332dcfa1a24a 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index b433a9bb53c9..656f6cad6c3d 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 99974ed77bb9..596b6b240a8c 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 44d29848e378..b5f5c3334f8c 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 8311c5eaae12..efd009867a48 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 0ccda255e5b3..bb0826774c1a 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index b8cc535e6b67..3f54c499d531 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 5680db8fef05..23eca3c5b2b5 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 234dd6554a4a..43dc7de157af 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index bd8548497a2e..0a6eaa843739 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 5adbf2e4c9b1..c1953c4d52d5 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 7478a6e6afe0..303129e328a8 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index e847d807372b..2b8af675b24c 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 8bccf756ace2..1a40030ab640 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index d874b24c68e0..c455a1cff69b 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/lookoutvision/pom.xml b/services/lookoutvision/pom.xml index 5d5c8baddc31..a34888c024fd 100644 --- a/services/lookoutvision/pom.xml +++ b/services/lookoutvision/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 lookoutvision AWS Java SDK :: Services :: Lookout Vision diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 5661b1aee57e..da946433df86 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 96251d0d6959..c598981dc832 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index c2450fbc5ab1..27a34b0adc50 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 104987e4e936..8bfba4e699a9 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 0328f122c2da..136098057505 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index f1523db35edd..eb68d8674b82 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index a775704a95ae..dbed72fa3850 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 6ea2021e8101..485ff493728f 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index c6d81c4fcc4d..7ae069774c00 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 46b23b6559e8..cf9ebf86ef10 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index cee4827bd3bf..016114d86a50 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 90cecdb3dfe8..d6acc051e27f 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 68e1a129cf65..d11a2390c378 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index ebf6c64d9538..720e50eda435 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index a9fb7aa460af..17ab66e11e38 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index fbe32513fe90..91af81987bd3 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 677fcb7e8a2d..d8be33959ebd 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 9a4c54e2b429..1d6f5aa54d7e 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 9f3d865f60e7..5511fad3e772 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 0fe50bafc70e..a11ee564fc1a 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 5c4f7c087da2..a9ffa072c7f6 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml index 0e44a8701ef6..b71eedfefe16 100644 --- a/services/mwaa/pom.xml +++ b/services/mwaa/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 mwaa AWS Java SDK :: Services :: MWAA diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 5db99cf8e578..21b72fb10a7c 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index 1f695aba5a87..d50539a981e0 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index a4aff1ddbf73..9cf078921921 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index cc10ecf2b431..55c6abec8613 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index ec38ef1d2f95..af65ef0bbb80 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 79feac26de73..63f1edeb613e 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index f7745bd74513..a410370589c1 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 7c1a16d79dd0..a696f359a3a7 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index d71743444674..9ef597330629 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index e61a62115530..7bc1b02418b8 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 4e6789f3b175..8d766804030d 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index fa9a51e11ce4..d5988818459d 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 1cd571c93b56..ec2877d2ada3 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 9e87cb774cfc..9ad29be824c9 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index e6797fe6a3a0..934a825799d6 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 1e8f1ef167c3..26bc6458c6b7 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.37-SNAPSHOT + 2.15.37 services AWS Java SDK :: Services @@ -257,6 +257,13 @@ servicecatalogappregistry networkfirewall mwaa + devopsguru + sagemakerfeaturestoreruntime + appintegrations + ecrpublic + amplifybackend + connectcontactlens + lookoutvision The AWS Java SDK services https://aws.amazon.com/sdkforjava diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index ff90b5c61f00..f2e3e3cd1e1c 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index 0b5a922c6865..c3ed4808f6ba 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 5399b9abbcbe..81474771b7de 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index ab4908cdf567..b1e60b4e0fac 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index f3cce53dc7c1..3c2e84c219c1 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 57ae53e84932..0f6ad6b8bd3b 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index f0b1e1123d67..8f283268bbed 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index fdac9b8ec48e..56a5c2c81744 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 65bdc994181d..2cb5fdde76bd 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index d1b081571ad3..67208d9d587e 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index bf0d3ee87927..3f3531dc86d7 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 5306c65baf7d..f8c67cc2733f 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 7a3744befb87..5e1f57f232bb 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 71ec10132863..3ad6014f29cc 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 0594b41a986e..39ca55a34bd8 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index b5733839a539..4ec420eb48bb 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 02d9a0c7a620..8a3a03f0dc47 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 5ba94e3d8db0..d6a4556c526a 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index ed77570b94ea..f0b7d524fe59 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index a598d3969781..d7f554942519 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index f0b843259c5f..f7dd45d382a5 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerfeaturestoreruntime/pom.xml b/services/sagemakerfeaturestoreruntime/pom.xml index a292d980b16c..a51bf4d4bc30 100644 --- a/services/sagemakerfeaturestoreruntime/pom.xml +++ b/services/sagemakerfeaturestoreruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 sagemakerfeaturestoreruntime AWS Java SDK :: Services :: Sage Maker Feature Store Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 2831141dea3b..3ab648932c14 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index cb7862369d40..d3107ce0c3c0 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 66fde66b82b8..6a700219f1fa 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 70ad1a6993c5..215afeb2a86a 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 7994030078cf..a0cba3512140 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index a6ce4c5218b9..1818a2a8552c 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 8bed2db14dff..4781c2e53b0a 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index 45e7c38a918e..73d72cdbaad0 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 448978ed02d6..aac160fdadb0 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 74ce20db7b21..3d41ee16d0a9 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 8657da84bfbc..a59ad247702e 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 05603d3bdfde..4f2895419c7d 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index f98754e4e18f..e633bc9234b9 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 460f0bffc50d..7d5101630297 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index b513916ca70c..484d763a2711 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index ea4ef290cffe..2630851381c8 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index a612d111e0ad..0f984c0204a5 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index abad809e80f6..ab41b579061c 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index be008ce21854..5a3ce1c06941 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 64c83dfbcb3b..dfcf03bf3f86 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index e7607b4e0fe9..c1f536335dcd 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 3e38c5308a15..a864b5c1bf08 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 6dc9c0a0f69e..c656d6db0397 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 4a4d03501a8e..de0d2418716d 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 2cc4f7134bdc..1a3fdda7a8ff 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index d662be1a841b..a306c57f5b67 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 8c343c66a33d..7b9b7e67e0f9 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index bc2230fc5b8b..166497cf7d46 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index c4a71f10e780..a170991a37d1 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index e609261110ee..cc564f5c67dd 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index ca01b4d74e17..467b85ac1557 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 4ffe54ddc0f8..2ed2bc8ea7e1 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index f5448741c8c8..1bf1dfb1b1d2 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index fd9e33e5433a..1c0bf426af33 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index a82d3d9a3281..8b0383519eda 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index bcfcb3f9b77b..f36b7e178f91 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 3e315c76a482..e3b87f175af5 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 59c43fadd575..a249ffc6a1e5 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 75280f7bd7da..3fdd2629a663 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 8a16538b4889..eb1bd7ecdf88 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 0122c0cc78ae..3e54535bdb5c 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 207fd7599b22..ae17c9a8d859 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index fa875c49195b..64e4124f7a46 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37-SNAPSHOT + 2.15.37 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index f17bbcd17877..98d42f4e95a8 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.15.37-SNAPSHOT + 2.15.37 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 89f775926bd7..a5336e2636f2 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.15.37-SNAPSHOT + 2.15.37 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 4ed502d94f96..368f6708a57e 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.15.37-SNAPSHOT + 2.15.37 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index cd89e4a36f08..7f5386a34184 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.15.37-SNAPSHOT + 2.15.37 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 7443c47f969a..1413b909217e 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.15.37-SNAPSHOT + 2.15.37 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index f1466705b894..e07f91c33197 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.37-SNAPSHOT + 2.15.37 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 843b804073ee..1b8dffcc0f3a 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.15.37-SNAPSHOT + 2.15.37 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index b38135114b39..5e868e1d8265 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.15.37-SNAPSHOT + 2.15.37 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index eafcb0c077ac..f0268731c3f3 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.15.37-SNAPSHOT + 2.15.37 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index d9159f6c7797..28024266b6f7 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.15.37-SNAPSHOT + 2.15.37 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 7caf9c5a336f..1bbb73b0b726 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.37-SNAPSHOT + 2.15.37 4.0.0 From ac113e4b2da888d49cec5fd5dd28373d3f8ca91e Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 2 Dec 2020 01:38:50 +0000 Subject: [PATCH 325/339] Update to next snapshot version: 2.15.38-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/amplifybackend/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/appintegrations/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectcontactlens/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/devopsguru/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/pom.xml | 2 +- services/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/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/lookoutvision/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/mwaa/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerfeaturestoreruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/pom.xml | 2 +- services/servicecatalogappregistry/pom.xml | 2 +- services/servicediscovery/pom.xml | 2 +- services/servicequotas/pom.xml | 2 +- services/ses/pom.xml | 2 +- services/sesv2/pom.xml | 2 +- services/sfn/pom.xml | 2 +- services/shield/pom.xml | 2 +- services/signer/pom.xml | 2 +- services/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 291 files changed, 291 insertions(+), 291 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index e55659eb6c3d..81c6cda2a09e 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 3c170252272e..816b59a1cc29 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index c9192728fab5..e4b9796dbcd7 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.15.37 + 2.15.38-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index f7088d28baed..8c3d409e402e 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index e3d22caf601a..eba957f6c246 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.37 + 2.15.38-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 644dacdd57ac..8c395c241c44 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.37 + 2.15.38-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index ee154ca72f20..6039bc04578a 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.15.37 + 2.15.38-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 421b47b009b3..0e8265b42118 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.37 + 2.15.38-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 6da900f003e9..e4660198e883 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.15.37 + 2.15.38-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 5dd50dbbf33c..538157cbf812 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.37 + 2.15.38-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 4adb1a7f93bb..417e64c17c22 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index f9d0a96c7264..417032ee84aa 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 16e9b5f9e960..7c6b811a6d47 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.37 + 2.15.38-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index ba5d63f7328f..54360a71d877 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.37 + 2.15.38-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index da679221eb1e..6afd1362ea41 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 8bf71c8cb1a1..5d5fe74d8177 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 05479f61ef4e..0c1d45fd64e0 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.37 + 2.15.38-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index e164e1f4d680..3a956010206e 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.15.37 + 2.15.38-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index fb0a50909b72..33409aae2c9e 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index fb24c111410f..aacf54a50b7b 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.15.37 + 2.15.38-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index f19a9f927a77..8e77a8dcbcdd 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.15.37 + 2.15.38-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index a1f108b2e5e2..181c127707d1 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.15.37 + 2.15.38-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 67060996d6ec..35c94b899be8 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 34a7dd43387f..574a155224bc 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 6c90eafbf8a1..96f2a0b7b9af 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.37 + 2.15.38-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index c5925bb341e2..58fd3d6b54b8 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.37 + 2.15.38-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 6b271adc23c2..349f58d15fa6 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.15.37 + 2.15.38-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index 92816127da21..53fa7a1ebd37 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.15.37 + 2.15.38-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index c9444b654326..43700205116a 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.15.37 + 2.15.38-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index a2a982e6efe0..c4436016a4ed 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.15.37 + 2.15.38-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 1cf1b0dc78e4..0674720d2f64 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index a74f57f10f1a..9ce93058fb3f 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.15.37 + 2.15.38-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 9be9b732d990..63e69d1de61d 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.15.37 + 2.15.38-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 705169f633ad..576a371b5266 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.37 + 2.15.38-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index e1d0e14f8dec..6025a883331f 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.37 + 2.15.38-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index d9be097652f7..a65c06af3bc3 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.37 + 2.15.38-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index d1366942080a..e079ab8ee88a 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.15.37 + 2.15.38-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 9eee01ecb9ce..c40d191a2873 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.37 + 2.15.38-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 85a94476336b..594e7380b208 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 5949125afb78..9d22ffaef326 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 0b3470675aac..486072827101 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index a8e8c8ca2b31..04f6f2ee4301 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 48e808fb86bd..fcda4625b887 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/amplifybackend/pom.xml b/services/amplifybackend/pom.xml index 74a56c259f7a..9e9d6790b43e 100644 --- a/services/amplifybackend/pom.xml +++ b/services/amplifybackend/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT amplifybackend AWS Java SDK :: Services :: Amplify Backend diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index a6134dc8c80e..0240a6e96a53 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 760b0dbf3208..66f8e50ac3a1 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 381e5299f69a..93db5e6e8df5 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index e02063651b71..8f5de0e6c22d 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 15b7eb515a68..44c60916ea8e 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/appintegrations/pom.xml b/services/appintegrations/pom.xml index 6ade25ffc987..64fbd912f35f 100644 --- a/services/appintegrations/pom.xml +++ b/services/appintegrations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT appintegrations AWS Java SDK :: Services :: App Integrations diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 3d563c64514c..db37245ea607 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index c77f588858b3..e861bce65d53 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index d018c0fa2740..a1947f52ef69 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 99406bd877e0..cf36bddc8505 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 6438e6017506..7a82f7dcefcb 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 9e0c5da0252c..9a24685b2fd3 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 346e28e9c0f1..f7f3e9c19e80 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 9d86645cd0c6..091ad3eb4b5d 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 3abec708ea7f..e0204080d5c6 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index ebfa3b737717..c085b130c763 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index a08473af19cd..d649a6e86e30 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 5b2e756add88..840c7cda9ff5 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index f736b82a53ab..04520d2482c1 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index abde3ade1f88..2c254acbf8e4 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 3622f3aff17e..bb5581587469 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 8ef8a978b560..0e9eb34c37c4 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 4e7be452fa57..afdb39563822 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 8bb80ca0640f..8cd0ba9c0a97 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 17e54bd7b878..3a6e179003f6 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 2e5ba5209e1e..4d9fb4ee0e8e 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 02d8a092e558..3d6c9c998130 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index b838418efdf7..51fc38b26d89 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index f7fea7e6acec..c4c1c6f88474 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index fbac34563c85..c853f57403fd 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 2b690942e6ec..61b31decf186 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 969a9146359b..a76fb73a15a3 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 1f726d9e53a9..fb2750234477 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index b1dbc3d44c02..5548e7a7624a 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index c50d3aab7a44..939fceeecfb9 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 232e8c7447b7..28f792854844 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 57c20e21d84e..12bda911018b 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 4d6eecf4ebad..e7c16145130b 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 722333a1a2b1..40a2b2f9fd13 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 85af4f28cb48..eee1b6473b03 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index de43919ffea2..76f6ceb501ab 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 29498cbe3772..b5d78b3a6568 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 2138dad80377..b48afe309c43 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index a098de5ea67e..f07d94484c5e 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 1a40b5c86fd1..ac40ea4dbb3b 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index b219418740bd..ec8e4084e4d6 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 11ffa2af0177..83f48157f4e7 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 9c71e5e11759..8e1b15a02310 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index f37eb7529f3c..8a8ef6f5f15b 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 2438f1b08f06..a1b3911dcfb7 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectcontactlens/pom.xml b/services/connectcontactlens/pom.xml index 35a365ea79fc..23ed862d44cd 100644 --- a/services/connectcontactlens/pom.xml +++ b/services/connectcontactlens/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT connectcontactlens AWS Java SDK :: Services :: Connect Contact Lens diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index d5eabed5ecd8..c9d3c9e94dce 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 60b76c14e90d..8570477098fe 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 6ee7f4cf81a8..b71a51ee04af 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 costexplorer diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index d1d8fa9144ad..1b2817b74cc6 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index 776a679e7f54..2f9ead8f452b 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index a7bdc74782ea..de390d50ebd7 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 191ca9d8109b..f2a0b911d96e 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 36a1998df05c..3da5c113adec 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 94146b6dc98d..536b5d555792 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 8af285d4179c..0f00618c7c78 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index d4fae63359a0..e2cd92727cdf 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/devopsguru/pom.xml b/services/devopsguru/pom.xml index 6ec8c2161081..95c8452b29ce 100644 --- a/services/devopsguru/pom.xml +++ b/services/devopsguru/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT devopsguru AWS Java SDK :: Services :: Dev Ops Guru diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 33d314287ab4..7191e686f003 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index b2672b3bf7c3..78392adad132 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 1ec207ab62c3..8096258579ba 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 1f932fb6b25e..4b91337879e6 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index da5377ca0fbc..99de182de2b2 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 481161fc8ff5..e27682b7c490 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 3e3d94e93e13..f7c33bbb054a 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 6844f00c7b8c..a8cf3aa679d0 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 713505c2641a..1343c0d04fd0 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecrpublic/pom.xml b/services/ecrpublic/pom.xml index 8e7628dd1abd..b776e02722e0 100644 --- a/services/ecrpublic/pom.xml +++ b/services/ecrpublic/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT ecrpublic AWS Java SDK :: Services :: ECR PUBLIC diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index d7ed68d63c2c..1a5ab263d7f3 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 56266e71e6e6..e817e3ffd3ee 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 19c69b5d10a4..6b8f3a0a6dbf 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index dd212122c67c..c65ae48e9b2d 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 6824c8e48637..fe01f143d4d4 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 3e4137647548..3c68de63e9d1 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 4d625a2ba8e1..25c34adbe4f5 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 5b257274544c..cbb6e8752f48 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index f5ff06809ef9..b16a3f8aa2f0 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index cfc2504750b2..1baddbfe7967 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 30c3a1937061..8cba1fa092f8 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index b6f7b4181720..9bbf1c5849d6 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index ddc924e1101d..32ffa7e3ed86 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index cde9ed2768cd..1bd4f5249819 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 28de6b07249f..1e95ed7c45a4 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 0c9df0865dc5..4faeb808d95a 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index f73536b7d7a3..3f38624b2ea6 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index ae0b70cf2a0a..81de1e876e7e 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 5fe9da03a8de..bddd817b806b 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 54d56a4ead6d..7c36bf9baa30 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 1a18085c76d4..7333264344a3 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 9dfde02b4ebf..6a2a9fec3e68 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index e073ecf9be57..f11aebf6112f 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 974b4a5f12d0..e26558fcd39d 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 9dc914ee4af3..0c80464adaf2 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 17da8014db35..4f8acfb75404 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 50c23ec72ab7..a558ecd5f90f 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 9f0e8fe9a84c..b9348c20bd81 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index dc934e4c80b5..8fbfe0dc087f 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 7ede8d5f1216..d964a2ea6716 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index a07dc4601ff6..1884f6a6e9bb 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 22c28aa92b21..9128ad6e9b10 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 5b3113c4187b..07ea76342d50 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 65c99d73b018..2f5f1fd77e1e 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 553ee0019ffa..5ec844cb0125 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index c98eab411a30..f1a8cf0fb991 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 7cf5159d1991..537fb4e298f7 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 29f0a4a6290a..78c82f1ac659 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index e040a0cb3448..1fc0ba09de4d 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 6eb5dd7e3402..1f74ba777e18 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 8ddf9ebd0496..bd9f4a3de6b5 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 83a63f2521c9..5377dd8a61dd 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index a619d2bd02cb..e0a72ef53944 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 6a3eb9aa33dd..28e001e64aad 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 332dcfa1a24a..e0f764e67e5a 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 656f6cad6c3d..5592be0f589c 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 596b6b240a8c..e9af9a429a93 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index b5f5c3334f8c..1a6cba5f5d7a 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index efd009867a48..e6f42907a698 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index bb0826774c1a..18efdc154192 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 3f54c499d531..57a695848b17 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 23eca3c5b2b5..53362430c82f 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 43dc7de157af..36ce00fd201d 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 0a6eaa843739..08c7bee7227a 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index c1953c4d52d5..367f8bf32321 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 303129e328a8..b6ca6c577660 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 2b8af675b24c..5e9a5f462306 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 1a40030ab640..395bea00a34e 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index c455a1cff69b..4ee2b330c733 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/lookoutvision/pom.xml b/services/lookoutvision/pom.xml index a34888c024fd..0c0d45874485 100644 --- a/services/lookoutvision/pom.xml +++ b/services/lookoutvision/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT lookoutvision AWS Java SDK :: Services :: Lookout Vision diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index da946433df86..62bbfea7b1f0 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index c598981dc832..d57fe7797418 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 27a34b0adc50..ec1cdaf3a72d 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 8bfba4e699a9..905ce849064c 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 136098057505..cea7120c1225 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index eb68d8674b82..3d9ca0644940 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index dbed72fa3850..2aca6bf020e8 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 485ff493728f..d0c3b0b31d5e 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 7ae069774c00..5fe7453ee756 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index cf9ebf86ef10..bc0cebd99c45 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 016114d86a50..75f358b6a00c 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index d6acc051e27f..6b414984dd10 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index d11a2390c378..b1f764762c89 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 720e50eda435..5c377c283324 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 17ab66e11e38..6cfa7cdf88a4 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 91af81987bd3..e4536b8c3a32 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index d8be33959ebd..ec55b3aef3cf 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 1d6f5aa54d7e..5974599cf065 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 5511fad3e772..aa804b6946da 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index a11ee564fc1a..c2efbc896bda 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index a9ffa072c7f6..eab7115dcf10 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml index b71eedfefe16..9a5bba36bb4e 100644 --- a/services/mwaa/pom.xml +++ b/services/mwaa/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT mwaa AWS Java SDK :: Services :: MWAA diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 21b72fb10a7c..f8a7c1f9e48b 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index d50539a981e0..25b5ffcecbc3 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 9cf078921921..b82ab33c12b1 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 55c6abec8613..5220266de7de 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index af65ef0bbb80..a2f16b3b2f12 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 63f1edeb613e..64b0bbc23477 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index a410370589c1..fec7b23e8464 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index a696f359a3a7..3d046148bf7a 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 9ef597330629..c8ce78ec4d47 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 7bc1b02418b8..0fdb7fbfe4a6 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 8d766804030d..695702aea717 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index d5988818459d..453513fe3da4 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index ec2877d2ada3..7b764875a10b 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 9ad29be824c9..bf65b69fd4e5 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 934a825799d6..daf4432de7e7 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 26bc6458c6b7..1f9cc4de2419 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.37 + 2.15.38-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index f2e3e3cd1e1c..24590aa910b6 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index c3ed4808f6ba..d475e51bac62 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 81474771b7de..117f2a116113 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index b1e60b4e0fac..e62f489a0c02 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 3c2e84c219c1..6f306e41cd7a 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 0f6ad6b8bd3b..1fd5ea7011c6 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 8f283268bbed..c4bfd35ffa7d 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 56a5c2c81744..83bc33794561 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 2cb5fdde76bd..f6d5bf7cd183 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 67208d9d587e..4365f96c0de4 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 3f3531dc86d7..5f159e149168 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index f8c67cc2733f..9e6a69fa404a 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 5e1f57f232bb..ca12f9bf855d 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 3ad6014f29cc..e3b4d89371ee 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 39ca55a34bd8..b9a51d87036c 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 4ec420eb48bb..c2779203e8cb 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 8a3a03f0dc47..89bb5eb54f91 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index d6a4556c526a..df2641a68578 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index f0b7d524fe59..6a2e13562be6 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index d7f554942519..995ad7f85c59 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index f7dd45d382a5..42e007ecf133 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerfeaturestoreruntime/pom.xml b/services/sagemakerfeaturestoreruntime/pom.xml index a51bf4d4bc30..3d6f52c782f8 100644 --- a/services/sagemakerfeaturestoreruntime/pom.xml +++ b/services/sagemakerfeaturestoreruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT sagemakerfeaturestoreruntime AWS Java SDK :: Services :: Sage Maker Feature Store Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 3ab648932c14..a48837ede8bd 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index d3107ce0c3c0..95558972afe9 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 6a700219f1fa..637164732c60 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 215afeb2a86a..ba90d684f3b5 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index a0cba3512140..9d822d33ff4a 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 1818a2a8552c..d6ff481f5d54 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 4781c2e53b0a..7184eba78749 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index 73d72cdbaad0..69923458386b 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index aac160fdadb0..3d0632486cfa 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 3d41ee16d0a9..f3e8965de3c9 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index a59ad247702e..50a313d66700 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 4f2895419c7d..b416ecea714c 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index e633bc9234b9..331c84b92244 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 7d5101630297..f972c35de8ba 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 484d763a2711..acd0dc92f73d 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 2630851381c8..8cacac4471f6 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 0f984c0204a5..3dc267451964 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index ab41b579061c..bf357d53caea 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 5a3ce1c06941..2a134ce532fa 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index dfcf03bf3f86..1c79be7891b0 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index c1f536335dcd..0e1859edb733 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index a864b5c1bf08..6aaec6fc3685 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index c656d6db0397..96f1a3b8420f 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index de0d2418716d..449f61bcc80b 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 1a3fdda7a8ff..884fa1ca2730 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index a306c57f5b67..b5fd677ced22 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 7b9b7e67e0f9..c0317e5d0ff9 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 166497cf7d46..8eef77d51e4d 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index a170991a37d1..c6f5c1426d01 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index cc564f5c67dd..835fe3713b39 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 467b85ac1557..465ebc146f95 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 2ed2bc8ea7e1..2d49557cd328 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 1bf1dfb1b1d2..78c2c3e51eea 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 1c0bf426af33..dacb3a7b9199 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 8b0383519eda..3e2c1c1a53e7 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index f36b7e178f91..62695740e097 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index e3b87f175af5..d7183514d9c7 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index a249ffc6a1e5..ff9a183a4c46 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 3fdd2629a663..b7b59faaaf4d 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index eb1bd7ecdf88..2bf054fb7c8e 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 3e54535bdb5c..d407168c0393 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index ae17c9a8d859..e685b76721bf 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 64e4124f7a46..6e1a9245c3d2 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.37 + 2.15.38-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 98d42f4e95a8..db78c6cc5c40 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.15.37 + 2.15.38-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index a5336e2636f2..7c0ac12b3a2e 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.15.37 + 2.15.38-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 368f6708a57e..626440709465 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.15.37 + 2.15.38-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 7f5386a34184..e6f329db63b4 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.15.37 + 2.15.38-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 1413b909217e..ffabc0c196ba 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.15.37 + 2.15.38-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index e07f91c33197..de7c1e08fbc0 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.37 + 2.15.38-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 1b8dffcc0f3a..72a6a1908e3c 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.15.37 + 2.15.38-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 5e868e1d8265..1041ed66686d 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.15.37 + 2.15.38-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index f0268731c3f3..503789863ff7 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.15.37 + 2.15.38-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 28024266b6f7..809fabc86840 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.15.37 + 2.15.38-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 1bbb73b0b726..6addc09448d0 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.37 + 2.15.38-SNAPSHOT 4.0.0 From 154ebdc08445011999d41f7d4e6fcab964a5e46d Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 2 Dec 2020 02:21:47 +0000 Subject: [PATCH 326/339] Amazon Connect Customer Profiles Update: This is the first release of Amazon Connect Customer Profiles, a unified customer profile for your Amazon Connect contact center. --- ...AmazonConnectCustomerProfiles-cbc7d70.json | 6 + services/customerprofiles/pom.xml | 60 + .../codegen-resources/paginators-1.json | 4 + .../codegen-resources/service-2.json | 2448 +++++++++++++++++ 4 files changed, 2518 insertions(+) create mode 100644 .changes/next-release/feature-AmazonConnectCustomerProfiles-cbc7d70.json create mode 100644 services/customerprofiles/pom.xml create mode 100644 services/customerprofiles/src/main/resources/codegen-resources/paginators-1.json create mode 100644 services/customerprofiles/src/main/resources/codegen-resources/service-2.json diff --git a/.changes/next-release/feature-AmazonConnectCustomerProfiles-cbc7d70.json b/.changes/next-release/feature-AmazonConnectCustomerProfiles-cbc7d70.json new file mode 100644 index 000000000000..eb613d4655d5 --- /dev/null +++ b/.changes/next-release/feature-AmazonConnectCustomerProfiles-cbc7d70.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "Amazon Connect Customer Profiles", + "contributor": "", + "description": "This is the first release of Amazon Connect Customer Profiles, a unified customer profile for your Amazon Connect contact center." +} diff --git a/services/customerprofiles/pom.xml b/services/customerprofiles/pom.xml new file mode 100644 index 000000000000..639a88058fe7 --- /dev/null +++ b/services/customerprofiles/pom.xml @@ -0,0 +1,60 @@ + + + + + 4.0.0 + + software.amazon.awssdk + services + 2.15.38-SNAPSHOT + + customerprofiles + AWS Java SDK :: Services :: Customer Profiles + The AWS Java SDK for Customer Profiles module holds the client classes that are used for + communicating with Customer Profiles. + + https://aws.amazon.com/sdkforjava + + + + org.apache.maven.plugins + maven-jar-plugin + + + + software.amazon.awssdk.services.customerprofiles + + + + + + + + + + software.amazon.awssdk + protocol-core + ${awsjavasdk.version} + + + software.amazon.awssdk + aws-json-protocol + ${awsjavasdk.version} + + + diff --git a/services/customerprofiles/src/main/resources/codegen-resources/paginators-1.json b/services/customerprofiles/src/main/resources/codegen-resources/paginators-1.json new file mode 100644 index 000000000000..5677bd8e4a2d --- /dev/null +++ b/services/customerprofiles/src/main/resources/codegen-resources/paginators-1.json @@ -0,0 +1,4 @@ +{ + "pagination": { + } +} diff --git a/services/customerprofiles/src/main/resources/codegen-resources/service-2.json b/services/customerprofiles/src/main/resources/codegen-resources/service-2.json new file mode 100644 index 000000000000..83ca3c5325a6 --- /dev/null +++ b/services/customerprofiles/src/main/resources/codegen-resources/service-2.json @@ -0,0 +1,2448 @@ +{ + "version":"2.0", + "metadata":{ + "apiVersion":"2020-08-15", + "endpointPrefix":"profile", + "jsonVersion":"1.1", + "protocol":"rest-json", + "serviceAbbreviation":"Customer Profiles", + "serviceFullName":"Amazon Connect Customer Profiles", + "serviceId":"Customer Profiles", + "signatureVersion":"v4", + "signingName":"profile", + "uid":"customer-profiles-2020-08-15" + }, + "operations":{ + "AddProfileKey":{ + "name":"AddProfileKey", + "http":{ + "method":"POST", + "requestUri":"/domains/{DomainName}/profiles/keys" + }, + "input":{"shape":"AddProfileKeyRequest"}, + "output":{"shape":"AddProfileKeyResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Associates a new key value with a specific profile, such as a Contact Trace Record (CTR) ContactId.

A profile object can have a single unique key and any number of additional keys that can be used to identify the profile that it belongs to.

" + }, + "CreateDomain":{ + "name":"CreateDomain", + "http":{ + "method":"POST", + "requestUri":"/domains/{DomainName}" + }, + "input":{"shape":"CreateDomainRequest"}, + "output":{"shape":"CreateDomainResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Creates a domain, which is a container for all customer data, such as customer profile attributes, object types, profile keys, and encryption keys. You can create multiple domains, and each domain can have multiple third-party integrations.

Each Amazon Connect instance can be associated with only one domain. Multiple Amazon Connect instances can be associated with one domain.

" + }, + "CreateProfile":{ + "name":"CreateProfile", + "http":{ + "method":"POST", + "requestUri":"/domains/{DomainName}/profiles" + }, + "input":{"shape":"CreateProfileRequest"}, + "output":{"shape":"CreateProfileResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Creates a standard profile.

A standard profile represents the following attributes for a customer profile in a domain.

" + }, + "DeleteDomain":{ + "name":"DeleteDomain", + "http":{ + "method":"DELETE", + "requestUri":"/domains/{DomainName}" + }, + "input":{"shape":"DeleteDomainRequest"}, + "output":{"shape":"DeleteDomainResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Deletes a specific domain and all of its customer data, such as customer profile attributes and their related objects.

" + }, + "DeleteIntegration":{ + "name":"DeleteIntegration", + "http":{ + "method":"POST", + "requestUri":"/domains/{DomainName}/integrations/delete" + }, + "input":{"shape":"DeleteIntegrationRequest"}, + "output":{"shape":"DeleteIntegrationResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Removes an integration from a specific domain.

" + }, + "DeleteProfile":{ + "name":"DeleteProfile", + "http":{ + "method":"POST", + "requestUri":"/domains/{DomainName}/profiles/delete" + }, + "input":{"shape":"DeleteProfileRequest"}, + "output":{"shape":"DeleteProfileResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Deletes the standard customer profile and all data pertaining to the profile.

" + }, + "DeleteProfileKey":{ + "name":"DeleteProfileKey", + "http":{ + "method":"POST", + "requestUri":"/domains/{DomainName}/profiles/keys/delete" + }, + "input":{"shape":"DeleteProfileKeyRequest"}, + "output":{"shape":"DeleteProfileKeyResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Removes a searchable key from a customer profile.

" + }, + "DeleteProfileObject":{ + "name":"DeleteProfileObject", + "http":{ + "method":"POST", + "requestUri":"/domains/{DomainName}/profiles/objects/delete" + }, + "input":{"shape":"DeleteProfileObjectRequest"}, + "output":{"shape":"DeleteProfileObjectResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Removes an object associated with a profile of a given ProfileObjectType.

" + }, + "DeleteProfileObjectType":{ + "name":"DeleteProfileObjectType", + "http":{ + "method":"DELETE", + "requestUri":"/domains/{DomainName}/object-types/{ObjectTypeName}" + }, + "input":{"shape":"DeleteProfileObjectTypeRequest"}, + "output":{"shape":"DeleteProfileObjectTypeResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Removes a ProfileObjectType from a specific domain as well as removes all the ProfileObjects of that type. It also disables integrations from this specific ProfileObjectType. In addition, it scrubs all of the fields of the standard profile that were populated from this ProfileObjectType.

" + }, + "GetDomain":{ + "name":"GetDomain", + "http":{ + "method":"GET", + "requestUri":"/domains/{DomainName}" + }, + "input":{"shape":"GetDomainRequest"}, + "output":{"shape":"GetDomainResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Returns information about a specific domain.

" + }, + "GetIntegration":{ + "name":"GetIntegration", + "http":{ + "method":"POST", + "requestUri":"/domains/{DomainName}/integrations" + }, + "input":{"shape":"GetIntegrationRequest"}, + "output":{"shape":"GetIntegrationResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Returns an integration for a domain.

" + }, + "GetProfileObjectType":{ + "name":"GetProfileObjectType", + "http":{ + "method":"GET", + "requestUri":"/domains/{DomainName}/object-types/{ObjectTypeName}" + }, + "input":{"shape":"GetProfileObjectTypeRequest"}, + "output":{"shape":"GetProfileObjectTypeResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Returns the object types for a specific domain.

" + }, + "GetProfileObjectTypeTemplate":{ + "name":"GetProfileObjectTypeTemplate", + "http":{ + "method":"GET", + "requestUri":"/templates/{TemplateId}" + }, + "input":{"shape":"GetProfileObjectTypeTemplateRequest"}, + "output":{"shape":"GetProfileObjectTypeTemplateResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Returns the template information for a specific object type.

A template is a predefined ProfileObjectType, such as “Salesforce-Account” or “Salesforce-Contact.” When a user sends a ProfileObject, using the PutProfileObject API, with an ObjectTypeName that matches one of the TemplateIds, it uses the mappings from the template.

" + }, + "ListAccountIntegrations":{ + "name":"ListAccountIntegrations", + "http":{ + "method":"POST", + "requestUri":"/integrations" + }, + "input":{"shape":"ListAccountIntegrationsRequest"}, + "output":{"shape":"ListAccountIntegrationsResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Lists all of the integrations associated to a specific URI in the AWS account.

" + }, + "ListDomains":{ + "name":"ListDomains", + "http":{ + "method":"GET", + "requestUri":"/domains" + }, + "input":{"shape":"ListDomainsRequest"}, + "output":{"shape":"ListDomainsResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Returns a list of all the domains for an AWS account that have been created.

" + }, + "ListIntegrations":{ + "name":"ListIntegrations", + "http":{ + "method":"GET", + "requestUri":"/domains/{DomainName}/integrations" + }, + "input":{"shape":"ListIntegrationsRequest"}, + "output":{"shape":"ListIntegrationsResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Lists all of the integrations in your domain.

" + }, + "ListProfileObjectTypeTemplates":{ + "name":"ListProfileObjectTypeTemplates", + "http":{ + "method":"GET", + "requestUri":"/templates" + }, + "input":{"shape":"ListProfileObjectTypeTemplatesRequest"}, + "output":{"shape":"ListProfileObjectTypeTemplatesResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Lists all of the template information for object types.

" + }, + "ListProfileObjectTypes":{ + "name":"ListProfileObjectTypes", + "http":{ + "method":"GET", + "requestUri":"/domains/{DomainName}/object-types" + }, + "input":{"shape":"ListProfileObjectTypesRequest"}, + "output":{"shape":"ListProfileObjectTypesResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Lists all of the templates available within the service.

" + }, + "ListProfileObjects":{ + "name":"ListProfileObjects", + "http":{ + "method":"POST", + "requestUri":"/domains/{DomainName}/profiles/objects" + }, + "input":{"shape":"ListProfileObjectsRequest"}, + "output":{"shape":"ListProfileObjectsResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Returns a list of objects associated with a profile of a given ProfileObjectType.

" + }, + "ListTagsForResource":{ + "name":"ListTagsForResource", + "http":{ + "method":"GET", + "requestUri":"/tags/{resourceArn}" + }, + "input":{"shape":"ListTagsForResourceRequest"}, + "output":{"shape":"ListTagsForResourceResponse"}, + "errors":[ + {"shape":"InternalServerException"}, + {"shape":"BadRequestException"}, + {"shape":"ResourceNotFoundException"} + ], + "documentation":"

Displays the tags associated with an Amazon Connect Customer Profiles resource. In Connect Customer Profiles, domains, profile object types, and integrations can be tagged.

" + }, + "PutIntegration":{ + "name":"PutIntegration", + "http":{ + "method":"PUT", + "requestUri":"/domains/{DomainName}/integrations" + }, + "input":{"shape":"PutIntegrationRequest"}, + "output":{"shape":"PutIntegrationResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Adds an integration between the service and a third-party service, which includes Amazon AppFlow and Amazon Connect.

An integration can belong to only one domain.

" + }, + "PutProfileObject":{ + "name":"PutProfileObject", + "http":{ + "method":"PUT", + "requestUri":"/domains/{DomainName}/profiles/objects" + }, + "input":{"shape":"PutProfileObjectRequest"}, + "output":{"shape":"PutProfileObjectResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Adds additional objects to customer profiles of a given ObjectType.

When adding a specific profile object, like a Contact Trace Record (CTR), an inferred profile can get created if it is not mapped to an existing profile. The resulting profile will only have a phone number populated in the standard ProfileObject. Any additional CTRs with the same phone number will be mapped to the same inferred profile.

When a ProfileObject is created and if a ProfileObjectType already exists for the ProfileObject, it will provide data to a standard profile depending on the ProfileObjectType definition.

PutProfileObject needs an ObjectType, which can be created using PutProfileObjectType.

" + }, + "PutProfileObjectType":{ + "name":"PutProfileObjectType", + "http":{ + "method":"PUT", + "requestUri":"/domains/{DomainName}/object-types/{ObjectTypeName}" + }, + "input":{"shape":"PutProfileObjectTypeRequest"}, + "output":{"shape":"PutProfileObjectTypeResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Defines a ProfileObjectType.

" + }, + "SearchProfiles":{ + "name":"SearchProfiles", + "http":{ + "method":"POST", + "requestUri":"/domains/{DomainName}/profiles/search" + }, + "input":{"shape":"SearchProfilesRequest"}, + "output":{"shape":"SearchProfilesResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Searches for profiles within a specific domain name using name, phone number, email address, account number, or a custom defined index.

" + }, + "TagResource":{ + "name":"TagResource", + "http":{ + "method":"POST", + "requestUri":"/tags/{resourceArn}" + }, + "input":{"shape":"TagResourceRequest"}, + "output":{"shape":"TagResourceResponse"}, + "errors":[ + {"shape":"InternalServerException"}, + {"shape":"BadRequestException"}, + {"shape":"ResourceNotFoundException"} + ], + "documentation":"

Assigns one or more tags (key-value pairs) to the specified Amazon Connect Customer Profiles resource. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. In Connect Customer Profiles, domains, profile object types, and integrations can be tagged.

Tags don't have any semantic meaning to AWS and are interpreted strictly as strings of characters.

You can use the TagResource action with a resource that already has tags. If you specify a new tag key, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value that you specify replaces the previous value for that tag.

You can associate as many as 50 tags with a resource.

" + }, + "UntagResource":{ + "name":"UntagResource", + "http":{ + "method":"DELETE", + "requestUri":"/tags/{resourceArn}" + }, + "input":{"shape":"UntagResourceRequest"}, + "output":{"shape":"UntagResourceResponse"}, + "errors":[ + {"shape":"InternalServerException"}, + {"shape":"BadRequestException"}, + {"shape":"ResourceNotFoundException"} + ], + "documentation":"

Removes one or more tags from the specified Amazon Connect Customer Profiles resource. In Connect Customer Profiles, domains, profile object types, and integrations can be tagged.

" + }, + "UpdateDomain":{ + "name":"UpdateDomain", + "http":{ + "method":"PUT", + "requestUri":"/domains/{DomainName}" + }, + "input":{"shape":"UpdateDomainRequest"}, + "output":{"shape":"UpdateDomainResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Updates the properties of a domain, including creating or selecting a dead letter queue or an encryption key.

Once a domain is created, the name can’t be changed.

" + }, + "UpdateProfile":{ + "name":"UpdateProfile", + "http":{ + "method":"PUT", + "requestUri":"/domains/{DomainName}/profiles" + }, + "input":{"shape":"UpdateProfileRequest"}, + "output":{"shape":"UpdateProfileResponse"}, + "errors":[ + {"shape":"BadRequestException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ThrottlingException"}, + {"shape":"InternalServerException"} + ], + "documentation":"

Updates the properties of a profile. The ProfileId is required for updating a customer profile.

When calling the UpdateProfile API, specifying an empty string value means that any existing value will be removed. Not specifying a string value means that any value already there will be kept.

" + } + }, + "shapes":{ + "name":{ + "type":"string", + "max":64, + "min":1, + "pattern":"^[a-zA-Z0-9_-]+$" + }, + "AccessDeniedException":{ + "type":"structure", + "members":{ + "Message":{"shape":"message"} + }, + "documentation":"

You do not have sufficient access to perform this action.

", + "error":{"httpStatusCode":403}, + "exception":true + }, + "AddProfileKeyRequest":{ + "type":"structure", + "required":[ + "ProfileId", + "KeyName", + "Values", + "DomainName" + ], + "members":{ + "ProfileId":{ + "shape":"uuid", + "documentation":"

The unique identifier of a customer profile.

" + }, + "KeyName":{ + "shape":"name", + "documentation":"

A searchable identifier of a customer profile.

" + }, + "Values":{ + "shape":"requestValueList", + "documentation":"

A list of key values.

" + }, + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

", + "location":"uri", + "locationName":"DomainName" + } + } + }, + "AddProfileKeyResponse":{ + "type":"structure", + "members":{ + "KeyName":{ + "shape":"name", + "documentation":"

A searchable identifier of a customer profile.

" + }, + "Values":{ + "shape":"requestValueList", + "documentation":"

A list of key values.

" + } + } + }, + "Address":{ + "type":"structure", + "members":{ + "Address1":{ + "shape":"string1To255", + "documentation":"

The first line of a customer address.

" + }, + "Address2":{ + "shape":"string1To255", + "documentation":"

The second line of a customer address.

" + }, + "Address3":{ + "shape":"string1To255", + "documentation":"

The third line of a customer address.

" + }, + "Address4":{ + "shape":"string1To255", + "documentation":"

The fourth line of a customer address.

" + }, + "City":{ + "shape":"string1To255", + "documentation":"

The city in which a customer lives.

" + }, + "County":{ + "shape":"string1To255", + "documentation":"

The county in which a customer lives.

" + }, + "State":{ + "shape":"string1To255", + "documentation":"

The state in which a customer lives.

" + }, + "Province":{ + "shape":"string1To255", + "documentation":"

The province in which a customer lives.

" + }, + "Country":{ + "shape":"string1To255", + "documentation":"

The country in which a customer lives.

" + }, + "PostalCode":{ + "shape":"string1To255", + "documentation":"

The postal code of a customer address.

" + } + }, + "documentation":"

A generic address associated with the customer that is not mailing, shipping, or billing.

" + }, + "Attributes":{ + "type":"map", + "key":{"shape":"string1To255"}, + "value":{"shape":"string1To255"} + }, + "BadRequestException":{ + "type":"structure", + "members":{ + "Message":{"shape":"message"} + }, + "documentation":"

The input you provided is invalid.

", + "error":{"httpStatusCode":400}, + "exception":true + }, + "CreateDomainRequest":{ + "type":"structure", + "required":[ + "DomainName", + "DefaultExpirationDays" + ], + "members":{ + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

", + "location":"uri", + "locationName":"DomainName" + }, + "DefaultExpirationDays":{ + "shape":"expirationDaysInteger", + "documentation":"

The default number of days until the data within the domain expires.

" + }, + "DefaultEncryptionKey":{ + "shape":"encryptionKey", + "documentation":"

The default encryption key, which is an AWS managed key, is used when no specific type of encryption key is specified. It is used to encrypt all data before it is placed in permanent or semi-permanent storage.

" + }, + "DeadLetterQueueUrl":{ + "shape":"sqsQueueUrl", + "documentation":"

The URL of the SQS dead letter queue, which is used for reporting errors associated with ingesting data from third party applications. You must set up a policy on the DeadLetterQueue for the SendMessage operation to enable Amazon Connect Customer Profiles to send messages to the DeadLetterQueue.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

The tags used to organize, track, or control access for this resource.

" + } + } + }, + "CreateDomainResponse":{ + "type":"structure", + "required":[ + "DomainName", + "DefaultExpirationDays", + "CreatedAt", + "LastUpdatedAt" + ], + "members":{ + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

" + }, + "DefaultExpirationDays":{ + "shape":"expirationDaysInteger", + "documentation":"

The default number of days until the data within the domain expires.

" + }, + "DefaultEncryptionKey":{ + "shape":"encryptionKey", + "documentation":"

The default encryption key, which is an AWS managed key, is used when no specific type of encryption key is specified. It is used to encrypt all data before it is placed in permanent or semi-permanent storage.

" + }, + "DeadLetterQueueUrl":{ + "shape":"sqsQueueUrl", + "documentation":"

The URL of the SQS dead letter queue, which is used for reporting errors associated with ingesting data from third party applications.

" + }, + "CreatedAt":{ + "shape":"timestamp", + "documentation":"

The timestamp of when the domain was created.

" + }, + "LastUpdatedAt":{ + "shape":"timestamp", + "documentation":"

The timestamp of when the domain was most recently edited.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

The tags used to organize, track, or control access for this resource.

" + } + } + }, + "CreateProfileRequest":{ + "type":"structure", + "required":["DomainName"], + "members":{ + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

", + "location":"uri", + "locationName":"DomainName" + }, + "AccountNumber":{ + "shape":"string1To255", + "documentation":"

A unique account number that you have given to the customer.

" + }, + "AdditionalInformation":{ + "shape":"string1To1000", + "documentation":"

Any additional information relevant to the customer's profile.

" + }, + "PartyType":{ + "shape":"PartyType", + "documentation":"

The type of profile used to describe the customer.

" + }, + "BusinessName":{ + "shape":"string1To255", + "documentation":"

The name of the customer’s business.

" + }, + "FirstName":{ + "shape":"string1To255", + "documentation":"

The customer’s first name.

" + }, + "MiddleName":{ + "shape":"string1To255", + "documentation":"

The customer’s middle name.

" + }, + "LastName":{ + "shape":"string1To255", + "documentation":"

The customer’s last name.

" + }, + "BirthDate":{ + "shape":"string1To255", + "documentation":"

The customer’s birth date.

" + }, + "Gender":{ + "shape":"Gender", + "documentation":"

The gender with which the customer identifies.

" + }, + "PhoneNumber":{ + "shape":"string1To255", + "documentation":"

The customer's phone number, which has not been specified as a mobile, home, or business number.

" + }, + "MobilePhoneNumber":{ + "shape":"string1To255", + "documentation":"

The customer’s mobile phone number.

" + }, + "HomePhoneNumber":{ + "shape":"string1To255", + "documentation":"

The customer’s home phone number.

" + }, + "BusinessPhoneNumber":{ + "shape":"string1To255", + "documentation":"

The customer’s business phone number.

" + }, + "EmailAddress":{ + "shape":"string1To255", + "documentation":"

The customer's email address, which has not been specified as a personal or business address.

" + }, + "PersonalEmailAddress":{ + "shape":"string1To255", + "documentation":"

The customer’s personal email address.

" + }, + "BusinessEmailAddress":{ + "shape":"string1To255", + "documentation":"

The customer’s business email address.

" + }, + "Address":{ + "shape":"Address", + "documentation":"

A generic address associated with the customer that is not mailing, shipping, or billing.

" + }, + "ShippingAddress":{ + "shape":"Address", + "documentation":"

The customer’s shipping address.

" + }, + "MailingAddress":{ + "shape":"Address", + "documentation":"

The customer’s mailing address.

" + }, + "BillingAddress":{ + "shape":"Address", + "documentation":"

The customer’s billing address.

" + }, + "Attributes":{ + "shape":"Attributes", + "documentation":"

A key value pair of attributes of a customer profile.

" + } + } + }, + "CreateProfileResponse":{ + "type":"structure", + "required":["ProfileId"], + "members":{ + "ProfileId":{ + "shape":"uuid", + "documentation":"

The unique identifier of a customer profile.

" + } + } + }, + "DeleteDomainRequest":{ + "type":"structure", + "required":["DomainName"], + "members":{ + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

", + "location":"uri", + "locationName":"DomainName" + } + } + }, + "DeleteDomainResponse":{ + "type":"structure", + "required":["Message"], + "members":{ + "Message":{ + "shape":"message", + "documentation":"

A message that indicates the delete request is done.

" + } + } + }, + "DeleteIntegrationRequest":{ + "type":"structure", + "required":["DomainName"], + "members":{ + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

", + "location":"uri", + "locationName":"DomainName" + }, + "Uri":{ + "shape":"string1To255", + "documentation":"

The URI of the S3 bucket or any other type of data source.

" + } + } + }, + "DeleteIntegrationResponse":{ + "type":"structure", + "required":["Message"], + "members":{ + "Message":{ + "shape":"message", + "documentation":"

A message that indicates the delete request is done.

" + } + } + }, + "DeleteProfileKeyRequest":{ + "type":"structure", + "required":[ + "ProfileId", + "KeyName", + "Values", + "DomainName" + ], + "members":{ + "ProfileId":{ + "shape":"uuid", + "documentation":"

The unique identifier of a customer profile.

" + }, + "KeyName":{ + "shape":"name", + "documentation":"

A searchable identifier of a customer profile.

" + }, + "Values":{ + "shape":"requestValueList", + "documentation":"

A list of key values.

" + }, + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

", + "location":"uri", + "locationName":"DomainName" + } + } + }, + "DeleteProfileKeyResponse":{ + "type":"structure", + "members":{ + "Message":{ + "shape":"message", + "documentation":"

A message that indicates the delete request is done.

" + } + } + }, + "DeleteProfileObjectRequest":{ + "type":"structure", + "required":[ + "ProfileId", + "ProfileObjectUniqueKey", + "ObjectTypeName", + "DomainName" + ], + "members":{ + "ProfileId":{ + "shape":"uuid", + "documentation":"

The unique identifier of a customer profile.

" + }, + "ProfileObjectUniqueKey":{ + "shape":"string1To255", + "documentation":"

The unique identifier of the profile object generated by the service.

" + }, + "ObjectTypeName":{ + "shape":"typeName", + "documentation":"

The name of the profile object type.

" + }, + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

", + "location":"uri", + "locationName":"DomainName" + } + } + }, + "DeleteProfileObjectResponse":{ + "type":"structure", + "members":{ + "Message":{ + "shape":"message", + "documentation":"

A message that indicates the delete request is done.

" + } + } + }, + "DeleteProfileObjectTypeRequest":{ + "type":"structure", + "required":[ + "DomainName", + "ObjectTypeName" + ], + "members":{ + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

", + "location":"uri", + "locationName":"DomainName" + }, + "ObjectTypeName":{ + "shape":"typeName", + "documentation":"

The name of the profile object type.

", + "location":"uri", + "locationName":"ObjectTypeName" + } + } + }, + "DeleteProfileObjectTypeResponse":{ + "type":"structure", + "required":["Message"], + "members":{ + "Message":{ + "shape":"message", + "documentation":"

A message that indicates the delete request is done.

" + } + } + }, + "DeleteProfileRequest":{ + "type":"structure", + "required":[ + "ProfileId", + "DomainName" + ], + "members":{ + "ProfileId":{ + "shape":"uuid", + "documentation":"

The unique identifier of a customer profile.

" + }, + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

", + "location":"uri", + "locationName":"DomainName" + } + } + }, + "DeleteProfileResponse":{ + "type":"structure", + "members":{ + "Message":{ + "shape":"message", + "documentation":"

A message that indicates the delete request is done.

" + } + } + }, + "DomainList":{ + "type":"list", + "member":{"shape":"ListDomainItem"} + }, + "DomainStats":{ + "type":"structure", + "members":{ + "ProfileCount":{ + "shape":"long", + "documentation":"

The total number of profiles currently in the domain.

" + }, + "MeteringProfileCount":{ + "shape":"long", + "documentation":"

The number of profiles that you are currently paying for in the domain. If you have more than 100 objects associated with a single profile, that profile counts as two profiles. If you have more than 200 objects, that profile counts as three, and so on.

" + }, + "ObjectCount":{ + "shape":"long", + "documentation":"

The total number of objects in domain.

" + }, + "TotalSize":{ + "shape":"long", + "documentation":"

The total size, in bytes, of all objects in the domain.

" + } + }, + "documentation":"

Usage-specific statistics about the domain.

" + }, + "FieldContentType":{ + "type":"string", + "enum":[ + "STRING", + "NUMBER", + "PHONE_NUMBER", + "EMAIL_ADDRESS", + "NAME" + ] + }, + "FieldMap":{ + "type":"map", + "key":{"shape":"name"}, + "value":{"shape":"ObjectTypeField"} + }, + "FieldNameList":{ + "type":"list", + "member":{"shape":"name"} + }, + "Gender":{ + "type":"string", + "enum":[ + "MALE", + "FEMALE", + "UNSPECIFIED" + ] + }, + "GetDomainRequest":{ + "type":"structure", + "required":["DomainName"], + "members":{ + "DomainName":{ + "shape":"name", + "documentation":"

A unique name for the domain.

", + "location":"uri", + "locationName":"DomainName" + } + } + }, + "GetDomainResponse":{ + "type":"structure", + "required":[ + "DomainName", + "CreatedAt", + "LastUpdatedAt" + ], + "members":{ + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

" + }, + "DefaultExpirationDays":{ + "shape":"expirationDaysInteger", + "documentation":"

The default number of days until the data within the domain expires.

" + }, + "DefaultEncryptionKey":{ + "shape":"encryptionKey", + "documentation":"

The default encryption key, which is an AWS managed key, is used when no specific type of encryption key is specified. It is used to encrypt all data before it is placed in permanent or semi-permanent storage.

" + }, + "DeadLetterQueueUrl":{ + "shape":"sqsQueueUrl", + "documentation":"

The URL of the SQS dead letter queue, which is used for reporting errors associated with ingesting data from third party applications.

" + }, + "Stats":{ + "shape":"DomainStats", + "documentation":"

Usage-specific statistics about the domain.

" + }, + "CreatedAt":{ + "shape":"timestamp", + "documentation":"

The timestamp of when the domain was created.

" + }, + "LastUpdatedAt":{ + "shape":"timestamp", + "documentation":"

The timestamp of when the domain was most recently edited.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

The tags used to organize, track, or control access for this resource.

" + } + } + }, + "GetIntegrationRequest":{ + "type":"structure", + "required":["DomainName"], + "members":{ + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

", + "location":"uri", + "locationName":"DomainName" + }, + "Uri":{ + "shape":"string1To255", + "documentation":"

The URI of the S3 bucket or any other type of data source.

" + } + } + }, + "GetIntegrationResponse":{ + "type":"structure", + "required":[ + "DomainName", + "Uri", + "ObjectTypeName", + "CreatedAt", + "LastUpdatedAt" + ], + "members":{ + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

" + }, + "Uri":{ + "shape":"string1To255", + "documentation":"

The URI of the S3 bucket or any other type of data source.

" + }, + "ObjectTypeName":{ + "shape":"typeName", + "documentation":"

The name of the profile object type.

" + }, + "CreatedAt":{ + "shape":"timestamp", + "documentation":"

The timestamp of when the domain was created.

" + }, + "LastUpdatedAt":{ + "shape":"timestamp", + "documentation":"

The timestamp of when the domain was most recently edited.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

The tags used to organize, track, or control access for this resource.

" + } + } + }, + "GetProfileObjectTypeRequest":{ + "type":"structure", + "required":[ + "DomainName", + "ObjectTypeName" + ], + "members":{ + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

", + "location":"uri", + "locationName":"DomainName" + }, + "ObjectTypeName":{ + "shape":"typeName", + "documentation":"

The name of the profile object type.

", + "location":"uri", + "locationName":"ObjectTypeName" + } + } + }, + "GetProfileObjectTypeResponse":{ + "type":"structure", + "required":[ + "ObjectTypeName", + "Description" + ], + "members":{ + "ObjectTypeName":{ + "shape":"typeName", + "documentation":"

The name of the profile object type.

" + }, + "Description":{ + "shape":"text", + "documentation":"

The description of the profile object type.

" + }, + "TemplateId":{ + "shape":"name", + "documentation":"

A unique identifier for the object template.

" + }, + "ExpirationDays":{ + "shape":"expirationDaysInteger", + "documentation":"

The number of days until the data in the object expires.

" + }, + "EncryptionKey":{ + "shape":"encryptionKey", + "documentation":"

The customer-provided key to encrypt the profile object that will be created in this profile object type.

" + }, + "AllowProfileCreation":{ + "shape":"boolean", + "documentation":"

Indicates whether a profile should be created when data is received if one doesn’t exist for an object of this type. The default is FALSE. If the AllowProfileCreation flag is set to FALSE, then the service tries to fetch a standard profile and associate this object with the profile. If it is set to TRUE, and if no match is found, then the service creates a new standard profile.

" + }, + "Fields":{ + "shape":"FieldMap", + "documentation":"

A map of the name and ObjectType field.

" + }, + "Keys":{ + "shape":"KeyMap", + "documentation":"

A list of unique keys that can be used to map data to the profile.

" + }, + "CreatedAt":{ + "shape":"timestamp", + "documentation":"

The timestamp of when the domain was created.

" + }, + "LastUpdatedAt":{ + "shape":"timestamp", + "documentation":"

The timestamp of when the domain was most recently edited.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

The tags used to organize, track, or control access for this resource.

" + } + } + }, + "GetProfileObjectTypeTemplateRequest":{ + "type":"structure", + "required":["TemplateId"], + "members":{ + "TemplateId":{ + "shape":"name", + "documentation":"

A unique identifier for the object template.

", + "location":"uri", + "locationName":"TemplateId" + } + } + }, + "GetProfileObjectTypeTemplateResponse":{ + "type":"structure", + "members":{ + "TemplateId":{ + "shape":"name", + "documentation":"

A unique identifier for the object template.

" + }, + "SourceName":{ + "shape":"name", + "documentation":"

The name of the source of the object template.

" + }, + "SourceObject":{ + "shape":"name", + "documentation":"

The source of the object template.

" + }, + "AllowProfileCreation":{ + "shape":"boolean", + "documentation":"

Indicates whether a profile should be created when data is received if one doesn’t exist for an object of this type. The default is FALSE. If the AllowProfileCreation flag is set to FALSE, then the service tries to fetch a standard profile and associate this object with the profile. If it is set to TRUE, and if no match is found, then the service creates a new standard profile.

" + }, + "Fields":{ + "shape":"FieldMap", + "documentation":"

A map of the name and ObjectType field.

" + }, + "Keys":{ + "shape":"KeyMap", + "documentation":"

A list of unique keys that can be used to map data to the profile.

" + } + } + }, + "IntegrationList":{ + "type":"list", + "member":{"shape":"ListIntegrationItem"} + }, + "InternalServerException":{ + "type":"structure", + "members":{ + "Message":{"shape":"message"} + }, + "documentation":"

An internal service error occurred.

", + "error":{"httpStatusCode":500}, + "exception":true, + "fault":true + }, + "KeyMap":{ + "type":"map", + "key":{"shape":"name"}, + "value":{"shape":"ObjectTypeKeyList"} + }, + "ListAccountIntegrationsRequest":{ + "type":"structure", + "required":["Uri"], + "members":{ + "Uri":{ + "shape":"string1To255", + "documentation":"

The URI of the S3 bucket or any other type of data source.

" + }, + "NextToken":{ + "shape":"token", + "documentation":"

The pagination token from the previous ListAccountIntegrations API call.

", + "location":"querystring", + "locationName":"next-token" + }, + "MaxResults":{ + "shape":"maxSize100", + "documentation":"

The maximum number of objects returned per page.

", + "location":"querystring", + "locationName":"max-results" + } + } + }, + "ListAccountIntegrationsResponse":{ + "type":"structure", + "members":{ + "Items":{ + "shape":"IntegrationList", + "documentation":"

The list of ListAccountIntegration instances.

" + }, + "NextToken":{ + "shape":"token", + "documentation":"

The pagination token from the previous ListAccountIntegrations API call.

" + } + } + }, + "ListDomainItem":{ + "type":"structure", + "required":[ + "DomainName", + "CreatedAt", + "LastUpdatedAt" + ], + "members":{ + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

" + }, + "CreatedAt":{ + "shape":"timestamp", + "documentation":"

The timestamp of when the domain was created.

" + }, + "LastUpdatedAt":{ + "shape":"timestamp", + "documentation":"

The timestamp of when the domain was most recently edited.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

The tags used to organize, track, or control access for this resource.

" + } + }, + "documentation":"

An object in a list that represents a domain.

" + }, + "ListDomainsRequest":{ + "type":"structure", + "members":{ + "NextToken":{ + "shape":"token", + "documentation":"

The pagination token from the previous ListDomain API call.

", + "location":"querystring", + "locationName":"next-token" + }, + "MaxResults":{ + "shape":"maxSize100", + "documentation":"

The maximum number of objects returned per page.

", + "location":"querystring", + "locationName":"max-results" + } + } + }, + "ListDomainsResponse":{ + "type":"structure", + "members":{ + "Items":{ + "shape":"DomainList", + "documentation":"

The list of ListDomains instances.

" + }, + "NextToken":{ + "shape":"token", + "documentation":"

The pagination token from the previous ListDomains API call.

" + } + } + }, + "ListIntegrationItem":{ + "type":"structure", + "required":[ + "DomainName", + "Uri", + "ObjectTypeName", + "CreatedAt", + "LastUpdatedAt" + ], + "members":{ + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

" + }, + "Uri":{ + "shape":"string1To255", + "documentation":"

The URI of the S3 bucket or any other type of data source.

" + }, + "ObjectTypeName":{ + "shape":"typeName", + "documentation":"

The name of the profile object type.

" + }, + "CreatedAt":{ + "shape":"timestamp", + "documentation":"

The timestamp of when the domain was created.

" + }, + "LastUpdatedAt":{ + "shape":"timestamp", + "documentation":"

The timestamp of when the domain was most recently edited.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

The tags used to organize, track, or control access for this resource.

" + } + }, + "documentation":"

An integration in list of integrations.

" + }, + "ListIntegrationsRequest":{ + "type":"structure", + "required":["DomainName"], + "members":{ + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

", + "location":"uri", + "locationName":"DomainName" + }, + "NextToken":{ + "shape":"token", + "documentation":"

The pagination token from the previous ListIntegrations API call.

", + "location":"querystring", + "locationName":"next-token" + }, + "MaxResults":{ + "shape":"maxSize100", + "documentation":"

The maximum number of objects returned per page.

", + "location":"querystring", + "locationName":"max-results" + } + } + }, + "ListIntegrationsResponse":{ + "type":"structure", + "members":{ + "Items":{ + "shape":"IntegrationList", + "documentation":"

The list of ListIntegrations instances.

" + }, + "NextToken":{ + "shape":"token", + "documentation":"

The pagination token from the previous ListIntegrations API call.

" + } + } + }, + "ListProfileObjectTypeItem":{ + "type":"structure", + "required":[ + "ObjectTypeName", + "Description" + ], + "members":{ + "ObjectTypeName":{ + "shape":"typeName", + "documentation":"

The name of the profile object type.

" + }, + "Description":{ + "shape":"text", + "documentation":"

Description of the profile object type.

" + }, + "CreatedAt":{ + "shape":"timestamp", + "documentation":"

The timestamp of when the domain was created.

" + }, + "LastUpdatedAt":{ + "shape":"timestamp", + "documentation":"

The timestamp of when the domain was most recently edited.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

The tags used to organize, track, or control access for this resource.

" + } + }, + "documentation":"

A ProfileObjectType instance.

" + }, + "ListProfileObjectTypeTemplateItem":{ + "type":"structure", + "members":{ + "TemplateId":{ + "shape":"name", + "documentation":"

A unique identifier for the object template.

" + }, + "SourceName":{ + "shape":"name", + "documentation":"

The name of the source of the object template.

" + }, + "SourceObject":{ + "shape":"name", + "documentation":"

The source of the object template.

" + } + }, + "documentation":"

A ProfileObjectTypeTemplate in a list of ProfileObjectTypeTemplates.

" + }, + "ListProfileObjectTypeTemplatesRequest":{ + "type":"structure", + "members":{ + "NextToken":{ + "shape":"token", + "documentation":"

The pagination token from the previous ListObjectTypeTemplates API call.

", + "location":"querystring", + "locationName":"next-token" + }, + "MaxResults":{ + "shape":"maxSize100", + "documentation":"

The maximum number of objects returned per page.

", + "location":"querystring", + "locationName":"max-results" + } + } + }, + "ListProfileObjectTypeTemplatesResponse":{ + "type":"structure", + "members":{ + "Items":{ + "shape":"ProfileObjectTypeTemplateList", + "documentation":"

The list of ListProfileObjectType template instances.

" + }, + "NextToken":{ + "shape":"token", + "documentation":"

The pagination token from the previous ListObjectTypeTemplates API call.

" + } + } + }, + "ListProfileObjectTypesRequest":{ + "type":"structure", + "required":["DomainName"], + "members":{ + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

", + "location":"uri", + "locationName":"DomainName" + }, + "NextToken":{ + "shape":"token", + "documentation":"

Identifies the next page of results to return.

", + "location":"querystring", + "locationName":"next-token" + }, + "MaxResults":{ + "shape":"maxSize100", + "documentation":"

The maximum number of objects returned per page.

", + "location":"querystring", + "locationName":"max-results" + } + } + }, + "ListProfileObjectTypesResponse":{ + "type":"structure", + "members":{ + "Items":{ + "shape":"ProfileObjectTypeList", + "documentation":"

The list of ListProfileObjectTypes instances.

" + }, + "NextToken":{ + "shape":"token", + "documentation":"

Identifies the next page of results to return.

" + } + } + }, + "ListProfileObjectsItem":{ + "type":"structure", + "members":{ + "ObjectTypeName":{ + "shape":"typeName", + "documentation":"

Specifies the kind of object being added to a profile, such as \"Salesforce-Account.\"

" + }, + "ProfileObjectUniqueKey":{ + "shape":"string1To255", + "documentation":"

The unique identifier of the ProfileObject generated by the service.

" + }, + "Object":{ + "shape":"stringifiedJson", + "documentation":"

A JSON representation of a ProfileObject that belongs to a profile.

" + } + }, + "documentation":"

A ProfileObject in a list of ProfileObjects.

" + }, + "ListProfileObjectsRequest":{ + "type":"structure", + "required":[ + "DomainName", + "ObjectTypeName", + "ProfileId" + ], + "members":{ + "NextToken":{ + "shape":"token", + "documentation":"

The pagination token from the previous call to ListProfileObjects.

", + "location":"querystring", + "locationName":"next-token" + }, + "MaxResults":{ + "shape":"maxSize100", + "documentation":"

The maximum number of objects returned per page.

", + "location":"querystring", + "locationName":"max-results" + }, + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

", + "location":"uri", + "locationName":"DomainName" + }, + "ObjectTypeName":{ + "shape":"typeName", + "documentation":"

The name of the profile object type.

" + }, + "ProfileId":{ + "shape":"uuid", + "documentation":"

The unique identifier of a customer profile.

" + } + } + }, + "ListProfileObjectsResponse":{ + "type":"structure", + "members":{ + "Items":{ + "shape":"ProfileObjectList", + "documentation":"

The list of ListProfileObject instances.

" + }, + "NextToken":{ + "shape":"token", + "documentation":"

The pagination token from the previous call to ListProfileObjects.

" + } + } + }, + "ListTagsForResourceRequest":{ + "type":"structure", + "required":["resourceArn"], + "members":{ + "resourceArn":{ + "shape":"TagArn", + "documentation":"

The ARN of the resource for which you want to view tags.

", + "location":"uri", + "locationName":"resourceArn" + } + } + }, + "ListTagsForResourceResponse":{ + "type":"structure", + "members":{ + "tags":{ + "shape":"TagMap", + "documentation":"

The tags used to organize, track, or control access for this resource.

" + } + } + }, + "ObjectTypeField":{ + "type":"structure", + "members":{ + "Source":{ + "shape":"text", + "documentation":"

A field of a ProfileObject. For example: _source.FirstName, where “_source” is a ProfileObjectType of a Zendesk user and “FirstName” is a field in that ObjectType.

" + }, + "Target":{ + "shape":"text", + "documentation":"

The location of the data in the standard ProfileObject model. For example: _profile.Address.PostalCode.

" + }, + "ContentType":{ + "shape":"FieldContentType", + "documentation":"

The content type of the field. Used for determining equality when searching.

" + } + }, + "documentation":"

Represents a field in a ProfileObjectType.

" + }, + "ObjectTypeKey":{ + "type":"structure", + "members":{ + "StandardIdentifiers":{ + "shape":"StandardIdentifierList", + "documentation":"

The types of keys that a ProfileObject can have. Each ProfileObject can have only 1 UNIQUE key but multiple PROFILE keys. PROFILE means that this key can be used to tie an object to a PROFILE. UNIQUE means that it can be used to uniquely identify an object. If a key a is marked as SECONDARY, it will be used to search for profiles after all other PROFILE keys have been searched. A LOOKUP_ONLY key is only used to match a profile but is not persisted to be used for searching of the profile. A NEW_ONLY key is only used if the profile does not already exist before the object is ingested, otherwise it is only used for matching objects to profiles.

" + }, + "FieldNames":{ + "shape":"FieldNameList", + "documentation":"

The reference for the key name of the fields map.

" + } + }, + "documentation":"

An object that defines the Key element of a ProfileObject. A Key is a special element that can be used to search for a customer profile.

" + }, + "ObjectTypeKeyList":{ + "type":"list", + "member":{"shape":"ObjectTypeKey"} + }, + "PartyType":{ + "type":"string", + "enum":[ + "INDIVIDUAL", + "BUSINESS", + "OTHER" + ] + }, + "Profile":{ + "type":"structure", + "members":{ + "ProfileId":{ + "shape":"uuid", + "documentation":"

The unique identifier of a customer profile.

" + }, + "AccountNumber":{ + "shape":"string1To255", + "documentation":"

A unique account number that you have given to the customer.

" + }, + "AdditionalInformation":{ + "shape":"string1To1000", + "documentation":"

Any additional information relevant to the customer's profile.

" + }, + "PartyType":{ + "shape":"PartyType", + "documentation":"

The type of profile used to describe the customer.

" + }, + "BusinessName":{ + "shape":"string1To255", + "documentation":"

The name of the customer’s business.

" + }, + "FirstName":{ + "shape":"string1To255", + "documentation":"

The customer’s first name.

" + }, + "MiddleName":{ + "shape":"string1To255", + "documentation":"

The customer’s middle name.

" + }, + "LastName":{ + "shape":"string1To255", + "documentation":"

The customer’s last name.

" + }, + "BirthDate":{ + "shape":"string1To255", + "documentation":"

The customer’s birth date.

" + }, + "Gender":{ + "shape":"Gender", + "documentation":"

The gender with which the customer identifies.

" + }, + "PhoneNumber":{ + "shape":"string1To255", + "documentation":"

The customer's phone number, which has not been specified as a mobile, home, or business number.

" + }, + "MobilePhoneNumber":{ + "shape":"string1To255", + "documentation":"

The customer’s mobile phone number.

" + }, + "HomePhoneNumber":{ + "shape":"string1To255", + "documentation":"

The customer’s home phone number.

" + }, + "BusinessPhoneNumber":{ + "shape":"string1To255", + "documentation":"

The customer’s home phone number.

" + }, + "EmailAddress":{ + "shape":"string1To255", + "documentation":"

The customer's email address, which has not been specified as a personal or business address.

" + }, + "PersonalEmailAddress":{ + "shape":"string1To255", + "documentation":"

The customer’s personal email address.

" + }, + "BusinessEmailAddress":{ + "shape":"string1To255", + "documentation":"

The customer’s business email address.

" + }, + "Address":{ + "shape":"Address", + "documentation":"

A generic address associated with the customer that is not mailing, shipping, or billing.

" + }, + "ShippingAddress":{ + "shape":"Address", + "documentation":"

The customer’s shipping address.

" + }, + "MailingAddress":{ + "shape":"Address", + "documentation":"

The customer’s mailing address.

" + }, + "BillingAddress":{ + "shape":"Address", + "documentation":"

The customer’s billing address.

" + }, + "Attributes":{ + "shape":"Attributes", + "documentation":"

A key value pair of attributes of a customer profile.

" + } + }, + "documentation":"

The standard profile of a customer.

" + }, + "ProfileList":{ + "type":"list", + "member":{"shape":"Profile"} + }, + "ProfileObjectList":{ + "type":"list", + "member":{"shape":"ListProfileObjectsItem"} + }, + "ProfileObjectTypeList":{ + "type":"list", + "member":{"shape":"ListProfileObjectTypeItem"} + }, + "ProfileObjectTypeTemplateList":{ + "type":"list", + "member":{"shape":"ListProfileObjectTypeTemplateItem"} + }, + "PutIntegrationRequest":{ + "type":"structure", + "required":[ + "DomainName", + "Uri", + "ObjectTypeName" + ], + "members":{ + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

", + "location":"uri", + "locationName":"DomainName" + }, + "Uri":{ + "shape":"string1To255", + "documentation":"

The URI of the S3 bucket or any other type of data source.

" + }, + "ObjectTypeName":{ + "shape":"typeName", + "documentation":"

The name of the profile object type.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

The tags used to organize, track, or control access for this resource.

" + } + } + }, + "PutIntegrationResponse":{ + "type":"structure", + "required":[ + "DomainName", + "Uri", + "ObjectTypeName", + "CreatedAt", + "LastUpdatedAt" + ], + "members":{ + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

" + }, + "Uri":{ + "shape":"string1To255", + "documentation":"

The URI of the S3 bucket or any other type of data source.

" + }, + "ObjectTypeName":{ + "shape":"typeName", + "documentation":"

The name of the profile object type.

" + }, + "CreatedAt":{ + "shape":"timestamp", + "documentation":"

The timestamp of when the domain was created.

" + }, + "LastUpdatedAt":{ + "shape":"timestamp", + "documentation":"

The timestamp of when the domain was most recently edited.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

The tags used to organize, track, or control access for this resource.

" + } + } + }, + "PutProfileObjectRequest":{ + "type":"structure", + "required":[ + "ObjectTypeName", + "Object", + "DomainName" + ], + "members":{ + "ObjectTypeName":{ + "shape":"typeName", + "documentation":"

The name of the profile object type.

" + }, + "Object":{ + "shape":"stringifiedJson", + "documentation":"

A string that is serialized from a JSON object.

" + }, + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

", + "location":"uri", + "locationName":"DomainName" + } + } + }, + "PutProfileObjectResponse":{ + "type":"structure", + "members":{ + "ProfileObjectUniqueKey":{ + "shape":"string1To255", + "documentation":"

The unique identifier of the profile object generated by the service.

" + } + } + }, + "PutProfileObjectTypeRequest":{ + "type":"structure", + "required":[ + "DomainName", + "ObjectTypeName", + "Description" + ], + "members":{ + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

", + "location":"uri", + "locationName":"DomainName" + }, + "ObjectTypeName":{ + "shape":"typeName", + "documentation":"

The name of the profile object type.

", + "location":"uri", + "locationName":"ObjectTypeName" + }, + "Description":{ + "shape":"text", + "documentation":"

Description of the profile object type.

" + }, + "TemplateId":{ + "shape":"name", + "documentation":"

A unique identifier for the object template.

" + }, + "ExpirationDays":{ + "shape":"expirationDaysInteger", + "documentation":"

The number of days until the data in the object expires.

" + }, + "EncryptionKey":{ + "shape":"encryptionKey", + "documentation":"

The customer-provided key to encrypt the profile object that will be created in this profile object type.

" + }, + "AllowProfileCreation":{ + "shape":"boolean", + "documentation":"

Indicates whether a profile should be created when data is received if one doesn’t exist for an object of this type. The default is FALSE. If the AllowProfileCreation flag is set to FALSE, then the service tries to fetch a standard profile and associate this object with the profile. If it is set to TRUE, and if no match is found, then the service creates a new standard profile.

" + }, + "Fields":{ + "shape":"FieldMap", + "documentation":"

A map of the name and ObjectType field.

" + }, + "Keys":{ + "shape":"KeyMap", + "documentation":"

A list of unique keys that can be used to map data to the profile.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

The tags used to organize, track, or control access for this resource.

" + } + } + }, + "PutProfileObjectTypeResponse":{ + "type":"structure", + "required":[ + "ObjectTypeName", + "Description" + ], + "members":{ + "ObjectTypeName":{ + "shape":"typeName", + "documentation":"

The name of the profile object type.

" + }, + "Description":{ + "shape":"text", + "documentation":"

Description of the profile object type.

" + }, + "TemplateId":{ + "shape":"name", + "documentation":"

A unique identifier for the object template.

" + }, + "ExpirationDays":{ + "shape":"expirationDaysInteger", + "documentation":"

The number of days until the data in the object expires.

" + }, + "EncryptionKey":{ + "shape":"encryptionKey", + "documentation":"

The customer-provided key to encrypt the profile object that will be created in this profile object type.

" + }, + "AllowProfileCreation":{ + "shape":"boolean", + "documentation":"

Indicates whether a profile should be created when data is received if one doesn’t exist for an object of this type. The default is FALSE. If the AllowProfileCreation flag is set to FALSE, then the service tries to fetch a standard profile and associate this object with the profile. If it is set to TRUE, and if no match is found, then the service creates a new standard profile.

" + }, + "Fields":{ + "shape":"FieldMap", + "documentation":"

A map of the name and ObjectType field.

" + }, + "Keys":{ + "shape":"KeyMap", + "documentation":"

A list of unique keys that can be used to map data to the profile.

" + }, + "CreatedAt":{ + "shape":"timestamp", + "documentation":"

The timestamp of when the domain was created.

" + }, + "LastUpdatedAt":{ + "shape":"timestamp", + "documentation":"

The timestamp of when the domain was most recently edited.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

The tags used to organize, track, or control access for this resource.

" + } + } + }, + "ResourceNotFoundException":{ + "type":"structure", + "members":{ + "Message":{"shape":"message"} + }, + "documentation":"

The requested resource does not exist, or access was denied.

", + "error":{"httpStatusCode":404}, + "exception":true + }, + "SearchProfilesRequest":{ + "type":"structure", + "required":[ + "DomainName", + "KeyName", + "Values" + ], + "members":{ + "NextToken":{ + "shape":"token", + "documentation":"

The pagination token from the previous SearchProfiles API call.

", + "location":"querystring", + "locationName":"next-token" + }, + "MaxResults":{ + "shape":"maxSize100", + "documentation":"

The maximum number of objects returned per page.

", + "location":"querystring", + "locationName":"max-results" + }, + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

", + "location":"uri", + "locationName":"DomainName" + }, + "KeyName":{ + "shape":"name", + "documentation":"

A searchable identifier of a customer profile. The predefined keys you can use to search include: _account, _profileId, _fullName, _phone, _email, _ctrContactId, _marketoLeadId, _salesforceAccountId, _salesforceContactId, _zendeskUserId, _zendeskExternalId, _serviceNowSystemId.

" + }, + "Values":{ + "shape":"requestValueList", + "documentation":"

A list of key values.

" + } + } + }, + "SearchProfilesResponse":{ + "type":"structure", + "members":{ + "Items":{ + "shape":"ProfileList", + "documentation":"

The list of SearchProfiles instances.

" + }, + "NextToken":{ + "shape":"token", + "documentation":"

The pagination token from the previous SearchProfiles API call.

" + } + } + }, + "StandardIdentifier":{ + "type":"string", + "enum":[ + "PROFILE", + "UNIQUE", + "SECONDARY", + "LOOKUP_ONLY", + "NEW_ONLY" + ] + }, + "StandardIdentifierList":{ + "type":"list", + "member":{"shape":"StandardIdentifier"} + }, + "TagArn":{ + "type":"string", + "max":256, + "pattern":"^arn:[a-z0-9]{1,10}:profile" + }, + "TagKey":{ + "type":"string", + "max":128, + "min":1, + "pattern":"^(?!aws:)[a-zA-Z+-=._:/]+$" + }, + "TagKeyList":{ + "type":"list", + "member":{"shape":"TagKey"}, + "max":50, + "min":1 + }, + "TagMap":{ + "type":"map", + "key":{"shape":"TagKey"}, + "value":{"shape":"TagValue"}, + "max":50, + "min":1 + }, + "TagResourceRequest":{ + "type":"structure", + "required":[ + "resourceArn", + "tags" + ], + "members":{ + "resourceArn":{ + "shape":"TagArn", + "documentation":"

The ARN of the resource that you're adding tags to.

", + "location":"uri", + "locationName":"resourceArn" + }, + "tags":{ + "shape":"TagMap", + "documentation":"

The tags used to organize, track, or control access for this resource.

" + } + } + }, + "TagResourceResponse":{ + "type":"structure", + "members":{ + } + }, + "TagValue":{ + "type":"string", + "max":256 + }, + "ThrottlingException":{ + "type":"structure", + "members":{ + "Message":{"shape":"message"} + }, + "documentation":"

You exceeded the maximum number of requests.

", + "error":{"httpStatusCode":429}, + "exception":true + }, + "UntagResourceRequest":{ + "type":"structure", + "required":[ + "resourceArn", + "tagKeys" + ], + "members":{ + "resourceArn":{ + "shape":"TagArn", + "documentation":"

The ARN of the resource from which you are removing tags.

", + "location":"uri", + "locationName":"resourceArn" + }, + "tagKeys":{ + "shape":"TagKeyList", + "documentation":"

The list of tag keys to remove from the resource.

", + "location":"querystring", + "locationName":"tagKeys" + } + } + }, + "UntagResourceResponse":{ + "type":"structure", + "members":{ + } + }, + "UpdateAddress":{ + "type":"structure", + "members":{ + "Address1":{ + "shape":"string0To255", + "documentation":"

The first line of a customer address.

" + }, + "Address2":{ + "shape":"string0To255", + "documentation":"

The second line of a customer address.

" + }, + "Address3":{ + "shape":"string0To255", + "documentation":"

The third line of a customer address.

" + }, + "Address4":{ + "shape":"string0To255", + "documentation":"

The fourth line of a customer address.

" + }, + "City":{ + "shape":"string0To255", + "documentation":"

The city in which a customer lives.

" + }, + "County":{ + "shape":"string0To255", + "documentation":"

The county in which a customer lives.

" + }, + "State":{ + "shape":"string0To255", + "documentation":"

The state in which a customer lives.

" + }, + "Province":{ + "shape":"string0To255", + "documentation":"

The province in which a customer lives.

" + }, + "Country":{ + "shape":"string0To255", + "documentation":"

The country in which a customer lives.

" + }, + "PostalCode":{ + "shape":"string0To255", + "documentation":"

The postal code of a customer address.

" + } + }, + "documentation":"

Updates associated with the address properties of a customer profile.

" + }, + "UpdateAttributes":{ + "type":"map", + "key":{"shape":"string1To255"}, + "value":{"shape":"string0To255"} + }, + "UpdateDomainRequest":{ + "type":"structure", + "required":["DomainName"], + "members":{ + "DomainName":{ + "shape":"name", + "documentation":"

The unique name for the domain.

", + "location":"uri", + "locationName":"DomainName" + }, + "DefaultExpirationDays":{ + "shape":"expirationDaysInteger", + "documentation":"

The default number of days until the data within the domain expires.

" + }, + "DefaultEncryptionKey":{ + "shape":"encryptionKey", + "documentation":"

The default encryption key, which is an AWS managed key, is used when no specific type of encryption key is specified. It is used to encrypt all data before it is placed in permanent or semi-permanent storage. If specified as an empty string, it will clear any existing value.

" + }, + "DeadLetterQueueUrl":{ + "shape":"sqsQueueUrl", + "documentation":"

The URL of the SQS dead letter queue, which is used for reporting errors associated with ingesting data from third party applications. If specified as an empty string, it will clear any existing value. You must set up a policy on the DeadLetterQueue for the SendMessage operation to enable Amazon Connect Customer Profiles to send messages to the DeadLetterQueue.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

The tags used to organize, track, or control access for this resource.

" + } + } + }, + "UpdateDomainResponse":{ + "type":"structure", + "required":[ + "DomainName", + "CreatedAt", + "LastUpdatedAt" + ], + "members":{ + "DomainName":{ + "shape":"name", + "documentation":"

The unique name for the domain.

" + }, + "DefaultExpirationDays":{ + "shape":"expirationDaysInteger", + "documentation":"

The default number of days until the data within the domain expires.

" + }, + "DefaultEncryptionKey":{ + "shape":"encryptionKey", + "documentation":"

The default encryption key, which is an AWS managed key, is used when no specific type of encryption key is specified. It is used to encrypt all data before it is placed in permanent or semi-permanent storage.

" + }, + "DeadLetterQueueUrl":{ + "shape":"sqsQueueUrl", + "documentation":"

The URL of the SQS dead letter queue, which is used for reporting errors associated with ingesting data from third party applications.

" + }, + "CreatedAt":{ + "shape":"timestamp", + "documentation":"

The timestamp of when the domain was created.

" + }, + "LastUpdatedAt":{ + "shape":"timestamp", + "documentation":"

The timestamp of when the domain was most recently edited.

" + }, + "Tags":{ + "shape":"TagMap", + "documentation":"

The tags used to organize, track, or control access for this resource.

" + } + } + }, + "UpdateProfileRequest":{ + "type":"structure", + "required":[ + "DomainName", + "ProfileId" + ], + "members":{ + "DomainName":{ + "shape":"name", + "documentation":"

The unique name of the domain.

", + "location":"uri", + "locationName":"DomainName" + }, + "ProfileId":{ + "shape":"uuid", + "documentation":"

The unique identifier of a customer profile.

" + }, + "AdditionalInformation":{ + "shape":"string0To1000", + "documentation":"

Any additional information relevant to the customer's profile.

" + }, + "AccountNumber":{ + "shape":"string0To255", + "documentation":"

A unique account number that you have given to the customer.

" + }, + "PartyType":{ + "shape":"PartyType", + "documentation":"

The type of profile used to describe the customer.

" + }, + "BusinessName":{ + "shape":"string0To255", + "documentation":"

The name of the customer’s business.

" + }, + "FirstName":{ + "shape":"string0To255", + "documentation":"

The customer’s first name.

" + }, + "MiddleName":{ + "shape":"string0To255", + "documentation":"

The customer’s middle name.

" + }, + "LastName":{ + "shape":"string0To255", + "documentation":"

The customer’s last name.

" + }, + "BirthDate":{ + "shape":"string0To255", + "documentation":"

The customer’s birth date.

" + }, + "Gender":{ + "shape":"Gender", + "documentation":"

The gender with which the customer identifies.

" + }, + "PhoneNumber":{ + "shape":"string0To255", + "documentation":"

The customer's phone number, which has not been specified as a mobile, home, or business number.

" + }, + "MobilePhoneNumber":{ + "shape":"string0To255", + "documentation":"

The customer’s mobile phone number.

" + }, + "HomePhoneNumber":{ + "shape":"string0To255", + "documentation":"

The customer’s home phone number.

" + }, + "BusinessPhoneNumber":{ + "shape":"string0To255", + "documentation":"

The customer’s business phone number.

" + }, + "EmailAddress":{ + "shape":"string0To255", + "documentation":"

The customer's email address, which has not been specified as a personal or business address.

" + }, + "PersonalEmailAddress":{ + "shape":"string0To255", + "documentation":"

The customer’s personal email address.

" + }, + "BusinessEmailAddress":{ + "shape":"string0To255", + "documentation":"

The customer’s business email address.

" + }, + "Address":{ + "shape":"UpdateAddress", + "documentation":"

A generic address associated with the customer that is not mailing, shipping, or billing.

" + }, + "ShippingAddress":{ + "shape":"UpdateAddress", + "documentation":"

The customer’s shipping address.

" + }, + "MailingAddress":{ + "shape":"UpdateAddress", + "documentation":"

The customer’s mailing address.

" + }, + "BillingAddress":{ + "shape":"UpdateAddress", + "documentation":"

The customer’s billing address.

" + }, + "Attributes":{ + "shape":"UpdateAttributes", + "documentation":"

A key value pair of attributes of a customer profile.

" + } + } + }, + "UpdateProfileResponse":{ + "type":"structure", + "required":["ProfileId"], + "members":{ + "ProfileId":{ + "shape":"uuid", + "documentation":"

The unique identifier of a customer profile.

" + } + } + }, + "boolean":{"type":"boolean"}, + "encryptionKey":{ + "type":"string", + "max":255, + "min":0 + }, + "expirationDaysInteger":{ + "type":"integer", + "max":1098, + "min":1 + }, + "long":{"type":"long"}, + "maxSize100":{ + "type":"integer", + "max":100, + "min":1 + }, + "message":{"type":"string"}, + "requestValueList":{ + "type":"list", + "member":{"shape":"string1To255"} + }, + "sqsQueueUrl":{ + "type":"string", + "max":255, + "min":0 + }, + "string0To1000":{ + "type":"string", + "max":1000, + "min":0 + }, + "string0To255":{ + "type":"string", + "max":255, + "min":0 + }, + "string1To1000":{ + "type":"string", + "max":1000, + "min":1 + }, + "string1To255":{ + "type":"string", + "max":255, + "min":1 + }, + "stringifiedJson":{ + "type":"string", + "max":256000, + "min":1 + }, + "text":{ + "type":"string", + "max":1000, + "min":1 + }, + "timestamp":{"type":"timestamp"}, + "token":{ + "type":"string", + "max":1024, + "min":1 + }, + "typeName":{ + "type":"string", + "max":255, + "min":1, + "pattern":"^[a-zA-Z_][a-zA-Z_0-9-]*$" + }, + "uuid":{ + "type":"string", + "pattern":"[a-f0-9]{32}" + } + }, + "documentation":"Amazon Connect Customer Profiles

Welcome to the Amazon Connect Customer Profiles API Reference. This guide provides information about the Amazon Connect Customer Profiles API, including supported operations, data types, parameters, and schemas.

Amazon Connect Customer Profiles is a unified customer profile for your contact center that has pre-built connectors powered by AppFlow that make it easy to combine customer information from third party applications, such as Salesforce (CRM), ServiceNow (ITSM), and your enterprise resource planning (ERP), with contact history from your Amazon Connect contact center.

If you're new to Amazon Connect, you might find it helpful to also review the Amazon Connect Administrator Guide.

" +} From a86cb89d4b7964def9dd04b2ea930bfaf98bad47 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 2 Dec 2020 02:22:43 +0000 Subject: [PATCH 327/339] Updated endpoints.json. --- .../next-release/feature-AWSSDKforJavav2-bedacd4.json | 6 ++++++ .../awssdk/regions/internal/region/endpoints.json | 11 +++++++++++ 2 files changed, 17 insertions(+) create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json new file mode 100644 index 000000000000..ae3f84993e9e --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." +} diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json index 5fe79a810aa3..4ba430e46747 100644 --- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json +++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json @@ -570,6 +570,17 @@ "us-west-2" : { } } }, + "app-integrations" : { + "endpoints" : { + "ap-northeast-1" : { }, + "ap-southeast-1" : { }, + "ap-southeast-2" : { }, + "eu-central-1" : { }, + "eu-west-2" : { }, + "us-east-1" : { }, + "us-west-2" : { } + } + }, "appflow" : { "endpoints" : { "ap-northeast-1" : { }, From 45d8d5f33fe32fa29eeb8ef12d4fd7a9bc9c9ae8 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 2 Dec 2020 02:23:32 +0000 Subject: [PATCH 328/339] Release 2.15.38. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.38.json | 18 ++++++++++++++++++ .../feature-AWSSDKforJavav2-bedacd4.json | 6 ------ ...-AmazonConnectCustomerProfiles-cbc7d70.json | 6 ------ CHANGELOG.md | 9 +++++++++ README.md | 8 ++++---- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 7 ++++++- bom-internal/pom.xml | 2 +- bom/pom.xml | 7 ++++++- 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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/amplifybackend/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/appintegrations/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectcontactlens/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/devopsguru/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/pom.xml | 2 +- services/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/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/lookoutvision/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/mwaa/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 3 ++- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerfeaturestoreruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 297 files changed, 334 insertions(+), 308 deletions(-) create mode 100644 .changes/2.15.38.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json delete mode 100644 .changes/next-release/feature-AmazonConnectCustomerProfiles-cbc7d70.json diff --git a/.changes/2.15.38.json b/.changes/2.15.38.json new file mode 100644 index 000000000000..28f4e9b06414 --- /dev/null +++ b/.changes/2.15.38.json @@ -0,0 +1,18 @@ +{ + "version": "2.15.38", + "date": "2020-12-01", + "entries": [ + { + "type": "feature", + "category": "Amazon Connect Customer Profiles", + "contributor": "", + "description": "This is the first release of Amazon Connect Customer Profiles, a unified customer profile for your Amazon Connect contact center." + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json deleted file mode 100644 index ae3f84993e9e..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS SDK for Java v2", - "contributor": "", - "description": "Updated service endpoint metadata." -} diff --git a/.changes/next-release/feature-AmazonConnectCustomerProfiles-cbc7d70.json b/.changes/next-release/feature-AmazonConnectCustomerProfiles-cbc7d70.json deleted file mode 100644 index eb613d4655d5..000000000000 --- a/.changes/next-release/feature-AmazonConnectCustomerProfiles-cbc7d70.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "Amazon Connect Customer Profiles", - "contributor": "", - "description": "This is the first release of Amazon Connect Customer Profiles, a unified customer profile for your Amazon Connect contact center." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index ce7a02af3c3d..072e1a39613e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# __2.15.38__ __2020-12-01__ +## __AWS SDK for Java v2__ + - ### Features + - Updated service endpoint metadata. + +## __Amazon Connect Customer Profiles__ + - ### Features + - This is the first release of Amazon Connect Customer Profiles, a unified customer profile for your Amazon Connect contact center. + # __2.15.37__ __2020-12-01__ ## __AWS Directory Service__ - ### Features diff --git a/README.md b/README.md index 853a4e399843..a2e598aecf0b 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.37 + 2.15.38 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.37 + 2.15.38 software.amazon.awssdk s3 - 2.15.37 + 2.15.38 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.37 + 2.15.38 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index 81c6cda2a09e..e4ef77fd273d 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 816b59a1cc29..19fd5dc4ff7a 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index e4b9796dbcd7..7889e620d998 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.15.38-SNAPSHOT + 2.15.38 ../pom.xml aws-sdk-java @@ -1233,6 +1233,11 @@ Amazon AutoScaling, etc).
lookoutvision ${awsjavasdk.version} + + software.amazon.awssdk + customerprofiles + ${awsjavasdk.version} + ${project.artifactId}-${project.version} diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 8c3d409e402e..c7acfe93a3ae 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index eba957f6c246..f04a2d222005 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.38-SNAPSHOT + 2.15.38 ../pom.xml bom @@ -1358,6 +1358,11 @@ lookoutvision ${awsjavasdk.version} + + software.amazon.awssdk + customerprofiles + ${awsjavasdk.version} + diff --git a/bundle/pom.xml b/bundle/pom.xml index 8c395c241c44..82bbb75da84d 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.38-SNAPSHOT + 2.15.38 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 6039bc04578a..bb16faf9e7c8 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.15.38-SNAPSHOT + 2.15.38 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 0e8265b42118..8a33357419e4 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.38-SNAPSHOT + 2.15.38 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index e4660198e883..1e9e46cae085 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.15.38-SNAPSHOT + 2.15.38 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index 538157cbf812..a15e97768755 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.38-SNAPSHOT + 2.15.38 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 417e64c17c22..c653b0ec5309 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 417032ee84aa..203993517f06 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 7c6b811a6d47..41e01d00c776 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.38-SNAPSHOT + 2.15.38 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index 54360a71d877..c3c4aceab2c1 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.38-SNAPSHOT + 2.15.38 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 6afd1362ea41..cea05dfb792e 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 5d5fe74d8177..3b3e1bc879f8 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 0c1d45fd64e0..84dd9af654f2 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.38-SNAPSHOT + 2.15.38 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 3a956010206e..25e41a435d5a 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.15.38-SNAPSHOT + 2.15.38 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index 33409aae2c9e..d73743348b06 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index aacf54a50b7b..af16aee2b4b7 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.15.38-SNAPSHOT + 2.15.38 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 8e77a8dcbcdd..4b3c8fa085f0 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.15.38-SNAPSHOT + 2.15.38 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 181c127707d1..aab6864d630f 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.15.38-SNAPSHOT + 2.15.38 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 35c94b899be8..fc8dcdd88195 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 574a155224bc..da4337b87aeb 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 96f2a0b7b9af..17c9ee5f9d62 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.38-SNAPSHOT + 2.15.38 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 58fd3d6b54b8..e85198b5fe3d 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.38-SNAPSHOT + 2.15.38 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 349f58d15fa6..0df3f3a61ba8 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.15.38-SNAPSHOT + 2.15.38 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 53fa7a1ebd37..9d6d8e488007 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.15.38-SNAPSHOT + 2.15.38 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 43700205116a..3bfff12fb70b 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.15.38-SNAPSHOT + 2.15.38 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index c4436016a4ed..13211c4dc73a 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.15.38-SNAPSHOT + 2.15.38 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 0674720d2f64..149399bd5499 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 9ce93058fb3f..c5d7acf14228 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.15.38-SNAPSHOT + 2.15.38 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index 63e69d1de61d..b463487ef8fc 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.15.38-SNAPSHOT + 2.15.38 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 576a371b5266..d78280321586 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.38-SNAPSHOT + 2.15.38 metric-publishers diff --git a/pom.xml b/pom.xml index 6025a883331f..6022a5e293a8 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.38-SNAPSHOT + 2.15.38 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 a65c06af3bc3..af6852535d17 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.38-SNAPSHOT + 2.15.38 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index e079ab8ee88a..548f3924861b 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.15.38-SNAPSHOT + 2.15.38 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index c40d191a2873..12ccadcd66b4 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.38-SNAPSHOT + 2.15.38 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 594e7380b208..89b5acc93dd2 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index 9d22ffaef326..c671ab95003e 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 486072827101..c21239ff97f7 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 04f6f2ee4301..1797030baa1f 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index fcda4625b887..33656a0b3386 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/amplifybackend/pom.xml b/services/amplifybackend/pom.xml index 9e9d6790b43e..0f97c0f52c1f 100644 --- a/services/amplifybackend/pom.xml +++ b/services/amplifybackend/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 amplifybackend AWS Java SDK :: Services :: Amplify Backend diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 0240a6e96a53..2339ed98649a 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 66f8e50ac3a1..3c319a068d79 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 93db5e6e8df5..9c079064dc4e 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 8f5de0e6c22d..1609591cb3aa 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 44c60916ea8e..142849d29a29 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/appintegrations/pom.xml b/services/appintegrations/pom.xml index 64fbd912f35f..80a1e35a905f 100644 --- a/services/appintegrations/pom.xml +++ b/services/appintegrations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 appintegrations AWS Java SDK :: Services :: App Integrations diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index db37245ea607..201022696d00 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index e861bce65d53..0b569590f3d8 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index a1947f52ef69..916b95793762 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index cf36bddc8505..656f3641d930 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 7a82f7dcefcb..b8961d0dfa75 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 9a24685b2fd3..7b298d3d2e09 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index f7f3e9c19e80..eb33081e244f 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 091ad3eb4b5d..7601a3fcbf13 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index e0204080d5c6..486436ebc4b2 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index c085b130c763..cb392cdb67a8 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index d649a6e86e30..eea39ba6a281 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 840c7cda9ff5..bc4cde00a906 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 04520d2482c1..98bc04728e0e 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 2c254acbf8e4..808dc135bca9 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index bb5581587469..5029bdd93166 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 0e9eb34c37c4..b3d9b668d9c0 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index afdb39563822..a26aabde69e7 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index 8cd0ba9c0a97..e1e7a22fe17d 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 3a6e179003f6..be5eea43d1d8 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 4d9fb4ee0e8e..0da5d1c758ae 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 3d6c9c998130..870130d21f42 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 51fc38b26d89..8e5cf7209d3f 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index c4c1c6f88474..bac4928abf8a 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index c853f57403fd..a6e62c794e58 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 61b31decf186..d43bef0423e8 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index a76fb73a15a3..537e0c89109f 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index fb2750234477..4bcf9c3c288a 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 5548e7a7624a..90734aa51313 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 939fceeecfb9..c6903bd19bfe 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 28f792854844..32b3ddbdc949 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 12bda911018b..6f3f0ba1dcce 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index e7c16145130b..36ef37ca3b8d 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 40a2b2f9fd13..bedcca3c1732 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index eee1b6473b03..f18ba948ff88 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 76f6ceb501ab..91cfd28b67fa 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index b5d78b3a6568..54d25c1f21a9 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index b48afe309c43..f124863222ac 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index f07d94484c5e..7ba1498f732b 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index ac40ea4dbb3b..af77b5baceae 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index ec8e4084e4d6..63b8979b3600 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 83f48157f4e7..bcd74bb1159b 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 8e1b15a02310..fabdc88515b9 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 8a8ef6f5f15b..6ab4c1108af9 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index a1b3911dcfb7..b5ef8180ff26 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectcontactlens/pom.xml b/services/connectcontactlens/pom.xml index 23ed862d44cd..b81573485573 100644 --- a/services/connectcontactlens/pom.xml +++ b/services/connectcontactlens/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 connectcontactlens AWS Java SDK :: Services :: Connect Contact Lens diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index c9d3c9e94dce..098d036d2a50 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 8570477098fe..0d1a5f62b691 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index b71a51ee04af..67df808721b4 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 costexplorer diff --git a/services/customerprofiles/pom.xml b/services/customerprofiles/pom.xml index 639a88058fe7..74afde6539b1 100644 --- a/services/customerprofiles/pom.xml +++ b/services/customerprofiles/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 customerprofiles AWS Java SDK :: Services :: Customer Profiles diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 1b2817b74cc6..695d8364a5b1 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index 2f9ead8f452b..d38b7fff9f14 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index de390d50ebd7..b7a384879dce 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index f2a0b911d96e..0d46554cd01c 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 3da5c113adec..d9ddf8077fbc 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 536b5d555792..865103f2564a 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 0f00618c7c78..c88f16381c33 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index e2cd92727cdf..4b08b0e4aa08 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/devopsguru/pom.xml b/services/devopsguru/pom.xml index 95c8452b29ce..961e0f9f59d9 100644 --- a/services/devopsguru/pom.xml +++ b/services/devopsguru/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 devopsguru AWS Java SDK :: Services :: Dev Ops Guru diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 7191e686f003..82107c557b6c 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 78392adad132..364a41f118d5 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 8096258579ba..6acbb8f0998a 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 4b91337879e6..0780ff7234e3 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 99de182de2b2..6c518f59a43e 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index e27682b7c490..2377e1b4e90c 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index f7c33bbb054a..c3680513cb56 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index a8cf3aa679d0..6d35d8af8a44 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 1343c0d04fd0..82d0e78bb7c9 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecrpublic/pom.xml b/services/ecrpublic/pom.xml index b776e02722e0..3464a086b6d0 100644 --- a/services/ecrpublic/pom.xml +++ b/services/ecrpublic/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 ecrpublic AWS Java SDK :: Services :: ECR PUBLIC diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 1a5ab263d7f3..232f712a8605 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index e817e3ffd3ee..84ed0e31c2bc 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 6b8f3a0a6dbf..9dd17596e4a0 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index c65ae48e9b2d..5fced45e7e7a 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index fe01f143d4d4..325890ef1ec0 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 3c68de63e9d1..e22acf58396e 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 25c34adbe4f5..226aa120a61f 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index cbb6e8752f48..e7abf80883a6 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index b16a3f8aa2f0..028b164b2387 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 1baddbfe7967..b88d660a77ad 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 8cba1fa092f8..ff58265e358b 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 9bbf1c5849d6..b98d9b5ca856 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 32ffa7e3ed86..6fc10d6a9ad9 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 1bd4f5249819..1aa99b33b203 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 1e95ed7c45a4..c75f65cb3666 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 4faeb808d95a..188b37a4fa0e 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 3f38624b2ea6..46b64361bedb 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 81de1e876e7e..dd60b92bd6f3 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index bddd817b806b..1af5563ee2f4 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 7c36bf9baa30..2e1f93fdc218 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 7333264344a3..eb8f503c4c39 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 6a2a9fec3e68..7ac2948c7e1b 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index f11aebf6112f..17fa099cfe8b 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index e26558fcd39d..d9dbc5ab8719 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 0c80464adaf2..5f45b6625270 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 4f8acfb75404..cd4157c9cee0 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index a558ecd5f90f..525ed24de06a 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index b9348c20bd81..7308da892a9f 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 8fbfe0dc087f..c58e97114e9a 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index d964a2ea6716..71f1bc343389 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 1884f6a6e9bb..f0e723a4156e 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 9128ad6e9b10..fbd1c412f931 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 07ea76342d50..118d971442a8 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 2f5f1fd77e1e..25d5cb05c5e6 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 5ec844cb0125..3610169bbb1c 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index f1a8cf0fb991..97e93c9e4e31 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 537fb4e298f7..7a055a35e221 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 78c82f1ac659..4c0b551760ea 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 1fc0ba09de4d..7c2d0f752908 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 1f74ba777e18..8887fccbd341 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index bd9f4a3de6b5..5c1cb856218c 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 5377dd8a61dd..34a4b6e3d141 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index e0a72ef53944..316df36d8ba6 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 28e001e64aad..420d5e6896de 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index e0f764e67e5a..579425e560f0 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 5592be0f589c..a991528ef8f5 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index e9af9a429a93..066caf2f1aaf 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 1a6cba5f5d7a..5ec9e81d666c 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index e6f42907a698..eb4fd4275196 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 18efdc154192..3ea0545165ee 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 57a695848b17..19f24fce0dfc 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 53362430c82f..f0964b03cf61 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 36ce00fd201d..ee0b905a1f6a 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 08c7bee7227a..1852be1c8d68 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 367f8bf32321..109edf12d0cb 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index b6ca6c577660..2b69b3f2d7b9 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 5e9a5f462306..d0f386f91323 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index 395bea00a34e..b76eed258f36 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 4ee2b330c733..8d705e15a230 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/lookoutvision/pom.xml b/services/lookoutvision/pom.xml index 0c0d45874485..656c81f73fba 100644 --- a/services/lookoutvision/pom.xml +++ b/services/lookoutvision/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 lookoutvision AWS Java SDK :: Services :: Lookout Vision diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 62bbfea7b1f0..1a417bc01759 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index d57fe7797418..c60160dfc158 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index ec1cdaf3a72d..99649d41719e 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 905ce849064c..f4e9a8113790 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index cea7120c1225..65ce61b68080 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 3d9ca0644940..519a88f4e10d 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 2aca6bf020e8..ad3f90e9bc7d 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index d0c3b0b31d5e..284e49e1d94d 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index 5fe7453ee756..b8c22e86a802 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index bc0cebd99c45..2a5f7e357629 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 75f358b6a00c..5456d2d8f29b 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 6b414984dd10..323c8d47aff6 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index b1f764762c89..121ca3aa3b7f 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 5c377c283324..a0c6501ba137 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 6cfa7cdf88a4..90560caf863a 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index e4536b8c3a32..c04bb20bdedd 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index ec55b3aef3cf..e4d52b36d4c1 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 5974599cf065..828293130c16 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index aa804b6946da..62e19d4d4979 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index c2efbc896bda..7f35ebda2e96 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index eab7115dcf10..7c2c33452ed2 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml index 9a5bba36bb4e..3f0752e99764 100644 --- a/services/mwaa/pom.xml +++ b/services/mwaa/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 mwaa AWS Java SDK :: Services :: MWAA diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index f8a7c1f9e48b..d664dff74b88 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index 25b5ffcecbc3..62a85e6fdf0c 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index b82ab33c12b1..7d34ca0cc8d7 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 5220266de7de..a289420b2c9c 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index a2f16b3b2f12..a5401f6942e8 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 64b0bbc23477..25e01c2f3dce 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index fec7b23e8464..4cf51774bce9 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 3d046148bf7a..39a00ac5756c 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index c8ce78ec4d47..b404f432d5d7 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 0fdb7fbfe4a6..a65123f7eec4 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 695702aea717..0db2108f155c 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 453513fe3da4..da0e82f32f2d 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 7b764875a10b..89596cf1ce4a 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index bf65b69fd4e5..0fcfcc6f85f6 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index daf4432de7e7..a28ead782630 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 1f9cc4de2419..130abe699f61 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.38-SNAPSHOT + 2.15.38 services AWS Java SDK :: Services @@ -264,6 +264,7 @@ amplifybackend connectcontactlens lookoutvision + customerprofiles The AWS Java SDK services https://aws.amazon.com/sdkforjava diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 24590aa910b6..cd8743c8c088 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index d475e51bac62..d8a70cc0d936 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 117f2a116113..4349e115e9e4 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index e62f489a0c02..42921569c844 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 6f306e41cd7a..1fe16edb4d3b 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 1fd5ea7011c6..35bd8e2fe57e 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index c4bfd35ffa7d..ed2aa0b9a80a 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 83bc33794561..84aea09383d4 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index f6d5bf7cd183..1d5a23bcfee0 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 4365f96c0de4..9af21d93f26d 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 5f159e149168..a057601feeb4 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 9e6a69fa404a..a61bd9c558a7 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index ca12f9bf855d..adcb7781034d 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index e3b4d89371ee..96fe37a9b7a9 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index b9a51d87036c..ddff6e0ae178 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index c2779203e8cb..d60673fec754 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index 89bb5eb54f91..fab784d0ff44 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index df2641a68578..3e21ea784812 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 6a2e13562be6..ba9cf3b27ac2 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 995ad7f85c59..973dd728f300 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 42e007ecf133..937aafda2a24 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerfeaturestoreruntime/pom.xml b/services/sagemakerfeaturestoreruntime/pom.xml index 3d6f52c782f8..e61d6e095d00 100644 --- a/services/sagemakerfeaturestoreruntime/pom.xml +++ b/services/sagemakerfeaturestoreruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 sagemakerfeaturestoreruntime AWS Java SDK :: Services :: Sage Maker Feature Store Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index a48837ede8bd..170d0bdc34c9 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 95558972afe9..2d23e653714f 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 637164732c60..a5b927a56033 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index ba90d684f3b5..195494ad8267 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 9d822d33ff4a..20399caaf992 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index d6ff481f5d54..7cc819bfe8f9 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 7184eba78749..6883048cc7d0 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index 69923458386b..42a224a92282 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 3d0632486cfa..727bafa97282 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index f3e8965de3c9..4c1d63dea63e 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 50a313d66700..53d8bd63349f 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index b416ecea714c..403532e6f3b8 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 331c84b92244..26689a3ec802 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index f972c35de8ba..9a05d5c7c0e2 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index acd0dc92f73d..f1e80df54dbc 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 8cacac4471f6..26a9632e6322 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 3dc267451964..a2d01834dd58 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index bf357d53caea..a13a0becdec8 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 2a134ce532fa..1341fe3bbc1f 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 1c79be7891b0..493cb7f6da18 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 0e1859edb733..8f22aacac72f 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 6aaec6fc3685..3cccc22fbd1f 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 96f1a3b8420f..90816c1f1ded 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 449f61bcc80b..445704c2a1ed 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 884fa1ca2730..da1d4c657de9 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index b5fd677ced22..ba88eabeac59 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index c0317e5d0ff9..05e3a89e3dd0 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index 8eef77d51e4d..ebf5f175bed6 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index c6f5c1426d01..40579b9cb0ad 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 835fe3713b39..e20280ad92c9 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 465ebc146f95..b7f6cfef7996 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 2d49557cd328..1c74658c7d09 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 78c2c3e51eea..57a76bea6b1d 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index dacb3a7b9199..37d2395d4e1c 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 3e2c1c1a53e7..beacecd22b2f 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 62695740e097..c77ea4055eb8 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index d7183514d9c7..50d34abeddd8 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index ff9a183a4c46..b5ef7a5a3172 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index b7b59faaaf4d..7d8be9516355 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index 2bf054fb7c8e..c318af517285 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index d407168c0393..6f4bcd223a6a 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index e685b76721bf..61e7f2672a04 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 6e1a9245c3d2..021bc59c38e7 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38-SNAPSHOT + 2.15.38 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index db78c6cc5c40..e26662429127 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.15.38-SNAPSHOT + 2.15.38 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 7c0ac12b3a2e..eb856ea1441e 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.15.38-SNAPSHOT + 2.15.38 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 626440709465..db5cada6628f 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.15.38-SNAPSHOT + 2.15.38 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index e6f329db63b4..9f7bba73de00 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.15.38-SNAPSHOT + 2.15.38 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index ffabc0c196ba..f41a7ba0a8a7 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.15.38-SNAPSHOT + 2.15.38 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index de7c1e08fbc0..f370d58bc7ad 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.38-SNAPSHOT + 2.15.38 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 72a6a1908e3c..0f1f816cb7e2 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.15.38-SNAPSHOT + 2.15.38 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 1041ed66686d..33b6d8a89bbe 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.15.38-SNAPSHOT + 2.15.38 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 503789863ff7..c326b148fefe 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.15.38-SNAPSHOT + 2.15.38 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 809fabc86840..1627fa906e8b 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.15.38-SNAPSHOT + 2.15.38 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index 6addc09448d0..d80d8331a176 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.38-SNAPSHOT + 2.15.38 4.0.0 From 1d6a7666cc1fc2c743dd175d98687e9f9b0303a7 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Wed, 2 Dec 2020 02:50:17 +0000 Subject: [PATCH 329/339] Update to next snapshot version: 2.15.39-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/amplifybackend/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/appintegrations/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectcontactlens/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/devopsguru/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/pom.xml | 2 +- services/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/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/lookoutvision/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/mwaa/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerfeaturestoreruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/pom.xml | 2 +- services/servicecatalogappregistry/pom.xml | 2 +- services/servicediscovery/pom.xml | 2 +- services/servicequotas/pom.xml | 2 +- services/ses/pom.xml | 2 +- services/sesv2/pom.xml | 2 +- services/sfn/pom.xml | 2 +- services/shield/pom.xml | 2 +- services/signer/pom.xml | 2 +- services/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 292 files changed, 292 insertions(+), 292 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index e4ef77fd273d..f69363240a77 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index 19fd5dc4ff7a..f20dec547158 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 7889e620d998..d44cfe51b7b4 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.15.38 + 2.15.39-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index c7acfe93a3ae..0e2bbb2fc9fa 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index f04a2d222005..04c85d83c8f5 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.38 + 2.15.39-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 82bbb75da84d..848ff310b9f0 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.38 + 2.15.39-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index bb16faf9e7c8..bcf740d71e23 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.15.38 + 2.15.39-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index 8a33357419e4..c9301d66326c 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.38 + 2.15.39-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 1e9e46cae085..a17623f29f57 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.15.38 + 2.15.39-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index a15e97768755..e284ab2a0c2e 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.38 + 2.15.39-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index c653b0ec5309..bb50dd575b34 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index 203993517f06..fe08d090afe5 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 41e01d00c776..42ebb9a8fc80 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.38 + 2.15.39-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index c3c4aceab2c1..a9dde363b8b2 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.38 + 2.15.39-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index cea05dfb792e..ab42bfef5996 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index 3b3e1bc879f8..c278caa39f06 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 84dd9af654f2..8b2c6b7d1bd3 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.38 + 2.15.39-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 25e41a435d5a..8f2ef48753d8 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.15.38 + 2.15.39-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index d73743348b06..b554928f86ac 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index af16aee2b4b7..b6bf711aa4ff 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.15.38 + 2.15.39-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 4b3c8fa085f0..d1b6e5f16e3d 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.15.38 + 2.15.39-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index aab6864d630f..7fe20a91d02e 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.15.38 + 2.15.39-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index fc8dcdd88195..8e2904b6f9aa 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index da4337b87aeb..3f66d61e0251 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 17c9ee5f9d62..ba299aceb35b 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.38 + 2.15.39-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index e85198b5fe3d..1f8980e585f0 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.38 + 2.15.39-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 0df3f3a61ba8..3230c035f791 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.15.38 + 2.15.39-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index 9d6d8e488007..98cc905de37b 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.15.38 + 2.15.39-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index 3bfff12fb70b..ba3498417e1e 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.15.38 + 2.15.39-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 13211c4dc73a..307c3c360d5f 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.15.38 + 2.15.39-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index 149399bd5499..cded3b358347 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index c5d7acf14228..7cc765427ef4 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.15.38 + 2.15.39-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index b463487ef8fc..be42beb73ec9 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.15.38 + 2.15.39-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index d78280321586..3ba8f500ec7e 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.38 + 2.15.39-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 6022a5e293a8..8b652bf9100e 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.38 + 2.15.39-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index af6852535d17..2dccd5195bc0 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.38 + 2.15.39-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 548f3924861b..bb7c99eae569 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.15.38 + 2.15.39-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 12ccadcd66b4..794bb82d1eb6 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.38 + 2.15.39-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 89b5acc93dd2..f92a11c53064 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index c671ab95003e..e41db9d14bfe 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index c21239ff97f7..282dcf9ef405 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 1797030baa1f..f0173aa4e7bf 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index 33656a0b3386..fbd1702ad1cd 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/amplifybackend/pom.xml b/services/amplifybackend/pom.xml index 0f97c0f52c1f..3de986c5bbf7 100644 --- a/services/amplifybackend/pom.xml +++ b/services/amplifybackend/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT amplifybackend AWS Java SDK :: Services :: Amplify Backend diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 2339ed98649a..4bba92f4b536 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 3c319a068d79..7abbd9e9bc76 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index 9c079064dc4e..bba85302a242 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 1609591cb3aa..072637e8bc01 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 142849d29a29..5c66cb1cbac0 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/appintegrations/pom.xml b/services/appintegrations/pom.xml index 80a1e35a905f..53e1f349ab77 100644 --- a/services/appintegrations/pom.xml +++ b/services/appintegrations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT appintegrations AWS Java SDK :: Services :: App Integrations diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 201022696d00..99268d35884a 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 0b569590f3d8..9d37e927fda5 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index 916b95793762..c12e6649f29b 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 656f3641d930..16d198e77ef0 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index b8961d0dfa75..ca9be09249f0 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 7b298d3d2e09..9939af873f4d 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index eb33081e244f..01e6f3635617 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 7601a3fcbf13..fdf1b8b08bab 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 486436ebc4b2..7e945ce6d9b5 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index cb392cdb67a8..08a1f26b8769 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index eea39ba6a281..562252e514a8 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index bc4cde00a906..0bdff25b0824 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 98bc04728e0e..562742c3dc3c 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 808dc135bca9..3b9bfa4cd19a 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 5029bdd93166..0e4ead840fd9 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index b3d9b668d9c0..7bb744ba4fec 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index a26aabde69e7..bdcf2e491b6d 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index e1e7a22fe17d..be64c2c398ea 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index be5eea43d1d8..281c6121eb58 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index 0da5d1c758ae..eb699bce6dda 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index 870130d21f42..ee84d1cd31f7 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 8e5cf7209d3f..26c0b69dd52f 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index bac4928abf8a..55895a7c42ee 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index a6e62c794e58..07b811767b4f 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index d43bef0423e8..a615ed0b2608 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 537e0c89109f..9d1b65b2ff1d 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index 4bcf9c3c288a..ab58578aa0bb 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 90734aa51313..4efaa678ba98 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index c6903bd19bfe..311c312fd5f0 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 32b3ddbdc949..3793624ee85c 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 6f3f0ba1dcce..124c40ddb995 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index 36ef37ca3b8d..aa66923f0bbf 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index bedcca3c1732..7e13f78294cb 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index f18ba948ff88..a500ef3e8aaa 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 91cfd28b67fa..69ed32aec26d 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 54d25c1f21a9..a399d3badd16 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index f124863222ac..29f104942957 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 7ba1498f732b..0b636e9ae19c 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index af77b5baceae..5225423214e4 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 63b8979b3600..9a027f8822d2 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index bcd74bb1159b..0c64bab64cb6 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index fabdc88515b9..2c4bbae8b28f 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 6ab4c1108af9..869fbf7ae10c 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index b5ef8180ff26..65d30d410ede 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectcontactlens/pom.xml b/services/connectcontactlens/pom.xml index b81573485573..17a4f6dafb8f 100644 --- a/services/connectcontactlens/pom.xml +++ b/services/connectcontactlens/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT connectcontactlens AWS Java SDK :: Services :: Connect Contact Lens diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 098d036d2a50..150acd1e354e 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 0d1a5f62b691..95ca99272a1c 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index 67df808721b4..d7d7f9d96cb9 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 costexplorer diff --git a/services/customerprofiles/pom.xml b/services/customerprofiles/pom.xml index 74afde6539b1..e42540c43fa8 100644 --- a/services/customerprofiles/pom.xml +++ b/services/customerprofiles/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT customerprofiles AWS Java SDK :: Services :: Customer Profiles diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 695d8364a5b1..3674bec7c0e2 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index d38b7fff9f14..faaf5c9f5c11 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index b7a384879dce..bac1d2fe39aa 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 0d46554cd01c..2c18488eebc4 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index d9ddf8077fbc..30c19d88d743 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 865103f2564a..7256b055fa94 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index c88f16381c33..27ee55c24aaa 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 4b08b0e4aa08..af9c7df16da5 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/devopsguru/pom.xml b/services/devopsguru/pom.xml index 961e0f9f59d9..913e1054f3b7 100644 --- a/services/devopsguru/pom.xml +++ b/services/devopsguru/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT devopsguru AWS Java SDK :: Services :: Dev Ops Guru diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 82107c557b6c..2d5405f890e9 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 364a41f118d5..7d5f16e8b143 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index 6acbb8f0998a..de8f5ce5568a 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 0780ff7234e3..bc4229de79db 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 6c518f59a43e..546f04ffd4a5 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 2377e1b4e90c..0211f290b80e 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index c3680513cb56..47f6116f8b65 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 6d35d8af8a44..7043df01cfff 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 82d0e78bb7c9..89e9689372a7 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecrpublic/pom.xml b/services/ecrpublic/pom.xml index 3464a086b6d0..08b5ca5727e3 100644 --- a/services/ecrpublic/pom.xml +++ b/services/ecrpublic/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT ecrpublic AWS Java SDK :: Services :: ECR PUBLIC diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 232f712a8605..bc33123839ca 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 84ed0e31c2bc..8d67eda1bc2c 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index 9dd17596e4a0..baccc2518f8a 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 5fced45e7e7a..57a34f317c3f 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 325890ef1ec0..a97fbd2c371a 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index e22acf58396e..3aa86683fe41 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 226aa120a61f..12b79cdbdf27 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index e7abf80883a6..bf52ba92d952 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 028b164b2387..77e1c86a53b7 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index b88d660a77ad..16df759d5f8e 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index ff58265e358b..260305d1d46f 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index b98d9b5ca856..51410a638419 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 6fc10d6a9ad9..10ac72336cf2 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index 1aa99b33b203..eaa0810e1c21 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index c75f65cb3666..d46893248fc7 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 188b37a4fa0e..d4fc5d7edadd 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 46b64361bedb..342048a84cf6 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index dd60b92bd6f3..4c56c52589cd 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 1af5563ee2f4..d03951871c8f 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 2e1f93fdc218..5022779efb6e 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index eb8f503c4c39..7bff09797617 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 7ac2948c7e1b..5b9a0674bc57 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 17fa099cfe8b..0c5e2096f9ab 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index d9dbc5ab8719..68c579a4f87c 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index 5f45b6625270..cbd07d3ca721 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index cd4157c9cee0..7c85f54ac493 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 525ed24de06a..141e5875e16e 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 7308da892a9f..2e936d115beb 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index c58e97114e9a..4aafee778aec 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 71f1bc343389..d712f2e9dba3 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index f0e723a4156e..8a7fc47f3571 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index fbd1c412f931..bc9732b19282 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index 118d971442a8..d37521fc0b55 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 25d5cb05c5e6..2e2d3c24a37d 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 3610169bbb1c..2379e11a1174 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 97e93c9e4e31..38fdc8ef5aa3 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 7a055a35e221..9af90ecb7f62 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 4c0b551760ea..96eb5bc32864 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 7c2d0f752908..22cfdd9ebb75 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 8887fccbd341..81bc577e4252 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 5c1cb856218c..97d83bebd13f 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 34a4b6e3d141..e2b787fbdf16 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 316df36d8ba6..e22da839f929 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 420d5e6896de..d19e7817b15b 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 579425e560f0..bf50e8576e98 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index a991528ef8f5..81407d1475e0 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 066caf2f1aaf..aef2260bf3b2 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 5ec9e81d666c..2550387ac8d8 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index eb4fd4275196..3e7f6bf724eb 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 3ea0545165ee..422b8ab8414e 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 19f24fce0dfc..7a92d42e90bc 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index f0964b03cf61..e1b3dcad56a6 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index ee0b905a1f6a..2db9d608e5a6 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index 1852be1c8d68..f8c4296c02d7 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 109edf12d0cb..aae6aaf3089c 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index 2b69b3f2d7b9..ebc9bc61066c 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index d0f386f91323..4ec04d7c79ba 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index b76eed258f36..ecb61d19bac6 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 8d705e15a230..52765478a1ed 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/lookoutvision/pom.xml b/services/lookoutvision/pom.xml index 656c81f73fba..389baf99228a 100644 --- a/services/lookoutvision/pom.xml +++ b/services/lookoutvision/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT lookoutvision AWS Java SDK :: Services :: Lookout Vision diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 1a417bc01759..f140d6695249 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index c60160dfc158..45ff4bec76be 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 99649d41719e..b437bf3e8ae3 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index f4e9a8113790..9bf3b70175f2 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 65ce61b68080..919584c74086 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 519a88f4e10d..4b91a9521f1b 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index ad3f90e9bc7d..b2dc3aa23f8e 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 284e49e1d94d..3fe97baa5cc4 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index b8c22e86a802..f46d77c1dbfd 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 2a5f7e357629..4ee143680037 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 5456d2d8f29b..ea7c0934b905 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 323c8d47aff6..c665c22c74ce 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 121ca3aa3b7f..1687b8609c2e 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index a0c6501ba137..6bdb0723cc00 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 90560caf863a..6cbbb1d8f02c 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index c04bb20bdedd..f7b372c5cb31 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index e4d52b36d4c1..1753615c8d5c 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 828293130c16..86dbec370024 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 62e19d4d4979..7c3cccbb46d5 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index 7f35ebda2e96..af5995dd7b1f 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 7c2c33452ed2..453f420de2dc 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml index 3f0752e99764..5cd2ccfb6bce 100644 --- a/services/mwaa/pom.xml +++ b/services/mwaa/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT mwaa AWS Java SDK :: Services :: MWAA diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index d664dff74b88..7a24bd3b854b 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index 62a85e6fdf0c..b19640598848 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 7d34ca0cc8d7..b23835101f09 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index a289420b2c9c..715379f23ced 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index a5401f6942e8..827b3596b19c 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 25e01c2f3dce..05b30dd42960 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 4cf51774bce9..4ed32099f295 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 39a00ac5756c..dfbae1acf3b2 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index b404f432d5d7..ec8a62ca82df 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index a65123f7eec4..0f245666da6b 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 0db2108f155c..ebf2c54152f4 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index da0e82f32f2d..70cbdaf78efa 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 89596cf1ce4a..92ac08817afc 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 0fcfcc6f85f6..ce37b0b8d797 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index a28ead782630..d783a5e839a9 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index 130abe699f61..f5bbd64db53a 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.38 + 2.15.39-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index cd8743c8c088..722d8a78c6e5 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index d8a70cc0d936..b4f5bd350b26 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 4349e115e9e4..66e26aa0daa2 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 42921569c844..1c68daafbe3a 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 1fe16edb4d3b..6703dc935b94 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 35bd8e2fe57e..36b966f57c65 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index ed2aa0b9a80a..01d3a3bd9ace 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 84aea09383d4..0e5cace4c5f7 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 1d5a23bcfee0..92d49f58278e 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 9af21d93f26d..43f2919c7678 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index a057601feeb4..3665c1411b6e 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index a61bd9c558a7..0bce80d920de 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index adcb7781034d..9a872f883f67 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 96fe37a9b7a9..598cd756cd85 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index ddff6e0ae178..c4e4e3ae8566 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index d60673fec754..75e0c101723a 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index fab784d0ff44..c321b548b4f9 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index 3e21ea784812..e5f24053093c 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index ba9cf3b27ac2..b229771bffc8 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 973dd728f300..0b98c4ef410c 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 937aafda2a24..20b7b92d78fe 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerfeaturestoreruntime/pom.xml b/services/sagemakerfeaturestoreruntime/pom.xml index e61d6e095d00..4203b48019bf 100644 --- a/services/sagemakerfeaturestoreruntime/pom.xml +++ b/services/sagemakerfeaturestoreruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT sagemakerfeaturestoreruntime AWS Java SDK :: Services :: Sage Maker Feature Store Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 170d0bdc34c9..617a1a7c1ea6 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 2d23e653714f..daefd4f8e29d 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index a5b927a56033..280be83d4611 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index 195494ad8267..fe930511b0ba 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 20399caaf992..9954b516c334 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 7cc819bfe8f9..d72e1cad941b 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 6883048cc7d0..17738b4a5c0b 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index 42a224a92282..78fe9c3f5a93 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 727bafa97282..fc9cadbb1d07 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 4c1d63dea63e..b08424efc0f3 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 53d8bd63349f..9b66d5bb79c8 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 403532e6f3b8..82563810d443 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index 26689a3ec802..d4638a5e4ae1 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 9a05d5c7c0e2..1fd2f3b1b3af 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index f1e80df54dbc..b7e6277bc4f8 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 26a9632e6322..7c8f4f3ece90 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index a2d01834dd58..a0fd5a4bda49 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index a13a0becdec8..6ac442516dc3 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 1341fe3bbc1f..b74fe83c9652 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 493cb7f6da18..4a46b45cee98 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 8f22aacac72f..0037aa04e42e 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 3cccc22fbd1f..a0638eb70c9e 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 90816c1f1ded..508d83005df0 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 445704c2a1ed..442e41175493 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index da1d4c657de9..4291ea08806f 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index ba88eabeac59..7d91159c9bd4 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 05e3a89e3dd0..ab53007f6fa3 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index ebf5f175bed6..bb10fd0d5c9c 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 40579b9cb0ad..415b1c38a940 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index e20280ad92c9..63bde4edd5ff 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index b7f6cfef7996..579fbc50e8b2 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 1c74658c7d09..9274b101d84b 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 57a76bea6b1d..577ce6e23a14 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 37d2395d4e1c..446bfc13a8d7 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index beacecd22b2f..7a9df4b33757 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index c77ea4055eb8..47083bca14fa 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index 50d34abeddd8..b321eb129e63 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index b5ef7a5a3172..c736aa46ded1 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 7d8be9516355..45473bcf3544 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index c318af517285..b70906b7c300 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 6f4bcd223a6a..243f29064b5c 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index 61e7f2672a04..a0d5fa2e8c68 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 021bc59c38e7..44d53c430a45 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.38 + 2.15.39-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index e26662429127..c0df172a9714 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.15.38 + 2.15.39-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index eb856ea1441e..24ac92c6df04 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.15.38 + 2.15.39-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index db5cada6628f..9436051af2df 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.15.38 + 2.15.39-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 9f7bba73de00..6a1cde12b093 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.15.38 + 2.15.39-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index f41a7ba0a8a7..0f029cc0622b 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.15.38 + 2.15.39-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index f370d58bc7ad..96eee51eed8c 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.38 + 2.15.39-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index 0f1f816cb7e2..c8f9791c24b9 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.15.38 + 2.15.39-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 33b6d8a89bbe..3bf2e9d8e152 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.15.38 + 2.15.39-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index c326b148fefe..e626a8f6e025 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.15.38 + 2.15.39-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 1627fa906e8b..03b566e859cc 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.15.38 + 2.15.39-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index d80d8331a176..dbb02b97b925 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.38 + 2.15.39-SNAPSHOT 4.0.0 From 126f8a7089ff9642f4212f2c184761415c5bdad1 Mon Sep 17 00:00:00 2001 From: Andreas Scheja Date: Thu, 26 Nov 2020 19:07:51 +0100 Subject: [PATCH 330/339] Log a warning in case of missing sts dependency. Fixes #1915. --- .../credentials/internal/WebIdentityCredentialsUtils.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/core/auth/src/main/java/software/amazon/awssdk/auth/credentials/internal/WebIdentityCredentialsUtils.java b/core/auth/src/main/java/software/amazon/awssdk/auth/credentials/internal/WebIdentityCredentialsUtils.java index d14e28da54fb..44fe98d4bd20 100644 --- a/core/auth/src/main/java/software/amazon/awssdk/auth/credentials/internal/WebIdentityCredentialsUtils.java +++ b/core/auth/src/main/java/software/amazon/awssdk/auth/credentials/internal/WebIdentityCredentialsUtils.java @@ -19,12 +19,14 @@ import software.amazon.awssdk.annotations.SdkInternalApi; import software.amazon.awssdk.auth.credentials.WebIdentityTokenCredentialsProviderFactory; import software.amazon.awssdk.core.internal.util.ClassLoaderHelper; +import software.amazon.awssdk.utils.Logger; /** * Utility class used to configure credential providers based on JWT web identity tokens. */ @SdkInternalApi public final class WebIdentityCredentialsUtils { + private static final Logger log = Logger.loggerFor(WebIdentityCredentialsUtils.class); private static final String STS_WEB_IDENTITY_CREDENTIALS_PROVIDER_FACTORY = "software.amazon.awssdk.services.sts.internal.StsWebIdentityCredentialsProviderFactory"; @@ -44,7 +46,9 @@ public static WebIdentityTokenCredentialsProviderFactory factory() { WebIdentityCredentialsUtils.class); return (WebIdentityTokenCredentialsProviderFactory) stsCredentialsProviderFactory.getConstructor().newInstance(); } catch (ClassNotFoundException e) { - throw new IllegalStateException("To use web identity tokens, the 'sts' service module must be on the class path.", e); + String message = "To use web identity tokens, the 'sts' service module must be on the class path."; + log.warn(() -> message); + throw new IllegalStateException(message, e); } catch (NoSuchMethodException | InvocationTargetException | InstantiationException | IllegalAccessException e) { throw new IllegalStateException("Failed to create a web identity token credentials provider.", e); } From 3a103f385387cf36f9c39c29c44a90fc2a643a4a Mon Sep 17 00:00:00 2001 From: Zoe Wang Date: Mon, 30 Nov 2020 15:25:03 -0800 Subject: [PATCH 331/339] Bump up spotbugs version --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8b652bf9100e..f9395244b62f 100644 --- a/pom.xml +++ b/pom.xml @@ -100,7 +100,7 @@ 3.3 1.3 UTF-8 - 3.1.11 + 4.1.4 2.0.4 2.3.24-incubating 1.13.0 From 996a0dd0fd3d1ab66853be6d319b09462922fb49 Mon Sep 17 00:00:00 2001 From: Zoe Wang Date: Wed, 2 Dec 2020 17:01:39 -0800 Subject: [PATCH 332/339] Ignore proxyRequest_noKeyManagerGiven_notAbleToSendConnect tests when using Java 8+ --- .../amazon/awssdk/checkstyle-suppressions.xml | 3 ++ .../software/amazon/awssdk/checkstyle.xml | 10 +++++++ .../internal/ChannelPipelineInitializer.java | 22 ++------------ .../internal/Http1TunnelConnectionPool.java | 4 ++- .../nio/netty/internal/utils/NettyUtils.java | 30 +++++++++++++++++++ .../nio/netty/NettyClientTlsAuthTest.java | 5 ++++ .../Http1TunnelConnectionPoolTest.java | 4 +++ .../netty/internal/utils/NettyUtilsTest.java | 23 ++++++++++++++ 8 files changed, 80 insertions(+), 21 deletions(-) diff --git a/build-tools/src/main/resources/software/amazon/awssdk/checkstyle-suppressions.xml b/build-tools/src/main/resources/software/amazon/awssdk/checkstyle-suppressions.xml index 9ea21bd6e7a9..f4093089227f 100644 --- a/build-tools/src/main/resources/software/amazon/awssdk/checkstyle-suppressions.xml +++ b/build-tools/src/main/resources/software/amazon/awssdk/checkstyle-suppressions.xml @@ -47,4 +47,7 @@ + + diff --git a/build-tools/src/main/resources/software/amazon/awssdk/checkstyle.xml b/build-tools/src/main/resources/software/amazon/awssdk/checkstyle.xml index 0624de4e6fc6..f02fa4c0f460 100644 --- a/build-tools/src/main/resources/software/amazon/awssdk/checkstyle.xml +++ b/build-tools/src/main/resources/software/amazon/awssdk/checkstyle.xml @@ -365,6 +365,16 @@
+ + + + + + + + + diff --git a/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/ChannelPipelineInitializer.java b/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/ChannelPipelineInitializer.java index ba29a9872e83..2893e6016971 100644 --- a/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/ChannelPipelineInitializer.java +++ b/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/ChannelPipelineInitializer.java @@ -19,6 +19,7 @@ import static software.amazon.awssdk.http.nio.netty.internal.ChannelAttributeKey.HTTP2_INITIAL_WINDOW_SIZE; import static software.amazon.awssdk.http.nio.netty.internal.ChannelAttributeKey.PROTOCOL_FUTURE; import static software.amazon.awssdk.http.nio.netty.internal.NettyConfiguration.HTTP2_CONNECTION_PING_TIMEOUT_SECONDS; +import static software.amazon.awssdk.http.nio.netty.internal.utils.NettyUtils.newSslHandler; import static software.amazon.awssdk.utils.NumericUtils.saturatedCast; import static software.amazon.awssdk.utils.StringUtils.lowerCase; @@ -44,8 +45,6 @@ import java.time.Duration; import java.util.concurrent.CompletableFuture; import java.util.concurrent.atomic.AtomicReference; -import javax.net.ssl.SSLEngine; -import javax.net.ssl.SSLParameters; import software.amazon.awssdk.annotations.SdkInternalApi; import software.amazon.awssdk.http.Protocol; import software.amazon.awssdk.http.nio.netty.internal.http2.Http2GoAwayEventListener; @@ -93,10 +92,7 @@ public void channelCreated(Channel ch) { ChannelPipeline pipeline = ch.pipeline(); if (sslCtx != null) { - // Need to provide host and port to enable SNI - // https://github.com/netty/netty/issues/3801#issuecomment-104274440 - SslHandler sslHandler = sslCtx.newHandler(ch.alloc(), poolKey.getHost(), poolKey.getPort()); - configureSslEngine(sslHandler.engine()); + SslHandler sslHandler = newSslHandler(sslCtx, ch.alloc(), poolKey.getHost(), poolKey.getPort()); pipeline.addLast(sslHandler); pipeline.addLast(SslCloseCompletionEventHandler.getInstance()); @@ -134,20 +130,6 @@ public void channelCreated(Channel ch) { pipeline.addLast(new LoggingHandler(LogLevel.DEBUG)); } - /** - * Enable HostName verification. - * - * See https://netty.io/4.0/api/io/netty/handler/ssl/SslContext.html#newHandler-io.netty.buffer.ByteBufAllocator-java.lang - * .String-int- - * - * @param sslEngine the sslEngine to configure - */ - private void configureSslEngine(SSLEngine sslEngine) { - SSLParameters sslParameters = sslEngine.getSSLParameters(); - sslParameters.setEndpointIdentificationAlgorithm("HTTPS"); - sslEngine.setSSLParameters(sslParameters); - } - private void configureHttp2(Channel ch, ChannelPipeline pipeline) { // Using Http2FrameCodecBuilder and Http2MultiplexHandler based on 4.1.37 release notes // https://netty.io/news/2019/06/28/4-1-37-Final.html diff --git a/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/Http1TunnelConnectionPool.java b/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/Http1TunnelConnectionPool.java index f687f7052c3d..804b65ef3c81 100644 --- a/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/Http1TunnelConnectionPool.java +++ b/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/Http1TunnelConnectionPool.java @@ -15,6 +15,8 @@ package software.amazon.awssdk.http.nio.netty.internal; +import static software.amazon.awssdk.http.nio.netty.internal.utils.NettyUtils.newSslHandler; + import io.netty.buffer.ByteBufAllocator; import io.netty.channel.Channel; import io.netty.channel.ChannelHandler; @@ -148,7 +150,7 @@ private SslHandler createSslHandlerIfNeeded(ByteBufAllocator alloc) { return null; } - return sslContext.newHandler(alloc, proxyAddress.getHost(), proxyAddress.getPort()); + return newSslHandler(sslContext, alloc, proxyAddress.getHost(), proxyAddress.getPort()); } private static boolean isTunnelEstablished(Channel ch) { diff --git a/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/utils/NettyUtils.java b/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/utils/NettyUtils.java index 584bdc635f8e..60b4d31c0e6b 100644 --- a/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/utils/NettyUtils.java +++ b/http-clients/netty-nio-client/src/main/java/software/amazon/awssdk/http/nio/netty/internal/utils/NettyUtils.java @@ -15,7 +15,10 @@ package software.amazon.awssdk.http.nio.netty.internal.utils; +import io.netty.buffer.ByteBufAllocator; import io.netty.channel.EventLoop; +import io.netty.handler.ssl.SslContext; +import io.netty.handler.ssl.SslHandler; import io.netty.util.AttributeKey; import io.netty.util.concurrent.EventExecutor; import io.netty.util.concurrent.Future; @@ -25,6 +28,8 @@ import java.util.concurrent.CompletableFuture; import java.util.function.BiConsumer; import java.util.function.Function; +import javax.net.ssl.SSLEngine; +import javax.net.ssl.SSLParameters; import software.amazon.awssdk.annotations.SdkInternalApi; import software.amazon.awssdk.utils.Logger; @@ -173,4 +178,29 @@ public static AttributeKey getOrCreateAttributeKey(String attr) { return AttributeKey.newInstance(attr); //CHECKSTYLE:ON } + + /** + * @return a new {@link SslHandler} with ssl engine configured + */ + public static SslHandler newSslHandler(SslContext sslContext, ByteBufAllocator alloc, String peerHost, int peerPort) { + // Need to provide host and port to enable SNI + // https://github.com/netty/netty/issues/3801#issuecomment-104274440 + SslHandler sslHandler = sslContext.newHandler(alloc, peerHost, peerPort); + configureSslEngine(sslHandler.engine()); + return sslHandler; + } + + /** + * Enable Hostname verification. + * + * See https://netty.io/4.0/api/io/netty/handler/ssl/SslContext.html#newHandler-io.netty.buffer.ByteBufAllocator-java.lang + * .String-int- + * + * @param sslEngine the sslEngine to configure + */ + private static void configureSslEngine(SSLEngine sslEngine) { + SSLParameters sslParameters = sslEngine.getSSLParameters(); + sslParameters.setEndpointIdentificationAlgorithm("HTTPS"); + sslEngine.setSSLParameters(sslParameters); + } } diff --git a/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/NettyClientTlsAuthTest.java b/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/NettyClientTlsAuthTest.java index 936a056425f5..8498e838171f 100644 --- a/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/NettyClientTlsAuthTest.java +++ b/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/NettyClientTlsAuthTest.java @@ -22,11 +22,14 @@ import static org.mockito.Mockito.mock; import static org.mockito.Mockito.verify; import static software.amazon.awssdk.http.SdkHttpConfigurationOption.TRUST_ALL_CERTIFICATES; + import com.github.tomakehurst.wiremock.WireMockServer; import com.github.tomakehurst.wiremock.core.WireMockConfiguration; import java.io.IOException; +import org.hamcrest.CoreMatchers; import org.junit.After; import org.junit.AfterClass; +import org.junit.Assume; import org.junit.BeforeClass; import org.junit.Rule; import org.junit.Test; @@ -136,6 +139,8 @@ public void proxyRequest_ableToAuthenticate() { @Test public void proxyRequest_noKeyManagerGiven_notAbleToSendConnect() throws Throwable { + // TODO: remove this and fix the issue with TLS1.3 + Assume.assumeThat(System.getProperty("java.version"), CoreMatchers.startsWith("1.8")); thrown.expectCause(instanceOf(IOException.class)); thrown.expectMessage("Unable to send CONNECT request to proxy"); diff --git a/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/internal/Http1TunnelConnectionPoolTest.java b/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/internal/Http1TunnelConnectionPoolTest.java index 3789749730bc..12100fcf8acc 100644 --- a/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/internal/Http1TunnelConnectionPoolTest.java +++ b/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/internal/Http1TunnelConnectionPoolTest.java @@ -45,6 +45,7 @@ import java.util.List; import java.util.concurrent.CountDownLatch; import javax.net.ssl.SSLEngine; +import javax.net.ssl.SSLParameters; import javax.net.ssl.SSLSessionContext; import org.junit.AfterClass; import org.junit.Before; @@ -180,6 +181,9 @@ public void acquireFromDelegatePoolFails_failsFuture() { @Test public void sslContextProvided_andProxyUsingHttps_addsSslHandler() { SslHandler mockSslHandler = mock(SslHandler.class); + SSLEngine mockSslEngine = mock(SSLEngine.class); + when(mockSslHandler.engine()).thenReturn(mockSslEngine); + when(mockSslEngine.getSSLParameters()).thenReturn(mock(SSLParameters.class)); TestSslContext mockSslCtx = new TestSslContext(mockSslHandler); Http1TunnelConnectionPool.InitHandlerSupplier supplier = (srcPool, remoteAddr, initFuture) -> { diff --git a/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/internal/utils/NettyUtilsTest.java b/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/internal/utils/NettyUtilsTest.java index 680057886174..d476e6b37c2f 100644 --- a/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/internal/utils/NettyUtilsTest.java +++ b/http-clients/netty-nio-client/src/test/java/software/amazon/awssdk/http/nio/netty/internal/utils/NettyUtilsTest.java @@ -17,8 +17,14 @@ import static org.assertj.core.api.Assertions.assertThat; +import io.netty.channel.Channel; +import io.netty.handler.ssl.SslContext; +import io.netty.handler.ssl.SslContextBuilder; +import io.netty.handler.ssl.SslHandler; import io.netty.util.AttributeKey; +import javax.net.ssl.SSLEngine; import org.junit.Test; +import software.amazon.awssdk.http.nio.netty.internal.MockChannel; public class NettyUtilsTest { @Test @@ -27,4 +33,21 @@ public void testGetOrCreateAttributeKey_calledTwiceWithSameName_returnsSameInsta AttributeKey fooAttr = NettyUtils.getOrCreateAttributeKey(attr); assertThat(NettyUtils.getOrCreateAttributeKey(attr)).isSameAs(fooAttr); } + + @Test + public void newSslHandler_sslEngineShouldBeConfigured() throws Exception { + SslContext sslContext = SslContextBuilder.forClient().build(); + Channel channel = null; + try { + channel = new MockChannel(); + SslHandler sslHandler = NettyUtils.newSslHandler(sslContext, channel.alloc(), "localhost", 80); + SSLEngine engine = sslHandler.engine(); + assertThat(engine.getSSLParameters().getEndpointIdentificationAlgorithm()).isEqualTo("HTTPS"); + } finally { + if (channel != null) { + channel.close(); + } + } + + } } From 4c79a05ae13a9b5b34c5cf5da644a1066daf18ab Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 3 Dec 2020 20:30:34 +0000 Subject: [PATCH 333/339] AmplifyBackend Update: Regular documentation updates. --- .../feature-AmplifyBackend-177cf6a.json | 6 + .../codegen-resources/service-2.json | 212 +++++++++--------- 2 files changed, 108 insertions(+), 110 deletions(-) create mode 100644 .changes/next-release/feature-AmplifyBackend-177cf6a.json diff --git a/.changes/next-release/feature-AmplifyBackend-177cf6a.json b/.changes/next-release/feature-AmplifyBackend-177cf6a.json new file mode 100644 index 000000000000..f7be9e356d93 --- /dev/null +++ b/.changes/next-release/feature-AmplifyBackend-177cf6a.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AmplifyBackend", + "contributor": "", + "description": "Regular documentation updates." +} diff --git a/services/amplifybackend/src/main/resources/codegen-resources/service-2.json b/services/amplifybackend/src/main/resources/codegen-resources/service-2.json index 5f9bfdbf217b..9c9d6ff4cab1 100644 --- a/services/amplifybackend/src/main/resources/codegen-resources/service-2.json +++ b/services/amplifybackend/src/main/resources/codegen-resources/service-2.json @@ -213,7 +213,7 @@ "documentation": "

400 response

" } ], - "documentation": "

Generates a one time challenge code to authenticate a user into your Amplify Admin UI.

" + "documentation": "

Generates a one-time challenge code to authenticate a user into your Amplify Admin UI.

" }, "DeleteBackend": { "name": "DeleteBackend", @@ -247,7 +247,7 @@ "documentation": "

400 response

" } ], - "documentation": "

Removes an existing environment from your Ampify project.

" + "documentation": "

Removes an existing environment from your Amplify project.

" }, "DeleteBackendAPI": { "name": "DeleteBackendAPI", @@ -417,7 +417,7 @@ "documentation": "

400 response

" } ], - "documentation": "

Provides project level details for your Amplify UI project.

" + "documentation": "

Provides project-level details for your Amplify UI project.

" }, "GetBackendAPI": { "name": "GetBackendAPI", @@ -451,7 +451,7 @@ "documentation": "

400 response

" } ], - "documentation": "

Gets the details for a backend api.

" + "documentation": "

Gets the details for a backend API.

" }, "GetBackendAPIModels": { "name": "GetBackendAPIModels", @@ -519,7 +519,7 @@ "documentation": "

400 response

" } ], - "documentation": "

Gets a backend auth details.

" + "documentation": "

Gets backend auth details.

" }, "GetBackendJob": { "name": "GetBackendJob", @@ -689,7 +689,7 @@ "documentation": "

400 response

" } ], - "documentation": "

Removes the AWS resources required to access the Amplify Admin UI.

" + "documentation": "

Removes the AWS resources that are required to access the Amplify Admin UI.

" }, "UpdateBackendAPI": { "name": "UpdateBackendAPI", @@ -791,7 +791,7 @@ "documentation": "

400 response

" } ], - "documentation": "

Updates the AWS resources required to access the Amplify Admin UI.

" + "documentation": "

Updates the AWS resources that are required to access the Amplify Admin UI.

" }, "UpdateBackendJob": { "name": "UpdateBackendJob", @@ -842,17 +842,17 @@ "CognitoUserPoolId": { "shape": "__string", "locationName": "cognitoUserPoolId", - "documentation": "

The Amazon Cognito user pool id, if Amazon Cognito was used as an authentication setting to access your data models.

" + "documentation": "

The Amazon Cognito user pool ID, if Amazon Cognito is used as an authentication setting to access your data models.

" }, "Description": { "shape": "__string", "locationName": "description", - "documentation": "

The api key description for API_KEY, if it was used as an authentication mechanism to access your data models.

" + "documentation": "

The API key description for API_KEY, if it is used as an authentication mechanism to access your data models.

" }, "ExpirationTime": { "shape": "__double", "locationName": "expirationTime", - "documentation": "

The api key expiration time for API_KEY, if it was used as an authentication mechanism to access your data models.

" + "documentation": "

The API key expiration time for API_KEY, if it is used as an authentication mechanism to access your data models.

" }, "OpenIDAuthTTL": { "shape": "__string", @@ -862,7 +862,7 @@ "OpenIDClientId": { "shape": "__string", "locationName": "openIDClientId", - "documentation": "

The clientID for openID, if openID was used as an authentication setting to access your data models.

" + "documentation": "

The clientID for openID, if openID is used as an authentication setting to access your data models.

" }, "OpenIDIatTTL": { "shape": "__string", @@ -872,12 +872,12 @@ "OpenIDIssueURL": { "shape": "__string", "locationName": "openIDIssueURL", - "documentation": "

The openID issuer URL, if openID was used as an authentication setting to access your data models.

" + "documentation": "

The openID issuer URL, if openID is used as an authentication setting to access your data models.

" }, "OpenIDProviderName": { "shape": "__string", "locationName": "openIDProviderName", - "documentation": "

The open id provider name, if openID was used as an authentication mechanism to access your data models.

" + "documentation": "

The openID provider name, if openID is used as an authentication mechanism to access your data models.

" } }, "documentation": "

The authentication settings for accessing provisioned data models in your Amplify project.

" @@ -961,7 +961,7 @@ "documentation": "

The strategy for conflict resolution.

" } }, - "documentation": "

Describes the conflict resolution configuration for your data model configured in your Amplify project.

" + "documentation": "

Describes the conflict resolution configuration for the data model configured in your Amplify project.

" }, "BackendAPIReqObj": { "type": "structure", @@ -988,22 +988,22 @@ "AdditionalAuthTypes": { "shape": "ListOfBackendAPIAuthType", "locationName": "additionalAuthTypes", - "documentation": "

Addition authentication methods used to interact with your data models.

" + "documentation": "

Additional authentication methods used to interact with your data models.

" }, "ApiName": { "shape": "__string", "locationName": "apiName", - "documentation": "

The API name used to interact with the data model, configured as a part of the amplify project.

" + "documentation": "

The API name used to interact with the data model, configured as a part of the Amplify project.

" }, "ConflictResolution": { "shape": "BackendAPIConflictResolution", "locationName": "conflictResolution", - "documentation": "

The conflict resoultion strategy for your data stored in the data models.

" + "documentation": "

The conflict resolution strategy for your data stored in the data models.

" }, "DefaultAuthType": { "shape": "BackendAPIAuthType", "locationName": "defaultAuthType", - "documentation": "

The default authentication type for interacting with the configured data models in your amplify project.

" + "documentation": "

The default authentication type for interacting with the configured data models in your Amplify project.

" }, "Service": { "shape": "__string", @@ -1013,10 +1013,10 @@ "TransformSchema": { "shape": "__string", "locationName": "transformSchema", - "documentation": "

The definition of the data model in the annotated transform of the graphql schema.

" + "documentation": "

The definition of the data model in the annotated transform of the GraphQL schema.

" } }, - "documentation": "

The resource config for the data model,configured as a part of the Amplify project.

" + "documentation": "

The resource configuration for the data model, configured as a part of the Amplify project.

" }, "BackendAPIRespObj": { "type": "structure", @@ -1104,15 +1104,15 @@ "ClientId": { "shape": "__string", "locationName": "client_id", - "documentation": "

Describes the client_id which can be obtained from the third party social federation provider.

" + "documentation": "

Describes the client_id that can be obtained from the third-party social federation provider.

" }, "ClientSecret": { "shape": "__string", "locationName": "client_secret", - "documentation": "

Describes the client_secret which can be obtained from third party social federation providers.

" + "documentation": "

Describes the client_secret that can be obtained from third-party social federation providers.

" } }, - "documentation": "

Describes third party social federation configurations for allowing your app users to sign in using OAuth.

" + "documentation": "

Describes third-party social federation configurations for allowing your app users to sign in using OAuth.

" }, "BackendConfigRespObj": { "type": "structure", @@ -1135,7 +1135,7 @@ "LoginAuthConfig": { "shape": "LoginAuthConfigReqObj", "locationName": "loginAuthConfig", - "documentation": "

Describes the Amazon Cognito configurations for the Admin UI auth resource to login with.

" + "documentation": "

Describes the Amazon Cognito configurations for the Admin UI auth resource to log in with.

" } }, "documentation": "

The response object for this operation.

" @@ -1146,12 +1146,12 @@ "Operation": { "shape": "__string", "locationName": "operation", - "documentation": "

Filters the list of response objects to only include those with the specified operation name.

" + "documentation": "

Filters the list of response objects to include only those with the specified operation name.

" }, "Status": { "shape": "__string", "locationName": "status", - "documentation": "

Filters the list of response objects to only include those with the specified status.

" + "documentation": "

Filters the list of response objects to include only those with the specified status.

" } }, "documentation": "

The request object for this operation.

" @@ -1212,7 +1212,7 @@ "Message": { "shape": "__string", "locationName": "message", - "documentation": "

An error message to inform that the request has failed.

" + "documentation": "

An error message to inform that the request failed.

" } }, "documentation": "

An error returned if a request is not formed properly.

", @@ -1438,7 +1438,7 @@ "DeliveryMethod": { "shape": "DeliveryMethod", "locationName": "deliveryMethod", - "documentation": "

Describes which mode to use (either SMS or email) to deliver messages to app users that want to recover their password.

" + "documentation": "

Describes which method to use (either SMS or email) to deliver messages to app users that want to recover their password.

" }, "EmailSettings": { "shape": "EmailSettings", @@ -1451,7 +1451,7 @@ "documentation": "

The configuration for the SMS message sent when an app user forgets their password.

" } }, - "documentation": "

Describes the forgot password policy for authenticating into the Amlify app.

", + "documentation": "

Describes the forgot password policy for authenticating into the Amplify app.

", "required": [ "DeliveryMethod" ] @@ -1470,7 +1470,7 @@ "documentation": "

Set to true or false based on whether you want to enable guest authorization to your Amplify app.

" } }, - "documentation": "

Describes authorization configurations for the auth resources, configures as a part of your Amplify project.

", + "documentation": "

Describes authorization configurations for the auth resources, configured as a part of your Amplify project.

", "required": [ "UnauthenticatedLogin", "IdentityPoolName" @@ -1481,7 +1481,7 @@ "members": { "MFAMode": { "shape": "MFAMode", - "documentation": "

Describes whether MFA should be [ON, OFF, OPTIONAL] for authentication in your Amplify project.

" + "documentation": "

Describes whether MFA should be [ON, OFF, or OPTIONAL] for authentication in your Amplify project.

" }, "Settings": { "shape": "Settings", @@ -1489,7 +1489,7 @@ "documentation": "

Describes the configuration settings and methods for your Amplify app users to use MFA.

" } }, - "documentation": "

Describes whether multi-factor authentication policies should be applied for your Amazon Cognito user pool configured as a part of your Amplify project.

", + "documentation": "

Describes whether to apply multi-factor authentication (MFA) policies for your Amazon Cognito user pool that's configured as a part of your Amplify project.

", "required": [ "MFAMode" ] @@ -1505,27 +1505,27 @@ "OAuthGrantType": { "shape": "OAuthGrantType", "locationName": "oAuthGrantType", - "documentation": "

The OAuth grant type which you use to allow app users to authenticate from your Amplify app.

" + "documentation": "

The OAuth grant type that you use to allow app users to authenticate from your Amplify app.

" }, "OAuthScopes": { "shape": "ListOfOAuthScopesElement", "locationName": "oAuthScopes", - "documentation": "

List of OAuth related flows which use to allow your app users to authenticate from your Amplify app.

" + "documentation": "

List of OAuth-related flows that allow your app users to authenticate from your Amplify app.

" }, "RedirectSignInURIs": { "shape": "ListOf__string", "locationName": "redirectSignInURIs", - "documentation": "

The redirected URI for sigining into your Amplify app.

" + "documentation": "

The redirected URI for signing in to your Amplify app.

" }, "RedirectSignOutURIs": { "shape": "ListOf__string", "locationName": "redirectSignOutURIs", - "documentation": "

Redirect URLs used by OAuth when a user signs out of an Amplify app.

" + "documentation": "

Redirect URLs that OAuth uses when a user signs out of an Amplify app.

" }, "SocialProviderSettings": { "shape": "SocialProviderSettings", "locationName": "socialProviderSettings", - "documentation": "

The settings for using the social providers for access to your Amplify app.

" + "documentation": "

The settings for using social identity providers for access to your Amplify app.

" } }, "documentation": "

Creates the OAuth configuration for your Amplify project.

", @@ -1542,15 +1542,15 @@ "AdditionalConstraints": { "shape": "ListOfAdditionalConstraintsElement", "locationName": "additionalConstraints", - "documentation": "

Additional constraints for the pasword used to access the backend of your Amplify project.

" + "documentation": "

Additional constraints for the password used to access the backend of your Amplify project.

" }, "MinimumLength": { "shape": "__double", "locationName": "minimumLength", - "documentation": "

The minimum length of password used to access the backend of your Amplify project.

" + "documentation": "

The minimum length of the password used to access the backend of your Amplify project.

" } }, - "documentation": "

The password policy configuration for the backend to your Amplify project.

", + "documentation": "

The password policy configuration for the backend of your Amplify project.

", "required": [ "MinimumLength" ] @@ -1625,7 +1625,7 @@ "IdentityPoolConfigs": { "shape": "CreateBackendAuthIdentityPoolConfig", "locationName": "identityPoolConfigs", - "documentation": "

Describes the authorization configuration for the Amazon Cognito identity pool, provisioned as a part of your auth resource in the Amplify project.

" + "documentation": "

Describes the authorization configuration for the Amazon Cognito identity pool, provisioned as a part of the auth resource in your Amplify project.

" }, "Service": { "shape": "Service", @@ -1635,7 +1635,7 @@ "UserPoolConfigs": { "shape": "CreateBackendAuthUserPoolConfig", "locationName": "userPoolConfigs", - "documentation": "

Describes authentication configuration for the Amazon Cognito user pool, provisioned as a part of your auth resource in the Amplify project.

" + "documentation": "

Describes the authentication configuration for the Amazon Cognito user pool, provisioned as a part of the auth resource in your Amplify project.

" } }, "documentation": "

Defines the resource configuration when creating an auth resource in your Amplify project.

", @@ -1691,7 +1691,7 @@ "Mfa": { "shape": "CreateBackendAuthMFAConfig", "locationName": "mfa", - "documentation": "

Describes whether multi-factor authentication policies should be applied for your Amazon Cognito user pool configured as a part of your Amplify project.

" + "documentation": "

Describes whether to apply multi-factor authentication (MFA) policies for your Amazon Cognito user pool that's configured as a part of your Amplify project.

" }, "OAuth": { "shape": "CreateBackendAuthOAuthConfig", @@ -1706,12 +1706,12 @@ "RequiredSignUpAttributes": { "shape": "ListOfRequiredSignUpAttributesElement", "locationName": "requiredSignUpAttributes", - "documentation": "

The required attributes to sign up new users in the user pool.

" + "documentation": "

The required attributes to sign up new users in the Amazon Cognito user pool.

" }, "SignInMethod": { "shape": "SignInMethod", "locationName": "signInMethod", - "documentation": "

Describes the sign-in methods that your Amplify app users to login using the Amazon Cognito user pool, configured as a part of your Amplify project.

" + "documentation": "

Describes the sign-in methods that your Amplify app users to log in using the Amazon Cognito user pool that's configured as a part of your Amplify project.

" }, "UserPoolName": { "shape": "__string", @@ -1832,7 +1832,7 @@ "ResourceConfig": { "shape": "ResourceConfig", "locationName": "resourceConfig", - "documentation": "

The resource configuration for the create backend request.

" + "documentation": "

The resource configuration for the backend creation request.

" }, "ResourceName": { "shape": "__string", @@ -1868,7 +1868,7 @@ "ResourceConfig": { "shape": "ResourceConfig", "locationName": "resourceConfig", - "documentation": "

The resource configuration for the create backend request.

" + "documentation": "

The resource configuration for the backend creation request.

" }, "ResourceName": { "shape": "__string", @@ -1983,17 +1983,17 @@ "ChallengeCode": { "shape": "__string", "locationName": "challengeCode", - "documentation": "

One time challenge code for authenticating into Amplify Admin UI.

" + "documentation": "

One-time challenge code for authenticating into the Amplify Admin UI.

" }, "SessionId": { "shape": "__string", "locationName": "sessionId", - "documentation": "

A unique identifier provided when creating a new challenge token.

" + "documentation": "

A unique ID provided when creating a new challenge token.

" }, "Ttl": { "shape": "__string", "locationName": "ttl", - "documentation": "

The expiry time for the one time generated token code.

" + "documentation": "

The expiry time for the one-time generated token code.

" } }, "documentation": "

The response object for this operation.

", @@ -2015,17 +2015,17 @@ "ChallengeCode": { "shape": "__string", "locationName": "challengeCode", - "documentation": "

One time challenge code for authenticating into Amplify Admin UI.

" + "documentation": "

One-time challenge code for authenticating into the Amplify Admin UI.

" }, "SessionId": { "shape": "__string", "locationName": "sessionId", - "documentation": "

A unique identifier provided when creating a new challenge token.

" + "documentation": "

A unique ID provided when creating a new challenge token.

" }, "Ttl": { "shape": "__string", "locationName": "ttl", - "documentation": "

The expiry time for the one time generated token code.

" + "documentation": "

The expiry time for the one-time generated token code.

" } } }, @@ -2269,7 +2269,7 @@ "shape": "__string", "location": "uri", "locationName": "sessionId", - "documentation": "

The session Id.

" + "documentation": "

The session ID.

" } }, "required": [ @@ -2330,7 +2330,7 @@ "Message": { "shape": "__string", "locationName": "message", - "documentation": "

An error message to inform that the request has failed.

" + "documentation": "

An error message to inform that the request failed.

" } }, "documentation": "

An error returned if there's a temporary issue with the service.

", @@ -2408,7 +2408,7 @@ "Models": { "shape": "__string", "locationName": "models", - "documentation": "

Stringified JSON of the datastore model.

" + "documentation": "

Stringified JSON of the DataStore model.

" }, "Status": { "shape": "Status", @@ -2452,7 +2452,7 @@ "Models": { "shape": "__string", "locationName": "models", - "documentation": "

Stringified JSON of the datastore model.

" + "documentation": "

Stringified JSON of the DataStore model.

" }, "Status": { "shape": "Status", @@ -2776,7 +2776,7 @@ "AmplifyMetaConfig": { "shape": "__string", "locationName": "amplifyMetaConfig", - "documentation": "

A stringified version of the current configs for your Amplify project.

" + "documentation": "

A stringified version of the current configurations for your Amplify project.

" }, "AppId": { "shape": "__string", @@ -2815,7 +2815,7 @@ "AmplifyMetaConfig": { "shape": "__string", "locationName": "amplifyMetaConfig", - "documentation": "

A stringified version of the current configs for your Amplify project.

" + "documentation": "

A stringified version of the current configurations for your Amplify project.

" }, "AppId": { "shape": "__string", @@ -2857,7 +2857,7 @@ "shape": "__string", "location": "uri", "locationName": "sessionId", - "documentation": "

The session Id.

" + "documentation": "

The session ID.

" } }, "required": [ @@ -2876,17 +2876,17 @@ "ChallengeCode": { "shape": "__string", "locationName": "challengeCode", - "documentation": "

The one time challenge code for authenticating into Amplify Admin UI.

" + "documentation": "

The one-time challenge code for authenticating into the Amplify Admin UI.

" }, "SessionId": { "shape": "__string", "locationName": "sessionId", - "documentation": "

A unique identifier provided when creating a new challenge token.

" + "documentation": "

A unique ID provided when creating a new challenge token.

" }, "Ttl": { "shape": "__string", "locationName": "ttl", - "documentation": "

The expiry time for the one time generated token code.

" + "documentation": "

The expiry time for the one-time generated token code.

" } }, "documentation": "

The response object for this operation.

", @@ -2908,17 +2908,17 @@ "ChallengeCode": { "shape": "__string", "locationName": "challengeCode", - "documentation": "

The one time challenge code for authenticating into Amplify Admin UI.

" + "documentation": "

The one-time challenge code for authenticating into the Amplify Admin UI.

" }, "SessionId": { "shape": "__string", "locationName": "sessionId", - "documentation": "

A unique identifier provided when creating a new challenge token.

" + "documentation": "

A unique ID provided when creating a new challenge token.

" }, "Ttl": { "shape": "__string", "locationName": "ttl", - "documentation": "

The expiry time for the one time generated token code.

" + "documentation": "

The expiry time for the one-time generated token code.

" } } }, @@ -2928,7 +2928,7 @@ "Message": { "shape": "__string", "locationName": "message", - "documentation": "

An error message to inform that the request has failed.

" + "documentation": "

An error message to inform that the request failed.

" } }, "documentation": "

An error returned if there's a temporary issue with the service.

" @@ -2944,10 +2944,10 @@ "Message": { "shape": "__string", "locationName": "message", - "documentation": "

An error message to inform that the request has failed.

" + "documentation": "

An error message to inform that the request failed.

" } }, - "documentation": "

An error that is returned when a limit of a specific type has been exceeded.

" + "documentation": "

An error that is returned when a limit of a specific type is exceeded.

" }, "ListBackendJobReqObj": { "type": "structure", @@ -2960,7 +2960,7 @@ "MaxResults": { "shape": "__integerMin1Max25", "locationName": "maxResults", - "documentation": "

The maximum number of results you want in the response.

" + "documentation": "

The maximum number of results that you want in the response.

" }, "NextToken": { "shape": "__string", @@ -2970,12 +2970,12 @@ "Operation": { "shape": "__string", "locationName": "operation", - "documentation": "

Filters the list of response objects to only include those with the specified operation name.

" + "documentation": "

Filters the list of response objects to include only those with the specified operation name.

" }, "Status": { "shape": "__string", "locationName": "status", - "documentation": "

Filters the list of response objects to only include those with the specified status.

" + "documentation": "

Filters the list of response objects to include only those with the specified status.

" } }, "documentation": "

The request object for this operation.

" @@ -3019,7 +3019,7 @@ "MaxResults": { "shape": "__integerMin1Max25", "locationName": "maxResults", - "documentation": "

The maximum number of results you want in the response.

" + "documentation": "

The maximum number of results that you want in the response.

" }, "NextToken": { "shape": "__string", @@ -3029,12 +3029,12 @@ "Operation": { "shape": "__string", "locationName": "operation", - "documentation": "

Filters the list of response objects to only include those with the specified operation name.

" + "documentation": "

Filters the list of response objects to include only those with the specified operation name.

" }, "Status": { "shape": "__string", "locationName": "status", - "documentation": "

Filters the list of response objects to only include those with the specified status.

" + "documentation": "

Filters the list of response objects to include only those with the specified status.

" } }, "documentation": "

The request body for ListBackendJobs.

", @@ -3064,22 +3064,22 @@ "AwsCognitoIdentityPoolId": { "shape": "__string", "locationName": "aws_cognito_identity_pool_id", - "documentation": "

Amazon Cognito identitypool id used for the Amplify Admin UI login authorization.

" + "documentation": "

The Amazon Cognito identity pool ID used for Amplify Admin UI login authorization.

" }, "AwsCognitoRegion": { "shape": "__string", "locationName": "aws_cognito_region", - "documentation": "

The AWS Region for the the Amplify Admin login.

" + "documentation": "

The AWS Region for the Amplify Admin UI login.

" }, "AwsUserPoolsId": { "shape": "__string", "locationName": "aws_user_pools_id", - "documentation": "

The Amazon Cognito userpool id used for Amplify Admin UI login authentication.

" + "documentation": "

The Amazon Cognito user pool ID used for Amplify Admin UI login authentication.

" }, "AwsUserPoolsWebClientId": { "shape": "__string", "locationName": "aws_user_pools_web_client_id", - "documentation": "

The web client ID for the Amazon Cognito userpools.

" + "documentation": "

The web client ID for the Amazon Cognito user pools.

" } }, "documentation": "

The request object for this operation.

" @@ -3107,7 +3107,7 @@ "Message": { "shape": "__string", "locationName": "message", - "documentation": "

An error message to inform that the request has failed.

" + "documentation": "

An error message to inform that the request failed.

" }, "ResourceType": { "shape": "__string", @@ -3298,7 +3298,7 @@ "MfaTypes": { "shape": "ListOfMfaTypesElement", "locationName": "mfaTypes", - "documentation": "

The supported MFA types

" + "documentation": "

The supported MFA types.

" }, "SmsMessage": { "shape": "__string", @@ -3341,7 +3341,7 @@ "shape": "BackendAuthSocialProviderConfig" } }, - "documentation": "

The settings for using the social providers for access to your Amplify app.

" + "documentation": "

The settings for using the social identity providers for access to your Amplify app.

" }, "Status": { "type": "string", @@ -3361,10 +3361,10 @@ "Message": { "shape": "__string", "locationName": "message", - "documentation": "

An error message to inform that the request has failed.

" + "documentation": "

An error message to inform that the request failed.

" } }, - "documentation": "

An error that is returned when a limit of a specific type has been exceeded.

", + "documentation": "

An error that is returned when a limit of a specific type is exceeded.

", "exception": true, "error": { "httpStatusCode": 429 @@ -3444,7 +3444,7 @@ "DeliveryMethod": { "shape": "DeliveryMethod", "locationName": "deliveryMethod", - "documentation": "

Describes which mode to use (either SMS or email) to deliver messages to app users that want to recover their password.

" + "documentation": "

Describes which method to use (either SMS or email) to deliver messages to app users that want to recover their password.

" }, "EmailSettings": { "shape": "EmailSettings", @@ -3457,7 +3457,7 @@ "documentation": "

The configuration for the SMS message sent when an Amplify app user forgets their password.

" } }, - "documentation": "

Describes the forgot password policy for authenticating into the Amlify app.

" + "documentation": "

Describes the forgot password policy for authenticating into the Amplify app.

" }, "UpdateBackendAuthIdentityPoolConfig": { "type": "structure", @@ -3465,7 +3465,7 @@ "UnauthenticatedLogin": { "shape": "__boolean", "locationName": "unauthenticatedLogin", - "documentation": "

A boolean value which can be set to allow or disallow guest level authorization into your Amplify app.

" + "documentation": "

A Boolean value that you can set to allow or disallow guest-level authorization into your Amplify app.

" } }, "documentation": "

Describes the authorization configuration for the Amazon Cognito identity pool, provisioned as a part of your auth resource in the Amplify project.

" @@ -3501,22 +3501,22 @@ "OAuthScopes": { "shape": "ListOfOAuthScopesElement", "locationName": "oAuthScopes", - "documentation": "

The list of OAuth related flows which can allow users to authenticate from your Amplify app.

" + "documentation": "

The list of OAuth-related flows that can allow users to authenticate from your Amplify app.

" }, "RedirectSignInURIs": { "shape": "ListOf__string", "locationName": "redirectSignInURIs", - "documentation": "

Redirect URLs used by OAuth when a user signs in to an Amplify app.

" + "documentation": "

Redirect URLs that OAuth uses when a user signs in to an Amplify app.

" }, "RedirectSignOutURIs": { "shape": "ListOf__string", "locationName": "redirectSignOutURIs", - "documentation": "

Redirect URLs used by OAuth when a user signs out of an Amplify app.

" + "documentation": "

Redirect URLs that OAuth uses when a user signs out of an Amplify app.

" }, "SocialProviderSettings": { "shape": "SocialProviderSettings", "locationName": "socialProviderSettings", - "documentation": "

Describes third party social federation configurations for allowing your users to sign in with OAuth.

" + "documentation": "

Describes third-party social federation configurations for allowing your users to sign in with OAuth.

" } }, "documentation": "

The OAuth configurations for authenticating users into your Amplify app.

" @@ -3527,15 +3527,15 @@ "AdditionalConstraints": { "shape": "ListOfAdditionalConstraintsElement", "locationName": "additionalConstraints", - "documentation": "

Describes additional constrains on password requirements to sign in into the auth resource, configured as a part of your Ampify project.

" + "documentation": "

Describes additional constrains on the password requirements to sign in to the auth resource, configured as a part of your Amplify project.

" }, "MinimumLength": { "shape": "__double", "locationName": "minimumLength", - "documentation": "

Describes the minimum length of password required to sign in into the auth resource, configured as a part of your Ampify project.

" + "documentation": "

Describes the minimum length of the password required to sign in to the auth resource, configured as a part of your Amplify project.

" } }, - "documentation": "

Describes the password policy for your Amazon Cognito user pool configured as a part of your Amplify project.

" + "documentation": "

Describes the password policy for your Amazon Cognito user pool that's configured as a part of your Amplify project.

" }, "UpdateBackendAuthReqObj": { "type": "structure", @@ -3602,7 +3602,7 @@ "IdentityPoolConfigs": { "shape": "UpdateBackendAuthIdentityPoolConfig", "locationName": "identityPoolConfigs", - "documentation": "

Describes the authorization configuration for the Amazon Cognito identity pool, provisioned as a part of your auth resource in the Amplify project.

" + "documentation": "

Describes the authorization configuration for the Amazon Cognito identity pool, provisioned as a part of the auth resource in your Amplify project.

" }, "Service": { "shape": "Service", @@ -3612,7 +3612,7 @@ "UserPoolConfigs": { "shape": "UpdateBackendAuthUserPoolConfig", "locationName": "userPoolConfigs", - "documentation": "

Describes the authentication configuration for the Amazon Cognito userpool, provisioned as a part of your auth resource in the Amplify project.

" + "documentation": "

Describes the authentication configuration for the Amazon Cognito user pool, provisioned as a part of the auth resource in your Amplify project.

" } }, "documentation": "

Defines the resource configuration when updating an authentication resource in your Amplify project.

", @@ -3668,7 +3668,7 @@ "Mfa": { "shape": "UpdateBackendAuthMFAConfig", "locationName": "mfa", - "documentation": "

Describes whether multi-factor authentication policies should be applied for your Amazon Cognito user pool configured as a part of your Amplify project.

" + "documentation": "

Describes whether to apply multi-factor authentication (MFA) policies for your Amazon Cognito user pool that's configured as a part of your Amplify project.

" }, "OAuth": { "shape": "UpdateBackendAuthOAuthConfig", @@ -3681,7 +3681,7 @@ "documentation": "

Describes the password policy for your Amazon Cognito user pool, configured as a part of your Amplify project.

" } }, - "documentation": "

Describes the Amazon Cognito user pool configuration for the authorization resource to be configured for your Amplify project on an update.

" + "documentation": "

Describes the Amazon Cognito user pool configuration to configure the authorization resource for your Amplify project on an update.

" }, "UpdateBackendConfigReqObj": { "type": "structure", @@ -3735,7 +3735,7 @@ "LoginAuthConfig": { "shape": "LoginAuthConfigReqObj", "locationName": "loginAuthConfig", - "documentation": "

Describes the Amazon Cognito configurations for the Admin UI auth resource to login with.

" + "documentation": "

Describes the Amazon Cognito configurations for the Admin UI auth resource to log in with.

" } } }, @@ -3763,12 +3763,12 @@ "Operation": { "shape": "__string", "locationName": "operation", - "documentation": "

Filters the list of response objects to only include those with the specified operation name.

" + "documentation": "

Filters the list of response objects to include only those with the specified operation name.

" }, "Status": { "shape": "__string", "locationName": "status", - "documentation": "

Filters the list of response objects to only include those with the specified status.

" + "documentation": "

Filters the list of response objects to include only those with the specified status.

" } }, "documentation": "

The request body for GetBackendJob.

", @@ -3942,13 +3942,5 @@ "timestampFormat": "unixTimestamp" } }, - "documentation": "

AWS Amplify Admin API

", - "pagination": { - "ListBackendJobs": { - "input_token": "NextToken", - "output_token": "NextToken", - "limit_key": "MaxResults", - "result_key": "Jobs" - } - } + "documentation": "

AWS Amplify Admin API

" } From 95511e73600d47bf75ee078e19b7e77811530cf0 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 3 Dec 2020 20:30:35 +0000 Subject: [PATCH 334/339] AWS License Manager Update: AWS License Manager enables managed entitlements for AWS customers and Software Vendors (ISV). You can track and distribute license entitlements from AWS Marketplace and supported ISVs. --- .../feature-AWSLicenseManager-9d6ae82.json | 6 + .../codegen-resources/service-2.json | 2324 ++++++++++++++++- 2 files changed, 2212 insertions(+), 118 deletions(-) create mode 100644 .changes/next-release/feature-AWSLicenseManager-9d6ae82.json diff --git a/.changes/next-release/feature-AWSLicenseManager-9d6ae82.json b/.changes/next-release/feature-AWSLicenseManager-9d6ae82.json new file mode 100644 index 000000000000..bc2dd8200266 --- /dev/null +++ b/.changes/next-release/feature-AWSLicenseManager-9d6ae82.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS License Manager", + "contributor": "", + "description": "AWS License Manager enables managed entitlements for AWS customers and Software Vendors (ISV). You can track and distribute license entitlements from AWS Marketplace and supported ISVs." +} diff --git a/services/licensemanager/src/main/resources/codegen-resources/service-2.json b/services/licensemanager/src/main/resources/codegen-resources/service-2.json index a8a02bf9659d..a42c5195a2d1 100644 --- a/services/licensemanager/src/main/resources/codegen-resources/service-2.json +++ b/services/licensemanager/src/main/resources/codegen-resources/service-2.json @@ -12,6 +12,144 @@ "uid":"license-manager-2018-08-01" }, "operations":{ + "AcceptGrant":{ + "name":"AcceptGrant", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"AcceptGrantRequest"}, + "output":{"shape":"AcceptGrantResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"InvalidParameterValueException"}, + {"shape":"AuthorizationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"RateLimitExceededException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ServerInternalException"} + ], + "documentation":"

Accepts the specified grant.

" + }, + "CheckInLicense":{ + "name":"CheckInLicense", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CheckInLicenseRequest"}, + "output":{"shape":"CheckInLicenseResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"ConflictException"}, + {"shape":"AuthorizationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"RateLimitExceededException"}, + {"shape":"ServerInternalException"} + ], + "documentation":"

Checks in the specified license. Check in a license when it is no longer in use.

" + }, + "CheckoutBorrowLicense":{ + "name":"CheckoutBorrowLicense", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CheckoutBorrowLicenseRequest"}, + "output":{"shape":"CheckoutBorrowLicenseResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"NoEntitlementsAllowedException"}, + {"shape":"EntitlementNotAllowedException"}, + {"shape":"UnsupportedDigitalSignatureMethodException"}, + {"shape":"RedirectException"}, + {"shape":"AuthorizationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"RateLimitExceededException"}, + {"shape":"ServerInternalException"} + ], + "documentation":"

Checks out the specified license for offline use.

" + }, + "CheckoutLicense":{ + "name":"CheckoutLicense", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CheckoutLicenseRequest"}, + "output":{"shape":"CheckoutLicenseResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"NoEntitlementsAllowedException"}, + {"shape":"UnsupportedDigitalSignatureMethodException"}, + {"shape":"RedirectException"}, + {"shape":"AuthorizationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"RateLimitExceededException"}, + {"shape":"ServerInternalException"} + ], + "documentation":"

Checks out the specified license.

" + }, + "CreateGrant":{ + "name":"CreateGrant", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateGrantRequest"}, + "output":{"shape":"CreateGrantResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"InvalidParameterValueException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ServerInternalException"}, + {"shape":"AuthorizationException"}, + {"shape":"RateLimitExceededException"}, + {"shape":"AccessDeniedException"} + ], + "documentation":"

Creates a grant for the specified license. A grant shares the use of license entitlements with specific AWS accounts.

" + }, + "CreateGrantVersion":{ + "name":"CreateGrantVersion", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateGrantVersionRequest"}, + "output":{"shape":"CreateGrantVersionResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"InvalidParameterValueException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ServerInternalException"}, + {"shape":"AuthorizationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"RateLimitExceededException"} + ], + "documentation":"

Creates a new version of the specified grant.

" + }, + "CreateLicense":{ + "name":"CreateLicense", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateLicenseRequest"}, + "output":{"shape":"CreateLicenseResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"InvalidParameterValueException"}, + {"shape":"RedirectException"}, + {"shape":"AuthorizationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"RateLimitExceededException"}, + {"shape":"ServerInternalException"} + ], + "documentation":"

Creates a license.

" + }, "CreateLicenseConfiguration":{ "name":"CreateLicenseConfiguration", "http":{ @@ -30,6 +168,85 @@ ], "documentation":"

Creates a license configuration.

A license configuration is an abstraction of a customer license agreement that can be consumed and enforced by License Manager. Components include specifications for the license type (licensing by instance, socket, CPU, or vCPU), allowed tenancy (shared tenancy, Dedicated Instance, Dedicated Host, or all of these), license affinity to host (how long a license must be associated with a host), and the number of licenses purchased and used.

" }, + "CreateLicenseVersion":{ + "name":"CreateLicenseVersion", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateLicenseVersionRequest"}, + "output":{"shape":"CreateLicenseVersionResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"RedirectException"}, + {"shape":"ConflictException"}, + {"shape":"ServerInternalException"}, + {"shape":"AuthorizationException"}, + {"shape":"RateLimitExceededException"} + ], + "documentation":"

Creates a new version of the specified license.

" + }, + "CreateToken":{ + "name":"CreateToken", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"CreateTokenRequest"}, + "output":{"shape":"CreateTokenResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"AuthorizationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"RateLimitExceededException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ServerInternalException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"RedirectException"} + ], + "documentation":"

Creates a long-lived token.

A refresh token is a JWT token used to get an access token. With an access token, you can call AssumeRoleWithWebIdentity to get role credentials that you can use to call License Manager to manage the specified license.

" + }, + "DeleteGrant":{ + "name":"DeleteGrant", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteGrantRequest"}, + "output":{"shape":"DeleteGrantResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"InvalidParameterValueException"}, + {"shape":"AuthorizationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"RateLimitExceededException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ServerInternalException"} + ], + "documentation":"

Deletes the specified grant.

" + }, + "DeleteLicense":{ + "name":"DeleteLicense", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteLicenseRequest"}, + "output":{"shape":"DeleteLicenseResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"InvalidParameterValueException"}, + {"shape":"RedirectException"}, + {"shape":"ConflictException"}, + {"shape":"ServerInternalException"}, + {"shape":"AuthorizationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"RateLimitExceededException"} + ], + "documentation":"

Deletes the specified license.

" + }, "DeleteLicenseConfiguration":{ "name":"DeleteLicenseConfiguration", "http":{ @@ -47,6 +264,98 @@ ], "documentation":"

Deletes the specified license configuration.

You cannot delete a license configuration that is in use.

" }, + "DeleteToken":{ + "name":"DeleteToken", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"DeleteTokenRequest"}, + "output":{"shape":"DeleteTokenResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"AuthorizationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"RateLimitExceededException"}, + {"shape":"ServerInternalException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"RedirectException"} + ], + "documentation":"

Deletes the specified token. Must be called in the license home Region.

" + }, + "ExtendLicenseConsumption":{ + "name":"ExtendLicenseConsumption", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ExtendLicenseConsumptionRequest"}, + "output":{"shape":"ExtendLicenseConsumptionResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"InvalidParameterValueException"}, + {"shape":"AuthorizationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"RateLimitExceededException"}, + {"shape":"ServerInternalException"}, + {"shape":"ResourceNotFoundException"} + ], + "documentation":"

Extends the expiration date for license consumption.

" + }, + "GetAccessToken":{ + "name":"GetAccessToken", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetAccessTokenRequest"}, + "output":{"shape":"GetAccessTokenResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"AuthorizationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"RateLimitExceededException"}, + {"shape":"ServerInternalException"} + ], + "documentation":"

Gets a temporary access token to use with AssumeRoleWithWebIdentity. Access tokens are valid for one hour.

" + }, + "GetGrant":{ + "name":"GetGrant", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetGrantRequest"}, + "output":{"shape":"GetGrantResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"InvalidParameterValueException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ServerInternalException"}, + {"shape":"AuthorizationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"RateLimitExceededException"} + ], + "documentation":"

Gets detailed information about the specified grant.

" + }, + "GetLicense":{ + "name":"GetLicense", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetLicenseRequest"}, + "output":{"shape":"GetLicenseResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"InvalidParameterValueException"}, + {"shape":"AuthorizationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"RateLimitExceededException"}, + {"shape":"ServerInternalException"} + ], + "documentation":"

Gets detailed information about the specified license.

" + }, "GetLicenseConfiguration":{ "name":"GetLicenseConfiguration", "http":{ @@ -64,6 +373,24 @@ ], "documentation":"

Gets detailed information about the specified license configuration.

" }, + "GetLicenseUsage":{ + "name":"GetLicenseUsage", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetLicenseUsageRequest"}, + "output":{"shape":"GetLicenseUsageResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"InvalidParameterValueException"}, + {"shape":"AuthorizationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"RateLimitExceededException"}, + {"shape":"ServerInternalException"} + ], + "documentation":"

Gets detailed information about the usage of the specified license.

" + }, "GetServiceSettings":{ "name":"GetServiceSettings", "http":{ @@ -98,6 +425,25 @@ ], "documentation":"

Lists the resource associations for the specified license configuration.

Resource associations need not consume licenses from a license configuration. For example, an AMI or a stopped instance might not consume a license (depending on the license rules).

" }, + "ListDistributedGrants":{ + "name":"ListDistributedGrants", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListDistributedGrantsRequest"}, + "output":{"shape":"ListDistributedGrantsResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"InvalidParameterValueException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ServerInternalException"}, + {"shape":"AuthorizationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"RateLimitExceededException"} + ], + "documentation":"

Lists the grants distributed for the specified license.

" + }, "ListFailuresForLicenseConfigurationOperations":{ "name":"ListFailuresForLicenseConfigurationOperations", "http":{ @@ -150,102 +496,106 @@ ], "documentation":"

Describes the license configurations for the specified resource.

" }, - "ListResourceInventory":{ - "name":"ListResourceInventory", + "ListLicenseVersions":{ + "name":"ListLicenseVersions", "http":{ "method":"POST", "requestUri":"/" }, - "input":{"shape":"ListResourceInventoryRequest"}, - "output":{"shape":"ListResourceInventoryResponse"}, + "input":{"shape":"ListLicenseVersionsRequest"}, + "output":{"shape":"ListLicenseVersionsResponse"}, "errors":[ {"shape":"InvalidParameterValueException"}, - {"shape":"ServerInternalException"}, - {"shape":"FilterLimitExceededException"}, - {"shape":"FailedDependencyException"}, {"shape":"AuthorizationException"}, {"shape":"AccessDeniedException"}, - {"shape":"RateLimitExceededException"} + {"shape":"RateLimitExceededException"}, + {"shape":"ServerInternalException"} ], - "documentation":"

Lists resources managed using Systems Manager inventory.

" + "documentation":"

Lists all versions of the specified license.

" }, - "ListTagsForResource":{ - "name":"ListTagsForResource", + "ListLicenses":{ + "name":"ListLicenses", "http":{ "method":"POST", "requestUri":"/" }, - "input":{"shape":"ListTagsForResourceRequest"}, - "output":{"shape":"ListTagsForResourceResponse"}, + "input":{"shape":"ListLicensesRequest"}, + "output":{"shape":"ListLicensesResponse"}, "errors":[ + {"shape":"ValidationException"}, {"shape":"InvalidParameterValueException"}, - {"shape":"ServerInternalException"}, {"shape":"AuthorizationException"}, {"shape":"AccessDeniedException"}, - {"shape":"RateLimitExceededException"} + {"shape":"RateLimitExceededException"}, + {"shape":"ServerInternalException"} ], - "documentation":"

Lists the tags for the specified license configuration.

" + "documentation":"

Lists the licenses for your account.

" }, - "ListUsageForLicenseConfiguration":{ - "name":"ListUsageForLicenseConfiguration", + "ListReceivedGrants":{ + "name":"ListReceivedGrants", "http":{ "method":"POST", "requestUri":"/" }, - "input":{"shape":"ListUsageForLicenseConfigurationRequest"}, - "output":{"shape":"ListUsageForLicenseConfigurationResponse"}, + "input":{"shape":"ListReceivedGrantsRequest"}, + "output":{"shape":"ListReceivedGrantsResponse"}, "errors":[ + {"shape":"ValidationException"}, {"shape":"InvalidParameterValueException"}, - {"shape":"FilterLimitExceededException"}, + {"shape":"ResourceLimitExceededException"}, {"shape":"ServerInternalException"}, {"shape":"AuthorizationException"}, {"shape":"AccessDeniedException"}, {"shape":"RateLimitExceededException"} ], - "documentation":"

Lists all license usage records for a license configuration, displaying license consumption details by resource at a selected point in time. Use this action to audit the current license consumption for any license inventory and configuration.

" + "documentation":"

Lists grants that are received but not accepted.

" }, - "TagResource":{ - "name":"TagResource", + "ListReceivedLicenses":{ + "name":"ListReceivedLicenses", "http":{ "method":"POST", "requestUri":"/" }, - "input":{"shape":"TagResourceRequest"}, - "output":{"shape":"TagResourceResponse"}, + "input":{"shape":"ListReceivedLicensesRequest"}, + "output":{"shape":"ListReceivedLicensesResponse"}, "errors":[ + {"shape":"ValidationException"}, {"shape":"InvalidParameterValueException"}, + {"shape":"ResourceLimitExceededException"}, {"shape":"ServerInternalException"}, {"shape":"AuthorizationException"}, {"shape":"AccessDeniedException"}, {"shape":"RateLimitExceededException"} ], - "documentation":"

Adds the specified tags to the specified license configuration.

" + "documentation":"

Lists received licenses.

" }, - "UntagResource":{ - "name":"UntagResource", + "ListResourceInventory":{ + "name":"ListResourceInventory", "http":{ "method":"POST", "requestUri":"/" }, - "input":{"shape":"UntagResourceRequest"}, - "output":{"shape":"UntagResourceResponse"}, + "input":{"shape":"ListResourceInventoryRequest"}, + "output":{"shape":"ListResourceInventoryResponse"}, "errors":[ {"shape":"InvalidParameterValueException"}, {"shape":"ServerInternalException"}, + {"shape":"FilterLimitExceededException"}, + {"shape":"FailedDependencyException"}, {"shape":"AuthorizationException"}, {"shape":"AccessDeniedException"}, {"shape":"RateLimitExceededException"} ], - "documentation":"

Removes the specified tags from the specified license configuration.

" + "documentation":"

Lists resources managed using Systems Manager inventory.

" }, - "UpdateLicenseConfiguration":{ - "name":"UpdateLicenseConfiguration", + "ListTagsForResource":{ + "name":"ListTagsForResource", "http":{ "method":"POST", "requestUri":"/" }, - "input":{"shape":"UpdateLicenseConfigurationRequest"}, - "output":{"shape":"UpdateLicenseConfigurationResponse"}, + "input":{"shape":"ListTagsForResourceRequest"}, + "output":{"shape":"ListTagsForResourceResponse"}, "errors":[ {"shape":"InvalidParameterValueException"}, {"shape":"ServerInternalException"}, @@ -253,29 +603,135 @@ {"shape":"AccessDeniedException"}, {"shape":"RateLimitExceededException"} ], - "documentation":"

Modifies the attributes of an existing license configuration.

" + "documentation":"

Lists the tags for the specified license configuration.

" }, - "UpdateLicenseSpecificationsForResource":{ - "name":"UpdateLicenseSpecificationsForResource", + "ListTokens":{ + "name":"ListTokens", "http":{ "method":"POST", "requestUri":"/" }, - "input":{"shape":"UpdateLicenseSpecificationsForResourceRequest"}, - "output":{"shape":"UpdateLicenseSpecificationsForResourceResponse"}, + "input":{"shape":"ListTokensRequest"}, + "output":{"shape":"ListTokensResponse"}, "errors":[ - {"shape":"InvalidParameterValueException"}, - {"shape":"InvalidResourceStateException"}, - {"shape":"LicenseUsageException"}, - {"shape":"ServerInternalException"}, + {"shape":"ValidationException"}, {"shape":"AuthorizationException"}, {"shape":"AccessDeniedException"}, - {"shape":"RateLimitExceededException"} + {"shape":"RateLimitExceededException"}, + {"shape":"ServerInternalException"} ], - "documentation":"

Adds or removes the specified license configurations for the specified AWS resource.

You can update the license specifications of AMIs, instances, and hosts. You cannot update the license specifications for launch templates and AWS CloudFormation templates, as they send license configurations to the operation that creates the resource.

" + "documentation":"

Lists your tokens.

" }, - "UpdateServiceSettings":{ - "name":"UpdateServiceSettings", + "ListUsageForLicenseConfiguration":{ + "name":"ListUsageForLicenseConfiguration", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"ListUsageForLicenseConfigurationRequest"}, + "output":{"shape":"ListUsageForLicenseConfigurationResponse"}, + "errors":[ + {"shape":"InvalidParameterValueException"}, + {"shape":"FilterLimitExceededException"}, + {"shape":"ServerInternalException"}, + {"shape":"AuthorizationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"RateLimitExceededException"} + ], + "documentation":"

Lists all license usage records for a license configuration, displaying license consumption details by resource at a selected point in time. Use this action to audit the current license consumption for any license inventory and configuration.

" + }, + "RejectGrant":{ + "name":"RejectGrant", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"RejectGrantRequest"}, + "output":{"shape":"RejectGrantResponse"}, + "errors":[ + {"shape":"ValidationException"}, + {"shape":"InvalidParameterValueException"}, + {"shape":"AuthorizationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"RateLimitExceededException"}, + {"shape":"ResourceLimitExceededException"}, + {"shape":"ServerInternalException"} + ], + "documentation":"

Rejects the specified grant.

" + }, + "TagResource":{ + "name":"TagResource", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"TagResourceRequest"}, + "output":{"shape":"TagResourceResponse"}, + "errors":[ + {"shape":"InvalidParameterValueException"}, + {"shape":"ServerInternalException"}, + {"shape":"AuthorizationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"RateLimitExceededException"} + ], + "documentation":"

Adds the specified tags to the specified license configuration.

" + }, + "UntagResource":{ + "name":"UntagResource", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UntagResourceRequest"}, + "output":{"shape":"UntagResourceResponse"}, + "errors":[ + {"shape":"InvalidParameterValueException"}, + {"shape":"ServerInternalException"}, + {"shape":"AuthorizationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"RateLimitExceededException"} + ], + "documentation":"

Removes the specified tags from the specified license configuration.

" + }, + "UpdateLicenseConfiguration":{ + "name":"UpdateLicenseConfiguration", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateLicenseConfigurationRequest"}, + "output":{"shape":"UpdateLicenseConfigurationResponse"}, + "errors":[ + {"shape":"InvalidParameterValueException"}, + {"shape":"ServerInternalException"}, + {"shape":"AuthorizationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"RateLimitExceededException"}, + {"shape":"ResourceLimitExceededException"} + ], + "documentation":"

Modifies the attributes of an existing license configuration.

" + }, + "UpdateLicenseSpecificationsForResource":{ + "name":"UpdateLicenseSpecificationsForResource", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"UpdateLicenseSpecificationsForResourceRequest"}, + "output":{"shape":"UpdateLicenseSpecificationsForResourceResponse"}, + "errors":[ + {"shape":"InvalidParameterValueException"}, + {"shape":"InvalidResourceStateException"}, + {"shape":"LicenseUsageException"}, + {"shape":"ServerInternalException"}, + {"shape":"AuthorizationException"}, + {"shape":"AccessDeniedException"}, + {"shape":"RateLimitExceededException"} + ], + "documentation":"

Adds or removes the specified license configurations for the specified AWS resource.

You can update the license specifications of AMIs, instances, and hosts. You cannot update the license specifications for launch templates and AWS CloudFormation templates, as they send license configurations to the operation that creates the resource.

" + }, + "UpdateServiceSettings":{ + "name":"UpdateServiceSettings", "http":{ "method":"POST", "requestUri":"/" @@ -293,6 +749,33 @@ } }, "shapes":{ + "AcceptGrantRequest":{ + "type":"structure", + "required":["GrantArn"], + "members":{ + "GrantArn":{ + "shape":"Arn", + "documentation":"

Amazon Resource Name (ARN) of the grant.

" + } + } + }, + "AcceptGrantResponse":{ + "type":"structure", + "members":{ + "GrantArn":{ + "shape":"Arn", + "documentation":"

Grant ARN.

" + }, + "Status":{ + "shape":"GrantStatus", + "documentation":"

Grant status.

" + }, + "Version":{ + "shape":"String", + "documentation":"

Grant version.

" + } + } + }, "AccessDeniedException":{ "type":"structure", "members":{ @@ -301,6 +784,33 @@ "documentation":"

Access to resource denied.

", "exception":true }, + "AllowedOperation":{ + "type":"string", + "enum":[ + "CreateGrant", + "CheckoutLicense", + "CheckoutBorrowLicense", + "CheckInLicense", + "ExtendConsumptionLicense", + "ListPurchasedLicenses", + "CreateToken" + ] + }, + "AllowedOperationList":{ + "type":"list", + "member":{"shape":"AllowedOperation"}, + "max":7, + "min":1 + }, + "Arn":{ + "type":"string", + "max":2048, + "pattern":"^arn:aws:[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9][A-Za-z0-9:_/+=,@.-]{0,1023}$" + }, + "ArnList":{ + "type":"list", + "member":{"shape":"Arn"} + }, "AuthorizationException":{ "type":"structure", "members":{ @@ -309,108 +819,928 @@ "documentation":"

The AWS user account does not have permission to perform the action. Check the IAM policy associated with this account.

", "exception":true }, - "AutomatedDiscoveryInformation":{ + "AutomatedDiscoveryInformation":{ + "type":"structure", + "members":{ + "LastRunTime":{ + "shape":"DateTime", + "documentation":"

Time that automated discovery last ran.

" + } + }, + "documentation":"

Describes automated discovery.

" + }, + "Boolean":{"type":"boolean"}, + "BorrowConfiguration":{ + "type":"structure", + "required":[ + "AllowEarlyCheckIn", + "MaxTimeToLiveInMinutes" + ], + "members":{ + "AllowEarlyCheckIn":{ + "shape":"BoxBoolean", + "documentation":"

Indicates whether early check-ins are allowed.

" + }, + "MaxTimeToLiveInMinutes":{ + "shape":"BoxInteger", + "documentation":"

Maximum time for the borrow configuration, in minutes.

" + } + }, + "documentation":"

Details about a borrow configuration.

" + }, + "BoxBoolean":{"type":"boolean"}, + "BoxInteger":{"type":"integer"}, + "BoxLong":{"type":"long"}, + "CheckInLicenseRequest":{ + "type":"structure", + "required":["LicenseConsumptionToken"], + "members":{ + "LicenseConsumptionToken":{ + "shape":"String", + "documentation":"

License consumption token.

" + }, + "Beneficiary":{ + "shape":"String", + "documentation":"

License beneficiary.

" + } + } + }, + "CheckInLicenseResponse":{ + "type":"structure", + "members":{ + } + }, + "CheckoutBorrowLicenseRequest":{ + "type":"structure", + "required":[ + "LicenseArn", + "Entitlements", + "DigitalSignatureMethod", + "ClientToken" + ], + "members":{ + "LicenseArn":{ + "shape":"Arn", + "documentation":"

Amazon Resource Name (ARN) of the license. The license must use the borrow consumption configuration.

" + }, + "Entitlements":{ + "shape":"EntitlementDataList", + "documentation":"

License entitlements. Partial checkouts are not supported.

" + }, + "DigitalSignatureMethod":{ + "shape":"DigitalSignatureMethod", + "documentation":"

Digital signature method. The possible value is JSON Web Signature (JWS) algorithm PS384. For more information, see RFC 7518 Digital Signature with RSASSA-PSS.

" + }, + "NodeId":{ + "shape":"String", + "documentation":"

Node ID.

" + }, + "CheckoutMetadata":{ + "shape":"MetadataList", + "documentation":"

Information about constraints.

" + }, + "ClientToken":{ + "shape":"ClientToken", + "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

" + } + } + }, + "CheckoutBorrowLicenseResponse":{ + "type":"structure", + "members":{ + "LicenseArn":{ + "shape":"Arn", + "documentation":"

Amazon Resource Name (ARN) of the license.

" + }, + "LicenseConsumptionToken":{ + "shape":"String", + "documentation":"

License consumption token.

" + }, + "EntitlementsAllowed":{ + "shape":"EntitlementDataList", + "documentation":"

Allowed license entitlements.

" + }, + "NodeId":{ + "shape":"String", + "documentation":"

Node ID.

" + }, + "SignedToken":{ + "shape":"SignedToken", + "documentation":"

Signed token.

" + }, + "IssuedAt":{ + "shape":"ISO8601DateTime", + "documentation":"

Date and time at which the license checkout is issued.

" + }, + "Expiration":{ + "shape":"ISO8601DateTime", + "documentation":"

Date and time at which the license checkout expires.

" + }, + "CheckoutMetadata":{ + "shape":"MetadataList", + "documentation":"

Information about constraints.

" + } + } + }, + "CheckoutLicenseRequest":{ + "type":"structure", + "required":[ + "ProductSKU", + "CheckoutType", + "KeyFingerprint", + "Entitlements", + "ClientToken" + ], + "members":{ + "ProductSKU":{ + "shape":"String", + "documentation":"

Product SKU.

" + }, + "CheckoutType":{ + "shape":"CheckoutType", + "documentation":"

Checkout type.

" + }, + "KeyFingerprint":{ + "shape":"String", + "documentation":"

Key fingerprint identifying the license.

" + }, + "Entitlements":{ + "shape":"EntitlementDataList", + "documentation":"

License entitlements.

" + }, + "ClientToken":{ + "shape":"ClientToken", + "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

" + }, + "Beneficiary":{ + "shape":"String", + "documentation":"

License beneficiary.

" + }, + "NodeId":{ + "shape":"String", + "documentation":"

Node ID.

" + } + } + }, + "CheckoutLicenseResponse":{ + "type":"structure", + "members":{ + "CheckoutType":{ + "shape":"CheckoutType", + "documentation":"

Checkout type.

" + }, + "LicenseConsumptionToken":{ + "shape":"String", + "documentation":"

License consumption token.

" + }, + "EntitlementsAllowed":{ + "shape":"EntitlementDataList", + "documentation":"

Allowed license entitlements.

" + }, + "SignedToken":{ + "shape":"SignedToken", + "documentation":"

Signed token.

" + }, + "NodeId":{ + "shape":"String", + "documentation":"

Node ID.

" + }, + "IssuedAt":{ + "shape":"ISO8601DateTime", + "documentation":"

Date and time at which the license checkout is issued.

" + }, + "Expiration":{ + "shape":"ISO8601DateTime", + "documentation":"

Date and time at which the license checkout expires.

" + } + } + }, + "CheckoutType":{ + "type":"string", + "enum":["PROVISIONAL"] + }, + "ClientToken":{ + "type":"string", + "max":64, + "pattern":"[a-zA-Z0-9]*" + }, + "ConflictException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

There was a conflict processing the request. Try your request again.

", + "exception":true + }, + "ConsumedLicenseSummary":{ + "type":"structure", + "members":{ + "ResourceType":{ + "shape":"ResourceType", + "documentation":"

Resource type of the resource consuming a license.

" + }, + "ConsumedLicenses":{ + "shape":"BoxLong", + "documentation":"

Number of licenses consumed by the resource.

" + } + }, + "documentation":"

Details about license consumption.

" + }, + "ConsumedLicenseSummaryList":{ + "type":"list", + "member":{"shape":"ConsumedLicenseSummary"} + }, + "ConsumptionConfiguration":{ + "type":"structure", + "members":{ + "RenewType":{ + "shape":"RenewType", + "documentation":"

Renewal frequency.

" + }, + "ProvisionalConfiguration":{ + "shape":"ProvisionalConfiguration", + "documentation":"

Details about a provisional configuration.

" + }, + "BorrowConfiguration":{ + "shape":"BorrowConfiguration", + "documentation":"

Details about a borrow configuration.

" + } + }, + "documentation":"

Details about a consumption configuration.

" + }, + "CreateGrantRequest":{ + "type":"structure", + "required":[ + "ClientToken", + "GrantName", + "LicenseArn", + "Principals", + "HomeRegion", + "AllowedOperations" + ], + "members":{ + "ClientToken":{ + "shape":"String", + "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

" + }, + "GrantName":{ + "shape":"String", + "documentation":"

Grant name.

" + }, + "LicenseArn":{ + "shape":"Arn", + "documentation":"

Amazon Resource Name (ARN) of the license.

" + }, + "Principals":{ + "shape":"PrincipalArnList", + "documentation":"

The grant principals.

" + }, + "HomeRegion":{ + "shape":"String", + "documentation":"

Home Region of the grant.

" + }, + "AllowedOperations":{ + "shape":"AllowedOperationList", + "documentation":"

Allowed operations for the grant.

" + } + } + }, + "CreateGrantResponse":{ + "type":"structure", + "members":{ + "GrantArn":{ + "shape":"Arn", + "documentation":"

Grant ARN.

" + }, + "Status":{ + "shape":"GrantStatus", + "documentation":"

Grant status.

" + }, + "Version":{ + "shape":"String", + "documentation":"

Grant version.

" + } + } + }, + "CreateGrantVersionRequest":{ + "type":"structure", + "required":[ + "ClientToken", + "GrantArn" + ], + "members":{ + "ClientToken":{ + "shape":"String", + "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

" + }, + "GrantArn":{ + "shape":"Arn", + "documentation":"

Amazon Resource Name (ARN) of the grant.

" + }, + "GrantName":{ + "shape":"String", + "documentation":"

Grant name.

" + }, + "AllowedOperations":{ + "shape":"AllowedOperationList", + "documentation":"

Allowed operations for the grant.

" + }, + "Status":{ + "shape":"GrantStatus", + "documentation":"

Grant status.

" + }, + "SourceVersion":{ + "shape":"String", + "documentation":"

Current version of the grant.

" + } + } + }, + "CreateGrantVersionResponse":{ + "type":"structure", + "members":{ + "GrantArn":{ + "shape":"Arn", + "documentation":"

Grant ARN.

" + }, + "Status":{ + "shape":"GrantStatus", + "documentation":"

Grant status.

" + }, + "Version":{ + "shape":"String", + "documentation":"

New version of the grant.

" + } + } + }, + "CreateLicenseConfigurationRequest":{ + "type":"structure", + "required":[ + "Name", + "LicenseCountingType" + ], + "members":{ + "Name":{ + "shape":"String", + "documentation":"

Name of the license configuration.

" + }, + "Description":{ + "shape":"String", + "documentation":"

Description of the license configuration.

" + }, + "LicenseCountingType":{ + "shape":"LicenseCountingType", + "documentation":"

Dimension used to track the license inventory.

" + }, + "LicenseCount":{ + "shape":"BoxLong", + "documentation":"

Number of licenses managed by the license configuration.

" + }, + "LicenseCountHardLimit":{ + "shape":"BoxBoolean", + "documentation":"

Indicates whether hard or soft license enforcement is used. Exceeding a hard limit blocks the launch of new instances.

" + }, + "LicenseRules":{ + "shape":"StringList", + "documentation":"

License rules. The syntax is #name=value (for example, #allowedTenancy=EC2-DedicatedHost). The available rules vary by dimension, as follows.

  • Cores dimension: allowedTenancy | licenseAffinityToHost | maximumCores | minimumCores

  • Instances dimension: allowedTenancy | maximumCores | minimumCores | maximumSockets | minimumSockets | maximumVcpus | minimumVcpus

  • Sockets dimension: allowedTenancy | licenseAffinityToHost | maximumSockets | minimumSockets

  • vCPUs dimension: allowedTenancy | honorVcpuOptimization | maximumVcpus | minimumVcpus

The unit for licenseAffinityToHost is days and the range is 1 to 180. The possible values for allowedTenancy are EC2-Default, EC2-DedicatedHost, and EC2-DedicatedInstance. The possible values for honorVcpuOptimization are True and False.

" + }, + "Tags":{ + "shape":"TagList", + "documentation":"

Tags to add to the license configuration.

" + }, + "ProductInformationList":{ + "shape":"ProductInformationList", + "documentation":"

Product information.

" + } + } + }, + "CreateLicenseConfigurationResponse":{ + "type":"structure", + "members":{ + "LicenseConfigurationArn":{ + "shape":"String", + "documentation":"

Amazon Resource Name (ARN) of the license configuration.

" + } + } + }, + "CreateLicenseRequest":{ + "type":"structure", + "required":[ + "LicenseName", + "ProductName", + "ProductSKU", + "Issuer", + "HomeRegion", + "Validity", + "Entitlements", + "Beneficiary", + "ConsumptionConfiguration", + "ClientToken" + ], + "members":{ + "LicenseName":{ + "shape":"String", + "documentation":"

License name.

" + }, + "ProductName":{ + "shape":"String", + "documentation":"

Product name.

" + }, + "ProductSKU":{ + "shape":"String", + "documentation":"

Product SKU.

" + }, + "Issuer":{ + "shape":"Issuer", + "documentation":"

License issuer.

" + }, + "HomeRegion":{ + "shape":"String", + "documentation":"

Home Region for the license.

" + }, + "Validity":{ + "shape":"DatetimeRange", + "documentation":"

Date and time range during which the license is valid, in ISO8601-UTC format.

" + }, + "Entitlements":{ + "shape":"EntitlementList", + "documentation":"

License entitlements.

" + }, + "Beneficiary":{ + "shape":"String", + "documentation":"

License beneficiary.

" + }, + "ConsumptionConfiguration":{ + "shape":"ConsumptionConfiguration", + "documentation":"

Configuration for consumption of the license. Choose a provisional configuration for workloads running with continuous connectivity. Choose a borrow configuration for workloads with offline usage.

" + }, + "LicenseMetadata":{ + "shape":"MetadataList", + "documentation":"

Information about the license.

" + }, + "ClientToken":{ + "shape":"String", + "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

" + } + } + }, + "CreateLicenseResponse":{ + "type":"structure", + "members":{ + "LicenseArn":{ + "shape":"Arn", + "documentation":"

Amazon Resource Name (ARN) of the license.

" + }, + "Status":{ + "shape":"LicenseStatus", + "documentation":"

License status.

" + }, + "Version":{ + "shape":"String", + "documentation":"

License version.

" + } + } + }, + "CreateLicenseVersionRequest":{ + "type":"structure", + "required":[ + "LicenseArn", + "LicenseName", + "ProductName", + "Issuer", + "HomeRegion", + "Validity", + "Entitlements", + "ConsumptionConfiguration", + "Status", + "ClientToken" + ], + "members":{ + "LicenseArn":{ + "shape":"Arn", + "documentation":"

Amazon Resource Name (ARN) of the license.

" + }, + "LicenseName":{ + "shape":"String", + "documentation":"

License name.

" + }, + "ProductName":{ + "shape":"String", + "documentation":"

Product name.

" + }, + "Issuer":{ + "shape":"Issuer", + "documentation":"

License issuer.

" + }, + "HomeRegion":{ + "shape":"String", + "documentation":"

Home Region of the license.

" + }, + "Validity":{ + "shape":"DatetimeRange", + "documentation":"

Date and time range during which the license is valid, in ISO8601-UTC format.

" + }, + "LicenseMetadata":{ + "shape":"MetadataList", + "documentation":"

Information about the license.

" + }, + "Entitlements":{ + "shape":"EntitlementList", + "documentation":"

License entitlements.

" + }, + "ConsumptionConfiguration":{ + "shape":"ConsumptionConfiguration", + "documentation":"

Configuration for consumption of the license. Choose a provisional configuration for workloads running with continuous connectivity. Choose a borrow configuration for workloads with offline usage.

" + }, + "Status":{ + "shape":"LicenseStatus", + "documentation":"

License status.

" + }, + "ClientToken":{ + "shape":"String", + "documentation":"

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

" + }, + "SourceVersion":{ + "shape":"String", + "documentation":"

Current version of the license.

" + } + } + }, + "CreateLicenseVersionResponse":{ + "type":"structure", + "members":{ + "LicenseArn":{ + "shape":"Arn", + "documentation":"

License ARN.

" + }, + "Version":{ + "shape":"String", + "documentation":"

New version of the license.

" + }, + "Status":{ + "shape":"LicenseStatus", + "documentation":"

License status.

" + } + } + }, + "CreateTokenRequest":{ + "type":"structure", + "required":[ + "LicenseArn", + "ClientToken" + ], + "members":{ + "LicenseArn":{ + "shape":"Arn", + "documentation":"

Amazon Resource Name (ARN) of the license. The ARN is mapped to the aud claim of the JWT token.

" + }, + "RoleArns":{ + "shape":"ArnList", + "documentation":"

Amazon Resource Name (ARN) of the IAM roles to embed in the token. License Manager does not check whether the roles are in use.

" + }, + "ExpirationInDays":{ + "shape":"Integer", + "documentation":"

Token expiration, in days, counted from token creation. The default is 365 days.

" + }, + "TokenProperties":{ + "shape":"MaxSize3StringList", + "documentation":"

Data specified by the caller to be included in the JWT token. The data is mapped to the amr claim of the JWT token.

" + }, + "ClientToken":{ + "shape":"IdempotencyToken", + "documentation":"

Idempotency token, valid for 10 minutes.

" + } + } + }, + "CreateTokenResponse":{ + "type":"structure", + "members":{ + "TokenId":{ + "shape":"String", + "documentation":"

Token ID.

" + }, + "TokenType":{ + "shape":"TokenType", + "documentation":"

Token type.

" + }, + "Token":{ + "shape":"TokenString", + "documentation":"

Refresh token, encoded as a JWT token.

" + } + } + }, + "DateTime":{"type":"timestamp"}, + "DatetimeRange":{ + "type":"structure", + "required":["Begin"], + "members":{ + "Begin":{ + "shape":"ISO8601DateTime", + "documentation":"

Start of the time range.

" + }, + "End":{ + "shape":"ISO8601DateTime", + "documentation":"

End of the time range.

" + } + }, + "documentation":"

Describes a time range, in ISO8601-UTC format.

" + }, + "DeleteGrantRequest":{ + "type":"structure", + "required":[ + "GrantArn", + "Version" + ], + "members":{ + "GrantArn":{ + "shape":"Arn", + "documentation":"

Amazon Resource Name (ARN) of the grant.

" + }, + "Version":{ + "shape":"String", + "documentation":"

Current version of the grant.

" + } + } + }, + "DeleteGrantResponse":{ + "type":"structure", + "members":{ + "GrantArn":{ + "shape":"Arn", + "documentation":"

Grant ARN.

" + }, + "Status":{ + "shape":"GrantStatus", + "documentation":"

Grant status.

" + }, + "Version":{ + "shape":"String", + "documentation":"

Grant version.

" + } + } + }, + "DeleteLicenseConfigurationRequest":{ + "type":"structure", + "required":["LicenseConfigurationArn"], + "members":{ + "LicenseConfigurationArn":{ + "shape":"String", + "documentation":"

ID of the license configuration.

" + } + } + }, + "DeleteLicenseConfigurationResponse":{ + "type":"structure", + "members":{ + } + }, + "DeleteLicenseRequest":{ + "type":"structure", + "required":[ + "LicenseArn", + "SourceVersion" + ], + "members":{ + "LicenseArn":{ + "shape":"Arn", + "documentation":"

Amazon Resource Name (ARN) of the license.

" + }, + "SourceVersion":{ + "shape":"String", + "documentation":"

Current version of the license.

" + } + } + }, + "DeleteLicenseResponse":{ + "type":"structure", + "members":{ + "Status":{ + "shape":"LicenseDeletionStatus", + "documentation":"

License status.

" + }, + "DeletionDate":{ + "shape":"ISO8601DateTime", + "documentation":"

Date on which the license is deleted.

" + } + } + }, + "DeleteTokenRequest":{ + "type":"structure", + "required":["TokenId"], + "members":{ + "TokenId":{ + "shape":"String", + "documentation":"

Token ID.

" + } + } + }, + "DeleteTokenResponse":{ + "type":"structure", + "members":{ + } + }, + "DigitalSignatureMethod":{ + "type":"string", + "enum":["JWT_PS384"] + }, + "Entitlement":{ "type":"structure", + "required":[ + "Name", + "Unit" + ], "members":{ - "LastRunTime":{ - "shape":"DateTime", - "documentation":"

Time that automated discovery last ran.

" + "Name":{ + "shape":"String", + "documentation":"

Entitlement name.

" + }, + "Value":{ + "shape":"String", + "documentation":"

Entitlement resource. Use only if the unit is None.

" + }, + "MaxCount":{ + "shape":"Long", + "documentation":"

Maximum entitlement count. Use if the unit is not None.

" + }, + "Overage":{ + "shape":"BoxBoolean", + "documentation":"

Indicates whether overages are allowed.

" + }, + "Unit":{ + "shape":"EntitlementUnit", + "documentation":"

Entitlement unit.

" + }, + "AllowCheckIn":{ + "shape":"BoxBoolean", + "documentation":"

Indicates whether check-ins are allowed.

" } }, - "documentation":"

Describes automated discovery.

" + "documentation":"

Describes a resource entitled for use with a license.

" }, - "Boolean":{"type":"boolean"}, - "BoxBoolean":{"type":"boolean"}, - "BoxInteger":{"type":"integer"}, - "BoxLong":{"type":"long"}, - "ConsumedLicenseSummary":{ + "EntitlementData":{ "type":"structure", + "required":[ + "Name", + "Unit" + ], "members":{ - "ResourceType":{ - "shape":"ResourceType", - "documentation":"

Resource type of the resource consuming a license.

" + "Name":{ + "shape":"String", + "documentation":"

Entitlement data name.

" }, - "ConsumedLicenses":{ - "shape":"BoxLong", - "documentation":"

Number of licenses consumed by the resource.

" + "Value":{ + "shape":"String", + "documentation":"

Entitlement data value.

" + }, + "Unit":{ + "shape":"EntitlementDataUnit", + "documentation":"

Entitlement data unit.

" } }, - "documentation":"

Details about license consumption.

" + "documentation":"

Data associated with an entitlement resource.

" }, - "ConsumedLicenseSummaryList":{ + "EntitlementDataList":{ "type":"list", - "member":{"shape":"ConsumedLicenseSummary"} + "member":{"shape":"EntitlementData"} }, - "CreateLicenseConfigurationRequest":{ + "EntitlementDataUnit":{ + "type":"string", + "enum":[ + "Count", + "None", + "Seconds", + "Microseconds", + "Milliseconds", + "Bytes", + "Kilobytes", + "Megabytes", + "Gigabytes", + "Terabytes", + "Bits", + "Kilobits", + "Megabits", + "Gigabits", + "Terabits", + "Percent", + "Bytes/Second", + "Kilobytes/Second", + "Megabytes/Second", + "Gigabytes/Second", + "Terabytes/Second", + "Bits/Second", + "Kilobits/Second", + "Megabits/Second", + "Gigabits/Second", + "Terabits/Second", + "Count/Second" + ] + }, + "EntitlementList":{ + "type":"list", + "member":{"shape":"Entitlement"} + }, + "EntitlementNotAllowedException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

The entitlement is not allowed.

", + "exception":true + }, + "EntitlementUnit":{ + "type":"string", + "enum":[ + "Count", + "None", + "Seconds", + "Microseconds", + "Milliseconds", + "Bytes", + "Kilobytes", + "Megabytes", + "Gigabytes", + "Terabytes", + "Bits", + "Kilobits", + "Megabits", + "Gigabits", + "Terabits", + "Percent", + "Bytes/Second", + "Kilobytes/Second", + "Megabytes/Second", + "Gigabytes/Second", + "Terabytes/Second", + "Bits/Second", + "Kilobits/Second", + "Megabits/Second", + "Gigabits/Second", + "Terabits/Second", + "Count/Second" + ] + }, + "EntitlementUsage":{ "type":"structure", "required":[ "Name", - "LicenseCountingType" + "ConsumedValue", + "Unit" ], "members":{ "Name":{ "shape":"String", - "documentation":"

Name of the license configuration.

" + "documentation":"

Entitlement usage name.

" }, - "Description":{ + "ConsumedValue":{ "shape":"String", - "documentation":"

Description of the license configuration.

" - }, - "LicenseCountingType":{ - "shape":"LicenseCountingType", - "documentation":"

Dimension used to track the license inventory.

" - }, - "LicenseCount":{ - "shape":"BoxLong", - "documentation":"

Number of licenses managed by the license configuration.

" - }, - "LicenseCountHardLimit":{ - "shape":"BoxBoolean", - "documentation":"

Indicates whether hard or soft license enforcement is used. Exceeding a hard limit blocks the launch of new instances.

" - }, - "LicenseRules":{ - "shape":"StringList", - "documentation":"

License rules. The syntax is #name=value (for example, #allowedTenancy=EC2-DedicatedHost). The available rules vary by dimension, as follows.

  • Cores dimension: allowedTenancy | licenseAffinityToHost | maximumCores | minimumCores

  • Instances dimension: allowedTenancy | maximumCores | minimumCores | maximumSockets | minimumSockets | maximumVcpus | minimumVcpus

  • Sockets dimension: allowedTenancy | licenseAffinityToHost | maximumSockets | minimumSockets

  • vCPUs dimension: allowedTenancy | honorVcpuOptimization | maximumVcpus | minimumVcpus

The unit for licenseAffinityToHost is days and the range is 1 to 180. The possible values for allowedTenancy are EC2-Default, EC2-DedicatedHost, and EC2-DedicatedInstance. The possible values for honorVcpuOptimization are True and False.

" + "documentation":"

Resource usage consumed.

" }, - "Tags":{ - "shape":"TagList", - "documentation":"

Tags to add to the license configuration.

" + "MaxCount":{ + "shape":"String", + "documentation":"

Maximum entitlement usage count.

" }, - "ProductInformationList":{ - "shape":"ProductInformationList", - "documentation":"

Product information.

" + "Unit":{ + "shape":"EntitlementDataUnit", + "documentation":"

Entitlement usage unit.

" } - } + }, + "documentation":"

Usage associated with an entitlement resource.

" }, - "CreateLicenseConfigurationResponse":{ + "EntitlementUsageList":{ + "type":"list", + "member":{"shape":"EntitlementUsage"} + }, + "ExtendLicenseConsumptionRequest":{ "type":"structure", + "required":["LicenseConsumptionToken"], "members":{ - "LicenseConfigurationArn":{ + "LicenseConsumptionToken":{ "shape":"String", - "documentation":"

Amazon Resource Name (ARN) of the license configuration.

" + "documentation":"

License consumption token.

" + }, + "DryRun":{ + "shape":"Boolean", + "documentation":"

Checks whether you have the required permissions for the action, without actually making the request. Provides an error response if you do not have the required permissions.

" } } }, - "DateTime":{"type":"timestamp"}, - "DeleteLicenseConfigurationRequest":{ + "ExtendLicenseConsumptionResponse":{ "type":"structure", - "required":["LicenseConfigurationArn"], "members":{ - "LicenseConfigurationArn":{ + "LicenseConsumptionToken":{ "shape":"String", - "documentation":"

ID of the license configuration.

" + "documentation":"

License consumption token.

" + }, + "Expiration":{ + "shape":"ISO8601DateTime", + "documentation":"

Date and time at which the license consumption expires.

" } } }, - "DeleteLicenseConfigurationResponse":{ - "type":"structure", - "members":{ - } - }, "FailedDependencyException":{ "type":"structure", "members":{ - "Message":{"shape":"Message"} + "Message":{"shape":"Message"}, + "ErrorCode":{"shape":"String"} }, "documentation":"

A dependency required to run the API is missing.

", "exception":true @@ -437,6 +1767,10 @@ "documentation":"

The request uses too many filters or too many filter values.

", "exception":true }, + "FilterList":{ + "type":"list", + "member":{"shape":"Filter"} + }, "FilterName":{"type":"string"}, "FilterValue":{"type":"string"}, "FilterValues":{ @@ -447,6 +1781,52 @@ "type":"list", "member":{"shape":"Filter"} }, + "GetAccessTokenRequest":{ + "type":"structure", + "required":["Token"], + "members":{ + "Token":{ + "shape":"TokenString", + "documentation":"

Refresh token, encoded as a JWT token.

" + }, + "TokenProperties":{ + "shape":"MaxSize3StringList", + "documentation":"

Token properties to validate against those present in the JWT token.

" + } + } + }, + "GetAccessTokenResponse":{ + "type":"structure", + "members":{ + "AccessToken":{ + "shape":"TokenString", + "documentation":"

Temporary access token.

" + } + } + }, + "GetGrantRequest":{ + "type":"structure", + "required":["GrantArn"], + "members":{ + "GrantArn":{ + "shape":"Arn", + "documentation":"

Amazon Resource Name (ARN) of the grant.

" + }, + "Version":{ + "shape":"String", + "documentation":"

Grant version.

" + } + } + }, + "GetGrantResponse":{ + "type":"structure", + "members":{ + "Grant":{ + "shape":"Grant", + "documentation":"

Grant details.

" + } + } + }, "GetLicenseConfigurationRequest":{ "type":"structure", "required":["LicenseConfigurationArn"], @@ -526,6 +1906,48 @@ } } }, + "GetLicenseRequest":{ + "type":"structure", + "required":["LicenseArn"], + "members":{ + "LicenseArn":{ + "shape":"Arn", + "documentation":"

Amazon Resource Name (ARN) of the license.

" + }, + "Version":{ + "shape":"String", + "documentation":"

License version.

" + } + } + }, + "GetLicenseResponse":{ + "type":"structure", + "members":{ + "License":{ + "shape":"License", + "documentation":"

License details.

" + } + } + }, + "GetLicenseUsageRequest":{ + "type":"structure", + "required":["LicenseArn"], + "members":{ + "LicenseArn":{ + "shape":"Arn", + "documentation":"

Amazon Resource Name (ARN) of the license.

" + } + } + }, + "GetLicenseUsageResponse":{ + "type":"structure", + "members":{ + "LicenseUsage":{ + "shape":"LicenseUsage", + "documentation":"

License usage details.

" + } + } + }, "GetServiceSettingsRequest":{ "type":"structure", "members":{ @@ -544,11 +1966,11 @@ }, "OrganizationConfiguration":{ "shape":"OrganizationConfiguration", - "documentation":"

Indicates whether AWS Organizations has been integrated with License Manager for cross-account discovery.

" + "documentation":"

Indicates whether AWS Organizations is integrated with License Manager for cross-account discovery.

" }, "EnableCrossAccountsDiscovery":{ "shape":"BoxBoolean", - "documentation":"

Indicates whether cross-account discovery has been enabled.

" + "documentation":"

Indicates whether cross-account discovery is enabled.

" }, "LicenseManagerResourceShareArn":{ "shape":"String", @@ -556,6 +1978,161 @@ } } }, + "Grant":{ + "type":"structure", + "required":[ + "GrantArn", + "GrantName", + "ParentArn", + "LicenseArn", + "GranteePrincipalArn", + "HomeRegion", + "GrantStatus", + "Version", + "GrantedOperations" + ], + "members":{ + "GrantArn":{ + "shape":"Arn", + "documentation":"

Amazon Resource Name (ARN) of the grant.

" + }, + "GrantName":{ + "shape":"String", + "documentation":"

Grant name.

" + }, + "ParentArn":{ + "shape":"Arn", + "documentation":"

Parent ARN.

" + }, + "LicenseArn":{ + "shape":"Arn", + "documentation":"

License ARN.

" + }, + "GranteePrincipalArn":{ + "shape":"Arn", + "documentation":"

The grantee principal ARN.

" + }, + "HomeRegion":{ + "shape":"String", + "documentation":"

Home Region of the grant.

" + }, + "GrantStatus":{ + "shape":"GrantStatus", + "documentation":"

Grant status.

" + }, + "StatusReason":{ + "shape":"String", + "documentation":"

Grant status reason.

" + }, + "Version":{ + "shape":"String", + "documentation":"

Grant version.

" + }, + "GrantedOperations":{ + "shape":"AllowedOperationList", + "documentation":"

Granted operations.

" + } + }, + "documentation":"

Describes a grant.

" + }, + "GrantList":{ + "type":"list", + "member":{"shape":"Grant"} + }, + "GrantStatus":{ + "type":"string", + "enum":[ + "PENDING_WORKFLOW", + "PENDING_ACCEPT", + "REJECTED", + "ACTIVE", + "FAILED_WORKFLOW", + "DELETED", + "PENDING_DELETE", + "DISABLED" + ] + }, + "GrantedLicense":{ + "type":"structure", + "members":{ + "LicenseArn":{ + "shape":"Arn", + "documentation":"

Amazon Resource Name (ARN) of the license.

" + }, + "LicenseName":{ + "shape":"String", + "documentation":"

License name.

" + }, + "ProductName":{ + "shape":"String", + "documentation":"

Product name.

" + }, + "ProductSKU":{ + "shape":"String", + "documentation":"

Product SKU.

" + }, + "Issuer":{ + "shape":"IssuerDetails", + "documentation":"

Granted license issuer.

" + }, + "HomeRegion":{ + "shape":"String", + "documentation":"

Home Region of the granted license.

" + }, + "Status":{ + "shape":"LicenseStatus", + "documentation":"

Granted license status.

" + }, + "Validity":{ + "shape":"DatetimeRange", + "documentation":"

Date and time range during which the granted license is valid, in ISO8601-UTC format.

" + }, + "Beneficiary":{ + "shape":"String", + "documentation":"

Granted license beneficiary.

" + }, + "Entitlements":{ + "shape":"EntitlementList", + "documentation":"

License entitlements.

" + }, + "ConsumptionConfiguration":{ + "shape":"ConsumptionConfiguration", + "documentation":"

Configuration for consumption of the license.

" + }, + "LicenseMetadata":{ + "shape":"MetadataList", + "documentation":"

Granted license metadata.

" + }, + "CreateTime":{ + "shape":"ISO8601DateTime", + "documentation":"

Creation time of the granted license.

" + }, + "Version":{ + "shape":"String", + "documentation":"

Version of the granted license.

" + }, + "ReceivedMetadata":{ + "shape":"ReceivedMetadata", + "documentation":"

Granted license received metadata.

" + } + }, + "documentation":"

Describes a license that is granted to a grantee.

" + }, + "GrantedLicenseList":{ + "type":"list", + "member":{"shape":"GrantedLicense"} + }, + "ISO8601DateTime":{ + "type":"string", + "max":50, + "pattern":"^(-?(?:[1-9][0-9]*)?[0-9]{4})-(1[0-2]|0[1-9])-(3[0-1]|0[1-9]|[1-2][0-9])T(2[0-3]|[0-1][0-9]):([0-5][0-9]):([0-5][0-9])(\\.[0-9]+)?(Z|[+-](?:2[ 0-3]|[0-1][0-9]):[0-5][0-9])+$" + }, + "IdempotencyToken":{ + "type":"string", + "max":60, + "pattern":"\\S+" + }, + "Integer":{"type":"integer"}, "InvalidParameterValueException":{ "type":"structure", "members":{ @@ -608,6 +2185,101 @@ "type":"list", "member":{"shape":"InventoryFilter"} }, + "Issuer":{ + "type":"structure", + "required":["Name"], + "members":{ + "Name":{ + "shape":"String", + "documentation":"

Issuer name.

" + }, + "SignKey":{ + "shape":"String", + "documentation":"

Asymmetric CMK from AWS Key Management Service. The CMK must have a key usage of sign and verify, and support the RSASSA-PSS SHA-256 signing algorithm.

" + } + }, + "documentation":"

Details about the issuer of a license.

" + }, + "IssuerDetails":{ + "type":"structure", + "members":{ + "Name":{ + "shape":"String", + "documentation":"

Issuer name.

" + }, + "SignKey":{ + "shape":"String", + "documentation":"

Asymmetric CMK from AWS Key Management Service. The CMK must have a key usage of sign and verify, and support the RSASSA-PSS SHA-256 signing algorithm.

" + }, + "KeyFingerprint":{ + "shape":"String", + "documentation":"

Issuer key fingerprint.

" + } + }, + "documentation":"

Details associated with the issuer of a license.

" + }, + "License":{ + "type":"structure", + "members":{ + "LicenseArn":{ + "shape":"Arn", + "documentation":"

Amazon Resource Name (ARN) of the license.

" + }, + "LicenseName":{ + "shape":"String", + "documentation":"

License name.

" + }, + "ProductName":{ + "shape":"String", + "documentation":"

Product name.

" + }, + "ProductSKU":{ + "shape":"String", + "documentation":"

Product SKU.

" + }, + "Issuer":{ + "shape":"IssuerDetails", + "documentation":"

License issuer.

" + }, + "HomeRegion":{ + "shape":"String", + "documentation":"

Home Region of the license.

" + }, + "Status":{ + "shape":"LicenseStatus", + "documentation":"

License status.

" + }, + "Validity":{ + "shape":"DatetimeRange", + "documentation":"

Date and time range during which the license is valid, in ISO8601-UTC format.

" + }, + "Beneficiary":{ + "shape":"String", + "documentation":"

License beneficiary.

" + }, + "Entitlements":{ + "shape":"EntitlementList", + "documentation":"

License entitlements.

" + }, + "ConsumptionConfiguration":{ + "shape":"ConsumptionConfiguration", + "documentation":"

Configuration for consumption of the license.

" + }, + "LicenseMetadata":{ + "shape":"MetadataList", + "documentation":"

License metadata.

" + }, + "CreateTime":{ + "shape":"ISO8601DateTime", + "documentation":"

License creation time.

" + }, + "Version":{ + "shape":"String", + "documentation":"

License version.

" + } + }, + "documentation":"

Software license that is managed in AWS License Manager.

" + }, "LicenseConfiguration":{ "type":"structure", "members":{ @@ -695,7 +2367,7 @@ }, "AmiAssociationScope":{ "shape":"String", - "documentation":"

Scope of AMI associations.

" + "documentation":"

Scope of AMI associations. The possible value is cross-account.

" } }, "documentation":"

Describes an association with a license configuration.

" @@ -758,6 +2430,17 @@ "Socket" ] }, + "LicenseDeletionStatus":{ + "type":"string", + "enum":[ + "PENDING_DELETE", + "DELETED" + ] + }, + "LicenseList":{ + "type":"list", + "member":{"shape":"License"} + }, "LicenseOperationFailure":{ "type":"structure", "members":{ @@ -810,7 +2493,7 @@ }, "AmiAssociationScope":{ "shape":"String", - "documentation":"

Scope of AMI associations.

" + "documentation":"

Scope of AMI associations. The possible value is cross-account.

" } }, "documentation":"

Details for associating a license configuration with a resource.

" @@ -819,6 +2502,28 @@ "type":"list", "member":{"shape":"LicenseSpecification"} }, + "LicenseStatus":{ + "type":"string", + "enum":[ + "AVAILABLE", + "PENDING_AVAILABLE", + "DEACTIVATED", + "SUSPENDED", + "EXPIRED", + "PENDING_DELETE", + "DELETED" + ] + }, + "LicenseUsage":{ + "type":"structure", + "members":{ + "EntitlementUsages":{ + "shape":"EntitlementUsageList", + "documentation":"

License entitlement usages.

" + } + }, + "documentation":"

Describes the entitlement usage associated with a license.

" + }, "LicenseUsageException":{ "type":"structure", "members":{ @@ -858,6 +2563,40 @@ } } }, + "ListDistributedGrantsRequest":{ + "type":"structure", + "members":{ + "GrantArns":{ + "shape":"ArnList", + "documentation":"

Amazon Resource Names (ARNs) of the grants.

" + }, + "Filters":{ + "shape":"FilterList", + "documentation":"

Filters to scope the results. The following filters are supported:

  • LicenseARN

  • Status

  • PrincipalARN

  • ParentARN

" + }, + "NextToken":{ + "shape":"String", + "documentation":"

Token for the next set of results.

" + }, + "MaxResults":{ + "shape":"MaxSize100", + "documentation":"

Maximum number of results to return in a single call.

" + } + } + }, + "ListDistributedGrantsResponse":{ + "type":"structure", + "members":{ + "Grants":{ + "shape":"GrantList", + "documentation":"

Distributed grant details.

" + }, + "NextToken":{ + "shape":"String", + "documentation":"

Token for the next set of results.

" + } + } + }, "ListFailuresForLicenseConfigurationOperationsRequest":{ "type":"structure", "required":["LicenseConfigurationArn"], @@ -954,6 +2693,139 @@ } } }, + "ListLicenseVersionsRequest":{ + "type":"structure", + "required":["LicenseArn"], + "members":{ + "LicenseArn":{ + "shape":"Arn", + "documentation":"

Amazon Resource Name (ARN) of the license.

" + }, + "NextToken":{ + "shape":"String", + "documentation":"

Token for the next set of results.

" + }, + "MaxResults":{ + "shape":"MaxSize100", + "documentation":"

Maximum number of results to return in a single call.

" + } + } + }, + "ListLicenseVersionsResponse":{ + "type":"structure", + "members":{ + "Licenses":{ + "shape":"LicenseList", + "documentation":"

License details.

" + }, + "NextToken":{ + "shape":"String", + "documentation":"

Token for the next set of results.

" + } + } + }, + "ListLicensesRequest":{ + "type":"structure", + "members":{ + "LicenseArns":{ + "shape":"ArnList", + "documentation":"

Amazon Resource Names (ARNs) of the licenses.

" + }, + "Filters":{ + "shape":"FilterList", + "documentation":"

Filters to scope the results. The following filters are supported:

  • Beneficiary

  • ProductSKU

  • KeyFingerprint

  • Status

" + }, + "NextToken":{ + "shape":"String", + "documentation":"

Token for the next set of results.

" + }, + "MaxResults":{ + "shape":"MaxSize100", + "documentation":"

Maximum number of results to return in a single call.

" + } + } + }, + "ListLicensesResponse":{ + "type":"structure", + "members":{ + "Licenses":{ + "shape":"LicenseList", + "documentation":"

License details.

" + }, + "NextToken":{ + "shape":"String", + "documentation":"

Token for the next set of results.

" + } + } + }, + "ListReceivedGrantsRequest":{ + "type":"structure", + "members":{ + "GrantArns":{ + "shape":"ArnList", + "documentation":"

Amazon Resource Names (ARNs) of the grants.

" + }, + "Filters":{ + "shape":"FilterList", + "documentation":"

Filters to scope the results. The following filters are supported:

  • LicenseARN

  • Status

" + }, + "NextToken":{ + "shape":"String", + "documentation":"

Token for the next set of results.

" + }, + "MaxResults":{ + "shape":"MaxSize100", + "documentation":"

Maximum number of results to return in a single call.

" + } + } + }, + "ListReceivedGrantsResponse":{ + "type":"structure", + "members":{ + "Grants":{ + "shape":"GrantList", + "documentation":"

Received grant details.

" + }, + "NextToken":{ + "shape":"String", + "documentation":"

Token for the next set of results.

" + } + } + }, + "ListReceivedLicensesRequest":{ + "type":"structure", + "members":{ + "LicenseArns":{ + "shape":"ArnList", + "documentation":"

Amazon Resource Names (ARNs) of the licenses.

" + }, + "Filters":{ + "shape":"FilterList", + "documentation":"

Filters to scope the results. The following filters are supported:

  • ProductSKU

  • Status

  • KeyFingerprint

  • Issuer

" + }, + "NextToken":{ + "shape":"String", + "documentation":"

Token for the next set of results.

" + }, + "MaxResults":{ + "shape":"MaxSize100", + "documentation":"

Maximum number of results to return in a single call.

" + } + } + }, + "ListReceivedLicensesResponse":{ + "type":"structure", + "members":{ + "Licenses":{ + "shape":"GrantedLicenseList", + "documentation":"

Received license details.

" + }, + "NextToken":{ + "shape":"String", + "documentation":"

Token for the next set of results.

" + } + } + }, "ListResourceInventoryRequest":{ "type":"structure", "members":{ @@ -1003,6 +2875,40 @@ } } }, + "ListTokensRequest":{ + "type":"structure", + "members":{ + "TokenIds":{ + "shape":"StringList", + "documentation":"

Token IDs.

" + }, + "Filters":{ + "shape":"FilterList", + "documentation":"

Filters to scope the results. The following filter is supported:

  • licenseArns

" + }, + "NextToken":{ + "shape":"String", + "documentation":"

Token for the next set of results.

" + }, + "MaxResults":{ + "shape":"MaxSize100", + "documentation":"

Maximum number of results to return in a single call.

" + } + } + }, + "ListTokensResponse":{ + "type":"structure", + "members":{ + "Tokens":{ + "shape":"TokenList", + "documentation":"

Received token details.

" + }, + "NextToken":{ + "shape":"String", + "documentation":"

Token for the next set of results.

" + } + } + }, "ListUsageForLicenseConfigurationRequest":{ "type":"structure", "required":["LicenseConfigurationArn"], @@ -1021,7 +2927,7 @@ }, "Filters":{ "shape":"Filters", - "documentation":"

Filters to scope the results. The following filters and logical operators are supported:

  • resourceArn - The ARN of the license configuration resource. Logical operators are EQUALS | NOT_EQUALS.

  • resourceType - The resource type (EC2_INSTANCE | EC2_HOST | EC2_AMI | SYSTEMS_MANAGER_MANAGED_INSTANCE). Logical operators are EQUALS | NOT_EQUALS.

  • resourceAccount - The ID of the account that owns the resource. Logical operators are EQUALS | NOT_EQUALS.

" + "documentation":"

Filters to scope the results. The following filters and logical operators are supported:

  • resourceArn - The ARN of the license configuration resource. Logical operators are EQUALS | NOT_EQUALS.

  • resourceType - The resource type (EC2_INSTANCE | EC2_HOST | EC2_AMI | SYSTEMS_MANAGER_MANAGED_INSTANCE). Logical operators are EQUALS | NOT_EQUALS.

  • resourceAccount - The ID of the account that owns the resource. Logical operators are EQUALS | NOT_EQUALS.

" } } }, @@ -1038,6 +2944,8 @@ } } }, + "Location":{"type":"string"}, + "Long":{"type":"long"}, "ManagedResourceSummary":{ "type":"structure", "members":{ @@ -1056,25 +2964,43 @@ "type":"list", "member":{"shape":"ManagedResourceSummary"} }, + "MaxSize100":{ + "type":"integer", + "max":100, + "min":1 + }, + "MaxSize3StringList":{ + "type":"list", + "member":{"shape":"String"}, + "max":3 + }, "Message":{"type":"string"}, "Metadata":{ "type":"structure", "members":{ "Name":{ "shape":"String", - "documentation":"

Reserved.

" + "documentation":"

The key name.

" }, "Value":{ "shape":"String", - "documentation":"

Reserved.

" + "documentation":"

The value.

" } }, - "documentation":"

Reserved.

" + "documentation":"

Describes key/value pairs.

" }, "MetadataList":{ "type":"list", "member":{"shape":"Metadata"} }, + "NoEntitlementsAllowedException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

There are no entitlements found for this license, or the entitlement maximum count is reached.

", + "exception":true + }, "OrganizationConfiguration":{ "type":"structure", "required":["EnableIntegration"], @@ -1086,6 +3012,12 @@ }, "documentation":"

Configuration information for AWS Organizations.

" }, + "PrincipalArnList":{ + "type":"list", + "member":{"shape":"Arn"}, + "max":1, + "min":1 + }, "ProductInformation":{ "type":"structure", "required":[ @@ -1135,6 +3067,17 @@ "type":"list", "member":{"shape":"ProductInformation"} }, + "ProvisionalConfiguration":{ + "type":"structure", + "required":["MaxTimeToLiveInMinutes"], + "members":{ + "MaxTimeToLiveInMinutes":{ + "shape":"BoxInteger", + "documentation":"

Maximum time for the provisional configuration, in minutes.

" + } + }, + "documentation":"

Details about a provisional configuration.

" + }, "RateLimitExceededException":{ "type":"structure", "members":{ @@ -1143,6 +3086,76 @@ "documentation":"

Too many requests have been submitted. Try again after a brief wait.

", "exception":true }, + "ReceivedMetadata":{ + "type":"structure", + "members":{ + "ReceivedStatus":{ + "shape":"ReceivedStatus", + "documentation":"

Received status.

" + }, + "AllowedOperations":{ + "shape":"AllowedOperationList", + "documentation":"

Allowed operations.

" + } + }, + "documentation":"

Metadata associated with received licenses and grants.

" + }, + "ReceivedStatus":{ + "type":"string", + "enum":[ + "PENDING_WORKFLOW", + "PENDING_ACCEPT", + "REJECTED", + "ACTIVE", + "FAILED_WORKFLOW", + "DELETED", + "DISABLED" + ] + }, + "RedirectException":{ + "type":"structure", + "members":{ + "Location":{"shape":"Location"}, + "Message":{"shape":"Message"} + }, + "documentation":"

This is not the correct Region for the resource. Try again.

", + "exception":true + }, + "RejectGrantRequest":{ + "type":"structure", + "required":["GrantArn"], + "members":{ + "GrantArn":{ + "shape":"Arn", + "documentation":"

Amazon Resource Name (ARN) of the grant.

" + } + } + }, + "RejectGrantResponse":{ + "type":"structure", + "members":{ + "GrantArn":{ + "shape":"Arn", + "documentation":"

Grant ARN.

" + }, + "Status":{ + "shape":"GrantStatus", + "documentation":"

Grant status.

" + }, + "Version":{ + "shape":"String", + "documentation":"

Grant version.

" + } + } + }, + "RenewType":{ + "type":"string", + "enum":[ + "None", + "Weekly", + "Monthly" + ] + }, "ResourceInventory":{ "type":"structure", "members":{ @@ -1185,6 +3198,14 @@ "documentation":"

Your resource limits have been exceeded.

", "exception":true }, + "ResourceNotFoundException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

The resource cannot be found.

", + "exception":true + }, "ResourceType":{ "type":"string", "enum":[ @@ -1204,6 +3225,10 @@ "exception":true, "fault":true }, + "SignedToken":{ + "type":"string", + "min":4096 + }, "String":{"type":"string"}, "StringList":{ "type":"list", @@ -1253,6 +3278,61 @@ "members":{ } }, + "TokenData":{ + "type":"structure", + "members":{ + "TokenId":{ + "shape":"String", + "documentation":"

Token ID.

" + }, + "TokenType":{ + "shape":"String", + "documentation":"

Type of token generated. The supported value is REFRESH_TOKEN.

" + }, + "LicenseArn":{ + "shape":"String", + "documentation":"

Amazon Resource Name (ARN) of the license.

" + }, + "ExpirationTime":{ + "shape":"ISO8601DateTime", + "documentation":"

Token expiration time, in ISO8601-UTC format.

" + }, + "TokenProperties":{ + "shape":"MaxSize3StringList", + "documentation":"

Data specified by the caller.

" + }, + "RoleArns":{ + "shape":"ArnList", + "documentation":"

Amazon Resource Names (ARN) of the roles included in the token.

" + }, + "Status":{ + "shape":"String", + "documentation":"

Token status. The possible values are AVAILABLE and DELETED.

" + } + }, + "documentation":"

Describes a token.

" + }, + "TokenList":{ + "type":"list", + "member":{"shape":"TokenData"} + }, + "TokenString":{ + "type":"string", + "max":4096, + "pattern":"\\S+" + }, + "TokenType":{ + "type":"string", + "enum":["REFRESH_TOKEN"] + }, + "UnsupportedDigitalSignatureMethodException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

The digital signature method is unsupported. Try your request again.

", + "exception":true + }, "UntagResourceRequest":{ "type":"structure", "required":[ @@ -1366,6 +3446,14 @@ "type":"structure", "members":{ } + }, + "ValidationException":{ + "type":"structure", + "members":{ + "Message":{"shape":"Message"} + }, + "documentation":"

The provided input is not valid. Try your request again.

", + "exception":true } }, "documentation":" AWS License Manager

AWS License Manager makes it easier to manage licenses from software vendors across multiple AWS accounts and on-premises servers.

" From bd65779be4202122f7120f4350325cf24d7a567d Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 3 Dec 2020 20:30:44 +0000 Subject: [PATCH 335/339] AWS Compute Optimizer Update: This release enables AWS Compute Optimizer to analyze and generate optimization recommendations for EBS volumes that are attached to instances. --- .../feature-AWSComputeOptimizer-af215b3.json | 6 + .../codegen-resources/service-2.json | 278 ++++++++++++++++-- 2 files changed, 259 insertions(+), 25 deletions(-) create mode 100644 .changes/next-release/feature-AWSComputeOptimizer-af215b3.json diff --git a/.changes/next-release/feature-AWSComputeOptimizer-af215b3.json b/.changes/next-release/feature-AWSComputeOptimizer-af215b3.json new file mode 100644 index 000000000000..bad883f0c9ff --- /dev/null +++ b/.changes/next-release/feature-AWSComputeOptimizer-af215b3.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Compute Optimizer", + "contributor": "", + "description": "This release enables AWS Compute Optimizer to analyze and generate optimization recommendations for EBS volumes that are attached to instances." +} diff --git a/services/computeoptimizer/src/main/resources/codegen-resources/service-2.json b/services/computeoptimizer/src/main/resources/codegen-resources/service-2.json index 8d1054b5318a..e3e53cfa93a2 100644 --- a/services/computeoptimizer/src/main/resources/codegen-resources/service-2.json +++ b/services/computeoptimizer/src/main/resources/codegen-resources/service-2.json @@ -93,6 +93,26 @@ ], "documentation":"

Returns Auto Scaling group recommendations.

AWS Compute Optimizer generates recommendations for Amazon EC2 Auto Scaling groups that meet a specific set of requirements. For more information, see the Supported resources and requirements in the AWS Compute Optimizer User Guide.

" }, + "GetEBSVolumeRecommendations":{ + "name":"GetEBSVolumeRecommendations", + "http":{ + "method":"POST", + "requestUri":"/" + }, + "input":{"shape":"GetEBSVolumeRecommendationsRequest"}, + "output":{"shape":"GetEBSVolumeRecommendationsResponse"}, + "errors":[ + {"shape":"OptInRequiredException"}, + {"shape":"InternalServerException"}, + {"shape":"ServiceUnavailableException"}, + {"shape":"AccessDeniedException"}, + {"shape":"InvalidParameterValueException"}, + {"shape":"ResourceNotFoundException"}, + {"shape":"MissingAuthenticationToken"}, + {"shape":"ThrottlingException"} + ], + "documentation":"

Returns Amazon Elastic Block Store (Amazon EBS) volume recommendations.

AWS Compute Optimizer generates recommendations for Amazon EBS volumes that meet a specific set of requirements. For more information, see the Supported resources and requirements in the AWS Compute Optimizer User Guide.

" + }, "GetEC2InstanceRecommendations":{ "name":"GetEC2InstanceRecommendations", "http":{ @@ -149,7 +169,7 @@ {"shape":"MissingAuthenticationToken"}, {"shape":"ThrottlingException"} ], - "documentation":"

Returns the enrollment (opt in) status of an account to the AWS Compute Optimizer service.

If the account is the master account of an organization, this action also confirms the enrollment status of member accounts within the organization.

" + "documentation":"

Returns the enrollment (opt in) status of an account to the AWS Compute Optimizer service.

If the account is the management account of an organization, this action also confirms the enrollment status of member accounts within the organization.

" }, "GetRecommendationSummaries":{ "name":"GetRecommendationSummaries", @@ -186,7 +206,7 @@ {"shape":"MissingAuthenticationToken"}, {"shape":"ThrottlingException"} ], - "documentation":"

Updates the enrollment (opt in) status of an account to the AWS Compute Optimizer service.

If the account is a master account of an organization, this action can also be used to enroll member accounts within the organization.

" + "documentation":"

Updates the enrollment (opt in) status of an account to the AWS Compute Optimizer service.

If the account is a management account of an organization, this action can also be used to enroll member accounts within the organization.

" } }, "shapes":{ @@ -249,7 +269,7 @@ }, "finding":{ "shape":"Finding", - "documentation":"

The finding classification for the Auto Scaling group.

Findings for Auto Scaling groups include:

  • NotOptimized —An Auto Scaling group is considered not optimized when AWS Compute Optimizer identifies a recommendation that can provide better performance for your workload.

  • Optimized —An Auto Scaling group is considered optimized when Compute Optimizer determines that the group is correctly provisioned to run your workload based on the chosen instance type. For optimized resources, Compute Optimizer might recommend a new generation instance type.

The values that are returned might be NOT_OPTIMIZED or OPTIMIZED.

" + "documentation":"

The finding classification for the Auto Scaling group.

Findings for Auto Scaling groups include:

  • NotOptimized —An Auto Scaling group is considered not optimized when AWS Compute Optimizer identifies a recommendation that can provide better performance for your workload.

  • Optimized —An Auto Scaling group is considered optimized when Compute Optimizer determines that the group is correctly provisioned to run your workload based on the chosen instance type. For optimized resources, Compute Optimizer might recommend a new generation instance type.

" }, "utilizationMetrics":{ "shape":"UtilizationMetrics", @@ -345,6 +365,66 @@ "DestinationBucket":{"type":"string"}, "DestinationKey":{"type":"string"}, "DestinationKeyPrefix":{"type":"string"}, + "EBSFilter":{ + "type":"structure", + "members":{ + "name":{ + "shape":"EBSFilterName", + "documentation":"

The name of the filter.

Specify Finding to return recommendations with a specific finding classification (e.g., Optimized).

" + }, + "values":{ + "shape":"FilterValues", + "documentation":"

The value of the filter.

The valid values are Optimized, or NotOptimized.

" + } + }, + "documentation":"

Describes a filter that returns a more specific list of Amazon Elastic Block Store (Amazon EBS) volume recommendations.

This filter is used with the GetEBSVolumeRecommendations action.

" + }, + "EBSFilterName":{ + "type":"string", + "enum":["Finding"] + }, + "EBSFilters":{ + "type":"list", + "member":{"shape":"EBSFilter"} + }, + "EBSFinding":{ + "type":"string", + "enum":[ + "Optimized", + "NotOptimized" + ] + }, + "EBSMetricName":{ + "type":"string", + "enum":[ + "VolumeReadOpsPerSecond", + "VolumeWriteOpsPerSecond", + "VolumeReadBytesPerSecond", + "VolumeWriteBytesPerSecond" + ] + }, + "EBSUtilizationMetric":{ + "type":"structure", + "members":{ + "name":{ + "shape":"EBSMetricName", + "documentation":"

The name of the utilization metric.

The following utilization metrics are available:

  • VolumeReadOpsPerSecond - The completed read operations per second from the volume in a specified period of time.

    Unit: Count

  • VolumeWriteOpsPerSecond - The completed write operations per second to the volume in a specified period of time.

    Unit: Count

  • VolumeReadBytesPerSecond - The bytes read per second from the volume in a specified period of time.

    Unit: Bytes

  • VolumeWriteBytesPerSecond - The bytes written to the volume in a specified period of time.

    Unit: Bytes

" + }, + "statistic":{ + "shape":"MetricStatistic", + "documentation":"

The statistic of the utilization metric.

The following statistics are available:

  • Average - This is the value of Sum / SampleCount during the specified period, or the average value observed during the specified period.

  • Maximum - The highest value observed during the specified period. Use this value to determine high volumes of activity for your application.

" + }, + "value":{ + "shape":"MetricValue", + "documentation":"

The value of the utilization metric.

" + } + }, + "documentation":"

Describes a utilization metric of an Amazon Elastic Block Store (Amazon EBS) volume.

Compare the utilization metric data of your resource against its projected utilization metric data to determine the performance difference between your current resource and the recommended option.

" + }, + "EBSUtilizationMetrics":{ + "type":"list", + "member":{"shape":"EBSUtilizationMetric"} + }, "ErrorMessage":{"type":"string"}, "ExportAutoScalingGroupRecommendationsRequest":{ "type":"structure", @@ -352,7 +432,7 @@ "members":{ "accountIds":{ "shape":"AccountIds", - "documentation":"

The IDs of the AWS accounts for which to export Auto Scaling group recommendations.

If your account is the master account of an organization, use this parameter to specify the member accounts for which you want to export recommendations.

This parameter cannot be specified together with the include member accounts parameter. The parameters are mutually exclusive.

Recommendations for member accounts are not included in the export if this parameter, or the include member accounts parameter, is omitted.

You can specify multiple account IDs per request.

" + "documentation":"

The IDs of the AWS accounts for which to export Auto Scaling group recommendations.

If your account is the management account of an organization, use this parameter to specify the member accounts for which you want to export recommendations.

This parameter cannot be specified together with the include member accounts parameter. The parameters are mutually exclusive.

Recommendations for member accounts are not included in the export if this parameter, or the include member accounts parameter, is omitted.

You can specify multiple account IDs per request.

" }, "filters":{ "shape":"Filters", @@ -372,7 +452,7 @@ }, "includeMemberAccounts":{ "shape":"IncludeMemberAccounts", - "documentation":"

Indicates whether to include recommendations for resources in all member accounts of the organization if your account is the master account of an organization.

The member accounts must also be opted in to Compute Optimizer.

Recommendations for member accounts of the organization are not included in the export file if this parameter is omitted.

This parameter cannot be specified together with the account IDs parameter. The parameters are mutually exclusive.

Recommendations for member accounts are not included in the export if this parameter, or the account IDs parameter, is omitted.

" + "documentation":"

Indicates whether to include recommendations for resources in all member accounts of the organization if your account is the management account of an organization.

The member accounts must also be opted in to Compute Optimizer.

Recommendations for member accounts of the organization are not included in the export file if this parameter is omitted.

This parameter cannot be specified together with the account IDs parameter. The parameters are mutually exclusive.

Recommendations for member accounts are not included in the export if this parameter, or the account IDs parameter, is omitted.

" } } }, @@ -405,7 +485,7 @@ "members":{ "accountIds":{ "shape":"AccountIds", - "documentation":"

The IDs of the AWS accounts for which to export instance recommendations.

If your account is the master account of an organization, use this parameter to specify the member accounts for which you want to export recommendations.

This parameter cannot be specified together with the include member accounts parameter. The parameters are mutually exclusive.

Recommendations for member accounts are not included in the export if this parameter, or the include member accounts parameter, is omitted.

You can specify multiple account IDs per request.

" + "documentation":"

The IDs of the AWS accounts for which to export instance recommendations.

If your account is the management account of an organization, use this parameter to specify the member accounts for which you want to export recommendations.

This parameter cannot be specified together with the include member accounts parameter. The parameters are mutually exclusive.

Recommendations for member accounts are not included in the export if this parameter, or the include member accounts parameter, is omitted.

You can specify multiple account IDs per request.

" }, "filters":{ "shape":"Filters", @@ -425,7 +505,7 @@ }, "includeMemberAccounts":{ "shape":"IncludeMemberAccounts", - "documentation":"

Indicates whether to include recommendations for resources in all member accounts of the organization if your account is the master account of an organization.

The member accounts must also be opted in to Compute Optimizer.

Recommendations for member accounts of the organization are not included in the export file if this parameter is omitted.

Recommendations for member accounts are not included in the export if this parameter, or the account IDs parameter, is omitted.

" + "documentation":"

Indicates whether to include recommendations for resources in all member accounts of the organization if your account is the management account of an organization.

The member accounts must also be opted in to Compute Optimizer.

Recommendations for member accounts of the organization are not included in the export file if this parameter is omitted.

Recommendations for member accounts are not included in the export if this parameter, or the account IDs parameter, is omitted.

" } } }, @@ -540,14 +620,14 @@ "members":{ "name":{ "shape":"FilterName", - "documentation":"

The name of the filter.

Specify Finding to return recommendations with a specific findings classification (e.g., Overprovisioned).

Specify RecommendationSourceType to return recommendations of a specific resource type (e.g., AutoScalingGroup).

" + "documentation":"

The name of the filter.

Specify Finding to return recommendations with a specific finding classification (e.g., Overprovisioned).

Specify RecommendationSourceType to return recommendations of a specific resource type (e.g., AutoScalingGroup).

" }, "values":{ "shape":"FilterValues", - "documentation":"

The value of the filter.

If you specify the name parameter as Finding, and you request recommendations for an instance, then the valid values are Underprovisioned, Overprovisioned, NotOptimized, or Optimized.

If you specify the name parameter as Finding, and you request recommendations for an Auto Scaling group, then the valid values are Optimized, or NotOptimized.

If you specify the name parameter as RecommendationSourceType, then the valid values are Ec2Instance, or AutoScalingGroup.

" + "documentation":"

The value of the filter.

The valid values for this parameter are as follows, depending on what you specify for the name parameter and the resource type that you wish to filter results for:

  • Specify Optimized or NotOptimized if you specified the name parameter as Finding and you want to filter results for Auto Scaling groups.

  • Specify Underprovisioned, Overprovisioned, or Optimized if you specified the name parameter as Finding and you want to filter results for EC2 instances.

  • Specify Ec2Instance or AutoScalingGroup if you specified the name parameter as RecommendationSourceType.

" } }, - "documentation":"

Describes a filter that returns a more specific list of recommendations.

" + "documentation":"

Describes a filter that returns a more specific list of recommendations.

This filter is used with the GetAutoScalingGroupRecommendations and GetEC2InstanceRecommendations actions.

" }, "FilterName":{ "type":"string", @@ -579,7 +659,7 @@ "members":{ "accountIds":{ "shape":"AccountIds", - "documentation":"

The IDs of the AWS accounts for which to return Auto Scaling group recommendations.

If your account is the master account of an organization, use this parameter to specify the member accounts for which you want to return Auto Scaling group recommendations.

Only one account ID can be specified per request.

" + "documentation":"

The IDs of the AWS accounts for which to return Auto Scaling group recommendations.

If your account is the management account of an organization, use this parameter to specify the member accounts for which you want to return Auto Scaling group recommendations.

Only one account ID can be specified per request.

" }, "autoScalingGroupArns":{ "shape":"AutoScalingGroupArns", @@ -616,6 +696,48 @@ } } }, + "GetEBSVolumeRecommendationsRequest":{ + "type":"structure", + "members":{ + "volumeArns":{ + "shape":"VolumeArns", + "documentation":"

The Amazon Resource Name (ARN) of the volumes for which to return recommendations.

" + }, + "nextToken":{ + "shape":"NextToken", + "documentation":"

The token to advance to the next page of volume recommendations.

" + }, + "maxResults":{ + "shape":"MaxResults", + "documentation":"

The maximum number of volume recommendations to return with a single request.

To retrieve the remaining results, make another request with the returned NextToken value.

" + }, + "filters":{ + "shape":"EBSFilters", + "documentation":"

An array of objects that describe a filter that returns a more specific list of volume recommendations.

" + }, + "accountIds":{ + "shape":"AccountIds", + "documentation":"

The IDs of the AWS accounts for which to return volume recommendations.

If your account is the management account of an organization, use this parameter to specify the member accounts for which you want to return volume recommendations.

Only one account ID can be specified per request.

" + } + } + }, + "GetEBSVolumeRecommendationsResponse":{ + "type":"structure", + "members":{ + "nextToken":{ + "shape":"NextToken", + "documentation":"

The token to use to advance to the next page of volume recommendations.

This value is null when there are no more pages of volume recommendations to return.

" + }, + "volumeRecommendations":{ + "shape":"VolumeRecommendations", + "documentation":"

An array of objects that describe volume recommendations.

" + }, + "errors":{ + "shape":"GetRecommendationErrors", + "documentation":"

An array of objects that describe errors of the request.

For example, an error is returned if you request recommendations for an unsupported volume.

" + } + } + }, "GetEC2InstanceRecommendationsRequest":{ "type":"structure", "members":{ @@ -637,7 +759,7 @@ }, "accountIds":{ "shape":"AccountIds", - "documentation":"

The IDs of the AWS accounts for which to return instance recommendations.

If your account is the master account of an organization, use this parameter to specify the member accounts for which you want to return instance recommendations.

Only one account ID can be specified per request.

" + "documentation":"

The IDs of the AWS accounts for which to return instance recommendations.

If your account is the management account of an organization, use this parameter to specify the member accounts for which you want to return instance recommendations.

Only one account ID can be specified per request.

" } } }, @@ -717,7 +839,7 @@ }, "memberAccountsEnrolled":{ "shape":"MemberAccountsEnrolled", - "documentation":"

Confirms the enrollment status of member accounts within the organization, if the account is a master account of an organization.

" + "documentation":"

Confirms the enrollment status of member accounts within the organization, if the account is a management account of an organization.

" } } }, @@ -748,7 +870,7 @@ "members":{ "accountIds":{ "shape":"AccountIds", - "documentation":"

The IDs of the AWS accounts for which to return recommendation summaries.

If your account is the master account of an organization, use this parameter to specify the member accounts for which you want to return recommendation summaries.

Only one account ID can be specified per request.

" + "documentation":"

The IDs of the AWS accounts for which to return recommendation summaries.

If your account is the management account of an organization, use this parameter to specify the member accounts for which you want to return recommendation summaries.

Only one account ID can be specified per request.

" }, "nextToken":{ "shape":"NextToken", @@ -802,7 +924,7 @@ }, "finding":{ "shape":"Finding", - "documentation":"

The finding classification for the instance.

Findings for instances include:

  • Underprovisioned —An instance is considered under-provisioned when at least one specification of your instance, such as CPU, memory, or network, does not meet the performance requirements of your workload. Under-provisioned instances may lead to poor application performance.

  • Overprovisioned —An instance is considered over-provisioned when at least one specification of your instance, such as CPU, memory, or network, can be sized down while still meeting the performance requirements of your workload, and no specification is under-provisioned. Over-provisioned instances may lead to unnecessary infrastructure cost.

  • Optimized —An instance is considered optimized when all specifications of your instance, such as CPU, memory, and network, meet the performance requirements of your workload and is not over provisioned. An optimized instance runs your workloads with optimal performance and infrastructure cost. For optimized resources, AWS Compute Optimizer might recommend a new generation instance type.

The values that are returned might be UNDER_PROVISIONED, OVER_PROVISIONED, or OPTIMIZED.

" + "documentation":"

The finding classification for the instance.

Findings for instances include:

  • Underprovisioned —An instance is considered under-provisioned when at least one specification of your instance, such as CPU, memory, or network, does not meet the performance requirements of your workload. Under-provisioned instances may lead to poor application performance.

  • Overprovisioned —An instance is considered over-provisioned when at least one specification of your instance, such as CPU, memory, or network, can be sized down while still meeting the performance requirements of your workload, and no specification is under-provisioned. Over-provisioned instances may lead to unnecessary infrastructure cost.

  • Optimized —An instance is considered optimized when all specifications of your instance, such as CPU, memory, and network, meet the performance requirements of your workload and is not over provisioned. An optimized instance runs your workloads with optimal performance and infrastructure cost. For optimized resources, AWS Compute Optimizer might recommend a new generation instance type.

" }, "utilizationMetrics":{ "shape":"UtilizationMetrics", @@ -881,7 +1003,7 @@ }, "values":{ "shape":"FilterValues", - "documentation":"

The value of the filter.

If you specify the name parameter as ResourceType, the valid values are Ec2Instance or AutoScalingGroup.

If you specify the name parameter as JobStatus, the valid values are Queued, InProgress, Complete, or Failed.

" + "documentation":"

The value of the filter.

The valid values for this parameter are as follows, depending on what you specify for the name parameter:

  • Specify Ec2Instance or AutoScalingGroup if you specified the name parameter as ResourceType. There is no filter for EBS volumes because volume recommendations cannot be exported at this time.

  • Specify Queued, InProgress, Complete, or Failed if you specified the name parameter as JobStatus.

" } }, "documentation":"

Describes a filter that returns a more specific list of recommendation export jobs.

This filter is used with the DescribeRecommendationExportJobs action.

" @@ -985,7 +1107,7 @@ "members":{ "name":{ "shape":"MetricName", - "documentation":"

The name of the projected utilization metric.

" + "documentation":"

The name of the projected utilization metric.

The following projected utilization metrics are returned:

  • Cpu - The projected percentage of allocated EC2 compute units that would be in use on the recommendation option had you used that resource during the analyzed period. This metric identifies the processing power required to run an application on the recommendation option.

    Depending on the instance type, tools in your operating system can show a lower percentage than CloudWatch when the instance is not allocated a full processor core.

    Units: Percent

  • Memory - The percentage of memory that would be in use on the recommendation option had you used that resource during the analyzed period. This metric identifies the amount of memory required to run an application on the recommendation option.

    Units: Percent

    The Memory metric is returned only for resources that have the unified CloudWatch agent installed on them. For more information, see Enabling Memory Utilization with the CloudWatch Agent.

" }, "timestamps":{ "shape":"Timestamps", @@ -996,7 +1118,7 @@ "documentation":"

The values of the projected utilization metrics.

" } }, - "documentation":"

Describes a projected utilization metric of a recommendation option, such as an Amazon EC2 instance.

The Cpu and Memory metrics are the only projected utilization metrics returned when you run the GetEC2RecommendationProjectedMetrics action. Additionally, the Memory metric is returned only for resources that have the unified CloudWatch agent installed on them. For more information, see Enabling Memory Utilization with the CloudWatch Agent.

" + "documentation":"

Describes a projected utilization metric of a recommendation option, such as an Amazon EC2 instance. This represents the projected utilization of a recommendation option had you used that resource during the analyzed period.

Compare the utilization metric data of your resource against its projected utilization metric data to determine the performance difference between your current resource and the recommended option.

The Cpu and Memory metrics are the only projected utilization metrics returned when you run the GetEC2RecommendationProjectedMetrics action. Additionally, the Memory metric is returned only for resources that have the unified CloudWatch agent installed on them. For more information, see Enabling Memory Utilization with the CloudWatch Agent.

" }, "ProjectedMetrics":{ "type":"list", @@ -1068,7 +1190,8 @@ "type":"string", "enum":[ "Ec2Instance", - "AutoScalingGroup" + "AutoScalingGroup", + "EbsVolume" ] }, "RecommendationSources":{ @@ -1231,7 +1354,7 @@ }, "includeMemberAccounts":{ "shape":"IncludeMemberAccounts", - "documentation":"

Indicates whether to enroll member accounts of the organization if the your account is the master account of an organization.

" + "documentation":"

Indicates whether to enroll member accounts of the organization if the your account is the management account of an organization.

" } } }, @@ -1253,23 +1376,128 @@ "members":{ "name":{ "shape":"MetricName", - "documentation":"

The name of the utilization metric.

The Memory metric is returned only for resources that have the unified CloudWatch agent installed on them. For more information, see Enabling Memory Utilization with the CloudWatch Agent.

" + "documentation":"

The name of the utilization metric.

The following utilization metrics are available:

  • Cpu - The percentage of allocated EC2 compute units that are currently in use on the instance. This metric identifies the processing power required to run an application on the instance.

    Depending on the instance type, tools in your operating system can show a lower percentage than CloudWatch when the instance is not allocated a full processor core.

    Units: Percent

  • Memory - The percentage of memory that is currently in use on the instance. This metric identifies the amount of memory required to run an application on the instance.

    Units: Percent

    The Memory metric is returned only for resources that have the unified CloudWatch agent installed on them. For more information, see Enabling Memory Utilization with the CloudWatch Agent.

  • EBS_READ_OPS_PER_SECOND - The completed read operations from all EBS volumes attached to the instance in a specified period of time.

    Unit: Count

  • EBS_WRITE_OPS_PER_SECOND - The completed write operations to all EBS volumes attached to the instance in a specified period of time.

    Unit: Count

  • EBS_READ_BYTES_PER_SECOND - The bytes read from all EBS volumes attached to the instance in a specified period of time.

    Unit: Bytes

  • EBS_WRITE_BYTES_PER_SECOND - The bytes written to all EBS volumes attached to the instance in a specified period of time.

    Unit: Bytes

" }, "statistic":{ "shape":"MetricStatistic", - "documentation":"

The statistic of the utilization metric.

" + "documentation":"

The statistic of the utilization metric.

The following statistics are available:

  • Average - This is the value of Sum / SampleCount during the specified period, or the average value observed during the specified period.

  • Maximum - The highest value observed during the specified period. Use this value to determine high volumes of activity for your application.

" }, "value":{ "shape":"MetricValue", "documentation":"

The value of the utilization metric.

" } }, - "documentation":"

Describes a utilization metric of a resource, such as an Amazon EC2 instance.

" + "documentation":"

Describes a utilization metric of a resource, such as an Amazon EC2 instance.

Compare the utilization metric data of your resource against its projected utilization metric data to determine the performance difference between your current resource and the recommended option.

" }, "UtilizationMetrics":{ "type":"list", "member":{"shape":"UtilizationMetric"} - } + }, + "VolumeArn":{"type":"string"}, + "VolumeArns":{ + "type":"list", + "member":{"shape":"VolumeArn"} + }, + "VolumeBaselineIOPS":{"type":"integer"}, + "VolumeBaselineThroughput":{"type":"integer"}, + "VolumeBurstIOPS":{"type":"integer"}, + "VolumeBurstThroughput":{"type":"integer"}, + "VolumeConfiguration":{ + "type":"structure", + "members":{ + "volumeType":{ + "shape":"VolumeType", + "documentation":"

The volume type.

This can be gp2 for General Purpose SSD, io1 or io2 for Provisioned IOPS SSD, st1 for Throughput Optimized HDD, sc1 for Cold HDD, or standard for Magnetic volumes.

" + }, + "volumeSize":{ + "shape":"VolumeSize", + "documentation":"

The size of the volume, in GiB.

" + }, + "volumeBaselineIOPS":{ + "shape":"VolumeBaselineIOPS", + "documentation":"

The baseline IOPS of the volume.

" + }, + "volumeBurstIOPS":{ + "shape":"VolumeBurstIOPS", + "documentation":"

The burst IOPS of the volume.

" + }, + "volumeBaselineThroughput":{ + "shape":"VolumeBaselineThroughput", + "documentation":"

The baseline throughput of the volume.

" + }, + "volumeBurstThroughput":{ + "shape":"VolumeBurstThroughput", + "documentation":"

The burst throughput of the volume.

" + } + }, + "documentation":"

Describes the configuration of an Amazon Elastic Block Store (Amazon EBS) volume.

" + }, + "VolumeRecommendation":{ + "type":"structure", + "members":{ + "volumeArn":{ + "shape":"VolumeArn", + "documentation":"

The Amazon Resource Name (ARN) of the current volume.

" + }, + "accountId":{ + "shape":"AccountId", + "documentation":"

The AWS account ID of the volume.

" + }, + "currentConfiguration":{ + "shape":"VolumeConfiguration", + "documentation":"

An array of objects that describe the current configuration of the volume.

" + }, + "finding":{ + "shape":"EBSFinding", + "documentation":"

The finding classification for the volume.

Findings for volumes include:

  • NotOptimized —A volume is considered not optimized when AWS Compute Optimizer identifies a recommendation that can provide better performance for your workload.

  • Optimized —An volume is considered optimized when Compute Optimizer determines that the volume is correctly provisioned to run your workload based on the chosen volume type. For optimized resources, Compute Optimizer might recommend a new generation volume type.

" + }, + "utilizationMetrics":{ + "shape":"EBSUtilizationMetrics", + "documentation":"

An array of objects that describe the utilization metrics of the volume.

" + }, + "lookBackPeriodInDays":{ + "shape":"LookBackPeriodInDays", + "documentation":"

The number of days for which utilization metrics were analyzed for the volume.

" + }, + "volumeRecommendationOptions":{ + "shape":"VolumeRecommendationOptions", + "documentation":"

An array of objects that describe the recommendation options for the volume.

" + }, + "lastRefreshTimestamp":{ + "shape":"LastRefreshTimestamp", + "documentation":"

The time stamp of when the volume recommendation was last refreshed.

" + } + }, + "documentation":"

Describes an Amazon Elastic Block Store (Amazon EBS) volume recommendation.

" + }, + "VolumeRecommendationOption":{ + "type":"structure", + "members":{ + "configuration":{ + "shape":"VolumeConfiguration", + "documentation":"

An array of objects that describe a volume configuration.

" + }, + "performanceRisk":{ + "shape":"PerformanceRisk", + "documentation":"

The performance risk of the volume recommendation option.

Performance risk is the likelihood of the recommended volume type not meeting the performance requirement of your workload.

The lowest performance risk is categorized as 0, and the highest as 5.

" + }, + "rank":{ + "shape":"Rank", + "documentation":"

The rank of the volume recommendation option.

The top recommendation option is ranked as 1.

" + } + }, + "documentation":"

Describes a recommendation option for an Amazon Elastic Block Store (Amazon EBS) instance.

" + }, + "VolumeRecommendationOptions":{ + "type":"list", + "member":{"shape":"VolumeRecommendationOption"} + }, + "VolumeRecommendations":{ + "type":"list", + "member":{"shape":"VolumeRecommendation"} + }, + "VolumeSize":{"type":"integer"}, + "VolumeType":{"type":"string"} }, - "documentation":"

AWS Compute Optimizer is a service that analyzes the configuration and utilization metrics of your AWS resources, such as EC2 instances and Auto Scaling groups. It reports whether your resources are optimal, and generates optimization recommendations to reduce the cost and improve the performance of your workloads. Compute Optimizer also provides recent utilization metric data, as well as projected utilization metric data for the recommendations, which you can use to evaluate which recommendation provides the best price-performance trade-off. The analysis of your usage patterns can help you decide when to move or resize your running resources, and still meet your performance and capacity requirements. For more information about Compute Optimizer, including the required permissions to use the service, see the AWS Compute Optimizer User Guide.

" + "documentation":"

AWS Compute Optimizer is a service that analyzes the configuration and utilization metrics of your AWS compute resources, such as EC2 instances, Auto Scaling groups, and Amazon EBS volumes. It reports whether your resources are optimal, and generates optimization recommendations to reduce the cost and improve the performance of your workloads. Compute Optimizer also provides recent utilization metric data, as well as projected utilization metric data for the recommendations, which you can use to evaluate which recommendation provides the best price-performance trade-off. The analysis of your usage patterns can help you decide when to move or resize your running resources, and still meet your performance and capacity requirements. For more information about Compute Optimizer, including the required permissions to use the service, see the AWS Compute Optimizer User Guide.

" } From 1a78810020bcd1d9518ee88b077ec394bf92f14b Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 3 Dec 2020 20:30:39 +0000 Subject: [PATCH 336/339] AWS Batch Update: This release adds support for customer to run Batch Jobs on ECS Fargate, the serverless compute engine built for containers on AWS. Customer can also propagate Job and Job Definition Tags to ECS Task. --- .../feature-AWSBatch-91a60c6.json | 6 + .../codegen-resources/service-2.json | 375 +++++++++++------- 2 files changed, 244 insertions(+), 137 deletions(-) create mode 100644 .changes/next-release/feature-AWSBatch-91a60c6.json diff --git a/.changes/next-release/feature-AWSBatch-91a60c6.json b/.changes/next-release/feature-AWSBatch-91a60c6.json new file mode 100644 index 000000000000..677e3a025478 --- /dev/null +++ b/.changes/next-release/feature-AWSBatch-91a60c6.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS Batch", + "contributor": "", + "description": "This release adds support for customer to run Batch Jobs on ECS Fargate, the serverless compute engine built for containers on AWS. Customer can also propagate Job and Job Definition Tags to ECS Task." +} diff --git a/services/batch/src/main/resources/codegen-resources/service-2.json b/services/batch/src/main/resources/codegen-resources/service-2.json index 82ae85e75095..5fd469086c06 100644 --- a/services/batch/src/main/resources/codegen-resources/service-2.json +++ b/services/batch/src/main/resources/codegen-resources/service-2.json @@ -24,7 +24,7 @@ {"shape":"ClientException"}, {"shape":"ServerException"} ], - "documentation":"

Cancels a job in an AWS Batch job queue. Jobs that are in the SUBMITTED, PENDING, or RUNNABLE state are cancelled. Jobs that have progressed to STARTING or RUNNING are not cancelled (but the API operation still succeeds, even if no job is cancelled); these jobs must be terminated with the TerminateJob operation.

" + "documentation":"

Cancels a job in an AWS Batch job queue. Jobs that are in the SUBMITTED, PENDING, or RUNNABLE state are canceled. Jobs that have progressed to STARTING or RUNNING are not canceled (but the API operation still succeeds, even if no job is canceled); these jobs must be terminated with the TerminateJob operation.

" }, "CreateComputeEnvironment":{ "name":"CreateComputeEnvironment", @@ -38,7 +38,7 @@ {"shape":"ClientException"}, {"shape":"ServerException"} ], - "documentation":"

Creates an AWS Batch compute environment. You can create MANAGED or UNMANAGED compute environments.

In a managed compute environment, AWS Batch manages the capacity and instance types of the compute resources within the environment. This is based on the compute resource specification that you define or the launch template that you specify when you create the compute environment. You can choose to use Amazon EC2 On-Demand Instances or Spot Instances in your managed compute environment. You can optionally set a maximum price so that Spot Instances only launch when the Spot Instance price is below a specified percentage of the On-Demand price.

Multi-node parallel jobs are not supported on Spot Instances.

In an unmanaged compute environment, you can manage your own compute resources. This provides more compute resource configuration options, such as using a custom AMI, but you must ensure that your AMI meets the Amazon ECS container instance AMI specification. For more information, see Container Instance AMIs in the Amazon Elastic Container Service Developer Guide. After you have created your unmanaged compute environment, you can use the DescribeComputeEnvironments operation to find the Amazon ECS cluster that is associated with it. Then, manually launch your container instances into that Amazon ECS cluster. For more information, see Launching an Amazon ECS Container Instance in the Amazon Elastic Container Service Developer Guide.

AWS Batch does not upgrade the AMIs in a compute environment after it is created (for example, when a newer version of the Amazon ECS-optimized AMI is available). You are responsible for the management of the guest operating system (including updates and security patches) and any additional application software or utilities that you install on the compute resources. To use a new AMI for your AWS Batch jobs:

  1. Create a new compute environment with the new AMI.

  2. Add the compute environment to an existing job queue.

  3. Remove the old compute environment from your job queue.

  4. Delete the old compute environment.

" + "documentation":"

Creates an AWS Batch compute environment. You can create MANAGED or UNMANAGED compute environments. MANAGED compute environments can use Amazon EC2 or AWS Fargate resources. UNMANAGED compute environments can only use EC2 resources.

In a managed compute environment, AWS Batch manages the capacity and instance types of the compute resources within the environment. This is based on the compute resource specification that you define or the launch template that you specify when you create the compute environment. You can choose either to use EC2 On-Demand Instances and EC2 Spot Instances, or to use Fargate and Fargate Spot capacity in your managed compute environment. You can optionally set a maximum price so that Spot Instances only launch when the Spot Instance price is below a specified percentage of the On-Demand price.

Multi-node parallel jobs are not supported on Spot Instances.

In an unmanaged compute environment, you can manage your own EC2 compute resources and have a lot of flexibility with how you configure your compute resources. For example, you can use custom AMI. However, you need to verify that your AMI meets the Amazon ECS container instance AMI specification. For more information, see container instance AMIs in the Amazon Elastic Container Service Developer Guide. After you have created your unmanaged compute environment, you can use the DescribeComputeEnvironments operation to find the Amazon ECS cluster that is associated with it. Then, manually launch your container instances into that Amazon ECS cluster. For more information, see Launching an Amazon ECS container instance in the Amazon Elastic Container Service Developer Guide.

AWS Batch doesn't upgrade the AMIs in a compute environment after it's created. For example, it doesn't update the AMIs when a newer version of the Amazon ECS-optimized AMI is available. Therefore, you're responsible for the management of the guest operating system (including updates and security patches) and any additional application software or utilities that you install on the compute resources. To use a new AMI for your AWS Batch jobs, complete these steps:

  1. Create a new compute environment with the new AMI.

  2. Add the compute environment to an existing job queue.

  3. Remove the earlier compute environment from your job queue.

  4. Delete the earlier compute environment.

" }, "CreateJobQueue":{ "name":"CreateJobQueue", @@ -66,7 +66,7 @@ {"shape":"ClientException"}, {"shape":"ServerException"} ], - "documentation":"

Deletes an AWS Batch compute environment.

Before you can delete a compute environment, you must set its state to DISABLED with the UpdateComputeEnvironment API operation and disassociate it from any job queues with the UpdateJobQueue API operation.

" + "documentation":"

Deletes an AWS Batch compute environment.

Before you can delete a compute environment, you must set its state to DISABLED with the UpdateComputeEnvironment API operation and disassociate it from any job queues with the UpdateJobQueue API operation. Compute environments that use AWS Fargate resources must terminate all active jobs on that compute environment before deleting the compute environment. If this isn't done, the compute environment will end up in an invalid state.

" }, "DeleteJobQueue":{ "name":"DeleteJobQueue", @@ -80,7 +80,7 @@ {"shape":"ClientException"}, {"shape":"ServerException"} ], - "documentation":"

Deletes the specified job queue. You must first disable submissions for a queue with the UpdateJobQueue operation. All jobs in the queue are terminated when you delete a job queue.

It is not necessary to disassociate compute environments from a queue before submitting a DeleteJobQueue request.

" + "documentation":"

Deletes the specified job queue. You must first disable submissions for a queue with the UpdateJobQueue operation. All jobs in the queue are terminated when you delete a job queue.

It's not necessary to disassociate compute environments from a queue before submitting a DeleteJobQueue request.

" }, "DeregisterJobDefinition":{ "name":"DeregisterJobDefinition", @@ -94,7 +94,7 @@ {"shape":"ClientException"}, {"shape":"ServerException"} ], - "documentation":"

Deregisters an AWS Batch job definition. Job definitions will be permanently deleted after 180 days.

" + "documentation":"

Deregisters an AWS Batch job definition. Job definitions are permanently deleted after 180 days.

" }, "DescribeComputeEnvironments":{ "name":"DescribeComputeEnvironments", @@ -108,7 +108,7 @@ {"shape":"ClientException"}, {"shape":"ServerException"} ], - "documentation":"

Describes one or more of your compute environments.

If you are using an unmanaged compute environment, you can use the DescribeComputeEnvironment operation to determine the ecsClusterArn that you should launch your Amazon ECS container instances into.

" + "documentation":"

Describes one or more of your compute environments.

If you're using an unmanaged compute environment, you can use the DescribeComputeEnvironment operation to determine the ecsClusterArn that you should launch your Amazon ECS container instances into.

" }, "DescribeJobDefinitions":{ "name":"DescribeJobDefinitions", @@ -164,7 +164,7 @@ {"shape":"ClientException"}, {"shape":"ServerException"} ], - "documentation":"

Returns a list of AWS Batch jobs.

You must specify only one of the following:

  • a job queue ID to return a list of jobs in that job queue

  • a multi-node parallel job ID to return a list of that job's nodes

  • an array job ID to return a list of that job's children

You can filter the results by job status with the jobStatus parameter. If you do not specify a status, only RUNNING jobs are returned.

" + "documentation":"

Returns a list of AWS Batch jobs.

You must specify only one of the following items:

  • A job queue ID to return a list of jobs in that job queue

  • A multi-node parallel job ID to return a list of that job's nodes

  • An array job ID to return a list of that job's children

You can filter the results by job status with the jobStatus parameter. If you don't specify a status, only RUNNING jobs are returned.

" }, "ListTagsForResource":{ "name":"ListTagsForResource", @@ -178,7 +178,7 @@ {"shape":"ClientException"}, {"shape":"ServerException"} ], - "documentation":"

List the tags for an AWS Batch resource. AWS Batch resources that support tags are compute environments, jobs, job definitions, and job queues. ARNs for child jobs of array and multi-node parallel (MNP) jobs are not supported.

" + "documentation":"

Lists the tags for an AWS Batch resource. AWS Batch resources that support tags are compute environments, jobs, job definitions, and job queues. ARNs for child jobs of array and multi-node parallel (MNP) jobs are not supported.

" }, "RegisterJobDefinition":{ "name":"RegisterJobDefinition", @@ -206,7 +206,7 @@ {"shape":"ClientException"}, {"shape":"ServerException"} ], - "documentation":"

Submits an AWS Batch job from a job definition. Parameters specified during SubmitJob override parameters defined in the job definition.

" + "documentation":"

Submits an AWS Batch job from a job definition. Parameters specified during SubmitJob override parameters defined in the job definition.

Jobs run on Fargate resources don't run for more than 14 days. After 14 days, the Fargate resources might no longer be available and the job is terminated.

" }, "TagResource":{ "name":"TagResource", @@ -220,7 +220,7 @@ {"shape":"ClientException"}, {"shape":"ServerException"} ], - "documentation":"

Associates the specified tags to a resource with the specified resourceArn. If existing tags on a resource are not specified in the request parameters, they are not changed. When a resource is deleted, the tags associated with that resource are deleted as well. AWS Batch resources that support tags are compute environments, jobs, job definitions, and job queues. ARNs for child jobs of array and multi-node parallel (MNP) jobs are not supported.

" + "documentation":"

Associates the specified tags to a resource with the specified resourceArn. If existing tags on a resource aren't specified in the request parameters, they aren't changed. When a resource is deleted, the tags associated with that resource are deleted as well. AWS Batch resources that support tags are compute environments, jobs, job definitions, and job queues. ARNs for child jobs of array and multi-node parallel (MNP) jobs are not supported.

" }, "TerminateJob":{ "name":"TerminateJob", @@ -334,6 +334,13 @@ }, "documentation":"

An object representing the array properties of a job.

" }, + "AssignPublicIp":{ + "type":"string", + "enum":[ + "ENABLED", + "DISABLED" + ] + }, "AttemptContainerDetail":{ "type":"structure", "members":{ @@ -428,7 +435,9 @@ "type":"string", "enum":[ "EC2", - "SPOT" + "SPOT", + "FARGATE", + "FARGATE_SPOT" ] }, "CancelJobRequest":{ @@ -458,7 +467,7 @@ "members":{ "message":{"shape":"String"} }, - "documentation":"

These errors are usually caused by a client action, such as using an action or resource on behalf of a user that doesn't have permissions to use the action or resource, or specifying an identifier that is not valid.

", + "documentation":"

These errors are usually caused by a client action, such as using an action or resource on behalf of a user that doesn't have permissions to use the action or resource, or specifying an identifier that isn't valid.

", "error":{"httpStatusCode":400}, "exception":true }, @@ -488,11 +497,11 @@ }, "type":{ "shape":"CEType", - "documentation":"

The type of the compute environment.

" + "documentation":"

The type of compute environment: EC2, SPOT, FARGATE, or FARGATE_SPOT. For more information, see Compute Environments in the AWS Batch User Guide.

" }, "state":{ "shape":"CEState", - "documentation":"

The state of the compute environment. The valid values are ENABLED or DISABLED.

If the state is ENABLED, then the AWS Batch scheduler can attempt to place jobs from an associated job queue on the compute resources within the environment. If the compute environment is managed, then it can scale its instances out or in automatically, based on the job queue demand.

If the state is DISABLED, then the AWS Batch scheduler does not attempt to place jobs within the environment. Jobs in a STARTING or RUNNING state continue to progress normally. Managed compute environments in the DISABLED state do not scale out. However, they scale in to minvCpus value after instances become idle.

" + "documentation":"

The state of the compute environment. The valid values are ENABLED or DISABLED.

If the state is ENABLED, then the AWS Batch scheduler can attempt to place jobs from an associated job queue on the compute resources within the environment. If the compute environment is managed, then it can scale its instances out or in automatically, based on the job queue demand.

If the state is DISABLED, then the AWS Batch scheduler doesn't attempt to place jobs within the environment. Jobs in a STARTING or RUNNING state continue to progress normally. Managed compute environments in the DISABLED state do not scale out. However, they scale in to minvCpus value after instances become idle.

" }, "status":{ "shape":"CEStatus", @@ -526,7 +535,7 @@ "members":{ "order":{ "shape":"Integer", - "documentation":"

The order of the compute environment.

" + "documentation":"

The order of the compute environment. Compute environments are tried in ascending order. For example, if two compute environments are associated with a job queue, the compute environment with a lower order integer value is tried for job placement first.

" }, "computeEnvironment":{ "shape":"String", @@ -543,82 +552,79 @@ "type":"structure", "required":[ "type", - "minvCpus", "maxvCpus", - "instanceTypes", - "subnets", - "instanceRole" + "subnets" ], "members":{ "type":{ "shape":"CRType", - "documentation":"

The type of compute environment: EC2 or SPOT.

" + "documentation":"

The type of compute environment: EC2, SPOT, FARGATE, or FARGATE_SPOT. For more information, see Compute Environments in the AWS Batch User Guide.

" }, "allocationStrategy":{ "shape":"CRAllocationStrategy", - "documentation":"

The allocation strategy to use for the compute resource in case not enough instances of the best fitting instance type can be allocated. This could be due to availability of the instance type in the region or Amazon EC2 service limits. If this is not specified, the default is BEST_FIT, which will use only the best fitting instance type, waiting for additional capacity if it's not available. This allocation strategy keeps costs lower but can limit scaling. If you are using Spot Fleets with BEST_FIT then the Spot Fleet IAM Role must be specified. BEST_FIT_PROGRESSIVE will select additional instance types that are large enough to meet the requirements of the jobs in the queue, with a preference for instance types with a lower cost per vCPU. SPOT_CAPACITY_OPTIMIZED is only available for Spot Instance compute resources and will select additional instance types that are large enough to meet the requirements of the jobs in the queue, with a preference for instance types that are less likely to be interrupted. For more information, see Allocation Strategies in the AWS Batch User Guide.

" + "documentation":"

The allocation strategy to use for the compute resource if not enough instances of the best fitting instance type can be allocated. This might be because of availability of the instance type in the Region or Amazon EC2 service limits. For more information, see Allocation Strategies in the AWS Batch User Guide.

This parameter isn't applicable to jobs running on Fargate resources, and shouldn't be specified.

BEST_FIT (default)

AWS Batch selects an instance type that best fits the needs of the jobs with a preference for the lowest-cost instance type. If additional instances of the selected instance type aren't available, AWS Batch will wait for the additional instances to be available. If there are not enough instances available, or if the user is hitting Amazon EC2 service limits then additional jobs aren't run until currently running jobs have completed. This allocation strategy keeps costs lower but can limit scaling. If you are using Spot Fleets with BEST_FIT then the Spot Fleet IAM Role must be specified.

BEST_FIT_PROGRESSIVE

AWS Batch will select additional instance types that are large enough to meet the requirements of the jobs in the queue, with a preference for instance types with a lower cost per unit vCPU. If additional instances of the previously selected instance types aren't available, AWS Batch will select new instance types.

SPOT_CAPACITY_OPTIMIZED

AWS Batch will select one or more instance types that are large enough to meet the requirements of the jobs in the queue, with a preference for instance types that are less likely to be interrupted. This allocation strategy is only available for Spot Instance compute resources.

With both BEST_FIT_PROGRESSIVE and SPOT_CAPACITY_OPTIMIZED strategies, AWS Batch might need to go above maxvCpus to meet your capacity requirements. In this event, AWS Batch never exceeds maxvCpus by more than a single instance.

" }, "minvCpus":{ "shape":"Integer", - "documentation":"

The minimum number of Amazon EC2 vCPUs that an environment should maintain (even if the compute environment is DISABLED).

" + "documentation":"

The minimum number of Amazon EC2 vCPUs that an environment should maintain (even if the compute environment is DISABLED).

This parameter isn't applicable to jobs running on Fargate resources, and shouldn't be specified.

" }, "maxvCpus":{ "shape":"Integer", - "documentation":"

The maximum number of Amazon EC2 vCPUs that an environment can reach.

" + "documentation":"

The maximum number of Amazon EC2 vCPUs that an environment can reach.

With both BEST_FIT_PROGRESSIVE and SPOT_CAPACITY_OPTIMIZED allocation strategies, AWS Batch may need to go above maxvCpus to meet your capacity requirements. In this event, AWS Batch will never go above maxvCpus by more than a single instance (e.g., no more than a single instance from among those specified in your compute environment).

" }, "desiredvCpus":{ "shape":"Integer", - "documentation":"

The desired number of Amazon EC2 vCPUS in the compute environment.

" + "documentation":"

The desired number of Amazon EC2 vCPUS in the compute environment. AWS Batch modifies this value between the minimum and maximum values, based on job queue demand.

This parameter isn't applicable to jobs running on Fargate resources, and shouldn't be specified.

" }, "instanceTypes":{ "shape":"StringList", - "documentation":"

The instances types that may be launched. You can specify instance families to launch any instance type within those families (for example, c5 or p3), or you can specify specific sizes within a family (such as c5.8xlarge). You can also choose optimal to pick instance types (from the C, M, and R instance families) on the fly that match the demand of your job queues.

" + "documentation":"

The instances types that may be launched. You can specify instance families to launch any instance type within those families (for example, c5 or p3), or you can specify specific sizes within a family (such as c5.8xlarge). You can also choose optimal to select instance types (from the C, M, and R instance families) on the fly that match the demand of your job queues.

This parameter isn't applicable to jobs running on Fargate resources, and shouldn't be specified.

When you create a compute environment, the instance types that you select for the compute environment must share the same architecture. For example, you can't mix x86 and ARM instances in the same compute environment.

" }, "imageId":{ "shape":"String", - "documentation":"

The Amazon Machine Image (AMI) ID used for instances launched in the compute environment. This parameter is overridden by the imageIdOverride member of the Ec2Configuration structure.

", + "documentation":"

The Amazon Machine Image (AMI) ID used for instances launched in the compute environment. This parameter is overridden by the imageIdOverride member of the Ec2Configuration structure.

This parameter isn't applicable to jobs running on Fargate resources, and shouldn't be specified.

The AMI that you choose for a compute environment must match the architecture of the instance types that you intend to use for that compute environment. For example, if your compute environment uses A1 instance types, the compute resource AMI that you choose must support ARM instances. Amazon ECS vends both x86 and ARM versions of the Amazon ECS-optimized Amazon Linux 2 AMI. For more information, see Amazon ECS-optimized Amazon Linux 2 AMI in the Amazon Elastic Container Service Developer Guide.

", "deprecated":true, "deprecatedMessage":"This field is deprecated, use ec2Configuration[].imageIdOverride instead." }, "subnets":{ "shape":"StringList", - "documentation":"

The VPC subnets into which the compute resources are launched. For more information, see VPCs and Subnets in the Amazon VPC User Guide.

" + "documentation":"

The VPC subnets into which the compute resources are launched. These subnets must be within the same VPC. This parameter is required for jobs running on Fargate resources, where it can contain up to 16 subnets. For more information, see VPCs and Subnets in the Amazon VPC User Guide.

" }, "securityGroupIds":{ "shape":"StringList", - "documentation":"

The Amazon EC2 security groups associated with instances launched in the compute environment. One or more security groups must be specified, either in securityGroupIds or using a launch template referenced in launchTemplate. If security groups are specified using both securityGroupIds and launchTemplate, the values in securityGroupIds will be used.

" + "documentation":"

The Amazon EC2 security groups associated with instances launched in the compute environment. One or more security groups must be specified, either in securityGroupIds or using a launch template referenced in launchTemplate. This parameter is required for jobs running on Fargate resources and must contain at least one security group. (Fargate does not support launch templates.) If security groups are specified using both securityGroupIds and launchTemplate, the values in securityGroupIds will be used.

" }, "ec2KeyPair":{ "shape":"String", - "documentation":"

The Amazon EC2 key pair that is used for instances launched in the compute environment.

" + "documentation":"

The Amazon EC2 key pair that is used for instances launched in the compute environment. You can use this key pair to log in to your instances with SSH.

This parameter isn't applicable to jobs running on Fargate resources, and shouldn't be specified.

" }, "instanceRole":{ "shape":"String", - "documentation":"

The Amazon ECS instance profile applied to Amazon EC2 instances in a compute environment. You can specify the short name or full Amazon Resource Name (ARN) of an instance profile. For example, ecsInstanceRole or arn:aws:iam::<aws_account_id>:instance-profile/ecsInstanceRole . For more information, see Amazon ECS Instance Role in the AWS Batch User Guide.

" + "documentation":"

The Amazon ECS instance profile applied to Amazon EC2 instances in a compute environment. You can specify the short name or full Amazon Resource Name (ARN) of an instance profile. For example, ecsInstanceRole or arn:aws:iam::<aws_account_id>:instance-profile/ecsInstanceRole . For more information, see Amazon ECS Instance Role in the AWS Batch User Guide.

This parameter isn't applicable to jobs running on Fargate resources, and shouldn't be specified.

" }, "tags":{ "shape":"TagsMap", - "documentation":"

Key-value pair tags to be applied to resources that are launched in the compute environment. For AWS Batch, these take the form of \"String1\": \"String2\", where String1 is the tag key and String2 is the tag value—for example, { \"Name\": \"AWS Batch Instance - C4OnDemand\" }. These tags can not be updated or removed after the compute environment has been created; any changes require creating a new compute environment and removing the old compute environment. These tags are not seen when using the AWS Batch ListTagsForResource API operation.

" + "documentation":"

Key-value pair tags to be applied to EC2 resources that are launched in the compute environment. For AWS Batch, these take the form of \"String1\": \"String2\", where String1 is the tag key and String2 is the tag value—for example, { \"Name\": \"AWS Batch Instance - C4OnDemand\" }. This is helpful for recognizing your AWS Batch instances in the Amazon EC2 console. These tags can not be updated or removed after the compute environment has been created; any changes require creating a new compute environment and removing the old compute environment. These tags are not seen when using the AWS Batch ListTagsForResource API operation.

" }, "placementGroup":{ "shape":"String", - "documentation":"

The Amazon EC2 placement group to associate with your compute resources. If you intend to submit multi-node parallel jobs to your compute environment, you should consider creating a cluster placement group and associate it with your compute resources. This keeps your multi-node parallel job on a logical grouping of instances within a single Availability Zone with high network flow potential. For more information, see Placement Groups in the Amazon EC2 User Guide for Linux Instances.

" + "documentation":"

The Amazon EC2 placement group to associate with your compute resources. If you intend to submit multi-node parallel jobs to your compute environment, you should consider creating a cluster placement group and associate it with your compute resources. This keeps your multi-node parallel job on a logical grouping of instances within a single Availability Zone with high network flow potential. For more information, see Placement Groups in the Amazon EC2 User Guide for Linux Instances.

This parameter isn't applicable to jobs running on Fargate resources, and shouldn't be specified.

" }, "bidPercentage":{ "shape":"Integer", - "documentation":"

The maximum percentage that a Spot Instance price can be when compared with the On-Demand price for that instance type before instances are launched. For example, if your maximum percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that Amazon EC2 instance. You always pay the lowest (market) price and never more than your maximum percentage. If you leave this field empty, the default value is 100% of the On-Demand price.

" + "documentation":"

The maximum percentage that a Spot Instance price can be when compared with the On-Demand price for that instance type before instances are launched. For example, if your maximum percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that Amazon EC2 instance. You always pay the lowest (market) price and never more than your maximum percentage. If you leave this field empty, the default value is 100% of the On-Demand price.

This parameter isn't applicable to jobs running on Fargate resources, and shouldn't be specified.

" }, "spotIamFleetRole":{ "shape":"String", - "documentation":"

The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment. This role is required if the allocation strategy set to BEST_FIT or if the allocation strategy is not specified. For more information, see Amazon EC2 Spot Fleet Role in the AWS Batch User Guide.

" + "documentation":"

The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment. This role is required if the allocation strategy set to BEST_FIT or if the allocation strategy isn't specified. For more information, see Amazon EC2 Spot Fleet Role in the AWS Batch User Guide.

This parameter isn't applicable to jobs running on Fargate resources, and shouldn't be specified.

To tag your Spot Instances on creation, the Spot Fleet IAM role specified here must use the newer AmazonEC2SpotFleetTaggingRole managed policy. The previously recommended AmazonEC2SpotFleetRole managed policy doesn't have the required permissions to tag Spot Instances. For more information, see Spot Instances not tagged on creation in the AWS Batch User Guide.

" }, "launchTemplate":{ "shape":"LaunchTemplateSpecification", - "documentation":"

The launch template to use for your compute resources. Any other compute resource parameters that you specify in a CreateComputeEnvironment API operation override the same parameters in the launch template. You must specify either the launch template ID or launch template name in the request, but not both. For more information, see Launch Template Support in the AWS Batch User Guide.

" + "documentation":"

The launch template to use for your compute resources. Any other compute resource parameters that you specify in a CreateComputeEnvironment API operation override the same parameters in the launch template. You must specify either the launch template ID or launch template name in the request, but not both. For more information, see Launch Template Support in the AWS Batch User Guide.

This parameter isn't applicable to jobs running on Fargate resources, and shouldn't be specified.

" }, "ec2Configuration":{ "shape":"Ec2ConfigurationList", - "documentation":"

Provides additional details used to selecting the AMI to use for instances in a compute environment.

" + "documentation":"

Provides information used to select Amazon Machine Images (AMIs) for instances in the compute environment. If Ec2Configuration isn't specified, the default is ECS_AL1.

This parameter isn't applicable to jobs running on Fargate resources, and shouldn't be specified.

" } }, "documentation":"

An object representing an AWS Batch compute resource.

" @@ -628,7 +634,7 @@ "members":{ "minvCpus":{ "shape":"Integer", - "documentation":"

The minimum number of Amazon EC2 vCPUs that an environment should maintain.

" + "documentation":"

The minimum number of Amazon EC2 vCPUs that an environment should maintain.

This parameter isnt applicable to jobs running on Fargate resources, and shouldn't be specified.

" }, "maxvCpus":{ "shape":"Integer", @@ -636,7 +642,15 @@ }, "desiredvCpus":{ "shape":"Integer", - "documentation":"

The desired number of Amazon EC2 vCPUS in the compute environment.

" + "documentation":"

The desired number of Amazon EC2 vCPUS in the compute environment.

This parameter isn't applicable to jobs running on Fargate resources, and shouldn't be specified.

" + }, + "subnets":{ + "shape":"StringList", + "documentation":"

The VPC subnets that the compute resources are launched into. This parameter is required for jobs running on Fargate compute resources, where it can contain up to 16 subnets. For more information, see VPCs and Subnets in the Amazon VPC User Guide. This can't be specified for EC2 compute resources. Providing an empty list will be handled as if this parameter wasn't specified and no change is made.

" + }, + "securityGroupIds":{ + "shape":"StringList", + "documentation":"

The Amazon EC2 security groups associated with instances launched in the compute environment. This parameter is required for Fargate compute resources, where it can contain up to 5 security groups. This can't be specified for EC2 compute resources. Providing an empty list is handled as if this parameter wasn't specified and no changeis made.

" } }, "documentation":"

An object representing the attributes of a compute environment that can be updated.

" @@ -650,11 +664,11 @@ }, "vcpus":{ "shape":"Integer", - "documentation":"

The number of VCPUs allocated for the job. This is a required parameter.

" + "documentation":"

The number of vCPUs reserved for the container. Jobs running on EC2 resources can specify the vCPU requirement for the job using resourceRequirements but the vCPU requirements can't be specified both here and in the resourceRequirement object. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares. You must specify at least one vCPU. This is required but can be specified in several places. It must be specified for each node at least once.

This parameter isn't applicable to jobs running on Fargate resources. Jobs running on Fargate resources must specify the vCPU requirement for the job using resourceRequirements.

" }, "memory":{ "shape":"Integer", - "documentation":"

The number of MiB of memory reserved for the job. This is a required parameter.

" + "documentation":"

For jobs run on EC2 resources that didn't specify memory requirements using ResourceRequirement, the number of MiB of memory reserved for the job. For other jobs, including all run on Fargate resources, see resourceRequirements.

" }, "command":{ "shape":"StringList", @@ -666,7 +680,7 @@ }, "executionRoleArn":{ "shape":"String", - "documentation":"

The Amazon Resource Name (ARN) of the execution role that AWS Batch can assume. For more information, see AWS Batch execution IAM role.

" + "documentation":"

The Amazon Resource Name (ARN) of the execution role that AWS Batch can assume. For more information, see AWS Batch execution IAM role in the AWS Batch User Guide.

" }, "volumes":{ "shape":"Volumes", @@ -682,19 +696,19 @@ }, "readonlyRootFilesystem":{ "shape":"Boolean", - "documentation":"

When this parameter is true, the container is given read-only access to its root file system.

" + "documentation":"

When this parameter is true, the container is given read-only access to its root file system. This parameter maps to ReadonlyRootfs in the Create a container section of the Docker Remote API and the --read-only option to docker run .

" }, "ulimits":{ "shape":"Ulimits", - "documentation":"

A list of ulimit values to set in the container.

" + "documentation":"

A list of ulimit values to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

This parameter isn't applicable to jobs running on Fargate resources.

" }, "privileged":{ "shape":"Boolean", - "documentation":"

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user).

" + "documentation":"

When this parameter is true, the container is given elevated permissions on the host container instance (similar to the root user). The default value is false.

This parameter isn't applicable to jobs running on Fargate resources and shouldn't be provided, or specified as false.

" }, "user":{ "shape":"String", - "documentation":"

The user name to use inside the container.

" + "documentation":"

The user name to use inside the container. This parameter maps to User in the Create a container section of the Docker Remote API and the --user option to docker run.

" }, "exitCode":{ "shape":"Integer", @@ -706,7 +720,7 @@ }, "containerInstanceArn":{ "shape":"String", - "documentation":"

The Amazon Resource Name (ARN) of the container instance on which the container is running.

" + "documentation":"

The Amazon Resource Name (ARN) of the container instance that the container is running on.

" }, "taskArn":{ "shape":"String", @@ -718,7 +732,7 @@ }, "instanceType":{ "shape":"String", - "documentation":"

The instance type of the underlying host infrastructure of a multi-node parallel job.

" + "documentation":"

The instance type of the underlying host infrastructure of a multi-node parallel job.

This parameter isn't applicable to jobs running on Fargate resources.

" }, "networkInterfaces":{ "shape":"NetworkInterfaceList", @@ -726,7 +740,7 @@ }, "resourceRequirements":{ "shape":"ResourceRequirements", - "documentation":"

The type and amount of a resource to assign to a container. Currently, the only supported resource is GPU.

" + "documentation":"

The type and amount of resources to assign to a container. The supported resources include GPU, MEMORY, and VCPU.

" }, "linuxParameters":{ "shape":"LinuxParameters", @@ -734,11 +748,19 @@ }, "logConfiguration":{ "shape":"LogConfiguration", - "documentation":"

The log configuration specification for the container.

This parameter maps to LogConfig in the Create a container section of the Docker Remote API and the --log-driver option to docker run. By default, containers use the same logging driver that the Docker daemon uses. However the container may use a different logging driver than the Docker daemon by specifying a log driver with this parameter in the container definition. To use a different logging driver for a container, the log system must be configured properly on the container instance (or on a different log server for remote logging options). For more information on the options for different supported log drivers, see Configure logging drivers in the Docker documentation.

AWS Batch currently supports a subset of the logging drivers available to the Docker daemon (shown in the LogConfiguration data type). Additional log drivers may be available in future releases of the Amazon ECS container agent.

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log into your container instance and run the following command: sudo docker version | grep \"Server API version\"

The Amazon ECS container agent running on a container instance must register the logging drivers available on that instance with the ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on that instance can use these log configuration options. For more information, see Amazon ECS Container Agent Configuration in the Amazon Elastic Container Service Developer Guide.

" + "documentation":"

The log configuration specification for the container.

This parameter maps to LogConfig in the Create a container section of the Docker Remote API and the --log-driver option to docker run. By default, containers use the same logging driver that the Docker daemon uses. However the container might use a different logging driver than the Docker daemon by specifying a log driver with this parameter in the container definition. To use a different logging driver for a container, the log system must be configured properly on the container instance. Or, alternatively, it must be configured on a different log server for remote logging options. For more information on the options for different supported log drivers, see Configure logging drivers in the Docker documentation.

AWS Batch currently supports a subset of the logging drivers available to the Docker daemon (shown in the LogConfiguration data type). Additional log drivers may be available in future releases of the Amazon ECS container agent.

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log into your container instance and run the following command: sudo docker version | grep \"Server API version\"

The Amazon ECS container agent running on a container instance must register the logging drivers available on that instance with the ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on that instance can use these log configuration options. For more information, see Amazon ECS Container Agent Configuration in the Amazon Elastic Container Service Developer Guide.

" }, "secrets":{ "shape":"SecretList", - "documentation":"

The secrets to pass to the container. For more information, see Specifying Sensitive Data in the Amazon Elastic Container Service Developer Guide.

" + "documentation":"

The secrets to pass to the container. For more information, see Specifying sensitive data in the AWS Batch User Guide.

" + }, + "networkConfiguration":{ + "shape":"NetworkConfiguration", + "documentation":"

The network configuration for jobs running on Fargate resources. Jobs running on EC2 resources must not specify this parameter.

" + }, + "fargatePlatformConfiguration":{ + "shape":"FargatePlatformConfiguration", + "documentation":"

The platform configuration for jobs running on Fargate resources. Jobs running on EC2 resources must not specify this parameter.

" } }, "documentation":"

An object representing the details of a container that is part of a job.

" @@ -748,11 +770,15 @@ "members":{ "vcpus":{ "shape":"Integer", - "documentation":"

The number of vCPUs to reserve for the container. This value overrides the value set in the job definition.

" + "documentation":"

This parameter is deprecated and not supported for jobs run on Fargate resources, see resourceRequirement. For jobs run on EC2 resources, the number of vCPUs to reserve for the container. This value overrides the value set in the job definition. Jobs run on EC2 resources can specify the vCPU requirement using resourceRequirement but the vCPU requirements can't be specified both here and in resourceRequirement. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares. You must specify at least one vCPU.

This parameter isn't applicable to jobs running on Fargate resources and shouldn't be provided. Jobs running on Fargate resources must specify the vCPU requirement for the job using resourceRequirements.

", + "deprecated":true, + "deprecatedMessage":"This field is deprecated, use resourceRequirements instead." }, "memory":{ "shape":"Integer", - "documentation":"

The number of MiB of memory reserved for the job. This value overrides the value set in the job definition.

" + "documentation":"

This parameter is deprecated and not supported for jobs run on Fargate resources, use ResourceRequirement. For jobs run on EC2 resource, the number of MiB of memory reserved for the job. This value overrides the value set in the job definition.

", + "deprecated":true, + "deprecatedMessage":"This field is deprecated, use resourceRequirements instead." }, "command":{ "shape":"StringList", @@ -760,7 +786,7 @@ }, "instanceType":{ "shape":"String", - "documentation":"

The instance type to use for a multi-node parallel job. This parameter is not valid for single-node container jobs.

" + "documentation":"

The instance type to use for a multi-node parallel job.

This parameter isn't applicable to single-node container jobs or for jobs running on Fargate resources and shouldn't be provided.

" }, "environment":{ "shape":"EnvironmentVariables", @@ -768,7 +794,7 @@ }, "resourceRequirements":{ "shape":"ResourceRequirements", - "documentation":"

The type and amount of a resource to assign to a container. This value overrides the value set in the job definition. Currently, the only supported resource is GPU.

" + "documentation":"

The type and amount of resources to assign to a container. This overrides the settings in the job definition. The supported resources include GPU, MEMORY, and VCPU.

" } }, "documentation":"

The overrides that should be sent to a container.

" @@ -778,15 +804,19 @@ "members":{ "image":{ "shape":"String", - "documentation":"

The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

  • Images in Amazon ECR repositories use the full registry and repository URI (for example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>).

  • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

  • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

  • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

" + "documentation":"

The image used to start a container. This string is passed directly to the Docker daemon. Images in the Docker Hub registry are available by default. Other repositories are specified with repository-url/image:tag . Up to 255 letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs are allowed. This parameter maps to Image in the Create a container section of the Docker Remote API and the IMAGE parameter of docker run.

Docker image architecture must match the processor architecture of the compute resources that they're scheduled on. For example, ARM-based Docker images can only run on ARM-based compute resources.

  • Images in Amazon ECR repositories use the full registry and repository URI (for example, 012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>).

  • Images in official repositories on Docker Hub use a single name (for example, ubuntu or mongo).

  • Images in other repositories on Docker Hub are qualified with an organization name (for example, amazon/amazon-ecs-agent).

  • Images in other online repositories are qualified further by a domain name (for example, quay.io/assemblyline/ubuntu).

" }, "vcpus":{ "shape":"Integer", - "documentation":"

The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares. You must specify at least one vCPU. This is required but can be specified in several places for multi-node parallel (MNP) jobs; it must be specified for each node at least once.

" + "documentation":"

This parameter is deprecated and not supported for jobs run on Fargate resources, see resourceRequirement. The number of vCPUs reserved for the container. Jobs running on EC2 resources can specify the vCPU requirement for the job using resourceRequirements but the vCPU requirements can't be specified both here and in the resourceRequirement structure. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares. You must specify at least one vCPU. This is required but can be specified in several places. It must be specified for each node at least once.

This parameter isn't applicable to jobs running on Fargate resources and shouldn't be provided. Jobs running on Fargate resources must specify the vCPU requirement for the job using resourceRequirements.

", + "deprecated":true, + "deprecatedMessage":"This field is deprecated, use resourceRequirements instead." }, "memory":{ "shape":"Integer", - "documentation":"

The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run. You must specify at least 4 MiB of memory for a job. This is required but can be specified in several places for multi-node parallel (MNP) jobs; it must be specified for each node at least once.

If you are trying to maximize your resource utilization by providing your jobs as much memory as possible for a particular instance type, see Memory Management in the AWS Batch User Guide.

" + "documentation":"

This parameter is deprecated and not supported for jobs run on Fargate resources, use ResourceRequirement. For jobs run on EC2 resources can specify the memory requirement using the ResourceRequirement structure. The hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run. You must specify at least 4 MiB of memory for a job. This is required but can be specified in several places; it must be specified for each node at least once.

If you're trying to maximize your resource utilization by providing your jobs as much memory as possible for a particular instance type, see Memory Management in the AWS Batch User Guide.

", + "deprecated":true, + "deprecatedMessage":"This field is deprecated, use resourceRequirements instead." }, "command":{ "shape":"StringList", @@ -794,11 +824,11 @@ }, "jobRoleArn":{ "shape":"String", - "documentation":"

The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions.

" + "documentation":"

The Amazon Resource Name (ARN) of the IAM role that the container can assume for AWS permissions. For more information, see IAM Roles for Tasks in the Amazon Elastic Container Service Developer Guide.

" }, "executionRoleArn":{ "shape":"String", - "documentation":"

The Amazon Resource Name (ARN) of the execution role that AWS Batch can assume. For more information, see AWS Batch execution IAM role.

" + "documentation":"

The Amazon Resource Name (ARN) of the execution role that AWS Batch can assume. Jobs running on Fargate resources must provide an execution role. For more information, see AWS Batch execution IAM role in the AWS Batch User Guide.

" }, "volumes":{ "shape":"Volumes", @@ -806,7 +836,7 @@ }, "environment":{ "shape":"EnvironmentVariables", - "documentation":"

The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

We do not recommend using plaintext environment variables for sensitive information, such as credential data.

Environment variables must not start with AWS_BATCH; this naming convention is reserved for variables that are set by the AWS Batch service.

" + "documentation":"

The environment variables to pass to a container. This parameter maps to Env in the Create a container section of the Docker Remote API and the --env option to docker run.

We don't recommend using plaintext environment variables for sensitive information, such as credential data.

Environment variables must not start with AWS_BATCH; this naming convention is reserved for variables that are set by the AWS Batch service.

" }, "mountPoints":{ "shape":"MountPoints", @@ -818,11 +848,11 @@ }, "privileged":{ "shape":"Boolean", - "documentation":"

When this parameter is true, the container is given elevated privileges on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run.

" + "documentation":"

When this parameter is true, the container is given elevated permissions on the host container instance (similar to the root user). This parameter maps to Privileged in the Create a container section of the Docker Remote API and the --privileged option to docker run. The default value is false.

This parameter isn't applicable to jobs running on Fargate resources and shouldn't be provided, or specified as false.

" }, "ulimits":{ "shape":"Ulimits", - "documentation":"

A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

" + "documentation":"

A list of ulimits to set in the container. This parameter maps to Ulimits in the Create a container section of the Docker Remote API and the --ulimit option to docker run.

This parameter isn't applicable to jobs running on Fargate resources and shouldn't be provided.

" }, "user":{ "shape":"String", @@ -830,11 +860,11 @@ }, "instanceType":{ "shape":"String", - "documentation":"

The instance type to use for a multi-node parallel job. Currently all node groups in a multi-node parallel job must use the same instance type. This parameter is not valid for single-node container jobs.

" + "documentation":"

The instance type to use for a multi-node parallel job. All node groups in a multi-node parallel job must use the same instance type.

This parameter isn't applicable to single-node container jobs or for jobs running on Fargate resources and shouldn't be provided.

" }, "resourceRequirements":{ "shape":"ResourceRequirements", - "documentation":"

The type and amount of a resource to assign to a container. Currently, the only supported resource is GPU.

" + "documentation":"

The type and amount of resources to assign to a container. The supported resources include GPU, MEMORY, and VCPU.

" }, "linuxParameters":{ "shape":"LinuxParameters", @@ -842,11 +872,19 @@ }, "logConfiguration":{ "shape":"LogConfiguration", - "documentation":"

The log configuration specification for the container.

This parameter maps to LogConfig in the Create a container section of the Docker Remote API and the --log-driver option to docker run. By default, containers use the same logging driver that the Docker daemon uses. However the container may use a different logging driver than the Docker daemon by specifying a log driver with this parameter in the container definition. To use a different logging driver for a container, the log system must be configured properly on the container instance (or on a different log server for remote logging options). For more information on the options for different supported log drivers, see Configure logging drivers in the Docker documentation.

AWS Batch currently supports a subset of the logging drivers available to the Docker daemon (shown in the LogConfiguration data type).

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log into your container instance and run the following command: sudo docker version | grep \"Server API version\"

The Amazon ECS container agent running on a container instance must register the logging drivers available on that instance with the ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on that instance can use these log configuration options. For more information, see Amazon ECS Container Agent Configuration in the Amazon Elastic Container Service Developer Guide.

" + "documentation":"

The log configuration specification for the container.

This parameter maps to LogConfig in the Create a container section of the Docker Remote API and the --log-driver option to docker run. By default, containers use the same logging driver that the Docker daemon uses. However the container might use a different logging driver than the Docker daemon by specifying a log driver with this parameter in the container definition. To use a different logging driver for a container, the log system must be configured properly on the container instance (or on a different log server for remote logging options). For more information on the options for different supported log drivers, see Configure logging drivers in the Docker documentation.

AWS Batch currently supports a subset of the logging drivers available to the Docker daemon (shown in the LogConfiguration data type).

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log into your container instance and run the following command: sudo docker version | grep \"Server API version\"

The Amazon ECS container agent running on a container instance must register the logging drivers available on that instance with the ECS_AVAILABLE_LOGGING_DRIVERS environment variable before containers placed on that instance can use these log configuration options. For more information, see Amazon ECS Container Agent Configuration in the Amazon Elastic Container Service Developer Guide.

" }, "secrets":{ "shape":"SecretList", - "documentation":"

The secrets for the container. For more information, see Specifying Sensitive Data in the Amazon Elastic Container Service Developer Guide.

" + "documentation":"

The secrets for the container. For more information, see Specifying sensitive data in the AWS Batch User Guide.

" + }, + "networkConfiguration":{ + "shape":"NetworkConfiguration", + "documentation":"

The network configuration for jobs running on Fargate resources. Jobs running on EC2 resources must not specify this parameter.

" + }, + "fargatePlatformConfiguration":{ + "shape":"FargatePlatformConfiguration", + "documentation":"

The platform configuration for jobs running on Fargate resources. Jobs running on EC2 resources must not specify this parameter.

" } }, "documentation":"

Container properties are used in job definitions to describe the container that is launched as part of a job.

" @@ -879,7 +917,7 @@ }, "type":{ "shape":"CEType", - "documentation":"

The type of the compute environment. For more information, see Compute Environments in the AWS Batch User Guide.

" + "documentation":"

The type of the compute environment: MANAGED or UNMANAGED. For more information, see Compute Environments in the AWS Batch User Guide.

" }, "state":{ "shape":"CEState", @@ -887,15 +925,15 @@ }, "computeResources":{ "shape":"ComputeResource", - "documentation":"

Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments. For more information, see Compute Environments in the AWS Batch User Guide.

" + "documentation":"

Details about the compute resources managed by the compute environment. This parameter is required for managed compute environments. For more information, see Compute Environments in the AWS Batch User Guide.

" }, "serviceRole":{ "shape":"String", - "documentation":"

The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.

If your specified role has a path other than /, then you must either specify the full role ARN (this is recommended) or prefix the role name with the path.

Depending on how you created your AWS Batch service role, its ARN may contain the service-role path prefix. When you only specify the name of the service role, AWS Batch assumes that your ARN does not use the service-role path prefix. Because of this, we recommend that you specify the full ARN of your service role when you create compute environments.

" + "documentation":"

The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.

If your specified role has a path other than /, then you must either specify the full role ARN (this is recommended) or prefix the role name with the path.

Depending on how you created your AWS Batch service role, its ARN may contain the service-role path prefix. When you only specify the name of the service role, AWS Batch assumes that your ARN doesn't use the service-role path prefix. Because of this, we recommend that you specify the full ARN of your service role when you create compute environments.

" }, "tags":{ "shape":"TagrisTagsMap", - "documentation":"

The tags that you apply to the compute environment to help you categorize and organize your resources. Each tag consists of a key and an optional value. For more information, see Tagging AWS Resources in AWS General Reference.

These tags can be updated or removed using the TagResource and UntagResource API operations. These tags do not propagate to the underlying compute resources.

" + "documentation":"

The tags that you apply to the compute environment to help you categorize and organize your resources. Each tag consists of a key and an optional value. For more information, see Tagging AWS Resources in AWS General Reference.

These tags can be updated or removed using the TagResource and UntagResource API operations. These tags don't propagate to the underlying compute resources.

" } } }, @@ -926,15 +964,15 @@ }, "state":{ "shape":"JQState", - "documentation":"

The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs. If the job queue state is DISABLED, new jobs cannot be added to the queue, but jobs already in the queue can finish.

" + "documentation":"

The state of the job queue. If the job queue state is ENABLED, it is able to accept jobs. If the job queue state is DISABLED, new jobs can't be added to the queue, but jobs already in the queue can finish.

" }, "priority":{ "shape":"Integer", - "documentation":"

The priority of the job queue. Job queues with a higher priority (or a higher integer value for the priority parameter) are evaluated first when associated with the same compute environment. Priority is determined in descending order, for example, a job queue with a priority value of 10 is given scheduling preference over a job queue with a priority value of 1.

" + "documentation":"

The priority of the job queue. Job queues with a higher priority (or a higher integer value for the priority parameter) are evaluated first when associated with the same compute environment. Priority is determined in descending order. For example, a job queue with a priority value of 10 is given scheduling preference over a job queue with a priority value of 1.

" }, "computeEnvironmentOrder":{ "shape":"ComputeEnvironmentOrders", - "documentation":"

The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should execute a given job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to three compute environments with a job queue.

" + "documentation":"

The set of compute environments mapped to a job queue and their order relative to each other. The job scheduler uses this parameter to determine which compute environment should run a specific job. Compute environments must be in the VALID state before you can associate them with a job queue. You can associate up to three compute environments with a job queue. All of the compute environments must be either EC2 (EC2 or SPOT) or Fargate (FARGATE or FARGATE_SPOT); EC2 and Fargate compute environments can't be mixed.

" }, "tags":{ "shape":"TagrisTagsMap", @@ -1013,7 +1051,7 @@ }, "maxResults":{ "shape":"Integer", - "documentation":"

The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.

" + "documentation":"

The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter isn't used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.

" }, "nextToken":{ "shape":"String", @@ -1043,7 +1081,7 @@ }, "maxResults":{ "shape":"Integer", - "documentation":"

The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.

" + "documentation":"

The maximum number of results returned by DescribeJobDefinitions in paginated output. When this parameter is used, DescribeJobDefinitions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobDefinitions request with the returned nextToken value. This value can be between 1 and 100. If this parameter isn't used, then DescribeJobDefinitions returns up to 100 results and a nextToken value if applicable.

" }, "jobDefinitionName":{ "shape":"String", @@ -1051,7 +1089,7 @@ }, "status":{ "shape":"String", - "documentation":"

The status with which to filter job definitions.

" + "documentation":"

The status used to filter job definitions.

" }, "nextToken":{ "shape":"String", @@ -1081,7 +1119,7 @@ }, "maxResults":{ "shape":"Integer", - "documentation":"

The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.

" + "documentation":"

The maximum number of results returned by DescribeJobQueues in paginated output. When this parameter is used, DescribeJobQueues only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeJobQueues request with the returned nextToken value. This value can be between 1 and 100. If this parameter isn't used, then DescribeJobQueues returns up to 100 results and a nextToken value if applicable.

" }, "nextToken":{ "shape":"String", @@ -1131,14 +1169,14 @@ }, "containerPath":{ "shape":"String", - "documentation":"

The path inside the container at which to expose the host device. By default the hostPath value is used.

" + "documentation":"

The path inside the container used to expose the host device. By default the hostPath value is used.

" }, "permissions":{ "shape":"DeviceCgroupPermissions", "documentation":"

The explicit permissions to provide to the container for the device. By default, the container has permissions for read, write, and mknod for the device.

" } }, - "documentation":"

An object representing a container instance host device.

" + "documentation":"

An object representing a container instance host device.

This object isn't applicable to jobs running on Fargate resources and shouldn't be provided.

" }, "DeviceCgroupPermission":{ "type":"string", @@ -1162,14 +1200,14 @@ "members":{ "imageType":{ "shape":"ImageType", - "documentation":"

The image type to match with the instance type to pick an AMI. If the imageIdOverride parameter is not specified, then a recent Amazon ECS-optimized AMI will be used.

ECS_AL2

Amazon Linux 2− Default for all AWS Graviton-based instance families (for example, C6g, M6g, R6g, and T4g) and can be used for all non-GPU instance types.

ECS_AL2_NVIDIA

Amazon Linux 2 (GPU)−Default for all GPU instance families (for example P4 and G4) and can be used for all non-AWS Graviton-based instance types.

ECS_AL1

Amazon Linux−Default for all non-GPU, non-AWS-Graviton instance families. Amazon Linux is reaching the end-of-life of standard support. For more information, see Amazon Linux AMI.

" + "documentation":"

The image type to match with the instance type to select an AMI. If the imageIdOverride parameter isn't specified, then a recent Amazon ECS-optimized AMI is used.

ECS_AL2

Amazon Linux 2− Default for all AWS Graviton-based instance families (for example, C6g, M6g, R6g, and T4g) and can be used for all non-GPU instance types.

ECS_AL2_NVIDIA

Amazon Linux 2 (GPU)−Default for all GPU instance families (for example P4 and G4) and can be used for all non-AWS Graviton-based instance types.

ECS_AL1

Amazon Linux−Default for all non-GPU, non-AWS-Graviton instance families. Amazon Linux is reaching the end-of-life of standard support. For more information, see Amazon Linux AMI.

" }, "imageIdOverride":{ "shape":"ImageIdOverride", "documentation":"

The AMI ID used for instances launched in the compute environment that match the image type. This setting overrides the imageId set in the computeResource object.

" } }, - "documentation":"

Provides information used to select Amazon Machine Images (AMIs) for instances in the compute environment. If the Ec2Configuration is not specified, the default is ECS_AL1.

" + "documentation":"

Provides information used to select Amazon Machine Images (AMIs) for instances in the compute environment. If the Ec2Configuration isn't specified, the default is ECS_AL1.

This object isn't applicable to jobs running on Fargate resources.

" }, "Ec2ConfigurationList":{ "type":"list", @@ -1185,11 +1223,11 @@ "members":{ "onStatusReason":{ "shape":"String", - "documentation":"

Contains a glob pattern to match against the StatusReason returned for a job. The patten can be up to 512 characters long, can contain letters, numbers, periods (.), colons (:), and whitespace (spaces, tabs). and can optionally end with an asterisk (*) so that only the start of the string needs to be an exact match.

" + "documentation":"

Contains a glob pattern to match against the StatusReason returned for a job. The patten can be up to 512 characters long, can contain letters, numbers, periods (.), colons (:), and white space (spaces, tabs). and can optionally end with an asterisk (*) so that only the start of the string needs to be an exact match.

" }, "onReason":{ "shape":"String", - "documentation":"

Contains a glob pattern to match against the Reason returned for a job. The patten can be up to 512 characters long, can contain letters, numbers, periods (.), colons (:), and whitespace (spaces, tabs), and can optionally end with an asterisk (*) so that only the start of the string needs to be an exact match.

" + "documentation":"

Contains a glob pattern to match against the Reason returned for a job. The patten can be up to 512 characters long, can contain letters, numbers, periods (.), colons (:), and white space (spaces, tabs), and can optionally end with an asterisk (*) so that only the start of the string needs to be an exact match.

" }, "onExitCode":{ "shape":"String", @@ -1197,7 +1235,7 @@ }, "action":{ "shape":"RetryAction", - "documentation":"

Specifies the action to take if all of the specified conditions (onStatusReason, onReason, and onExitCode) are met.

" + "documentation":"

Specifies the action to take if all of the specified conditions (onStatusReason, onReason, and onExitCode) are met. The values are not case sensitive.

" } }, "documentation":"

Specifies a set of conditions to be met, and an action to take (RETRY or EXIT) if all conditions are met.

" @@ -1206,15 +1244,25 @@ "type":"list", "member":{"shape":"EvaluateOnExit"} }, + "FargatePlatformConfiguration":{ + "type":"structure", + "members":{ + "platformVersion":{ + "shape":"String", + "documentation":"

The AWS Fargate platform version on which the jobs are running. A platform version is specified only for jobs running on Fargate resources. If one isn't specified, the LATEST platform version is used by default. This will use a recent, approved version of the AWS Fargate platform for compute resources. For more information, see AWS Fargate platform versions in the Amazon Elastic Container Service Developer Guide.

" + } + }, + "documentation":"

The platform configuration for jobs running on Fargate resources. Jobs running on EC2 resources must not specify this parameter.

" + }, "Host":{ "type":"structure", "members":{ "sourcePath":{ "shape":"String", - "documentation":"

The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If this parameter contains a file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the source path location does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.

" + "documentation":"

The path on the host container instance that is presented to the container. If this parameter is empty, then the Docker daemon has assigned a host path for you. If this parameter contains a file location, then the data volume persists at the specified location on the host container instance until you delete it manually. If the source path location does not exist on the host container instance, the Docker daemon creates it. If the location does exist, the contents of the source path folder are exported.

This parameter isn't applicable to jobs running on Fargate resources and shouldn't be provided.

" } }, - "documentation":"

Determine whether your data volume persists on the host container instance and where it is stored. If this parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.

" + "documentation":"

Determine whether your data volume persists on the host container instance and where it is stored. If this parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data isn't guaranteed to persist after the containers associated with it stop running.

" }, "ImageIdOverride":{ "type":"string", @@ -1272,7 +1320,7 @@ }, "type":{ "shape":"String", - "documentation":"

The type of job definition.

" + "documentation":"

The type of job definition. If the job is run on Fargate resources, then multinode isn't supported. For more information about multi-node parallel jobs, see Creating a multi-node parallel job definition in the AWS Batch User Guide.

" }, "parameters":{ "shape":"ParametersMap", @@ -1288,15 +1336,23 @@ }, "timeout":{ "shape":"JobTimeout", - "documentation":"

The timeout configuration for jobs that are submitted with this job definition. You can specify a timeout duration after which AWS Batch terminates your jobs if they have not finished.

" + "documentation":"

The timeout configuration for jobs that are submitted with this job definition. You can specify a timeout duration after which AWS Batch terminates your jobs if they haven't finished.

" }, "nodeProperties":{ "shape":"NodeProperties", - "documentation":"

An object with various properties specific to multi-node parallel jobs.

" + "documentation":"

An object with various properties specific to multi-node parallel jobs.

If the job runs on Fargate resources, then you must not specify nodeProperties; use containerProperties instead.

" }, "tags":{ "shape":"TagrisTagsMap", "documentation":"

The tags applied to the job definition.

" + }, + "propagateTags":{ + "shape":"Boolean", + "documentation":"

Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no value is specified, the tags aren't propagated. Tags can only be propagated to the tasks during task creation. For tags with the same name, job tags are given priority over job definitions tags. If the total number of combined tags from the job and job definition is over 50, the job is moved to the FAILED state.

" + }, + "platformCapabilities":{ + "shape":"PlatformCapabilityList", + "documentation":"

The platform capabilities required by the job definition. If no value is specified, it defaults to EC2. Jobs run on Fargate resources specify FARGATE.

" } }, "documentation":"

An object representing an AWS Batch job definition.

" @@ -1355,7 +1411,7 @@ }, "jobQueue":{ "shape":"String", - "documentation":"

The Amazon Resource Name (ARN) of the job queue with which the job is associated.

" + "documentation":"

The Amazon Resource Name (ARN) of the job queue that the job is associated with.

" }, "status":{ "shape":"JobStatus", @@ -1379,7 +1435,7 @@ }, "startedAt":{ "shape":"Long", - "documentation":"

The Unix timestamp (in milliseconds) for when the job was started (when the job transitioned from the STARTING state to the RUNNING state). This parameter is not provided for child jobs of array jobs or multi-node parallel jobs.

" + "documentation":"

The Unix timestamp (in milliseconds) for when the job was started (when the job transitioned from the STARTING state to the RUNNING state). This parameter isn't provided for child jobs of array jobs or multi-node parallel jobs.

" }, "stoppedAt":{ "shape":"Long", @@ -1387,7 +1443,7 @@ }, "dependsOn":{ "shape":"JobDependencyList", - "documentation":"

A list of job IDs on which this job depends.

" + "documentation":"

A list of job IDs that this job depends on.

" }, "jobDefinition":{ "shape":"String", @@ -1399,7 +1455,7 @@ }, "container":{ "shape":"ContainerDetail", - "documentation":"

An object representing the details of the container that is associated with the job.

" + "documentation":"

An object representing the details of the container that's associated with the job.

" }, "nodeDetails":{ "shape":"NodeDetails", @@ -1407,7 +1463,7 @@ }, "nodeProperties":{ "shape":"NodeProperties", - "documentation":"

An object representing the node properties of a multi-node parallel job.

" + "documentation":"

An object representing the node properties of a multi-node parallel job.

This isn't applicable to jobs running on Fargate resources.

" }, "arrayProperties":{ "shape":"ArrayPropertiesDetail", @@ -1420,6 +1476,14 @@ "tags":{ "shape":"TagrisTagsMap", "documentation":"

The tags applied to the job.

" + }, + "propagateTags":{ + "shape":"Boolean", + "documentation":"

Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no value is specified, the tags are not propagated. Tags can only be propagated to the tasks during task creation. For tags with the same name, job tags are given priority over job definitions tags. If the total number of combined tags from the job and job definition is over 50, the job is moved to the FAILED state.

" + }, + "platformCapabilities":{ + "shape":"PlatformCapabilityList", + "documentation":"

The platform capabilities required by the job definition. If no value is specified, it defaults to EC2. Jobs run on Fargate resources specify FARGATE.

" } }, "documentation":"

An object representing an AWS Batch job.

" @@ -1448,7 +1512,7 @@ }, "state":{ "shape":"JQState", - "documentation":"

Describes the ability of the queue to accept new jobs. If the job queue state is ENABLED, it is able to accept jobs. If the job queue state is DISABLED, new jobs cannot be added to the queue, but jobs already in the queue can finish.

" + "documentation":"

Describes the ability of the queue to accept new jobs. If the job queue state is ENABLED, it's able to accept jobs. If the job queue state is DISABLED, new jobs can't be added to the queue, but jobs already in the queue can finish.

" }, "status":{ "shape":"JQStatus", @@ -1464,7 +1528,7 @@ }, "computeEnvironmentOrder":{ "shape":"ComputeEnvironmentOrders", - "documentation":"

The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.

" + "documentation":"

The compute environments that are attached to the job queue and the order that job placement is preferred. Compute environments are selected for job placement in ascending order.

" }, "tags":{ "shape":"TagrisTagsMap", @@ -1538,7 +1602,7 @@ }, "nodeProperties":{ "shape":"NodePropertiesSummary", - "documentation":"

The node properties for a single node in a job summary list.

" + "documentation":"

The node properties for a single node in a job summary list.

This isn't applicable to jobs running on Fargate resources.

" } }, "documentation":"

An object representing summary details of a job.

" @@ -1552,7 +1616,7 @@ "members":{ "attemptDurationSeconds":{ "shape":"Integer", - "documentation":"

The time duration in seconds (measured from the job attempt's startedAt timestamp) after which AWS Batch terminates your jobs if they have not finished.

" + "documentation":"

The time duration in seconds (measured from the job attempt's startedAt timestamp) after which AWS Batch terminates your jobs if they have not finished. The minimum value for the timeout is 60 seconds.

" } }, "documentation":"

An object representing a job timeout configuration.

" @@ -1587,14 +1651,14 @@ "documentation":"

The version number of the launch template, $Latest, or $Default.

If the value is $Latest, the latest version of the launch template is used. If the value is $Default, the default version of the launch template is used.

Default: $Default.

" } }, - "documentation":"

An object representing a launch template associated with a compute resource. You must specify either the launch template ID or launch template name in the request, but not both.

" + "documentation":"

An object representing a launch template associated with a compute resource. You must specify either the launch template ID or launch template name in the request, but not both.

If security groups are specified using both the securityGroupIds parameter of CreateComputeEnvironment and the launch template, the values in the securityGroupIds parameter of CreateComputeEnvironment will be used.

This object isn't applicable to jobs running on Fargate resources.

" }, "LinuxParameters":{ "type":"structure", "members":{ "devices":{ "shape":"DevicesList", - "documentation":"

Any host devices to expose to the container. This parameter maps to Devices in the Create a container section of the Docker Remote API and the --device option to docker run.

" + "documentation":"

Any host devices to expose to the container. This parameter maps to Devices in the Create a container section of the Docker Remote API and the --device option to docker run.

This parameter isn't applicable to jobs running on Fargate resources and shouldn't be provided.

" }, "initProcessEnabled":{ "shape":"Boolean", @@ -1602,19 +1666,19 @@ }, "sharedMemorySize":{ "shape":"Integer", - "documentation":"

The value for the size (in MiB) of the /dev/shm volume. This parameter maps to the --shm-size option to docker run.

" + "documentation":"

The value for the size (in MiB) of the /dev/shm volume. This parameter maps to the --shm-size option to docker run.

This parameter isn't applicable to jobs running on Fargate resources and shouldn't be provided.

" }, "tmpfs":{ "shape":"TmpfsList", - "documentation":"

The container path, mount options, and size (in MiB) of the tmpfs mount. This parameter maps to the --tmpfs option to docker run.

" + "documentation":"

The container path, mount options, and size (in MiB) of the tmpfs mount. This parameter maps to the --tmpfs option to docker run.

This parameter isn't applicable to jobs running on Fargate resources and shouldn't be provided.

" }, "maxSwap":{ "shape":"Integer", - "documentation":"

The total amount of swap memory (in MiB) a container can use. This parameter will be translated to the --memory-swap option to docker run where the value would be the sum of the container memory plus the maxSwap value. For more information, see --memory-swap details in the Docker documentation.

If a maxSwap value of 0 is specified, the container will not use swap. Accepted values are 0 or any positive integer. If the maxSwap parameter is omitted, the container will use the swap configuration for the container instance it is running on. A maxSwap value must be set for the swappiness parameter to be used.

" + "documentation":"

The total amount of swap memory (in MiB) a container can use. This parameter is translated to the --memory-swap option to docker run where the value is the sum of the container memory plus the maxSwap value. For more information, see --memory-swap details in the Docker documentation.

If a maxSwap value of 0 is specified, the container doesn't use swap. Accepted values are 0 or any positive integer. If the maxSwap parameter is omitted, the container doesn't use the swap configuration for the container instance it is running on. A maxSwap value must be set for the swappiness parameter to be used.

This parameter isn't applicable to jobs running on Fargate resources and shouldn't be provided.

" }, "swappiness":{ "shape":"Integer", - "documentation":"

This allows you to tune a container's memory swappiness behavior. A swappiness value of 0 will cause swapping to not happen unless absolutely necessary. A swappiness value of 100 will cause pages to be swapped very aggressively. Accepted values are whole numbers between 0 and 100. If the swappiness parameter is not specified, a default value of 60 is used. If a value is not specified for maxSwap then this parameter is ignored. This parameter maps to the --memory-swappiness option to docker run.

" + "documentation":"

This allows you to tune a container's memory swappiness behavior. A swappiness value of 0 causes swapping not to happen unless absolutely necessary. A swappiness value of 100 causes pages to be swapped very aggressively. Accepted values are whole numbers between 0 and 100. If the swappiness parameter isn't specified, a default value of 60 is used. If a value isn't specified for maxSwap then this parameter is ignored. This parameter maps to the --memory-swappiness option to docker run.

This parameter isn't applicable to jobs running on Fargate resources and shouldn't be provided.

" } }, "documentation":"

Linux-specific modifications that are applied to the container, such as details for device mappings.

" @@ -1624,7 +1688,7 @@ "members":{ "jobQueue":{ "shape":"String", - "documentation":"

The name or full Amazon Resource Name (ARN) of the job queue with which to list jobs.

" + "documentation":"

The name or full Amazon Resource Name (ARN) of the job queue used to list jobs.

" }, "arrayJobId":{ "shape":"String", @@ -1636,11 +1700,11 @@ }, "jobStatus":{ "shape":"JobStatus", - "documentation":"

The job status with which to filter jobs in the specified queue. If you do not specify a status, only RUNNING jobs are returned.

" + "documentation":"

The job status used to filter jobs in the specified queue. If you don't specify a status, only RUNNING jobs are returned.

" }, "maxResults":{ "shape":"Integer", - "documentation":"

The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListJobs returns up to 100 results and a nextToken value if applicable.

" + "documentation":"

The maximum number of results returned by ListJobs in paginated output. When this parameter is used, ListJobs only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListJobs request with the returned nextToken value. This value can be between 1 and 100. If this parameter isn't used, then ListJobs returns up to 100 results and a nextToken value if applicable.

" }, "nextToken":{ "shape":"String", @@ -1668,7 +1732,7 @@ "members":{ "resourceArn":{ "shape":"String", - "documentation":"

The Amazon Resource Name (ARN) that identifies the resource for which to list the tags. AWS Batch resources that support tags are compute environments, jobs, job definitions, and job queues. ARNs for child jobs of array and multi-node parallel (MNP) jobs are not supported.

", + "documentation":"

The Amazon Resource Name (ARN) that identifies the resource that tags are listed for. AWS Batch resources that support tags are compute environments, jobs, job definitions, and job queues. ARNs for child jobs of array and multi-node parallel (MNP) jobs are not supported.

", "location":"uri", "locationName":"resourceArn" } @@ -1689,7 +1753,7 @@ "members":{ "logDriver":{ "shape":"LogDriver", - "documentation":"

The log driver to use for the container. The valid values listed for this parameter are log drivers that the Amazon ECS container agent can communicate with by default.

The supported log drivers are awslogs, fluentd, gelf, json-file, journald, logentries, syslog, and splunk.

awslogs

Specifies the Amazon CloudWatch Logs logging driver. For more information, see Using the awslogs Log Driver in the AWS Batch User Guide and Amazon CloudWatch Logs logging driver in the Docker documentation.

fluentd

Specifies the Fluentd logging driver. For more information, including usage and options, see Fluentd logging driver in the Docker documentation.

gelf

Specifies the Graylog Extended Format (GELF) logging driver. For more information, including usage and options, see Graylog Extended Format logging driver in the Docker documentation.

journald

Specifies the journald logging driver. For more information, including usage and options, see Journald logging driver in the Docker documentation.

json-file

Specifies the JSON file logging driver. For more information, including usage and options, see JSON File logging driver in the Docker documentation.

splunk

Specifies the Splunk logging driver. For more information, including usage and options, see Splunk logging driver in the Docker documentation.

syslog

Specifies the syslog logging driver. For more information, including usage and options, see Syslog logging driver in the Docker documentation.

If you have a custom driver that is not listed earlier that you would like to work with the Amazon ECS container agent, you can fork the Amazon ECS container agent project that is available on GitHub and customize it to work with that driver. We encourage you to submit pull requests for changes that you would like to have included. However, Amazon Web Services does not currently support running modified copies of this software.

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log into your container instance and run the following command: sudo docker version | grep \"Server API version\"

" + "documentation":"

The log driver to use for the container. The valid values listed for this parameter are log drivers that the Amazon ECS container agent can communicate with by default.

The supported log drivers are awslogs, fluentd, gelf, json-file, journald, logentries, syslog, and splunk.

Jobs running on Fargate resources are restricted to the awslogs and splunk log drivers.

awslogs

Specifies the Amazon CloudWatch Logs logging driver. For more information, see Using the awslogs Log Driver in the AWS Batch User Guide and Amazon CloudWatch Logs logging driver in the Docker documentation.

fluentd

Specifies the Fluentd logging driver. For more information, including usage and options, see Fluentd logging driver in the Docker documentation.

gelf

Specifies the Graylog Extended Format (GELF) logging driver. For more information, including usage and options, see Graylog Extended Format logging driver in the Docker documentation.

journald

Specifies the journald logging driver. For more information, including usage and options, see Journald logging driver in the Docker documentation.

json-file

Specifies the JSON file logging driver. For more information, including usage and options, see JSON File logging driver in the Docker documentation.

splunk

Specifies the Splunk logging driver. For more information, including usage and options, see Splunk logging driver in the Docker documentation.

syslog

Specifies the syslog logging driver. For more information, including usage and options, see Syslog logging driver in the Docker documentation.

If you have a custom driver that isn't listed earlier that you want to work with the Amazon ECS container agent, you can fork the Amazon ECS container agent project that is available on GitHub and customize it to work with that driver. We encourage you to submit pull requests for changes that you want to have included. However, Amazon Web Services doesn't currently support running modified copies of this software.

This parameter requires version 1.18 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log into your container instance and run the following command: sudo docker version | grep \"Server API version\"

" }, "options":{ "shape":"LogConfigurationOptionsMap", @@ -1725,11 +1789,11 @@ "members":{ "containerPath":{ "shape":"String", - "documentation":"

The path on the container at which to mount the host volume.

" + "documentation":"

The path on the container where the host volume is mounted.

" }, "readOnly":{ "shape":"Boolean", - "documentation":"

If this value is true, the container has read-only access to the volume; otherwise, the container can write to the volume. The default value is false.

" + "documentation":"

If this value is true, the container has read-only access to the volume. Otherwise, the container can write to the volume. The default value is false.

" }, "sourceVolume":{ "shape":"String", @@ -1742,6 +1806,16 @@ "type":"list", "member":{"shape":"MountPoint"} }, + "NetworkConfiguration":{ + "type":"structure", + "members":{ + "assignPublicIp":{ + "shape":"AssignPublicIp", + "documentation":"

Indicates whether the job should have a public IP address. For a job running on Fargate resources in a private subnet to send outbound traffic to the internet (for example, in order to pull container images), the private subnet requires a NAT gateway be attached to route requests to the internet. For more information, see Amazon ECS task networking. The default value is \"DISABLED\".

" + } + }, + "documentation":"

The network configuration for jobs running on Fargate resources. Jobs running on EC2 resources must not specify this parameter.

" + }, "NetworkInterface":{ "type":"structure", "members":{ @@ -1790,7 +1864,7 @@ "documentation":"

The node property overrides for the job.

" } }, - "documentation":"

Object representing any node overrides to a job definition that is used in a SubmitJob API operation.

" + "documentation":"

Object representing any node overrides to a job definition that is used in a SubmitJob API operation.

This isn't applicable to jobs running on Fargate resources and shouldn't be provided; use containerOverrides instead.

" }, "NodeProperties":{ "type":"structure", @@ -1839,7 +1913,7 @@ "members":{ "targetNodes":{ "shape":"String", - "documentation":"

The range of nodes, using node index values, with which to override. A range of 0:3 indicates nodes with index values of 0 through 3. If the starting range value is omitted (:n), then 0 is used to start the range. If the ending range value is omitted (n:), then the highest possible node index is used to end the range.

" + "documentation":"

The range of nodes, using node index values, that's used to override. A range of 0:3 indicates nodes with index values of 0 through 3. If the starting range value is omitted (:n), then 0 is used to start the range. If the ending range value is omitted (n:), then the highest possible node index is used to end the range.

" }, "containerOverrides":{ "shape":"ContainerOverrides", @@ -1862,7 +1936,7 @@ "members":{ "targetNodes":{ "shape":"String", - "documentation":"

The range of nodes, using node index values. A range of 0:3 indicates nodes with index values of 0 through 3. If the starting range value is omitted (:n), then 0 is used to start the range. If the ending range value is omitted (n:), then the highest possible node index is used to end the range. Your accumulative node ranges must account for all nodes (0:n). You may nest node ranges, for example 0:10 and 4:5, in which case the 4:5 range properties override the 0:10 properties.

" + "documentation":"

The range of nodes, using node index values. A range of 0:3 indicates nodes with index values of 0 through 3. If the starting range value is omitted (:n), then 0 is used to start the range. If the ending range value is omitted (n:), then the highest possible node index is used to end the range. Your accumulative node ranges must account for all nodes (0:n). You may nest node ranges, for example 0:10 and 4:5, in which case the 4:5 range properties override the 0:10 properties.

" }, "container":{ "shape":"ContainerProperties", @@ -1876,6 +1950,17 @@ "key":{"shape":"String"}, "value":{"shape":"String"} }, + "PlatformCapability":{ + "type":"string", + "enum":[ + "EC2", + "FARGATE" + ] + }, + "PlatformCapabilityList":{ + "type":"list", + "member":{"shape":"PlatformCapability"} + }, "RegisterJobDefinitionRequest":{ "type":"structure", "required":[ @@ -1889,7 +1974,7 @@ }, "type":{ "shape":"JobDefinitionType", - "documentation":"

The type of job definition.

" + "documentation":"

The type of job definition. For more information about multi-node parallel jobs, see Creating a multi-node parallel job definition in the AWS Batch User Guide.

If the job is run on Fargate resources, then multinode isn't supported.

" }, "parameters":{ "shape":"ParametersMap", @@ -1897,23 +1982,31 @@ }, "containerProperties":{ "shape":"ContainerProperties", - "documentation":"

An object with various properties specific to single-node container-based jobs. If the job definition's type parameter is container, then you must specify either containerProperties or nodeProperties.

" + "documentation":"

An object with various properties specific to single-node container-based jobs. If the job definition's type parameter is container, then you must specify either containerProperties or nodeProperties.

If the job runs on Fargate resources, then you must not specify nodeProperties; use only containerProperties.

" }, "nodeProperties":{ "shape":"NodeProperties", - "documentation":"

An object with various properties specific to multi-node parallel jobs. If you specify node properties for a job, it becomes a multi-node parallel job. For more information, see Multi-node Parallel Jobs in the AWS Batch User Guide. If the job definition's type parameter is container, then you must specify either containerProperties or nodeProperties.

" + "documentation":"

An object with various properties specific to multi-node parallel jobs. If you specify node properties for a job, it becomes a multi-node parallel job. For more information, see Multi-node Parallel Jobs in the AWS Batch User Guide. If the job definition's type parameter is container, then you must specify either containerProperties or nodeProperties.

If the job runs on Fargate resources, then you must not specify nodeProperties; use containerProperties instead.

" }, "retryStrategy":{ "shape":"RetryStrategy", - "documentation":"

The retry strategy to use for failed jobs that are submitted with this job definition. Any retry strategy that is specified during a SubmitJob operation overrides the retry strategy defined here. If a job is terminated due to a timeout, it is not retried.

" + "documentation":"

The retry strategy to use for failed jobs that are submitted with this job definition. Any retry strategy that is specified during a SubmitJob operation overrides the retry strategy defined here. If a job is terminated due to a timeout, it isn't retried.

" + }, + "propagateTags":{ + "shape":"Boolean", + "documentation":"

Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no value is specified, the tags are not propagated. Tags can only be propagated to the tasks during task creation. For tags with the same name, job tags are given priority over job definitions tags. If the total number of combined tags from the job and job definition is over 50, the job is moved to the FAILED state.

" }, "timeout":{ "shape":"JobTimeout", - "documentation":"

The timeout configuration for jobs that are submitted with this job definition, after which AWS Batch terminates your jobs if they have not finished. If a job is terminated due to a timeout, it is not retried. The minimum value for the timeout is 60 seconds. Any timeout configuration that is specified during a SubmitJob operation overrides the timeout configuration defined here. For more information, see Job Timeouts in the Amazon Elastic Container Service Developer Guide.

" + "documentation":"

The timeout configuration for jobs that are submitted with this job definition, after which AWS Batch terminates your jobs if they have not finished. If a job is terminated due to a timeout, it isn't retried. The minimum value for the timeout is 60 seconds. Any timeout configuration that is specified during a SubmitJob operation overrides the timeout configuration defined here. For more information, see Job Timeouts in the AWS Batch User Guide.

" }, "tags":{ "shape":"TagrisTagsMap", - "documentation":"

The tags that you apply to the job definition to help you categorize and organize your resources. Each tag consists of a key and an optional value. For more information, see Tagging AWS Resources in AWS General Reference.

" + "documentation":"

The tags that you apply to the job definition to help you categorize and organize your resources. Each tag consists of a key and an optional value. For more information, see Tagging AWS Resources in AWS Batch User Guide.

" + }, + "platformCapabilities":{ + "shape":"PlatformCapabilityList", + "documentation":"

The platform capabilities required by the job definition. If no value is specified, it defaults to EC2. To run the job on Fargate resources, specify FARGATE.

" } } }, @@ -1948,14 +2041,14 @@ "members":{ "value":{ "shape":"String", - "documentation":"

The number of physical GPUs to reserve for the container. The number of GPUs reserved for all containers in a job should not exceed the number of available GPUs on the compute resource that the job is launched on.

" + "documentation":"

The quantity of the specified resource to reserve for the container. The values vary based on the type specified.

type=\"GPU\"

The number of physical GPUs to reserve for the container. The number of GPUs reserved for all containers in a job shouldn't exceed the number of available GPUs on the compute resource that the job is launched on.

GPUs are not available for jobs running on Fargate resources.

type=\"MEMORY\"

For jobs running on EC2 resources, the hard limit (in MiB) of memory to present to the container. If your container attempts to exceed the memory specified here, the container is killed. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run. You must specify at least 4 MiB of memory for a job. This is required but can be specified in several places for multi-node parallel (MNP) jobs. It must be specified for each node at least once. This parameter maps to Memory in the Create a container section of the Docker Remote API and the --memory option to docker run. You must specify at least 4 MiB of memory for a job.

If you're trying to maximize your resource utilization by providing your jobs as much memory as possible for a particular instance type, see Memory Management in the AWS Batch User Guide.

For jobs running on Fargate resources, then value is the hard limit (in GiB), represented in decimal form, and must match one of the supported values (0.5 and whole numbers between 1 and 30, inclusive) and the VCPU values must be one of the values supported for that memory value.

value = 0.5

VCPU = 0.25

value = 1

VCPU = 0.25 or 0.5

value = 2

VCPU = 0.25, 0.5, or 1

value = 3

VCPU = 0.5, or 1

value = 4

VCPU = 0.5, 1, or 2

value = 5, 6, or 7

VCPU = 1 or 2

value = 8

VCPU = 1, 2, or 4

value = 9, 10, 11, 12, 13, 14, 15, or 16

VCPU = 2 or 4

value = 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, or 30

VCPU = 4

type=\"VCPU\"

The number of vCPUs reserved for the container. This parameter maps to CpuShares in the Create a container section of the Docker Remote API and the --cpu-shares option to docker run. Each vCPU is equivalent to 1,024 CPU shares. You must specify at least one vCPU. This is required but can be specified in several places; it must be specified for each node at least once.

For jobs running on Fargate resources, then value must match one of the supported values and the MEMORY values must be one of the values supported for that VCPU value. The supported values are 0.25, 0.5, 1, 2, and 4

value = 0.25

MEMORY = 0.5, 1, or 2

value = 0.5

MEMORY = 1, 2, 3, or 4

value = 1

MEMORY = 2, 3, 4, 5, 6, 7, or 8

value = 2

MEMORY = 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, or 16

value = 4

MEMORY = 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, or 30

" }, "type":{ "shape":"ResourceType", - "documentation":"

The type of resource to assign to a container. Currently, the only supported resource type is GPU.

" + "documentation":"

The type of resource to assign to a container. The supported resources include GPU, MEMORY, and VCPU.

" } }, - "documentation":"

The type and amount of a resource to assign to a container. Currently, the only supported resource type is GPU.

" + "documentation":"

The type and amount of a resource to assign to a container. The supported resources include GPU, MEMORY, and VCPU.

" }, "ResourceRequirements":{ "type":"list", @@ -1963,7 +2056,11 @@ }, "ResourceType":{ "type":"string", - "enum":["GPU"] + "enum":[ + "GPU", + "VCPU", + "MEMORY" + ] }, "RetryAction":{ "type":"string", @@ -1984,7 +2081,7 @@ "documentation":"

Array of up to 5 objects that specify conditions under which the job should be retried or failed. If this parameter is specified, then the attempts parameter must also be specified.

" } }, - "documentation":"

The retry strategy associated with a job.

" + "documentation":"

The retry strategy associated with a job. For more information, see Automated job retries in the AWS Batch User Guide.

" }, "Secret":{ "type":"structure", @@ -1999,10 +2096,10 @@ }, "valueFrom":{ "shape":"String", - "documentation":"

The secret to expose to the container. The supported values are either the full ARN of the AWS Secrets Manager secret or the full ARN of the parameter in the AWS Systems Manager Parameter Store.

If the AWS Systems Manager Parameter Store parameter exists in the same Region as the task you are launching, then you can use either the full ARN or name of the parameter. If the parameter exists in a different Region, then the full ARN must be specified.

" + "documentation":"

The secret to expose to the container. The supported values are either the full ARN of the AWS Secrets Manager secret or the full ARN of the parameter in the AWS Systems Manager Parameter Store.

If the AWS Systems Manager Parameter Store parameter exists in the same Region as the job you are launching, then you can use either the full ARN or name of the parameter. If the parameter exists in a different Region, then the full ARN must be specified.

" } }, - "documentation":"

An object representing the secret to expose to your container. Secrets can be exposed to a container in the following ways:

  • To inject sensitive data into your containers as environment variables, use the secrets container definition parameter.

  • To reference sensitive information in the log configuration of a container, use the secretOptions container definition parameter.

For more information, see Specifying Sensitive Data in the Amazon Elastic Container Service Developer Guide.

" + "documentation":"

An object representing the secret to expose to your container. Secrets can be exposed to a container in the following ways:

  • To inject sensitive data into your containers as environment variables, use the secrets container definition parameter.

  • To reference sensitive information in the log configuration of a container, use the secretOptions container definition parameter.

For more information, see Specifying sensitive data in the AWS Batch User Guide.

" }, "SecretList":{ "type":"list", @@ -2061,15 +2158,19 @@ }, "nodeOverrides":{ "shape":"NodeOverrides", - "documentation":"

A list of node overrides in JSON format that specify the node range to target and the container overrides for that node range.

" + "documentation":"

A list of node overrides in JSON format that specify the node range to target and the container overrides for that node range.

This parameter isn't applicable to jobs running on Fargate resources; use containerOverrides instead.

" }, "retryStrategy":{ "shape":"RetryStrategy", "documentation":"

The retry strategy to use for failed jobs from this SubmitJob operation. When a retry strategy is specified here, it overrides the retry strategy defined in the job definition.

" }, + "propagateTags":{ + "shape":"Boolean", + "documentation":"

Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no value is specified, the tags aren't propagated. Tags can only be propagated to the tasks during task creation. For tags with the same name, job tags are given priority over job definitions tags. If the total number of combined tags from the job and job definition is over 50, the job is moved to the FAILED state. When specified, this overrides the tag propagation setting in the job definition.

" + }, "timeout":{ "shape":"JobTimeout", - "documentation":"

The timeout configuration for this SubmitJob operation. You can specify a timeout duration after which AWS Batch terminates your jobs if they have not finished. If a job is terminated due to a timeout, it is not retried. The minimum value for the timeout is 60 seconds. This configuration overrides any timeout configuration specified in the job definition. For array jobs, child jobs have the same timeout configuration as the parent job. For more information, see Job Timeouts in the Amazon Elastic Container Service Developer Guide.

" + "documentation":"

The timeout configuration for this SubmitJob operation. You can specify a timeout duration after which AWS Batch terminates your jobs if they haven't finished. If a job is terminated due to a timeout, it isn't retried. The minimum value for the timeout is 60 seconds. This configuration overrides any timeout configuration specified in the job definition. For array jobs, child jobs have the same timeout configuration as the parent job. For more information, see Job Timeouts in the Amazon Elastic Container Service Developer Guide.

" }, "tags":{ "shape":"TagrisTagsMap", @@ -2118,7 +2219,7 @@ "members":{ "resourceArn":{ "shape":"String", - "documentation":"

The Amazon Resource Name (ARN) of the resource to which to add tags. AWS Batch resources that support tags are compute environments, jobs, job definitions, and job queues. ARNs for child jobs of array and multi-node parallel (MNP) jobs are not supported.

", + "documentation":"

The Amazon Resource Name (ARN) of the resource that tags are added to. AWS Batch resources that support tags are compute environments, jobs, job definitions, and job queues. ARNs for child jobs of array and multi-node parallel (MNP) jobs are not supported.

", "location":"uri", "locationName":"resourceArn" }, @@ -2180,7 +2281,7 @@ "members":{ "containerPath":{ "shape":"String", - "documentation":"

The absolute file path in the container where the tmpfs volume is to be mounted.

" + "documentation":"

The absolute file path in the container where the tmpfs volume is mounted.

" }, "size":{ "shape":"Integer", @@ -2191,7 +2292,7 @@ "documentation":"

The list of tmpfs volume mount options.

Valid values: \"defaults\" | \"ro\" | \"rw\" | \"suid\" | \"nosuid\" | \"dev\" | \"nodev\" | \"exec\" | \"noexec\" | \"sync\" | \"async\" | \"dirsync\" | \"remount\" | \"mand\" | \"nomand\" | \"atime\" | \"noatime\" | \"diratime\" | \"nodiratime\" | \"bind\" | \"rbind\" | \"unbindable\" | \"runbindable\" | \"private\" | \"rprivate\" | \"shared\" | \"rshared\" | \"slave\" | \"rslave\" | \"relatime\" | \"norelatime\" | \"strictatime\" | \"nostrictatime\" | \"mode\" | \"uid\" | \"gid\" | \"nr_inodes\" | \"nr_blocks\" | \"mpol\"

" } }, - "documentation":"

The container path, mount options, and size of the tmpfs mount.

" + "documentation":"

The container path, mount options, and size of the tmpfs mount.

This object isn't applicable to jobs running on Fargate resources.

" }, "TmpfsList":{ "type":"list", @@ -2218,7 +2319,7 @@ "documentation":"

The soft limit for the ulimit type.

" } }, - "documentation":"

The ulimit settings to pass to the container.

" + "documentation":"

The ulimit settings to pass to the container.

This object isn't applicable to jobs running on Fargate resources.

" }, "Ulimits":{ "type":"list", @@ -2268,7 +2369,7 @@ }, "serviceRole":{ "shape":"String", - "documentation":"

The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.

If your specified role has a path other than /, then you must either specify the full role ARN (this is recommended) or prefix the role name with the path.

Depending on how you created your AWS Batch service role, its ARN may contain the service-role path prefix. When you only specify the name of the service role, AWS Batch assumes that your ARN does not use the service-role path prefix. Because of this, we recommend that you specify the full ARN of your service role when you create compute environments.

" + "documentation":"

The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.

If your specified role has a path other than /, then you must either specify the full role ARN (this is recommended) or prefix the role name with the path.

Depending on how you created your AWS Batch service role, its ARN might contain the service-role path prefix. When you only specify the name of the service role, AWS Batch assumes that your ARN does not use the service-role path prefix. Because of this, we recommend that you specify the full ARN of your service role when you create compute environments.

" } } }, @@ -2303,7 +2404,7 @@ }, "computeEnvironmentOrder":{ "shape":"ComputeEnvironmentOrders", - "documentation":"

Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should execute a given job.

" + "documentation":"

Details the set of compute environments mapped to a job queue and their order relative to each other. This is one of the parameters used by the job scheduler to determine which compute environment should run a given job. All of the compute environments must be either EC2 (EC2 or SPOT) or Fargate (FARGATE or FARGATE_SPOT); EC2 and Fargate compute environments can't be mixed.

" } } }, @@ -2325,7 +2426,7 @@ "members":{ "host":{ "shape":"Host", - "documentation":"

The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume. However, the data is not guaranteed to persist after the containers associated with it stop running.

" + "documentation":"

The contents of the host parameter determine whether your data volume persists on the host container instance and where it is stored. If the host parameter is empty, then the Docker daemon assigns a host path for your data volume. However, the data isn't guaranteed to persist after the containers associated with it stop running.

This parameter isn't applicable to jobs running on Fargate resources and shouldn't be provided.

" }, "name":{ "shape":"String", @@ -2339,5 +2440,5 @@ "member":{"shape":"Volume"} } }, - "documentation":"

AWS Batch enables you to run batch computing workloads on the AWS Cloud. Batch computing is a common way for developers, scientists, and engineers to access large amounts of compute resources, and AWS Batch removes the undifferentiated heavy lifting of configuring and managing the required infrastructure. AWS Batch will be familiar to users of traditional batch computing software. This service can efficiently provision resources in response to jobs submitted in order to eliminate capacity constraints, reduce compute costs, and deliver results quickly.

As a fully managed service, AWS Batch enables developers, scientists, and engineers to run batch computing workloads of any scale. AWS Batch automatically provisions compute resources and optimizes the workload distribution based on the quantity and scale of the workloads. With AWS Batch, there is no need to install or manage batch computing software, which allows you to focus on analyzing results and solving problems. AWS Batch reduces operational complexities, saves time, and reduces costs, which makes it easy for developers, scientists, and engineers to run their batch jobs in the AWS Cloud.

" + "documentation":"

Using AWS Batch, you can run batch computing workloads on the AWS Cloud. Batch computing is a common means for developers, scientists, and engineers to access large amounts of compute resources. AWS Batch utilizes the advantages of this computing workload to remove the undifferentiated heavy lifting of configuring and managing required infrastructure, while also adopting a familiar batch computing software approach. Given these advantages, AWS Batch can help you to efficiently provision resources in response to jobs submitted, thus effectively helping to eliminate capacity constraints, reduce compute costs, and deliver your results more quickly.

As a fully managed service, AWS Batch can run batch computing workloads of any scale. AWS Batch automatically provisions compute resources and optimizes workload distribution based on the quantity and scale of your specific workloads. With AWS Batch, there's no need to install or manage batch computing software. This means that you can focus your time and energy on analyzing results and solving your specific problems.

" } From 083b9d26cf0d640ee3c65c1faf48b3efcb002318 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 3 Dec 2020 20:31:54 +0000 Subject: [PATCH 337/339] Updated endpoints.json. --- .../feature-AWSSDKforJavav2-bedacd4.json | 6 +++++ .../regions/internal/region/endpoints.json | 24 +++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json new file mode 100644 index 000000000000..ae3f84993e9e --- /dev/null +++ b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json @@ -0,0 +1,6 @@ +{ + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." +} diff --git a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json index 4ba430e46747..eb9deac60b4c 100644 --- a/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json +++ b/core/regions/src/main/resources/software/amazon/awssdk/regions/internal/region/endpoints.json @@ -2700,6 +2700,18 @@ "eu-west-1" : { }, "eu-west-2" : { }, "eu-west-3" : { }, + "fips-af-south-1" : { + "credentialScope" : { + "region" : "af-south-1" + }, + "hostname" : "fms-fips.af-south-1.amazonaws.com" + }, + "fips-ap-east-1" : { + "credentialScope" : { + "region" : "ap-east-1" + }, + "hostname" : "fms-fips.ap-east-1.amazonaws.com" + }, "fips-ap-northeast-1" : { "credentialScope" : { "region" : "ap-northeast-1" @@ -2742,6 +2754,12 @@ }, "hostname" : "fms-fips.eu-central-1.amazonaws.com" }, + "fips-eu-south-1" : { + "credentialScope" : { + "region" : "eu-south-1" + }, + "hostname" : "fms-fips.eu-south-1.amazonaws.com" + }, "fips-eu-west-1" : { "credentialScope" : { "region" : "eu-west-1" @@ -2760,6 +2778,12 @@ }, "hostname" : "fms-fips.eu-west-3.amazonaws.com" }, + "fips-me-south-1" : { + "credentialScope" : { + "region" : "me-south-1" + }, + "hostname" : "fms-fips.me-south-1.amazonaws.com" + }, "fips-sa-east-1" : { "credentialScope" : { "region" : "sa-east-1" From 744a3cb0e28833dcbb5a34c26d00c79351ded091 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 3 Dec 2020 20:32:24 +0000 Subject: [PATCH 338/339] Release 2.15.39. Updated CHANGELOG.md, README.md and all pom.xml. --- .changes/2.15.39.json | 36 +++++++++++++++++++ .../feature-AWSBatch-91a60c6.json | 6 ---- .../feature-AWSComputeOptimizer-af215b3.json | 6 ---- .../feature-AWSLicenseManager-9d6ae82.json | 6 ---- .../feature-AWSSDKforJavav2-bedacd4.json | 6 ---- .../feature-AmplifyBackend-177cf6a.json | 6 ---- CHANGELOG.md | 21 +++++++++++ README.md | 8 ++--- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- .../cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/amplifybackend/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/appintegrations/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectcontactlens/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/devopsguru/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/pom.xml | 2 +- services/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/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/lookoutvision/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/mwaa/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerfeaturestoreruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/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/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 300 files changed, 353 insertions(+), 326 deletions(-) create mode 100644 .changes/2.15.39.json delete mode 100644 .changes/next-release/feature-AWSBatch-91a60c6.json delete mode 100644 .changes/next-release/feature-AWSComputeOptimizer-af215b3.json delete mode 100644 .changes/next-release/feature-AWSLicenseManager-9d6ae82.json delete mode 100644 .changes/next-release/feature-AWSSDKforJavav2-bedacd4.json delete mode 100644 .changes/next-release/feature-AmplifyBackend-177cf6a.json diff --git a/.changes/2.15.39.json b/.changes/2.15.39.json new file mode 100644 index 000000000000..d3e28bac8e74 --- /dev/null +++ b/.changes/2.15.39.json @@ -0,0 +1,36 @@ +{ + "version": "2.15.39", + "date": "2020-12-03", + "entries": [ + { + "type": "feature", + "category": "AWS License Manager", + "contributor": "", + "description": "AWS License Manager enables managed entitlements for AWS customers and Software Vendors (ISV). You can track and distribute license entitlements from AWS Marketplace and supported ISVs." + }, + { + "type": "feature", + "category": "AWS Batch", + "contributor": "", + "description": "This release adds support for customer to run Batch Jobs on ECS Fargate, the serverless compute engine built for containers on AWS. Customer can also propagate Job and Job Definition Tags to ECS Task." + }, + { + "type": "feature", + "category": "AWS SDK for Java v2", + "contributor": "", + "description": "Updated service endpoint metadata." + }, + { + "type": "feature", + "category": "AmplifyBackend", + "contributor": "", + "description": "Regular documentation updates." + }, + { + "type": "feature", + "category": "AWS Compute Optimizer", + "contributor": "", + "description": "This release enables AWS Compute Optimizer to analyze and generate optimization recommendations for EBS volumes that are attached to instances." + } + ] +} \ No newline at end of file diff --git a/.changes/next-release/feature-AWSBatch-91a60c6.json b/.changes/next-release/feature-AWSBatch-91a60c6.json deleted file mode 100644 index 677e3a025478..000000000000 --- a/.changes/next-release/feature-AWSBatch-91a60c6.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Batch", - "contributor": "", - "description": "This release adds support for customer to run Batch Jobs on ECS Fargate, the serverless compute engine built for containers on AWS. Customer can also propagate Job and Job Definition Tags to ECS Task." -} diff --git a/.changes/next-release/feature-AWSComputeOptimizer-af215b3.json b/.changes/next-release/feature-AWSComputeOptimizer-af215b3.json deleted file mode 100644 index bad883f0c9ff..000000000000 --- a/.changes/next-release/feature-AWSComputeOptimizer-af215b3.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS Compute Optimizer", - "contributor": "", - "description": "This release enables AWS Compute Optimizer to analyze and generate optimization recommendations for EBS volumes that are attached to instances." -} diff --git a/.changes/next-release/feature-AWSLicenseManager-9d6ae82.json b/.changes/next-release/feature-AWSLicenseManager-9d6ae82.json deleted file mode 100644 index bc2dd8200266..000000000000 --- a/.changes/next-release/feature-AWSLicenseManager-9d6ae82.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS License Manager", - "contributor": "", - "description": "AWS License Manager enables managed entitlements for AWS customers and Software Vendors (ISV). You can track and distribute license entitlements from AWS Marketplace and supported ISVs." -} diff --git a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json b/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json deleted file mode 100644 index ae3f84993e9e..000000000000 --- a/.changes/next-release/feature-AWSSDKforJavav2-bedacd4.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AWS SDK for Java v2", - "contributor": "", - "description": "Updated service endpoint metadata." -} diff --git a/.changes/next-release/feature-AmplifyBackend-177cf6a.json b/.changes/next-release/feature-AmplifyBackend-177cf6a.json deleted file mode 100644 index f7be9e356d93..000000000000 --- a/.changes/next-release/feature-AmplifyBackend-177cf6a.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "type": "feature", - "category": "AmplifyBackend", - "contributor": "", - "description": "Regular documentation updates." -} diff --git a/CHANGELOG.md b/CHANGELOG.md index 072e1a39613e..28039567cc6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +# __2.15.39__ __2020-12-03__ +## __AWS Batch__ + - ### Features + - This release adds support for customer to run Batch Jobs on ECS Fargate, the serverless compute engine built for containers on AWS. Customer can also propagate Job and Job Definition Tags to ECS Task. + +## __AWS Compute Optimizer__ + - ### Features + - This release enables AWS Compute Optimizer to analyze and generate optimization recommendations for EBS volumes that are attached to instances. + +## __AWS License Manager__ + - ### Features + - AWS License Manager enables managed entitlements for AWS customers and Software Vendors (ISV). You can track and distribute license entitlements from AWS Marketplace and supported ISVs. + +## __AWS SDK for Java v2__ + - ### Features + - Updated service endpoint metadata. + +## __AmplifyBackend__ + - ### Features + - Regular documentation updates. + # __2.15.38__ __2020-12-01__ ## __AWS SDK for Java v2__ - ### Features diff --git a/README.md b/README.md index a2e598aecf0b..56801935eced 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ To automatically manage module versions (currently all modules have the same ver software.amazon.awssdk bom - 2.15.38 + 2.15.39 pom import @@ -83,12 +83,12 @@ Alternatively you can add dependencies for the specific services you use only: software.amazon.awssdk ec2 - 2.15.38 + 2.15.39 software.amazon.awssdk s3 - 2.15.38 + 2.15.39 ``` @@ -100,7 +100,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please software.amazon.awssdk aws-sdk-java - 2.15.38 + 2.15.39 ``` diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index f69363240a77..fc7f2b75618a 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index f20dec547158..b17cf0869863 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index d44cfe51b7b4..333db6d1873b 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.15.39-SNAPSHOT + 2.15.39 ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 0e2bbb2fc9fa..64fcbf005416 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index 04c85d83c8f5..c9282e603d77 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.39-SNAPSHOT + 2.15.39 ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index 848ff310b9f0..e4d0f5c8b3ec 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.39-SNAPSHOT + 2.15.39 bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index bcf740d71e23..6ae79b4dc341 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.15.39-SNAPSHOT + 2.15.39 ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index c9301d66326c..edc53a8739b8 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.39-SNAPSHOT + 2.15.39 codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index a17623f29f57..90abd1c84b9c 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.15.39-SNAPSHOT + 2.15.39 ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index e284ab2a0c2e..f79845122c8c 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.39-SNAPSHOT + 2.15.39 codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index bb50dd575b34..93f0b5d7603f 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index fe08d090afe5..a58a0ad491c2 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 42ebb9a8fc80..2e6cc2bc3e06 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.39-SNAPSHOT + 2.15.39 auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index a9dde363b8b2..d058db6d232f 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.39-SNAPSHOT + 2.15.39 aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index ab42bfef5996..2e7cabce38c4 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index c278caa39f06..a21abe85ce16 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 8b2c6b7d1bd3..8dc208db211f 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.39-SNAPSHOT + 2.15.39 profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 8f2ef48753d8..604212300c32 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.15.39-SNAPSHOT + 2.15.39 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index b554928f86ac..c3286908f211 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index b6bf711aa4ff..f847eb44746b 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.15.39-SNAPSHOT + 2.15.39 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index d1b6e5f16e3d..8023f3b9745f 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.15.39-SNAPSHOT + 2.15.39 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 7fe20a91d02e..8e756b4222a7 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.15.39-SNAPSHOT + 2.15.39 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 8e2904b6f9aa..2f1b9ec6170e 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 3f66d61e0251..2577e59459f8 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index ba299aceb35b..5ade508b36ea 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.39-SNAPSHOT + 2.15.39 regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 1f8980e585f0..53dd016886d2 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.39-SNAPSHOT + 2.15.39 sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 3230c035f791..934a3418927a 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.15.39-SNAPSHOT + 2.15.39 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 98cc905de37b..22d5be5cb5a8 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.15.39-SNAPSHOT + 2.15.39 apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index ba3498417e1e..bbd5a61c747f 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.15.39-SNAPSHOT + 2.15.39 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index 307c3c360d5f..e94ad93cd6e7 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.15.39-SNAPSHOT + 2.15.39 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index cded3b358347..f8ec2572f7c4 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index 7cc765427ef4..f804765bb6af 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.15.39-SNAPSHOT + 2.15.39 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index be42beb73ec9..d97c7638cd90 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.15.39-SNAPSHOT + 2.15.39 cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 3ba8f500ec7e..7831d6d31095 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.39-SNAPSHOT + 2.15.39 metric-publishers diff --git a/pom.xml b/pom.xml index f9395244b62f..533052a543e7 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.39-SNAPSHOT + 2.15.39 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 2dccd5195bc0..6b360d8df8bd 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.39-SNAPSHOT + 2.15.39 ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index bb7c99eae569..7eb30b12bab2 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.15.39-SNAPSHOT + 2.15.39 dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 794bb82d1eb6..54aec559cf13 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.39-SNAPSHOT + 2.15.39 services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index f92a11c53064..2c5dbe1439f5 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index e41db9d14bfe..d36b01582aff 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index 282dcf9ef405..caaeb058d81d 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index f0173aa4e7bf..240cb8f4bf67 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index fbd1702ad1cd..be322baa2f46 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 amplify AWS Java SDK :: Services :: Amplify diff --git a/services/amplifybackend/pom.xml b/services/amplifybackend/pom.xml index 3de986c5bbf7..50d76385cb58 100644 --- a/services/amplifybackend/pom.xml +++ b/services/amplifybackend/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 amplifybackend AWS Java SDK :: Services :: Amplify Backend diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index 4bba92f4b536..e9707e506184 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 7abbd9e9bc76..04536fa85c0c 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index bba85302a242..f80c57639199 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 072637e8bc01..8388a5850361 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index 5c66cb1cbac0..f88f0c0693ba 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 appflow AWS Java SDK :: Services :: Appflow diff --git a/services/appintegrations/pom.xml b/services/appintegrations/pom.xml index 53e1f349ab77..f73252a52ab8 100644 --- a/services/appintegrations/pom.xml +++ b/services/appintegrations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 appintegrations AWS Java SDK :: Services :: App Integrations diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 99268d35884a..0a387a863a7b 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index 9d37e927fda5..a1c2cc3e95d0 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index c12e6649f29b..a184a945bdff 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 16d198e77ef0..77dd82969861 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index ca9be09249f0..7b9f85244e2b 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index 9939af873f4d..f20622d5bfc7 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index 01e6f3635617..d608d07fbe16 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index fdf1b8b08bab..1d39ff9eaa8a 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 7e945ce6d9b5..12e2524f8089 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 08a1f26b8769..2428faa7f15d 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index 562252e514a8..aaea0c2e7a61 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index 0bdff25b0824..b67c03cd2ec6 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index 562742c3dc3c..ba9d8c40c1b4 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 3b9bfa4cd19a..4ee4b89ef77d 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index 0e4ead840fd9..a7b4c81f5b5c 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index 7bb744ba4fec..fc76d3e52244 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index bdcf2e491b6d..777361c8e65a 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index be64c2c398ea..b9b2b742ce22 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 281c6121eb58..5851300fd0c9 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index eb699bce6dda..f1e70c1df0e8 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index ee84d1cd31f7..a168f6b467ad 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 26c0b69dd52f..9b2fc4fd4de6 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index 55895a7c42ee..c7ae6ec8581a 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 07b811767b4f..5f8b47a7ba7d 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index a615ed0b2608..28d43d9f7442 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 9d1b65b2ff1d..89efbaefa315 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index ab58578aa0bb..eae64958b54d 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index 4efaa678ba98..e86e4ac9649f 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 311c312fd5f0..0bed2808614e 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index 3793624ee85c..b8038313ab92 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index 124c40ddb995..af9fdc2d0b86 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index aa66923f0bbf..ee94468eaaa4 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index 7e13f78294cb..f468b0897fd5 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index a500ef3e8aaa..19cb6151989a 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index 69ed32aec26d..e02e095c22cb 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index a399d3badd16..402420ee21ee 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index 29f104942957..c31a75746d87 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index 0b636e9ae19c..a113d1cf5b00 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index 5225423214e4..a31f3520ce36 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index 9a027f8822d2..abb07d20ac8a 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index 0c64bab64cb6..ea2f021a397c 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 2c4bbae8b28f..793fd563d9b3 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 869fbf7ae10c..4f160c7fcf48 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 65d30d410ede..5c5dc6575c21 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 connect AWS Java SDK :: Services :: Connect diff --git a/services/connectcontactlens/pom.xml b/services/connectcontactlens/pom.xml index 17a4f6dafb8f..d083854cdd93 100644 --- a/services/connectcontactlens/pom.xml +++ b/services/connectcontactlens/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 connectcontactlens AWS Java SDK :: Services :: Connect Contact Lens diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index 150acd1e354e..b799d026c76d 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 95ca99272a1c..75221c9dcb84 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index d7d7f9d96cb9..d575e4b41392 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 costexplorer diff --git a/services/customerprofiles/pom.xml b/services/customerprofiles/pom.xml index e42540c43fa8..556af3e899da 100644 --- a/services/customerprofiles/pom.xml +++ b/services/customerprofiles/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 customerprofiles AWS Java SDK :: Services :: Customer Profiles diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 3674bec7c0e2..1ca0a1e36cda 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index faaf5c9f5c11..1fdee234ae9b 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index bac1d2fe39aa..72aae9ed9183 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 2c18488eebc4..81c570ba004d 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index 30c19d88d743..a1bc85dbc87a 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 7256b055fa94..1c11288d38b9 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 27ee55c24aaa..8fe7b9b40ac4 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index af9c7df16da5..102e7db8d057 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/devopsguru/pom.xml b/services/devopsguru/pom.xml index 913e1054f3b7..12e7413927da 100644 --- a/services/devopsguru/pom.xml +++ b/services/devopsguru/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 devopsguru AWS Java SDK :: Services :: Dev Ops Guru diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 2d5405f890e9..2eaf57dd7dd9 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 7d5f16e8b143..71209681cb75 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index de8f5ce5568a..a838667006f0 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index bc4229de79db..572c4dd011eb 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 546f04ffd4a5..54a3e1d07abd 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index 0211f290b80e..cfcc815dca42 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 47f6116f8b65..6d3c749b7db8 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 7043df01cfff..50ec6f698437 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 89e9689372a7..9ce8241852ce 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecrpublic/pom.xml b/services/ecrpublic/pom.xml index 08b5ca5727e3..4a8a87279624 100644 --- a/services/ecrpublic/pom.xml +++ b/services/ecrpublic/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 ecrpublic AWS Java SDK :: Services :: ECR PUBLIC diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index bc33123839ca..03ac0b612045 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index 8d67eda1bc2c..f50c7bdba641 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index baccc2518f8a..feb5447d604e 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index 57a34f317c3f..cde414903a4e 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index a97fbd2c371a..10add2f56ccf 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 3aa86683fe41..3bb951ab6b7e 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index 12b79cdbdf27..ec7b9f5e863a 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index bf52ba92d952..5e260d15f85c 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 77e1c86a53b7..2cc860bfda75 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 16df759d5f8e..353699f424e1 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 260305d1d46f..0917eb9103af 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index 51410a638419..b983f99b8ac6 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index 10ac72336cf2..b741b0d28c16 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index eaa0810e1c21..ceb7f96c5165 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index d46893248fc7..92a88ff12289 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index d4fc5d7edadd..82b0888ecc57 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index 342048a84cf6..b2a91f920d37 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 4c56c52589cd..7773cd8ddae5 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index d03951871c8f..448c1cfb18d8 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index 5022779efb6e..fd8d528dc727 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 7bff09797617..04197402704c 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index 5b9a0674bc57..e444c87fafc5 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 0c5e2096f9ab..89504bdc10aa 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index 68c579a4f87c..d560bc59e830 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index cbd07d3ca721..af7bffd414ad 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 7c85f54ac493..2cbe0205cd47 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 141e5875e16e..25fdf33fcef2 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 2e936d115beb..811068cc5682 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index 4aafee778aec..ca1a429770b0 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index d712f2e9dba3..44952eb10ca2 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 8a7fc47f3571..6f513d5e7a64 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index bc9732b19282..847b5c18092c 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index d37521fc0b55..eba91c778a58 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 2e2d3c24a37d..2ebf298d2ae2 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index 2379e11a1174..f19b746e0bd0 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index 38fdc8ef5aa3..b30f266ff41a 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 9af90ecb7f62..26da3b71fc46 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 96eb5bc32864..35d36d4cd864 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index 22cfdd9ebb75..ddd84b8336f4 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 81bc577e4252..7a682bc290ef 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 97d83bebd13f..8362976a1ab0 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index e2b787fbdf16..1478faf302cb 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index e22da839f929..019cd094e290 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index d19e7817b15b..933dd2ba9dc8 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index bf50e8576e98..230f2b2acb48 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 81407d1475e0..2908bf119499 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index aef2260bf3b2..0b9849a40b17 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 2550387ac8d8..873f94164fe3 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 3e7f6bf724eb..5c1382903c25 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index 422b8ab8414e..b1c1502d7446 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 7a92d42e90bc..60143e8ed96b 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index e1b3dcad56a6..6643bc6c2009 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 2db9d608e5a6..1715276e23a3 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index f8c4296c02d7..d3b902674cf3 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index aae6aaf3089c..99f51789da50 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index ebc9bc61066c..f1a69cbdc02f 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index 4ec04d7c79ba..bc2b5bfa04bd 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index ecb61d19bac6..df1c44e5dd0f 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 52765478a1ed..4d0b50db5fc9 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/lookoutvision/pom.xml b/services/lookoutvision/pom.xml index 389baf99228a..07a03bec146f 100644 --- a/services/lookoutvision/pom.xml +++ b/services/lookoutvision/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 lookoutvision AWS Java SDK :: Services :: Lookout Vision diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index f140d6695249..964b7868f4e6 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 45ff4bec76be..38533001a821 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index b437bf3e8ae3..9101d79705c9 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index 9bf3b70175f2..af0ea952637c 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 919584c74086..7b973945d3e8 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 4b91a9521f1b..563f04508b45 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index b2dc3aa23f8e..8223c6d6ea35 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 3fe97baa5cc4..25f80d77b6db 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index f46d77c1dbfd..b4dae61df07a 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index 4ee143680037..a056ba8cdfb5 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index ea7c0934b905..24c1b2968bfd 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index c665c22c74ce..9f382f692124 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 1687b8609c2e..871f2747211a 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index 6bdb0723cc00..fd6aa1e8fc9c 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 6cbbb1d8f02c..3a78e8218891 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index f7b372c5cb31..8d4b1789cea1 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 1753615c8d5c..6edbada476b3 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 86dbec370024..2e7dc1ca0e8a 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index 7c3cccbb46d5..e235dab04ec3 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index af5995dd7b1f..c05024c14257 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index 453f420de2dc..de9037fba672 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml index 5cd2ccfb6bce..1c9fd65f4134 100644 --- a/services/mwaa/pom.xml +++ b/services/mwaa/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 mwaa AWS Java SDK :: Services :: MWAA diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 7a24bd3b854b..1e144a48a440 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index b19640598848..2ad798f6a034 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index b23835101f09..75bee6e9db44 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index 715379f23ced..dbe2b9660786 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index 827b3596b19c..d73ecaf65963 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index 05b30dd42960..d5d3985dd15b 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 4ed32099f295..5f568e243d6a 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index dfbae1acf3b2..0c65a57fb839 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index ec8a62ca82df..02887b1d28d9 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index 0f245666da6b..d52f043fd178 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index ebf2c54152f4..69aca8334436 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index 70cbdaf78efa..ec839d6c6eb8 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index 92ac08817afc..a70cb8f9a690 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index ce37b0b8d797..3831c53bee44 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index d783a5e839a9..4ece1e5b8362 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index f5bbd64db53a..d19a7d93e9e4 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.39-SNAPSHOT + 2.15.39 services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index 722d8a78c6e5..d3705a51ccea 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index b4f5bd350b26..a040b530dd3b 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 66e26aa0daa2..1c8fa1d64430 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 1c68daafbe3a..2a0494004d8b 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 6703dc935b94..552f95c3c928 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index 36b966f57c65..ba52310b29e7 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index 01d3a3bd9ace..d145d90b749e 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index 0e5cace4c5f7..d973847bd084 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 92d49f58278e..78442c250854 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 43f2919c7678..7351bcb98e3f 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index 3665c1411b6e..dec166c261b8 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 0bce80d920de..723b8d26b59b 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 9a872f883f67..450b638016c7 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index 598cd756cd85..b62ebfb3400c 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index c4e4e3ae8566..19b33bb3e416 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index 75e0c101723a..f40e39af71cf 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index c321b548b4f9..cd431ae4a6ea 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index e5f24053093c..d03ef7498541 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index b229771bffc8..29775c44a76a 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index 0b98c4ef410c..be8cfd8761f4 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index 20b7b92d78fe..e963003cd1ad 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerfeaturestoreruntime/pom.xml b/services/sagemakerfeaturestoreruntime/pom.xml index 4203b48019bf..b67dc8bc92cf 100644 --- a/services/sagemakerfeaturestoreruntime/pom.xml +++ b/services/sagemakerfeaturestoreruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 sagemakerfeaturestoreruntime AWS Java SDK :: Services :: Sage Maker Feature Store Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 617a1a7c1ea6..092b924c4595 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index daefd4f8e29d..60c49e7adfa0 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index 280be83d4611..b84e10b17663 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index fe930511b0ba..af9bd1dacb94 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 9954b516c334..88fa8fea6113 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index d72e1cad941b..3137160dd172 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 17738b4a5c0b..7d279c6c4a52 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index 78fe9c3f5a93..4adc9d7872c7 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index fc9cadbb1d07..328f9c1d12b1 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index b08424efc0f3..369d0d7c210b 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 9b66d5bb79c8..66d5f31fce09 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index 82563810d443..acc813d78adf 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index d4638a5e4ae1..bd49b98571ce 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 1fd2f3b1b3af..93226b2590c7 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index b7e6277bc4f8..70890f08b552 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 7c8f4f3ece90..68ab97518021 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index a0fd5a4bda49..5b4cee8e5d88 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index 6ac442516dc3..e85b3383f9f5 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index b74fe83c9652..65916e070124 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index 4a46b45cee98..b576b64ee5c1 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index 0037aa04e42e..b3c8a8d71331 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index a0638eb70c9e..381c076aa7b4 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 508d83005df0..00e8cd4d0cae 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 442e41175493..4b86d241f0d0 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index 4291ea08806f..dbab844f66b2 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index 7d91159c9bd4..cb6677103df4 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index ab53007f6fa3..91de9ed947fd 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index bb10fd0d5c9c..a231c6e4a232 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index 415b1c38a940..e22760e96c21 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 63bde4edd5ff..7dc4243b69b9 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 579fbc50e8b2..12c00c6f4f39 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index 9274b101d84b..a8d81fed101f 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 577ce6e23a14..0d2b0a03e070 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 446bfc13a8d7..9b151a85f4c5 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 7a9df4b33757..89a9dbeb28f5 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index 47083bca14fa..a110c5033022 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index b321eb129e63..ece8da38b04f 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index c736aa46ded1..280cd5c6554d 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 45473bcf3544..0ce6610c3580 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index b70906b7c300..f9e1974e0be9 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 243f29064b5c..89d23fdf5553 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index a0d5fa2e8c68..e1e37d031c18 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 44d53c430a45..3e72f8e3123b 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39-SNAPSHOT + 2.15.39 xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index c0df172a9714..5f4b98dc8501 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.15.39-SNAPSHOT + 2.15.39 ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index 24ac92c6df04..c12cf75105ec 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.15.39-SNAPSHOT + 2.15.39 ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index 9436051af2df..b432215f050c 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.15.39-SNAPSHOT + 2.15.39 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index 6a1cde12b093..fe43db35471c 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.15.39-SNAPSHOT + 2.15.39 ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 0f029cc0622b..1ffd351b36af 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.15.39-SNAPSHOT + 2.15.39 ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index 96eee51eed8c..bf1b57ac47bc 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.39-SNAPSHOT + 2.15.39 ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index c8f9791c24b9..f3e99627a1f3 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.15.39-SNAPSHOT + 2.15.39 ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 3bf2e9d8e152..42a202887ada 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.15.39-SNAPSHOT + 2.15.39 ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index e626a8f6e025..6806267f4467 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.15.39-SNAPSHOT + 2.15.39 ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 03b566e859cc..9288bb81da07 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.15.39-SNAPSHOT + 2.15.39 ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index dbb02b97b925..f12bae31db22 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.39-SNAPSHOT + 2.15.39 4.0.0 From a2a2daa75f277540bbca1240d3e9e011edb01011 Mon Sep 17 00:00:00 2001 From: AWS <> Date: Thu, 3 Dec 2020 20:57:03 +0000 Subject: [PATCH 339/339] Update to next snapshot version: 2.15.40-SNAPSHOT --- archetypes/archetype-lambda/pom.xml | 2 +- archetypes/pom.xml | 2 +- aws-sdk-java/pom.xml | 2 +- bom-internal/pom.xml | 2 +- bom/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/pom.xml | 2 +- core/aws-core/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-ion-protocol/pom.xml | 2 +- core/protocols/aws-json-protocol/pom.xml | 2 +- core/protocols/aws-query-protocol/pom.xml | 2 +- core/protocols/aws-xml-protocol/pom.xml | 2 +- core/protocols/pom.xml | 2 +- core/protocols/protocol-core/pom.xml | 2 +- core/regions/pom.xml | 2 +- core/sdk-core/pom.xml | 2 +- http-client-spi/pom.xml | 2 +- http-clients/apache-client/pom.xml | 2 +- http-clients/aws-crt-client/pom.xml | 2 +- http-clients/netty-nio-client/pom.xml | 2 +- http-clients/pom.xml | 2 +- http-clients/url-connection-client/pom.xml | 2 +- metric-publishers/cloudwatch-metric-publisher/pom.xml | 2 +- metric-publishers/pom.xml | 2 +- pom.xml | 2 +- release-scripts/pom.xml | 2 +- services-custom/dynamodb-enhanced/pom.xml | 2 +- services-custom/pom.xml | 2 +- services/accessanalyzer/pom.xml | 2 +- services/acm/pom.xml | 2 +- services/acmpca/pom.xml | 2 +- services/alexaforbusiness/pom.xml | 2 +- services/amplify/pom.xml | 2 +- services/amplifybackend/pom.xml | 2 +- services/apigateway/pom.xml | 2 +- services/apigatewaymanagementapi/pom.xml | 2 +- services/apigatewayv2/pom.xml | 2 +- services/appconfig/pom.xml | 2 +- services/appflow/pom.xml | 2 +- services/appintegrations/pom.xml | 2 +- services/applicationautoscaling/pom.xml | 2 +- services/applicationdiscovery/pom.xml | 2 +- services/applicationinsights/pom.xml | 2 +- services/appmesh/pom.xml | 2 +- services/appstream/pom.xml | 2 +- services/appsync/pom.xml | 2 +- services/athena/pom.xml | 2 +- services/autoscaling/pom.xml | 2 +- services/autoscalingplans/pom.xml | 2 +- services/backup/pom.xml | 2 +- services/batch/pom.xml | 2 +- services/braket/pom.xml | 2 +- services/budgets/pom.xml | 2 +- services/chime/pom.xml | 2 +- services/cloud9/pom.xml | 2 +- services/clouddirectory/pom.xml | 2 +- services/cloudformation/pom.xml | 2 +- services/cloudfront/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/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/codecommit/pom.xml | 2 +- services/codedeploy/pom.xml | 2 +- services/codeguruprofiler/pom.xml | 2 +- services/codegurureviewer/pom.xml | 2 +- services/codepipeline/pom.xml | 2 +- services/codestar/pom.xml | 2 +- services/codestarconnections/pom.xml | 2 +- services/codestarnotifications/pom.xml | 2 +- services/cognitoidentity/pom.xml | 2 +- services/cognitoidentityprovider/pom.xml | 2 +- services/cognitosync/pom.xml | 2 +- services/comprehend/pom.xml | 2 +- services/comprehendmedical/pom.xml | 2 +- services/computeoptimizer/pom.xml | 2 +- services/config/pom.xml | 2 +- services/connect/pom.xml | 2 +- services/connectcontactlens/pom.xml | 2 +- services/connectparticipant/pom.xml | 2 +- services/costandusagereport/pom.xml | 2 +- services/costexplorer/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/dax/pom.xml | 2 +- services/detective/pom.xml | 2 +- services/devicefarm/pom.xml | 2 +- services/devopsguru/pom.xml | 2 +- services/directconnect/pom.xml | 2 +- services/directory/pom.xml | 2 +- services/dlm/pom.xml | 2 +- services/docdb/pom.xml | 2 +- services/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/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/eventbridge/pom.xml | 2 +- services/firehose/pom.xml | 2 +- services/fms/pom.xml | 2 +- services/forecast/pom.xml | 2 +- services/forecastquery/pom.xml | 2 +- services/frauddetector/pom.xml | 2 +- services/fsx/pom.xml | 2 +- services/gamelift/pom.xml | 2 +- services/glacier/pom.xml | 2 +- services/globalaccelerator/pom.xml | 2 +- services/glue/pom.xml | 2 +- services/greengrass/pom.xml | 2 +- services/groundstation/pom.xml | 2 +- services/guardduty/pom.xml | 2 +- services/health/pom.xml | 2 +- services/honeycode/pom.xml | 2 +- services/iam/pom.xml | 2 +- services/identitystore/pom.xml | 2 +- services/imagebuilder/pom.xml | 2 +- services/inspector/pom.xml | 2 +- services/iot/pom.xml | 2 +- services/iot1clickdevices/pom.xml | 2 +- services/iot1clickprojects/pom.xml | 2 +- services/iotanalytics/pom.xml | 2 +- services/iotdataplane/pom.xml | 2 +- services/iotevents/pom.xml | 2 +- services/ioteventsdata/pom.xml | 2 +- services/iotjobsdataplane/pom.xml | 2 +- services/iotsecuretunneling/pom.xml | 2 +- services/iotsitewise/pom.xml | 2 +- services/iotthingsgraph/pom.xml | 2 +- services/ivs/pom.xml | 2 +- services/kafka/pom.xml | 2 +- services/kendra/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/kms/pom.xml | 2 +- services/lakeformation/pom.xml | 2 +- services/lambda/pom.xml | 2 +- services/lexmodelbuilding/pom.xml | 2 +- services/lexruntime/pom.xml | 2 +- services/licensemanager/pom.xml | 2 +- services/lightsail/pom.xml | 2 +- services/lookoutvision/pom.xml | 2 +- services/machinelearning/pom.xml | 2 +- services/macie/pom.xml | 2 +- services/macie2/pom.xml | 2 +- services/managedblockchain/pom.xml | 2 +- services/marketplacecatalog/pom.xml | 2 +- services/marketplacecommerceanalytics/pom.xml | 2 +- services/marketplaceentitlement/pom.xml | 2 +- services/marketplacemetering/pom.xml | 2 +- services/mediaconnect/pom.xml | 2 +- services/mediaconvert/pom.xml | 2 +- services/medialive/pom.xml | 2 +- services/mediapackage/pom.xml | 2 +- services/mediapackagevod/pom.xml | 2 +- services/mediastore/pom.xml | 2 +- services/mediastoredata/pom.xml | 2 +- services/mediatailor/pom.xml | 2 +- services/migrationhub/pom.xml | 2 +- services/migrationhubconfig/pom.xml | 2 +- services/mobile/pom.xml | 2 +- services/mq/pom.xml | 2 +- services/mturk/pom.xml | 2 +- services/mwaa/pom.xml | 2 +- services/neptune/pom.xml | 2 +- services/networkfirewall/pom.xml | 2 +- services/networkmanager/pom.xml | 2 +- services/opsworks/pom.xml | 2 +- services/opsworkscm/pom.xml | 2 +- services/organizations/pom.xml | 2 +- services/outposts/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/polly/pom.xml | 2 +- services/pom.xml | 2 +- services/pricing/pom.xml | 2 +- services/qldb/pom.xml | 2 +- services/qldbsession/pom.xml | 2 +- services/quicksight/pom.xml | 2 +- services/ram/pom.xml | 2 +- services/rds/pom.xml | 2 +- services/rdsdata/pom.xml | 2 +- services/redshift/pom.xml | 2 +- services/redshiftdata/pom.xml | 2 +- services/rekognition/pom.xml | 2 +- services/resourcegroups/pom.xml | 2 +- services/resourcegroupstaggingapi/pom.xml | 2 +- services/robomaker/pom.xml | 2 +- services/route53/pom.xml | 2 +- services/route53domains/pom.xml | 2 +- services/route53resolver/pom.xml | 2 +- services/s3/pom.xml | 2 +- services/s3control/pom.xml | 2 +- services/s3outposts/pom.xml | 2 +- services/sagemaker/pom.xml | 2 +- services/sagemakera2iruntime/pom.xml | 2 +- services/sagemakerfeaturestoreruntime/pom.xml | 2 +- services/sagemakerruntime/pom.xml | 2 +- services/savingsplans/pom.xml | 2 +- services/schemas/pom.xml | 2 +- services/secretsmanager/pom.xml | 2 +- services/securityhub/pom.xml | 2 +- services/serverlessapplicationrepository/pom.xml | 2 +- services/servicecatalog/pom.xml | 2 +- services/servicecatalogappregistry/pom.xml | 2 +- services/servicediscovery/pom.xml | 2 +- services/servicequotas/pom.xml | 2 +- services/ses/pom.xml | 2 +- services/sesv2/pom.xml | 2 +- services/sfn/pom.xml | 2 +- services/shield/pom.xml | 2 +- services/signer/pom.xml | 2 +- services/sms/pom.xml | 2 +- services/snowball/pom.xml | 2 +- services/sns/pom.xml | 2 +- services/sqs/pom.xml | 2 +- services/ssm/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/support/pom.xml | 2 +- services/swf/pom.xml | 2 +- services/synthetics/pom.xml | 2 +- services/textract/pom.xml | 2 +- services/timestreamquery/pom.xml | 2 +- services/timestreamwrite/pom.xml | 2 +- services/transcribe/pom.xml | 2 +- services/transcribestreaming/pom.xml | 2 +- services/transfer/pom.xml | 2 +- services/translate/pom.xml | 2 +- services/waf/pom.xml | 2 +- services/wafv2/pom.xml | 2 +- services/workdocs/pom.xml | 2 +- services/worklink/pom.xml | 2 +- services/workmail/pom.xml | 2 +- services/workmailmessageflow/pom.xml | 2 +- services/workspaces/pom.xml | 2 +- services/xray/pom.xml | 2 +- test/codegen-generated-classes-test/pom.xml | 2 +- test/http-client-tests/pom.xml | 2 +- test/module-path-tests/pom.xml | 2 +- test/protocol-tests-core/pom.xml | 2 +- test/protocol-tests/pom.xml | 2 +- test/sdk-benchmarks/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 +- utils/pom.xml | 2 +- 292 files changed, 292 insertions(+), 292 deletions(-) diff --git a/archetypes/archetype-lambda/pom.xml b/archetypes/archetype-lambda/pom.xml index fc7f2b75618a..f2ee36b2cbf9 100644 --- a/archetypes/archetype-lambda/pom.xml +++ b/archetypes/archetype-lambda/pom.xml @@ -20,7 +20,7 @@ archetypes software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 archetype-lambda diff --git a/archetypes/pom.xml b/archetypes/pom.xml index b17cf0869863..9b16828cc70f 100644 --- a/archetypes/pom.xml +++ b/archetypes/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 archetypes diff --git a/aws-sdk-java/pom.xml b/aws-sdk-java/pom.xml index 333db6d1873b..9db31c6c9d67 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.15.39 + 2.15.40-SNAPSHOT ../pom.xml aws-sdk-java diff --git a/bom-internal/pom.xml b/bom-internal/pom.xml index 64fcbf005416..2011c90c086f 100644 --- a/bom-internal/pom.xml +++ b/bom-internal/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 diff --git a/bom/pom.xml b/bom/pom.xml index c9282e603d77..64c362c9f1c8 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.39 + 2.15.40-SNAPSHOT ../pom.xml bom diff --git a/bundle/pom.xml b/bundle/pom.xml index e4d0f5c8b3ec..82380f3b5afb 100644 --- a/bundle/pom.xml +++ b/bundle/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.39 + 2.15.40-SNAPSHOT bundle jar diff --git a/codegen-lite-maven-plugin/pom.xml b/codegen-lite-maven-plugin/pom.xml index 6ae79b4dc341..a071b0fd253d 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.15.39 + 2.15.40-SNAPSHOT ../pom.xml codegen-lite-maven-plugin diff --git a/codegen-lite/pom.xml b/codegen-lite/pom.xml index edc53a8739b8..9434a1e8e4a2 100644 --- a/codegen-lite/pom.xml +++ b/codegen-lite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.39 + 2.15.40-SNAPSHOT codegen-lite AWS Java SDK :: Code Generator Lite diff --git a/codegen-maven-plugin/pom.xml b/codegen-maven-plugin/pom.xml index 90abd1c84b9c..6e1d6d25e5b6 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.15.39 + 2.15.40-SNAPSHOT ../pom.xml codegen-maven-plugin diff --git a/codegen/pom.xml b/codegen/pom.xml index f79845122c8c..d9d6248df79a 100644 --- a/codegen/pom.xml +++ b/codegen/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.39 + 2.15.40-SNAPSHOT codegen AWS Java SDK :: Code Generator diff --git a/core/annotations/pom.xml b/core/annotations/pom.xml index 93f0b5d7603f..dfcd479134d8 100644 --- a/core/annotations/pom.xml +++ b/core/annotations/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 diff --git a/core/arns/pom.xml b/core/arns/pom.xml index a58a0ad491c2..3d349cda91ab 100644 --- a/core/arns/pom.xml +++ b/core/arns/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 diff --git a/core/auth/pom.xml b/core/auth/pom.xml index 2e6cc2bc3e06..3983250b61c2 100644 --- a/core/auth/pom.xml +++ b/core/auth/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.39 + 2.15.40-SNAPSHOT auth diff --git a/core/aws-core/pom.xml b/core/aws-core/pom.xml index d058db6d232f..0d2e874074c7 100644 --- a/core/aws-core/pom.xml +++ b/core/aws-core/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.39 + 2.15.40-SNAPSHOT aws-core diff --git a/core/metrics-spi/pom.xml b/core/metrics-spi/pom.xml index 2e7cabce38c4..d90aea8cfbf3 100644 --- a/core/metrics-spi/pom.xml +++ b/core/metrics-spi/pom.xml @@ -5,7 +5,7 @@ core software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 diff --git a/core/pom.xml b/core/pom.xml index a21abe85ce16..82acaafa6716 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT core diff --git a/core/profiles/pom.xml b/core/profiles/pom.xml index 8dc208db211f..10feec04f8fa 100644 --- a/core/profiles/pom.xml +++ b/core/profiles/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.39 + 2.15.40-SNAPSHOT profiles diff --git a/core/protocols/aws-cbor-protocol/pom.xml b/core/protocols/aws-cbor-protocol/pom.xml index 604212300c32..b2ea7756b013 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.15.39 + 2.15.40-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-ion-protocol/pom.xml b/core/protocols/aws-ion-protocol/pom.xml index c3286908f211..d4255b0a0120 100644 --- a/core/protocols/aws-ion-protocol/pom.xml +++ b/core/protocols/aws-ion-protocol/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-json-protocol/pom.xml b/core/protocols/aws-json-protocol/pom.xml index f847eb44746b..f7f2bb1af105 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.15.39 + 2.15.40-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-query-protocol/pom.xml b/core/protocols/aws-query-protocol/pom.xml index 8023f3b9745f..2c998138e1ca 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.15.39 + 2.15.40-SNAPSHOT 4.0.0 diff --git a/core/protocols/aws-xml-protocol/pom.xml b/core/protocols/aws-xml-protocol/pom.xml index 8e756b4222a7..393b1feb0335 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.15.39 + 2.15.40-SNAPSHOT 4.0.0 diff --git a/core/protocols/pom.xml b/core/protocols/pom.xml index 2f1b9ec6170e..b97549e8822d 100644 --- a/core/protocols/pom.xml +++ b/core/protocols/pom.xml @@ -20,7 +20,7 @@ core software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 diff --git a/core/protocols/protocol-core/pom.xml b/core/protocols/protocol-core/pom.xml index 2577e59459f8..0b03a96dc651 100644 --- a/core/protocols/protocol-core/pom.xml +++ b/core/protocols/protocol-core/pom.xml @@ -20,7 +20,7 @@ protocols software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 diff --git a/core/regions/pom.xml b/core/regions/pom.xml index 5ade508b36ea..f9a57f55b691 100644 --- a/core/regions/pom.xml +++ b/core/regions/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk core - 2.15.39 + 2.15.40-SNAPSHOT regions diff --git a/core/sdk-core/pom.xml b/core/sdk-core/pom.xml index 53dd016886d2..da72b9efcc75 100644 --- a/core/sdk-core/pom.xml +++ b/core/sdk-core/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk core - 2.15.39 + 2.15.40-SNAPSHOT sdk-core AWS Java SDK :: SDK Core diff --git a/http-client-spi/pom.xml b/http-client-spi/pom.xml index 934a3418927a..f36fbae800b4 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.15.39 + 2.15.40-SNAPSHOT http-client-spi AWS Java SDK :: HTTP Client Interface diff --git a/http-clients/apache-client/pom.xml b/http-clients/apache-client/pom.xml index 22d5be5cb5a8..3205a3ef1d13 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.15.39 + 2.15.40-SNAPSHOT apache-client diff --git a/http-clients/aws-crt-client/pom.xml b/http-clients/aws-crt-client/pom.xml index bbd5a61c747f..e23cde44e602 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.15.39 + 2.15.40-SNAPSHOT 4.0.0 diff --git a/http-clients/netty-nio-client/pom.xml b/http-clients/netty-nio-client/pom.xml index e94ad93cd6e7..aa1fba8633de 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.15.39 + 2.15.40-SNAPSHOT 4.0.0 diff --git a/http-clients/pom.xml b/http-clients/pom.xml index f8ec2572f7c4..07b259995857 100644 --- a/http-clients/pom.xml +++ b/http-clients/pom.xml @@ -21,7 +21,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 diff --git a/http-clients/url-connection-client/pom.xml b/http-clients/url-connection-client/pom.xml index f804765bb6af..e79fe478d143 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.15.39 + 2.15.40-SNAPSHOT 4.0.0 diff --git a/metric-publishers/cloudwatch-metric-publisher/pom.xml b/metric-publishers/cloudwatch-metric-publisher/pom.xml index d97c7638cd90..060dd6153719 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.15.39 + 2.15.40-SNAPSHOT cloudwatch-metric-publisher diff --git a/metric-publishers/pom.xml b/metric-publishers/pom.xml index 7831d6d31095..5a054b3ae939 100644 --- a/metric-publishers/pom.xml +++ b/metric-publishers/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.39 + 2.15.40-SNAPSHOT metric-publishers diff --git a/pom.xml b/pom.xml index 533052a543e7..5c68f33a7406 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ 4.0.0 software.amazon.awssdk aws-sdk-java-pom - 2.15.39 + 2.15.40-SNAPSHOT pom AWS Java SDK :: Parent The Amazon Web Services SDK for Java provides Java APIs diff --git a/release-scripts/pom.xml b/release-scripts/pom.xml index 6b360d8df8bd..10bee1dbc1e7 100644 --- a/release-scripts/pom.xml +++ b/release-scripts/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.39 + 2.15.40-SNAPSHOT ../pom.xml release-scripts diff --git a/services-custom/dynamodb-enhanced/pom.xml b/services-custom/dynamodb-enhanced/pom.xml index 7eb30b12bab2..963095cf2c7c 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.15.39 + 2.15.40-SNAPSHOT dynamodb-enhanced ${awsjavasdk.version} diff --git a/services-custom/pom.xml b/services-custom/pom.xml index 54aec559cf13..d0e71e3094dd 100644 --- a/services-custom/pom.xml +++ b/services-custom/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.39 + 2.15.40-SNAPSHOT services-custom AWS Java SDK :: Custom Services diff --git a/services/accessanalyzer/pom.xml b/services/accessanalyzer/pom.xml index 2c5dbe1439f5..4e201bad37ac 100644 --- a/services/accessanalyzer/pom.xml +++ b/services/accessanalyzer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT accessanalyzer AWS Java SDK :: Services :: AccessAnalyzer diff --git a/services/acm/pom.xml b/services/acm/pom.xml index d36b01582aff..5c5ef272d6bc 100644 --- a/services/acm/pom.xml +++ b/services/acm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT acm AWS Java SDK :: Services :: AWS Certificate Manager diff --git a/services/acmpca/pom.xml b/services/acmpca/pom.xml index caaeb058d81d..c3e5b24012f3 100644 --- a/services/acmpca/pom.xml +++ b/services/acmpca/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT acmpca AWS Java SDK :: Services :: ACM PCA diff --git a/services/alexaforbusiness/pom.xml b/services/alexaforbusiness/pom.xml index 240cb8f4bf67..aa1fd6de5dfb 100644 --- a/services/alexaforbusiness/pom.xml +++ b/services/alexaforbusiness/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 alexaforbusiness diff --git a/services/amplify/pom.xml b/services/amplify/pom.xml index be322baa2f46..bd614ac8ed39 100644 --- a/services/amplify/pom.xml +++ b/services/amplify/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT amplify AWS Java SDK :: Services :: Amplify diff --git a/services/amplifybackend/pom.xml b/services/amplifybackend/pom.xml index 50d76385cb58..bbf2cabf280c 100644 --- a/services/amplifybackend/pom.xml +++ b/services/amplifybackend/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT amplifybackend AWS Java SDK :: Services :: Amplify Backend diff --git a/services/apigateway/pom.xml b/services/apigateway/pom.xml index e9707e506184..8f3b7e01495c 100644 --- a/services/apigateway/pom.xml +++ b/services/apigateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT apigateway AWS Java SDK :: Services :: Amazon API Gateway diff --git a/services/apigatewaymanagementapi/pom.xml b/services/apigatewaymanagementapi/pom.xml index 04536fa85c0c..3b10e1157aa0 100644 --- a/services/apigatewaymanagementapi/pom.xml +++ b/services/apigatewaymanagementapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT apigatewaymanagementapi AWS Java SDK :: Services :: ApiGatewayManagementApi diff --git a/services/apigatewayv2/pom.xml b/services/apigatewayv2/pom.xml index f80c57639199..5805605f16aa 100644 --- a/services/apigatewayv2/pom.xml +++ b/services/apigatewayv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT apigatewayv2 AWS Java SDK :: Services :: ApiGatewayV2 diff --git a/services/appconfig/pom.xml b/services/appconfig/pom.xml index 8388a5850361..da184118e214 100644 --- a/services/appconfig/pom.xml +++ b/services/appconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT appconfig AWS Java SDK :: Services :: AppConfig diff --git a/services/appflow/pom.xml b/services/appflow/pom.xml index f88f0c0693ba..0011992ae079 100644 --- a/services/appflow/pom.xml +++ b/services/appflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT appflow AWS Java SDK :: Services :: Appflow diff --git a/services/appintegrations/pom.xml b/services/appintegrations/pom.xml index f73252a52ab8..74e86092d2f1 100644 --- a/services/appintegrations/pom.xml +++ b/services/appintegrations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT appintegrations AWS Java SDK :: Services :: App Integrations diff --git a/services/applicationautoscaling/pom.xml b/services/applicationautoscaling/pom.xml index 0a387a863a7b..c325c13913f0 100644 --- a/services/applicationautoscaling/pom.xml +++ b/services/applicationautoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT applicationautoscaling AWS Java SDK :: Services :: AWS Application Auto Scaling diff --git a/services/applicationdiscovery/pom.xml b/services/applicationdiscovery/pom.xml index a1c2cc3e95d0..0c2bbbe1f1b0 100644 --- a/services/applicationdiscovery/pom.xml +++ b/services/applicationdiscovery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT applicationdiscovery AWS Java SDK :: Services :: AWS Application Discovery Service diff --git a/services/applicationinsights/pom.xml b/services/applicationinsights/pom.xml index a184a945bdff..f0dcf5ff8437 100644 --- a/services/applicationinsights/pom.xml +++ b/services/applicationinsights/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT applicationinsights AWS Java SDK :: Services :: Application Insights diff --git a/services/appmesh/pom.xml b/services/appmesh/pom.xml index 77dd82969861..901dd4716a43 100644 --- a/services/appmesh/pom.xml +++ b/services/appmesh/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT appmesh AWS Java SDK :: Services :: App Mesh diff --git a/services/appstream/pom.xml b/services/appstream/pom.xml index 7b9f85244e2b..2c9020d9b1e6 100644 --- a/services/appstream/pom.xml +++ b/services/appstream/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT appstream AWS Java SDK :: Services :: Amazon AppStream diff --git a/services/appsync/pom.xml b/services/appsync/pom.xml index f20622d5bfc7..06b0fc64396c 100644 --- a/services/appsync/pom.xml +++ b/services/appsync/pom.xml @@ -21,7 +21,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT appsync diff --git a/services/athena/pom.xml b/services/athena/pom.xml index d608d07fbe16..ef57bb5b2366 100644 --- a/services/athena/pom.xml +++ b/services/athena/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT athena AWS Java SDK :: Services :: Amazon Athena diff --git a/services/autoscaling/pom.xml b/services/autoscaling/pom.xml index 1d39ff9eaa8a..54eca885a89b 100644 --- a/services/autoscaling/pom.xml +++ b/services/autoscaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT autoscaling AWS Java SDK :: Services :: Auto Scaling diff --git a/services/autoscalingplans/pom.xml b/services/autoscalingplans/pom.xml index 12e2524f8089..0fd2a4599e24 100644 --- a/services/autoscalingplans/pom.xml +++ b/services/autoscalingplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT autoscalingplans AWS Java SDK :: Services :: Auto Scaling Plans diff --git a/services/backup/pom.xml b/services/backup/pom.xml index 2428faa7f15d..916215efad5d 100644 --- a/services/backup/pom.xml +++ b/services/backup/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT backup AWS Java SDK :: Services :: Backup diff --git a/services/batch/pom.xml b/services/batch/pom.xml index aaea0c2e7a61..53099c9eb45e 100644 --- a/services/batch/pom.xml +++ b/services/batch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT batch AWS Java SDK :: Services :: AWS Batch diff --git a/services/braket/pom.xml b/services/braket/pom.xml index b67c03cd2ec6..8670f963bd85 100644 --- a/services/braket/pom.xml +++ b/services/braket/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT braket AWS Java SDK :: Services :: Braket diff --git a/services/budgets/pom.xml b/services/budgets/pom.xml index ba9d8c40c1b4..3c65f167ef37 100644 --- a/services/budgets/pom.xml +++ b/services/budgets/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT budgets AWS Java SDK :: Services :: AWS Budgets diff --git a/services/chime/pom.xml b/services/chime/pom.xml index 4ee4b89ef77d..304eb42832f7 100644 --- a/services/chime/pom.xml +++ b/services/chime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT chime AWS Java SDK :: Services :: Chime diff --git a/services/cloud9/pom.xml b/services/cloud9/pom.xml index a7b4c81f5b5c..2c71ea18cce5 100644 --- a/services/cloud9/pom.xml +++ b/services/cloud9/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 cloud9 diff --git a/services/clouddirectory/pom.xml b/services/clouddirectory/pom.xml index fc76d3e52244..f0b0b798c975 100644 --- a/services/clouddirectory/pom.xml +++ b/services/clouddirectory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT clouddirectory AWS Java SDK :: Services :: Amazon CloudDirectory diff --git a/services/cloudformation/pom.xml b/services/cloudformation/pom.xml index 777361c8e65a..c8ee7f1f00cc 100644 --- a/services/cloudformation/pom.xml +++ b/services/cloudformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT cloudformation AWS Java SDK :: Services :: AWS CloudFormation diff --git a/services/cloudfront/pom.xml b/services/cloudfront/pom.xml index b9b2b742ce22..ecbe46c82f83 100644 --- a/services/cloudfront/pom.xml +++ b/services/cloudfront/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT cloudfront AWS Java SDK :: Services :: Amazon CloudFront diff --git a/services/cloudhsm/pom.xml b/services/cloudhsm/pom.xml index 5851300fd0c9..c387ef3b7a16 100644 --- a/services/cloudhsm/pom.xml +++ b/services/cloudhsm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT cloudhsm AWS Java SDK :: Services :: AWS CloudHSM diff --git a/services/cloudhsmv2/pom.xml b/services/cloudhsmv2/pom.xml index f1e70c1df0e8..23917d95aa2c 100644 --- a/services/cloudhsmv2/pom.xml +++ b/services/cloudhsmv2/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 cloudhsmv2 diff --git a/services/cloudsearch/pom.xml b/services/cloudsearch/pom.xml index a168f6b467ad..c000a3f73403 100644 --- a/services/cloudsearch/pom.xml +++ b/services/cloudsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT cloudsearch AWS Java SDK :: Services :: Amazon CloudSearch diff --git a/services/cloudsearchdomain/pom.xml b/services/cloudsearchdomain/pom.xml index 9b2fc4fd4de6..8a5b1457bc7f 100644 --- a/services/cloudsearchdomain/pom.xml +++ b/services/cloudsearchdomain/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT cloudsearchdomain AWS Java SDK :: Services :: Amazon CloudSearch Domain diff --git a/services/cloudtrail/pom.xml b/services/cloudtrail/pom.xml index c7ae6ec8581a..d06973f96d64 100644 --- a/services/cloudtrail/pom.xml +++ b/services/cloudtrail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT cloudtrail AWS Java SDK :: Services :: AWS CloudTrail diff --git a/services/cloudwatch/pom.xml b/services/cloudwatch/pom.xml index 5f8b47a7ba7d..492eada45706 100644 --- a/services/cloudwatch/pom.xml +++ b/services/cloudwatch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT cloudwatch AWS Java SDK :: Services :: Amazon CloudWatch diff --git a/services/cloudwatchevents/pom.xml b/services/cloudwatchevents/pom.xml index 28d43d9f7442..19b79b407884 100644 --- a/services/cloudwatchevents/pom.xml +++ b/services/cloudwatchevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT cloudwatchevents AWS Java SDK :: Services :: Amazon CloudWatch Events diff --git a/services/cloudwatchlogs/pom.xml b/services/cloudwatchlogs/pom.xml index 89efbaefa315..ceda6068616a 100644 --- a/services/cloudwatchlogs/pom.xml +++ b/services/cloudwatchlogs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT cloudwatchlogs AWS Java SDK :: Services :: Amazon CloudWatch Logs diff --git a/services/codeartifact/pom.xml b/services/codeartifact/pom.xml index eae64958b54d..b8009c79ebf4 100644 --- a/services/codeartifact/pom.xml +++ b/services/codeartifact/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT codeartifact AWS Java SDK :: Services :: Codeartifact diff --git a/services/codebuild/pom.xml b/services/codebuild/pom.xml index e86e4ac9649f..73e16bebfadb 100644 --- a/services/codebuild/pom.xml +++ b/services/codebuild/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT codebuild AWS Java SDK :: Services :: AWS Code Build diff --git a/services/codecommit/pom.xml b/services/codecommit/pom.xml index 0bed2808614e..29e0e36b7267 100644 --- a/services/codecommit/pom.xml +++ b/services/codecommit/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT codecommit AWS Java SDK :: Services :: AWS CodeCommit diff --git a/services/codedeploy/pom.xml b/services/codedeploy/pom.xml index b8038313ab92..12d28dfba117 100644 --- a/services/codedeploy/pom.xml +++ b/services/codedeploy/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT codedeploy AWS Java SDK :: Services :: AWS CodeDeploy diff --git a/services/codeguruprofiler/pom.xml b/services/codeguruprofiler/pom.xml index af9fdc2d0b86..47199134dc80 100644 --- a/services/codeguruprofiler/pom.xml +++ b/services/codeguruprofiler/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT codeguruprofiler AWS Java SDK :: Services :: CodeGuruProfiler diff --git a/services/codegurureviewer/pom.xml b/services/codegurureviewer/pom.xml index ee94468eaaa4..942ce88e2617 100644 --- a/services/codegurureviewer/pom.xml +++ b/services/codegurureviewer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT codegurureviewer AWS Java SDK :: Services :: CodeGuru Reviewer diff --git a/services/codepipeline/pom.xml b/services/codepipeline/pom.xml index f468b0897fd5..3e7a2ce4feea 100644 --- a/services/codepipeline/pom.xml +++ b/services/codepipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT codepipeline AWS Java SDK :: Services :: AWS CodePipeline diff --git a/services/codestar/pom.xml b/services/codestar/pom.xml index 19cb6151989a..a8a5657ec7a9 100644 --- a/services/codestar/pom.xml +++ b/services/codestar/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT codestar AWS Java SDK :: Services :: AWS CodeStar diff --git a/services/codestarconnections/pom.xml b/services/codestarconnections/pom.xml index e02e095c22cb..b51bd6954da9 100644 --- a/services/codestarconnections/pom.xml +++ b/services/codestarconnections/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT codestarconnections AWS Java SDK :: Services :: CodeStar connections diff --git a/services/codestarnotifications/pom.xml b/services/codestarnotifications/pom.xml index 402420ee21ee..f3ebcd8376fa 100644 --- a/services/codestarnotifications/pom.xml +++ b/services/codestarnotifications/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT codestarnotifications AWS Java SDK :: Services :: Codestar Notifications diff --git a/services/cognitoidentity/pom.xml b/services/cognitoidentity/pom.xml index c31a75746d87..a78d861e2a25 100644 --- a/services/cognitoidentity/pom.xml +++ b/services/cognitoidentity/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT cognitoidentity AWS Java SDK :: Services :: Amazon Cognito Identity diff --git a/services/cognitoidentityprovider/pom.xml b/services/cognitoidentityprovider/pom.xml index a113d1cf5b00..c0c2918374ad 100644 --- a/services/cognitoidentityprovider/pom.xml +++ b/services/cognitoidentityprovider/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT cognitoidentityprovider AWS Java SDK :: Services :: Amazon Cognito Identity Provider Service diff --git a/services/cognitosync/pom.xml b/services/cognitosync/pom.xml index a31f3520ce36..14f91daf5ec0 100644 --- a/services/cognitosync/pom.xml +++ b/services/cognitosync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT cognitosync AWS Java SDK :: Services :: Amazon Cognito Sync diff --git a/services/comprehend/pom.xml b/services/comprehend/pom.xml index abb07d20ac8a..337077bff7ca 100644 --- a/services/comprehend/pom.xml +++ b/services/comprehend/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 comprehend diff --git a/services/comprehendmedical/pom.xml b/services/comprehendmedical/pom.xml index ea2f021a397c..018612c3342e 100644 --- a/services/comprehendmedical/pom.xml +++ b/services/comprehendmedical/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT comprehendmedical AWS Java SDK :: Services :: ComprehendMedical diff --git a/services/computeoptimizer/pom.xml b/services/computeoptimizer/pom.xml index 793fd563d9b3..3a823729bb9e 100644 --- a/services/computeoptimizer/pom.xml +++ b/services/computeoptimizer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT computeoptimizer AWS Java SDK :: Services :: Compute Optimizer diff --git a/services/config/pom.xml b/services/config/pom.xml index 4f160c7fcf48..edb6b8d219b7 100644 --- a/services/config/pom.xml +++ b/services/config/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT config AWS Java SDK :: Services :: AWS Config diff --git a/services/connect/pom.xml b/services/connect/pom.xml index 5c5dc6575c21..cc6c1f7c7f94 100644 --- a/services/connect/pom.xml +++ b/services/connect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT connect AWS Java SDK :: Services :: Connect diff --git a/services/connectcontactlens/pom.xml b/services/connectcontactlens/pom.xml index d083854cdd93..4f3c0189c99f 100644 --- a/services/connectcontactlens/pom.xml +++ b/services/connectcontactlens/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT connectcontactlens AWS Java SDK :: Services :: Connect Contact Lens diff --git a/services/connectparticipant/pom.xml b/services/connectparticipant/pom.xml index b799d026c76d..4b59dbab1542 100644 --- a/services/connectparticipant/pom.xml +++ b/services/connectparticipant/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT connectparticipant AWS Java SDK :: Services :: ConnectParticipant diff --git a/services/costandusagereport/pom.xml b/services/costandusagereport/pom.xml index 75221c9dcb84..2c269f39a7ca 100644 --- a/services/costandusagereport/pom.xml +++ b/services/costandusagereport/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT costandusagereport AWS Java SDK :: Services :: AWS Cost and Usage Report diff --git a/services/costexplorer/pom.xml b/services/costexplorer/pom.xml index d575e4b41392..65d8fda262a7 100644 --- a/services/costexplorer/pom.xml +++ b/services/costexplorer/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 costexplorer diff --git a/services/customerprofiles/pom.xml b/services/customerprofiles/pom.xml index 556af3e899da..83abda71c5d1 100644 --- a/services/customerprofiles/pom.xml +++ b/services/customerprofiles/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT customerprofiles AWS Java SDK :: Services :: Customer Profiles diff --git a/services/databasemigration/pom.xml b/services/databasemigration/pom.xml index 1ca0a1e36cda..fa8507fc9410 100644 --- a/services/databasemigration/pom.xml +++ b/services/databasemigration/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT databasemigration AWS Java SDK :: Services :: AWS Database Migration Service diff --git a/services/databrew/pom.xml b/services/databrew/pom.xml index 1fdee234ae9b..8cbb34dbeec8 100644 --- a/services/databrew/pom.xml +++ b/services/databrew/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT databrew AWS Java SDK :: Services :: Data Brew diff --git a/services/dataexchange/pom.xml b/services/dataexchange/pom.xml index 72aae9ed9183..eed4708da8cf 100644 --- a/services/dataexchange/pom.xml +++ b/services/dataexchange/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT dataexchange AWS Java SDK :: Services :: DataExchange diff --git a/services/datapipeline/pom.xml b/services/datapipeline/pom.xml index 81c570ba004d..2611e46988b8 100644 --- a/services/datapipeline/pom.xml +++ b/services/datapipeline/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT datapipeline AWS Java SDK :: Services :: AWS Data Pipeline diff --git a/services/datasync/pom.xml b/services/datasync/pom.xml index a1bc85dbc87a..975794aec362 100644 --- a/services/datasync/pom.xml +++ b/services/datasync/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT datasync AWS Java SDK :: Services :: DataSync diff --git a/services/dax/pom.xml b/services/dax/pom.xml index 1c11288d38b9..e09af90c29ef 100644 --- a/services/dax/pom.xml +++ b/services/dax/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT dax AWS Java SDK :: Services :: Amazon DynamoDB Accelerator (DAX) diff --git a/services/detective/pom.xml b/services/detective/pom.xml index 8fe7b9b40ac4..2469f52a380b 100644 --- a/services/detective/pom.xml +++ b/services/detective/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT detective AWS Java SDK :: Services :: Detective diff --git a/services/devicefarm/pom.xml b/services/devicefarm/pom.xml index 102e7db8d057..b8b936f74573 100644 --- a/services/devicefarm/pom.xml +++ b/services/devicefarm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT devicefarm AWS Java SDK :: Services :: AWS Device Farm diff --git a/services/devopsguru/pom.xml b/services/devopsguru/pom.xml index 12e7413927da..05416cd8ecff 100644 --- a/services/devopsguru/pom.xml +++ b/services/devopsguru/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT devopsguru AWS Java SDK :: Services :: Dev Ops Guru diff --git a/services/directconnect/pom.xml b/services/directconnect/pom.xml index 2eaf57dd7dd9..cf17bcba2c45 100644 --- a/services/directconnect/pom.xml +++ b/services/directconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT directconnect AWS Java SDK :: Services :: AWS Direct Connect diff --git a/services/directory/pom.xml b/services/directory/pom.xml index 71209681cb75..c8e3254fbb7a 100644 --- a/services/directory/pom.xml +++ b/services/directory/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT directory AWS Java SDK :: Services :: AWS Directory Service diff --git a/services/dlm/pom.xml b/services/dlm/pom.xml index a838667006f0..332dcfe5ed06 100644 --- a/services/dlm/pom.xml +++ b/services/dlm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT dlm AWS Java SDK :: Services :: DLM diff --git a/services/docdb/pom.xml b/services/docdb/pom.xml index 572c4dd011eb..082cd1059e98 100644 --- a/services/docdb/pom.xml +++ b/services/docdb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT docdb AWS Java SDK :: Services :: DocDB diff --git a/services/dynamodb/pom.xml b/services/dynamodb/pom.xml index 54a3e1d07abd..f4517b180827 100644 --- a/services/dynamodb/pom.xml +++ b/services/dynamodb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT dynamodb AWS Java SDK :: Services :: Amazon DynamoDB diff --git a/services/ebs/pom.xml b/services/ebs/pom.xml index cfcc815dca42..76583a2b901b 100644 --- a/services/ebs/pom.xml +++ b/services/ebs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT ebs AWS Java SDK :: Services :: EBS diff --git a/services/ec2/pom.xml b/services/ec2/pom.xml index 6d3c749b7db8..0d5f786b005c 100644 --- a/services/ec2/pom.xml +++ b/services/ec2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT ec2 AWS Java SDK :: Services :: Amazon EC2 diff --git a/services/ec2instanceconnect/pom.xml b/services/ec2instanceconnect/pom.xml index 50ec6f698437..2f31c2576240 100644 --- a/services/ec2instanceconnect/pom.xml +++ b/services/ec2instanceconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT ec2instanceconnect AWS Java SDK :: Services :: EC2 Instance Connect diff --git a/services/ecr/pom.xml b/services/ecr/pom.xml index 9ce8241852ce..7679178b44b5 100644 --- a/services/ecr/pom.xml +++ b/services/ecr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT ecr AWS Java SDK :: Services :: Amazon EC2 Container Registry diff --git a/services/ecrpublic/pom.xml b/services/ecrpublic/pom.xml index 4a8a87279624..97a2ef7304a9 100644 --- a/services/ecrpublic/pom.xml +++ b/services/ecrpublic/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT ecrpublic AWS Java SDK :: Services :: ECR PUBLIC diff --git a/services/ecs/pom.xml b/services/ecs/pom.xml index 03ac0b612045..fc98735e8628 100644 --- a/services/ecs/pom.xml +++ b/services/ecs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT ecs AWS Java SDK :: Services :: Amazon EC2 Container Service diff --git a/services/efs/pom.xml b/services/efs/pom.xml index f50c7bdba641..081907ef0e5c 100644 --- a/services/efs/pom.xml +++ b/services/efs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT efs AWS Java SDK :: Services :: Amazon Elastic File System diff --git a/services/eks/pom.xml b/services/eks/pom.xml index feb5447d604e..f32b9ec9f02c 100644 --- a/services/eks/pom.xml +++ b/services/eks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT eks AWS Java SDK :: Services :: EKS diff --git a/services/elasticache/pom.xml b/services/elasticache/pom.xml index cde414903a4e..44e1db9489f7 100644 --- a/services/elasticache/pom.xml +++ b/services/elasticache/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT elasticache AWS Java SDK :: Services :: Amazon ElastiCache diff --git a/services/elasticbeanstalk/pom.xml b/services/elasticbeanstalk/pom.xml index 10add2f56ccf..14cc64324b6b 100644 --- a/services/elasticbeanstalk/pom.xml +++ b/services/elasticbeanstalk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT elasticbeanstalk AWS Java SDK :: Services :: AWS Elastic Beanstalk diff --git a/services/elasticinference/pom.xml b/services/elasticinference/pom.xml index 3bb951ab6b7e..3f56a7fcd5d7 100644 --- a/services/elasticinference/pom.xml +++ b/services/elasticinference/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT elasticinference AWS Java SDK :: Services :: Elastic Inference diff --git a/services/elasticloadbalancing/pom.xml b/services/elasticloadbalancing/pom.xml index ec7b9f5e863a..af3b1a66683b 100644 --- a/services/elasticloadbalancing/pom.xml +++ b/services/elasticloadbalancing/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT elasticloadbalancing AWS Java SDK :: Services :: Elastic Load Balancing diff --git a/services/elasticloadbalancingv2/pom.xml b/services/elasticloadbalancingv2/pom.xml index 5e260d15f85c..e36370c1ab2b 100644 --- a/services/elasticloadbalancingv2/pom.xml +++ b/services/elasticloadbalancingv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT elasticloadbalancingv2 AWS Java SDK :: Services :: Elastic Load Balancing V2 diff --git a/services/elasticsearch/pom.xml b/services/elasticsearch/pom.xml index 2cc860bfda75..bb928d800ea7 100644 --- a/services/elasticsearch/pom.xml +++ b/services/elasticsearch/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT elasticsearch AWS Java SDK :: Services :: Amazon Elasticsearch Service diff --git a/services/elastictranscoder/pom.xml b/services/elastictranscoder/pom.xml index 353699f424e1..ea76eeffe71a 100644 --- a/services/elastictranscoder/pom.xml +++ b/services/elastictranscoder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT elastictranscoder AWS Java SDK :: Services :: Amazon Elastic Transcoder diff --git a/services/emr/pom.xml b/services/emr/pom.xml index 0917eb9103af..756e3ee2b2d7 100644 --- a/services/emr/pom.xml +++ b/services/emr/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT emr AWS Java SDK :: Services :: Amazon EMR diff --git a/services/eventbridge/pom.xml b/services/eventbridge/pom.xml index b983f99b8ac6..666952feac82 100644 --- a/services/eventbridge/pom.xml +++ b/services/eventbridge/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT eventbridge AWS Java SDK :: Services :: EventBridge diff --git a/services/firehose/pom.xml b/services/firehose/pom.xml index b741b0d28c16..739df82d74e5 100644 --- a/services/firehose/pom.xml +++ b/services/firehose/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT firehose AWS Java SDK :: Services :: Amazon Kinesis Firehose diff --git a/services/fms/pom.xml b/services/fms/pom.xml index ceb7f96c5165..cf3fd1a5519b 100644 --- a/services/fms/pom.xml +++ b/services/fms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT fms AWS Java SDK :: Services :: FMS diff --git a/services/forecast/pom.xml b/services/forecast/pom.xml index 92a88ff12289..185a4cc9c2dd 100644 --- a/services/forecast/pom.xml +++ b/services/forecast/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT forecast AWS Java SDK :: Services :: Forecast diff --git a/services/forecastquery/pom.xml b/services/forecastquery/pom.xml index 82b0888ecc57..61ffb0d741c6 100644 --- a/services/forecastquery/pom.xml +++ b/services/forecastquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT forecastquery AWS Java SDK :: Services :: Forecastquery diff --git a/services/frauddetector/pom.xml b/services/frauddetector/pom.xml index b2a91f920d37..f3bff36ba45d 100644 --- a/services/frauddetector/pom.xml +++ b/services/frauddetector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT frauddetector AWS Java SDK :: Services :: FraudDetector diff --git a/services/fsx/pom.xml b/services/fsx/pom.xml index 7773cd8ddae5..c618c13658e0 100644 --- a/services/fsx/pom.xml +++ b/services/fsx/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT fsx AWS Java SDK :: Services :: FSx diff --git a/services/gamelift/pom.xml b/services/gamelift/pom.xml index 448c1cfb18d8..baefd6dfe4ba 100644 --- a/services/gamelift/pom.xml +++ b/services/gamelift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT gamelift AWS Java SDK :: Services :: AWS GameLift diff --git a/services/glacier/pom.xml b/services/glacier/pom.xml index fd8d528dc727..11ebc3fffa5b 100644 --- a/services/glacier/pom.xml +++ b/services/glacier/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT glacier AWS Java SDK :: Services :: Amazon Glacier diff --git a/services/globalaccelerator/pom.xml b/services/globalaccelerator/pom.xml index 04197402704c..c9a7e0725a7d 100644 --- a/services/globalaccelerator/pom.xml +++ b/services/globalaccelerator/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT globalaccelerator AWS Java SDK :: Services :: Global Accelerator diff --git a/services/glue/pom.xml b/services/glue/pom.xml index e444c87fafc5..73603dff6e04 100644 --- a/services/glue/pom.xml +++ b/services/glue/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 glue diff --git a/services/greengrass/pom.xml b/services/greengrass/pom.xml index 89504bdc10aa..19ba4168935d 100644 --- a/services/greengrass/pom.xml +++ b/services/greengrass/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT greengrass AWS Java SDK :: Services :: AWS Greengrass diff --git a/services/groundstation/pom.xml b/services/groundstation/pom.xml index d560bc59e830..237ee6a7c52c 100644 --- a/services/groundstation/pom.xml +++ b/services/groundstation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT groundstation AWS Java SDK :: Services :: GroundStation diff --git a/services/guardduty/pom.xml b/services/guardduty/pom.xml index af7bffd414ad..8ace7bfb7570 100644 --- a/services/guardduty/pom.xml +++ b/services/guardduty/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 guardduty diff --git a/services/health/pom.xml b/services/health/pom.xml index 2cbe0205cd47..14bd340aa4f7 100644 --- a/services/health/pom.xml +++ b/services/health/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT health AWS Java SDK :: Services :: AWS Health APIs and Notifications diff --git a/services/honeycode/pom.xml b/services/honeycode/pom.xml index 25fdf33fcef2..7d4597a7e977 100644 --- a/services/honeycode/pom.xml +++ b/services/honeycode/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT honeycode AWS Java SDK :: Services :: Honeycode diff --git a/services/iam/pom.xml b/services/iam/pom.xml index 811068cc5682..d8a58ceec580 100644 --- a/services/iam/pom.xml +++ b/services/iam/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT iam AWS Java SDK :: Services :: AWS IAM diff --git a/services/identitystore/pom.xml b/services/identitystore/pom.xml index ca1a429770b0..4412070880e4 100644 --- a/services/identitystore/pom.xml +++ b/services/identitystore/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT identitystore AWS Java SDK :: Services :: Identitystore diff --git a/services/imagebuilder/pom.xml b/services/imagebuilder/pom.xml index 44952eb10ca2..12ba09bc6171 100644 --- a/services/imagebuilder/pom.xml +++ b/services/imagebuilder/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT imagebuilder AWS Java SDK :: Services :: Imagebuilder diff --git a/services/inspector/pom.xml b/services/inspector/pom.xml index 6f513d5e7a64..eac7e2cb84cf 100644 --- a/services/inspector/pom.xml +++ b/services/inspector/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT inspector AWS Java SDK :: Services :: Amazon Inspector Service diff --git a/services/iot/pom.xml b/services/iot/pom.xml index 847b5c18092c..837e77cec490 100644 --- a/services/iot/pom.xml +++ b/services/iot/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT iot AWS Java SDK :: Services :: AWS IoT diff --git a/services/iot1clickdevices/pom.xml b/services/iot1clickdevices/pom.xml index eba91c778a58..3cde3cc2d1f8 100644 --- a/services/iot1clickdevices/pom.xml +++ b/services/iot1clickdevices/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT iot1clickdevices AWS Java SDK :: Services :: IoT 1Click Devices Service diff --git a/services/iot1clickprojects/pom.xml b/services/iot1clickprojects/pom.xml index 2ebf298d2ae2..19de1b60a18b 100644 --- a/services/iot1clickprojects/pom.xml +++ b/services/iot1clickprojects/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT iot1clickprojects AWS Java SDK :: Services :: IoT 1Click Projects diff --git a/services/iotanalytics/pom.xml b/services/iotanalytics/pom.xml index f19b746e0bd0..6b4eb16fbb33 100644 --- a/services/iotanalytics/pom.xml +++ b/services/iotanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT iotanalytics AWS Java SDK :: Services :: IoTAnalytics diff --git a/services/iotdataplane/pom.xml b/services/iotdataplane/pom.xml index b30f266ff41a..bd7746cfb3ad 100644 --- a/services/iotdataplane/pom.xml +++ b/services/iotdataplane/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT iotdataplane AWS Java SDK :: Services :: AWS IoT Data Plane diff --git a/services/iotevents/pom.xml b/services/iotevents/pom.xml index 26da3b71fc46..7c92f0cb6543 100644 --- a/services/iotevents/pom.xml +++ b/services/iotevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT iotevents AWS Java SDK :: Services :: IoT Events diff --git a/services/ioteventsdata/pom.xml b/services/ioteventsdata/pom.xml index 35d36d4cd864..b3ce1217ce82 100644 --- a/services/ioteventsdata/pom.xml +++ b/services/ioteventsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT ioteventsdata AWS Java SDK :: Services :: IoT Events Data diff --git a/services/iotjobsdataplane/pom.xml b/services/iotjobsdataplane/pom.xml index ddd84b8336f4..cb1a575d50ba 100644 --- a/services/iotjobsdataplane/pom.xml +++ b/services/iotjobsdataplane/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT iotjobsdataplane AWS Java SDK :: Services :: IoT Jobs Data Plane diff --git a/services/iotsecuretunneling/pom.xml b/services/iotsecuretunneling/pom.xml index 7a682bc290ef..f420a0916e9f 100644 --- a/services/iotsecuretunneling/pom.xml +++ b/services/iotsecuretunneling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT iotsecuretunneling AWS Java SDK :: Services :: IoTSecureTunneling diff --git a/services/iotsitewise/pom.xml b/services/iotsitewise/pom.xml index 8362976a1ab0..5058b6e9680e 100644 --- a/services/iotsitewise/pom.xml +++ b/services/iotsitewise/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT iotsitewise AWS Java SDK :: Services :: Io T Site Wise diff --git a/services/iotthingsgraph/pom.xml b/services/iotthingsgraph/pom.xml index 1478faf302cb..195da05dd925 100644 --- a/services/iotthingsgraph/pom.xml +++ b/services/iotthingsgraph/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT iotthingsgraph AWS Java SDK :: Services :: IoTThingsGraph diff --git a/services/ivs/pom.xml b/services/ivs/pom.xml index 019cd094e290..11779f003c13 100644 --- a/services/ivs/pom.xml +++ b/services/ivs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT ivs AWS Java SDK :: Services :: Ivs diff --git a/services/kafka/pom.xml b/services/kafka/pom.xml index 933dd2ba9dc8..7b4ded90f666 100644 --- a/services/kafka/pom.xml +++ b/services/kafka/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT kafka AWS Java SDK :: Services :: Kafka diff --git a/services/kendra/pom.xml b/services/kendra/pom.xml index 230f2b2acb48..eb2e0756c10a 100644 --- a/services/kendra/pom.xml +++ b/services/kendra/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT kendra AWS Java SDK :: Services :: Kendra diff --git a/services/kinesis/pom.xml b/services/kinesis/pom.xml index 2908bf119499..dd8800b2d639 100644 --- a/services/kinesis/pom.xml +++ b/services/kinesis/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT kinesis AWS Java SDK :: Services :: Amazon Kinesis diff --git a/services/kinesisanalytics/pom.xml b/services/kinesisanalytics/pom.xml index 0b9849a40b17..5e33733b67cd 100644 --- a/services/kinesisanalytics/pom.xml +++ b/services/kinesisanalytics/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT kinesisanalytics AWS Java SDK :: Services :: Amazon Kinesis Analytics diff --git a/services/kinesisanalyticsv2/pom.xml b/services/kinesisanalyticsv2/pom.xml index 873f94164fe3..5ad4262440c1 100644 --- a/services/kinesisanalyticsv2/pom.xml +++ b/services/kinesisanalyticsv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT kinesisanalyticsv2 AWS Java SDK :: Services :: Kinesis Analytics V2 diff --git a/services/kinesisvideo/pom.xml b/services/kinesisvideo/pom.xml index 5c1382903c25..24b72d0218b4 100644 --- a/services/kinesisvideo/pom.xml +++ b/services/kinesisvideo/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 kinesisvideo diff --git a/services/kinesisvideoarchivedmedia/pom.xml b/services/kinesisvideoarchivedmedia/pom.xml index b1c1502d7446..5f197cc9ca95 100644 --- a/services/kinesisvideoarchivedmedia/pom.xml +++ b/services/kinesisvideoarchivedmedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT kinesisvideoarchivedmedia AWS Java SDK :: Services :: Kinesis Video Archived Media diff --git a/services/kinesisvideomedia/pom.xml b/services/kinesisvideomedia/pom.xml index 60143e8ed96b..e57bf799a6f2 100644 --- a/services/kinesisvideomedia/pom.xml +++ b/services/kinesisvideomedia/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT kinesisvideomedia AWS Java SDK :: Services :: Kinesis Video Media diff --git a/services/kinesisvideosignaling/pom.xml b/services/kinesisvideosignaling/pom.xml index 6643bc6c2009..7e9358a57b34 100644 --- a/services/kinesisvideosignaling/pom.xml +++ b/services/kinesisvideosignaling/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT kinesisvideosignaling AWS Java SDK :: Services :: Kinesis Video Signaling diff --git a/services/kms/pom.xml b/services/kms/pom.xml index 1715276e23a3..fe1938dbffb9 100644 --- a/services/kms/pom.xml +++ b/services/kms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT kms AWS Java SDK :: Services :: AWS KMS diff --git a/services/lakeformation/pom.xml b/services/lakeformation/pom.xml index d3b902674cf3..6dbe0528d529 100644 --- a/services/lakeformation/pom.xml +++ b/services/lakeformation/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT lakeformation AWS Java SDK :: Services :: LakeFormation diff --git a/services/lambda/pom.xml b/services/lambda/pom.xml index 99f51789da50..20492d077f65 100644 --- a/services/lambda/pom.xml +++ b/services/lambda/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT lambda AWS Java SDK :: Services :: AWS Lambda diff --git a/services/lexmodelbuilding/pom.xml b/services/lexmodelbuilding/pom.xml index f1a69cbdc02f..76f01ebb3426 100644 --- a/services/lexmodelbuilding/pom.xml +++ b/services/lexmodelbuilding/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT lexmodelbuilding AWS Java SDK :: Services :: Amazon Lex Model Building diff --git a/services/lexruntime/pom.xml b/services/lexruntime/pom.xml index bc2b5bfa04bd..82e34a8f34a3 100644 --- a/services/lexruntime/pom.xml +++ b/services/lexruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT lexruntime AWS Java SDK :: Services :: Amazon Lex Runtime diff --git a/services/licensemanager/pom.xml b/services/licensemanager/pom.xml index df1c44e5dd0f..7831c0ecfd28 100644 --- a/services/licensemanager/pom.xml +++ b/services/licensemanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT licensemanager AWS Java SDK :: Services :: License Manager diff --git a/services/lightsail/pom.xml b/services/lightsail/pom.xml index 4d0b50db5fc9..c3d7debfeef6 100644 --- a/services/lightsail/pom.xml +++ b/services/lightsail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT lightsail AWS Java SDK :: Services :: Amazon Lightsail diff --git a/services/lookoutvision/pom.xml b/services/lookoutvision/pom.xml index 07a03bec146f..3d98ff7ea80f 100644 --- a/services/lookoutvision/pom.xml +++ b/services/lookoutvision/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT lookoutvision AWS Java SDK :: Services :: Lookout Vision diff --git a/services/machinelearning/pom.xml b/services/machinelearning/pom.xml index 964b7868f4e6..ab33aed70b31 100644 --- a/services/machinelearning/pom.xml +++ b/services/machinelearning/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT machinelearning AWS Java SDK :: Services :: Amazon Machine Learning diff --git a/services/macie/pom.xml b/services/macie/pom.xml index 38533001a821..8f99bd67a355 100644 --- a/services/macie/pom.xml +++ b/services/macie/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT macie AWS Java SDK :: Services :: Macie diff --git a/services/macie2/pom.xml b/services/macie2/pom.xml index 9101d79705c9..6e3d533cea4c 100644 --- a/services/macie2/pom.xml +++ b/services/macie2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT macie2 AWS Java SDK :: Services :: Macie2 diff --git a/services/managedblockchain/pom.xml b/services/managedblockchain/pom.xml index af0ea952637c..527593051bf4 100644 --- a/services/managedblockchain/pom.xml +++ b/services/managedblockchain/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT managedblockchain AWS Java SDK :: Services :: ManagedBlockchain diff --git a/services/marketplacecatalog/pom.xml b/services/marketplacecatalog/pom.xml index 7b973945d3e8..673686e85f61 100644 --- a/services/marketplacecatalog/pom.xml +++ b/services/marketplacecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT marketplacecatalog AWS Java SDK :: Services :: Marketplace Catalog diff --git a/services/marketplacecommerceanalytics/pom.xml b/services/marketplacecommerceanalytics/pom.xml index 563f04508b45..2eddca9c2376 100644 --- a/services/marketplacecommerceanalytics/pom.xml +++ b/services/marketplacecommerceanalytics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT marketplacecommerceanalytics AWS Java SDK :: Services :: AWS Marketplace Commerce Analytics diff --git a/services/marketplaceentitlement/pom.xml b/services/marketplaceentitlement/pom.xml index 8223c6d6ea35..f971bb7a9027 100644 --- a/services/marketplaceentitlement/pom.xml +++ b/services/marketplaceentitlement/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT marketplaceentitlement AWS Java SDK :: Services :: AWS Marketplace Entitlement diff --git a/services/marketplacemetering/pom.xml b/services/marketplacemetering/pom.xml index 25f80d77b6db..6249b7c9e198 100644 --- a/services/marketplacemetering/pom.xml +++ b/services/marketplacemetering/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT marketplacemetering AWS Java SDK :: Services :: AWS Marketplace Metering Service diff --git a/services/mediaconnect/pom.xml b/services/mediaconnect/pom.xml index b4dae61df07a..1d0b806ed618 100644 --- a/services/mediaconnect/pom.xml +++ b/services/mediaconnect/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT mediaconnect AWS Java SDK :: Services :: MediaConnect diff --git a/services/mediaconvert/pom.xml b/services/mediaconvert/pom.xml index a056ba8cdfb5..3f86a5581c5b 100644 --- a/services/mediaconvert/pom.xml +++ b/services/mediaconvert/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 mediaconvert diff --git a/services/medialive/pom.xml b/services/medialive/pom.xml index 24c1b2968bfd..1bfb0b99d091 100644 --- a/services/medialive/pom.xml +++ b/services/medialive/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 medialive diff --git a/services/mediapackage/pom.xml b/services/mediapackage/pom.xml index 9f382f692124..e2d9cf3ae7b4 100644 --- a/services/mediapackage/pom.xml +++ b/services/mediapackage/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 mediapackage diff --git a/services/mediapackagevod/pom.xml b/services/mediapackagevod/pom.xml index 871f2747211a..5cadbdec5752 100644 --- a/services/mediapackagevod/pom.xml +++ b/services/mediapackagevod/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT mediapackagevod AWS Java SDK :: Services :: MediaPackage Vod diff --git a/services/mediastore/pom.xml b/services/mediastore/pom.xml index fd6aa1e8fc9c..facc1dc1195c 100644 --- a/services/mediastore/pom.xml +++ b/services/mediastore/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 mediastore diff --git a/services/mediastoredata/pom.xml b/services/mediastoredata/pom.xml index 3a78e8218891..e4c61f1ba0b8 100644 --- a/services/mediastoredata/pom.xml +++ b/services/mediastoredata/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 mediastoredata diff --git a/services/mediatailor/pom.xml b/services/mediatailor/pom.xml index 8d4b1789cea1..af1e304473ff 100644 --- a/services/mediatailor/pom.xml +++ b/services/mediatailor/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT mediatailor AWS Java SDK :: Services :: MediaTailor diff --git a/services/migrationhub/pom.xml b/services/migrationhub/pom.xml index 6edbada476b3..de8f4df17f05 100644 --- a/services/migrationhub/pom.xml +++ b/services/migrationhub/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 migrationhub diff --git a/services/migrationhubconfig/pom.xml b/services/migrationhubconfig/pom.xml index 2e7dc1ca0e8a..31c26cfbd7a4 100644 --- a/services/migrationhubconfig/pom.xml +++ b/services/migrationhubconfig/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT migrationhubconfig AWS Java SDK :: Services :: MigrationHub Config diff --git a/services/mobile/pom.xml b/services/mobile/pom.xml index e235dab04ec3..4d6108d8b97b 100644 --- a/services/mobile/pom.xml +++ b/services/mobile/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 mobile diff --git a/services/mq/pom.xml b/services/mq/pom.xml index c05024c14257..e960925f053a 100644 --- a/services/mq/pom.xml +++ b/services/mq/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 mq diff --git a/services/mturk/pom.xml b/services/mturk/pom.xml index de9037fba672..7713239e32f2 100644 --- a/services/mturk/pom.xml +++ b/services/mturk/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT mturk AWS Java SDK :: Services :: Amazon Mechanical Turk Requester diff --git a/services/mwaa/pom.xml b/services/mwaa/pom.xml index 1c9fd65f4134..eb1fcc488082 100644 --- a/services/mwaa/pom.xml +++ b/services/mwaa/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT mwaa AWS Java SDK :: Services :: MWAA diff --git a/services/neptune/pom.xml b/services/neptune/pom.xml index 1e144a48a440..a1a5a7eb88cd 100644 --- a/services/neptune/pom.xml +++ b/services/neptune/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT neptune AWS Java SDK :: Services :: Neptune diff --git a/services/networkfirewall/pom.xml b/services/networkfirewall/pom.xml index 2ad798f6a034..caa0d6c05873 100644 --- a/services/networkfirewall/pom.xml +++ b/services/networkfirewall/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT networkfirewall AWS Java SDK :: Services :: Network Firewall diff --git a/services/networkmanager/pom.xml b/services/networkmanager/pom.xml index 75bee6e9db44..545defb9cf42 100644 --- a/services/networkmanager/pom.xml +++ b/services/networkmanager/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT networkmanager AWS Java SDK :: Services :: NetworkManager diff --git a/services/opsworks/pom.xml b/services/opsworks/pom.xml index dbe2b9660786..82064a376317 100644 --- a/services/opsworks/pom.xml +++ b/services/opsworks/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT opsworks AWS Java SDK :: Services :: AWS OpsWorks diff --git a/services/opsworkscm/pom.xml b/services/opsworkscm/pom.xml index d73ecaf65963..fa5dbec3c79a 100644 --- a/services/opsworkscm/pom.xml +++ b/services/opsworkscm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT opsworkscm AWS Java SDK :: Services :: AWS OpsWorks for Chef Automate diff --git a/services/organizations/pom.xml b/services/organizations/pom.xml index d5d3985dd15b..7cfdff65217c 100644 --- a/services/organizations/pom.xml +++ b/services/organizations/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT organizations AWS Java SDK :: Services :: AWS Organizations diff --git a/services/outposts/pom.xml b/services/outposts/pom.xml index 5f568e243d6a..6eea3176f989 100644 --- a/services/outposts/pom.xml +++ b/services/outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT outposts AWS Java SDK :: Services :: Outposts diff --git a/services/personalize/pom.xml b/services/personalize/pom.xml index 0c65a57fb839..d6c3bbd9aeea 100644 --- a/services/personalize/pom.xml +++ b/services/personalize/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT personalize AWS Java SDK :: Services :: Personalize diff --git a/services/personalizeevents/pom.xml b/services/personalizeevents/pom.xml index 02887b1d28d9..b410cd9665bb 100644 --- a/services/personalizeevents/pom.xml +++ b/services/personalizeevents/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT personalizeevents AWS Java SDK :: Services :: Personalize Events diff --git a/services/personalizeruntime/pom.xml b/services/personalizeruntime/pom.xml index d52f043fd178..2bc41f07970a 100644 --- a/services/personalizeruntime/pom.xml +++ b/services/personalizeruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT personalizeruntime AWS Java SDK :: Services :: Personalize Runtime diff --git a/services/pi/pom.xml b/services/pi/pom.xml index 69aca8334436..c579c8f1bfe3 100644 --- a/services/pi/pom.xml +++ b/services/pi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT pi AWS Java SDK :: Services :: PI diff --git a/services/pinpoint/pom.xml b/services/pinpoint/pom.xml index ec839d6c6eb8..3ffc95b74c30 100644 --- a/services/pinpoint/pom.xml +++ b/services/pinpoint/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT pinpoint AWS Java SDK :: Services :: Amazon Pinpoint diff --git a/services/pinpointemail/pom.xml b/services/pinpointemail/pom.xml index a70cb8f9a690..89797921523a 100644 --- a/services/pinpointemail/pom.xml +++ b/services/pinpointemail/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT pinpointemail AWS Java SDK :: Services :: Pinpoint Email diff --git a/services/pinpointsmsvoice/pom.xml b/services/pinpointsmsvoice/pom.xml index 3831c53bee44..154f49a3ef85 100644 --- a/services/pinpointsmsvoice/pom.xml +++ b/services/pinpointsmsvoice/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT pinpointsmsvoice AWS Java SDK :: Services :: Pinpoint SMS Voice diff --git a/services/polly/pom.xml b/services/polly/pom.xml index 4ece1e5b8362..42fb29fe26e5 100644 --- a/services/polly/pom.xml +++ b/services/polly/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT polly AWS Java SDK :: Services :: Amazon Polly diff --git a/services/pom.xml b/services/pom.xml index d19a7d93e9e4..875b03103dce 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -17,7 +17,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.39 + 2.15.40-SNAPSHOT services AWS Java SDK :: Services diff --git a/services/pricing/pom.xml b/services/pricing/pom.xml index d3705a51ccea..80de0acb84ea 100644 --- a/services/pricing/pom.xml +++ b/services/pricing/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 pricing diff --git a/services/qldb/pom.xml b/services/qldb/pom.xml index a040b530dd3b..4c05acc2973b 100644 --- a/services/qldb/pom.xml +++ b/services/qldb/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT qldb AWS Java SDK :: Services :: QLDB diff --git a/services/qldbsession/pom.xml b/services/qldbsession/pom.xml index 1c8fa1d64430..c5f81f4d98d9 100644 --- a/services/qldbsession/pom.xml +++ b/services/qldbsession/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT qldbsession AWS Java SDK :: Services :: QLDB Session diff --git a/services/quicksight/pom.xml b/services/quicksight/pom.xml index 2a0494004d8b..76ed85c9c9fe 100644 --- a/services/quicksight/pom.xml +++ b/services/quicksight/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT quicksight AWS Java SDK :: Services :: QuickSight diff --git a/services/ram/pom.xml b/services/ram/pom.xml index 552f95c3c928..440c8398b93a 100644 --- a/services/ram/pom.xml +++ b/services/ram/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT ram AWS Java SDK :: Services :: RAM diff --git a/services/rds/pom.xml b/services/rds/pom.xml index ba52310b29e7..77b0e340da80 100644 --- a/services/rds/pom.xml +++ b/services/rds/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT rds AWS Java SDK :: Services :: Amazon RDS diff --git a/services/rdsdata/pom.xml b/services/rdsdata/pom.xml index d145d90b749e..40df09f42890 100644 --- a/services/rdsdata/pom.xml +++ b/services/rdsdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT rdsdata AWS Java SDK :: Services :: RDS Data diff --git a/services/redshift/pom.xml b/services/redshift/pom.xml index d973847bd084..d932f47ad414 100644 --- a/services/redshift/pom.xml +++ b/services/redshift/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT redshift AWS Java SDK :: Services :: Amazon Redshift diff --git a/services/redshiftdata/pom.xml b/services/redshiftdata/pom.xml index 78442c250854..84be7ae6ebd2 100644 --- a/services/redshiftdata/pom.xml +++ b/services/redshiftdata/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT redshiftdata AWS Java SDK :: Services :: Redshift Data diff --git a/services/rekognition/pom.xml b/services/rekognition/pom.xml index 7351bcb98e3f..fbe041d17fc8 100644 --- a/services/rekognition/pom.xml +++ b/services/rekognition/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT rekognition AWS Java SDK :: Services :: Amazon Rekognition diff --git a/services/resourcegroups/pom.xml b/services/resourcegroups/pom.xml index dec166c261b8..7adfb7a03a6a 100644 --- a/services/resourcegroups/pom.xml +++ b/services/resourcegroups/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 resourcegroups diff --git a/services/resourcegroupstaggingapi/pom.xml b/services/resourcegroupstaggingapi/pom.xml index 723b8d26b59b..ad2488aba7ac 100644 --- a/services/resourcegroupstaggingapi/pom.xml +++ b/services/resourcegroupstaggingapi/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT resourcegroupstaggingapi AWS Java SDK :: Services :: AWS Resource Groups Tagging API diff --git a/services/robomaker/pom.xml b/services/robomaker/pom.xml index 450b638016c7..a6a0ad0e9e31 100644 --- a/services/robomaker/pom.xml +++ b/services/robomaker/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT robomaker AWS Java SDK :: Services :: RoboMaker diff --git a/services/route53/pom.xml b/services/route53/pom.xml index b62ebfb3400c..c387eb34c06b 100644 --- a/services/route53/pom.xml +++ b/services/route53/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT route53 AWS Java SDK :: Services :: Amazon Route53 diff --git a/services/route53domains/pom.xml b/services/route53domains/pom.xml index 19b33bb3e416..43c6b74100a1 100644 --- a/services/route53domains/pom.xml +++ b/services/route53domains/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT route53domains AWS Java SDK :: Services :: Amazon Route53 Domains diff --git a/services/route53resolver/pom.xml b/services/route53resolver/pom.xml index f40e39af71cf..f5c60eaa9d32 100644 --- a/services/route53resolver/pom.xml +++ b/services/route53resolver/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT route53resolver AWS Java SDK :: Services :: Route53Resolver diff --git a/services/s3/pom.xml b/services/s3/pom.xml index cd431ae4a6ea..f3704df5115a 100644 --- a/services/s3/pom.xml +++ b/services/s3/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT s3 AWS Java SDK :: Services :: Amazon S3 diff --git a/services/s3control/pom.xml b/services/s3control/pom.xml index d03ef7498541..f1b9962db25b 100644 --- a/services/s3control/pom.xml +++ b/services/s3control/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT s3control AWS Java SDK :: Services :: Amazon S3 Control diff --git a/services/s3outposts/pom.xml b/services/s3outposts/pom.xml index 29775c44a76a..70824ac0c21e 100644 --- a/services/s3outposts/pom.xml +++ b/services/s3outposts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT s3outposts AWS Java SDK :: Services :: S3 Outposts diff --git a/services/sagemaker/pom.xml b/services/sagemaker/pom.xml index be8cfd8761f4..5c0d25e1355b 100644 --- a/services/sagemaker/pom.xml +++ b/services/sagemaker/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 sagemaker diff --git a/services/sagemakera2iruntime/pom.xml b/services/sagemakera2iruntime/pom.xml index e963003cd1ad..a2d855dba594 100644 --- a/services/sagemakera2iruntime/pom.xml +++ b/services/sagemakera2iruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT sagemakera2iruntime AWS Java SDK :: Services :: SageMaker A2I Runtime diff --git a/services/sagemakerfeaturestoreruntime/pom.xml b/services/sagemakerfeaturestoreruntime/pom.xml index b67dc8bc92cf..36df209a2376 100644 --- a/services/sagemakerfeaturestoreruntime/pom.xml +++ b/services/sagemakerfeaturestoreruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT sagemakerfeaturestoreruntime AWS Java SDK :: Services :: Sage Maker Feature Store Runtime diff --git a/services/sagemakerruntime/pom.xml b/services/sagemakerruntime/pom.xml index 092b924c4595..3151b0c0cb99 100644 --- a/services/sagemakerruntime/pom.xml +++ b/services/sagemakerruntime/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT sagemakerruntime AWS Java SDK :: Services :: SageMaker Runtime diff --git a/services/savingsplans/pom.xml b/services/savingsplans/pom.xml index 60c49e7adfa0..f79a18d48ca3 100644 --- a/services/savingsplans/pom.xml +++ b/services/savingsplans/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT savingsplans AWS Java SDK :: Services :: Savingsplans diff --git a/services/schemas/pom.xml b/services/schemas/pom.xml index b84e10b17663..eb42e521b66e 100644 --- a/services/schemas/pom.xml +++ b/services/schemas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT schemas AWS Java SDK :: Services :: Schemas diff --git a/services/secretsmanager/pom.xml b/services/secretsmanager/pom.xml index af9bd1dacb94..b14ccdebf26c 100644 --- a/services/secretsmanager/pom.xml +++ b/services/secretsmanager/pom.xml @@ -22,7 +22,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT secretsmanager AWS Java SDK :: Services :: AWS Secrets Manager diff --git a/services/securityhub/pom.xml b/services/securityhub/pom.xml index 88fa8fea6113..9e7e630f43d0 100644 --- a/services/securityhub/pom.xml +++ b/services/securityhub/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT securityhub AWS Java SDK :: Services :: SecurityHub diff --git a/services/serverlessapplicationrepository/pom.xml b/services/serverlessapplicationrepository/pom.xml index 3137160dd172..aba794f5bdd5 100644 --- a/services/serverlessapplicationrepository/pom.xml +++ b/services/serverlessapplicationrepository/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 serverlessapplicationrepository diff --git a/services/servicecatalog/pom.xml b/services/servicecatalog/pom.xml index 7d279c6c4a52..f8fd4d1f833a 100644 --- a/services/servicecatalog/pom.xml +++ b/services/servicecatalog/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT servicecatalog AWS Java SDK :: Services :: AWS Service Catalog diff --git a/services/servicecatalogappregistry/pom.xml b/services/servicecatalogappregistry/pom.xml index 4adc9d7872c7..c5e161d4c0fa 100644 --- a/services/servicecatalogappregistry/pom.xml +++ b/services/servicecatalogappregistry/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT servicecatalogappregistry AWS Java SDK :: Services :: Service Catalog App Registry diff --git a/services/servicediscovery/pom.xml b/services/servicediscovery/pom.xml index 328f9c1d12b1..ba4cfaf6151c 100644 --- a/services/servicediscovery/pom.xml +++ b/services/servicediscovery/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 servicediscovery diff --git a/services/servicequotas/pom.xml b/services/servicequotas/pom.xml index 369d0d7c210b..14364ad48db1 100644 --- a/services/servicequotas/pom.xml +++ b/services/servicequotas/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT servicequotas AWS Java SDK :: Services :: Service Quotas diff --git a/services/ses/pom.xml b/services/ses/pom.xml index 66d5f31fce09..768f92920256 100644 --- a/services/ses/pom.xml +++ b/services/ses/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT ses AWS Java SDK :: Services :: Amazon SES diff --git a/services/sesv2/pom.xml b/services/sesv2/pom.xml index acc813d78adf..aba26254b0a8 100644 --- a/services/sesv2/pom.xml +++ b/services/sesv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT sesv2 AWS Java SDK :: Services :: SESv2 diff --git a/services/sfn/pom.xml b/services/sfn/pom.xml index bd49b98571ce..a1b64227fffc 100644 --- a/services/sfn/pom.xml +++ b/services/sfn/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT sfn AWS Java SDK :: Services :: AWS Step Functions diff --git a/services/shield/pom.xml b/services/shield/pom.xml index 93226b2590c7..77f80e4298bd 100644 --- a/services/shield/pom.xml +++ b/services/shield/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT shield AWS Java SDK :: Services :: AWS Shield diff --git a/services/signer/pom.xml b/services/signer/pom.xml index 70890f08b552..24c36beb0a33 100644 --- a/services/signer/pom.xml +++ b/services/signer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT signer AWS Java SDK :: Services :: Signer diff --git a/services/sms/pom.xml b/services/sms/pom.xml index 68ab97518021..0de1b9874caa 100644 --- a/services/sms/pom.xml +++ b/services/sms/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT sms AWS Java SDK :: Services :: AWS Server Migration diff --git a/services/snowball/pom.xml b/services/snowball/pom.xml index 5b4cee8e5d88..38114a30b278 100644 --- a/services/snowball/pom.xml +++ b/services/snowball/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT snowball AWS Java SDK :: Services :: Amazon Snowball diff --git a/services/sns/pom.xml b/services/sns/pom.xml index e85b3383f9f5..739e4e5f3f90 100644 --- a/services/sns/pom.xml +++ b/services/sns/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT sns AWS Java SDK :: Services :: Amazon SNS diff --git a/services/sqs/pom.xml b/services/sqs/pom.xml index 65916e070124..d8c204b5e88a 100644 --- a/services/sqs/pom.xml +++ b/services/sqs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT sqs AWS Java SDK :: Services :: Amazon SQS diff --git a/services/ssm/pom.xml b/services/ssm/pom.xml index b576b64ee5c1..6619e4936ebb 100644 --- a/services/ssm/pom.xml +++ b/services/ssm/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT ssm AWS Java SDK :: Services :: AWS Simple Systems Management (SSM) diff --git a/services/sso/pom.xml b/services/sso/pom.xml index b3c8a8d71331..fccc71434f7f 100644 --- a/services/sso/pom.xml +++ b/services/sso/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT sso AWS Java SDK :: Services :: SSO diff --git a/services/ssoadmin/pom.xml b/services/ssoadmin/pom.xml index 381c076aa7b4..9c4d7db95f0e 100644 --- a/services/ssoadmin/pom.xml +++ b/services/ssoadmin/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT ssoadmin AWS Java SDK :: Services :: SSO Admin diff --git a/services/ssooidc/pom.xml b/services/ssooidc/pom.xml index 00e8cd4d0cae..9bf42f4c6cf1 100644 --- a/services/ssooidc/pom.xml +++ b/services/ssooidc/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT ssooidc AWS Java SDK :: Services :: SSO OIDC diff --git a/services/storagegateway/pom.xml b/services/storagegateway/pom.xml index 4b86d241f0d0..96e04060b6eb 100644 --- a/services/storagegateway/pom.xml +++ b/services/storagegateway/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT storagegateway AWS Java SDK :: Services :: AWS Storage Gateway diff --git a/services/sts/pom.xml b/services/sts/pom.xml index dbab844f66b2..309e58dc0488 100644 --- a/services/sts/pom.xml +++ b/services/sts/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT sts AWS Java SDK :: Services :: AWS STS diff --git a/services/support/pom.xml b/services/support/pom.xml index cb6677103df4..e0e3a699d788 100644 --- a/services/support/pom.xml +++ b/services/support/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT support AWS Java SDK :: Services :: AWS Support diff --git a/services/swf/pom.xml b/services/swf/pom.xml index 91de9ed947fd..d3441c06fad7 100644 --- a/services/swf/pom.xml +++ b/services/swf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT swf AWS Java SDK :: Services :: Amazon SWF diff --git a/services/synthetics/pom.xml b/services/synthetics/pom.xml index a231c6e4a232..695cca255f03 100644 --- a/services/synthetics/pom.xml +++ b/services/synthetics/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT synthetics AWS Java SDK :: Services :: Synthetics diff --git a/services/textract/pom.xml b/services/textract/pom.xml index e22760e96c21..a1097e5d29d3 100644 --- a/services/textract/pom.xml +++ b/services/textract/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT textract AWS Java SDK :: Services :: Textract diff --git a/services/timestreamquery/pom.xml b/services/timestreamquery/pom.xml index 7dc4243b69b9..997b429c105f 100644 --- a/services/timestreamquery/pom.xml +++ b/services/timestreamquery/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT timestreamquery AWS Java SDK :: Services :: Timestream Query diff --git a/services/timestreamwrite/pom.xml b/services/timestreamwrite/pom.xml index 12c00c6f4f39..1b429872811d 100644 --- a/services/timestreamwrite/pom.xml +++ b/services/timestreamwrite/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT timestreamwrite AWS Java SDK :: Services :: Timestream Write diff --git a/services/transcribe/pom.xml b/services/transcribe/pom.xml index a8d81fed101f..a944c35a058d 100644 --- a/services/transcribe/pom.xml +++ b/services/transcribe/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT transcribe AWS Java SDK :: Services :: Transcribe diff --git a/services/transcribestreaming/pom.xml b/services/transcribestreaming/pom.xml index 0d2b0a03e070..3690f53f64ac 100644 --- a/services/transcribestreaming/pom.xml +++ b/services/transcribestreaming/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT transcribestreaming AWS Java SDK :: Services :: AWS Transcribe Streaming diff --git a/services/transfer/pom.xml b/services/transfer/pom.xml index 9b151a85f4c5..0800922211c4 100644 --- a/services/transfer/pom.xml +++ b/services/transfer/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT transfer AWS Java SDK :: Services :: Transfer diff --git a/services/translate/pom.xml b/services/translate/pom.xml index 89a9dbeb28f5..1d61c89db9ab 100644 --- a/services/translate/pom.xml +++ b/services/translate/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 translate diff --git a/services/waf/pom.xml b/services/waf/pom.xml index a110c5033022..fec7d8371aed 100644 --- a/services/waf/pom.xml +++ b/services/waf/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT waf AWS Java SDK :: Services :: AWS WAF diff --git a/services/wafv2/pom.xml b/services/wafv2/pom.xml index ece8da38b04f..5df9118d8030 100644 --- a/services/wafv2/pom.xml +++ b/services/wafv2/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT wafv2 AWS Java SDK :: Services :: WAFV2 diff --git a/services/workdocs/pom.xml b/services/workdocs/pom.xml index 280cd5c6554d..16490c22434e 100644 --- a/services/workdocs/pom.xml +++ b/services/workdocs/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT workdocs AWS Java SDK :: Services :: Amazon WorkDocs diff --git a/services/worklink/pom.xml b/services/worklink/pom.xml index 0ce6610c3580..8ae68f232279 100644 --- a/services/worklink/pom.xml +++ b/services/worklink/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT worklink AWS Java SDK :: Services :: WorkLink diff --git a/services/workmail/pom.xml b/services/workmail/pom.xml index f9e1974e0be9..25fab935dd85 100644 --- a/services/workmail/pom.xml +++ b/services/workmail/pom.xml @@ -20,7 +20,7 @@ services software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0 workmail diff --git a/services/workmailmessageflow/pom.xml b/services/workmailmessageflow/pom.xml index 89d23fdf5553..d416aa0d709f 100644 --- a/services/workmailmessageflow/pom.xml +++ b/services/workmailmessageflow/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT workmailmessageflow AWS Java SDK :: Services :: WorkMailMessageFlow diff --git a/services/workspaces/pom.xml b/services/workspaces/pom.xml index e1e37d031c18..97a3f6824ed9 100644 --- a/services/workspaces/pom.xml +++ b/services/workspaces/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT workspaces AWS Java SDK :: Services :: Amazon WorkSpaces diff --git a/services/xray/pom.xml b/services/xray/pom.xml index 3e72f8e3123b..e4a7b312c8be 100644 --- a/services/xray/pom.xml +++ b/services/xray/pom.xml @@ -21,7 +21,7 @@ software.amazon.awssdk services - 2.15.39 + 2.15.40-SNAPSHOT xray AWS Java SDK :: Services :: AWS X-Ray diff --git a/test/codegen-generated-classes-test/pom.xml b/test/codegen-generated-classes-test/pom.xml index 5f4b98dc8501..908774c2199d 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.15.39 + 2.15.40-SNAPSHOT ../../pom.xml diff --git a/test/http-client-tests/pom.xml b/test/http-client-tests/pom.xml index c12cf75105ec..a158aa2b7181 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.15.39 + 2.15.40-SNAPSHOT ../../pom.xml http-client-tests diff --git a/test/module-path-tests/pom.xml b/test/module-path-tests/pom.xml index b432215f050c..acfea6da424b 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.15.39 + 2.15.40-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests-core/pom.xml b/test/protocol-tests-core/pom.xml index fe43db35471c..9c05a771082e 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.15.39 + 2.15.40-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/protocol-tests/pom.xml b/test/protocol-tests/pom.xml index 1ffd351b36af..37528563361b 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.15.39 + 2.15.40-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/sdk-benchmarks/pom.xml b/test/sdk-benchmarks/pom.xml index bf1b57ac47bc..85064fd1df31 100755 --- a/test/sdk-benchmarks/pom.xml +++ b/test/sdk-benchmarks/pom.xml @@ -19,7 +19,7 @@ software.amazon.awssdk aws-sdk-java-pom - 2.15.39 + 2.15.40-SNAPSHOT ../../pom.xml diff --git a/test/service-test-utils/pom.xml b/test/service-test-utils/pom.xml index f3e99627a1f3..fe868926e60f 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.15.39 + 2.15.40-SNAPSHOT ../../pom.xml service-test-utils diff --git a/test/stability-tests/pom.xml b/test/stability-tests/pom.xml index 42a202887ada..845b48905463 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.15.39 + 2.15.40-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/test/test-utils/pom.xml b/test/test-utils/pom.xml index 6806267f4467..c7120589bc6d 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.15.39 + 2.15.40-SNAPSHOT ../../pom.xml test-utils diff --git a/test/tests-coverage-reporting/pom.xml b/test/tests-coverage-reporting/pom.xml index 9288bb81da07..e83dd9d6453e 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.15.39 + 2.15.40-SNAPSHOT ../../pom.xml 4.0.0 diff --git a/utils/pom.xml b/utils/pom.xml index f12bae31db22..858e962387f2 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -20,7 +20,7 @@ aws-sdk-java-pom software.amazon.awssdk - 2.15.39 + 2.15.40-SNAPSHOT 4.0.0